From 10f9b8efe9b867fc03261cbd22bd0603e9a04196 Mon Sep 17 00:00:00 2001 From: Jeroen Baten Date: Sat, 4 Apr 2026 10:58:13 +0200 Subject: [PATCH 1/5] Fixed bug in gathering stats. Also renamed stats server to stats.libreplan.dev. --- .../src/main/resources/libreplan.properties | 4 ++-- .../web/common/ConfigurationController.java | 16 ++++++++++++++++ .../libreplan/web/common/ConfigurationModel.java | 10 ++++++++++ .../libreplan/web/common/GatheredUsageStats.java | 15 +++++++++++---- .../web/common/IConfigurationModel.java | 4 ++++ .../src/main/webapp/common/configuration.zul | 3 ++- 6 files changed, 45 insertions(+), 7 deletions(-) diff --git a/libreplan-business/src/main/resources/libreplan.properties b/libreplan-business/src/main/resources/libreplan.properties index 964b8ebd70..84bfdbe03d 100644 --- a/libreplan-business/src/main/resources/libreplan.properties +++ b/libreplan-business/src/main/resources/libreplan.properties @@ -1,3 +1,3 @@ -statsPage http://stats.libreplan-enterprise.com/ +statsPage https://stats.libreplan.dev/ minimumYear 2009 -yearLimit 20 \ No newline at end of file +yearLimit 20 diff --git a/libreplan-webapp/src/main/java/org/libreplan/web/common/ConfigurationController.java b/libreplan-webapp/src/main/java/org/libreplan/web/common/ConfigurationController.java index 8a080fda31..f3e2dcb1e9 100644 --- a/libreplan-webapp/src/main/java/org/libreplan/web/common/ConfigurationController.java +++ b/libreplan-webapp/src/main/java/org/libreplan/web/common/ConfigurationController.java @@ -1148,6 +1148,22 @@ public void setCheckNewVersionEnabled(boolean checkNewVersionEnabled) { configurationModel.setCheckNewVersionEnabled(checkNewVersionEnabled); } + /** + * Used in configuration.zul + * Should be public! + */ + public boolean isAllowedToGatherUsageStatsEnabled() { + return configurationModel.isAllowedToGatherUsageStatsEnabled(); + } + + /** + * Used in configuration.zul + * Should be public! + */ + public void setAllowedToGatherUsageStatsEnabled(boolean allowedToGatherUsageStatsEnabled) { + configurationModel.setAllowedToGatherUsageStatsEnabled(allowedToGatherUsageStatsEnabled); + } + /** * Used in configuration.zul * Should be public! diff --git a/libreplan-webapp/src/main/java/org/libreplan/web/common/ConfigurationModel.java b/libreplan-webapp/src/main/java/org/libreplan/web/common/ConfigurationModel.java index 234ae3e6d6..dbc4272ccc 100644 --- a/libreplan-webapp/src/main/java/org/libreplan/web/common/ConfigurationModel.java +++ b/libreplan-webapp/src/main/java/org/libreplan/web/common/ConfigurationModel.java @@ -574,6 +574,16 @@ public void setCheckNewVersionEnabled(boolean checkNewVersionEnabled) { configuration.setCheckNewVersionEnabled(checkNewVersionEnabled); } + @Override + public boolean isAllowedToGatherUsageStatsEnabled() { + return configuration.isAllowedToGatherUsageStatsEnabled(); + } + + @Override + public void setAllowedToGatherUsageStatsEnabled(boolean allowedToGatherUsageStatsEnabled) { + configuration.setAllowToGatherUsageStatsEnabled(allowedToGatherUsageStatsEnabled); + } + private static Map getAllCurrencies() { Map currencies = new TreeMap<>(); for (Locale locale : Locale.getAvailableLocales()) { diff --git a/libreplan-webapp/src/main/java/org/libreplan/web/common/GatheredUsageStats.java b/libreplan-webapp/src/main/java/org/libreplan/web/common/GatheredUsageStats.java index 4aac8c2ca8..c02e530948 100644 --- a/libreplan-webapp/src/main/java/org/libreplan/web/common/GatheredUsageStats.java +++ b/libreplan-webapp/src/main/java/org/libreplan/web/common/GatheredUsageStats.java @@ -17,6 +17,9 @@ import org.zkoss.zk.ui.Executions; import org.zkoss.zkplus.spring.SpringUtil; +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; + import java.io.DataOutputStream; import java.io.IOException; import java.io.InputStream; @@ -41,6 +44,8 @@ public class GatheredUsageStats { + private static final Log LOG = LogFactory.getLog(GatheredUsageStats.class); + private IUserDAO userDAO; private IOrderModel orderModel; @@ -263,8 +268,8 @@ public void sendGatheredUsageStatsToServer(){ connection.setDoInput(true); connection.setDoOutput(true); - // If the connection lasts > 2 sec throw Exception - connection.setConnectTimeout(2000); + // If the connection lasts > 6 sec throw Exception + connection.setConnectTimeout(6000); // Send request DataOutputStream dataOutputStream = new DataOutputStream(connection.getOutputStream()); @@ -273,9 +278,11 @@ public void sendGatheredUsageStatsToServer(){ dataOutputStream.close(); // No needed code, but it is not working without it - connection.getInputStream(); + int responseCode = connection.getResponseCode(); + LOG.info("Usage stats sent to " + url + " — HTTP " + responseCode); - } catch (IOException ignored) { + } catch (IOException e) { + LOG.warn("Failed to send usage stats: " + e.getMessage()); } finally { if ( connection != null ) { connection.disconnect(); diff --git a/libreplan-webapp/src/main/java/org/libreplan/web/common/IConfigurationModel.java b/libreplan-webapp/src/main/java/org/libreplan/web/common/IConfigurationModel.java index 86815c856f..ea7f899453 100644 --- a/libreplan-webapp/src/main/java/org/libreplan/web/common/IConfigurationModel.java +++ b/libreplan-webapp/src/main/java/org/libreplan/web/common/IConfigurationModel.java @@ -149,6 +149,10 @@ public interface IConfigurationModel { void setCheckNewVersionEnabled(boolean checkNewVersionEnabled); + boolean isAllowedToGatherUsageStatsEnabled(); + + void setAllowedToGatherUsageStatsEnabled(boolean allowedToGatherUsageStatsEnabled); + Boolean getGenerateCodeForExpenseSheets(); void setGenerateCodeForExpenseSheets(Boolean generateCodeForExpenseSheets); diff --git a/libreplan-webapp/src/main/webapp/common/configuration.zul b/libreplan-webapp/src/main/webapp/common/configuration.zul index c988e9ed0f..2c4612c4d5 100644 --- a/libreplan-webapp/src/main/webapp/common/configuration.zul +++ b/libreplan-webapp/src/main/webapp/common/configuration.zul @@ -148,7 +148,8 @@ checked="@{configurationController.checkNewVersionEnabled}" /> + tooltiptext="${i18n:_t('Check this option if you would like to send feedback to LibrePlan developers about program usage')}" + checked="@{configurationController.allowedToGatherUsageStatsEnabled}"/> From 3b4fad9e90e85bd38b2f9c04d57fcbb9770272b4 Mon Sep 17 00:00:00 2001 From: Jeroen Baten Date: Sat, 4 Apr 2026 11:05:26 +0200 Subject: [PATCH 2/5] Make sure we receive at least one time some stats. --- libreplan-business/src/main/resources/db.changelog-1.6.xml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/libreplan-business/src/main/resources/db.changelog-1.6.xml b/libreplan-business/src/main/resources/db.changelog-1.6.xml index a35ea404a6..e99cb7db98 100644 --- a/libreplan-business/src/main/resources/db.changelog-1.6.xml +++ b/libreplan-business/src/main/resources/db.changelog-1.6.xml @@ -106,4 +106,11 @@ columnDataType="BOOLEAN" /> + + + + + + From bffbb07034252213300a00866c75868a51baeca1 Mon Sep 17 00:00:00 2001 From: Jeroen Baten Date: Tue, 7 Apr 2026 08:46:16 +0200 Subject: [PATCH 3/5] Bump year parameter from 20 to 50 to increase time window. --- libreplan-business/src/main/resources/libreplan.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libreplan-business/src/main/resources/libreplan.properties b/libreplan-business/src/main/resources/libreplan.properties index 84bfdbe03d..35c3dbfcf6 100644 --- a/libreplan-business/src/main/resources/libreplan.properties +++ b/libreplan-business/src/main/resources/libreplan.properties @@ -1,3 +1,3 @@ statsPage https://stats.libreplan.dev/ minimumYear 2009 -yearLimit 20 +yearLimit 50 From cea7807b8f8f8be358ffad4ca93a55cd6cb2bbca Mon Sep 17 00:00:00 2001 From: Jeroen Baten Date: Tue, 7 Apr 2026 08:58:35 +0200 Subject: [PATCH 4/5] Changed gui string about gathering statistics and updated all translations. --- ganttzk/src/main/resources/i18n/keys.pot | 242 +- .../src/main/resources/i18n/ca.po | 6 +- .../src/main/resources/i18n/cs.po | 6 +- .../src/main/resources/i18n/de.po | 8 +- .../src/main/resources/i18n/es.po | 8 +- .../src/main/resources/i18n/fa_IR.po | 6 +- .../src/main/resources/i18n/fr.po | 8 +- .../src/main/resources/i18n/gl.po | 6 +- .../src/main/resources/i18n/it.po | 8 +- .../src/main/resources/i18n/ja.po | 6 +- .../src/main/resources/i18n/keys.pot | 11211 ++++++++-------- .../src/main/resources/i18n/nb.po | 6 +- .../src/main/resources/i18n/nl.po | 8 +- .../src/main/resources/i18n/pl.po | 6 +- .../src/main/resources/i18n/pt.po | 6 +- .../src/main/resources/i18n/pt_BR.po | 8 +- .../src/main/resources/i18n/ru.po | 6 +- .../src/main/resources/i18n/sv_SE.po | 6 +- .../src/main/resources/i18n/zh.po | 6 +- .../src/main/resources/i18n/zh_CN.po | 6 +- .../src/main/webapp/common/configuration.zul | 2 +- 21 files changed, 5895 insertions(+), 5680 deletions(-) diff --git a/ganttzk/src/main/resources/i18n/keys.pot b/ganttzk/src/main/resources/i18n/keys.pot index a4bfdebcf9..2527925e0b 100644 --- a/ganttzk/src/main/resources/i18n/keys.pot +++ b/ganttzk/src/main/resources/i18n/keys.pot @@ -17,147 +17,143 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: ganttzk/src/main/resources/web/ganttz/zul/plannerLayout.zul:63 -msgid "Show/Hide critical path" +#: ganttzk/src/main/resources/web/ganttz/zul/plannerLayout.zul:67 +msgid "Show/Hide labels" msgstr "" -#: org/zkoss/ganttz/data/resourceload/TimeLineRole.java:56 -msgid "None" +#: ganttzk/src/main/resources/web/ganttz/zul/plannerLayout.zul:102 +msgid "Show/Hide money cost bar" msgstr "" -#: ganttzk/src/main/resources/web/ganttz/zul/plannerLayout.zul:49 -msgid "Print" +#: ganttzk/src/main/resources/web/ganttz/zul/plannerLayout.zul:76 +msgid "Expand/Collapse all" msgstr "" -#: org/zkoss/ganttz/data/resourceload/TimeLineRole.java:57 -msgid "Worker" +#: ganttzk/src/main/resources/web/ganttz/zul/leftTasksTree.zul:31 +msgid "T / M" msgstr "" -#: org/zkoss/ganttz/timetracker/zoom/ZoomLevel.java:70 -msgid "Week" +#: org/zkoss/ganttz/timetracker/TimeTracker.java:229 +msgid "changing zoom" msgstr "" -#: org/zkoss/ganttz/Planner.java:693 -msgid "Show reported hours" +#: org/zkoss/ganttz/resourceload/ResourcesLoadPanel.java:86 +msgid "Resources" msgstr "" -#: ganttzk/src/main/resources/web/ganttz/zul/plannerLayout.zul:96 -msgid "Show/Hide reported hours" +#: org/zkoss/ganttz/Planner.java:698 +msgid "Hide reported hours" msgstr "" -#: org/zkoss/ganttz/DependencyList.java:236 -msgid "Set End-End" +#: org/zkoss/ganttz/resourceload/ResourceLoadLeftPane.java:170 +msgid "See scheduling" msgstr "" -#: org/zkoss/ganttz/Planner.java:464 -#: org/zkoss/ganttz/resourceload/ResourcesLoadPanel.java:398 -msgid "Graphics are disabled" +#: ganttzk/src/main/resources/web/ganttz/zul/resourcesLoadLayout.zul:56 +msgid "Group by" msgstr "" -#: org/zkoss/ganttz/data/resourceload/TimeLineRole.java:65 -msgid "Criterion" +#: ganttzk/src/main/resources/web/ganttz/zul/resourcesLoadLayout.zul:38 +msgid "Zoom" msgstr "" -#: org/zkoss/ganttz/resourceload/ResourcesLoadPanel.java:159 -msgid "showing resources" +#: ganttzk/src/main/resources/web/ganttz/zul/plannerLayout.zul:96 +msgid "Show/Hide reported hours" msgstr "" -#: ganttzk/src/main/resources/web/ganttz/zul/leftTasksTree.zul:31 -msgid "T / M" +#: ganttzk/src/main/resources/web/ganttz/zul/leftTasksTree.zul:30 +msgid "End" msgstr "" -#: org/zkoss/ganttz/Planner.java:679 -msgid "Hide progress" +#: org/zkoss/ganttz/Planner.java:670 +msgid "Show progress" msgstr "" -#: org/zkoss/ganttz/DependencyList.java:234 -msgid "Set Start-Start" +#: org/zkoss/ganttz/data/resourceload/TimeLineRole.java:59 +msgid "Task" msgstr "" -#: ganttzk/src/main/resources/web/ganttz/zul/plannerLayout.zul:88 -msgid "Show/Hide progress" +#: org/zkoss/ganttz/Planner.java:717 +msgid "Hide money cost bar" msgstr "" -#: org/zkoss/ganttz/LeftTasksTreeRow.java:272 -#: org/zkoss/ganttz/LeftTasksTreeRow.java:279 -msgid "Please enter date not before" +#: org/zkoss/ganttz/data/resourceload/TimeLineRole.java:65 +msgid "Criterion" msgstr "" -#: ganttzk/src/main/resources/web/ganttz/zul/plannerLayout.zul:76 -msgid "Expand/Collapse all" +#: org/zkoss/ganttz/Planner.java:643 +msgid "Show critical path" msgstr "" -#: org/zkoss/ganttz/DependencyList.java:66 -msgid "The specified dependency is not allowed" +#: org/zkoss/ganttz/resourceload/ResourcesLoadPanel.java:474 +msgid "All" msgstr "" -#: org/zkoss/ganttz/resourceload/ResourcesLoadPanel.java:162 -msgid "showing criteria" +#: org/zkoss/ganttz/data/resourceload/TimeLineRole.java:58 +msgid "Project" msgstr "" -#: org/zkoss/ganttz/Planner.java:698 -msgid "Hide reported hours" +#: org/zkoss/ganttz/LeftTasksTreeRow.java:273 +#: org/zkoss/ganttz/LeftTasksTreeRow.java:280 +msgid "and no later than" msgstr "" -#: org/zkoss/ganttz/resourceload/ResourcesLoadPanel.java:88 -msgid "Generic allocation criteria" +#: ganttzk/src/main/resources/web/ganttz/zul/plannerLayout.zul:88 +msgid "Show/Hide progress" msgstr "" -#: ganttzk/src/main/resources/web/ganttz/zul/resourcesLoadLayout.zul:56 -msgid "Group by" +#: ganttzk/src/main/resources/web/ganttz/zul/plannerLayout.zul:63 +msgid "Show/Hide critical path" msgstr "" -#: org/zkoss/ganttz/Planner.java:670 -msgid "Show progress" +#: org/zkoss/ganttz/timetracker/zoom/ZoomLevel.java:58 +msgid "Month" msgstr "" -#: org/zkoss/ganttz/DependencyList.java:232 -msgid "Set End-Start" +#: ganttzk/src/main/resources/web/ganttz/zul/plannerLayout.zul:42 +msgid "Refresh" msgstr "" -#: org/zkoss/ganttz/DependencyList.java:213 -#: org/zkoss/ganttz/DependencyList.java:228 -msgid "Erase" +#: org/zkoss/ganttz/resourceload/ResourceLoadComponent.java:184 +msgid "Load: {0}%" msgstr "" -#: org/zkoss/ganttz/resourceload/ResourcesLoadPanel.java:475 -msgid "Show all elements" +#: org/zkoss/ganttz/DependencyList.java:66 +msgid "The specified dependency is not allowed" msgstr "" -#: ganttzk/src/main/resources/web/ganttz/zul/resourcesLoadLayout.zul:38 -msgid "Zoom" +#: ganttzk/src/main/resources/web/ganttz/zul/leftTasksTree.zul:29 +msgid "Start" msgstr "" #: org/zkoss/ganttz/resourceload/ResourceLoadComponent.java:147 msgid "See resource allocation" msgstr "" -#: org/zkoss/ganttz/resourceload/ResourceLoadComponent.java:192 -msgid "available effort: {0}, assigned effort: {1}" -msgstr "" - -#: org/zkoss/ganttz/data/resourceload/TimeLineRole.java:58 -msgid "Project" +#: org/zkoss/ganttz/resourceload/ResourcesLoadPanel.java:162 +msgid "showing criteria" msgstr "" -#: ganttzk/src/main/resources/web/ganttz/zul/plannerLayout.zul:81 -msgid "Flatten/Unflatten tree" +#: org/zkoss/ganttz/resourceload/ResourcesLoadPanel.java:88 +msgid "Generic allocation criteria" msgstr "" -#: org/zkoss/ganttz/data/resourceload/TimeLineRole.java:59 -msgid "Task" +#: org/zkoss/ganttz/TaskList.java:298 +msgid "Add Dependency" msgstr "" -#: org/zkoss/ganttz/timetracker/zoom/ZoomLevel.java:46 -msgid "Quarter" +#: org/zkoss/ganttz/Planner.java:344 +msgid "decreasing zoom" msgstr "" -#: org/zkoss/ganttz/TaskList.java:298 -msgid "Add Dependency" +#: org/zkoss/ganttz/Planner.java:464 +#: org/zkoss/ganttz/resourceload/ResourcesLoadPanel.java:398 +msgid "Graphics are disabled" msgstr "" -#: ganttzk/src/main/resources/web/ganttz/zul/plannerLayout.zul:71 -msgid "Show/Hide resources" +#: org/zkoss/ganttz/DependencyList.java:213 +#: org/zkoss/ganttz/DependencyList.java:228 +msgid "Erase" msgstr "" #: ganttzk/src/main/resources/web/ganttz/zul/plannerLayout.zul:138 @@ -165,90 +161,93 @@ msgstr "" msgid "Graphics" msgstr "" -#: org/zkoss/ganttz/resourceload/ResourceLoadLeftPane.java:170 -msgid "See scheduling" +#: org/zkoss/ganttz/Planner.java:326 +msgid "increasing zoom" msgstr "" -#: org/zkoss/ganttz/LeftTasksTreeRow.java:273 -#: org/zkoss/ganttz/LeftTasksTreeRow.java:280 -msgid "and no later than" +#: org/zkoss/ganttz/timetracker/zoom/ZoomLevel.java:82 +msgid "Day" msgstr "" -#: org/zkoss/ganttz/Planner.java:643 -msgid "Show critical path" +#: org/zkoss/ganttz/resourceload/ResourcesLoadPanel.java:510 +msgid "filtering by name" msgstr "" -#: ganttzk/src/main/resources/web/ganttz/zul/resourcesLoadLayout.zul:50 -msgid "Page" +#: org/zkoss/ganttz/timetracker/zoom/ZoomLevel.java:34 +msgid "Year" msgstr "" -#: ganttzk/src/main/resources/web/ganttz/zul/plannerLayout.zul:67 -msgid "Show/Hide labels" +#: org/zkoss/ganttz/Planner.java:693 +msgid "Show reported hours" msgstr "" -#: org/zkoss/ganttz/Planner.java:712 -msgid "Show money cost bar" +#: org/zkoss/ganttz/timetracker/zoom/ZoomLevel.java:46 +msgid "Quarter" msgstr "" -#: org/zkoss/ganttz/Planner.java:344 -msgid "decreasing zoom" +#: ganttzk/src/main/resources/web/ganttz/zul/plannerLayout.zul:49 +msgid "Print" msgstr "" -#: org/zkoss/ganttz/timetracker/zoom/ZoomLevel.java:82 -msgid "Day" +#: org/zkoss/ganttz/Planner.java:648 +msgid "Hide critical path" msgstr "" -#: ganttzk/src/main/resources/web/ganttz/zul/leftTasksTree.zul:29 -msgid "Start" +#: ganttzk/src/main/resources/web/ganttz/zul/resourcesLoadLayout.zul:50 +msgid "Page" msgstr "" -#: org/zkoss/ganttz/timetracker/TimeTracker.java:229 -msgid "changing zoom" +#: org/zkoss/ganttz/resourceload/ResourcesLoadPanel.java:475 +msgid "Show all elements" msgstr "" -#: org/zkoss/ganttz/resourceload/ResourcesLoadPanel.java:474 -msgid "All" +#: org/zkoss/ganttz/DependencyList.java:232 +msgid "Set End-Start" msgstr "" -#: org/zkoss/ganttz/resourceload/ResourcesLoadPanel.java:510 -msgid "filtering by name" +#: org/zkoss/ganttz/Planner.java:712 +msgid "Show money cost bar" msgstr "" -#: org/zkoss/ganttz/Planner.java:648 -msgid "Hide critical path" +#: org/zkoss/ganttz/data/resourceload/TimeLineRole.java:57 +msgid "Worker" msgstr "" -#: ganttzk/src/main/resources/web/ganttz/zul/leftTasksTree.zul:28 -#: ganttzk/src/main/resources/web/ganttz/zul/resourcesLoadLayout.zul:77 -msgid "Name" +#: org/zkoss/ganttz/Planner.java:679 +msgid "Hide progress" msgstr "" -#: ganttzk/src/main/resources/web/ganttz/zul/leftTasksTree.zul:30 -msgid "End" +#: org/zkoss/ganttz/resourceload/ResourcesLoadPanel.java:159 +msgid "showing resources" msgstr "" -#: org/zkoss/ganttz/timetracker/zoom/ZoomLevel.java:34 -msgid "Year" +#: org/zkoss/ganttz/timetracker/zoom/ZoomLevel.java:70 +msgid "Week" msgstr "" -#: org/zkoss/ganttz/resourceload/ResourceLoadComponent.java:184 -msgid "Load: {0}%" +#: org/zkoss/ganttz/DependencyList.java:236 +msgid "Set End-End" msgstr "" -#: org/zkoss/ganttz/Planner.java:717 -msgid "Hide money cost bar" +#: org/zkoss/ganttz/LeftTasksTreeRow.java:272 +#: org/zkoss/ganttz/LeftTasksTreeRow.java:279 +msgid "Please enter date not before" msgstr "" -#: org/zkoss/ganttz/Planner.java:326 -msgid "increasing zoom" +#: org/zkoss/ganttz/data/resourceload/TimeLineRole.java:56 +msgid "None" msgstr "" -#: org/zkoss/ganttz/resourceload/ResourcesLoadPanel.java:86 -msgid "Resources" +#: ganttzk/src/main/resources/web/ganttz/zul/plannerLayout.zul:71 +msgid "Show/Hide resources" msgstr "" -#: ganttzk/src/main/resources/web/ganttz/zul/plannerLayout.zul:42 -msgid "Refresh" +#: org/zkoss/ganttz/resourceload/ResourceLoadComponent.java:192 +msgid "available effort: {0}, assigned effort: {1}" +msgstr "" + +#: org/zkoss/ganttz/DependencyList.java:234 +msgid "Set Start-Start" msgstr "" #: org/zkoss/ganttz/LeftTasksTreeRow.java:271 @@ -256,11 +255,12 @@ msgstr "" msgid "The date you entered is invalid" msgstr "" -#: ganttzk/src/main/resources/web/ganttz/zul/plannerLayout.zul:102 -msgid "Show/Hide money cost bar" +#: ganttzk/src/main/resources/web/ganttz/zul/plannerLayout.zul:81 +msgid "Flatten/Unflatten tree" msgstr "" -#: org/zkoss/ganttz/timetracker/zoom/ZoomLevel.java:58 -msgid "Month" +#: ganttzk/src/main/resources/web/ganttz/zul/leftTasksTree.zul:28 +#: ganttzk/src/main/resources/web/ganttz/zul/resourcesLoadLayout.zul:77 +msgid "Name" msgstr "" diff --git a/libreplan-webapp/src/main/resources/i18n/ca.po b/libreplan-webapp/src/main/resources/i18n/ca.po index 43b0a0beab..c830b489fe 100644 --- a/libreplan-webapp/src/main/resources/i18n/ca.po +++ b/libreplan-webapp/src/main/resources/i18n/ca.po @@ -5462,10 +5462,8 @@ msgid "LDAP Roles (separated by ;)" msgstr "\"Roles\" LDAP (separats per ;)" #: libreplan-webapp/src/main/webapp/common/configuration.zul:129 -msgid "" -"Help the project developers to collect information about which LibrePlan " -"version you are using" -msgstr "Permetre als desenvolupadors a recollir informació sobre quina versió de LibrePlan està en ús" +msgid "Allow collection of anonymous statistics to help us improve LibrePlan" +msgstr "Permetre la recol·lecció d'estadístiques anònimes per ajudar-nos a millorar LibrePlan" #: org/libreplan/web/resources/worker/WorkerCRUDController.java:190 msgid "Not bound" diff --git a/libreplan-webapp/src/main/resources/i18n/cs.po b/libreplan-webapp/src/main/resources/i18n/cs.po index 72e4a92bc9..683980c1be 100644 --- a/libreplan-webapp/src/main/resources/i18n/cs.po +++ b/libreplan-webapp/src/main/resources/i18n/cs.po @@ -5461,10 +5461,8 @@ msgid "LDAP Roles (separated by ;)" msgstr "Role LDAP (oddělené ;)" #: libreplan-webapp/src/main/webapp/common/configuration.zul:129 -msgid "" -"Help the project developers to collect information about which LibrePlan " -"version you are using" -msgstr "Pomoci vývojářům projektu LibrePlan sběrem informací o verzi, kterou používáte" +msgid "Allow collection of anonymous statistics to help us improve LibrePlan" +msgstr "Umožnit shromažďování anonymních statistik, abychom mohli zlepšit LibrePlan" #: org/libreplan/web/resources/worker/WorkerCRUDController.java:190 msgid "Not bound" diff --git a/libreplan-webapp/src/main/resources/i18n/de.po b/libreplan-webapp/src/main/resources/i18n/de.po index d1cd48f02e..496e355844 100644 --- a/libreplan-webapp/src/main/resources/i18n/de.po +++ b/libreplan-webapp/src/main/resources/i18n/de.po @@ -5445,12 +5445,8 @@ msgid "Inherited exception" msgstr "Geerbte Ausnahme" #: libreplan-webapp/src/main/webapp/common/configuration.zul:150 -msgid "" -"Help the project developers to collect information about which LibrePlan " -"version you are using" -msgstr "" -"Helfen Sie den Projektentwicklern, Informationen darüber zu sammeln, welche " -"LibrePlan-Version Sie verwenden" +msgid "Allow collection of anonymous statistics to help us improve LibrePlan" +msgstr "Anonyme Statistiken sammeln lassen, um uns bei der Verbesserung von LibrePlan zu helfen" #: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:1179 msgid "" diff --git a/libreplan-webapp/src/main/resources/i18n/es.po b/libreplan-webapp/src/main/resources/i18n/es.po index e17986ba74..30dd9f7f95 100644 --- a/libreplan-webapp/src/main/resources/i18n/es.po +++ b/libreplan-webapp/src/main/resources/i18n/es.po @@ -5436,12 +5436,8 @@ msgid "Inherited exception" msgstr "Excepción heredada" #: libreplan-webapp/src/main/webapp/common/configuration.zul:150 -msgid "" -"Help the project developers to collect information about which LibrePlan " -"version you are using" -msgstr "" -"Ayude a los desarrolladores del proyecto a recoger información sobre que " -"versión de LibrePlan está usando" +msgid "Allow collection of anonymous statistics to help us improve LibrePlan" +msgstr "Permitir la recopilación de estadísticas anónimas para ayudarnos a mejorar LibrePlan" #: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:1179 msgid "" diff --git a/libreplan-webapp/src/main/resources/i18n/fa_IR.po b/libreplan-webapp/src/main/resources/i18n/fa_IR.po index 3bab0b8f82..251130b67e 100644 --- a/libreplan-webapp/src/main/resources/i18n/fa_IR.po +++ b/libreplan-webapp/src/main/resources/i18n/fa_IR.po @@ -5462,10 +5462,8 @@ msgid "LDAP Roles (separated by ;)" msgstr "نقش های LDAP (توسط ; جدا گردد)" #: libreplan-webapp/src/main/webapp/common/configuration.zul:129 -msgid "" -"Help the project developers to collect information about which LibrePlan " -"version you are using" -msgstr "کمک به توسعه دهندگان برای جمع آوری اطلاعات درباره نسخه LibrePlan ای که استفاده می نمایید" +msgid "Allow collection of anonymous statistics to help us improve LibrePlan" +msgstr "اجازه جمع‌آوری آمار ناشناس برای کمک به ما در بهبود LibrePlan" #: org/libreplan/web/resources/worker/WorkerCRUDController.java:190 msgid "Not bound" diff --git a/libreplan-webapp/src/main/resources/i18n/fr.po b/libreplan-webapp/src/main/resources/i18n/fr.po index ea3d991ed5..639c5d8120 100644 --- a/libreplan-webapp/src/main/resources/i18n/fr.po +++ b/libreplan-webapp/src/main/resources/i18n/fr.po @@ -5468,12 +5468,8 @@ msgid "Inherited exception" msgstr "Exception héritée" #: libreplan-webapp/src/main/webapp/common/configuration.zul:150 -msgid "" -"Help the project developers to collect information about which LibrePlan " -"version you are using" -msgstr "" -"Aide les développeurs du projet pour collecter de l'information sur la " -"version de LibrePlan que vous utilisez" +msgid "Allow collection of anonymous statistics to help us improve LibrePlan" +msgstr "Autoriser la collecte de statistiques anonymes pour nous aider à améliorer LibrePlan" #: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:1179 msgid "" diff --git a/libreplan-webapp/src/main/resources/i18n/gl.po b/libreplan-webapp/src/main/resources/i18n/gl.po index 54d8ee9c6e..4ba9092701 100644 --- a/libreplan-webapp/src/main/resources/i18n/gl.po +++ b/libreplan-webapp/src/main/resources/i18n/gl.po @@ -5465,10 +5465,8 @@ msgid "LDAP Roles (separated by ;)" msgstr "Roles do LDAP (separados por ;)" #: libreplan-webapp/src/main/webapp/common/configuration.zul:129 -msgid "" -"Help the project developers to collect information about which LibrePlan " -"version you are using" -msgstr "Axude aos desenvolvedores do proxecto a recoller información sobre que versión de LibrePlan está usando" +msgid "Allow collection of anonymous statistics to help us improve LibrePlan" +msgstr "Permitir a recollida de estatísticas anónimas para axudarnos a mellorar LibrePlan" #: org/libreplan/web/resources/worker/WorkerCRUDController.java:190 msgid "Not bound" diff --git a/libreplan-webapp/src/main/resources/i18n/it.po b/libreplan-webapp/src/main/resources/i18n/it.po index 0031535479..9d8d226188 100644 --- a/libreplan-webapp/src/main/resources/i18n/it.po +++ b/libreplan-webapp/src/main/resources/i18n/it.po @@ -5428,12 +5428,8 @@ msgid "Inherited exception" msgstr "Eccezione ereditata" #: libreplan-webapp/src/main/webapp/common/configuration.zul:150 -msgid "" -"Help the project developers to collect information about which LibrePlan " -"version you are using" -msgstr "" -"Aiuta gli sviluppatori del progetto a collezionare informazioni circa la " -"versione di LibrePlan che stai utilizzando" +msgid "Allow collection of anonymous statistics to help us improve LibrePlan" +msgstr "Consenti la raccolta di statistiche anonime per aiutarci a migliorare LibrePlan" #: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:1179 msgid "" diff --git a/libreplan-webapp/src/main/resources/i18n/ja.po b/libreplan-webapp/src/main/resources/i18n/ja.po index f01519a1af..fe4cea9b23 100644 --- a/libreplan-webapp/src/main/resources/i18n/ja.po +++ b/libreplan-webapp/src/main/resources/i18n/ja.po @@ -5461,10 +5461,8 @@ msgid "LDAP Roles (separated by ;)" msgstr "LDAPロール(;で区切り)" #: libreplan-webapp/src/main/webapp/common/configuration.zul:129 -msgid "" -"Help the project developers to collect information about which LibrePlan " -"version you are using" -msgstr "使用中のLibrePlanバージョンの情報を収集して,プロジェクト開発者を支援する" +msgid "Allow collection of anonymous statistics to help us improve LibrePlan" +msgstr "LibrePlan改善のための匿名統計収集を許可する" #: org/libreplan/web/resources/worker/WorkerCRUDController.java:190 msgid "Not bound" diff --git a/libreplan-webapp/src/main/resources/i18n/keys.pot b/libreplan-webapp/src/main/resources/i18n/keys.pot index c78c5de0df..9b38c9c315 100644 --- a/libreplan-webapp/src/main/resources/i18n/keys.pot +++ b/libreplan-webapp/src/main/resources/i18n/keys.pot @@ -17,348 +17,378 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: libreplan-webapp/src/main/webapp/qualityforms/_listQualityForm.zul:27 -msgid "name" +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementFiles.zul:39 +msgid "Upload date" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/costcategories/entities/ResourcesCostCategoryAssignment.java:102 -msgid "cost assignment's start date not specified" +#: org/libreplan/web/common/components/finders/ResourceInExpenseSheetBandboxFinder.java:44 +msgid "Resource name (Resource code)" msgstr "" -#: org/libreplan/web/resources/worker/CriterionsMachineController.java:184 -#: org/libreplan/web/resources/worker/CriterionsController.java:192 -msgid "Criterion already assigned" +#: org/libreplan/web/orders/AssignedTaskQualityFormsToOrderElementController.java:468 +#: org/libreplan/web/orders/AssignedTaskQualityFormsToOrderElementModel.java:293 +#: libreplan-business/src/main/java/org/libreplan/business/advance/entities/AdvanceMeasurement.java:80 +#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/TaskQualityFormItem.java:137 +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportLine.java:142 +#: libreplan-business/src/main/java/org/libreplan/business/expensesheet/entities/ExpenseSheetLine.java:137 +#: libreplan-business/src/main/java/org/libreplan/business/advance/entities/AdvanceMeasurement.java:80 +#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/TaskQualityFormItem.java:137 +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportLine.java:142 +#: libreplan-business/src/main/java/org/libreplan/business/expensesheet/entities/ExpenseSheetLine.java:137 +msgid "date not specified" msgstr "" -#: libreplan-webapp/src/main/webapp/resources/criterions/_edition.zul:55 -msgid "Hierarchy" +#: org/libreplan/web/users/dashboard/PersonalTimesheetController.java:669 +#: org/libreplan/web/common/components/finders/OrderElementBandboxFinder.java:51 +#: org/libreplan/web/workreports/WorkReportCRUDController.java:837 +#: libreplan-webapp/src/main/webapp/orders/_orderElementTreeFilter.zul:23 +#: libreplan-webapp/src/main/webapp/myaccount/_myTasksArea.zul:34 +#: libreplan-webapp/src/main/webapp/myaccount/personalTimesheet.zul:159 +#: libreplan-webapp/src/main/webapp/montecarlo/_montecarlo.zul:49 +#: libreplan-webapp/src/main/webapp/limitingresources/limitingResourcesLayout.zul:146 +#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:217 +#: libreplan-webapp/src/main/webapp/workreports/_editWorkReportType.zul:97 +#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:134 +#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:178 +msgid "Task" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/QualityForm.java:101 -msgid "quality form type not specified" +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReport.java:243 +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReport.java:243 +msgid "task cannot be empty if it is shared by lines" msgstr "" -#: org/libreplan/web/limitingresources/LimitingResourcesController.java:481 -msgid "Assign element to queue automatically" +#: libreplan-webapp/src/main/webapp/resources/worker/_list.zul:22 +msgid "Workers List" msgstr "" -#: org/libreplan/web/logs/IssueLogCRUDController.java:278 -msgid "High" +#: libreplan-business/src/main/java/org/libreplan/business/common/entities/JobSchedulerConfiguration.java:81 +#: libreplan-business/src/main/java/org/libreplan/business/common/entities/JobSchedulerConfiguration.java:81 +msgid "cron expression not specified" msgstr "" -#: org/libreplan/importers/JiraTimesheetSynchronizer.java:148 -msgid "Order element \"{0}\" not found" +#: org/libreplan/web/limitingresources/QueueComponent.java:506 +msgid "Move" msgstr "" -#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:140 -msgid "values are not valid, the values must not be null" +#: org/libreplan/web/logs/IssueLogCRUDController.java:437 +#: org/libreplan/web/logs/RiskLogCRUDController.java:417 +msgid "please select an author" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/OrderElement.java:1437 -msgid "a quality form cannot be assigned twice to the same task" +#: libreplan-webapp/src/main/webapp/orders/components/_listOrderElementMaterials.zul:101 +msgid "Available materials" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/common/IntegrationEntity.java:106 -msgid "code is already used" +#: libreplan-webapp/src/main/webapp/orders/_jiraSyncInfo.zul:20 +msgid "LibrePlan: JIRA synchronization info" msgstr "" -#: libreplan-webapp/src/main/webapp/myaccount/personalTimesheet.zul:110 -msgid "Total extra per day" +#: libreplan-webapp/src/main/webapp/myaccount/personalTimesheet.zul:21 +msgid "LibrePlan: Personal timesheet" msgstr "" -#: org/libreplan/web/common/JobSchedulerController.java:385 -msgid "Job is scheduled/unscheduled" +#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:74 +msgid "Date Finish" msgstr "" -#: org/libreplan/web/common/JobSchedulerModel.java:157 -msgid "Milestone reached job" +#: org/libreplan/web/resources/worker/AssignedCriterionsModel.java:338 +#: org/libreplan/web/resources/machine/AssignedMachineCriterionsModel.java:401 +msgid "The {0} is not valid. Other value exists from the same criterion type" msgstr "" -#: org/libreplan/web/orders/DetailsOrderElementController.java:120 -#: org/libreplan/web/orders/ProjectDetailsController.java:262 -msgid "Must be after 2010!" +#: org/libreplan/web/common/CustomMenuController.java:390 +#: libreplan-webapp/src/main/webapp/dashboard/_dashboardfororder.zul:84 +#: libreplan-webapp/src/main/webapp/orders/_edition.zul:221 +#: libreplan-webapp/src/main/webapp/common/configuration.zul:181 +msgid "Resources" msgstr "" -#: org/libreplan/web/logs/IssueLogCRUDController.java:276 -msgid "Low" +#: org/libreplan/web/resources/machine/MachineCRUDController.java:574 +msgid "Machine" msgstr "" -#: org/libreplan/web/planner/advances/AdvanceAssignmentPlanningCommand.java:69 -msgid "Progress assignment" +#: libreplan-webapp/src/main/webapp/orders/_edition.zul:56 +msgid "WBS (tasks)" msgstr "" -#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:113 -msgid "Select template" +#: libreplan-webapp/src/main/webapp/materials/materials.zul:85 +#: libreplan-webapp/src/main/webapp/orders/components/_listOrderElementMaterials.zul:122 +#: libreplan-webapp/src/main/webapp/orders/_assignmentsBox.zul:32 +#: libreplan-webapp/src/main/webapp/templates/_materialAssignmentsBox.zul:31 +msgid "Unit price" msgstr "" -#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:23 -msgid "LibrePlan: Timesheets" +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/Worker.java:136 +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/Worker.java:136 +msgid "worker's surname not specified" msgstr "" -#: libreplan-webapp/src/main/webapp/myaccount/_myTasksArea.zul:39 -msgid "Work done" +#: libreplan-webapp/src/main/webapp/logs/_editRiskLog.zul:133 +msgid "Prevention" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/advance_allocation.zul:46 -msgid "Apply changes and go back to scheduling" +#: libreplan-webapp/src/main/webapp/resources/worker/_localizations.zul:31 +#: libreplan-webapp/src/main/webapp/resources/worker/_localizations.zul:53 +#: libreplan-webapp/src/main/webapp/resources/worker/_localizations.zul:68 +msgid "Group" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportLine.java:391 -msgid "fields should match with timesheet data if are shared by lines" +#: libreplan-webapp/src/main/webapp/qualityforms/_listQualityForm.zul:22 +msgid "Quality Forms List" msgstr "" -#: org/libreplan/web/exceptionDays/CalendarExceptionTypeModel.java:96 -msgid "Cannot remove {0}, since it is being used by some exception day" +#: org/libreplan/web/planner/allocation/AllocationRow.java:844 +msgid "Resources per day are zero" msgstr "" -#: org/libreplan/web/planner/allocation/stretches/StretchesFunctionModel.java:278 -msgid "Stretch date must not be before task start date: " +#: org/libreplan/web/resources/worker/WorkerCRUDController.java:979 +msgid "Worker deleted" msgstr "" -#: libreplan-webapp/src/main/webapp/resources/worker/_list.zul:35 -#: libreplan-webapp/src/main/webapp/resources/criterions/_workers.zul:28 -msgid "Surname" +#: org/libreplan/web/users/dashboard/ExpensesAreaController.java:87 +msgid "Expense sheet \"{0}\" deleted" msgstr "" -#: org/libreplan/web/exceptionDays/CalendarExceptionTypeCRUDController.java:211 -msgid "Cannot remove the predefined calendar exception day \"{0}\"" +#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/QualityForm.java:406 +#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/QualityForm.java:406 +msgid "progress type should must be defined if quality form reports progress" msgstr "" -#: org/libreplan/web/logs/IssueLogCRUDController.java:415 -#: org/libreplan/web/logs/RiskLogCRUDController.java:397 -#: libreplan-webapp/src/main/webapp/logs/_logs.zul:42 -msgid "Issue logs" +#: org/libreplan/web/common/CustomMenuController.java:425 +#: org/libreplan/web/costcategories/TypeOfWorkHoursCRUDController.java:111 +#: libreplan-webapp/src/main/webapp/common/configuration.zul:188 +msgid "Hours Types" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/common/entities/JobSchedulerConfiguration.java:90 -msgid "job class name not specified" +#: libreplan-webapp/src/main/webapp/montecarlo/_montecarlo.zul:91 +msgid "Group by weeks" msgstr "" -#: libreplan-webapp/src/main/webapp/common/configuration.zul:146 -msgid "Show a notification when new LibrePlan versions are released" +#: libreplan-webapp/src/main/webapp/workreports/workReportQuery.zul:124 +msgid "Finish hour" msgstr "" -#: org/libreplan/web/orders/OrderCRUDController.java:492 -msgid "Starting date cannot be empty in forward mode" +#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:40 +#: libreplan-webapp/src/main/webapp/common/_listJobScheduling.zul:29 +msgid "Job name" msgstr "" -#: libreplan-webapp/src/main/webapp/myaccount/settings.zul:164 -msgid "Projects since" +#: org/libreplan/web/logs/IssueLogCRUDController.java:276 +msgid "Low" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/QualityForm.java:406 -msgid "progress type should must be defined if quality form reports progress" +#: org/libreplan/web/resources/worker/CriterionsController.java:242 +#: org/libreplan/web/resources/machine/MachineConfigurationController.java:215 +msgid "End date is not valid, the new end date must be after start date" msgstr "" -#: org/libreplan/web/planner/TaskElementAdapter.java:871 -msgid "Budget: {0}, Consumed: {1} ({2}%)" +#: libreplan-business/src/main/java/org/libreplan/business/common/IntegrationEntity.java:47 +#: libreplan-business/src/main/java/org/libreplan/business/common/IntegrationEntity.java:47 +msgid "code not specified" msgstr "" -#: org/libreplan/web/limitingresources/LimitingResourcesController.java:495 -#: org/libreplan/web/limitingresources/LimitingResourcesController.java:578 -msgid "" -"Cannot allocate selected element. There is not any queue that matches " -"resource allocation criteria at any interval of time" +#: org/libreplan/web/planner/order/OrderPlanningModel.java:739 +msgid "Date must be inside visualization area" msgstr "" -#: org/libreplan/web/planner/milestone/AddMilestoneCommand.java:67 -msgid "Add Milestone" +#: libreplan-webapp/src/main/webapp/common/layout/login.zul:159 +msgid "Supported Chrome, Firefox, Safari and Epiphany browsers" msgstr "" -#: libreplan-webapp/src/main/webapp/common/layout/login.zul:137 -msgid "User disabled" +#: libreplan-webapp/src/main/webapp/orders/_edition.zul:294 +msgid "Delivery dates requested by customer. " msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/MachineWorkersConfigurationUnit.java:166 -msgid "All machine worker assignments must have a start date earlier than the end date" +#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:333 +#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:334 +#: org/libreplan/web/planner/consolidations/AdvanceConsolidationController.java:109 +#: org/libreplan/web/planner/consolidations/AdvanceConsolidationController.java:110 +msgid "Progress measurements" msgstr "" -#: org/libreplan/web/workreports/WorkReportCRUDController.java:870 -#: libreplan-webapp/src/main/webapp/workreports/workReportQuery.zul:121 -msgid "Start hour" +#: org/libreplan/web/reports/SchedulingProgressPerOrderController.java:102 +#: org/libreplan/web/reports/TimeLineRequiredMaterialController.java:107 +#: org/libreplan/web/reports/OrderCostsPerResourceController.java:113 +msgid "please, select a project" msgstr "" -#: org/libreplan/web/calendars/BaseCalendarEditionController.java:555 -msgid "Exception: {0}" +#: org/libreplan/web/resources/worker/WorkerCRUDController.java:1010 +#: org/libreplan/web/reports/HoursWorkedPerWorkerController.java:297 +#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:140 +msgid "Worker" msgstr "" -#: org/libreplan/web/common/CustomMenuController.java:318 -#: org/libreplan/web/importers/ProjectImportController.java:84 -msgid "Import project" +#: libreplan-webapp/src/main/webapp/planner/editTask.zul:60 +msgid "Task properties" msgstr "" -#: org/libreplan/web/orders/CriterionRequirementWrapper.java:46 -#: org/libreplan/web/calendars/BaseCalendarEditionController.java:1091 -#: org/libreplan/web/workreports/WorkReportQueryController.java:259 -#: libreplan-webapp/src/main/webapp/workreports/workReportQuery.zul:82 -msgid "Direct" +#: org/libreplan/web/orders/DetailsOrderElementController.java:143 +msgid "must be after starting date" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAdvances.zul:24 -#: libreplan-webapp/src/main/webapp/templates/_advances.zul:27 -msgid "Progress assignments" +#: org/libreplan/web/common/ConfigurationController.java:344 +msgid "Please select a connector to test it" msgstr "" -#: libreplan-webapp/src/main/webapp/externalcompanies/_editExternalCompany.zul:85 -msgid "Our company username" +#: org/libreplan/web/planner/tabs/PlanningTabCreator.java:197 +#: org/libreplan/web/planner/tabs/PlanningTabCreator.java:225 +msgid "Projects Planning" msgstr "" -#: libreplan-webapp/src/main/webapp/common/configuration.zul:192 -msgid "Material categories" +#: org/libreplan/web/planner/order/SaveCommandBuilder.java:1010 +msgid "Task {0}" msgstr "" -#: org/libreplan/web/orders/materials/AssignedMaterialsController.java:450 -msgid "Do you want to split the material assignment {0}?" +#: libreplan-webapp/src/main/webapp/myaccount/settings.zul:144 +#: libreplan-webapp/src/main/webapp/planner/print_configuration.zul:31 +msgid "Show labels" msgstr "" -#: org/libreplan/web/expensesheet/ExpenseSheetCRUDController.java:205 -msgid "cannot be empty or less than zero" +#: libreplan-business/src/main/java/org/libreplan/business/calendars/entities/ResourceCalendar.java:74 +#: libreplan-business/src/main/java/org/libreplan/business/calendars/entities/ResourceCalendar.java:74 +msgid "Capacity must be a positive integer number" msgstr "" -#: org/libreplan/web/common/JobSchedulerController.java:328 -msgid "Unable to parse cron expression" +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementHours.zul:77 +msgid "Imputed expenses" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/editTask.zul:62 -msgid "Normal resource allocation" +#: org/libreplan/web/planner/chart/EarnedValueChartFiller.java:250 +msgid "EAC" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_edition.zul:112 -#: libreplan-webapp/src/main/webapp/logs/_listRiskLog.zul:36 -#: libreplan-webapp/src/main/webapp/logs/_editRiskLog.zul:149 -msgid "Responsible" +#: org/libreplan/web/users/dashboard/PersonalTimesheetDTO.java:125 +msgid "Week {0}" msgstr "" -#: org/libreplan/web/orders/OrdersTreeComponent.java:105 -#: libreplan-webapp/src/main/webapp/orders/_edition.zul:149 -#: libreplan-webapp/src/main/webapp/orders/_projectDetails.zul:70 -#: libreplan-webapp/src/main/webapp/orders/_list.zul:33 -#: libreplan-webapp/src/main/webapp/orders/_orderElementDetails.zul:53 -#: libreplan-webapp/src/main/webapp/logs/_listIssueLog.zul:34 -#: libreplan-webapp/src/main/webapp/logs/_editIssueLog.zul:141 -#: libreplan-webapp/src/main/webapp/subcontract/customerCommunications.zul:59 -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelTaskProperties.zul:47 -msgid "Deadline" +#: libreplan-webapp/src/main/webapp/labels/_listLabelTypes.zul:22 +msgid "Label Types List" msgstr "" -#: org/libreplan/web/planner/order/OrderPlanningController.java:311 -msgid "filtering" +#: org/libreplan/importers/JiraOrderElementSynchronizer.java:182 +msgid "Order-element for \"{0}\" issue not found" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_editOrderElement.zul:62 -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementTaskQualityForms.zul:26 -#: libreplan-webapp/src/main/webapp/orders/_edition.zul:71 -msgid "Task quality forms" +#: org/libreplan/web/common/ConfigurationController.java:382 +msgid "Tim connection was successful" msgstr "" -#: libreplan-webapp/src/main/webapp/templates/templates.zul:22 -msgid "LibrePlan: Templates" +#: libreplan-webapp/src/main/webapp/myaccount/settings.zul:47 +msgid "Personal Data" msgstr "" -#: org/libreplan/web/workreports/WorkReportTypeModel.java:414 -msgid "There is another timesheet template with the same name" +#: libreplan-webapp/src/main/webapp/orders/_edition.zul:75 +msgid "Authorizations" msgstr "" -#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:223 -msgid "Origin" +#: org/libreplan/importers/ExportTimesheetsToTim.java:185 +msgid "No work reportlines are found for order: \"{0}\"" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/externalcompanies/entities/ExternalCompany.java:165 -msgid "Company ID already used. It must be unique" +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/MachineWorkersConfigurationUnit.java:179 +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/MachineWorkersConfigurationUnit.java:179 +msgid "The same resource is assigned twice inside an interval" msgstr "" -#: libreplan-webapp/src/main/webapp/common/layout/template.zul:84 -msgid "scenario" +#: libreplan-webapp/src/main/webapp/dashboard/_costStatus.zul:25 +msgid "Current state indicators" msgstr "" -#: org/libreplan/web/orders/OrdersTreeComponent.java:69 -msgid "Total task hours" +#: org/libreplan/web/scenarios/ScenarioCRUDController.java:232 +msgid "Scenarios" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/planner/entities/SubcontractorCommunication.java:80 -msgid "subcontracted task data not specified" +#: libreplan-webapp/src/main/webapp/externalcompanies/_listExternalCompanies.zul:22 +msgid "Companies List" msgstr "" -#: libreplan-webapp/src/main/webapp/resources/worker/_workRelationships.zul:53 -msgid "New entry" +#: libreplan-webapp/src/main/webapp/costcategories/_editCostCategory.zul:29 +msgid "Category data" msgstr "" -#: org/libreplan/web/resources/worker/WorkerCRUDController.java:973 -msgid "Delete bound user" +#: libreplan-webapp/src/main/webapp/users/_editUser.zul:121 +msgid "Go to edit worker window" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementCriterionRequirements.zul:184 -msgid "Add new hours group" +#: org/libreplan/web/expensesheet/ExpenseSheetCRUDController.java:479 +msgid "The code cannot be empty and it must be unique." msgstr "" -#: libreplan-webapp/src/main/webapp/users/_listUsers.zul:31 -#: libreplan-webapp/src/main/webapp/users/_editUser.zul:93 -msgid "Authentication type" +#: libreplan-webapp/src/main/webapp/templates/_editTemplate.zul:73 +#: libreplan-webapp/src/main/webapp/templates/_historicalAssignment.zul:30 +msgid "Assignment log" msgstr "" -#: libreplan-webapp/src/main/webapp/reports/workingArrangementsPerOrderReport.zul:21 -msgid "LibrePlan: Task Scheduling Status In Project" +#: org/libreplan/web/workreports/WorkReportCRUDController.java:1122 +msgid "Please, enter a valid effort" msgstr "" -#: org/libreplan/web/resources/criterion/CriterionsModel.java:216 -msgid "Resource type cannot be empty" +#: libreplan-webapp/src/main/webapp/advance/_editAdvanceTypes.zul:38 +msgid "Unit name" msgstr "" -#: libreplan-webapp/src/main/webapp/myaccount/personalTimesheet.zul:81 -msgid "Timesheet summary" +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelNonLimitingResourceAllocation.zul:112 +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelNonLimitingResourceAllocation.zul:120 +#: libreplan-webapp/src/main/webapp/planner/order.zul:107 +msgid "Consolidated" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_edition.zul:237 -msgid "Budget margin" +#: libreplan-business/src/main/java/org/libreplan/business/costcategories/entities/HourCost.java:152 +#: libreplan-business/src/main/java/org/libreplan/business/costcategories/entities/HourCost.java:152 +msgid "The end date cannot be before the start date" msgstr "" -#: libreplan-webapp/src/main/webapp/resources/search/allocation_selector_combo.zul:26 -msgid "Select criteria set or a resource to add" +#: libreplan-webapp/src/main/webapp/resources/worker/_listVirtualWorkers.zul:22 +msgid "Virtual Workers Groups List" msgstr "" -#: org/libreplan/web/common/ConfigurationController.java:344 -msgid "Please select a connector to test it" +#: org/libreplan/web/planner/order/SaveCommandBuilder.java:516 +#: org/libreplan/web/planner/order/SaveCommandBuilder.java:526 +msgid "Repeated Hours Group code {0} in Project {1}" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/imports/projectImport.zul:60 -msgid "Upload Project" +#: org/libreplan/web/common/converters/ConverterFactory.java:64 +msgid "Not found converter for {0}" msgstr "" -#: org/libreplan/web/resources/worker/WorkRelationshipsController.java:159 +#: org/libreplan/web/templates/TemplatesTreeComponent.java:60 +msgid "New Template element" +msgstr "" + +#: org/libreplan/web/workreports/WorkReportTypeCRUDController.java:902 msgid "" -"Could not save time period. Time period overlaps with another non-compatible " -"time period" +"Cannot delete timesheet template. There are some timesheets bound to it." msgstr "" -#: org/libreplan/web/orders/AssignedTaskQualityFormsToOrderElementController.java:367 -msgid "Checked" +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/CriterionType.java:408 +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/CriterionType.java:408 +msgid "criterion codes must be unique inside a criterion type" msgstr "" -#: org/libreplan/web/planner/TaskElementAdapter.java:875 -msgid "Hours cost: {0}, Expenses cost: {1}" +#: libreplan-webapp/src/main/webapp/common/configuration.zul:404 +msgid "Authentication" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/common/entities/ConfigurationRolesLDAP.java:51 -msgid "role ldap not specified" +#: org/libreplan/web/users/ProfileCRUDController.java:123 +msgid "Profile" msgstr "" -#: libreplan-webapp/src/main/webapp/users/_editUser.zul:110 -msgid "Has bound resource" +#: libreplan-webapp/src/main/webapp/workreports/workReportQuery.zul:39 +msgid "Filter timesheet lines by" msgstr "" -#: org/libreplan/web/orders/JiraSynchronizationController.java:178 -#: org/libreplan/web/orders/JiraSynchronizationController.java:225 -#: org/libreplan/web/common/ConfigurationController.java:413 -#: org/libreplan/web/common/ConfigurationController.java:418 -msgid "Cannot connect to JIRA server" +#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:180 +#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:214 +msgid "Exception Type" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/materials/entities/Material.java:105 -msgid "description is not specified" +#: org/libreplan/web/workreports/WorkReportTypeCRUDController.java:873 +msgid "Timesheets Template" msgstr "" -#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:120 -msgid "Apply filter to" +#: org/libreplan/web/expensesheet/ExpenseSheetCRUDController.java:606 +msgid "Personal" msgstr "" #: libreplan-webapp/src/main/webapp/logs/_listRiskLog.zul:25 @@ -366,5916 +396,6474 @@ msgstr "" msgid "Projectname" msgstr "" -#: org/libreplan/importers/JiraTimesheetSynchronizer.java:307 -msgid "Hours type should not be empty to synchronine timesheets" +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/CriterionType.java:517 +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/CriterionType.java:517 +msgid "last criterion sequence code not specified" msgstr "" -#: org/libreplan/web/planner/allocation/stretches/StretchesFunctionModel.java:165 -#: libreplan-business/src/main/java/org/libreplan/business/planner/entities/StretchesFunction.java:318 -msgid "At least one stretch is needed" +#: libreplan-webapp/src/main/webapp/advance/_editAdvanceTypes.zul:61 +msgid "Precision" msgstr "" -#: org/libreplan/web/advance/AdvanceTypeCRUDController.java:75 -msgid "Value is not valid, the precision value must not be empty" +#: libreplan-webapp/src/main/webapp/common/layout/_customMenu.zul:83 +#: libreplan-webapp/src/main/webapp/common/layout/login.zul:66 +msgid "Help" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/components/_jiraOrderElementSync.zul:39 -msgid "Sync with JIRA" +#: org/libreplan/web/common/CustomMenuController.java:295 +#: libreplan-webapp/src/main/webapp/scenarios/_edition.zul:48 +msgid "Projects" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_taskInformation.zul:27 -msgid "Task Information" +#: org/libreplan/web/workreports/WorkReportCRUDController.java:1525 +msgid "must be before end date" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_taskInformation.zul:38 -msgid "Total estimated hours" +#: libreplan-business/src/main/java/org/libreplan/business/planner/entities/SubcontractedTaskData.java:257 +#: libreplan-business/src/main/java/org/libreplan/business/planner/entities/SubcontractedTaskData.java:257 +msgid "delivery date not specified" msgstr "" -#: org/libreplan/web/workreports/WorkReportTypeCRUDController.java:873 -msgid "Timesheets Template" +#: libreplan-business/src/main/java/org/libreplan/business/costcategories/entities/CostCategory.java:281 +#: libreplan-business/src/main/java/org/libreplan/business/costcategories/entities/CostCategory.java:281 +msgid "Two Hour Cost of the same type overlap in time" msgstr "" -#: org/libreplan/web/montecarlo/MonteCarloController.java:144 -#: org/libreplan/web/montecarlo/MonteCarloController.java:273 -msgid "Number of iterations should be between 1 and {0}" +#: libreplan-webapp/src/main/webapp/templates/_historicalAssignment.zul:40 +msgid "Worked hours" msgstr "" -#: org/libreplan/web/planner/chart/EarnedValueChartFiller.java:250 -msgid "EAC" +#: org/libreplan/web/planner/chart/EarnedValueChartFiller.java:254 +msgid "SPI" msgstr "" -#: org/libreplan/web/common/components/NewAllocationSelector.java:75 -msgid "generic machines allocation" +#: libreplan-business/src/main/java/org/libreplan/business/costcategories/entities/ResourcesCostCategoryAssignment.java:128 +#: libreplan-business/src/main/java/org/libreplan/business/costcategories/entities/ResourcesCostCategoryAssignment.java:128 +msgid "cost assignment's resource not specified" msgstr "" -#: libreplan-webapp/src/main/webapp/email/email_templates.zul:63 -msgid "Select template type" +#: org/libreplan/web/planner/order/SaveCommandBuilder.java:347 +msgid "Project saved" msgstr "" -#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:333 -#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:334 -#: org/libreplan/web/planner/consolidations/AdvanceConsolidationController.java:109 -#: org/libreplan/web/planner/consolidations/AdvanceConsolidationController.java:110 -msgid "Progress measurements" +#: libreplan-business/src/main/java/org/libreplan/business/planner/entities/Task.java:193 +#: libreplan-business/src/main/java/org/libreplan/business/planner/entities/Task.java:193 +msgid "element associated to a task must be not empty" msgstr "" -#: org/libreplan/web/common/ConfigurationController.java:329 -msgid "LDAP connection was successful" +#: org/libreplan/web/planner/reassign/ReassignCommand.java:313 +msgid "Reassign" msgstr "" -#: libreplan-webapp/src/main/webapp/common/layout/login.zul:205 -msgid "The browser you are using" +#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerInAMonthReport.zul:21 +msgid "LibrePlan: Total Worked Hours By Resource In A Month" msgstr "" -#: org/libreplan/web/orders/OrderCRUDController.java:447 -msgid "Schedule from deadline to start" +#: libreplan-webapp/src/main/webapp/scenarios/transferOrders.zul:23 +msgid "LibrePlan: Transfer Projects Between Scenarios" msgstr "" -#: libreplan-webapp/src/main/webapp/resources/machine/machines.zul:22 -msgid "LibrePlan: Machines" +#: org/libreplan/web/orders/ProjectDetailsController.java:299 +msgid "Set Code as autogenerated to create a new project from templates" msgstr "" -#: org/libreplan/web/common/CustomMenuController.java:400 -#: org/libreplan/web/workreports/WorkReportTypeCRUDController.java:878 -msgid "Timesheets Templates" +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementHours.zul:117 +msgid "Sum of expenses imputed in children tasks" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportLine.java:277 -msgid "Start hour cannot be greater than finish hour" +#: org/libreplan/web/workreports/WorkReportTypeCRUDController.java:835 +msgid "Index fields and labels must be unique and consecutive" msgstr "" -#: org/libreplan/web/planner/chart/EarnedValueChartFiller.java:248 -msgid "CV" +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelLimitingResourceAllocation.zul:89 +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelNonLimitingResourceAllocation.zul:140 +msgid "Select" msgstr "" -#: libreplan-webapp/src/main/webapp/externalcompanies/_editExternalCompany.zul:40 -msgid "Company name" +#: libreplan-business/src/main/java/org/libreplan/business/costcategories/entities/ResourcesCostCategoryAssignment.java:119 +#: libreplan-business/src/main/java/org/libreplan/business/costcategories/entities/ResourcesCostCategoryAssignment.java:119 +msgid "cost assignment's category not specified" msgstr "" -#: org/libreplan/web/calendars/BaseCalendarEditionController.java:1368 -msgid "It cannot be empty" +#: org/libreplan/web/common/CustomMenuController.java:418 +#: org/libreplan/web/costcategories/CostCategoryCRUDController.java:530 +msgid "Cost Categories" msgstr "" -#: org/libreplan/web/resources/criterion/CriterionsModel.java:217 -msgid "Criterion cannot be empty" +#: libreplan-business/src/main/java/org/libreplan/business/common/entities/EntitySequence.java:93 +#: libreplan-business/src/main/java/org/libreplan/business/common/entities/EntitySequence.java:93 +msgid "prefix not specified" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/index.zul:22 -msgid "LibrePlan: Planning" -msgstr "" - -#: libreplan-business/src/main/java/org/libreplan/business/common/entities/Configuration.java:146 -msgid "default calendar not specified" +#: org/libreplan/web/workreports/WorkReportCRUDController.java:1640 +msgid "Please select a worker" msgstr "" -#: libreplan-webapp/src/main/webapp/templates/_historicalAssignment.zul:40 -msgid "Worked hours" +#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:28 +msgid "Calendar data" msgstr "" -#: org/libreplan/web/planner/chart/EarnedValueChartFiller.java:247 -msgid "BCWP" +#: libreplan-business/src/main/java/org/libreplan/business/planner/entities/SubcontractedTaskData.java:243 +#: libreplan-business/src/main/java/org/libreplan/business/planner/entities/SubcontractedTaskData.java:243 +msgid "state not specified" msgstr "" -#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:192 -msgid "Heading Fields" +#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:1139 +msgid "Add measure" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementTaskQualityForms.zul:54 -#: libreplan-webapp/src/main/webapp/qualityforms/_editQualityForm.zul:66 -msgid "Report progress" +#: libreplan-business/src/main/java/org/libreplan/business/planner/entities/SubcontractorCommunication.java:80 +#: libreplan-business/src/main/java/org/libreplan/business/planner/entities/SubcontractorCommunication.java:80 +msgid "subcontracted task data not specified" msgstr "" -#: libreplan-webapp/src/main/webapp/workreports/workReportQuery.zul:52 -msgid "task" +#: org/libreplan/web/common/components/finders/OrderBandboxFinder.java:44 +#: libreplan-webapp/src/main/webapp/subcontract/subcontractedTasks.zul:51 +#: libreplan-webapp/src/main/webapp/subcontract/subcontractorCommunications.zul:63 +msgid "Project name" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_list.zul:36 -msgid "Planned Budget" +#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:784 +msgid "The max value must be greater than 0" msgstr "" -#: org/libreplan/web/resources/criterion/CriterionAdminController.java:97 -msgid "Question" +#: libreplan-webapp/src/main/webapp/externalcompanies/_listExternalCompanies.zul:30 +msgid "Associated user" msgstr "" -#: org/libreplan/web/users/UserCRUDController.java:298 -msgid "Users" +#: libreplan-webapp/src/main/webapp/dashboard/_pipeline.zul:10 +msgid "OUTSOURCED" msgstr "" -#: libreplan-webapp/src/main/webapp/templates/_historicalStatistics.zul:63 -msgid "Maximum/minimum of worked hours in finished applications" +#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:173 +msgid "For more details on cron expression click" msgstr "" -#: org/libreplan/web/common/CustomMenuController.java:457 -msgid "Job Scheduling" +#: libreplan-webapp/src/main/webapp/resources/criterions/_edition.zul:55 +msgid "Hierarchy" msgstr "" -#: org/libreplan/web/planner/allocation/FormBinder.java:666 -msgid "resources per day cannot be empty or less than zero" +#: libreplan-webapp/src/main/webapp/users/_editUser.zul:155 +#: libreplan-webapp/src/main/webapp/profiles/_editProfile.zul:60 +msgid "Role name" msgstr "" -#: org/libreplan/web/users/ProfileCRUDController.java:123 -msgid "Profile" +#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:140 +msgid "Activation periods" msgstr "" -#: libreplan-webapp/src/main/webapp/common/layout/_customMenu.zul:83 -#: libreplan-webapp/src/main/webapp/common/layout/login.zul:66 -msgid "Help" +#: libreplan-webapp/src/main/webapp/orders/_orderFilter.zul:30 +#: libreplan-webapp/src/main/webapp/orders/_orderElementTreeFilter.zul:29 +msgid "with" msgstr "" -#: org/libreplan/web/common/ConfigurationModel.java:206 -msgid "At least one {0} sequence must be active" +#: libreplan-business/src/main/java/org/libreplan/business/materials/entities/MaterialInfo.java:61 +#: libreplan-business/src/main/java/org/libreplan/business/materials/entities/MaterialInfo.java:61 +msgid "unit price not specified" msgstr "" -#: libreplan-webapp/src/main/webapp/dashboard/_pipeline.zul:14 -msgid "FINISHED" +#: libreplan-webapp/src/main/webapp/common/pageNotFound.zul:45 +#: libreplan-webapp/src/main/webapp/common/accessForbidden.zul:45 +msgid "Go to init" msgstr "" -#: org/libreplan/web/tree/TreeComponent.java:172 -msgid "Delete task" +#: libreplan-webapp/src/main/webapp/montecarlo/_montecarlo.zul:43 +msgid "Optimistic" msgstr "" -#: org/libreplan/web/common/ConfigurationController.java:484 -msgid "Failed to connect" +#: org/libreplan/importers/ExportTimesheetsToTim.java:224 +msgid "Registration response with empty refs" msgstr "" -#: org/libreplan/web/workreports/WorkReportTypeModel.java:427 -msgid "" -"Value is not valid.\n" -" Code cannot contain chars like '_'." +#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:204 +msgid "Exceptions list" msgstr "" -#: libreplan-webapp/src/main/webapp/common/pageNotFound.zul:51 -msgid "Sorry for the inconvenience." +#: libreplan-webapp/src/main/webapp/users/_editUser.zul:170 +msgid "Add profile" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportLine.java:479 -msgid "there are repeated description values in the timesheet lines" +#: org/libreplan/web/planner/taskedition/TaskPropertiesController.java:482 +msgid "Queue-based resource assignation" msgstr "" -#: libreplan-webapp/src/main/webapp/myaccount/personalTimesheet.zul:125 -msgid "Time tracking" +#: org/libreplan/web/resources/worker/WorkerCRUDController.java:330 +msgid "passwords do not match" msgstr "" -#: libreplan-webapp/src/main/webapp/common/layout/login.zul:60 -msgid "Access to the system" +#: libreplan-business/src/main/java/org/libreplan/business/advance/entities/AdvanceMeasurement.java:109 +#: libreplan-business/src/main/java/org/libreplan/business/advance/entities/AdvanceMeasurement.java:109 +msgid "progress assignment not specified" msgstr "" -#: libreplan-webapp/src/main/webapp/reports/schedulingProgressPerOrderReport.zul:153 -#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerInAMonthReport.zul:75 -#: libreplan-webapp/src/main/webapp/reports/workingProgressPerTaskReport.zul:166 -#: libreplan-webapp/src/main/webapp/reports/workingArrangementsPerOrderReport.zul:183 -#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:210 -#: libreplan-webapp/src/main/webapp/reports/orderCostsPerResource.zul:221 -#: libreplan-webapp/src/main/webapp/reports/timeLineMaterialReport.zul:154 -#: libreplan-webapp/src/main/webapp/reports/completedEstimatedHoursPerTask.zul:173 -msgid "Output format" +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReport.java:234 +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReport.java:234 +msgid "resource cannot be empty if it is shared by lines" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/_legendLoadChartOrder.zul:32 -msgid "Overload due to current project" +#: org/libreplan/web/logs/IssueLogCRUDController.java:268 +msgid "Minor" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/materials/entities/MaterialCategory.java:155 -msgid "material category name has to be unique. It is already used" +#: org/libreplan/web/resources/worker/WorkerCRUDController.java:979 +msgid "Worker and bound user deleted" msgstr "" -#: org/libreplan/importers/ExportTimesheetsToTim.java:203 -msgid "Unable to crate time registration for request" +#: libreplan-webapp/src/main/webapp/common/eventError.zul:57 +#: libreplan-webapp/src/main/webapp/common/error.zul:61 +msgid "Reload" msgstr "" -#: libreplan-webapp/src/main/webapp/users/_editUser.zul:165 -msgid "Profiles of LDAP users cannot be managed because LDAP is enabled and LDAP roles are being used." +#: org/libreplan/web/common/components/finders/OrderElementInExpenseSheetBandboxFinder.java:45 +msgid "Task name (Task code)" msgstr "" -#: org/libreplan/importers/JiraOrderElementSynchronizer.java:182 -msgid "Order-element for \"{0}\" issue not found" +#: org/libreplan/web/reports/SchedulingProgressPerOrderController.java:214 +msgid "Cannot be higher than Ending Date" msgstr "" -#: org/libreplan/web/templates/OrderTemplatesModel.java:304 -msgid "Already exists another template with the same name" +#: org/libreplan/web/calendars/BaseCalendarEditionController.java:292 +msgid "Root calendar" msgstr "" -#: org/libreplan/web/templates/historicalAssignment/OrderElementHistoricalAssignmentComponent.java:145 -#: org/libreplan/web/calendars/BaseCalendarCRUDController.java:415 -#: org/libreplan/web/users/ProfileCRUDController.java:158 -#: org/libreplan/web/qualityforms/QualityFormCRUDController.java:339 -#: org/libreplan/web/costcategories/TypeOfWorkHoursCRUDController.java:101 -#: org/libreplan/web/workreports/WorkReportTypeCRUDController.java:903 -#: org/libreplan/web/planner/taskedition/AdvancedAllocationTaskController.java:72 -msgid "Warning" +#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:123 +#: libreplan-webapp/src/main/webapp/workreports/_listWorkReportTypes.zul:47 +msgid "New timesheet" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/components/_listOrderElementMaterials.zul:101 -msgid "Available materials" +#: org/libreplan/web/expensesheet/ExpenseSheetCRUDController.java:234 +msgid "item" msgstr "" -#: libreplan-webapp/src/main/webapp/materials/materials.zul:88 -#: libreplan-webapp/src/main/webapp/users/_listUsers.zul:29 -#: libreplan-webapp/src/main/webapp/users/_editUser.zul:82 -msgid "Disabled" +#: org/libreplan/web/planner/taskedition/TaskPropertiesController.java:481 +msgid "Normal resource assignment" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportLine.java:94 -msgid "effort not specified" +#: org/libreplan/web/advance/AdvanceTypeCRUDController.java:80 +msgid "" +"Invalid value. Precission value must be lower than the Default Max value." msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAuthorizations.zul:43 -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAuthorizations.zul:67 -msgid "Permissions" +#: libreplan-webapp/src/main/webapp/orders/_assignmentsBox.zul:33 +#: libreplan-webapp/src/main/webapp/templates/_materialAssignmentsBox.zul:32 +msgid "Total price" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/OrderSyncInfo.java:87 -msgid "key not specified" +#: libreplan-webapp/src/main/webapp/common/layout/template.zul:94 +msgid "Select scenario" msgstr "" -#: libreplan-webapp/src/main/webapp/excetiondays/_editExceptionDayType.zul:47 -#: libreplan-webapp/src/main/webapp/materials/materials.zul:63 -#: libreplan-webapp/src/main/webapp/unittypes/_editUnitType.zul:45 -#: libreplan-webapp/src/main/webapp/orders/_edition.zul:107 -#: libreplan-webapp/src/main/webapp/orders/_projectDetails.zul:59 -#: libreplan-webapp/src/main/webapp/typeofworkhours/_editTypeOfWorkHours.zul:46 -#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:65 -#: libreplan-webapp/src/main/webapp/costcategories/_editCostCategory.zul:52 -#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:181 -#: libreplan-webapp/src/main/webapp/workreports/_editWorkReportType.zul:63 -#: libreplan-webapp/src/main/webapp/labels/_editLabelType.zul:56 -#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:82 -#: libreplan-webapp/src/main/webapp/resources/worker/_edition.zul:61 -#: libreplan-webapp/src/main/webapp/resources/machine/_editMachine.zul:50 -#: libreplan-webapp/src/main/webapp/resources/criterions/_edition.zul:76 -msgid "Generate code" +#: libreplan-webapp/src/main/webapp/resources/worker/_edition.zul:37 +msgid "Work record" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelSubcontract.zul:100 -msgid "New delivery date" +#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/Order.java:449 +#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/Order.java:449 +msgid "last task sequence code not specified" msgstr "" -#: libreplan-webapp/src/main/webapp/resources/worker/_localizations.zul:48 -msgid "Non-assigned locations" +#: org/libreplan/web/orders/OrderElementTreeController.java:681 +#: org/libreplan/web/orders/OrderModel.java:761 +#: org/libreplan/web/templates/TemplatesTreeController.java:194 +#: org/libreplan/web/common/CustomMenuController.java:365 +#: org/libreplan/web/reports/ProjectStatusReportController.java:167 +#: org/libreplan/web/planner/TaskElementAdapter.java:883 +#: libreplan-webapp/src/main/webapp/orders/_editOrderElement.zul:53 +#: libreplan-webapp/src/main/webapp/orders/_edition.zul:64 +#: libreplan-webapp/src/main/webapp/templates/_editTemplate.zul:69 +#: libreplan-webapp/src/main/webapp/templates/_editTemplateWindow.zul:51 +#: libreplan-webapp/src/main/webapp/common/configuration.zul:170 +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelSubcontract.zul:81 +msgid "Labels" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/imports/projectImport.zul:33 -msgid "Import Project" +#: libreplan-webapp/src/main/webapp/limitingresources/limitingResourcesLayout.zul:71 +#: libreplan-webapp/src/main/webapp/planner/advance_allocation.zul:68 +msgid "Pagination" msgstr "" -#: org/libreplan/web/advance/AdvanceTypeModel.java:89 -msgid "Progress type cannot be modified" +#: org/libreplan/web/common/TemplateModel.java:333 +msgid "{0} projects remaining to reassign" msgstr "" -#: org/libreplan/web/planner/allocation/AllocationRow.java:628 -msgid "{0} cannot be fulfilled" +#: org/libreplan/web/calendars/BaseCalendarCRUDController.java:442 +#: libreplan-webapp/src/main/webapp/orders/_edition.zul:155 +#: libreplan-webapp/src/main/webapp/orders/_projectDetails.zul:82 +#: libreplan-webapp/src/main/webapp/templates/_editTemplate.zul:118 +#: libreplan-webapp/src/main/webapp/common/configuration.zul:203 +#: libreplan-webapp/src/main/webapp/resources/worker/_edition.zul:38 +#: libreplan-webapp/src/main/webapp/resources/machine/_editMachine.zul:32 +#: libreplan-webapp/src/main/webapp/planner/order.zul:154 +msgid "Calendar" msgstr "" -#: org/libreplan/web/planner/allocation/FormBinder.java:899 -msgid "{0} could not be allocated. Cannot allocate more than one resource" +#: libreplan-business/src/main/java/org/libreplan/business/materials/entities/MaterialCategory.java:295 +#: libreplan-business/src/main/java/org/libreplan/business/materials/entities/MaterialCategory.java:295 +msgid "last material sequence code not specified" msgstr "" -#: org/libreplan/web/resources/worker/WorkerCRUDController.java:979 -msgid "Worker deleted" +#: libreplan-webapp/src/main/webapp/excetiondays/_editExceptionDayType.zul:73 +msgid "Own exception" msgstr "" -#: libreplan-webapp/src/main/webapp/qualityforms/_editQualityForm.zul:77 -msgid "New quality form item" +#: libreplan-webapp/src/main/webapp/orders/_editOrderElement.zul:39 +#: libreplan-webapp/src/main/webapp/templates/_editTemplateWindow.zul:42 +#: libreplan-webapp/src/main/webapp/planner/editTask.zul:48 +msgid "Edit task" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/costcategories/entities/CostCategory.java:281 -msgid "Two Hour Cost of the same type overlap in time" +#: org/libreplan/web/templates/OrderTemplatesController.java:273 +msgid "calendar not specified" msgstr "" -#: libreplan-webapp/src/main/webapp/subcontract/subcontractedTasks.zul:35 -msgid "Communications To Subcontractors" +#: org/libreplan/web/dashboard/GlobalProgressChart.java:56 +msgid "Expected" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/costcategories/entities/CostCategory.java:349 -msgid "the cost category name has to be unique and it is already in use" +#: libreplan-business/src/main/java/org/libreplan/business/advance/entities/DirectAdvanceAssignment.java:82 +#: libreplan-business/src/main/java/org/libreplan/business/advance/entities/DirectAdvanceAssignment.java:82 +msgid "maximum value not specified" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/labels/entities/LabelType.java:125 -msgid "label type name is already in use" +#: org/libreplan/web/orders/OrderElementTreeController.java:785 +msgid "" +"You cannot remove the task \"{0}\" because it has work reported on it or any " +"of its children" msgstr "" -#: libreplan-webapp/src/main/webapp/excetiondays/_editExceptionDayType.zul:105 -#: libreplan-webapp/src/main/webapp/logs/_editRiskLog.zul:168 -#: libreplan-webapp/src/main/webapp/logs/_editIssueLog.zul:165 -#: libreplan-webapp/src/main/webapp/calendars/calendars.zul:47 -#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:98 -msgid "Save and Continue" +#: org/libreplan/web/costcategories/CostCategoryCRUDController.java:147 +#: org/libreplan/web/workreports/WorkReportCRUDController.java:472 +msgid "" +"Hours types are empty. Please, create some hours types before proceeding" msgstr "" -#: libreplan-webapp/src/main/webapp/externalcompanies/externalcompanies.zul:23 -msgid "LibrePlan: Companies" +#: org/libreplan/web/templates/OrderTemplatesController.java:306 +#: org/libreplan/web/common/CustomMenuController.java:313 +msgid "Templates" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/common/entities/EntitySequence.java:152 -msgid "format sequence code invalid. It must not contain '_'" +#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:193 +#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerInAMonthReport.zul:48 +msgid "Year" msgstr "" -#: libreplan-webapp/src/main/webapp/users/_editUser.zul:170 -msgid "Add profile" +#: org/libreplan/web/planner/limiting/allocation/LimitingResourceAllocationModel.java:222 +msgid "All resources must be queue-based" msgstr "" -#: org/libreplan/web/resourceload/ResourceLoadController.java:728 -msgid "Show all elements" +#: org/libreplan/web/common/CustomMenuController.java:518 +#: libreplan-webapp/src/main/webapp/reports/schedulingProgressPerOrderReport.zul:39 +msgid "Work And Progress Per Project" msgstr "" -#: org/libreplan/web/workreports/WorkReportTypeModel.java:433 -msgid "There is another timesheet template with the same code" +#: org/libreplan/importers/JiraOrderElementSynchronizer.java:132 +#: org/libreplan/importers/JiraOrderElementSynchronizer.java:511 +msgid "Connection values of JIRA connector are invalid" msgstr "" -#: libreplan-webapp/src/main/webapp/common/configuration.zul:156 -msgid "Generate code for" +#: org/libreplan/web/planner/chart/EarnedValueChartFiller.java:251 +msgid "Estimate At Completion" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/QualityFormItem.java:112 -#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/QualityForm.java:277 -#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/TaskQualityFormItem.java:125 -msgid "percentage should be greater than 0% and less than 100%" +#: libreplan-webapp/src/main/webapp/common/configuration.zul:376 +msgid "UserDn" msgstr "" -#: org/libreplan/web/planner/order/SaveCommandBuilder.java:516 -#: org/libreplan/web/planner/order/SaveCommandBuilder.java:526 -msgid "Repeated Hours Group code {0} in Project {1}" +#: org/libreplan/web/importers/ProjectImportController.java:129 +msgid "Select one of the options." msgstr "" -#: org/libreplan/web/orders/AssignedTaskQualityFormsToOrderElementController.java:472 -#: org/libreplan/web/orders/AssignedTaskQualityFormsToOrderElementModel.java:285 -msgid "must be after the previous date" +#: libreplan-webapp/src/main/webapp/limitingresources/manualAllocation.zul:52 +msgid "Select queue" msgstr "" -#: org/libreplan/web/planner/allocation/AdvancedAllocationController.java:1285 -msgid "Stretches with Interpolation" +#: libreplan-webapp/src/main/webapp/orders/_ordersTab.zul:34 +msgid "Save Project" msgstr "" -#: org/libreplan/web/calendars/BaseCalendarCRUDController.java:318 -#: org/libreplan/web/scenarios/ScenarioCRUDController.java:129 -msgid "Create derived" +#: libreplan-webapp/src/main/webapp/calendars/_list.zul:30 +msgid "Inherits up to date" msgstr "" -#: libreplan-webapp/src/main/webapp/common/layout/timeout.zul:29 -msgid "Back to log in" +#: libreplan-business/src/main/java/org/libreplan/business/costcategories/entities/HourCost.java:95 +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/CriterionSatisfaction.java:183 +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/CriterionSatisfaction.java:183 +#: libreplan-business/src/main/java/org/libreplan/business/costcategories/entities/HourCost.java:95 +msgid "start date not specified" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/TaskQualityFormItem.java:100 -msgid "passed not specified" +#: org/libreplan/web/workreports/WorkReportCRUDController.java:1511 +msgid "must be later than start date" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_orderElementDetails.zul:32 -#: libreplan-webapp/src/main/webapp/templates/_historicalAssignment.zul:38 -#: libreplan-webapp/src/main/webapp/subcontract/subcontractedTasks.zul:53 -#: libreplan-webapp/src/main/webapp/workreports/workReportQuery.zul:118 -msgid "Task name" +#: libreplan-webapp/src/main/webapp/planner/advance_allocation.zul:59 +msgid "Zoom level" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/print_configuration.zul:49 -msgid "Print" +#: libreplan-webapp/src/main/webapp/calendars/_list.zul:29 +msgid "Inherits from date" msgstr "" -#: libreplan-webapp/src/main/webapp/common/eventError.zul:58 -#: libreplan-webapp/src/main/webapp/common/error.zul:62 -msgid "Exit session" +#: libreplan-webapp/src/main/webapp/excetiondays/_editExceptionDayType.zul:78 +msgid "Inherited exception" msgstr "" -#: org/libreplan/importers/ImportRosterFromTim.java:153 -msgid "No departments configured" +#: libreplan-webapp/src/main/webapp/myaccount/settings.zul:147 +#: libreplan-webapp/src/main/webapp/planner/print_configuration.zul:43 +msgid "Show money cost bar" msgstr "" -#: org/libreplan/web/planner/chart/EarnedValueChartFiller.java:252 -msgid "Variance At Completion" +#: libreplan-webapp/src/main/webapp/externalcompanies/_listExternalCompanies.zul:28 +#: libreplan-webapp/src/main/webapp/externalcompanies/_editExternalCompany.zul:53 +msgid "Client" msgstr "" -#: org/libreplan/web/planner/tabs/MonteCarloTabCreator.java:51 -#: org/libreplan/web/planner/tabs/MonteCarloTabCreator.java:159 -msgid "MonteCarlo Method" +#: libreplan-business/src/main/java/org/libreplan/business/costcategories/entities/CostCategory.java:296 +#: libreplan-business/src/main/java/org/libreplan/business/costcategories/entities/CostCategory.java:296 +msgid "The hour cost codes must be unique." msgstr "" -#: libreplan-webapp/src/main/webapp/resources/machine/_editMachine.zul:30 -msgid "Machine data" +#: libreplan-webapp/src/main/webapp/common/pageNotFound.zul:22 +msgid "LibrePlan: Page not found" msgstr "" -#: org/libreplan/web/calendars/BaseCalendarEditionController.java:209 -#: libreplan-webapp/src/main/webapp/excetiondays/_editExceptionDayType.zul:91 -msgid "Infinitely Over Assignable" +#: org/libreplan/web/reports/OrderCostsPerResourceModel.java:159 +#: org/libreplan/web/reports/OrderCostsPerResourceModel.java:262 +msgid "All projects" msgstr "" -#: org/libreplan/web/limitingresources/ManualAllocationController.java:509 -msgid "END" +#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/OrderSyncInfo.java:96 +#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/OrderSyncInfo.java:96 +msgid "connector name not specified" msgstr "" -#: org/libreplan/web/importers/ProjectImportController.java:115 -msgid ": Task import successfully!" +#: libreplan-webapp/src/main/webapp/limitingresources/limitingResourcesLayout.zul:119 +msgid "Tasks input buffer" msgstr "" -#: libreplan-webapp/src/main/webapp/common/pageNotFound.zul:59 -msgid "If you want to see help/info page then" +#: libreplan-webapp/src/main/webapp/resources/worker/_edition.zul:34 +msgid "Personal data" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/materials/entities/MaterialCategory.java:295 -msgid "last material sequence code not specified" +#: org/libreplan/importers/ExportTimesheetsToTim.java:106 +msgid "No items found in 'OrderSyncInfo' to export to Tim" msgstr "" -#: org/libreplan/web/users/settings/PasswordController.java:73 -msgid "Password saved" +#: libreplan-webapp/src/main/webapp/dashboard/_pipeline.zul:14 +msgid "FINISHED" msgstr "" -#: libreplan-webapp/src/main/webapp/resources/worker/_listVirtualWorkers.zul:60 -msgid "Create Virtual Worker" +#: libreplan-business/src/main/java/org/libreplan/business/templates/entities/OrderElementTemplate.java:488 +#: libreplan-business/src/main/java/org/libreplan/business/templates/entities/OrderElementTemplate.java:488 +msgid "template name is already in use" msgstr "" -#: libreplan-webapp/src/main/webapp/email/email_templates.zul:109 -msgid "Name of resource" +#: org/libreplan/web/calendars/BaseCalendarCRUDController.java:391 +msgid "Removed calendar \"{0}\"" msgstr "" -#: org/libreplan/web/common/ConfigurationController.java:1283 +#: org/libreplan/web/orders/OrderElementTreeController.java:796 msgid "" -"Periocity cannot be changed because there is already any personal timesheet " -"stored" +"You cannot remove the task \"{0}\" because it is the only child of its " +"parent and its parent has tracked time or imputed expenses" msgstr "" -#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:714 -msgid "" -"Advance assignment cannot be removed as it has advance measures that have " -"already been reported to the customer" +#: libreplan-webapp/src/main/webapp/orders/_list.zul:22 +msgid "Projects list" msgstr "" -#: libreplan-webapp/src/main/webapp/excetiondays/_editExceptionDayType.zul:88 -#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:218 -#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:249 -msgid "Extra Effort" +#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:160 +msgid "Start Date" msgstr "" -#: libreplan-webapp/src/main/webapp/montecarlo/_montecarlo.zul:52 -#: libreplan-webapp/src/main/webapp/montecarlo/_montecarlo.zul:54 -#: libreplan-webapp/src/main/webapp/montecarlo/_montecarlo.zul:56 -msgid "Probability %" +#: libreplan-webapp/src/main/webapp/common/configuration.zul:249 +msgid "calculate based on task criteria and cost categories" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/components/_listOrderElementMaterials.zul:66 -msgid "Add materials" +#: libreplan-webapp/src/main/webapp/common/configuration.zul:436 +msgid "Authorization" msgstr "" -#: org/libreplan/web/planner/allocation/stretches/StretchesFunctionModel.java:174 -msgid "Last stretch should have 100% for length and amount of work" +#: org/libreplan/web/orders/OrderCRUDController.java:378 +#: org/libreplan/web/planner/order/OrderPlanningModel.java:1027 +msgid "Confirm exit dialog" msgstr "" -#: libreplan-webapp/src/main/webapp/resources/search/_resourceFilter.zul:40 -msgid "Active period from" +#: org/libreplan/importers/ImportRosterFromTim.java:210 +msgid "No roster-exceptions found in the response" msgstr "" -#: libreplan-webapp/src/main/webapp/common/pageNotFound.zul:49 -msgid "If you reached this page from another page of LibrePlan please notify us in order to fix it as soon as possible." +#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:701 +msgid "Calculated progress cannot be removed" msgstr "" -#: org/libreplan/web/dashboard/CostStatusController.java:115 -#: org/libreplan/web/users/dashboard/MyTasksAreaController.java:73 -#: org/libreplan/web/users/dashboard/MyTasksAreaController.java:74 -msgid "{0} h" +#: org/libreplan/web/common/JobSchedulerModel.java:157 +msgid "Milestone reached job" msgstr "" -#: libreplan-webapp/src/main/webapp/costcategories/_editCostCategory.zul:92 -msgid "Price per hour" +#: org/libreplan/web/orders/OrdersTreeComponent.java:95 +msgid "" +"Estimated start date for the task (press enter in textbox to open calendar " +"popup or type in date directly)" msgstr "" -#: org/libreplan/importers/ImportRosterFromTim.java:165 -msgid "Import roster for department {0}" +#: libreplan-webapp/src/main/webapp/advance/_editAdvanceTypes.zul:52 +msgid "Default max value" msgstr "" -#: libreplan-webapp/src/main/webapp/users/_editUser.zul:28 -msgid "User data" +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/Worker.java:149 +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/Worker.java:149 +msgid "Worker ID cannot be empty" msgstr "" -#: org/libreplan/web/common/JobSchedulerController.java:403 -msgid "Job is deleted from scheduler" +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/MachineWorkersConfigurationUnit.java:161 +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/MachineWorkersConfigurationUnit.java:161 +msgid "Alpha must be greater than 0" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/materials/entities/MaterialInfo.java:48 -msgid "units not specified" +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReport.java:137 +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReport.java:137 +msgid "timesheet template not specified" msgstr "" -#: org/libreplan/web/expensesheet/ExpenseSheetCRUDController.java:533 -msgid "Expense Sheet" +#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:1166 +msgid "All progress types have already been assigned." msgstr "" -#: libreplan-webapp/src/main/webapp/logs/_editIssueLog.zul:145 -msgid "Date resolved" +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportType.java:381 +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportType.java:381 +msgid "In the heading part, index labels and fields must be unique and consecutive" msgstr "" -#: libreplan-webapp/src/main/webapp/dashboard/_pipeline.zul:13 -msgid "ON HOLD" +#: libreplan-webapp/src/main/webapp/planner/_legendLoadChartOrder.zul:37 +msgid "Resources capability" msgstr "" -#: libreplan-webapp/src/main/webapp/subcontract/reportAdvances.zul:45 -msgid "Customer reference code" -msgstr "" - -#: org/libreplan/web/orders/AssignedTaskQualityFormsToOrderElementController.java:371 -#: org/libreplan/web/workreports/WorkReportCRUDController.java:817 -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAdvances.zul:53 -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAdvances.zul:82 -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAdvances.zul:103 -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementHours.zul:31 -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementHours.zul:83 -#: libreplan-webapp/src/main/webapp/myaccount/_personalTimesheetsArea.zul:28 -#: libreplan-webapp/src/main/webapp/myaccount/personalTimesheet.zul:51 -#: libreplan-webapp/src/main/webapp/myaccount/personalTimesheet.zul:163 -#: libreplan-webapp/src/main/webapp/subcontract/subcontractorCommunications.zul:89 -#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:136 -#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:203 -#: libreplan-webapp/src/main/webapp/workreports/workReportQuery.zul:104 -#: libreplan-webapp/src/main/webapp/workreports/_editWorkReportType.zul:73 -#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:181 -#: libreplan-webapp/src/main/webapp/reports/schedulingProgressPerOrderReport.zul:43 -#: libreplan-webapp/src/main/webapp/reports/workingProgressPerTaskReport.zul:43 -#: libreplan-webapp/src/main/webapp/reports/completedEstimatedHoursPerTask.zul:43 -#: libreplan-webapp/src/main/webapp/planner/order.zul:106 -#: libreplan-webapp/src/main/webapp/planner/stretches_function.zul:53 -msgid "Date" +#: libreplan-webapp/src/main/webapp/reports/timeLineMaterialReport.zul:167 +msgid "if the report is not opened automatically" msgstr "" #: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelLimitingResourceAllocation.zul:76 msgid "Assignation" msgstr "" -#: libreplan-webapp/src/main/webapp/email/email_templates.zul:99 -msgid "Last name of user" -msgstr "" - -#: org/libreplan/web/common/CustomMenuController.java:488 -msgid "Send To Customers" +#: org/libreplan/web/calendars/BaseCalendarModel.java:534 +msgid "Date cannot include the entire next work week" msgstr "" -#: org/libreplan/web/resources/machine/MachineCRUDController.java:536 -msgid "" -"Machine cannot be deleted. Machine is allocated to a project or contains " -"imputed hours" +#: org/libreplan/web/limitingresources/QueueComponent.java:222 +msgid "Project: {0}" msgstr "" -#: org/libreplan/web/calendars/BaseCalendarCRUDController.java:453 -#: org/libreplan/web/common/BaseCRUDController.java:131 -#: org/libreplan/web/resources/worker/WorkerCRUDController.java:1023 -msgid "Create {0}: {1}" +#: org/libreplan/web/dashboard/DashboardController.java:175 +msgid "No project deadline defined" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementCriterionRequirements.zul:250 -msgid "Add Exception" +#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:140 +msgid "values are not valid, the values must not be null" msgstr "" -#: org/libreplan/web/users/UserCRUDController.java:495 -#: org/libreplan/web/users/UserCRUDController.java:503 -#: org/libreplan/web/resources/worker/WorkerCRUDController.java:1139 -#: org/libreplan/web/resources/worker/WorkerCRUDController.java:1147 -#: org/libreplan/web/resources/machine/MachineCRUDController.java:609 -#: org/libreplan/web/resources/machine/MachineCRUDController.java:617 -#: libreplan-webapp/src/main/webapp/excetiondays/_listExceptionDayTypes.zul:40 -#: libreplan-webapp/src/main/webapp/unittypes/_listUnitTypes.zul:32 -#: libreplan-webapp/src/main/webapp/logs/_listRiskLog.zul:43 -#: libreplan-webapp/src/main/webapp/logs/_listIssueLog.zul:41 -#: libreplan-webapp/src/main/webapp/typeofworkhours/_listTypesOfWorkHours.zul:58 -#: libreplan-webapp/src/main/webapp/calendars/_createNewVersion.zul:58 -#: libreplan-webapp/src/main/webapp/calendars/_list.zul:36 -#: libreplan-webapp/src/main/webapp/profiles/_listProfiles.zul:50 -#: libreplan-webapp/src/main/webapp/common/_listJobScheduling.zul:36 -#: libreplan-webapp/src/main/webapp/advance/_listAdvanceTypes.zul:33 -#: libreplan-webapp/src/main/webapp/externalcompanies/_listExternalCompanies.zul:56 -#: libreplan-webapp/src/main/webapp/qualityforms/_listQualityForm.zul:60 -#: libreplan-webapp/src/main/webapp/costcategories/_listCostCategories.zul:55 -#: libreplan-webapp/src/main/webapp/workreports/_listWorkReportTypes.zul:56 -#: libreplan-webapp/src/main/webapp/labels/_listLabelTypes.zul:48 -#: libreplan-webapp/src/main/webapp/resources/criterions/_list.zul:52 -msgid "Create" +#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:1131 +msgid "" +"Progress measurement cannot be canged to {0}, because it is consolidated" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/CriterionType.java:501 -msgid "Criteria of this criterion type have been assigned to some resource." +#: libreplan-webapp/src/main/webapp/templates/templates.zul:22 +msgid "LibrePlan: Templates" msgstr "" -#: libreplan-webapp/src/main/webapp/email/email_templates.zul:82 -msgid "Keyword" +#: libreplan-business/src/main/java/org/libreplan/business/common/entities/Configuration.java:423 +#: libreplan-business/src/main/java/org/libreplan/business/common/entities/Configuration.java:423 +msgid "currency code not specified" msgstr "" -#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:145 -#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:191 -#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerInAMonthReport.zul:54 -msgid "Month" +#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/OrderElement.java:1118 +#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/OrderElement.java:1118 +msgid "code is already used in another project" msgstr "" -#: org/libreplan/web/resources/worker/WorkerCRUDController.java:1012 -msgid "Virtual Workers Group" +#: libreplan-webapp/src/main/webapp/subcontract/customerCommunications.zul:33 +msgid "Communications From Customers" msgstr "" -#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:725 -msgid "" -"Spread progress cannot be changed if there is a consolidation in any " -"progress assignment from root task" +#: libreplan-business/src/main/java/org/libreplan/business/common/entities/JobSchedulerConfiguration.java:90 +#: libreplan-business/src/main/java/org/libreplan/business/common/entities/JobSchedulerConfiguration.java:90 +msgid "job class name not specified" msgstr "" -#: org/libreplan/web/templates/OrderTemplatesController.java:232 -#: org/libreplan/web/templates/OrderTemplatesController.java:250 -msgid "Template saved" +#: org/libreplan/importers/ImportRosterFromTim.java:153 +msgid "No departments configured" msgstr "" -#: libreplan-webapp/src/main/webapp/externalcompanies/_editExternalCompany.zul:28 -msgid "Company data" +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelLimitingResourceAllocation.zul:52 +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelNonLimitingResourceAllocation.zul:59 +msgid "Allocations" msgstr "" -#: org/libreplan/web/common/components/finders/UserBandboxFinder.java:46 -#: libreplan-webapp/src/main/webapp/users/_listUsers.zul:27 -#: libreplan-webapp/src/main/webapp/users/_editUser.zul:48 -#: libreplan-webapp/src/main/webapp/myaccount/settings.zul:56 -#: libreplan-webapp/src/main/webapp/resources/worker/_edition.zul:170 -msgid "Username" +#: org/libreplan/importers/JiraOrderElementSynchronizer.java:517 +#: org/libreplan/importers/JiraTimesheetSynchronizer.java:104 +msgid "Synchronization" msgstr "" -#: libreplan-webapp/src/main/webapp/templates/_historicalStatistics.zul:30 -msgid "Statistics list " +#: org/libreplan/web/orders/OrderCRUDController.java:447 +msgid "Schedule from deadline to start" msgstr "" -#: org/libreplan/web/planner/order/SaveCommandBuilder.java:1022 -msgid "Hours Group at {0}" +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementTaskQualityForms.zul:50 +msgid "Task quality form name" msgstr "" -#: libreplan-webapp/src/main/webapp/resources/machine/_listMachines.zul:22 -msgid "Machines List" +#: org/libreplan/web/orders/assigntemplates/TemplateFinderPopup.java:134 +msgid "Choosing Template" msgstr "" -#: libreplan-webapp/src/main/webapp/resources/worker/_listVirtualWorkers.zul:22 -msgid "Virtual Workers Groups List" +#: libreplan-webapp/src/main/webapp/externalcompanies/_editExternalCompany.zul:90 +msgid "Company password" msgstr "" -#: org/libreplan/web/common/components/TwoWaySelector.java:79 -#: org/libreplan/web/limitingresources/ManualAllocationController.java:585 -#: org/libreplan/web/limitingresources/ManualAllocationController.java:593 -#: org/libreplan/web/limitingresources/ManualAllocationController.java:601 -msgid "Unassigned" +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_taskInformation.zul:38 +msgid "Total estimated hours" msgstr "" -#: org/libreplan/web/limitingresources/LimitingResourcesController.java:453 -msgid "Assign element to queue manually" +#: libreplan-business/src/main/java/org/libreplan/business/common/entities/Configuration.java:432 +#: libreplan-business/src/main/java/org/libreplan/business/common/entities/Configuration.java:432 +msgid "currency symbol not specified" msgstr "" -#: org/libreplan/web/subcontract/ReportAdvancesModel.java:223 -msgid "Problems connecting with client web service" +#: libreplan-webapp/src/main/webapp/planner/print_configuration.zul:35 +msgid "Expand taskgroups" msgstr "" -#: org/libreplan/web/dashboard/DashboardController.java:219 -msgid "Task Completation Lead/Lag" +#: org/libreplan/web/planner/allocation/AllocationRow.java:446 +msgid "Only {0} resources per day were achieved for current allocation" msgstr "" -#: org/libreplan/web/calendars/BaseCalendarEditionController.java:300 -msgid "to {0}" +#: libreplan-webapp/src/main/webapp/templates/_editTemplate.zul:64 +msgid "Template Tree" msgstr "" -#: org/libreplan/web/tree/TreeComponent.java:44 -#: org/libreplan/web/common/components/finders/TaskGroupFilterEnum.java:31 -#: org/libreplan/web/common/components/finders/OrderFilterEnum.java:31 -#: org/libreplan/web/workreports/WorkReportCRUDController.java:895 -#: libreplan-webapp/src/main/webapp/excetiondays/_editExceptionDayType.zul:38 -#: libreplan-webapp/src/main/webapp/materials/materials.zul:62 -#: libreplan-webapp/src/main/webapp/materials/materials.zul:83 -#: libreplan-webapp/src/main/webapp/unittypes/_editUnitType.zul:37 -#: libreplan-webapp/src/main/webapp/orders/_edition.zul:102 -#: libreplan-webapp/src/main/webapp/orders/_projectDetails.zul:54 -#: libreplan-webapp/src/main/webapp/orders/components/_listOrderElementMaterials.zul:119 -#: libreplan-webapp/src/main/webapp/orders/_assignmentsBox.zul:27 -#: libreplan-webapp/src/main/webapp/orders/_list.zul:30 -#: libreplan-webapp/src/main/webapp/logs/_listRiskLog.zul:24 -#: libreplan-webapp/src/main/webapp/logs/_listIssueLog.zul:24 -#: libreplan-webapp/src/main/webapp/logs/_editRiskLog.zul:29 -#: libreplan-webapp/src/main/webapp/templates/_materialAssignmentsBox.zul:28 -#: libreplan-webapp/src/main/webapp/typeofworkhours/_editTypeOfWorkHours.zul:40 -#: libreplan-webapp/src/main/webapp/typeofworkhours/_listTypesOfWorkHours.zul:26 -#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:57 -#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:220 -#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:304 -#: libreplan-webapp/src/main/webapp/myaccount/_expensesArea.zul:33 -#: libreplan-webapp/src/main/webapp/scenarios/transferOrders.zul:65 -#: libreplan-webapp/src/main/webapp/scenarios/transferOrders.zul:75 -#: libreplan-webapp/src/main/webapp/scenarios/_edition.zul:51 -#: libreplan-webapp/src/main/webapp/costcategories/_editCostCategory.zul:47 -#: libreplan-webapp/src/main/webapp/costcategories/_editCostCategory.zul:90 -#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:78 -#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:176 -#: libreplan-webapp/src/main/webapp/workreports/_editWorkReportType.zul:56 -#: libreplan-webapp/src/main/webapp/labels/_listLabelTypes.zul:27 -#: libreplan-webapp/src/main/webapp/labels/_editLabelType.zul:49 -#: libreplan-webapp/src/main/webapp/labels/_editLabelType.zul:79 -#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:54 -#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:76 -#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:184 -#: libreplan-webapp/src/main/webapp/resources/worker/_edition.zul:55 -#: libreplan-webapp/src/main/webapp/resources/worker/_list.zul:38 -#: libreplan-webapp/src/main/webapp/resources/machine/_listMachines.zul:37 -#: libreplan-webapp/src/main/webapp/resources/machine/_editMachine.zul:45 -#: libreplan-webapp/src/main/webapp/resources/criterions/_criterionsTree.zul:46 -#: libreplan-webapp/src/main/webapp/resources/criterions/_edition.zul:71 -#: libreplan-webapp/src/main/webapp/resources/criterions/_list.zul:26 -#: libreplan-webapp/src/main/webapp/reports/schedulingProgressPerOrderReport.zul:121 -#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:96 -#: libreplan-webapp/src/main/webapp/reports/orderCostsPerResource.zul:101 -#: libreplan-webapp/src/main/webapp/reports/timeLineMaterialReport.zul:99 -msgid "Code" +#: libreplan-business/src/main/java/org/libreplan/business/planner/entities/consolidations/ConsolidatedValue.java:70 +#: libreplan-business/src/main/java/org/libreplan/business/planner/entities/consolidations/ConsolidatedValue.java:70 +msgid "task end date not specified" msgstr "" -#: org/libreplan/web/scenarios/TransferOrdersModel.java:153 -msgid "Source and destination scenarios should be different" +#: org/libreplan/web/resources/criterion/CriterionAdminController.java:97 +msgid "Question" msgstr "" -#: org/libreplan/web/planner/order/SubcontractController.java:147 -msgid "" -"It will only be possible to add a Deliver Date if all the deliver date " -"exiting in the table have a CommunicationDate not empty. " +#: org/libreplan/web/resources/worker/WorkerCRUDController.java:1146 +msgid "Workers limit reached" msgstr "" -#: libreplan-webapp/src/main/webapp/common/pageNotFound.zul:22 -msgid "LibrePlan: Page not found" +#: libreplan-webapp/src/main/webapp/materials/materials.zul:87 +#: libreplan-webapp/src/main/webapp/orders/components/_listOrderElementMaterials.zul:123 +#: libreplan-webapp/src/main/webapp/templates/_materialAssignmentsBox.zul:33 +msgid "Category" msgstr "" -#: org/libreplan/web/users/dashboard/ExpensesAreaController.java:87 -msgid "Expense sheet \"{0}\" deleted" +#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:192 +msgid "Create exception" msgstr "" -#: libreplan-webapp/src/main/webapp/subcontract/customerCommunications.zul:60 -#: libreplan-webapp/src/main/webapp/subcontract/subcontractorCommunications.zul:66 -#: libreplan-webapp/src/main/webapp/workreports/workReportQuery.zul:109 -#: libreplan-webapp/src/main/webapp/reports/completedEstimatedHoursPerTask.zul:66 -msgid "Project Code" +#: libreplan-webapp/src/main/webapp/planner/stretches_function.zul:41 +msgid "Add stretch" msgstr "" -#: libreplan-webapp/src/main/webapp/resources/_criterions.zul:28 -#: libreplan-webapp/src/main/webapp/resources/criterions/_criterionsTree.zul:28 -msgid "New criterion" +#: libreplan-webapp/src/main/webapp/typeofworkhours/_listTypesOfWorkHours.zul:27 +msgid "Type name" msgstr "" -#: org/libreplan/web/planner/allocation/AdvancedAllocationController.java:1659 -msgid "Configure" +#: org/libreplan/web/advance/AdvanceTypeCRUDController.java:113 +msgid "" +"The name is not valid, there is another progress type with the same name. " msgstr "" -#: libreplan-webapp/src/main/webapp/templates/_historicalStatistics.zul:43 -msgid "Number of finished applications" +#: org/libreplan/web/planner/chart/EarnedValueChartFiller.java:250 +msgid "Budget At Completion" msgstr "" -#: org/libreplan/web/costcategories/CostCategoryCRUDController.java:525 -msgid "Cost Category" +#: libreplan-webapp/src/main/webapp/reports/workingArrangementsPerOrderReport.zul:76 +msgid "Show dependencies" msgstr "" -#: libreplan-webapp/src/main/webapp/myaccount/settings.zul:170 -#: libreplan-webapp/src/main/webapp/myaccount/settings.zul:199 -msgid "months to" +#: org/libreplan/web/planner/allocation/AdvancedAllocationController.java:1517 +msgid "Queue-based assignment" msgstr "" -#: org/libreplan/web/common/ConfigurationController.java:970 +#: org/libreplan/web/limitingresources/LimitingResourcesController.java:495 +#: org/libreplan/web/limitingresources/LimitingResourcesController.java:578 msgid "" -"Invalid format prefix. Format prefix cannot be empty, contain '_' or contain " -"whitespaces." +"Cannot allocate selected element. There is not any queue that matches " +"resource allocation criteria at any interval of time" msgstr "" -#: org/libreplan/web/common/ConfigurationController.java:254 -msgid "Changes saved" +#: libreplan-webapp/src/main/webapp/common/configuration.zul:540 +msgid "Test connection" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/users/entities/Profile.java:68 -msgid "profile name not specified" +#: libreplan-webapp/src/main/webapp/logs/_editRiskLog.zul:86 +#: libreplan-webapp/src/main/webapp/logs/_editIssueLog.zul:69 +msgid "Creation info" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/materials/entities/MaterialInfo.java:39 -msgid "material not specified" +#: org/libreplan/web/planner/chart/EarnedValueChartFiller.java:254 +msgid "Cost Performance Index" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/planner/entities/TaskGroup.java:114 -msgid "element associated to a task group have to be defined" +#: libreplan-webapp/src/main/webapp/dashboard/_pipeline.zul:8 +msgid "PRE-SALES" msgstr "" -#: libreplan-webapp/src/main/webapp/templates/_assignedQualityForms.zul:31 -msgid "Quality forms" +#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/TaskQualityFormItem.java:78 +#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/TaskQualityFormItem.java:78 +msgid "percentage not specified" msgstr "" -#: libreplan-webapp/src/main/webapp/limitingresources/limitingResourcesLayout.zul:79 -msgid "Page up" +#: org/libreplan/web/expensesheet/ExpenseSheetCRUDController.java:446 +msgid "The code must be unique." msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/TaskQualityForm.java:165 -#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/QualityForm.java:389 -msgid "report progress not specified" +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/CriterionType.java:432 +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/CriterionType.java:432 +msgid "Criterion Type name is already being used" msgstr "" -#: org/libreplan/web/users/settings/SettingsController.java:161 -msgid "Max value = 999" +#: org/libreplan/web/scenarios/ScenarioModel.java:131 +msgid "You cannot remove a scenario with derived scenarios" msgstr "" -#: org/libreplan/web/planner/allocation/ResourceAllocationController.java:392 -msgid "Calculate Resources per Day" +#: libreplan-webapp/src/main/webapp/planner/print_configuration.zul:29 +msgid "Export options" msgstr "" -#: org/libreplan/web/common/components/finders/ResourceFilterEnum.java:29 -#: libreplan-webapp/src/main/webapp/common/configuration.zul:221 -#: libreplan-webapp/src/main/webapp/resources/criterions/_criterionsTree.zul:45 -msgid "Cost category" +#: libreplan-webapp/src/main/webapp/reports/workingArrangementsPerOrderReport.zul:65 +msgid "Dependencies" msgstr "" -#: org/libreplan/web/common/entrypoints/EntryPointsHandler.java:97 -msgid "{0} annotation required on {1}" +#: org/libreplan/web/planner/allocation/AllocationRow.java:814 +msgid "there are no valid periods for this calendar" msgstr "" -#: libreplan-webapp/src/main/webapp/logs/_listIssueLog.zul:32 -msgid "Created By" +#: libreplan-webapp/src/main/webapp/costcategories/_editCostCategory.zul:81 +#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:245 +#: libreplan-webapp/src/main/webapp/resources/_costCategoryAssignment.zul:30 +msgid "Add new row" msgstr "" -#: org/libreplan/web/planner/reassign/ReassignCommand.java:209 -msgid "Reassignation" +#: libreplan-webapp/src/main/webapp/common/configuration.zul:147 +msgid "Enable/Disable warning about new LibrePlan versions available" msgstr "" -#: org/libreplan/web/orders/AssignedTaskQualityFormsToOrderElementController.java:302 -msgid "" -"Another task in the same branch is already reporting progress for this " -"quality form" +#: libreplan-webapp/src/main/webapp/subcontract/customerCommunications.zul:63 +#: libreplan-webapp/src/main/webapp/subcontract/subcontractorCommunications.zul:78 +msgid "Reviewed" msgstr "" -#: org/libreplan/web/costcategories/TypeOfWorkHoursCRUDController.java:106 -msgid "Hours Type" +#: libreplan-webapp/src/main/webapp/planner/editTask.zul:63 +msgid "Queue-based resource allocation" msgstr "" -#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:144 -#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:156 -msgid "Invalid Spread values. At least one value should be true" +#: libreplan-webapp/src/main/webapp/common/configuration.zul:120 +msgid "Currency" msgstr "" -#: libreplan-webapp/src/main/webapp/resources/search/allocation_selector.zul:136 -msgid "Current selection" +#: libreplan-webapp/src/main/webapp/templates/_editTemplate.zul:74 +msgid "Statistics log" msgstr "" -#: org/libreplan/web/calendars/BaseCalendarCRUDController.java:391 -msgid "Removed calendar \"{0}\"" +#: libreplan-business/src/main/java/org/libreplan/business/advance/entities/AdvanceType.java:224 +#: libreplan-business/src/main/java/org/libreplan/business/advance/entities/AdvanceType.java:224 +msgid "progress type marked as quality form but is updatable" msgstr "" -#: libreplan-webapp/src/main/webapp/logs/_listIssueLog.zul:29 -#: libreplan-webapp/src/main/webapp/logs/_editIssueLog.zul:109 -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelLimitingResourceAllocation.zul:78 -msgid "Priority" +#: org/libreplan/web/planner/taskedition/EditTaskController.java:371 +msgid "" +"The task has got progress consolidations. To change resource allocation type " +"all consolidations must be removed before" msgstr "" -#: org/libreplan/web/planner/tabs/AdvancedAllocationTabCreator.java:153 -#: org/libreplan/web/planner/tabs/AdvancedAllocationTabCreator.java:238 -msgid "Advanced Allocation" +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/CriterionType.java:457 +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/CriterionType.java:457 +msgid "criterion type does not allow hierarchy" msgstr "" -#: libreplan-webapp/src/main/webapp/reports/timeLineMaterialReport.zul:21 -msgid "LibrePlan: Materials Needed At Date" +#: org/libreplan/web/exceptionDays/CalendarExceptionTypeCRUDController.java:211 +msgid "Cannot remove the predefined calendar exception day \"{0}\"" msgstr "" -#: libreplan-webapp/src/main/webapp/unittypes/unitTypes.zul:42 -#: libreplan-webapp/src/main/webapp/templates/_editTemplate.zul:165 -#: libreplan-webapp/src/main/webapp/typeofworkhours/_editTypeOfWorkHours.zul:79 -#: libreplan-webapp/src/main/webapp/users/_editUser.zul:202 -#: libreplan-webapp/src/main/webapp/myaccount/personalTimesheet.zul:146 -#: libreplan-webapp/src/main/webapp/scenarios/_edition.zul:67 -#: libreplan-webapp/src/main/webapp/profiles/_editProfile.zul:72 -#: libreplan-webapp/src/main/webapp/advance/advanceTypes.zul:39 -#: libreplan-webapp/src/main/webapp/externalcompanies/_editExternalCompany.zul:104 -#: libreplan-webapp/src/main/webapp/qualityforms/_editQualityForm.zul:134 -#: libreplan-webapp/src/main/webapp/costcategories/_editCostCategory.zul:112 -#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:262 -#: libreplan-webapp/src/main/webapp/workreports/workReportTypes.zul:37 -#: libreplan-webapp/src/main/webapp/labels/_editLabelType.zul:114 -#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:193 -#: libreplan-webapp/src/main/webapp/resources/worker/_edition.zul:221 -#: libreplan-webapp/src/main/webapp/resources/machine/_editMachine.zul:100 -#: libreplan-webapp/src/main/webapp/resources/criterions/_edition.zul:92 -msgid "Save & Continue" +#: org/libreplan/web/reports/ProjectStatusReportController.java:215 +msgid "please, select a criterion" msgstr "" -#: org/libreplan/web/reports/OrderCostsPerResourceModel.java:308 -#: org/libreplan/web/planner/reassign/Type.java:31 -msgid "All project tasks" +#: libreplan-webapp/src/main/webapp/resources/worker/worker.zul:22 +msgid "LibrePlan: Workers" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_orderElementDetails.zul:71 -#: libreplan-webapp/src/main/webapp/templates/_editTemplate.zul:114 -#: libreplan-webapp/src/main/webapp/common/configuration.zul:258 -msgid "cannot be negative or empty" +#: org/libreplan/web/common/TemplateController.java:245 +msgid "A new version " msgstr "" -#: libreplan-webapp/src/main/webapp/myaccount/personalTimesheet.zul:37 -msgid "Warning: Not editing from home page of bound users" +#: libreplan-webapp/src/main/webapp/orders/_jiraSyncInfo.zul:32 +msgid "Synchronization of timesheets was successful" msgstr "" -#: libreplan-webapp/src/main/webapp/workreports/workReportQuery.zul:23 -msgid "LibrePlan: Timesheet Lines List" +#: libreplan-webapp/src/main/webapp/scenarios/transferOrders.zul:39 +msgid "Destination scenario" msgstr "" -#: org/libreplan/web/users/dashboard/PersonalTimesheetController.java:664 -#: org/libreplan/web/common/components/finders/OrderElementBandboxFinder.java:51 -#: org/libreplan/web/planner/order/SaveCommandBuilder.java:1008 -#: libreplan-webapp/src/main/webapp/orders/_orderFilter.zul:23 -#: libreplan-webapp/src/main/webapp/logs/_editRiskLog.zul:35 -#: libreplan-webapp/src/main/webapp/logs/_editIssueLog.zul:34 -#: libreplan-webapp/src/main/webapp/myaccount/_myTasksArea.zul:33 -#: libreplan-webapp/src/main/webapp/limitingresources/limitingResourcesLayout.zul:144 -#: libreplan-webapp/src/main/webapp/reports/projectStatusReport.zul:42 -#: libreplan-webapp/src/main/webapp/reports/projectStatusReport.zul:55 -#: libreplan-webapp/src/main/webapp/reports/workingProgressPerTaskReport.zul:64 -#: libreplan-webapp/src/main/webapp/reports/workingArrangementsPerOrderReport.zul:47 -msgid "Project" +#: libreplan-webapp/src/main/webapp/subcontract/subcontractorCommunications.zul:60 +msgid "Subcontracted task" msgstr "" -#: org/libreplan/web/dashboard/GlobalProgressChart.java:61 -msgid "By critical path duration" +#: libreplan-webapp/src/main/webapp/labels/labelTypes.zul:21 +msgid "LibrePlan: Labels" msgstr "" -#: libreplan-webapp/src/main/webapp/myaccount/personalTimesheet.zul:171 -msgid "Finished" +#: org/libreplan/web/logs/IssueLogCRUDController.java:261 +msgid "Should have" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/Worker.java:136 -msgid "worker's surname not specified" +#: org/libreplan/web/orders/JiraSynchronizationController.java:283 +#: org/libreplan/web/orders/assigntemplates/TemplateFinderPopup.java:126 +#: org/libreplan/web/planner/order/OrderPlanningModel.java:1020 +#: libreplan-webapp/src/main/webapp/excetiondays/_editExceptionDayType.zul:108 +#: libreplan-webapp/src/main/webapp/unittypes/unitTypes.zul:43 +#: libreplan-webapp/src/main/webapp/orders/_projectDetails.zul:95 +#: libreplan-webapp/src/main/webapp/orders/components/_listOrderElementMaterials.zul:144 +#: libreplan-webapp/src/main/webapp/logs/_editRiskLog.zul:171 +#: libreplan-webapp/src/main/webapp/logs/_editIssueLog.zul:168 +#: libreplan-webapp/src/main/webapp/templates/_editTemplate.zul:168 +#: libreplan-webapp/src/main/webapp/typeofworkhours/_editTypeOfWorkHours.zul:81 +#: libreplan-webapp/src/main/webapp/calendars/_createNewVersion.zul:62 +#: libreplan-webapp/src/main/webapp/calendars/calendars.zul:48 +#: libreplan-webapp/src/main/webapp/users/_editUser.zul:204 +#: libreplan-webapp/src/main/webapp/myaccount/personalTimesheet.zul:149 +#: libreplan-webapp/src/main/webapp/scenarios/_edition.zul:70 +#: libreplan-webapp/src/main/webapp/profiles/_editProfile.zul:74 +#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:101 +#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:211 +#: libreplan-webapp/src/main/webapp/common/layout/template.zul:106 +#: libreplan-webapp/src/main/webapp/common/configuration.zul:551 +#: libreplan-webapp/src/main/webapp/advance/advanceTypes.zul:38 +#: libreplan-webapp/src/main/webapp/limitingresources/manualAllocation.zul:143 +#: libreplan-webapp/src/main/webapp/externalcompanies/_editExternalCompany.zul:106 +#: libreplan-webapp/src/main/webapp/qualityforms/_editQualityForm.zul:137 +#: libreplan-webapp/src/main/webapp/costcategories/_editCostCategory.zul:115 +#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:266 +#: libreplan-webapp/src/main/webapp/workreports/workReportTypes.zul:38 +#: libreplan-webapp/src/main/webapp/labels/_editLabelType.zul:116 +#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:195 +#: libreplan-webapp/src/main/webapp/email/email_templates.zul:143 +#: libreplan-webapp/src/main/webapp/resources/machine/_editMachine.zul:103 +#: libreplan-webapp/src/main/webapp/resources/criterions/criterions.zul:46 +#: libreplan-webapp/src/main/webapp/resources/criterions/_edition.zul:94 +#: libreplan-webapp/src/main/webapp/resources/criterions/_workers.zul:49 +#: libreplan-webapp/src/main/webapp/planner/print_configuration.zul:50 +#: libreplan-webapp/src/main/webapp/planner/reassign.zul:50 +#: libreplan-webapp/src/main/webapp/planner/editTask.zul:78 +#: libreplan-webapp/src/main/webapp/planner/advance_allocation.zul:48 +#: libreplan-webapp/src/main/webapp/planner/order.zul:134 +#: libreplan-webapp/src/main/webapp/planner/order.zul:170 +#: libreplan-webapp/src/main/webapp/planner/stretches_function.zul:99 +msgid "Cancel" msgstr "" -#: libreplan-webapp/src/main/webapp/logs/_logsFilter.zul:22 -msgid "Select required issue/risk name and press filter button" +#: org/libreplan/web/orders/OrderCRUDController.java:1634 +msgid "project code already being used" msgstr "" -#: org/libreplan/importers/ImportRosterFromTim.java:356 -msgid "Exception name should not be empty" +#: org/libreplan/importers/JiraOrderElementSynchronizer.java:283 +msgid "No worklogs found for \"{0}\" issue" msgstr "" -#: libreplan-webapp/src/main/webapp/users/_editUser.zul:62 -#: libreplan-webapp/src/main/webapp/myaccount/settings.zul:69 -#: libreplan-webapp/src/main/webapp/resources/worker/_edition.zul:82 -msgid "Last name" +#: libreplan-webapp/src/main/webapp/calendars/calendars.zul:22 +msgid "LibrePlan: Calendars" msgstr "" -#: org/libreplan/web/common/CustomMenuController.java:569 -msgid "Change Password" +#: libreplan-webapp/src/main/webapp/myaccount/personalTimesheet.zul:176 +msgid "Ok" msgstr "" -#: org/libreplan/web/planner/consolidations/AdvanceConsolidationModel.java:482 -msgid "There is not any assigned progress to current task" +#: org/libreplan/web/common/ConfigurationController.java:1044 +msgid "Select entity, please" msgstr "" -#: libreplan-webapp/src/main/webapp/common/configuration.zul:151 -msgid "Check this option if you would like to send feedback to LibrePlan developers about program usage" +#: org/libreplan/web/common/CustomMenuController.java:302 +msgid "Resources Load" msgstr "" -#: org/libreplan/web/templates/TemplatesTree.java:43 -#: org/libreplan/web/templates/TemplatesTree.java:51 -msgid "New Description" +#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:665 +msgid "Progress that are reported by quality forms can not be modified" msgstr "" -#: org/libreplan/web/orders/OrderCRUDController.java:1634 -msgid "project code already being used" +#: libreplan-webapp/src/main/webapp/orders/_edition.zul:171 +msgid "Hours margin" msgstr "" -#: libreplan-webapp/src/main/webapp/resources/worker/_workRelationships.zul:29 -#: libreplan-webapp/src/main/webapp/resources/worker/_localizations.zul:70 -#: libreplan-webapp/src/main/webapp/resources/worker/_editWorkRelationship.zul:26 -#: libreplan-webapp/src/main/webapp/resources/_criterions.zul:53 -#: libreplan-webapp/src/main/webapp/reports/schedulingProgressPerOrderReport.zul:59 -msgid "Ending date" +#: org/libreplan/web/common/CustomMenuController.java:290 +#: libreplan-webapp/src/main/webapp/myaccount/settings.zul:112 +msgid "Company view" msgstr "" -#: org/libreplan/web/resources/worker/WorkerModel.java:428 -msgid "" -"Please, allow Multiple Active Criteria in this type in order to use selected " -"Assignment Strategy" +#: org/libreplan/web/common/components/finders/TaskGroupFilterEnum.java:31 +#: org/libreplan/web/common/components/finders/OrderFilterEnum.java:31 +#: org/libreplan/web/planner/TaskElementAdapter.java:860 +#: libreplan-webapp/src/main/webapp/orders/_edition.zul:122 +#: libreplan-webapp/src/main/webapp/orders/_list.zul:38 +#: libreplan-webapp/src/main/webapp/subcontract/subcontractedTasks.zul:56 +#: libreplan-webapp/src/main/webapp/subcontract/reportAdvances.zul:51 +msgid "State" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_jiraSyncInfo.zul:20 -msgid "LibrePlan: JIRA synchronization info" +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportType.java:160 +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportType.java:160 +msgid "timesheet template name is already being used" msgstr "" -#: org/libreplan/web/common/CustomMenuController.java:290 -#: libreplan-webapp/src/main/webapp/myaccount/settings.zul:112 -msgid "Company view" +#: org/libreplan/web/workreports/WorkReportTypeCRUDController.java:775 +msgid "Text field" msgstr "" -#: libreplan-webapp/src/main/webapp/common/configuration.zul:44 -msgid "Entity sequences" +#: libreplan-webapp/src/main/webapp/logs/_listIssueLog.zul:32 +msgid "Created By" msgstr "" -#: libreplan-webapp/src/main/webapp/dashboard/_costStatus.zul:48 -msgid "Remaining time" +#: org/libreplan/web/workreports/WorkReportCRUDController.java:447 +msgid "Effort must be greater than zero" msgstr "" -#: org/libreplan/web/planner/TaskElementAdapter.java:798 -msgid "All workers" +#: org/libreplan/web/tree/TreeController.java:1038 +msgid "Disabled because of it contains more than one hours group" msgstr "" -#: libreplan-webapp/src/main/webapp/users/_editUser.zul:163 -msgid "Association with profiles" +#: org/libreplan/web/logs/IssueLogCRUDController.java:270 +msgid "Major" msgstr "" -#: org/libreplan/web/orders/OrderCRUDController.java:1645 -msgid "Subcontracted by client" +#: libreplan-webapp/src/main/webapp/orders/_assignmentsBox.zul:75 +#: libreplan-webapp/src/main/webapp/templates/_materialAssignmentsBox.zul:59 +msgid "Split" msgstr "" -#: libreplan-webapp/src/main/webapp/resources/worker/_edition.zul:35 -#: libreplan-webapp/src/main/webapp/resources/machine/_editMachine.zul:31 -msgid "Assigned criteria" +#: org/libreplan/web/importers/ProjectImportController.java:121 +msgid ": Import successfully!" msgstr "" -#: org/libreplan/web/planner/allocation/FormBinder.java:339 +#: org/libreplan/web/common/ConfigurationController.java:970 msgid "" -"The original workable days value {0} cannot be modified as it has " -"consolidations" +"Invalid format prefix. Format prefix cannot be empty, contain '_' or contain " +"whitespaces." msgstr "" -#: libreplan-webapp/src/main/webapp/externalcompanies/_editExternalCompany.zul:77 -msgid "Application URI" +#: org/libreplan/web/orders/TimSynchronizationController.java:147 +msgid "Exporting timesheets to Tim failed. Check the Tim connector" msgstr "" -#: org/libreplan/web/logs/IssueLogCRUDController.java:269 -msgid "Significant" +#: org/libreplan/web/common/ConfigurationModel.java:206 +msgid "At least one {0} sequence must be active" msgstr "" -#: org/libreplan/web/common/CustomMenuController.java:418 -#: org/libreplan/web/costcategories/CostCategoryCRUDController.java:530 -msgid "Cost Categories" +#: org/libreplan/web/limitingresources/LimitingResourcesController.java:479 +msgid "Automatic" msgstr "" -#: org/libreplan/web/reports/HoursWorkedPerWorkerController.java:299 -msgid "Virtual worker" +#: org/libreplan/web/planner/allocation/stretches/StretchesFunctionModel.java:179 +msgid "There must be at least 2 stretches for doing interpolation" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementHours.zul:259 -msgid "Expenses cost" +#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:1190 +msgid "Value is not valid. It must be smaller than max value" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/advance/entities/DirectAdvanceAssignment.java:235 -msgid "maximum value must be greater than zero" +#: libreplan-business/src/main/java/org/libreplan/business/planner/entities/TaskGroup.java:114 +#: libreplan-business/src/main/java/org/libreplan/business/planner/entities/TaskGroup.java:114 +msgid "element associated to a task group have to be defined" msgstr "" -#: libreplan-webapp/src/main/webapp/myaccount/changePassword.zul:54 -msgid "Password settings" +#: org/libreplan/web/subcontract/FilterCommunicationEnum.java:28 +#: org/libreplan/web/workreports/WorkReportQueryController.java:252 +#: org/libreplan/web/resources/worker/WorkerCRUDController.java:852 +#: org/libreplan/web/reports/SchedulingProgressPerOrderController.java:186 +#: org/libreplan/web/reports/TimeLineRequiredMaterialController.java:212 +#: org/libreplan/web/resourceload/ResourceLoadController.java:727 +#: libreplan-webapp/src/main/webapp/workreports/workReportQuery.zul:80 +#: libreplan-webapp/src/main/webapp/workreports/workReportQuery.zul:81 +msgid "All" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelLimitingResourceAllocation.zul:89 -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelNonLimitingResourceAllocation.zul:140 -msgid "Select" +#: libreplan-webapp/src/main/webapp/resources/criterions/criterions.zul:24 +msgid "LibrePlan: Criteria" msgstr "" -#: libreplan-webapp/src/main/webapp/resources/worker/_edition.zul:34 -msgid "Personal data" +#: libreplan-webapp/src/main/webapp/templates/_historicalStatistics.zul:39 +msgid "Number of applications" msgstr "" -#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:210 -msgid "OK" +#: org/libreplan/web/calendars/BaseCalendarEditionController.java:557 +msgid "Exception: {0} (Inh)" msgstr "" -#: libreplan-webapp/src/main/webapp/common/layout/template.zul:129 -msgid "Create New Project" +#: org/libreplan/web/planner/company/CompanyPlanningModel.java:388 +#: org/libreplan/web/planner/order/OrderPlanningModel.java:749 +msgid "date in the future" msgstr "" -#: libreplan-webapp/src/main/webapp/common/eventError.zul:22 -#: libreplan-webapp/src/main/webapp/common/error.zul:21 -msgid "LibrePlan: Runtime Error" +#: org/libreplan/web/resourceload/ResourceLoadModel.java:984 +msgid "Specific Allocations" msgstr "" -#: libreplan-webapp/src/main/webapp/common/configuration.zul:467 -msgid "Role property" +#: org/libreplan/web/calendars/BaseCalendarCRUDController.java:327 +msgid "Create copy" msgstr "" -#: org/libreplan/web/planner/allocation/FormBinder.java:634 -msgid "it must be greater than zero" +#: org/libreplan/web/common/CustomMenuController.java:457 +msgid "Job Scheduling" msgstr "" -#: libreplan-webapp/src/main/webapp/typeofworkhours/_editTypeOfWorkHours.zul:27 -msgid "Work hour type data" +#: org/libreplan/web/orders/OrderCRUDController.java:1081 +#: org/libreplan/web/resourceload/ResourceLoadController.java:1053 +msgid "The project has no scheduled elements" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/templates/entities/OrderElementTemplate.java:488 -msgid "template name is already in use" +#: org/libreplan/web/planner/allocation/stretches/StretchesFunctionModel.java:174 +msgid "Last stretch should have 100% for length and amount of work" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/costcategories/entities/TypeOfWorkHours.java:149 -msgid "type of work hours for personal timesheets cannot be disabled" +#: libreplan-webapp/src/main/webapp/limitingresources/limitingResourcesLayout.zul:148 +msgid "Resource / Criteria" msgstr "" -#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:123 -msgid "Both" +#: org/libreplan/web/common/CustomMenuController.java:349 +#: libreplan-webapp/src/main/webapp/orders/imports/projectImport.zul:52 +msgid "Calendars" msgstr "" -#: org/libreplan/web/materials/MaterialsController.java:261 -#: org/libreplan/web/orders/AssignedTaskQualityFormsToOrderElementController.java:193 -#: org/libreplan/web/orders/OrderCRUDController.java:1018 -#: org/libreplan/web/calendars/BaseCalendarCRUDController.java:399 -#: org/libreplan/web/workreports/WorkReportCRUDController.java:233 -#: org/libreplan/web/workreports/WorkReportCRUDController.java:954 -#: org/libreplan/web/expensesheet/ExpenseSheetCRUDController.java:212 -msgid "Confirm deleting {0}. Are you sure?" +#: org/libreplan/web/common/CustomMenuController.java:538 +#: libreplan-webapp/src/main/webapp/reports/orderCostsPerResource.zul:39 +msgid "Project Costs" msgstr "" -#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:1197 -#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:1214 -msgid "" -"Invalid value. Value must be greater than the value of previous progress." +#: libreplan-webapp/src/main/webapp/orders/_projectDetails.zul:48 +#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:44 +#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:76 +msgid "Template" msgstr "" -#: org/libreplan/web/planner/TaskElementAdapter.java:1215 -msgid "Project margin: {0}% ({1} hours)={2} hours" +#: org/libreplan/web/common/ConfigurationController.java:833 +msgid "{0} sequences" msgstr "" -#: org/libreplan/web/planner/allocation/AllocationRow.java:837 -msgid "Periods available depend on resources' calendar." +#: org/libreplan/web/users/dashboard/PersonalTimesheetController.java:605 +msgid "My account" msgstr "" -#: org/libreplan/web/scenarios/ScenarioModel.java:125 -msgid "You cannot remove the current scenario" +#: libreplan-webapp/src/main/webapp/myaccount/settings.zul:35 +msgid "User settings" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_edition.zul:56 -msgid "WBS (tasks)" +#: libreplan-webapp/src/main/webapp/resources/worker/_editWorkRelationship.zul:47 +msgid "Cancel and return" msgstr "" -#: libreplan-webapp/src/main/webapp/externalcompanies/_listExternalCompanies.zul:22 -msgid "Companies List" +#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/OrderSyncInfo.java:87 +#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/OrderSyncInfo.java:87 +msgid "key not specified" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelTaskProperties.zul:75 -msgid "Resource allocation type" +#: org/libreplan/web/resources/worker/WorkerCRUDController.java:972 +msgid "Do you want to remove bound user \"{0}\" too?" msgstr "" -#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:192 -msgid "Create exception" +#: org/libreplan/web/common/CustomMenuController.java:370 +#: libreplan-webapp/src/main/webapp/materials/materials.zul:35 +#: libreplan-webapp/src/main/webapp/orders/_editOrderElement.zul:59 +#: libreplan-webapp/src/main/webapp/orders/_edition.zul:69 +#: libreplan-webapp/src/main/webapp/orders/_edition.zul:201 +#: libreplan-webapp/src/main/webapp/templates/_editTemplate.zul:71 +#: libreplan-webapp/src/main/webapp/templates/_materialAssignmentsBox.zul:22 +#: libreplan-webapp/src/main/webapp/templates/_editTemplateWindow.zul:53 +msgid "Materials" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAuthorizations.zul:26 -msgid "Profiles authorization" +#: libreplan-webapp/src/main/webapp/subcontract/subcontractedTasks.zul:45 +#: libreplan-webapp/src/main/webapp/subcontract/subcontractedTasks.zul:46 +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelSubcontract.zul:45 +msgid "Subcontracting date" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/print_configuration.zul:41 -msgid "Show all reported hours" +#: org/libreplan/web/common/components/finders/OrderBandboxFinder.java:44 +#: org/libreplan/web/common/components/finders/OrderElementBandboxFinder.java:51 +#: libreplan-webapp/src/main/webapp/templates/_historicalAssignment.zul:35 +#: libreplan-webapp/src/main/webapp/subcontract/subcontractedTasks.zul:50 +#: libreplan-webapp/src/main/webapp/subcontract/reportAdvances.zul:44 +msgid "Project code" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAdvances.zul:80 -#: libreplan-webapp/src/main/webapp/orders/components/_listOrderElementLabels.zul:36 -#: libreplan-webapp/src/main/webapp/orders/components/_listOrderElementLabels.zul:57 -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementHours.zul:86 -#: libreplan-webapp/src/main/webapp/subcontract/subcontractorCommunications.zul:75 -#: libreplan-webapp/src/main/webapp/common/configuration.zul:532 -#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:144 -#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:179 -#: libreplan-webapp/src/main/webapp/planner/order.zul:104 -msgid "Value" +#: libreplan-webapp/src/main/webapp/common/layout/template.zul:204 +msgid "default password was not changed" msgstr "" -#: libreplan-webapp/src/main/webapp/dashboard/_dashboardfororder.zul:108 -msgid "Load percentage of resources participating in the project while they are assigned" +#: org/libreplan/web/planner/milestone/DeleteMilestoneCommand.java:59 +msgid "Delete Milestone" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_edition.zul:268 -msgid "External code" +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportType.java:178 +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportType.java:178 +msgid "The field name must be unique." msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_orderFilter.zul:51 -#: libreplan-webapp/src/main/webapp/orders/_orderElementTreeFilter.zul:41 -msgid "Apply filtering to tasks satisfying required criteria" +#: org/libreplan/web/orders/OrdersTreeComponent.java:84 +#: org/libreplan/web/common/CustomMenuController.java:413 +#: libreplan-webapp/src/main/webapp/orders/_edition.zul:216 +#: libreplan-webapp/src/main/webapp/myaccount/_expensesArea.zul:23 +msgid "Expenses" msgstr "" -#: org/libreplan/web/planner/company/CompanyPlanningModel.java:348 -#: org/libreplan/web/planner/order/OrderPlanningModel.java:705 -msgid "Earned value" +#: org/libreplan/web/templates/TemplatesTreeComponent.java:92 +msgid "Must start after (days since project start)" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/TaskQualityFormItem.java:69 -msgid "Task Quality Form item name not specified" +#: org/libreplan/web/planner/milestone/AddMilestoneCommand.java:54 +msgid "new milestone" msgstr "" -#: org/libreplan/web/orders/OrderElementTreeController.java:796 -msgid "" -"You cannot remove the task \"{0}\" because it is the only child of its " -"parent and its parent has tracked time or imputed expenses" +#: org/libreplan/web/common/components/bandboxsearch/BandboxMultipleSearch.java:231 +msgid "filter already exists" msgstr "" -#: org/libreplan/web/reports/OrderCostsPerResourceModel.java:323 -msgid "Total dedication" +#: libreplan-webapp/src/main/webapp/reports/schedulingProgressPerOrderReport.zul:74 +#: libreplan-webapp/src/main/webapp/reports/schedulingProgressPerOrderReport.zul:84 +msgid "Progress type" msgstr "" -#: libreplan-webapp/src/main/webapp/logs/_editRiskLog.zul:50 -msgid "Estimations" +#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:1207 +msgid "Invalid date. Date must be unique for this Progress Assignment" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_synchronizationInfo.zul:20 -msgid "LibrePlan: Synchronization info" +#: org/libreplan/web/calendars/BaseCalendarCRUDController.java:370 +msgid "Calendar cannot be removed as it has other derived calendars from it" msgstr "" -#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:152 -msgid "1 or 7 is Sunday, or use names" +#: org/libreplan/web/resources/worker/WorkRelationshipsController.java:154 +msgid "" +"Time period contains non valid data. Ending data must be older than starting " +"date" msgstr "" -#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:243 -msgid "Timesheet lines" +#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:157 +msgid "Report data" msgstr "" -#: libreplan-webapp/src/main/webapp/logs/_editRiskLog.zul:101 -#: libreplan-webapp/src/main/webapp/logs/_editIssueLog.zul:84 -msgid "Created by" +#: libreplan-webapp/src/main/webapp/orders/_edition.zul:86 +#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:65 +msgid "Identification" msgstr "" -#: libreplan-webapp/src/main/webapp/logs/_editRiskLog.zul:133 -msgid "Prevention" +#: org/libreplan/web/limitingresources/QueueComponent.java:241 +msgid "Allocation: [{0},{1}]" msgstr "" -#: org/libreplan/web/users/dashboard/PersonalTimesheetController.java:669 -#: org/libreplan/web/common/components/finders/OrderElementBandboxFinder.java:51 -#: org/libreplan/web/workreports/WorkReportCRUDController.java:837 -#: libreplan-webapp/src/main/webapp/orders/_orderElementTreeFilter.zul:23 -#: libreplan-webapp/src/main/webapp/myaccount/_myTasksArea.zul:34 -#: libreplan-webapp/src/main/webapp/myaccount/personalTimesheet.zul:159 -#: libreplan-webapp/src/main/webapp/montecarlo/_montecarlo.zul:49 -#: libreplan-webapp/src/main/webapp/limitingresources/limitingResourcesLayout.zul:146 -#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:217 -#: libreplan-webapp/src/main/webapp/workreports/_editWorkReportType.zul:97 -#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:134 -#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:178 -msgid "Task" +#: org/libreplan/web/resources/criterion/CriterionAdminController.java:200 +msgid "Criterion Type" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_edition.zul:337 -#: libreplan-webapp/src/main/webapp/myaccount/_myTasksArea.zul:37 -#: libreplan-webapp/src/main/webapp/costcategories/_editCostCategory.zul:94 -#: libreplan-webapp/src/main/webapp/resources/search/allocation_selector.zul:63 -#: libreplan-webapp/src/main/webapp/resources/_costCategoryAssignment.zul:41 -#: libreplan-webapp/src/main/webapp/resources/machine/_machineConfigurationUnits.zul:69 -#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:60 -#: libreplan-webapp/src/main/webapp/reports/timeLineMaterialReport.zul:57 -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelSubcontract.zul:130 -#: libreplan-webapp/src/main/webapp/planner/montecarlo_function.zul:47 -#: libreplan-webapp/src/main/webapp/planner/montecarlo_function.zul:63 -msgid "End date" +#: org/libreplan/web/templates/historicalAssignment/OrderElementHistoricalAssignmentComponent.java:145 +#: org/libreplan/web/calendars/BaseCalendarCRUDController.java:415 +#: org/libreplan/web/users/ProfileCRUDController.java:158 +#: org/libreplan/web/qualityforms/QualityFormCRUDController.java:339 +#: org/libreplan/web/costcategories/TypeOfWorkHoursCRUDController.java:101 +#: org/libreplan/web/workreports/WorkReportTypeCRUDController.java:903 +#: org/libreplan/web/planner/taskedition/AdvancedAllocationTaskController.java:72 +msgid "Warning" msgstr "" -#: org/libreplan/web/planner/taskedition/TaskPropertiesController.java:483 -#: org/libreplan/web/planner/order/SubcontractCommand.java:53 -#: libreplan-webapp/src/main/webapp/planner/editTask.zul:64 -msgid "Subcontract" +#: libreplan-webapp/src/main/webapp/scenarios/transferOrders.zul:44 +msgid "Select source" msgstr "" -#: org/libreplan/web/users/UserCRUDController.java:502 -msgid "User limit reached" +#: org/libreplan/web/common/entrypoints/EntryPointsHandler.java:97 +msgid "{0} annotation required on {1}" msgstr "" -#: libreplan-webapp/src/main/webapp/templates/_historicalAssignment.zul:36 -#: libreplan-webapp/src/main/webapp/subcontract/customerCommunications.zul:58 -#: libreplan-webapp/src/main/webapp/workreports/workReportQuery.zul:112 -msgid "Project Name" +#: org/libreplan/web/workreports/WorkReportQueryController.java:372 +#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:122 +msgid "Tasks" msgstr "" -#: libreplan-webapp/src/main/webapp/email/email_templates.zul:119 -msgid "Welcome page" +#: libreplan-webapp/src/main/webapp/orders/_listHoursGroupCriterionRequirement.zul:126 +msgid "Disable Delete" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/_legendLoadChartOrder.zul:44 -msgid "External load" +#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/QualityFormItem.java:94 +#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/QualityFormItem.java:94 +msgid "quality form item percentage not specified" msgstr "" -#: libreplan-webapp/src/main/webapp/email/email_templates.zul:89 -msgid "Username of user" +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAuthorizations.zul:51 +msgid "Users authorization" msgstr "" -#: org/libreplan/web/common/CustomMenuController.java:384 -#: org/libreplan/web/qualityforms/QualityFormCRUDController.java:295 -#: libreplan-webapp/src/main/webapp/templates/_editTemplate.zul:72 -#: libreplan-webapp/src/main/webapp/templates/_editTemplateWindow.zul:54 -msgid "Quality Forms" +#: libreplan-webapp/src/main/webapp/excetiondays/_editExceptionDayType.zul:105 +#: libreplan-webapp/src/main/webapp/logs/_editRiskLog.zul:168 +#: libreplan-webapp/src/main/webapp/logs/_editIssueLog.zul:165 +#: libreplan-webapp/src/main/webapp/calendars/calendars.zul:47 +#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:98 +msgid "Save and Continue" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementFiles.zul:32 -msgid "No files" +#: libreplan-webapp/src/main/webapp/users/_editUser.zul:110 +msgid "Has bound resource" msgstr "" -#: org/libreplan/web/common/CustomMenuController.java:498 -msgid "Communications" +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/Worker.java:275 +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/Worker.java:275 +msgid "Bound user does not have the proper role" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementHours.zul:55 -msgid "Sum of direct imputed hours" +#: org/libreplan/importers/JiraTimesheetSynchronizer.java:120 +msgid "Order \"{0}\" not found. Order probalbly not synchronized" msgstr "" -#: org/libreplan/web/common/CustomMenuController.java:518 -#: libreplan-webapp/src/main/webapp/reports/schedulingProgressPerOrderReport.zul:39 -msgid "Work And Progress Per Project" +#: libreplan-business/src/main/java/org/libreplan/business/users/entities/Profile.java:68 +#: libreplan-business/src/main/java/org/libreplan/business/users/entities/Profile.java:68 +msgid "profile name not specified" msgstr "" -#: org/libreplan/web/planner/order/SaveCommandBuilder.java:347 -msgid "Project saved" +#: libreplan-webapp/src/main/webapp/qualityforms/qualityForms.zul:22 +msgid "LibrePlan: Quality Forms" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/Worker.java:260 -msgid "Virtual resources cannot be bound to any user" +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportLine.java:268 +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportLine.java:268 +msgid "clock finish cannot be empty if number of hours is calcultate by clock" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAdvances.zul:46 -#: libreplan-webapp/src/main/webapp/templates/_advances.zul:37 -msgid "Max value" +#: org/libreplan/web/common/components/finders/ExternalCompanyBandboxFinder.java:50 +#: libreplan-webapp/src/main/webapp/resources/worker/_edition.zul:88 +#: libreplan-webapp/src/main/webapp/resources/worker/_list.zul:37 +#: libreplan-webapp/src/main/webapp/resources/criterions/_workers.zul:29 +msgid "ID" msgstr "" -#: org/libreplan/web/common/components/TwoWaySelector.java:108 -msgid "Unknown attribute '{0}' in class {1}" +#: libreplan-webapp/src/main/webapp/limitingresources/manualAllocation.zul:32 +msgid "Queue Element Information" msgstr "" -#: org/libreplan/web/common/CustomMenuController.java:543 -#: libreplan-webapp/src/main/webapp/reports/workingArrangementsPerOrderReport.zul:39 -msgid "Task Scheduling Status In Project" +#: org/libreplan/web/resources/worker/WorkerCRUDController.java:960 +msgid "Confirm deleting this worker. Are you sure?" msgstr "" -#: libreplan-webapp/src/main/webapp/externalcompanies/_editExternalCompany.zul:71 -msgid "Interacts with applications" +#: org/libreplan/web/reports/OrderCostsPerResourceController.java:160 +msgid "must be after end date" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/Machine.java:97 -msgid "machine name not specified" +#: org/libreplan/web/common/ConfigurationController.java:1015 +msgid "It can not be deleted. At least one sequence is necessary." msgstr "" -#: org/libreplan/web/resources/machine/MachineCRUDController.java:549 -msgid "Machine was already removed" +#: org/libreplan/web/resources/machine/MachineConfigurationController.java:148 +msgid "Criterion previously selected" msgstr "" -#: libreplan-webapp/src/main/webapp/limitingresources/manualAllocation.zul:111 -msgid "Appropriative allocation" +#: libreplan-webapp/src/main/webapp/common/layout/login.zul:207 +msgid "is not supported for its use with LibrePlan." msgstr "" -#: org/libreplan/web/workreports/WorkReportCRUDController.java:683 -msgid "Create Timesheet" +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_taskInformation.zul:27 +msgid "Task Information" msgstr "" -#: libreplan-webapp/src/main/webapp/common/configuration.zul:328 -msgid "Use LDAP roles" +#: org/libreplan/web/calendars/BaseCalendarEditionController.java:209 +#: libreplan-webapp/src/main/webapp/excetiondays/_editExceptionDayType.zul:91 +msgid "Infinitely Over Assignable" msgstr "" -#: org/libreplan/web/planner/allocation/stretches/StretchesFunctionModel.java:179 -msgid "There must be at least 2 stretches for doing interpolation" +#: org/libreplan/web/reports/WorkingProgressPerTaskController.java:160 +#: org/libreplan/web/reports/HoursWorkedPerWorkerController.java:342 +#: org/libreplan/web/reports/OrderCostsPerResourceController.java:204 +#: org/libreplan/web/reports/CompletedEstimatedHoursPerTaskController.java:166 +#: org/libreplan/web/reports/WorkingArrangementsPerOrderController.java:206 +msgid "please, select a Criterion" msgstr "" -#: org/libreplan/web/common/JobSchedulerModel.java:181 -msgid "Timesheet data missing job" +#: org/libreplan/web/common/components/ResourceAllocationBehaviour.java:63 +#: libreplan-webapp/src/main/webapp/resources/worker/_list.zul:39 +#: libreplan-webapp/src/main/webapp/resources/machine/_listMachines.zul:38 +#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:94 +msgid "Queue-based" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/_legendLoadChartOrder.zul:27 -msgid "Overload due to other assignments" +#: org/libreplan/web/orders/TreeElementOperationsController.java:245 +msgid "" +"Templates can only be created out of existent tasks.You are trying to create " +"a template out of a new task.\n" +"Please save your project before proceeding." msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_projectDetails.zul:25 -msgid "Create new project" +#: org/libreplan/web/orders/AssignedTaskQualityFormsToOrderElementController.java:367 +msgid "Checked" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/components/_listOrderElementMaterials.zul:140 -msgid "Assign materials" +#: org/libreplan/web/resources/worker/WorkerCRUDController.java:1113 +msgid "You do not have permissions to go to edit user window" msgstr "" -#: org/libreplan/web/logs/IssueLogCRUDController.java:261 -msgid "Should have" +#: libreplan-webapp/src/main/webapp/common/accessForbidden.zul:40 +msgid "Please try to contact with any administrator in order to review your permissions in LibrePlan." msgstr "" -#: org/libreplan/importers/JiraTimesheetSynchronizer.java:111 -msgid "No workers found" +#: libreplan-webapp/src/main/webapp/planner/editTask.zul:62 +msgid "Normal resource allocation" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/costcategories/entities/CostCategory.java:296 -msgid "The hour cost codes must be unique." +#: libreplan-webapp/src/main/webapp/planner/order.zul:88 +#: libreplan-webapp/src/main/webapp/planner/order.zul:94 +msgid "Check consolidated progresses" msgstr "" -#: org/libreplan/web/resources/criterion/CriterionTreeController.java:299 -#: org/libreplan/web/resources/criterion/CriterionTreeController.java:314 -msgid "Not indentable" +#: libreplan-webapp/src/main/webapp/email/email_templates.zul:99 +msgid "Last name of user" msgstr "" -#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:163 -msgid "End Date" +#: org/libreplan/web/workreports/WorkReportCRUDController.java:886 +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementHours.zul:33 +#: libreplan-webapp/src/main/webapp/common/configuration.zul:244 +#: libreplan-webapp/src/main/webapp/workreports/workReportQuery.zul:130 +msgid "Hours type" msgstr "" -#: libreplan-webapp/src/main/webapp/reports/projectStatusReport.zul:162 -msgid "Output format:" +#: org/libreplan/web/orders/OrderCRUDController.java:444 +msgid "Schedule from start to deadline" msgstr "" -#: libreplan-webapp/src/main/webapp/common/layout/template.zul:94 -msgid "Select scenario" +#: libreplan-webapp/src/main/webapp/common/layout/login.zul:182 +msgid "Ever!" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_orderElementDetails.zul:38 -msgid "Code " +#: org/libreplan/web/common/CustomMenuController.java:395 +#: libreplan-webapp/src/main/webapp/common/configuration.zul:177 +#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:121 +msgid "Timesheets" msgstr "" -#: org/libreplan/web/planner/TaskElementAdapter.java:1220 -msgid ". Already registered: {0} hours" +#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:128 +msgid "Workable time" msgstr "" -#: libreplan-webapp/src/main/webapp/logs/_listRiskLog.zul:28 -#: libreplan-webapp/src/main/webapp/logs/_editRiskLog.zul:76 -msgid "Risk score" +#: libreplan-webapp/src/main/webapp/common/accessForbidden.zul:38 +msgid "You do not have permissions to access to this page." msgstr "" -#: org/libreplan/web/planner/taskedition/TaskPropertiesController.java:808 -msgid "You cannot email user twice with the same info" +#: libreplan-webapp/src/main/webapp/users/_editUser.zul:165 +msgid "Profiles of LDAP users cannot be managed because LDAP is enabled and LDAP roles are being used." msgstr "" -#: org/libreplan/importers/CalendarImporterMPXJ.java:340 -msgid "Calendar name already in use" +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelSubcontract.zul:59 +msgid "Work description" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelSubcontract.zul:87 -msgid "Hours groups" +#: org/libreplan/web/resources/worker/WorkerCRUDController.java:997 +#: org/libreplan/web/resources/machine/MachineCRUDController.java:563 +msgid "yes" msgstr "" -#: org/libreplan/web/common/CustomMenuController.java:473 -#: org/libreplan/web/externalcompanies/ExternalCompanyCRUDController.java:143 -msgid "Companies" +#: libreplan-webapp/src/main/webapp/common/configuration.zul:44 +msgid "Entity sequences" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_projectDetails.zul:94 -#: libreplan-webapp/src/main/webapp/common/layout/template.zul:104 -#: libreplan-webapp/src/main/webapp/limitingresources/manualAllocation.zul:140 -#: libreplan-webapp/src/main/webapp/planner/main.zul:66 -#: libreplan-webapp/src/main/webapp/planner/reassign.zul:49 -#: libreplan-webapp/src/main/webapp/planner/editTask.zul:76 -#: libreplan-webapp/src/main/webapp/planner/order.zul:131 -#: libreplan-webapp/src/main/webapp/planner/order.zul:166 -#: libreplan-webapp/src/main/webapp/planner/stretches_function.zul:97 -msgid "Accept" +#: org/libreplan/web/orders/OrderCRUDController.java:492 +msgid "Starting date cannot be empty in forward mode" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/costcategories/entities/TypeOfWorkHours.java:171 -msgid "type of work hours for JIRA connector cannot be disabled" +#: org/libreplan/web/workreports/WorkReportCRUDController.java:875 +msgid "Finish Hour" msgstr "" -#: libreplan-webapp/src/main/webapp/subcontract/subcontractedTasks.zul:47 -msgid "Last communication" +#: libreplan-business/src/main/java/org/libreplan/business/common/entities/Configuration.java:180 +#: libreplan-business/src/main/java/org/libreplan/business/common/entities/Configuration.java:180 +msgid "base not specified" msgstr "" -#: org/libreplan/web/users/UserCRUDController.java:435 -msgid "You do not have permissions to go to edit worker window" +#: libreplan-business/src/main/java/org/libreplan/business/common/entities/ConfigurationRolesLDAP.java:51 +#: libreplan-business/src/main/java/org/libreplan/business/common/entities/ConfigurationRolesLDAP.java:51 +msgid "role ldap not specified" msgstr "" -#: org/libreplan/web/planner/taskedition/EditTaskController.java:164 -msgid "Edit task: {0}" +#: org/libreplan/web/resources/worker/WorkerCRUDController.java:853 +msgid "Queue-based resource" msgstr "" -#: org/libreplan/web/importers/ProjectImportController.java:105 -msgid ": Calendar import successfully!" +#: org/libreplan/web/orders/OrderElementTreeController.java:703 +#: org/libreplan/web/orders/OrderModel.java:752 +#: org/libreplan/web/planner/TaskElementAdapter.java:846 +#: libreplan-webapp/src/main/webapp/dashboard/_dashboardfororder.zul:66 +#: libreplan-webapp/src/main/webapp/orders/_editOrderElement.zul:50 +#: libreplan-webapp/src/main/webapp/orders/_edition.zul:62 +#: libreplan-webapp/src/main/webapp/templates/_editTemplate.zul:68 +#: libreplan-webapp/src/main/webapp/templates/_editTemplateWindow.zul:50 +#: libreplan-webapp/src/main/webapp/myaccount/_myTasksArea.zul:40 +msgid "Progress" msgstr "" -#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:325 -#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:1007 -#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:1052 -msgid "" -"Progress Measurement cannot be deleted. Progress Measurement already " -"consolidated" +#: libreplan-webapp/src/main/webapp/workreports/_sortFieldsAndLabels.zul:44 +msgid "Lines" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_jiraSyncInfo.zul:32 -msgid "Synchronization of timesheets was successful" +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/Criterion.java:306 +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/Criterion.java:306 +msgid "criterion type not specified" msgstr "" -#: libreplan-webapp/src/main/webapp/myaccount/changePassword.zul:43 -msgid "Change password" +#: org/libreplan/web/users/UserCRUDController.java:357 +msgid "Confirm remove user" msgstr "" -#: libreplan-webapp/src/main/webapp/reports/schedulingProgressPerOrderReport.zul:21 -msgid "LibrePlan: Work And Progress Per Project" +#: org/libreplan/web/tree/TreeController.java:1143 +msgid "Value is not valid in current list of Hours Group" msgstr "" -#: org/libreplan/importers/ExportTimesheetsToTim.java:224 -msgid "Registration response with empty refs" +#: org/libreplan/web/logs/IssueLogCRUDController.java:415 +#: org/libreplan/web/logs/RiskLogCRUDController.java:397 +#: libreplan-webapp/src/main/webapp/logs/_logs.zul:42 +msgid "Issue logs" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/stretches_function.zul:32 -msgid "Stretches function configuration" +#: org/libreplan/web/resources/worker/WorkerCRUDController.java:517 +msgid "You do not have permissions to create new users" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/costcategories/entities/CostCategory.java:339 -msgid "last hours cost sequence code not specified" +#: libreplan-webapp/src/main/webapp/common/_listJobScheduling.zul:31 +msgid "Next fire time" msgstr "" -#: libreplan-webapp/src/main/webapp/resources/worker/_calendar.zul:50 -#: libreplan-webapp/src/main/webapp/resources/machine/_calendar.zul:41 -msgid "Save changes" +#: libreplan-webapp/src/main/webapp/orders/components/_timOrderTimesheetSync.zul:33 +msgid "Tim last sync" msgstr "" -#: org/libreplan/web/advance/AdvanceTypeCRUDController.java:210 -msgid "Progress Type" +#: libreplan-webapp/src/main/webapp/common/layout/login.zul:125 +msgid "Log in" msgstr "" -#: libreplan-webapp/src/main/webapp/myaccount/personalTimesheet.zul:66 -msgid "Next" +#: org/libreplan/web/resourceload/ResourceLoadController.java:457 +msgid "To" msgstr "" -#: org/libreplan/importers/ExportTimesheetsToTim.java:106 -msgid "No items found in 'OrderSyncInfo' to export to Tim" +#: libreplan-webapp/src/main/webapp/subcontract/customerCommunications.zul:20 +msgid "LibrePlan: Received From Customers" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_orderFilter.zul:24 -#: libreplan-webapp/src/main/webapp/orders/_orderElementTreeFilter.zul:24 -#: libreplan-webapp/src/main/webapp/resources/search/_resourceFilter.zul:26 -msgid "Select required criteria set and press filter button" +#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/Order.java:383 +#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/Order.java:383 +msgid "At least one hours group is needed for each task" msgstr "" -#: org/libreplan/web/users/UserCRUDController.java:422 -msgid "Confirm edit worker" +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAdvances.zul:46 +#: libreplan-webapp/src/main/webapp/templates/_advances.zul:37 +msgid "Max value" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelSubcontract.zul:66 -msgid "Subcontract price" +#: libreplan-webapp/src/main/webapp/orders/_list.zul:35 +msgid "Total Budget" msgstr "" -#: org/libreplan/web/orders/OrderCRUDController.java:1679 -#: org/libreplan/web/planner/order/SubcontractController.java:139 -msgid "You must select a valid date. " +#: libreplan-webapp/src/main/webapp/orders/_orderElementTreeFilter.zul:66 +msgid "Labels without inheritance" msgstr "" -#: libreplan-webapp/src/main/webapp/dashboard/_pipeline.zul:16 -msgid "ARCHIVED" +#: libreplan-webapp/src/main/webapp/planner/_legendLoadChartOrder.zul:32 +msgid "Overload due to current project" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelLimitingResourceAllocation.zul:52 -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelNonLimitingResourceAllocation.zul:59 -msgid "Allocations" +#: libreplan-webapp/src/main/webapp/externalcompanies/externalcompanies.zul:23 +msgid "LibrePlan: Companies" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/Order.java:449 -msgid "last task sequence code not specified" +#: libreplan-webapp/src/main/webapp/myaccount/personalTimesheet.zul:115 +msgid "Total extra" msgstr "" -#: org/libreplan/web/users/dashboard/PersonalTimesheetController.java:749 -#: org/libreplan/web/workreports/WorkReportCRUDController.java:214 -msgid "Personal timesheet saved" +#: org/libreplan/web/advance/AdvanceTypeCRUDController.java:96 +msgid "" +"Value is not valid, the default max value must be greater than the precision " +"value " msgstr "" -#: org/libreplan/web/users/dashboard/PersonalTimesheetController.java:608 -#: libreplan-webapp/src/main/webapp/myaccount/userDashboard.zul:35 -msgid "My dashboard" +#: libreplan-business/src/main/java/org/libreplan/business/common/entities/Configuration.java:164 +#: libreplan-business/src/main/java/org/libreplan/business/common/entities/Configuration.java:164 +msgid "company code cannot contain whitespaces" msgstr "" -#: org/libreplan/web/reports/HoursWorkedPerWorkerController.java:194 -msgid "This resource has already been added." +#: libreplan-business/src/main/java/org/libreplan/business/common/entities/EntitySequence.java:152 +#: libreplan-business/src/main/java/org/libreplan/business/common/entities/EntitySequence.java:152 +msgid "format sequence code invalid. It must not contain '_'" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAdvances.zul:57 -msgid "Calculated" +#: libreplan-webapp/src/main/webapp/logs/_listRiskLog.zul:28 +#: libreplan-webapp/src/main/webapp/logs/_editRiskLog.zul:76 +msgid "Risk score" msgstr "" -#: org/libreplan/web/expensesheet/ExpenseSheetCRUDController.java:231 -msgid "expense line of the " +#: org/libreplan/web/common/ConfigurationModel.java:211 +msgid "The {0} sequence prefixes cannot be repeated" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/QualityForm.java:266 -msgid "percentages in quality form items must be unique" +#: org/libreplan/web/limitingresources/QueueComponent.java:396 +msgid " hours" msgstr "" -#: org/libreplan/web/common/entrypoints/RedirectorSynthetiser.java:126 -msgid "Could not load any resource" +#: libreplan-webapp/src/main/webapp/workreports/_editWorkReportType.zul:30 +msgid "Managing fields and labels" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/HoursGroup.java:190 -msgid "working hours not specified" +#: org/libreplan/web/planner/allocation/FormBinder.java:640 +msgid "{0} already assigned to resource allocation list" msgstr "" -#: libreplan-webapp/src/main/webapp/materials/materials.zul:86 -#: libreplan-webapp/src/main/webapp/orders/components/_listOrderElementMaterials.zul:121 -#: libreplan-webapp/src/main/webapp/orders/_assignmentsBox.zul:31 -#: libreplan-webapp/src/main/webapp/templates/_materialAssignmentsBox.zul:30 -msgid "Unit type" +#: org/libreplan/web/scenarios/ScenarioCRUDController.java:227 +msgid "Scenario" msgstr "" -#: org/libreplan/web/planner/allocation/stretches/StretchesFunctionController.java:126 -msgid "All changes will be lost. Are you sure?" +#: org/libreplan/web/common/ConfigurationController.java:246 +msgid "Check all fields" msgstr "" -#: libreplan-webapp/src/main/webapp/common/configuration.zul:23 -msgid "LibrePlan: Main Settings" +#: libreplan-webapp/src/main/webapp/subcontract/reportAdvances.zul:22 +msgid "LibrePlan: Send To Customers" msgstr "" -#: org/libreplan/web/users/dashboard/UserDashboardController.java:71 -msgid "Expense sheet \"{0}\" saved" +#: org/libreplan/web/users/UserCRUDController.java:495 +#: org/libreplan/web/users/UserCRUDController.java:503 +#: org/libreplan/web/resources/worker/WorkerCRUDController.java:1139 +#: org/libreplan/web/resources/worker/WorkerCRUDController.java:1147 +#: org/libreplan/web/resources/machine/MachineCRUDController.java:609 +#: org/libreplan/web/resources/machine/MachineCRUDController.java:617 +#: libreplan-webapp/src/main/webapp/excetiondays/_listExceptionDayTypes.zul:40 +#: libreplan-webapp/src/main/webapp/unittypes/_listUnitTypes.zul:32 +#: libreplan-webapp/src/main/webapp/logs/_listRiskLog.zul:43 +#: libreplan-webapp/src/main/webapp/logs/_listIssueLog.zul:41 +#: libreplan-webapp/src/main/webapp/typeofworkhours/_listTypesOfWorkHours.zul:58 +#: libreplan-webapp/src/main/webapp/calendars/_createNewVersion.zul:58 +#: libreplan-webapp/src/main/webapp/calendars/_list.zul:36 +#: libreplan-webapp/src/main/webapp/profiles/_listProfiles.zul:50 +#: libreplan-webapp/src/main/webapp/common/_listJobScheduling.zul:36 +#: libreplan-webapp/src/main/webapp/advance/_listAdvanceTypes.zul:33 +#: libreplan-webapp/src/main/webapp/externalcompanies/_listExternalCompanies.zul:56 +#: libreplan-webapp/src/main/webapp/qualityforms/_listQualityForm.zul:60 +#: libreplan-webapp/src/main/webapp/costcategories/_listCostCategories.zul:55 +#: libreplan-webapp/src/main/webapp/workreports/_listWorkReportTypes.zul:56 +#: libreplan-webapp/src/main/webapp/labels/_listLabelTypes.zul:48 +#: libreplan-webapp/src/main/webapp/resources/criterions/_list.zul:52 +msgid "Create" msgstr "" -#: libreplan-webapp/src/main/webapp/workreports/workReportTypes.zul:23 -msgid "LibrePlan: Timesheets Templates" +#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:120 +msgid "Apply filter to" msgstr "" -#: org/libreplan/web/planner/allocation/FormBinder.java:640 -msgid "{0} already assigned to resource allocation list" +#: org/libreplan/web/common/components/finders/UserBandboxFinder.java:46 +msgid "Full name" msgstr "" -#: org/libreplan/web/common/converters/ConverterFactory.java:64 -msgid "Not found converter for {0}" +#: libreplan-webapp/src/main/webapp/myaccount/settings.zul:154 +msgid "Projects view filtering" msgstr "" -#: org/libreplan/web/users/dashboard/PersonalTimesheetController.java:340 -#: org/libreplan/web/users/dashboard/PersonalTimesheetController.java:697 -#: org/libreplan/web/planner/allocation/ResourceAllocationController.java:608 -#: libreplan-webapp/src/main/webapp/orders/_edition.zul:207 -#: libreplan-webapp/src/main/webapp/orders/_edition.zul:226 -#: libreplan-webapp/src/main/webapp/myaccount/personalTimesheet.zul:100 -#: libreplan-webapp/src/main/webapp/myaccount/_expensesArea.zul:34 -#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:53 -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelNonLimitingResourceAllocation.zul:109 -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelNonLimitingResourceAllocation.zul:117 -msgid "Total" +#: org/libreplan/web/calendars/BaseCalendarEditionController.java:311 +msgid "from {0}" msgstr "" -#: libreplan-webapp/src/main/webapp/externalcompanies/_listExternalCompanies.zul:27 -#: libreplan-webapp/src/main/webapp/externalcompanies/_editExternalCompany.zul:47 -msgid "Company ID" -msgstr "" - -#: libreplan-webapp/src/main/webapp/planner/reassign.zul:31 -msgid "Reassigning" +#: libreplan-webapp/src/main/webapp/orders/components/_listOrderElementLabels.zul:51 +msgid "Direct labels" msgstr "" -#: libreplan-webapp/src/main/webapp/workreports/workReportQuery.zul:39 -msgid "Filter timesheet lines by" +#: libreplan-webapp/src/main/webapp/limitingresources/limitingResourcesLayout.zul:63 +msgid "Zoom" msgstr "" -#: org/libreplan/web/common/BaseCRUDController.java:233 -msgid "{0} \"{1}\" saved" +#: libreplan-webapp/src/main/webapp/common/accessForbidden.zul:43 +msgid "Click the following link to return to home page: " msgstr "" -#: libreplan-webapp/src/main/webapp/common/pageNotFound.zul:43 -msgid "If you entered the URL directly in the navigation bar of the browser, please review it or click in the following link in order to go to initial page: " +#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/QualityForm.java:84 +#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/QualityForm.java:84 +msgid "quality form name not specified" msgstr "" -#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:123 -#: libreplan-webapp/src/main/webapp/workreports/_listWorkReportTypes.zul:47 -msgid "New timesheet" +#: libreplan-webapp/src/main/webapp/resources/search/allocation_selector.zul:49 +msgid "Load ratios calculated between" msgstr "" -#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:38 -msgid "Timesheets List" +#: libreplan-webapp/src/main/webapp/orders/_orderElementTreeFilter.zul:34 +msgid "options" msgstr "" -#: libreplan-webapp/src/main/webapp/users/_editUser.zul:121 -msgid "Go to edit worker window" +#: libreplan-business/src/main/java/org/libreplan/business/workreports/valueobjects/DescriptionValue.java:71 +#: libreplan-business/src/main/java/org/libreplan/business/workreports/valueobjects/DescriptionField.java:71 +#: libreplan-business/src/main/java/org/libreplan/business/workreports/valueobjects/DescriptionValue.java:71 +#: libreplan-business/src/main/java/org/libreplan/business/workreports/valueobjects/DescriptionField.java:71 +msgid "field name not specified or empty" msgstr "" -#: libreplan-webapp/src/main/webapp/resources/criterions/_edition.zul:50 -msgid "Multiple values per resource" +#: org/libreplan/web/common/BaseCRUDController.java:313 +msgid "{0} \"{1}\" deleted" msgstr "" -#: libreplan-webapp/src/main/webapp/resources/search/_resourceFilter.zul:31 -msgid "Personal details" +#: org/libreplan/importers/OrderImporterMPXJ.java:608 +msgid "Linked calendar not found" msgstr "" -#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:138 -msgid "Exceptions" +#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/QualityFormItem.java:112 +#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/QualityForm.java:277 +#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/TaskQualityFormItem.java:125 +#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/TaskQualityFormItem.java:125 +#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/QualityForm.java:277 +#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/QualityFormItem.java:112 +msgid "percentage should be greater than 0% and less than 100%" msgstr "" -#: libreplan-webapp/src/main/webapp/subcontract/reportAdvances.zul:49 -msgid "Date last progress measurement" +#: org/libreplan/web/labels/LabelTypeCRUDController.java:289 +msgid "Label Type" msgstr "" -#: libreplan-webapp/src/main/webapp/email/email_templates.zul:54 -msgid "Select template language" +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementFiles.zul:32 +msgid "No files" msgstr "" -#: libreplan-webapp/src/main/webapp/logs/_editIssueLog.zul:125 -msgid "Assigned to" +#: org/libreplan/web/workreports/WorkReportQueryController.java:285 +msgid "Task not found" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/QualityFormItem.java:94 -msgid "quality form item percentage not specified" +#: libreplan-webapp/src/main/webapp/logs/_listRiskLog.zul:34 +msgid "New risk score" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_orderElementTreeFilter.zul:39 -#: libreplan-webapp/src/main/webapp/qualityforms/_listQualityForm.zul:29 -#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:60 -#: libreplan-webapp/src/main/webapp/workreports/workReportQuery.zul:88 -#: libreplan-webapp/src/main/webapp/resources/search/_resourceFilter.zul:51 -msgid "Filter" +#: org/libreplan/web/orders/OrderCRUDController.java:1693 +msgid "It already exists a end date with the same date. " msgstr "" -#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:193 -#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerInAMonthReport.zul:48 -msgid "Year" +#: org/libreplan/web/common/components/finders/TaskGroupFilterEnum.java:32 +#: org/libreplan/web/common/components/finders/ResourceBandboxFinder.java:46 +#: org/libreplan/web/common/components/finders/ResourceFilterEnumByResourceAndCriterion.java:31 +#: org/libreplan/web/common/components/finders/TaskElementFilterEnum.java:34 +#: org/libreplan/web/common/components/finders/ResourceAllocationFilterEnum.java:30 +#: org/libreplan/web/workreports/WorkReportCRUDController.java:829 +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementHours.zul:32 +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementHours.zul:85 +#: libreplan-webapp/src/main/webapp/myaccount/personalTimesheet.zul:73 +#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:208 +#: libreplan-webapp/src/main/webapp/workreports/workReportQuery.zul:48 +#: libreplan-webapp/src/main/webapp/workreports/workReportQuery.zul:106 +#: libreplan-webapp/src/main/webapp/workreports/_editWorkReportType.zul:85 +#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:99 +#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:157 +#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:182 +msgid "Resource" msgstr "" -#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:157 -msgid "Report data" +#: libreplan-webapp/src/main/webapp/qualityforms/_editQualityForm.zul:105 +msgid "Up" msgstr "" -#: org/libreplan/web/calendars/BaseCalendarEditionController.java:665 -msgid "Inh" +#: libreplan-webapp/src/main/webapp/workreports/workReportQuery.zul:74 +msgid "hours type" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/labels/entities/Label.java:47 -msgid "type not specified" +#: org/libreplan/web/orders/OrderCRUDController.java:1371 +msgid "See scheduling" msgstr "" -#: org/libreplan/web/resources/worker/WorkerCRUDController.java:478 -#: org/libreplan/web/resources/worker/CriterionsController.java:93 -msgid "MessagesContainer is needed" +#: org/libreplan/web/common/components/finders/TaskGroupFilterEnum.java:32 +#: org/libreplan/web/common/components/finders/OrderFilterEnum.java:32 +msgid "Customer Reference" msgstr "" -#: libreplan-webapp/src/main/webapp/common/configuration.zul:447 -msgid "Role search strategy" +#: libreplan-webapp/src/main/webapp/common/configuration.zul:294 +#: libreplan-webapp/src/main/webapp/common/configuration.zul:309 +msgid "Number of digits" msgstr "" -#: org/libreplan/web/users/dashboard/PersonalTimesheetController.java:611 -#: libreplan-webapp/src/main/webapp/myaccount/personalTimesheet.zul:32 -msgid "Personal timesheet" +#: org/libreplan/importers/JiraOrderElementSynchronizer.java:290 +#: org/libreplan/importers/JiraTimesheetSynchronizer.java:139 +msgid "No worklog items found for \"{0}\" issue" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_edition.zul:171 -msgid "Hours margin" +#: org/libreplan/web/planner/allocation/ResourceAllocationController.java:392 +msgid "Calculate Resources per Day" msgstr "" -#: libreplan-webapp/src/main/webapp/common/layout/login.zul:185 -msgid "Giving a gift today means LibrePlan continues to remain available and in active development tomorrow!" +#: libreplan-webapp/src/main/webapp/resources/worker/_edition.zul:39 +#: libreplan-webapp/src/main/webapp/resources/_costCategoryAssignment.zul:26 +#: libreplan-webapp/src/main/webapp/resources/machine/_editMachine.zul:34 +msgid "Cost category assignment" msgstr "" -#: org/libreplan/web/orders/OrderCRUDController.java:1386 -#: org/libreplan/web/orders/OrderElementTreeController.java:320 -msgid "Not enough permissions to create templates" +#: libreplan-webapp/src/main/webapp/reports/orderCostsPerResource.zul:43 +msgid "Select report data" msgstr "" -#: org/libreplan/web/common/ConfigurationController.java:1044 -msgid "Select entity, please" +#: org/libreplan/web/orders/OrdersTreeComponent.java:105 +#: libreplan-webapp/src/main/webapp/orders/_edition.zul:149 +#: libreplan-webapp/src/main/webapp/orders/_projectDetails.zul:70 +#: libreplan-webapp/src/main/webapp/orders/_list.zul:33 +#: libreplan-webapp/src/main/webapp/orders/_orderElementDetails.zul:53 +#: libreplan-webapp/src/main/webapp/logs/_listIssueLog.zul:34 +#: libreplan-webapp/src/main/webapp/logs/_editIssueLog.zul:141 +#: libreplan-webapp/src/main/webapp/subcontract/customerCommunications.zul:59 +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelTaskProperties.zul:47 +msgid "Deadline" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/OrderLine.java:395 -#: libreplan-business/src/main/java/org/libreplan/business/templates/entities/OrderLineTemplate.java:241 -msgid "budget not specified" +#: libreplan-webapp/src/main/webapp/resources/search/allocation_selector.zul:111 +msgid "Overtime" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/planner/entities/Task.java:193 -msgid "element associated to a task must be not empty" +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementHours.zul:162 +msgid "Budget hours" msgstr "" -#: libreplan-webapp/src/main/webapp/myaccount/settings.zul:35 -msgid "User settings" +#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:274 +msgid "Parent" msgstr "" -#: org/libreplan/web/planner/consolidations/AdvanceConsolidationModel.java:481 -msgid "Progress cannot be consolidated." +#: libreplan-webapp/src/main/webapp/logs/_editRiskLog.zul:144 +msgid "Action When" msgstr "" -#: org/libreplan/web/planner/chart/EarnedValueChartFiller.java:245 -msgid "Budgeted Cost Work Scheduled" +#: libreplan-webapp/src/main/webapp/orders/_orderFilter.zul:35 +#: libreplan-webapp/src/main/webapp/orders/_orderElementTreeFilter.zul:48 +#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:55 +#: libreplan-webapp/src/main/webapp/workreports/workReportQuery.zul:58 +msgid "from" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/planner/entities/StretchesFunction.java:324 -msgid "A stretch has lower or equal values than the previous stretch" +#: libreplan-webapp/src/main/webapp/subcontract/subcontractorCommunications.zul:88 +msgid "Progress %" msgstr "" -#: org/libreplan/web/orders/OrdersTreeComponent.java:76 -#: org/libreplan/web/templates/TemplatesTreeComponent.java:85 -#: libreplan-webapp/src/main/webapp/orders/_edition.zul:182 -#: libreplan-webapp/src/main/webapp/orders/_edition.zul:193 -#: libreplan-webapp/src/main/webapp/orders/_orderElementDetails.zul:67 -#: libreplan-webapp/src/main/webapp/templates/_editTemplate.zul:111 -#: libreplan-webapp/src/main/webapp/subcontract/subcontractedTasks.zul:54 -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelTaskProperties.zul:63 -msgid "Budget" +#: libreplan-webapp/src/main/webapp/users/_editUser.zul:140 +msgid "Roles of LDAP users cannot be managed because LDAP is enabled and LDAP roles are being used." msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/common/entities/Configuration.java:159 -msgid "company code not specified" +#: org/libreplan/web/users/UserCRUDController.java:503 +#: org/libreplan/web/resources/worker/WorkerCRUDController.java:1147 +#: org/libreplan/web/resources/machine/MachineCRUDController.java:617 +msgid "left" msgstr "" -#: libreplan-webapp/src/main/webapp/templates/_historicalStatistics.zul:39 -msgid "Number of applications" +#: org/libreplan/web/expensesheet/ExpenseSheetCRUDController.java:205 +msgid "cannot be empty or less than zero" msgstr "" -#: org/libreplan/web/limitingresources/QueueComponent.java:224 -msgid "Completed: {0}%" +#: libreplan-webapp/src/main/webapp/scenarios/transferOrders.zul:67 +#: libreplan-webapp/src/main/webapp/scenarios/transferOrders.zul:77 +msgid "Version" msgstr "" -#: libreplan-webapp/src/main/webapp/dashboard/_costStatus.zul:25 -msgid "Current state indicators" +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelNonLimitingResourceAllocation.zul:76 +msgid "Extended view" msgstr "" -#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:169 -msgid "Dedication" +#: libreplan-webapp/src/main/webapp/common/layout/template.zul:88 +msgid "Change scenario" msgstr "" -#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:254 -msgid "Inherited from parent calendar" +#: libreplan-webapp/src/main/webapp/common/eventError.zul:44 +#: libreplan-webapp/src/main/webapp/common/error.zul:49 +msgid "Status code" msgstr "" -#: org/libreplan/web/planner/TaskElementAdapter.java:1291 -#: org/libreplan/web/planner/TaskElementAdapter.java:1311 -msgid "{0} not supported yet" +#: org/libreplan/web/common/ConfigurationController.java:468 +msgid "Connection unsuccessful" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/costcategories/entities/ResourcesCostCategoryAssignment.java:119 -msgid "cost assignment's category not specified" +#: libreplan-webapp/src/main/webapp/templates/_historicalAssignment.zul:36 +#: libreplan-webapp/src/main/webapp/subcontract/customerCommunications.zul:58 +#: libreplan-webapp/src/main/webapp/workreports/workReportQuery.zul:112 +msgid "Project Name" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/components/_orderElementTree.zul:64 -msgid "Move selected task down" +#: libreplan-webapp/src/main/webapp/excetiondays/_listExceptionDayTypes.zul:35 +#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:173 +msgid "Overtime Effort" msgstr "" -#: libreplan-webapp/src/main/webapp/resources/worker/_edition.zul:160 -msgid "New user" +#: org/libreplan/web/resourceload/ResourceLoadController.java:228 +#: org/libreplan/web/planner/company/CompanyPlanningModel.java:347 +#: org/libreplan/web/planner/order/OrderPlanningModel.java:704 +#: libreplan-webapp/src/main/webapp/planner/_legendLoadChartOrder.zul:49 +msgid "Load" msgstr "" -#: org/libreplan/web/templates/OrderTemplatesController.java:273 -msgid "calendar not specified" +#: org/libreplan/web/orders/OrderElementTreeController.java:455 +msgid "" +"Value is not valid.\n" +" Code cannot contain chars like '_' \n" +" and should not be empty" msgstr "" -#: org/libreplan/web/orders/OrderModel.java:753 -#: org/libreplan/web/planner/TaskElementAdapter.java:852 -#: libreplan-webapp/src/main/webapp/dashboard/_costStatus.zul:38 -msgid "Hours invested" +#: libreplan-webapp/src/main/webapp/common/layout/login.zul:184 +msgid "without you, LibrePlan can’t exist." msgstr "" -#: org/libreplan/web/planner/company/CompanyPlanningModel.java:538 -#: org/libreplan/web/planner/order/OrderPlanningModel.java:849 -msgid "h" +#: libreplan-webapp/src/main/webapp/resourceload/resourceload.zul:22 +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelLimitingResourceAllocation.zul:22 +#: libreplan-webapp/src/main/webapp/planner/main.zul:22 +#: libreplan-webapp/src/main/webapp/planner/order.zul:22 +#: libreplan-webapp/src/main/webapp/planner/montecarlo_function.zul:22 +#: libreplan-webapp/src/main/webapp/planner/resources_use.zul:22 +#: libreplan-webapp/src/main/webapp/planner/stretches_function.zul:22 +msgid "LibrePlan: Scheduling" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/montecarlo_function.zul:31 -msgid "MonteCarlo" +#: libreplan-webapp/src/main/webapp/orders/imports/projectImport.zul:49 +msgid "Select the elements to import into LibrePlan" msgstr "" -#: libreplan-webapp/src/main/webapp/resources/worker/_localizations.zul:31 -#: libreplan-webapp/src/main/webapp/resources/worker/_localizations.zul:53 -#: libreplan-webapp/src/main/webapp/resources/worker/_localizations.zul:68 -msgid "Group" +#: org/libreplan/web/common/ConfigurationController.java:474 +msgid "Invalid credentials" msgstr "" -#: org/libreplan/web/resources/worker/WorkerCRUDController.java:430 -msgid "Edit Virtual Workers Group: {0}" +#: libreplan-webapp/src/main/webapp/subcontract/reportAdvances.zul:48 +msgid "Value last progress reported" msgstr "" -#: org/libreplan/web/common/ConfigurationController.java:1564 -msgid "The only current supported formats are png and jpeg" +#: libreplan-webapp/src/main/webapp/subcontract/subcontractorCommunications.zul:33 +msgid "Communications From Subcontractors" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportLine.java:213 -msgid "timesheet not specified" +#: libreplan-business/src/main/java/org/libreplan/business/costcategories/entities/TypeOfWorkHours.java:149 +#: libreplan-business/src/main/java/org/libreplan/business/costcategories/entities/TypeOfWorkHours.java:149 +msgid "type of work hours for personal timesheets cannot be disabled" msgstr "" -#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:44 -#: libreplan-webapp/src/main/webapp/reports/orderCostsPerResource.zul:49 -#: libreplan-webapp/src/main/webapp/reports/timeLineMaterialReport.zul:44 -msgid "Dates" +#: libreplan-webapp/src/main/webapp/email/email_templates.zul:39 +msgid "Template data" msgstr "" -#: org/libreplan/web/resources/worker/WorkerCRUDController.java:517 -msgid "You do not have permissions to create new users" +#: org/libreplan/web/templates/historicalAssignment/OrderElementHistoricalAssignmentComponent.java:155 +#: org/libreplan/web/limitingresources/LimitingResourcesController.java:331 +#: org/libreplan/web/resourceload/ResourceLoadController.java:1053 +#: org/libreplan/web/resourceload/ResourceLoadController.java:1058 +#: org/libreplan/web/planner/taskedition/EditTaskController.java:374 +#: org/libreplan/web/planner/order/SaveCommandBuilder.java:347 +#: org/libreplan/web/planner/allocation/AdvancedAllocationController.java:764 +msgid "Information" msgstr "" -#: org/libreplan/web/orders/ProjectDetailsController.java:299 -msgid "Set Code as autogenerated to create a new project from templates" +#: org/libreplan/web/planner/tabs/MultipleTabsPlannerController.java:262 +#: org/libreplan/web/planner/order/SaveCommandBuilder.java:355 +msgid "" +"You are about to leave the planning editing. Unsaved changes will be lost!" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/planner/entities/SubcontractedTaskData.java:257 -msgid "delivery date not specified" +#: org/libreplan/web/planner/allocation/ResourceAllocationController.java:380 +msgid "Calculate Number of Hours" msgstr "" -#: org/libreplan/web/orders/OrderElementController.java:133 -msgid "Edit task {0}" +#: org/libreplan/web/materials/MaterialsController.java:247 +#: org/libreplan/web/materials/MaterialsController.java:262 +#: org/libreplan/web/orders/files/OrderFilesController.java:183 +#: org/libreplan/web/orders/materials/AssignedMaterialsController.java:381 +#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:1156 +#: org/libreplan/web/calendars/BaseCalendarEditionController.java:819 +#: org/libreplan/web/calendars/BaseCalendarEditionController.java:1106 +#: org/libreplan/web/calendars/BaseCalendarEditionController.java:1312 +#: org/libreplan/web/calendars/BaseCalendarCRUDController.java:400 +#: org/libreplan/web/tree/TreeController.java:1163 +#: org/libreplan/web/tree/TreeController.java:1172 +#: org/libreplan/web/costcategories/ResourcesCostCategoryAssignmentController.java:135 +#: org/libreplan/web/costcategories/ResourcesCostCategoryAssignmentController.java:152 +#: org/libreplan/web/costcategories/CostCategoryCRUDController.java:293 +#: org/libreplan/web/costcategories/CostCategoryCRUDController.java:462 +#: org/libreplan/web/workreports/WorkReportCRUDController.java:955 +#: org/libreplan/web/workreports/WorkReportCRUDController.java:1196 +#: org/libreplan/web/workreports/WorkReportTypeCRUDController.java:324 +#: org/libreplan/web/expensesheet/ExpenseSheetCRUDController.java:213 +#: org/libreplan/web/expensesheet/ExpenseSheetCRUDController.java:385 +#: org/libreplan/web/resources/criterion/CriterionTreeController.java:329 +#: org/libreplan/web/resources/worker/WorkerCRUDController.java:961 +#: org/libreplan/web/reports/HoursWorkedPerWorkerController.java:280 +#: org/libreplan/web/planner/order/SubcontractController.java:207 +#: org/libreplan/web/planner/allocation/stretches/StretchesFunctionController.java:387 +#: org/libreplan/web/planner/allocation/ResourceAllocationController.java:629 +#: libreplan-webapp/src/main/webapp/materials/materials.zul:108 +#: libreplan-webapp/src/main/webapp/orders/components/_listOrderElementLabels.zul:68 +#: libreplan-webapp/src/main/webapp/orders/_assignmentsBox.zul:72 +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementCriterionRequirements.zul:103 +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementCriterionRequirements.zul:241 +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAuthorizations.zul:79 +#: libreplan-webapp/src/main/webapp/orders/_listHoursGroupCriterionRequirement.zul:119 +#: libreplan-webapp/src/main/webapp/templates/_listTemplates.zul:64 +#: libreplan-webapp/src/main/webapp/templates/_materialAssignmentsBox.zul:57 +#: libreplan-webapp/src/main/webapp/typeofworkhours/_listTypesOfWorkHours.zul:50 +#: libreplan-webapp/src/main/webapp/users/_editUser.zul:185 +#: libreplan-webapp/src/main/webapp/profiles/_listProfiles.zul:41 +#: libreplan-webapp/src/main/webapp/externalcompanies/_listExternalCompanies.zul:48 +#: libreplan-webapp/src/main/webapp/qualityforms/_editQualityForm.zul:116 +#: libreplan-webapp/src/main/webapp/qualityforms/_listQualityForm.zul:54 +#: libreplan-webapp/src/main/webapp/costcategories/_listCostCategories.zul:47 +#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:99 +#: libreplan-webapp/src/main/webapp/workreports/_listWorkReportTypes.zul:43 +#: libreplan-webapp/src/main/webapp/labels/_listLabelTypes.zul:42 +#: libreplan-webapp/src/main/webapp/labels/_editLabelType.zul:99 +#: libreplan-webapp/src/main/webapp/resources/worker/_workRelationships.zul:46 +#: libreplan-webapp/src/main/webapp/resources/worker/_listVirtualWorkers.zul:52 +#: libreplan-webapp/src/main/webapp/resources/_criterions.zul:114 +#: libreplan-webapp/src/main/webapp/resources/machine/_machineConfigurationUnits.zul:87 +#: libreplan-webapp/src/main/webapp/resources/machine/_machineConfigurationUnits.zul:139 +#: libreplan-webapp/src/main/webapp/resources/machine/_machineConfigurationUnits.zul:155 +#: libreplan-webapp/src/main/webapp/resources/criterions/_list.zul:45 +#: libreplan-webapp/src/main/webapp/reports/schedulingProgressPerOrderReport.zul:133 +#: libreplan-webapp/src/main/webapp/reports/projectStatusReport.zul:98 +#: libreplan-webapp/src/main/webapp/reports/projectStatusReport.zul:140 +#: libreplan-webapp/src/main/webapp/reports/workingProgressPerTaskReport.zul:106 +#: libreplan-webapp/src/main/webapp/reports/workingProgressPerTaskReport.zul:147 +#: libreplan-webapp/src/main/webapp/reports/workingArrangementsPerOrderReport.zul:119 +#: libreplan-webapp/src/main/webapp/reports/workingArrangementsPerOrderReport.zul:163 +#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:146 +#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:188 +#: libreplan-webapp/src/main/webapp/reports/orderCostsPerResource.zul:114 +#: libreplan-webapp/src/main/webapp/reports/orderCostsPerResource.zul:159 +#: libreplan-webapp/src/main/webapp/reports/orderCostsPerResource.zul:202 +#: libreplan-webapp/src/main/webapp/reports/timeLineMaterialReport.zul:110 +#: libreplan-webapp/src/main/webapp/reports/completedEstimatedHoursPerTask.zul:110 +#: libreplan-webapp/src/main/webapp/reports/completedEstimatedHoursPerTask.zul:153 +msgid "Delete" msgstr "" -#: libreplan-webapp/src/main/webapp/montecarlo/_montecarlo.zul:96 -msgid "Number of iterations" +#: org/libreplan/importers/ImportRosterFromTim.java:239 +#: org/libreplan/importers/JiraTimesheetSynchronizer.java:357 +#: org/libreplan/importers/ExportTimesheetsToTim.java:291 +msgid "Worker \"{0}\" not found" msgstr "" -#: libreplan-webapp/src/main/webapp/myaccount/settings.zul:147 -#: libreplan-webapp/src/main/webapp/planner/print_configuration.zul:43 -msgid "Show money cost bar" +#: org/libreplan/web/externalcompanies/ExternalCompanyCRUDController.java:138 +#: libreplan-webapp/src/main/webapp/subcontract/subcontractedTasks.zul:49 +#: libreplan-webapp/src/main/webapp/subcontract/subcontractorCommunications.zul:69 +msgid "Company" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_projectDetails.zul:48 -#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:44 -#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:76 -msgid "Template" +#: libreplan-webapp/src/main/webapp/reports/orderCostsPerResource.zul:21 +msgid "LibrePlan: Project Costs" msgstr "" -#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:784 -msgid "The max value must be greater than 0" +#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/HoursGroup.java:190 +#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/HoursGroup.java:190 +msgid "working hours not specified" msgstr "" -#: libreplan-webapp/src/main/webapp/myaccount/settings.zul:184 -msgid "Criterion filter" +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAdvances.zul:97 +msgid "Progress Evolution" msgstr "" -#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:154 -msgid "Cannot create another progress of the same type" +#: org/libreplan/web/dashboard/DashboardController.java:239 +#: org/libreplan/web/dashboard/DashboardController.java:268 +#: libreplan-webapp/src/main/webapp/myaccount/_personalTimesheetsArea.zul:35 +msgid "Number of tasks" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/costcategories/entities/TypeOfWorkHours.java:106 -msgid "default price not specified" +#: libreplan-webapp/src/main/webapp/labels/_editLabelType.zul:69 +msgid "New label" msgstr "" -#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:43 -msgid "Filter timesheet by" +#: libreplan-webapp/src/main/webapp/common/configuration.zul:447 +msgid "Role search strategy" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelSubcontract.zul:51 -msgid "Subcontracting communication date" +#: libreplan-webapp/src/main/webapp/costcategories/_editCostCategory.zul:92 +msgid "Price per hour" msgstr "" -#: libreplan-webapp/src/main/webapp/costcategories/_listCostCategories.zul:28 -#: libreplan-webapp/src/main/webapp/resources/_costCategoryAssignment.zul:39 -msgid "Category name" +#: libreplan-webapp/src/main/webapp/montecarlo/_montecarlo.zul:51 +#: libreplan-webapp/src/main/webapp/montecarlo/_montecarlo.zul:53 +#: libreplan-webapp/src/main/webapp/montecarlo/_montecarlo.zul:55 +msgid "Estimated days" msgstr "" -#: org/libreplan/web/logs/IssueLogCRUDController.java:437 -#: org/libreplan/web/logs/RiskLogCRUDController.java:417 -msgid "please select an author" +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementCriterionRequirements.zul:160 +msgid "Hours group" msgstr "" -#: libreplan-webapp/src/main/webapp/templates/_listTemplates.zul:31 -#: libreplan-webapp/src/main/webapp/templates/_editTemplate.zul:93 -msgid "Delay from beginning (days)" +#: libreplan-webapp/src/main/webapp/orders/_orderElementTreeFilter.zul:39 +#: libreplan-webapp/src/main/webapp/qualityforms/_listQualityForm.zul:29 +#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:60 +#: libreplan-webapp/src/main/webapp/workreports/workReportQuery.zul:88 +#: libreplan-webapp/src/main/webapp/resources/search/_resourceFilter.zul:51 +msgid "Filter" msgstr "" -#: libreplan-webapp/src/main/webapp/common/configuration.zul:449 -msgid "Group strategy" +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementHours.zul:55 +msgid "Sum of direct imputed hours" msgstr "" -#: org/libreplan/web/resources/worker/WorkerCRUDController.java:288 -msgid "Worker saved" +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReport.java:442 +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReport.java:442 +msgid "last timesheet line sequence code not specified" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/calendars/entities/CalendarExceptionType.java:163 -#: libreplan-business/src/main/java/org/libreplan/business/scenarios/entities/Scenario.java:149 -msgid "name is already used" +#: org/libreplan/web/orders/OrderCRUDController.java:1027 +#: org/libreplan/web/templates/historicalAssignment/OrderElementHistoricalAssignmentComponent.java:144 +msgid "Not enough permissions to edit this project" msgstr "" -#: org/libreplan/web/resources/worker/WorkRelationshipsController.java:154 -msgid "" -"Time period contains non valid data. Ending data must be older than starting " -"date" +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementHours.zul:108 +msgid "Sum of direct expenses" msgstr "" -#: libreplan-webapp/src/main/webapp/myaccount/changePassword.zul:65 -msgid "Current password" +#: libreplan-webapp/src/main/webapp/orders/_edition.zul:162 +msgid "Scheduling mode" msgstr "" -#: libreplan-webapp/src/main/webapp/myaccount/_myTasksArea.zul:36 -#: libreplan-webapp/src/main/webapp/costcategories/_editCostCategory.zul:93 -#: libreplan-webapp/src/main/webapp/resources/search/allocation_selector.zul:58 -#: libreplan-webapp/src/main/webapp/resources/_costCategoryAssignment.zul:40 -#: libreplan-webapp/src/main/webapp/resources/machine/_machineConfigurationUnits.zul:68 -#: libreplan-webapp/src/main/webapp/reports/schedulingProgressPerOrderReport.zul:122 -#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:55 -#: libreplan-webapp/src/main/webapp/reports/orderCostsPerResource.zul:102 -#: libreplan-webapp/src/main/webapp/reports/timeLineMaterialReport.zul:53 -#: libreplan-webapp/src/main/webapp/reports/timeLineMaterialReport.zul:100 -#: libreplan-webapp/src/main/webapp/planner/montecarlo_function.zul:44 -msgid "Start date" +#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:158 +msgid "Period" msgstr "" -#: org/libreplan/web/calendars/BaseCalendarEditionController.java:565 -#: org/libreplan/web/common/components/ResourceAllocationBehaviour.java:38 -#: libreplan-webapp/src/main/webapp/montecarlo/_montecarlo.zul:44 -msgid "Normal" +#: org/libreplan/web/common/CustomMenuController.java:353 +#: org/libreplan/web/exceptionDays/CalendarExceptionTypeCRUDController.java:262 +msgid "Calendar Exception Days" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_orderFilter.zul:45 -#: libreplan-webapp/src/main/webapp/myaccount/settings.zul:176 -msgid "Exclude finished projects" +#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:74 +msgid "Connector" msgstr "" -#: libreplan-webapp/src/main/webapp/users/_editUser.zul:127 -msgid "Unbound resource" +#: org/libreplan/web/planner/allocation/stretches/StretchesFunctionModel.java:165 +#: libreplan-business/src/main/java/org/libreplan/business/planner/entities/StretchesFunction.java:318 +#: libreplan-business/src/main/java/org/libreplan/business/planner/entities/StretchesFunction.java:318 +msgid "At least one stretch is needed" msgstr "" -#: org/libreplan/importers/ImportRosterFromTim.java:129 -#: org/libreplan/importers/ExportTimesheetsToTim.java:96 -#: org/libreplan/importers/ExportTimesheetsToTim.java:140 -msgid "Connection values of Tim connector are invalid" -msgstr "" - -#: org/libreplan/web/orders/OrderElementTreeController.java:785 -msgid "" -"You cannot remove the task \"{0}\" because it has work reported on it or any " -"of its children" +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportType.java:154 +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportType.java:154 +msgid "Value is not valid.\n Code cannot contain chars like '_'." msgstr "" -#: org/libreplan/web/scenarios/ScenarioCRUDController.java:227 -msgid "Scenario" +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/Worker.java:127 +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/Worker.java:127 +msgid "worker's first name not specified" msgstr "" -#: org/libreplan/web/planner/limiting/allocation/LimitingResourceAllocationModel.java:222 -msgid "All resources must be queue-based" +#: org/libreplan/web/orders/TreeElementOperationsController.java:52 +msgid "Please select a task" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/users/entities/User.java:263 -msgid "username is already being used by another user" +#: org/libreplan/web/orders/DynamicDatebox.java:152 +msgid "Date format is wrong. Please, use the following format: {0}" msgstr "" -#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:282 -msgid "Summary" +#: org/libreplan/web/planner/allocation/AdvancedAllocationController.java:1620 +msgid "Task contains consolidated progress. Cannot apply sigmoid function." msgstr "" -#: libreplan-webapp/src/main/webapp/common/configuration.zul:292 -#: libreplan-webapp/src/main/webapp/common/configuration.zul:308 -msgid "Prefix" +#: libreplan-webapp/src/main/webapp/resources/worker/_calendar.zul:50 +#: libreplan-webapp/src/main/webapp/resources/machine/_calendar.zul:41 +msgid "Save changes" msgstr "" -#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:705 -msgid "Consolidated progress cannot be removed" +#: libreplan-webapp/src/main/webapp/logs/_logsFilter.zul:26 +msgid "Apply filtering to issues" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_edition.zul:73 -msgid "Files" +#: libreplan-webapp/src/main/webapp/resources/worker/_localizations.zul:64 +msgid "Log" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAdvances.zul:55 -#: libreplan-webapp/src/main/webapp/templates/_advances.zul:38 -msgid "Spread" +#: libreplan-webapp/src/main/webapp/resources/worker/_edition.zul:76 +msgid "Group name" msgstr "" -#: org/libreplan/web/common/ConfigurationModel.java:202 -msgid "At least one {0} sequence is needed" +#: org/libreplan/web/scenarios/TransferOrdersController.java:181 +msgid "Transfer" msgstr "" -#: libreplan-webapp/src/main/webapp/resources/worker/virtualWorkers.zul:22 -msgid "LibrePlan: Virtual Worker Groups" +#: libreplan-webapp/src/main/webapp/logs/_listIssueLog.zul:33 +msgid "Assigned To" msgstr "" -#: libreplan-webapp/src/main/webapp/resources/worker/_localizations.zul:64 -msgid "Log" +#: org/libreplan/web/planner/order/SubcontractController.java:154 +msgid "It already exists a deliver date with the same date. " msgstr "" -#: libreplan-webapp/src/main/webapp/myaccount/personalTimesheet.zul:57 -msgid "Previous" +#: org/libreplan/web/planner/consolidations/AdvanceConsolidationModel.java:482 +msgid "There is not any assigned progress to current task" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/users/entities/User.java:392 -msgid "You have exceeded the maximum limit of users" +#: org/libreplan/web/scenarios/ScenarioModel.java:125 +msgid "You cannot remove the current scenario" msgstr "" -#: org/libreplan/web/scenarios/ScenarioCRUDController.java:232 -msgid "Scenarios" +#: org/libreplan/web/workreports/WorkReportTypeCRUDController.java:704 +msgid "The field name must be unique and not empty" msgstr "" -#: libreplan-webapp/src/main/webapp/users/_editUser.zul:68 -#: libreplan-webapp/src/main/webapp/myaccount/changePassword.zul:49 -#: libreplan-webapp/src/main/webapp/common/layout/login.zul:105 -#: libreplan-webapp/src/main/webapp/common/configuration.zul:386 -#: libreplan-webapp/src/main/webapp/resources/worker/_edition.zul:175 -msgid "Password" +#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:138 +msgid "Exceptions" msgstr "" -#: org/libreplan/web/orders/materials/AssignedMaterialsController.java:454 -msgid "Split new assignment" +#: libreplan-webapp/src/main/webapp/common/configuration.zul:143 +msgid "Check for updates" msgstr "" -#: org/libreplan/web/orders/OrdersTreeComponent.java:107 -msgid "" -"Estimated end date for the task (press enter in textbox to open calendar " -"popup or type in date directly)" +#: libreplan-webapp/src/main/webapp/common/configuration.zul:146 +msgid "Show a notification when new LibrePlan versions are released" msgstr "" -#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:139 -#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:190 -msgid "Day of month" +#: org/libreplan/web/calendars/BaseCalendarEditionController.java:565 +#: org/libreplan/web/common/components/ResourceAllocationBehaviour.java:38 +#: libreplan-webapp/src/main/webapp/montecarlo/_montecarlo.zul:44 +msgid "Normal" msgstr "" -#: org/libreplan/web/calendars/BaseCalendarEditionController.java:1116 -msgid "inherited exception can not be removed" +#: libreplan-webapp/src/main/webapp/resources/search/allocation_selector.zul:129 +msgid "Assignment Type" msgstr "" -#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:180 -#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:214 -msgid "Exception Type" +#: org/libreplan/importers/JiraTimesheetSynchronizer.java:148 +msgid "Order element \"{0}\" not found" msgstr "" -#: org/libreplan/web/orders/OrderCRUDController.java:507 -msgid "Deadline cannot be empty in backwards mode" +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAdvances.zul:24 +#: libreplan-webapp/src/main/webapp/templates/_advances.zul:27 +msgid "Progress assignments" msgstr "" -#: libreplan-webapp/src/main/webapp/email/email_templates.zul:104 -msgid "Name of project" +#: libreplan-webapp/src/main/webapp/orders/_edition.zul:213 +msgid "WBS calculated budget" msgstr "" -#: org/libreplan/web/dashboard/DashboardController.java:274 -msgid " (%d tasks)" +#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:1179 +msgid "" +"Spread progress cannot be removed. Please select another progress as spread." msgstr "" -#: libreplan-webapp/src/main/webapp/subcontract/reportAdvances.zul:22 -msgid "LibrePlan: Send To Customers" +#: org/libreplan/web/scenarios/ScenarioModel.java:219 +msgid "Could not save the scenario" msgstr "" -#: libreplan-webapp/src/main/webapp/myaccount/settings.zul:138 -#: libreplan-webapp/src/main/webapp/common/configuration.zul:93 -#: libreplan-webapp/src/main/webapp/planner/print_configuration.zul:39 -msgid "Show progress" +#: libreplan-webapp/src/main/webapp/dashboard/_pipeline.zul:13 +msgid "ON HOLD" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReport.java:295 -msgid "There are repeated description values in the timesheet " +#: libreplan-webapp/src/main/webapp/common/configuration.zul:307 +#: libreplan-webapp/src/main/webapp/advance/_editAdvanceTypes.zul:47 +#: libreplan-webapp/src/main/webapp/resources/criterions/_criterionsTree.zul:47 +msgid "Active" msgstr "" -#: org/libreplan/web/planner/allocation/AdvancedAllocationController.java:1262 -msgid "Stretches list" +#: libreplan-webapp/src/main/webapp/myaccount/personalTimesheet.zul:42 +msgid "Timesheet data" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_timImpExpInfo.zul:25 -msgid "is not completed for the following reasons:" +#: org/libreplan/web/materials/UnitTypeController.java:179 +#: libreplan-webapp/src/main/webapp/unittypes/_listUnitTypes.zul:27 +msgid "Material Unit" msgstr "" -#: org/libreplan/web/orders/OrderCRUDController.java:1687 -msgid "" -"It will only be possible to add an end date if all the exiting ones in the " -"table have already been sent to the customer." +#: libreplan-webapp/src/main/webapp/logs/_logs.zul:44 +msgid "Risk logs" msgstr "" -#: org/libreplan/web/templates/OrderTemplatesController.java:306 -#: org/libreplan/web/common/CustomMenuController.java:313 -msgid "Templates" +#: org/libreplan/web/common/components/NewAllocationSelector.java:93 +msgid "specific allocation" msgstr "" -#: org/libreplan/web/resources/worker/WorkerCRUDController.java:1146 -msgid "Workers limit reached" +#: libreplan-webapp/src/main/webapp/orders/imports/projectImport.zul:41 +msgid "Your project could only partially be imported." msgstr "" -#: org/libreplan/web/planner/allocation/ResourceAllocationController.java:380 -msgid "Calculate Number of Hours" +#: org/libreplan/web/materials/UnitTypeController.java:151 +msgid "The code is not valid. There is another unit type with the same code" msgstr "" -#: org/libreplan/web/common/components/finders/OrderBandboxFinder.java:44 -#: org/libreplan/web/common/components/finders/OrderElementBandboxFinder.java:51 -#: libreplan-webapp/src/main/webapp/templates/_historicalAssignment.zul:35 -#: libreplan-webapp/src/main/webapp/subcontract/subcontractedTasks.zul:50 -#: libreplan-webapp/src/main/webapp/subcontract/reportAdvances.zul:44 -msgid "Project code" +#: libreplan-webapp/src/main/webapp/logs/_editIssueLog.zul:29 +msgid "Issue number" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_edition.zul:319 -msgid "Delivery dates asked by the subcontractor. " +#: org/libreplan/web/workreports/WorkReportCRUDController.java:1575 +#: org/libreplan/web/workreports/WorkReportCRUDController.java:1580 +msgid "please, select a timesheet template type" msgstr "" -#: org/libreplan/web/planner/allocation/AdvancedAllocationController.java:1620 -msgid "Task contains consolidated progress. Cannot apply sigmoid function." +#: libreplan-webapp/src/main/webapp/subcontract/reportAdvances.zul:45 +msgid "Customer reference code" msgstr "" -#: org/libreplan/web/workreports/WorkReportCRUDController.java:892 -msgid "Task finished" +#: org/libreplan/web/orders/OrderElementTreeModel.java:53 +#: libreplan-webapp/src/main/webapp/orders/components/_orderElementTree.zul:35 +msgid "New task" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementHours.zul:193 -msgid "Percentage of estimated budget in money / money spent" +#: org/libreplan/web/common/CustomMenuController.java:511 +#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerInAMonthReport.zul:39 +msgid "Total Worked Hours By Resource In A Month" msgstr "" -#: org/libreplan/web/limitingresources/QueueComponent.java:396 -msgid " hours" +#: org/libreplan/web/common/CustomMenuController.java:550 +#: libreplan-webapp/src/main/webapp/reports/timeLineMaterialReport.zul:39 +msgid "Materials Needed At Date" msgstr "" -#: org/libreplan/web/users/settings/SettingsController.java:182 -msgid "Resources load since should be lower than resources load to" +#: libreplan-webapp/src/main/webapp/scenarios/scenarios.zul:23 +msgid "LibrePlan: Scenarios Management" msgstr "" -#: libreplan-webapp/src/main/webapp/logs/_listRiskLog.zul:27 -#: libreplan-webapp/src/main/webapp/logs/_editRiskLog.zul:69 -msgid "Impact" +#: libreplan-business/src/main/java/org/libreplan/business/logs/entities/IssueLog.java:104 +#: libreplan-business/src/main/java/org/libreplan/business/logs/entities/IssueLog.java:104 +msgid "date raised is not specified" msgstr "" -#: org/libreplan/web/planner/chart/EarnedValueChartFiller.java:254 -msgid "SPI" +#: libreplan-webapp/src/main/webapp/materials/materials.zul:88 +#: libreplan-webapp/src/main/webapp/users/_listUsers.zul:29 +#: libreplan-webapp/src/main/webapp/users/_editUser.zul:82 +msgid "Disabled" msgstr "" -#: libreplan-webapp/src/main/webapp/subcontract/customerCommunications.zul:62 -#: libreplan-webapp/src/main/webapp/subcontract/subcontractorCommunications.zul:72 -msgid "Communication Date" +#: libreplan-webapp/src/main/webapp/planner/reassign.zul:31 +msgid "Reassigning" msgstr "" -#: libreplan-webapp/src/main/webapp/logs/_listIssueLog.zul:35 -msgid "Date Resolved" +#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:23 +msgid "LibrePlan: Timesheets" msgstr "" -#: libreplan-webapp/src/main/webapp/reports/completedEstimatedHoursPerTask.zul:21 -msgid "LibrePlan: Estimated/Planned Hours Per Task" +#: org/libreplan/web/common/components/EffortDurationPicker.java:63 +#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:127 +#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:188 +msgid "Minutes" msgstr "" -#: org/libreplan/web/orders/DynamicDatebox.java:152 -msgid "Date format is wrong. Please, use the following format: {0}" +#: org/libreplan/web/planner/milestone/AddMilestoneCommand.java:67 +msgid "Add Milestone" msgstr "" -#: libreplan-webapp/src/main/webapp/common/configuration.zul:283 -msgid "Select entity" +#: libreplan-webapp/src/main/webapp/orders/_jiraSyncInfo.zul:24 +msgid "Synchronization order elements with JIRA issues was successful" msgstr "" -#: org/libreplan/web/users/ProfileCRUDController.java:128 -#: org/libreplan/web/common/CustomMenuController.java:451 -msgid "Profiles" +#: libreplan-business/src/main/java/org/libreplan/business/common/entities/ConfigurationRolesLDAP.java:56 +#: libreplan-business/src/main/java/org/libreplan/business/common/entities/ConfigurationRolesLDAP.java:56 +msgid "LibrePlan role not specified" msgstr "" -#: org/libreplan/web/planner/reassign/ReassignCommand.java:129 -msgid "{0} reassignations finished" +#: org/libreplan/web/users/UserCRUDController.java:109 +msgid "Default user \"admin\" cannot be removed as it is mandatory" msgstr "" -#: libreplan-webapp/src/main/webapp/qualityforms/_editQualityForm.zul:105 -msgid "Up" +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/Resource.java:1175 +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/Resource.java:1175 +msgid "You have exceeded the maximum limit of resources" msgstr "" -#: org/libreplan/web/dashboard/GlobalProgressChart.java:55 -#: libreplan-webapp/src/main/webapp/resources/_criterions.zul:56 -msgid "Current" +#: libreplan-webapp/src/main/webapp/planner/stretches_function.zul:32 +msgid "Stretches function configuration" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/calendars/entities/ResourceCalendar.java:74 -msgid "Capacity must be a positive integer number" +#: org/libreplan/web/users/UserCRUDController.java:293 +#: libreplan-webapp/src/main/webapp/common/layout/login.zul:90 +#: libreplan-webapp/src/main/webapp/externalcompanies/_editExternalCompany.zul:63 +#: libreplan-webapp/src/main/webapp/resources/worker/_edition.zul:134 +msgid "User" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAuthorizations.zul:33 -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAuthorizations.zul:58 -msgid "Authorize" +#: libreplan-webapp/src/main/webapp/common/eventError.zul:26 +#: libreplan-webapp/src/main/webapp/common/error.zul:31 +msgid "Message - {0}" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/advance/entities/AdvanceMeasurement.java:109 -msgid "progress assignment not specified" +#: org/libreplan/web/resources/worker/CriterionsMachineController.java:213 +#: org/libreplan/web/resources/worker/CriterionsController.java:244 +msgid "Invaldid End Date. New End Date must be after current End Date " msgstr "" -#: org/libreplan/web/reports/SchedulingProgressPerOrderController.java:107 -#: org/libreplan/web/reports/TimeLineRequiredMaterialController.java:113 -#: org/libreplan/web/reports/OrderCostsPerResourceController.java:117 -msgid "This project has already been added." +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelSubcontract.zul:51 +msgid "Subcontracting communication date" msgstr "" -#: libreplan-webapp/src/main/webapp/resources/search/allocation_selector.zul:27 -msgid "Select criteria set or specific resources for allocation" +#: libreplan-webapp/src/main/webapp/common/configuration.zul:266 +msgid "Local document repository location" msgstr "" -#: libreplan-webapp/src/main/webapp/workreports/workReportQuery.zul:115 -msgid "Task Code" +#: org/libreplan/web/resources/criterion/CriterionAdminController.java:205 +msgid "Criterion Types" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReport.java:137 -msgid "timesheet template not specified" +#: libreplan-webapp/src/main/webapp/typeofworkhours/_editTypeOfWorkHours.zul:27 +msgid "Work hour type data" msgstr "" -#: org/libreplan/web/common/TemplateModel.java:333 -msgid "{0} projects remaining to reassign" +#: libreplan-webapp/src/main/webapp/subcontract/reportAdvances.zul:50 +msgid "Value last progress measurement" msgstr "" -#: org/libreplan/web/resources/machine/MachineCRUDController.java:279 -msgid "Please, select a calendar" +#: libreplan-webapp/src/main/webapp/resources/machine/_machineConfigurationUnits.zul:40 +msgid "Human hours per machine working hour within configuration unit" msgstr "" -#: org/libreplan/web/resources/criterion/CriterionTreeModel.java:330 -msgid "Already exists another criterion with the same name" +#: libreplan-webapp/src/main/webapp/myaccount/_personalTimesheetsArea.zul:31 +msgid "Available hours" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReport.java:477 -msgid "In personal timesheets, all timesheet lines should be in the same period" +#: org/libreplan/web/expensesheet/ExpenseSheetCRUDController.java:439 +msgid "Code cannot be empty." msgstr "" -#: org/libreplan/web/common/components/finders/OrderElementBandboxFinder.java:51 -#: libreplan-webapp/src/main/webapp/templates/_historicalAssignment.zul:37 -msgid "Task code" +#: libreplan-webapp/src/main/webapp/resources/search/_resourceFilter.zul:25 +msgid "Filter by" msgstr "" -#: org/libreplan/web/templates/TemplatesTree.java:42 -msgid "New template" +#: org/libreplan/web/common/JobSchedulerController.java:213 +msgid "Completed" msgstr "" -#: libreplan-webapp/src/main/webapp/logs/_listRiskLog.zul:35 -#: libreplan-webapp/src/main/webapp/logs/_editRiskLog.zul:128 -msgid "Contingency" +#: libreplan-webapp/src/main/webapp/orders/_orderElementDetails.zul:38 +msgid "Code " msgstr "" -#: libreplan-webapp/src/main/webapp/limitingresources/manualAllocation.zul:25 -msgid "Manual allocation" +#: libreplan-webapp/src/main/webapp/myaccount/_personalTimesheetsArea.zul:22 +msgid "Personal timesheets" msgstr "" -#: libreplan-webapp/src/main/webapp/costcategories/costCategory.zul:23 -msgid "LibrePlan: Cost Categories" +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementHours.zul:193 +msgid "Percentage of estimated budget in money / money spent" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/advance/entities/AdvanceMeasurement.java:100 -#: libreplan-business/src/main/java/org/libreplan/business/workreports/valueobjects/DescriptionValue.java:80 -#: libreplan-business/src/main/java/org/libreplan/business/expensesheet/entities/ExpenseSheetLine.java:87 -msgid "value not specified" +#: libreplan-business/src/main/java/org/libreplan/business/common/entities/ConnectorProperty.java:51 +#: libreplan-business/src/main/java/org/libreplan/business/common/entities/ConnectorProperty.java:51 +msgid "property key not specified" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/QualityFormItem.java:81 -msgid "quality form item position not specified" +#: libreplan-business/src/main/java/org/libreplan/business/common/entities/Configuration.java:169 +#: libreplan-business/src/main/java/org/libreplan/business/common/entities/Configuration.java:169 +msgid "host not specified" msgstr "" -#: libreplan-webapp/src/main/webapp/resources/worker/_edition.zul:45 -msgid "Basic data" +#: org/libreplan/web/planner/allocation/AdvancedAllocationController.java:764 +msgid "Changes applied" msgstr "" -#: libreplan-webapp/src/main/webapp/externalcompanies/_listExternalCompanies.zul:30 -msgid "Associated user" +#: org/libreplan/web/planner/allocation/ResourceAllocationController.java:445 +#: libreplan-webapp/src/main/webapp/resources/machine/_machineConfigurationUnits.zul:38 +msgid "Alpha" msgstr "" -#: org/libreplan/web/limitingresources/LimitingResourcesController.java:464 -msgid "Remove queue-based resource element" +#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:282 +msgid "Summary" msgstr "" -#: org/libreplan/web/common/components/EffortDurationPicker.java:69 -#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:121 -#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:187 -msgid "Seconds" +#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/OrderSyncInfo.java:78 +#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/OrderSyncInfo.java:78 +msgid "last synchronized date not specified" msgstr "" -#: libreplan-webapp/src/main/webapp/resources/worker/_edition.zul:36 -msgid "Locations" +#: org/libreplan/web/planner/tabs/PlanningTabCreator.java:240 +#: org/libreplan/web/planner/tabs/PlanningTabCreator.java:257 +msgid "Project Scheduling" msgstr "" -#: libreplan-webapp/src/main/webapp/resources/machine/_machineConfigurationUnits.zul:152 -msgid "must be a real positive number" +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementHours.zul:145 +msgid "Percentage of estimated budget hours / hours consumed" msgstr "" -#: libreplan-webapp/src/main/webapp/excetiondays/_listExceptionDayTypes.zul:35 -#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:173 -msgid "Overtime Effort" +#: org/libreplan/web/resources/machine/MachineCRUDController.java:536 +msgid "" +"Machine cannot be deleted. Machine is allocated to a project or contains " +"imputed hours" msgstr "" -#: org/libreplan/web/orders/OrderCRUDController.java:1618 -#: org/libreplan/web/orders/ProjectDetailsController.java:169 -msgid "project name already being used" +#: org/libreplan/web/users/dashboard/PersonalTimesheetController.java:455 +msgid "Extra" msgstr "" -#: org/libreplan/web/orders/OrderCRUDController.java:1645 -msgid "Regular project" +#: libreplan-webapp/src/main/webapp/common/configuration.zul:192 +msgid "Material categories" msgstr "" -#: org/libreplan/web/users/dashboard/PersonalTimesheetController.java:605 -msgid "My account" +#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/QualityForm.java:210 +#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/QualityForm.java:210 +msgid "Quality form item name must be unique" msgstr "" -#: org/libreplan/web/scenarios/ScenarioModel.java:219 -msgid "Could not save the scenario" +#: libreplan-webapp/src/main/webapp/myaccount/settings.zul:41 +msgid "Data" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_jiraSyncInfo.zul:34 -msgid "Synchronization of timesheets is not completed for the following reasons:" +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportLine.java:94 +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportLine.java:94 +msgid "effort not specified" msgstr "" -#: org/libreplan/importers/JiraOrderElementSynchronizer.java:132 -#: org/libreplan/importers/JiraOrderElementSynchronizer.java:511 -msgid "Connection values of JIRA connector are invalid" +#: org/libreplan/web/orders/files/OrderFilesController.java:183 +msgid "Confirm deleting this file. Are you sure?" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementHours.zul:162 -msgid "Budget hours" +#: libreplan-webapp/src/main/webapp/calendars/_list.zul:22 +msgid "Calendars List" msgstr "" -#: org/libreplan/web/users/settings/SettingsController.java:172 -msgid "Project since should be lower than project to" +#: libreplan-webapp/src/main/webapp/typeofworkhours/_editTypeOfWorkHours.zul:59 +#: libreplan-webapp/src/main/webapp/typeofworkhours/_listTypesOfWorkHours.zul:28 +msgid "Default price" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/common/entities/JobSchedulerConfiguration.java:81 -msgid "cron expression not specified" +#: libreplan-webapp/src/main/webapp/typeofworkhours/_editTypeOfWorkHours.zul:66 +#: libreplan-webapp/src/main/webapp/typeofworkhours/_listTypesOfWorkHours.zul:29 +#: libreplan-webapp/src/main/webapp/advance/_listAdvanceTypes.zul:28 +#: libreplan-webapp/src/main/webapp/costcategories/_listCostCategories.zul:29 +#: libreplan-webapp/src/main/webapp/costcategories/_editCostCategory.zul:67 +#: libreplan-webapp/src/main/webapp/resources/criterions/_edition.zul:61 +#: libreplan-webapp/src/main/webapp/resources/criterions/_list.zul:28 +msgid "Enabled" msgstr "" -#: org/libreplan/web/common/components/finders/OrderInExpenseSheetBandboxFinder.java:44 -#: org/libreplan/web/common/components/finders/OrderElementInExpenseSheetBandboxFinder.java:45 -msgid "Project name (Project code)" +#: libreplan-webapp/src/main/webapp/myaccount/personalTimesheet.zul:66 +msgid "Next" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/templates/entities/OrderTemplate.java:72 -msgid "template calendar not specified" +#: org/libreplan/web/scenarios/TransferOrdersModel.java:153 +msgid "Source and destination scenarios should be different" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReport.java:252 -msgid "label type: the timesheet have not assigned this label type" +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_allocationConfiguration.zul:41 +msgid "Planned workable days" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_orderElementTreeFilter.zul:34 -msgid "options" +#: libreplan-webapp/src/main/webapp/subcontract/reportAdvances.zul:35 +msgid "Communications To Customers" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/components/_listOrderElementLabels.zul:78 -msgid "Assign Label" +#: org/libreplan/web/limitingresources/QueueComponent.java:224 +msgid "Completed: {0}%" msgstr "" -#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:665 -msgid "Progress that are reported by quality forms can not be modified" +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportType.java:387 +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportType.java:387 +msgid "In the lines part, index labels and fields must be unique and consecutive" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAdvances.zul:49 -msgid "Current value" +#: org/libreplan/web/planner/order/SaveCommandBuilder.java:864 +msgid "New project version" msgstr "" -#: org/libreplan/web/planner/allocation/ResourceAllocationController.java:368 -msgid "Calculate Workable Days" +#: libreplan-webapp/src/main/webapp/common/layout/login.zul:60 +msgid "Access to the system" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/common/entities/EntitySequence.java:101 -msgid "last value not specified" +#: org/libreplan/web/planner/allocation/stretches/StretchesFunctionController.java:328 +msgid "Length percentage should be between 0 and 100" msgstr "" -#: org/libreplan/web/common/CustomMenuController.java:407 -#: libreplan-webapp/src/main/webapp/workreports/workReportQuery.zul:32 -msgid "Timesheet Lines List" +#: libreplan-webapp/src/main/webapp/materials/materials.zul:21 +msgid "LibrePlan: Materials" msgstr "" -#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:1207 -msgid "Invalid date. Date must be unique for this Progress Assignment" +#: org/libreplan/web/common/CustomMenuController.java:307 +msgid "Queue-based Resources" msgstr "" -#: libreplan-webapp/src/main/webapp/common/configuration.zul:102 -msgid "Company logo URL" +#: org/libreplan/web/workreports/WorkReportCRUDController.java:458 +msgid "effort is not properly calculated based on clock" msgstr "" -#: org/libreplan/web/resources/machine/MachineCRUDController.java:616 -msgid "Machines limit reached" +#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:1223 +msgid "" +"Date is not valid, it must be later than the last progress consolidation" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementHours.zul:168 -msgid "Imputed hours" +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportType.java:190 +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportType.java:190 +msgid "Assigned Label Type cannot be repeated in a Timesheet Template." msgstr "" -#: org/libreplan/web/planner/allocation/AdvancedAllocationController.java:1626 -msgid "Assignment function will be changed. Are you sure?" +#: org/libreplan/web/common/components/bandboxsearch/BandboxMultipleSearch.java:241 +msgid "format filters are not valid" msgstr "" -#: org/libreplan/importers/ImportRosterFromTim.java:124 -#: org/libreplan/importers/ExportTimesheetsToTim.java:92 -#: org/libreplan/importers/ExportTimesheetsToTim.java:135 -msgid "Tim connector not found" +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementHours.zul:177 +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementHours.zul:282 +msgid "%" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/imports/projectImport.zul:54 -msgid "Both calendars and gantt charts" +#: org/libreplan/web/workreports/WorkReportTypeModel.java:414 +msgid "There is another timesheet template with the same name" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/Order.java:371 -msgid "the project must have a deadline" +#: org/libreplan/web/tree/TreeComponent.java:68 +msgid "Fully, Partially or Unscheduled. (Drag and drop to move tasks)" msgstr "" -#: org/libreplan/web/planner/chart/EarnedValueChartFiller.java:245 -msgid "BCWS" +#: org/libreplan/web/common/ConfigurationController.java:484 +msgid "Failed to connect" msgstr "" -#: org/libreplan/web/orders/AssignedTaskQualityFormsToOrderElementController.java:359 -#: libreplan-webapp/src/main/webapp/qualityforms/_editQualityForm.zul:84 -#: libreplan-webapp/src/main/webapp/workreports/_editWorkReportType.zul:143 -#: libreplan-webapp/src/main/webapp/workreports/_editWorkReportType.zul:168 -msgid "Position" +#: libreplan-webapp/src/main/webapp/common/layout/timeout.zul:27 +#: libreplan-webapp/src/main/webapp/common/layout/timeout.zul:27 +msgid "Your session has expired because of inactivity. Please log in again." msgstr "" -#: org/libreplan/web/planner/milestone/AddMilestoneCommand.java:54 -msgid "new milestone" +#: org/libreplan/web/advance/AdvanceTypeCRUDController.java:107 +msgid "The name is not valid, the name must not be null " msgstr "" -#: org/libreplan/web/orders/AssignedTaskQualityFormsToOrderElementModel.java:276 -msgid "cannot be checked until the previous item is checked before" +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReport.java:414 +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReport.java:414 +msgid "The timesheet line codes must be unique." msgstr "" -#: libreplan-webapp/src/main/webapp/common/configuration.zul:455 -msgid "Group path" +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementHours.zul:218 +msgid "Resources budget" msgstr "" -#: libreplan-webapp/src/main/webapp/scenarios/transferOrders.zul:31 -msgid "Transfer Projects Between Scenarios" +#: libreplan-webapp/src/main/webapp/reports/projectStatusReport.zul:36 +msgid "Project Status Report" msgstr "" -#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:28 -msgid "Calendar data" +#: libreplan-webapp/src/main/webapp/limitingresources/manualAllocation.zul:100 +msgid "Select start date" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/costcategories/entities/ResourcesCostCategoryAssignment.java:128 -msgid "cost assignment's resource not specified" +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelTaskProperties.zul:68 +msgid "Constraint" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementHours.zul:61 -msgid "Sum of imputed hours in children tasks" +#: libreplan-webapp/src/main/webapp/resources/machine/_machineConfigurationUnits.zul:50 +msgid "Worker assignments" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/_legendLoadChartOrder.zul:42 -msgid "Load due to other assignments" +#: libreplan-webapp/src/main/webapp/externalcompanies/_editExternalCompany.zul:85 +msgid "Our company username" msgstr "" -#: libreplan-webapp/src/main/webapp/subcontract/subcontractorCommunications.zul:88 -msgid "Progress %" +#: libreplan-business/src/main/java/org/libreplan/business/calendars/entities/BaseCalendar.java:1204 +#: libreplan-business/src/main/java/org/libreplan/business/calendars/entities/BaseCalendar.java:1204 +msgid "last sequence code not specified" msgstr "" -#: org/libreplan/web/planner/chart/EarnedValueChartFiller.java:251 -msgid "Estimate At Completion" +#: libreplan-webapp/src/main/webapp/limitingresources/manualAllocation.zul:97 +msgid "Latest date" msgstr "" -#: libreplan-webapp/src/main/webapp/myaccount/personalTimesheet.zul:176 -msgid "Ok" +#: org/libreplan/web/dashboard/DashboardController.java:186 +msgid "No deadline" msgstr "" -#: libreplan-webapp/src/main/webapp/materials/materials.zul:50 -#: libreplan-webapp/src/main/webapp/orders/components/_listOrderElementMaterials.zul:45 -#: libreplan-webapp/src/main/webapp/orders/components/_listOrderElementMaterials.zul:85 -#: libreplan-webapp/src/main/webapp/reports/timeLineMaterialReport.zul:126 -msgid "Unselect" +#: libreplan-webapp/src/main/webapp/orders/_editOrderElement.zul:100 +#: libreplan-webapp/src/main/webapp/templates/_editTemplateWindow.zul:81 +#: libreplan-webapp/src/main/webapp/planner/order.zul:69 +#: libreplan-webapp/src/main/webapp/planner/montecarlo_function.zul:70 +msgid "Back" msgstr "" -#: libreplan-webapp/src/main/webapp/costcategories/_editCostCategory.zul:81 -#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:245 -#: libreplan-webapp/src/main/webapp/resources/_costCategoryAssignment.zul:30 -msgid "Add new row" +#: org/libreplan/web/calendars/BaseCalendarEditionController.java:208 +msgid "Unlimited" msgstr "" -#: libreplan-webapp/src/main/webapp/common/configuration.zul:129 -msgid "Autocomplete login form" +#: libreplan-webapp/src/main/webapp/reports/timeLineMaterialReport.zul:21 +msgid "LibrePlan: Materials Needed At Date" msgstr "" -#: org/libreplan/web/users/UserCRUDController.java:306 -msgid "Password cannot be empty" +#: org/libreplan/web/workreports/WorkReportModel.java:579 +msgid "Show all" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReport.java:506 -msgid "resource has to be bound to a user in personal timesheets" +#: libreplan-webapp/src/main/webapp/common/pageNotFound.zul:59 +msgid "If you want to see help/info page then" msgstr "" -#: org/libreplan/web/common/components/finders/OrderElementInExpenseSheetBandboxFinder.java:45 -msgid "Task name (Task code)" +#: org/libreplan/web/tree/TreeComponent.java:44 +#: org/libreplan/web/common/components/finders/TaskGroupFilterEnum.java:31 +#: org/libreplan/web/common/components/finders/OrderFilterEnum.java:31 +#: org/libreplan/web/workreports/WorkReportCRUDController.java:895 +#: libreplan-webapp/src/main/webapp/excetiondays/_editExceptionDayType.zul:38 +#: libreplan-webapp/src/main/webapp/materials/materials.zul:62 +#: libreplan-webapp/src/main/webapp/materials/materials.zul:83 +#: libreplan-webapp/src/main/webapp/unittypes/_editUnitType.zul:37 +#: libreplan-webapp/src/main/webapp/orders/_edition.zul:102 +#: libreplan-webapp/src/main/webapp/orders/_projectDetails.zul:54 +#: libreplan-webapp/src/main/webapp/orders/components/_listOrderElementMaterials.zul:119 +#: libreplan-webapp/src/main/webapp/orders/_assignmentsBox.zul:27 +#: libreplan-webapp/src/main/webapp/orders/_list.zul:30 +#: libreplan-webapp/src/main/webapp/logs/_listRiskLog.zul:24 +#: libreplan-webapp/src/main/webapp/logs/_listIssueLog.zul:24 +#: libreplan-webapp/src/main/webapp/logs/_editRiskLog.zul:29 +#: libreplan-webapp/src/main/webapp/templates/_materialAssignmentsBox.zul:28 +#: libreplan-webapp/src/main/webapp/typeofworkhours/_editTypeOfWorkHours.zul:40 +#: libreplan-webapp/src/main/webapp/typeofworkhours/_listTypesOfWorkHours.zul:26 +#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:57 +#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:220 +#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:304 +#: libreplan-webapp/src/main/webapp/myaccount/_expensesArea.zul:33 +#: libreplan-webapp/src/main/webapp/scenarios/transferOrders.zul:65 +#: libreplan-webapp/src/main/webapp/scenarios/transferOrders.zul:75 +#: libreplan-webapp/src/main/webapp/scenarios/_edition.zul:51 +#: libreplan-webapp/src/main/webapp/costcategories/_editCostCategory.zul:47 +#: libreplan-webapp/src/main/webapp/costcategories/_editCostCategory.zul:90 +#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:78 +#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:176 +#: libreplan-webapp/src/main/webapp/workreports/_editWorkReportType.zul:56 +#: libreplan-webapp/src/main/webapp/labels/_listLabelTypes.zul:27 +#: libreplan-webapp/src/main/webapp/labels/_editLabelType.zul:49 +#: libreplan-webapp/src/main/webapp/labels/_editLabelType.zul:79 +#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:54 +#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:76 +#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:184 +#: libreplan-webapp/src/main/webapp/resources/worker/_edition.zul:55 +#: libreplan-webapp/src/main/webapp/resources/worker/_list.zul:38 +#: libreplan-webapp/src/main/webapp/resources/machine/_listMachines.zul:37 +#: libreplan-webapp/src/main/webapp/resources/machine/_editMachine.zul:45 +#: libreplan-webapp/src/main/webapp/resources/criterions/_criterionsTree.zul:46 +#: libreplan-webapp/src/main/webapp/resources/criterions/_edition.zul:71 +#: libreplan-webapp/src/main/webapp/resources/criterions/_list.zul:26 +#: libreplan-webapp/src/main/webapp/reports/schedulingProgressPerOrderReport.zul:121 +#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:96 +#: libreplan-webapp/src/main/webapp/reports/orderCostsPerResource.zul:101 +#: libreplan-webapp/src/main/webapp/reports/timeLineMaterialReport.zul:99 +msgid "Code" msgstr "" -#: libreplan-webapp/src/main/webapp/myaccount/_personalTimesheetsArea.zul:22 -msgid "Personal timesheets" +#: libreplan-webapp/src/main/webapp/subcontract/customerCommunications.zul:44 +#: libreplan-webapp/src/main/webapp/subcontract/subcontractorCommunications.zul:46 +msgid "Refresh" msgstr "" -#: org/libreplan/web/users/UserCRUDController.java:293 -#: libreplan-webapp/src/main/webapp/common/layout/login.zul:90 -#: libreplan-webapp/src/main/webapp/externalcompanies/_editExternalCompany.zul:63 -#: libreplan-webapp/src/main/webapp/resources/worker/_edition.zul:134 -msgid "User" +#: libreplan-webapp/src/main/webapp/common/configuration.zul:283 +msgid "Select entity" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_assignmentsBox.zul:29 -msgid "Reception date" +#: org/libreplan/importers/ImportRosterFromTim.java:372 +msgid "Calendar exception day not found" msgstr "" -#: org/libreplan/web/common/ConfigurationController.java:973 -msgid "format prefix invalid. It cannot be empty or contain whitespaces." +#: org/libreplan/web/orders/OrderElementTreeController.java:342 +msgid "Expand/Collapse all" msgstr "" -#: org/libreplan/web/resources/worker/WorkerCRUDController.java:1113 -msgid "You do not have permissions to go to edit user window" +#: org/libreplan/importers/notifications/ComposeMessage.java:193 +msgid " - this user have not filled E-mail" msgstr "" -#: libreplan-webapp/src/main/webapp/logs/_editRiskLog.zul:86 -#: libreplan-webapp/src/main/webapp/logs/_editIssueLog.zul:69 -msgid "Creation info" +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementHours.zul:61 +msgid "Sum of imputed hours in children tasks" msgstr "" -#: org/libreplan/web/reports/SchedulingProgressPerOrderController.java:214 -msgid "Cannot be higher than Ending Date" +#: libreplan-webapp/src/main/webapp/subcontract/subcontractedTasks.zul:47 +msgid "Last communication" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/common/entities/JobSchedulerConfiguration.java:72 -msgid "job name not specified" +#: org/libreplan/web/orders/OrdersTreeComponent.java:84 +msgid "Budget minus resources costs" msgstr "" -#: org/libreplan/web/common/CustomMenuController.java:437 -#: libreplan-webapp/src/main/webapp/common/configuration.zul:36 -msgid "Main Settings" +#: org/libreplan/web/qualityforms/QualityFormCRUDController.java:222 +msgid "percentage should be between 1 and 100" msgstr "" -#: libreplan-webapp/src/main/webapp/resources/criterions/_criterionsTree.zul:23 -msgid "Criteria list" +#: org/libreplan/web/planner/order/SaveCommandBuilder.java:494 +#: org/libreplan/web/planner/order/SaveCommandBuilder.java:504 +msgid "Repeated Project code {0} in Project {1}" msgstr "" -#: org/libreplan/web/logs/IssueLogCRUDController.java:262 -msgid "Could have" +#: org/libreplan/web/planner/allocation/FormBinder.java:634 +msgid "it must be greater than zero" msgstr "" -#: org/libreplan/web/logs/IssueLogCRUDController.java:263 -msgid "Won't have" +#: libreplan-webapp/src/main/webapp/common/configuration.zul:449 +msgid "Group strategy" msgstr "" -#: org/libreplan/web/calendars/BaseCalendarEditionController.java:577 -msgid "Please, select type of exception" +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/Resource.java:1116 +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/Resource.java:1116 +msgid "there exist criterion satisfactions referring to " +"criterion types not applicable to this resource" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/planner/entities/SubcontractedTaskData.java:124 -msgid "external company not specified" +#: libreplan-webapp/src/main/webapp/calendars/_createNewVersion.zul:45 +msgid "From date" msgstr "" -#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:132 -msgid "Expense lines" +#: org/libreplan/web/dashboard/DashboardController.java:184 +msgid "On schedule" msgstr "" -#: org/libreplan/web/resources/search/NewAllocationSelectorController.java:699 -msgid "Start filtering date cannot be empty" +#: org/libreplan/web/reports/WorkingProgressPerTaskController.java:116 +#: org/libreplan/web/reports/CompletedEstimatedHoursPerTaskController.java:122 +#: org/libreplan/web/reports/WorkingArrangementsPerOrderController.java:147 +msgid "Please, select a project" msgstr "" -#: libreplan-webapp/src/main/webapp/reports/workingArrangementsPerOrderReport.zul:76 -msgid "Show dependencies" +#: org/libreplan/web/materials/UnitTypeController.java:184 +#: org/libreplan/web/common/CustomMenuController.java:377 +#: libreplan-webapp/src/main/webapp/common/configuration.zul:199 +msgid "Material Units" msgstr "" -#: libreplan-webapp/src/main/webapp/resources/criterions/_edition.zul:51 -msgid "Allow multiple values of this type of criterion in the same period of time" +#: libreplan-webapp/src/main/webapp/profiles/profiles.zul:23 +msgid "LibrePlan: Profiles" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/OrderElement.java:1124 -msgid "a label can not be assigned twice in the same branch" +#: org/libreplan/web/limitingresources/LimitingResourcesController.java:506 +msgid "Select for automatic queuing" msgstr "" -#: org/libreplan/web/planner/reassign/ReassignCommand.java:163 -msgid "Doing {0} reassignations" +#: libreplan-webapp/src/main/webapp/profiles/_editProfile.zul:28 +msgid "Profile data" msgstr "" -#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:173 -msgid "For more details on cron expression click" +#: libreplan-webapp/src/main/webapp/common/configuration.zul:455 +msgid "Group path" msgstr "" -#: libreplan-webapp/src/main/webapp/resources/worker/_edition.zul:149 -msgid "Go to edit user window" +#: org/libreplan/web/resources/worker/CriterionsMachineController.java:238 +#: org/libreplan/web/resources/worker/CriterionsController.java:226 +msgid "" +"Start date is not valid, the new start date must be previous the current " +"start date" msgstr "" -#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:1105 -msgid "Values already sent to the customer. Values cannot be changed " +#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/TaskQualityForm.java:71 +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportLine.java:185 +#: libreplan-business/src/main/java/org/libreplan/business/expensesheet/entities/ExpenseSheetLine.java:104 +#: libreplan-business/src/main/java/org/libreplan/business/planner/entities/SubcontractedTaskData.java:119 +#: libreplan-business/src/main/java/org/libreplan/business/planner/entities/SubcontractedTaskData.java:119 +#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/TaskQualityForm.java:71 +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportLine.java:185 +#: libreplan-business/src/main/java/org/libreplan/business/expensesheet/entities/ExpenseSheetLine.java:104 +msgid "task not specified" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/costcategories/entities/HourCost.java:121 -msgid "cost category not specified" +#: org/libreplan/web/templates/OrderTemplatesController.java:232 +#: org/libreplan/web/templates/OrderTemplatesController.java:250 +msgid "Template saved" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/Order.java:707 -msgid "task code is repeated inside the project" +#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:146 +msgid "or names" msgstr "" -#: libreplan-webapp/src/main/webapp/limitingresources/limitingResourcesLayout.zul:150 -msgid "Earlier starting date" -msgstr "" +#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:123 +msgid "Both" +msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/expensesheet/entities/ExpenseSheet.java:110 -msgid "total not specified" +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementFiles.zul:26 +msgid "Upload" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/materials/entities/UnitType.java:85 -msgid "the measure has to be unique" +#: org/libreplan/web/calendars/BaseCalendarEditionController.java:1368 +msgid "It cannot be empty" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/users/entities/User.java:150 -msgid "username not specified" +#: org/libreplan/web/orders/AssignedTaskQualityFormsToOrderElementController.java:302 +msgid "" +"Another task in the same branch is already reporting progress for this " +"quality form" msgstr "" -#: org/libreplan/web/templates/TemplatesTreeComponent.java:99 -msgid "Deadline (days since project start)" +#: org/libreplan/web/users/settings/PasswordController.java:98 +msgid "passwords can not be empty" msgstr "" -#: org/libreplan/web/scenarios/TransferOrdersController.java:190 -msgid "Project {0} transfered" +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAuthorizations.zul:32 +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAuthorizations.zul:57 +msgid "Write" msgstr "" -#: org/libreplan/web/logs/IssueLogCRUDController.java:260 -msgid "Must have" +#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:192 +msgid "Heading Fields" msgstr "" -#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:110 -msgid "Expense properties" +#: libreplan-webapp/src/main/webapp/common/eventError.zul:22 +#: libreplan-webapp/src/main/webapp/common/error.zul:21 +msgid "LibrePlan: Runtime Error" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/OrderLine.java:336 -msgid "Code already included in Hours Group codes" +#: org/libreplan/web/logs/IssueLogCRUDController.java:410 +msgid "issuelog-number" msgstr "" -#: libreplan-webapp/src/main/webapp/reports/projectStatusReport.zul:36 -msgid "Project Status Report" +#: libreplan-webapp/src/main/webapp/myaccount/changePassword.zul:56 +msgid "LDAP users cannot change their password if LDAP authentication is enabled. Talk to one of the administrators" msgstr "" -#: libreplan-webapp/src/main/webapp/common/configuration.zul:236 -msgid "MonteCarlo method" +#: org/libreplan/web/montecarlo/MonteCarloController.java:172 +msgid "Percentages should sum 100" msgstr "" -#: org/libreplan/web/planner/chart/EarnedValueChartFiller.java:254 -msgid "Cost Performance Index" +#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/Order.java:437 +#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/Order.java:437 +msgid "project calendar not specified" msgstr "" -#: libreplan-webapp/src/main/webapp/workreports/workReportQuery.zul:124 -msgid "Finish hour" +#: org/libreplan/web/materials/MaterialsController.java:344 +msgid "Materials saved" msgstr "" -#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:748 -msgid "" -"Spread progress cannot be changed if there is a consolidation in any " -"progress assignment" +#: libreplan-webapp/src/main/webapp/common/layout/login.zul:181 +msgid "We don’t show advertisements or sell your data." msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_ordersTab.zul:34 -msgid "Save Project" +#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:144 +#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:156 +msgid "Invalid Spread values. At least one value should be true" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportLine.java:259 -msgid "closckStart:the clockStart must be not null if number of hours is calcultate by clock" +#: libreplan-webapp/src/main/webapp/myaccount/settings.zul:156 +msgid "Label filter" msgstr "" -#: org/libreplan/web/users/OrderAuthorizationController.java:108 +#: org/libreplan/web/orders/OrderCRUDController.java:513 msgid "" -"Could not add those authorizations to user {0} because they were already " -"present." +"Deadline cannot be empty because there is a task with constraint \"as late " +"as possible\"" msgstr "" -#: org/libreplan/web/logs/IssueLogCRUDController.java:433 -#: org/libreplan/web/logs/RiskLogCRUDController.java:413 -msgid "please select a project" +#: libreplan-webapp/src/main/webapp/dashboard/_dashboardfororder.zul:131 +msgid "No tasks available yet" msgstr "" -#: org/libreplan/web/planner/TaskElementAdapter.java:1213 -msgid "Hours-status" +#: org/libreplan/importers/ImportRosterFromTim.java:356 +msgid "Exception name should not be empty" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/components/_orderElementTree.zul:50 -msgid "Selected node" +#: libreplan-webapp/src/main/webapp/common/configuration.zul:467 +msgid "Role property" msgstr "" -#: org/libreplan/importers/ExportTimesheetsToTim.java:127 -msgid "Product code should not be empty" +#: org/libreplan/web/common/CustomMenuController.java:556 +msgid "Project Status" msgstr "" -#: libreplan-webapp/src/main/webapp/common/configuration.zul:350 -#: libreplan-webapp/src/main/webapp/common/configuration.zul:361 -#: libreplan-webapp/src/main/webapp/common/configuration.zul:371 -#: libreplan-webapp/src/main/webapp/common/configuration.zul:381 -#: libreplan-webapp/src/main/webapp/common/configuration.zul:419 -#: libreplan-webapp/src/main/webapp/common/configuration.zul:461 -#: libreplan-webapp/src/main/webapp/common/configuration.zul:472 -#: libreplan-webapp/src/main/webapp/common/configuration.zul:482 -#: libreplan-webapp/src/main/webapp/externalcompanies/_editExternalCompany.zul:81 -msgid "Example: {0}" +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAdvances.zul:49 +msgid "Current value" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_edition.zul:250 -msgid "Customer information" +#: libreplan-webapp/src/main/webapp/logs/_listRiskLog.zul:35 +#: libreplan-webapp/src/main/webapp/logs/_editRiskLog.zul:128 +msgid "Contingency" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_assignmentsBox.zul:34 -#: libreplan-webapp/src/main/webapp/logs/_listRiskLog.zul:29 -#: libreplan-webapp/src/main/webapp/logs/_listIssueLog.zul:27 -#: libreplan-webapp/src/main/webapp/logs/_editRiskLog.zul:44 -#: libreplan-webapp/src/main/webapp/logs/_editIssueLog.zul:59 -#: libreplan-webapp/src/main/webapp/reports/timeLineMaterialReport.zul:61 -msgid "Status" +#: libreplan-webapp/src/main/webapp/common/layout/login.zul:180 +msgid "Did you know LibrePlan is funded only by donations, from people like you?" msgstr "" -#: org/libreplan/web/resources/worker/WorkerCRUDController.java:184 -msgid "Create new user" +#: libreplan-webapp/src/main/webapp/planner/index.zul:22 +msgid "LibrePlan: Planning" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/common/entities/Configuration.java:432 -msgid "currency symbol not specified" +#: org/libreplan/importers/JiraOrderElementSynchronizer.java:541 +msgid "No JIRA issues found for key {0}" msgstr "" -#: org/libreplan/web/dashboard/GlobalProgressChart.java:59 -msgid "By all tasks hours" +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementHours.zul:225 +msgid "Expenses budget" msgstr "" -#: org/libreplan/web/planner/tabs/LimitingResourcesTabCreator.java:84 -#: org/libreplan/web/planner/tabs/LimitingResourcesTabCreator.java:103 -msgid "Queue-based Resources Planning" +#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:154 +msgid "Cannot create another progress of the same type" msgstr "" -#: libreplan-webapp/src/main/webapp/materials/materials.zul:87 -#: libreplan-webapp/src/main/webapp/orders/components/_listOrderElementMaterials.zul:123 -#: libreplan-webapp/src/main/webapp/templates/_materialAssignmentsBox.zul:33 -msgid "Category" +#: libreplan-webapp/src/main/webapp/common/configuration.zul:292 +#: libreplan-webapp/src/main/webapp/common/configuration.zul:308 +msgid "Prefix" msgstr "" -#: libreplan-webapp/src/main/webapp/materials/materials.zul:85 -#: libreplan-webapp/src/main/webapp/orders/components/_listOrderElementMaterials.zul:122 -#: libreplan-webapp/src/main/webapp/orders/_assignmentsBox.zul:32 -#: libreplan-webapp/src/main/webapp/templates/_materialAssignmentsBox.zul:31 -msgid "Unit price" +#: org/libreplan/web/tree/TreeComponent.java:58 +#: org/libreplan/web/workreports/WorkReportCRUDController.java:902 +#: libreplan-webapp/src/main/webapp/excetiondays/_listExceptionDayTypes.zul:36 +#: libreplan-webapp/src/main/webapp/materials/materials.zul:64 +#: libreplan-webapp/src/main/webapp/materials/materials.zul:89 +#: libreplan-webapp/src/main/webapp/unittypes/_listUnitTypes.zul:29 +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAdvances.zul:61 +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAdvances.zul:83 +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementTaskQualityForms.zul:55 +#: libreplan-webapp/src/main/webapp/orders/_edition.zul:339 +#: libreplan-webapp/src/main/webapp/orders/components/_listOrderElementLabels.zul:58 +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementFiles.zul:41 +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementCriterionRequirements.zul:56 +#: libreplan-webapp/src/main/webapp/orders/_list.zul:39 +#: libreplan-webapp/src/main/webapp/orders/_listHoursGroupCriterionRequirement.zul:33 +#: libreplan-webapp/src/main/webapp/logs/_listRiskLog.zul:39 +#: libreplan-webapp/src/main/webapp/logs/_listIssueLog.zul:37 +#: libreplan-webapp/src/main/webapp/templates/_listTemplates.zul:37 +#: libreplan-webapp/src/main/webapp/templates/_advances.zul:39 +#: libreplan-webapp/src/main/webapp/templates/_assignedQualityForms.zul:51 +#: libreplan-webapp/src/main/webapp/templates/_historicalAssignment.zul:41 +#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:285 +#: libreplan-webapp/src/main/webapp/calendars/_list.zul:31 +#: libreplan-webapp/src/main/webapp/myaccount/_personalTimesheetsArea.zul:37 +#: libreplan-webapp/src/main/webapp/myaccount/_myTasksArea.zul:41 +#: libreplan-webapp/src/main/webapp/myaccount/_expensesArea.zul:37 +#: libreplan-webapp/src/main/webapp/scenarios/transferOrders.zul:68 +#: libreplan-webapp/src/main/webapp/scenarios/_list.zul:28 +#: libreplan-webapp/src/main/webapp/subcontract/subcontractedTasks.zul:57 +#: libreplan-webapp/src/main/webapp/subcontract/customerCommunications.zul:64 +#: libreplan-webapp/src/main/webapp/subcontract/subcontractorCommunications.zul:80 +#: libreplan-webapp/src/main/webapp/subcontract/reportAdvances.zul:52 +#: libreplan-webapp/src/main/webapp/common/_listJobScheduling.zul:32 +#: libreplan-webapp/src/main/webapp/common/configuration.zul:311 +#: libreplan-webapp/src/main/webapp/advance/_listAdvanceTypes.zul:30 +#: libreplan-webapp/src/main/webapp/limitingresources/limitingResourcesLayout.zul:154 +#: libreplan-webapp/src/main/webapp/externalcompanies/_listExternalCompanies.zul:31 +#: libreplan-webapp/src/main/webapp/qualityforms/_editQualityForm.zul:87 +#: libreplan-webapp/src/main/webapp/qualityforms/_listQualityForm.zul:40 +#: libreplan-webapp/src/main/webapp/costcategories/_editCostCategory.zul:95 +#: libreplan-webapp/src/main/webapp/workreports/_sortFieldsAndLabels.zul:36 +#: libreplan-webapp/src/main/webapp/workreports/_sortFieldsAndLabels.zul:52 +#: libreplan-webapp/src/main/webapp/workreports/_editWorkReportType.zul:144 +#: libreplan-webapp/src/main/webapp/workreports/_editWorkReportType.zul:170 +#: libreplan-webapp/src/main/webapp/workreports/_listWorkReportTypes.zul:28 +#: libreplan-webapp/src/main/webapp/labels/_listLabelTypes.zul:28 +#: libreplan-webapp/src/main/webapp/labels/_editLabelType.zul:81 +#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:57 +#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:185 +#: libreplan-webapp/src/main/webapp/resources/worker/_workRelationships.zul:31 +#: libreplan-webapp/src/main/webapp/resources/worker/_listVirtualWorkers.zul:37 +#: libreplan-webapp/src/main/webapp/resources/worker/_list.zul:40 +#: libreplan-webapp/src/main/webapp/resources/_criterions.zul:58 +#: libreplan-webapp/src/main/webapp/resources/_costCategoryAssignment.zul:42 +#: libreplan-webapp/src/main/webapp/resources/machine/_listMachines.zul:39 +#: libreplan-webapp/src/main/webapp/resources/machine/_machineConfigurationUnits.zul:41 +#: libreplan-webapp/src/main/webapp/resources/machine/_machineConfigurationUnits.zul:70 +#: libreplan-webapp/src/main/webapp/resources/machine/_machineConfigurationUnits.zul:131 +#: libreplan-webapp/src/main/webapp/resources/criterions/_criterionsTree.zul:48 +#: libreplan-webapp/src/main/webapp/resources/criterions/_workers.zul:26 +#: libreplan-webapp/src/main/webapp/resources/criterions/_list.zul:29 +#: libreplan-webapp/src/main/webapp/reports/schedulingProgressPerOrderReport.zul:123 +#: libreplan-webapp/src/main/webapp/reports/projectStatusReport.zul:89 +#: libreplan-webapp/src/main/webapp/reports/projectStatusReport.zul:131 +#: libreplan-webapp/src/main/webapp/reports/workingProgressPerTaskReport.zul:97 +#: libreplan-webapp/src/main/webapp/reports/workingProgressPerTaskReport.zul:138 +#: libreplan-webapp/src/main/webapp/reports/workingArrangementsPerOrderReport.zul:110 +#: libreplan-webapp/src/main/webapp/reports/workingArrangementsPerOrderReport.zul:154 +#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:97 +#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:138 +#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:180 +#: libreplan-webapp/src/main/webapp/reports/orderCostsPerResource.zul:103 +#: libreplan-webapp/src/main/webapp/reports/orderCostsPerResource.zul:150 +#: libreplan-webapp/src/main/webapp/reports/orderCostsPerResource.zul:193 +#: libreplan-webapp/src/main/webapp/reports/timeLineMaterialReport.zul:101 +#: libreplan-webapp/src/main/webapp/reports/completedEstimatedHoursPerTask.zul:101 +#: libreplan-webapp/src/main/webapp/reports/completedEstimatedHoursPerTask.zul:144 +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelSubcontract.zul:115 +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelSubcontract.zul:132 +msgid "Operations" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/costcategories/entities/HourCost.java:95 -#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/CriterionSatisfaction.java:183 -msgid "start date not specified" +#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/TaskQualityForm.java:112 +#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/TaskQualityForm.java:112 +msgid "items cannot be checked until the previous items are checked before." msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_editOrderElement.zul:100 -#: libreplan-webapp/src/main/webapp/templates/_editTemplateWindow.zul:81 -#: libreplan-webapp/src/main/webapp/planner/order.zul:69 -#: libreplan-webapp/src/main/webapp/planner/montecarlo_function.zul:70 -msgid "Back" +#: org/libreplan/web/limitingresources/QueueComponent.java:223 +msgid "Task: {0}" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReport.java:273 -msgid "description value: the timesheet has some description field missing" +#: libreplan-webapp/src/main/webapp/orders/_edition.zul:145 +#: libreplan-webapp/src/main/webapp/orders/_projectDetails.zul:64 +#: libreplan-webapp/src/main/webapp/orders/_list.zul:31 +#: libreplan-webapp/src/main/webapp/orders/_orderElementDetails.zul:45 +#: libreplan-webapp/src/main/webapp/resources/worker/_workRelationships.zul:28 +#: libreplan-webapp/src/main/webapp/resources/worker/_localizations.zul:33 +#: libreplan-webapp/src/main/webapp/resources/worker/_localizations.zul:69 +#: libreplan-webapp/src/main/webapp/resources/worker/_editWorkRelationship.zul:25 +#: libreplan-webapp/src/main/webapp/resources/_criterions.zul:50 +#: libreplan-webapp/src/main/webapp/reports/schedulingProgressPerOrderReport.zul:53 +msgid "Starting date" msgstr "" -#: org/libreplan/web/planner/adaptplanning/AdaptPlanningCommand.java:60 -msgid "Adapt planning according to timesheets" +#: libreplan-webapp/src/main/webapp/planner/advance_allocation.zul:44 +#: libreplan-webapp/src/main/webapp/planner/advance_allocation.zul:52 +msgid "Apply" msgstr "" -#: org/libreplan/web/importers/ProjectImportController.java:107 -#: org/libreplan/web/importers/ProjectImportController.java:123 -msgid "Instance not found." +#: libreplan-webapp/src/main/webapp/externalcompanies/_editExternalCompany.zul:40 +msgid "Company name" msgstr "" -#: libreplan-webapp/src/main/webapp/common/concurrentModification.zul:30 -msgid "Another user has modified the same data, so the operation cannot be safely completed." +#: libreplan-webapp/src/main/webapp/resources/worker/_calendar.zul:49 +#: libreplan-webapp/src/main/webapp/resources/machine/_calendar.zul:40 +msgid "Edit Calendar" msgstr "" -#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:204 -msgid "Exceptions list" +#: libreplan-webapp/src/main/webapp/common/configuration.zul:355 +msgid "Port" msgstr "" -#: libreplan-webapp/src/main/webapp/common/layout/login.zul:64 -msgid "Help on authentication (opens a new window)" +#: libreplan-webapp/src/main/webapp/email/email_templates.zul:114 +msgid "Name of task" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementFiles.zul:39 -msgid "Upload date" +#: org/libreplan/web/orders/OrderCRUDController.java:1055 +msgid "" +"This project is a subcontracted project. If you delete it, you won't be able " +"to report progress anymore. Are you sure?" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/advance/entities/AdvanceType.java:235 -msgid "default maximum value of percentage progress type must be 100" +#: org/libreplan/web/dashboard/DashboardController.java:274 +msgid " (%d tasks)" msgstr "" -#: libreplan-webapp/src/main/webapp/limitingresources/limitingResourcesLayout.zul:148 -msgid "Resource / Criteria" +#: org/libreplan/web/scenarios/TransferOrdersModel.java:170 +msgid "Project version is the same in source and destination scenarios" msgstr "" -#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:197 -msgid "Update exception" +#: libreplan-webapp/src/main/webapp/resources/machine/_editMachine.zul:30 +msgid "Machine data" msgstr "" -#: org/libreplan/web/logs/IssueLogCRUDController.java:277 -msgid "Medium" +#: org/libreplan/web/orders/OrderModel.java:753 +#: org/libreplan/web/planner/TaskElementAdapter.java:852 +#: libreplan-webapp/src/main/webapp/dashboard/_costStatus.zul:38 +msgid "Hours invested" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/components/_listOrderElementLabels.zul:51 -msgid "Direct labels" +#: libreplan-webapp/src/main/webapp/resources/worker/_localizations.zul:26 +msgid "Assigned locations" msgstr "" -#: libreplan-webapp/src/main/webapp/resources/machine/_machineConfigurationUnits.zul:35 -msgid "Configuration unit name" +#: libreplan-webapp/src/main/webapp/resources/worker/_edition.zul:149 +msgid "Go to edit user window" msgstr "" -#: org/libreplan/web/resources/worker/WorkerCRUDController.java:853 -msgid "Queue-based resource" +#: org/libreplan/web/planner/chart/EarnedValueChartFiller.java:246 +msgid "Actual Cost Work Performed" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_jiraSyncInfo.zul:24 -msgid "Synchronization order elements with JIRA issues was successful" +#: libreplan-webapp/src/main/webapp/planner/print_configuration.zul:22 +#: libreplan-webapp/src/main/webapp/planner/print_configuration.zul:26 +msgid "Print configuration" msgstr "" -#: libreplan-webapp/src/main/webapp/scenarios/_list.zul:22 -msgid "Scenarios List" +#: org/libreplan/web/planner/company/CompanyPlanningModel.java:442 +#: org/libreplan/web/planner/order/OrderPlanningModel.java:520 +msgid "Select date" msgstr "" -#: libreplan-webapp/src/main/webapp/common/configuration.zul:43 -msgid "Main preferences" +#: libreplan-webapp/src/main/webapp/materials/materials.zul:76 +#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:167 +msgid "New" msgstr "" -#: org/libreplan/web/planner/allocation/AdvancedAllocationController.java:1626 -msgid "Confirm change" +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelSubcontract.zul:27 +msgid "External company" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAuthorizations.zul:51 -msgid "Users authorization" +#: libreplan-business/src/main/java/org/libreplan/business/advance/entities/DirectAdvanceAssignment.java:224 +#: libreplan-business/src/main/java/org/libreplan/business/advance/entities/DirectAdvanceAssignment.java:224 +msgid "maximum value of percentagee progress type must be 100" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/CriterionType.java:457 -msgid "criterion type does not allow hierarchy" +#: libreplan-webapp/src/main/webapp/resources/machine/_machineConfigurationUnits.zul:100 +msgid "Criterion requirements" msgstr "" -#: libreplan-webapp/src/main/webapp/common/configuration.zul:235 -msgid "Perspectives" +#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:267 +msgid "Work weeks list" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/advance/entities/AdvanceType.java:224 -msgid "progress type marked as quality form but is updatable" +#: libreplan-webapp/src/main/webapp/reports/schedulingProgressPerOrderReport.zul:143 +#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerInAMonthReport.zul:65 +#: libreplan-webapp/src/main/webapp/reports/projectStatusReport.zul:152 +#: libreplan-webapp/src/main/webapp/reports/workingProgressPerTaskReport.zul:157 +#: libreplan-webapp/src/main/webapp/reports/workingArrangementsPerOrderReport.zul:173 +#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:200 +#: libreplan-webapp/src/main/webapp/reports/orderCostsPerResource.zul:212 +#: libreplan-webapp/src/main/webapp/reports/timeLineMaterialReport.zul:145 +#: libreplan-webapp/src/main/webapp/reports/completedEstimatedHoursPerTask.zul:164 +msgid "Format" msgstr "" -#: org/libreplan/web/planner/TaskElementAdapter.java:1241 -msgid ". Already spent: {0}" +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelSubcontract.zul:78 +msgid "Node without children" msgstr "" -#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:115 -msgid "Allowed Special Characters" +#: libreplan-webapp/src/main/webapp/orders/_jiraSyncInfo.zul:39 +#: libreplan-webapp/src/main/webapp/orders/_timImpExpInfo.zul:29 +#: libreplan-webapp/src/main/webapp/orders/_synchronizationInfo.zul:26 +#: libreplan-webapp/src/main/webapp/workreports/_editWorkReportType.zul:202 +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelLimitingResourceAllocation.zul:91 +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelNonLimitingResourceAllocation.zul:143 +msgid "Close" msgstr "" -#: libreplan-webapp/src/main/webapp/common/components/schedulingStateToggler.zul:33 -msgid "Unschedule" +#: org/libreplan/web/users/settings/SettingsController.java:182 +msgid "Resources load since should be lower than resources load to" msgstr "" -#: org/libreplan/web/resources/worker/WorkerCRUDController.java:997 -#: org/libreplan/web/resources/machine/MachineCRUDController.java:563 -msgid "no" +#: libreplan-webapp/src/main/webapp/orders/_edition.zul:336 +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelSubcontract.zul:112 +msgid "Save date" msgstr "" -#: org/libreplan/web/limitingresources/QueueComponent.java:506 -msgid "Move" +#: org/libreplan/web/calendars/BaseCalendarEditionController.java:665 +msgid "Inh" msgstr "" -#: libreplan-webapp/src/main/webapp/excetiondays/_editExceptionDayType.zul:73 -msgid "Own exception" +#: org/libreplan/web/planner/chart/EarnedValueChartFiller.java:246 +msgid "ACWP" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/Criterion.java:419 -msgid "a disabled resource has enabled subresources" +#: libreplan-webapp/src/main/webapp/orders/components/_listOrderElementMaterials.zul:66 +msgid "Add materials" msgstr "" -#: org/libreplan/web/common/CustomMenuController.java:361 -#: org/libreplan/web/advance/AdvanceTypeCRUDController.java:215 -msgid "Progress Types" +#: org/libreplan/web/orders/OrderCRUDController.java:1645 +msgid "Regular project" msgstr "" -#: libreplan-webapp/src/main/webapp/scenarios/scenarios.zul:23 -msgid "LibrePlan: Scenarios Management" +#: libreplan-webapp/src/main/webapp/email/email_templates.zul:21 +msgid "LibrePlan: Email Templates" msgstr "" -#: libreplan-webapp/src/main/webapp/templates/_historicalStatistics.zul:55 -msgid "Maximum/minimum of estimated hours" +#: org/libreplan/web/resources/worker/AssignedCriterionsModel.java:333 +#: org/libreplan/web/resources/machine/AssignedMachineCriterionsModel.java:398 +msgid "" +"The {0} can not be assigned to this resource. Its interval overlaps with " +"other criterion" msgstr "" -#: libreplan-webapp/src/main/webapp/resources/search/allocation_selector.zul:49 -msgid "Load ratios calculated between" +#: org/libreplan/web/reports/HoursWorkedPerWorkerController.java:194 +msgid "This resource has already been added." msgstr "" -#: libreplan-webapp/src/main/webapp/templates/_listTemplates.zul:21 -msgid "Templates List" +#: org/libreplan/web/dashboard/DashboardController.java:248 +msgid "Estimation deviation on completed tasks" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementCriterionRequirements.zul:160 -msgid "Hours group" +#: libreplan-webapp/src/main/webapp/orders/components/_timOrderTimesheetSync.zul:45 +msgid "Export to Tim" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/components/_orderElementTree.zul:74 -msgid "Unindent selected task" +#: org/libreplan/web/common/CustomMenuController.java:560 +msgid "Reports" msgstr "" -#: org/libreplan/web/montecarlo/MonteCarloController.java:172 -msgid "Percentages should sum 100" +#: org/libreplan/web/common/BaseCRUDController.java:85 +msgid "{0} List" msgstr "" -#: org/libreplan/web/dashboard/DashboardController.java:185 -msgid "Violated deadline" +#: org/libreplan/web/templates/TemplatesTree.java:43 +#: org/libreplan/web/templates/TemplatesTree.java:51 +msgid "New Description" msgstr "" -#: libreplan-webapp/src/main/webapp/common/configuration.zul:249 -msgid "calculate based on task criteria and cost categories" +#: libreplan-business/src/main/java/org/libreplan/business/costcategories/entities/HourCost.java:112 +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportLine.java:242 +#: libreplan-business/src/main/java/org/libreplan/business/costcategories/entities/HourCost.java:112 +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportLine.java:242 +msgid "type of work hours not specified" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/components/_orderElementTree.zul:44 -msgid "Add From Template" +#: libreplan-business/src/main/java/org/libreplan/business/advance/entities/AdvanceType.java:274 +#: libreplan-business/src/main/java/org/libreplan/business/advance/entities/AdvanceType.java:274 +msgid "default maximum value must be greater than precision value" msgstr "" -#: libreplan-webapp/src/main/webapp/qualityforms/qualityForms.zul:22 -msgid "LibrePlan: Quality Forms" +#: libreplan-webapp/src/main/webapp/users/_editUser.zul:62 +#: libreplan-webapp/src/main/webapp/myaccount/settings.zul:69 +#: libreplan-webapp/src/main/webapp/resources/worker/_edition.zul:82 +msgid "Last name" msgstr "" -#: org/libreplan/importers/ExportTimesheetsToTim.java:185 -msgid "No work reportlines are found for order: \"{0}\"" +#: libreplan-business/src/main/java/org/libreplan/business/externalcompanies/entities/ExternalCompany.java:148 +#: libreplan-business/src/main/java/org/libreplan/business/externalcompanies/entities/ExternalCompany.java:148 +msgid "company name must be unique. Company name already used" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_edition.zul:294 -msgid "Delivery dates requested by customer. " +#: org/libreplan/web/planner/allocation/FormBinder.java:339 +msgid "" +"The original workable days value {0} cannot be modified as it has " +"consolidations" msgstr "" -#: org/libreplan/web/dashboard/GlobalProgressChart.java:122 -msgid "Project progress percentage" +#: org/libreplan/web/planner/allocation/AllocationRow.java:837 +msgid "Periods available depend on resources' calendar." msgstr "" -#: libreplan-webapp/src/main/webapp/workreports/_editWorkReportType.zul:133 -msgid "Add New Complementary Field" +#: org/libreplan/web/planner/tabs/MultipleTabsPlannerController.java:213 +msgid "changing perspective" msgstr "" -#: org/libreplan/web/costcategories/CostCategoryCRUDController.java:147 -#: org/libreplan/web/workreports/WorkReportCRUDController.java:472 -msgid "" -"Hours types are empty. Please, create some hours types before proceeding" +#: org/libreplan/web/users/dashboard/PersonalTimesheetController.java:608 +#: libreplan-webapp/src/main/webapp/myaccount/userDashboard.zul:35 +msgid "My dashboard" msgstr "" -#: libreplan-webapp/src/main/webapp/resourceload/resourceload.zul:22 -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelLimitingResourceAllocation.zul:22 -#: libreplan-webapp/src/main/webapp/planner/main.zul:22 -#: libreplan-webapp/src/main/webapp/planner/order.zul:22 -#: libreplan-webapp/src/main/webapp/planner/montecarlo_function.zul:22 -#: libreplan-webapp/src/main/webapp/planner/resources_use.zul:22 -#: libreplan-webapp/src/main/webapp/planner/stretches_function.zul:22 -msgid "LibrePlan: Scheduling" +#: org/libreplan/web/planner/chart/EarnedValueChartFiller.java:248 +msgid "CV" msgstr "" -#: libreplan-webapp/src/main/webapp/myaccount/settings.zul:84 -msgid "Application settings" +#: org/libreplan/web/materials/UnitTypeController.java:131 +msgid "" +"The meausure name is not valid. There is another unit type with the same " +"measure name" msgstr "" -#: libreplan-webapp/src/main/webapp/montecarlo/_montecarlo.zul:91 -msgid "Group by weeks" +#: org/libreplan/web/reports/SchedulingProgressPerOrderController.java:169 +#: org/libreplan/web/reports/SchedulingProgressPerOrderController.java:195 +msgid "SPREAD" msgstr "" -#: org/libreplan/importers/ExportTimesheetsToTim.java:99 -msgid "Export" +#: org/libreplan/web/workreports/WorkReportQueryController.java:372 +#: libreplan-webapp/src/main/webapp/orders/_edition.zul:233 +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementHours.zul:67 +msgid "Total hours" msgstr "" -#: libreplan-webapp/src/main/webapp/myaccount/settings.zul:141 -msgid "Show reported hours" +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/Machine.java:97 +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/Machine.java:97 +msgid "machine name not specified" msgstr "" -#: org/libreplan/importers/JiraOrderElementSynchronizer.java:105 -#: org/libreplan/importers/JiraOrderElementSynchronizer.java:127 -#: org/libreplan/importers/JiraOrderElementSynchronizer.java:507 -#: org/libreplan/importers/JiraTimesheetSynchronizer.java:300 -msgid "JIRA connector not found" +#: org/libreplan/web/users/dashboard/PersonalTimesheetController.java:424 +#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:72 +#: libreplan-webapp/src/main/webapp/resources/worker/_listVirtualWorkers.zul:35 +msgid "Capacity" msgstr "" -#: org/libreplan/web/planner/chart/EarnedValueChartFiller.java:247 -msgid "Budgeted Cost Work Performed" +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReport.java:273 +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReport.java:273 +msgid "description value: the timesheet has some description field missing" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportType.java:387 -msgid "In the lines part, index labels and fields must be unique and consecutive" +#: org/libreplan/web/limitingresources/QueueComponent.java:493 +msgid "Invalid queue element" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/_legendLoadChartCompany.zul:34 -msgid "Load 100%" +#: org/libreplan/web/calendars/BaseCalendarCRUDController.java:453 +#: org/libreplan/web/common/BaseCRUDController.java:131 +#: org/libreplan/web/resources/worker/WorkerCRUDController.java:1023 +msgid "Create {0}: {1}" msgstr "" -#: org/libreplan/web/labels/LabelTypeCRUDController.java:289 -msgid "Label Type" +#: libreplan-business/src/main/java/org/libreplan/business/users/entities/User.java:263 +#: libreplan-business/src/main/java/org/libreplan/business/users/entities/User.java:263 +msgid "username is already being used by another user" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportType.java:381 -msgid "In the heading part, index labels and fields must be unique and consecutive" +#: org/libreplan/web/resources/search/NewAllocationSelectorController.java:722 +msgid "Start filtering date must be before than end filtering date" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/costcategories/entities/HourCost.java:152 -msgid "The end date cannot be before the start date" +#: libreplan-webapp/src/main/webapp/orders/_list.zul:36 +msgid "Planned Budget" msgstr "" -#: org/libreplan/web/resources/worker/WorkerCRUDController.java:854 -msgid "Normal resource" +#: org/libreplan/web/workreports/WorkReportCRUDController.java:486 +msgid "cannot be empty." msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_orderElementTreeFilter.zul:36 -msgid "Set Filter Options" +#: libreplan-business/src/main/java/org/libreplan/business/planner/entities/SubcontractorCommunicationValue.java:73 +#: libreplan-business/src/main/java/org/libreplan/business/planner/entities/SubcontractorCommunicationValue.java:73 +msgid "progress should be greater than 0% and less than 100%" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_edition.zul:322 -msgid "New end date for the customer" +#: org/libreplan/web/orders/AssignedTaskQualityFormsToOrderElementController.java:363 +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAdvances.zul:51 +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAdvances.zul:81 +#: libreplan-webapp/src/main/webapp/advance/_editAdvanceTypes.zul:74 +#: libreplan-webapp/src/main/webapp/qualityforms/_editQualityForm.zul:86 +#: libreplan-webapp/src/main/webapp/planner/order.zul:105 +msgid "Percentage" msgstr "" -#: org/libreplan/web/reports/OrderCostsPerResourceModel.java:159 -#: org/libreplan/web/reports/OrderCostsPerResourceModel.java:262 -msgid "All projects" +#: libreplan-business/src/main/java/org/libreplan/business/advance/entities/AdvanceType.java:215 +#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/TaskQualityForm.java:80 +#: libreplan-business/src/main/java/org/libreplan/business/advance/entities/AdvanceType.java:215 +#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/TaskQualityForm.java:80 +msgid "quality form not specified" msgstr "" -#: org/libreplan/web/orders/OrderCRUDController.java:1381 -msgid "Create Template" +#: org/libreplan/web/calendars/BaseCalendarEditionController.java:595 +#: org/libreplan/web/calendars/BaseCalendarEditionController.java:1163 +msgid "Please, select an End Date for the Exception" msgstr "" -#: libreplan-webapp/src/main/webapp/dashboard/_dashboardfororder.zul:90 -msgid "Resources usage" +#: org/libreplan/web/users/dashboard/UserDashboardController.java:64 +msgid "Personal timesheet \"{0}\" saved" msgstr "" -#: org/libreplan/web/orders/OrderCRUDController.java:447 -msgid "Backwards" +#: libreplan-business/src/main/java/org/libreplan/business/common/entities/EntitySequence.java:101 +#: libreplan-business/src/main/java/org/libreplan/business/common/entities/EntitySequence.java:101 +msgid "last value not specified" msgstr "" -#: org/libreplan/web/calendars/BaseCalendarModel.java:488 -#: org/libreplan/web/calendars/BaseCalendarModel.java:520 -msgid "This date cannot be empty" +#: org/libreplan/web/orders/OrdersTreeComponent.java:76 +#: org/libreplan/web/templates/TemplatesTreeComponent.java:85 +#: libreplan-webapp/src/main/webapp/orders/_edition.zul:182 +#: libreplan-webapp/src/main/webapp/orders/_edition.zul:193 +#: libreplan-webapp/src/main/webapp/orders/_orderElementDetails.zul:67 +#: libreplan-webapp/src/main/webapp/templates/_editTemplate.zul:111 +#: libreplan-webapp/src/main/webapp/subcontract/subcontractedTasks.zul:54 +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelTaskProperties.zul:63 +msgid "Budget" msgstr "" -#: libreplan-webapp/src/main/webapp/myaccount/settings.zul:144 -#: libreplan-webapp/src/main/webapp/planner/print_configuration.zul:31 -msgid "Show labels" +#: libreplan-webapp/src/main/webapp/externalcompanies/_editExternalCompany.zul:28 +msgid "Company data" msgstr "" -#: libreplan-webapp/src/main/webapp/limitingresources/limitingResourcesLayout.zul:126 -msgid "Assign selected items" +#: org/libreplan/web/orders/OrderElementTreeController.java:697 +#: org/libreplan/web/common/CustomMenuController.java:357 +#: org/libreplan/web/reports/ProjectStatusReportController.java:179 +#: org/libreplan/web/resourceload/ResourceLoadController.java:553 +#: libreplan-webapp/src/main/webapp/common/configuration.zul:166 +#: libreplan-webapp/src/main/webapp/limitingresources/manualAllocation.zul:36 +#: libreplan-webapp/src/main/webapp/resources/search/allocation_selector.zul:40 +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_taskInformation.zul:32 +msgid "Criteria" msgstr "" -#: libreplan-webapp/src/main/webapp/logs/_listIssueLog.zul:30 -#: libreplan-webapp/src/main/webapp/logs/_editIssueLog.zul:115 -msgid "Severity" +#: libreplan-business/src/main/java/org/libreplan/business/requirements/entities/CriterionRequirement.java:68 +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/CriterionSatisfaction.java:196 +#: libreplan-business/src/main/java/org/libreplan/business/requirements/entities/CriterionRequirement.java:68 +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/CriterionSatisfaction.java:196 +msgid "criterion not specified" msgstr "" -#: org/libreplan/web/common/IntegrationEntityModel.java:79 -msgid "Could not retrieve Code. Please, try again later" +#: libreplan-webapp/src/main/webapp/resources/machine/_machineConfigurationUnits.zul:152 +msgid "must be a real positive number" msgstr "" -#: libreplan-webapp/src/main/webapp/resources/criterions/_workers.zul:41 -msgid "Administration" +#: libreplan-webapp/src/main/webapp/common/layout/template.zul:148 +msgid "The admin's account password remains the default one. This is insecure" msgstr "" -#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:124 -msgid "Any" +#: org/libreplan/web/users/ProfileCRUDController.java:128 +#: org/libreplan/web/common/CustomMenuController.java:451 +msgid "Profiles" msgstr "" -#: org/libreplan/web/importers/ProjectImportController.java:121 -msgid ": Import successfully!" +#: org/libreplan/web/logs/IssueLogCRUDController.java:271 +msgid "Critical" msgstr "" -#: libreplan-webapp/src/main/webapp/common/eventError.zul:44 -#: libreplan-webapp/src/main/webapp/common/error.zul:49 -msgid "Status code" +#: libreplan-webapp/src/main/webapp/resources/machine/_machineConfigurationUnits.zul:35 +msgid "Configuration unit name" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/common/entities/Configuration.java:169 -msgid "host not specified" +#: libreplan-webapp/src/main/webapp/workreports/_sortFieldsAndLabels.zul:27 +msgid "Heading" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelNonLimitingResourceAllocation.zul:115 -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelNonLimitingResourceAllocation.zul:123 -msgid "Non Consolidated" +#: org/libreplan/web/scenarios/ScenarioModel.java:117 +msgid "You cannot remove the default scenario \"{0}\"" msgstr "" -#: org/libreplan/web/planner/tabs/PlanningTabCreator.java:240 -#: org/libreplan/web/planner/tabs/PlanningTabCreator.java:257 -msgid "Project Scheduling" +#: org/libreplan/web/resources/worker/WorkerCRUDController.java:1012 +msgid "Virtual Workers Group" msgstr "" -#: libreplan-webapp/src/main/webapp/typeofworkhours/_listTypesOfWorkHours.zul:22 -msgid "Work Hours Types List" +#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:280 +msgid "Valid until" msgstr "" -#: org/libreplan/web/dashboard/DashboardController.java:184 -msgid "On schedule" +#: org/libreplan/web/users/dashboard/PersonalTimesheetController.java:215 +#: org/libreplan/web/users/dashboard/PersonalTimesheetController.java:283 +#: org/libreplan/web/common/EffortDurationBox.java:49 +msgid "Invalid Effort Duration" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/calendars/entities/BaseCalendar.java:1209 -msgid "calendars with zero hours are not allowed" +#: libreplan-webapp/src/main/webapp/email/email_templates.zul:104 +msgid "Name of project" msgstr "" -#: org/libreplan/web/common/components/finders/TaskGroupFilterEnum.java:31 -#: org/libreplan/web/common/components/finders/OrderFilterEnum.java:31 -#: org/libreplan/web/planner/TaskElementAdapter.java:860 -#: libreplan-webapp/src/main/webapp/orders/_edition.zul:122 -#: libreplan-webapp/src/main/webapp/orders/_list.zul:38 -#: libreplan-webapp/src/main/webapp/subcontract/subcontractedTasks.zul:56 -#: libreplan-webapp/src/main/webapp/subcontract/reportAdvances.zul:51 -msgid "State" +#: org/libreplan/web/users/dashboard/PersonalTimesheetController.java:664 +#: org/libreplan/web/common/components/finders/OrderElementBandboxFinder.java:51 +#: org/libreplan/web/planner/order/SaveCommandBuilder.java:1008 +#: libreplan-webapp/src/main/webapp/orders/_orderFilter.zul:23 +#: libreplan-webapp/src/main/webapp/logs/_editRiskLog.zul:35 +#: libreplan-webapp/src/main/webapp/logs/_editIssueLog.zul:34 +#: libreplan-webapp/src/main/webapp/myaccount/_myTasksArea.zul:33 +#: libreplan-webapp/src/main/webapp/limitingresources/limitingResourcesLayout.zul:144 +#: libreplan-webapp/src/main/webapp/reports/projectStatusReport.zul:42 +#: libreplan-webapp/src/main/webapp/reports/projectStatusReport.zul:55 +#: libreplan-webapp/src/main/webapp/reports/workingProgressPerTaskReport.zul:64 +#: libreplan-webapp/src/main/webapp/reports/workingArrangementsPerOrderReport.zul:47 +msgid "Project" msgstr "" -#: libreplan-webapp/src/main/webapp/subcontract/customerCommunications.zul:63 -#: libreplan-webapp/src/main/webapp/subcontract/subcontractorCommunications.zul:78 -msgid "Reviewed" +#: libreplan-webapp/src/main/webapp/subcontract/subcontractedTasks.zul:52 +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelSubcontract.zul:71 +msgid "Subcontracting code" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/print_configuration.zul:33 -msgid "Show resource assignments" +#: org/libreplan/web/advance/AdvanceTypeCRUDController.java:91 +msgid "Invalid value. Default Max Value cannot be empty" msgstr "" -#: libreplan-webapp/src/main/webapp/resources/search/allocation_selector.zul:111 -msgid "Overtime" +#: libreplan-webapp/src/main/webapp/common/configuration.zul:306 +msgid "Entity type" msgstr "" -#: libreplan-webapp/src/main/webapp/common/configuration.zul:266 -msgid "Local document repository location" +#: libreplan-webapp/src/main/webapp/montecarlo/_montecarlo.zul:96 +msgid "Number of iterations" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportLine.java:416 -msgid "Number of hours is not properly calculated according to start date and end date" +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportLabelTypeAssignment.java:41 +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportLabelTypeAssignment.java:41 +msgid "default label not specified" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/components/_listOrderElementLabels.zul:30 -msgid "Inherited labels" +#: org/libreplan/web/limitingresources/LimitingResourcesController.java:481 +msgid "Assign element to queue automatically" msgstr "" -#: org/libreplan/importers/ExportTimesheetsToTim.java:162 -msgid "Export product code {0}, project {1}" +#: libreplan-webapp/src/main/webapp/subcontract/subcontractorCommunications.zul:20 +msgid "LibrePlan: Received From Subcontractors" msgstr "" -#: org/libreplan/web/planner/allocation/AllocationRow.java:829 -msgid "In the available periods {0} only {1} hours are available." +#: org/libreplan/web/common/CustomMenuController.java:384 +#: org/libreplan/web/qualityforms/QualityFormCRUDController.java:295 +#: libreplan-webapp/src/main/webapp/templates/_editTemplate.zul:72 +#: libreplan-webapp/src/main/webapp/templates/_editTemplateWindow.zul:54 +msgid "Quality Forms" msgstr "" -#: org/libreplan/web/orders/OrderElementTreeController.java:681 -#: org/libreplan/web/orders/OrderModel.java:761 -#: org/libreplan/web/templates/TemplatesTreeController.java:194 -#: org/libreplan/web/common/CustomMenuController.java:365 -#: org/libreplan/web/reports/ProjectStatusReportController.java:167 -#: org/libreplan/web/planner/TaskElementAdapter.java:883 -#: libreplan-webapp/src/main/webapp/orders/_editOrderElement.zul:53 -#: libreplan-webapp/src/main/webapp/orders/_edition.zul:64 -#: libreplan-webapp/src/main/webapp/templates/_editTemplate.zul:69 -#: libreplan-webapp/src/main/webapp/templates/_editTemplateWindow.zul:51 -#: libreplan-webapp/src/main/webapp/common/configuration.zul:170 -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelSubcontract.zul:81 -msgid "Labels" +#: libreplan-webapp/src/main/webapp/orders/components/_listOrderElementLabels.zul:30 +msgid "Inherited labels" msgstr "" -#: libreplan-webapp/src/main/webapp/common/configuration.zul:462 -msgid "(If it is empty, a node strategy is used)" +#: org/libreplan/web/orders/OrdersTreeComponent.java:69 +#: org/libreplan/web/templates/TemplatesTreeComponent.java:78 +#: org/libreplan/web/common/components/EffortDurationPicker.java:62 +#: org/libreplan/web/workreports/WorkReportCRUDController.java:882 +#: libreplan-webapp/src/main/webapp/orders/components/_orderElementTree.zul:38 +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementHours.zul:34 +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementCriterionRequirements.zul:170 +#: libreplan-webapp/src/main/webapp/orders/_list.zul:37 +#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:133 +#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:189 +#: libreplan-webapp/src/main/webapp/limitingresources/manualAllocation.zul:37 +#: libreplan-webapp/src/main/webapp/workreports/workReportQuery.zul:127 +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelLimitingResourceAllocation.zul:77 +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelTaskProperties.zul:55 +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelNonLimitingResourceAllocation.zul:92 +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_taskInformation.zul:34 +#: libreplan-webapp/src/main/webapp/planner/stretches_function.zul:80 +#: libreplan-webapp/src/main/webapp/planner/stretches_function.zul:89 +msgid "Hours" msgstr "" -#: org/libreplan/web/calendars/BaseCalendarEditionController.java:557 -msgid "Exception: {0} (Inh)" +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/Criterion.java:293 +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/Criterion.java:293 +msgid "criterion name not specified" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/materials/entities/MaterialCategory.java:223 -msgid "Subcategory names must be unique." +#: libreplan-business/src/main/java/org/libreplan/business/workreports/valueobjects/DescriptionField.java:81 +#: libreplan-business/src/main/java/org/libreplan/business/workreports/valueobjects/DescriptionField.java:81 +msgid "length not specified" msgstr "" -#: libreplan-webapp/src/main/webapp/myaccount/settings.zul:135 -msgid "Show resources" +#: libreplan-business/src/main/java/org/libreplan/business/common/IntegrationEntity.java:106 +#: libreplan-business/src/main/java/org/libreplan/business/common/IntegrationEntity.java:106 +msgid "code is already used" msgstr "" -#: libreplan-webapp/src/main/webapp/calendars/_list.zul:29 -msgid "Inherits from date" +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/Worker.java:252 +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/Worker.java:252 +msgid "Queue-based resources cannot be bound to any user" msgstr "" -#: org/libreplan/web/planner/allocation/AllocationRow.java:844 -msgid "Resources per day are zero" +#: org/libreplan/web/costcategories/ResourcesCostCategoryAssignmentController.java:108 +msgid "A category must be selected" msgstr "" -#: org/libreplan/web/tree/TreeController.java:1143 -msgid "Value is not valid in current list of Hours Group" +#: libreplan-webapp/src/main/webapp/resources/worker/_workRelationships.zul:53 +msgid "New entry" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/fileupload.zul:51 -msgid "Please select a file on your system" +#: org/libreplan/web/dashboard/CostStatusController.java:115 +#: org/libreplan/web/users/dashboard/MyTasksAreaController.java:73 +#: org/libreplan/web/users/dashboard/MyTasksAreaController.java:74 +msgid "{0} h" msgstr "" -#: libreplan-webapp/src/main/webapp/montecarlo/_montecarlo.zul:50 -msgid "Duration" +#: libreplan-webapp/src/main/webapp/common/configuration.zul:156 +msgid "Generate code for" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/Resource.java:1175 -msgid "You have exceeded the maximum limit of resources" +#: libreplan-webapp/src/main/webapp/materials/materials.zul:43 +#: libreplan-webapp/src/main/webapp/orders/components/_listOrderElementMaterials.zul:43 +#: libreplan-webapp/src/main/webapp/orders/components/_listOrderElementMaterials.zul:82 +#: libreplan-webapp/src/main/webapp/logs/_editIssueLog.zul:99 +msgid "Categories" msgstr "" -#: org/libreplan/web/workreports/WorkReportCRUDController.java:1511 -msgid "must be later than start date" +#: libreplan-webapp/src/main/webapp/common/accessForbidden.zul:20 +msgid "LibrePlan: Access Forbidden" msgstr "" -#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:1093 -msgid "This progress type cannot cannot be removed" +#: libreplan-webapp/src/main/webapp/planner/_legendLoadChartOrder.zul:47 +msgid "Load due to current project" msgstr "" -#: libreplan-webapp/src/main/webapp/myaccount/settings.zul:182 -msgid "Resources load filtering" +#: libreplan-business/src/main/java/org/libreplan/business/users/entities/Profile.java:89 +#: libreplan-business/src/main/java/org/libreplan/business/users/entities/Profile.java:89 +msgid "profile name is already being used by another profile" msgstr "" -#: org/libreplan/importers/JiraOrderElementSynchronizer.java:517 -#: org/libreplan/importers/JiraTimesheetSynchronizer.java:104 -msgid "Synchronization" +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/CriterionType.java:210 +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/CriterionType.java:210 +msgid "criterion type name not specified" msgstr "" -#: libreplan-webapp/src/main/webapp/resources/criterions/_list.zul:22 -msgid "Criterion Types List" +#: libreplan-webapp/src/main/webapp/orders/_edition.zul:166 +msgid "Dependencies have priority" msgstr "" -#: libreplan-webapp/src/main/webapp/qualityforms/_listQualityForm.zul:26 -msgid "Filter quality forms by" +#: libreplan-webapp/src/main/webapp/orders/components/_jiraOrderElementSync.zul:22 +msgid "JIRA sync information" msgstr "" -#: org/libreplan/web/planner/chart/EarnedValueChartFiller.java:248 -msgid "Cost Variance" +#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:260 +#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:677 +#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:1110 +msgid "" +"Subcontractor values are read only because they were reported by the " +"subcontractor company." msgstr "" -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelSubcontract.zul:76 -msgid "Exportation options" +#: org/libreplan/web/planner/limiting/allocation/LimitingResourceAllocationModel.java:153 +#: org/libreplan/web/planner/allocation/FormBinder.java:655 +msgid "" +"there are no resources for required criteria: {0}. So the generic allocation " +"can't be added" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelNonLimitingResourceAllocation.zul:152 -msgid "Apply tab changes" +#: libreplan-business/src/main/java/org/libreplan/business/common/entities/JobSchedulerConfiguration.java:120 +#: libreplan-business/src/main/java/org/libreplan/business/common/entities/JobSchedulerConfiguration.java:120 +msgid "job group and name are already being used" msgstr "" -#: libreplan-webapp/src/main/webapp/subcontract/reportAdvances.zul:35 -msgid "Communications To Customers" +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/Criterion.java:419 +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/Criterion.java:419 +msgid "a disabled resource has enabled subresources" msgstr "" -#: org/libreplan/web/dashboard/GlobalProgressChart.java:56 -msgid "Expected" +#: org/libreplan/web/costcategories/ResourcesCostCategoryAssignmentController.java:171 +#: org/libreplan/web/costcategories/CostCategoryCRUDController.java:352 +msgid "Start date cannot be empty" msgstr "" -#: org/libreplan/web/orders/OrderElementTreeController.java:703 -#: org/libreplan/web/orders/OrderModel.java:752 -#: org/libreplan/web/planner/TaskElementAdapter.java:846 -#: libreplan-webapp/src/main/webapp/dashboard/_dashboardfororder.zul:66 -#: libreplan-webapp/src/main/webapp/orders/_editOrderElement.zul:50 -#: libreplan-webapp/src/main/webapp/orders/_edition.zul:62 -#: libreplan-webapp/src/main/webapp/templates/_editTemplate.zul:68 -#: libreplan-webapp/src/main/webapp/templates/_editTemplateWindow.zul:50 -#: libreplan-webapp/src/main/webapp/myaccount/_myTasksArea.zul:40 -msgid "Progress" +#: libreplan-webapp/src/main/webapp/resources/worker/_workRelationships.zul:29 +#: libreplan-webapp/src/main/webapp/resources/worker/_localizations.zul:70 +#: libreplan-webapp/src/main/webapp/resources/worker/_editWorkRelationship.zul:26 +#: libreplan-webapp/src/main/webapp/resources/_criterions.zul:53 +#: libreplan-webapp/src/main/webapp/reports/schedulingProgressPerOrderReport.zul:59 +msgid "Ending date" msgstr "" -#: org/libreplan/web/advance/AdvanceTypeCRUDController.java:107 -msgid "The name is not valid, the name must not be null " +#: libreplan-webapp/src/main/webapp/common/layout/login.zul:21 +msgid "LibrePlan: User access" msgstr "" -#: libreplan-webapp/src/main/webapp/qualityforms/_editQualityForm.zul:56 -msgid "Quality form type" +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAuthorizations.zul:42 +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAuthorizations.zul:66 +#: libreplan-webapp/src/main/webapp/users/_editUser.zul:176 +#: libreplan-webapp/src/main/webapp/profiles/_listProfiles.zul:26 +msgid "Profile name" msgstr "" -#: org/libreplan/web/orders/criterionrequirements/AssignedCriterionRequirementModel.java:187 -msgid "New hours group " +#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:1105 +msgid "Values already sent to the customer. Values cannot be changed " msgstr "" -#: org/libreplan/importers/JiraTimesheetSynchronizer.java:135 -msgid "No worklogs found for \"{0}\" key" +#: libreplan-business/src/main/java/org/libreplan/business/common/entities/EntitySequence.java:189 +#: libreplan-business/src/main/java/org/libreplan/business/common/entities/EntitySequence.java:189 +msgid "entity name not specified" msgstr "" -#: org/libreplan/web/planner/reassign/ReassignCommand.java:133 -msgid "Assignments could not be completed" +#: org/libreplan/web/common/components/finders/OrderInExpenseSheetBandboxFinder.java:44 +#: org/libreplan/web/common/components/finders/OrderElementInExpenseSheetBandboxFinder.java:45 +msgid "Project name (Project code)" msgstr "" -#: org/libreplan/web/planner/reassign/ReassignCommand.java:313 -msgid "Reassign" +#: libreplan-webapp/src/main/webapp/users/_editUser.zul:36 +#: libreplan-webapp/src/main/webapp/email/email_templates.zul:44 +msgid "General user data" msgstr "" -#: libreplan-webapp/src/main/webapp/limitingresources/manualAllocation.zul:127 -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelTaskProperties.zul:37 -#: libreplan-webapp/src/main/webapp/planner/main.zul:53 -msgid "Start" +#: libreplan-webapp/src/main/webapp/common/configuration.zul:414 +msgid "UserId" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelSubcontract.zul:27 -msgid "External company" +#: libreplan-business/src/main/java/org/libreplan/business/common/entities/EntitySequence.java:198 +#: libreplan-business/src/main/java/org/libreplan/business/common/entities/EntitySequence.java:198 +msgid "Only one sequence per entity can be active at the same time." msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/CriterionType.java:472 -msgid "resource type does not allow enabled criteria" +#: libreplan-webapp/src/main/webapp/externalcompanies/_listExternalCompanies.zul:29 +#: libreplan-webapp/src/main/webapp/externalcompanies/_editExternalCompany.zul:58 +msgid "Subcontractor" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/advance_allocation.zul:59 -msgid "Zoom level" +#: org/libreplan/web/resources/worker/WorkRelationshipsController.java:159 +msgid "" +"Could not save time period. Time period overlaps with another non-compatible " +"time period" msgstr "" -#: org/libreplan/importers/ImportRosterFromTim.java:372 -msgid "Calendar exception day not found" +#: libreplan-webapp/src/main/webapp/montecarlo/_montecarlo.zul:52 +#: libreplan-webapp/src/main/webapp/montecarlo/_montecarlo.zul:54 +#: libreplan-webapp/src/main/webapp/montecarlo/_montecarlo.zul:56 +msgid "Probability %" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/Worker.java:166 -msgid "ID already used. It has to be be unique" +#: org/libreplan/web/planner/chart/EarnedValueChartFiller.java:248 +msgid "Cost Variance" msgstr "" -#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:74 -msgid "Date Finish" +#: org/libreplan/web/materials/MaterialsController.java:335 +msgid "Cannot insert material in general view. Please, select a category" msgstr "" -#: libreplan-webapp/src/main/webapp/workreports/workReportQuery.zul:70 -#: libreplan-webapp/src/main/webapp/resources/search/_resourceFilter.zul:36 -msgid "More options" +#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/TaskQualityForm.java:165 +#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/QualityForm.java:389 +#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/QualityForm.java:389 +#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/TaskQualityForm.java:165 +msgid "report progress not specified" msgstr "" -#: libreplan-webapp/src/main/webapp/scenarios/transferOrders.zul:44 -msgid "Select source" +#: org/libreplan/web/common/ConfigurationController.java:465 +msgid "Connection successful!" msgstr "" -#: org/libreplan/web/qualityforms/QualityFormCRUDController.java:222 -msgid "percentage should be between 1 and 100" +#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:114 +msgid "Allowed values" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/requirements/entities/IndirectCriterionRequirement.java:77 -msgid "parent not specified" +#: libreplan-webapp/src/main/webapp/myaccount/personalTimesheet.zul:167 +msgid "Effort" msgstr "" -#: org/libreplan/web/common/ConfigurationController.java:1015 -msgid "It can not be deleted. At least one sequence is necessary." +#: org/libreplan/web/logs/IssueLogCRUDController.java:269 +msgid "Significant" msgstr "" -#: org/libreplan/web/importers/ProjectImportController.java:129 -msgid "Select one of the options." +#: org/libreplan/web/tree/TreeComponent.java:58 +#: org/libreplan/web/workreports/WorkReportCRUDController.java:900 +#: libreplan-webapp/src/main/webapp/orders/_assignmentsBox.zul:35 +#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:225 +#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:284 +#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:306 +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelNonLimitingResourceAllocation.zul:99 +#: libreplan-webapp/src/main/webapp/planner/stretches_function.zul:56 +msgid "Op." msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/common/entities/EntitySequence.java:198 -msgid "Only one sequence per entity can be active at the same time." +#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/OrderLine.java:395 +#: libreplan-business/src/main/java/org/libreplan/business/templates/entities/OrderLineTemplate.java:241 +#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/OrderLine.java:395 +#: libreplan-business/src/main/java/org/libreplan/business/templates/entities/OrderLineTemplate.java:241 +msgid "budget not specified" msgstr "" -#: libreplan-webapp/src/main/webapp/common/configuration.zul:324 -msgid "Activation" +#: libreplan-webapp/src/main/webapp/common/configuration.zul:129 +msgid "Autocomplete login form" msgstr "" -#: libreplan-webapp/src/main/webapp/email/email_templates.zul:33 -msgid "Edit E-mail template" +#: libreplan-business/src/main/java/org/libreplan/business/advance/entities/DirectAdvanceAssignment.java:235 +#: libreplan-business/src/main/java/org/libreplan/business/advance/entities/DirectAdvanceAssignment.java:235 +msgid "maximum value must be greater than zero" msgstr "" -#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:1223 -msgid "" -"Date is not valid, it must be later than the last progress consolidation" +#: libreplan-webapp/src/main/webapp/common/configuration.zul:424 +msgid "Save passwords in database" msgstr "" -#: libreplan-webapp/src/main/webapp/reports/orderCostsPerResource.zul:43 -msgid "Select report data" +#: libreplan-webapp/src/main/webapp/myaccount/settings.zul:184 +msgid "Criterion filter" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/planner/entities/TaskMilestone.java:122 -msgid "a milestone cannot have a task associated" +#: org/libreplan/web/expensesheet/ExpenseSheetCRUDController.java:231 +msgid "expense line of the " msgstr "" -#: org/libreplan/web/resources/machine/MachineConfigurationController.java:148 -msgid "Criterion previously selected" +#: org/libreplan/web/users/UserCRUDController.java:98 +#: org/libreplan/web/users/UserCRUDController.java:99 +#: org/libreplan/web/users/UserCRUDController.java:399 +msgid "No" msgstr "" -#: org/libreplan/web/workreports/WorkReportQueryController.java:372 -#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:122 -msgid "Tasks" +#: libreplan-business/src/main/java/org/libreplan/business/scenarios/entities/OrderVersion.java:55 +#: libreplan-business/src/main/java/org/libreplan/business/scenarios/entities/OrderVersion.java:55 +msgid "owner scenario not specified" msgstr "" -#: org/libreplan/web/resources/search/NewAllocationSelectorController.java:722 -msgid "Start filtering date must be before than end filtering date" +#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/TaskQualityFormItem.java:69 +#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/TaskQualityFormItem.java:69 +msgid "Task Quality Form item name not specified" msgstr "" -#: org/libreplan/web/planner/allocation/AdvancedAllocationCommand.java:47 -msgid "Advanced allocation" +#: libreplan-webapp/src/main/webapp/orders/components/_orderElementTree.zul:84 +msgid "Delete selected task" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_listHoursGroupCriterionRequirement.zul:22 -msgid "Criteria Requirement" +#: org/libreplan/web/logs/IssueLogCRUDController.java:262 +msgid "Could have" msgstr "" -#: org/libreplan/web/limitingresources/QueueComponent.java:231 -msgid "Resource: {0}" +#: libreplan-business/src/main/java/org/libreplan/business/externalcompanies/entities/ExternalCompany.java:182 +#: libreplan-business/src/main/java/org/libreplan/business/externalcompanies/entities/ExternalCompany.java:182 +msgid "interaction fields are empty and company is marked as interact with applications" msgstr "" -#: org/libreplan/web/orders/TreeElementOperationsController.java:245 -msgid "" -"Templates can only be created out of existent tasks.You are trying to create " -"a template out of a new task.\n" -"Please save your project before proceeding." +#: org/libreplan/web/orders/OrdersTreeComponent.java:76 +msgid "Total task budget" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_taskInformation.zul:47 -msgid "Recommended allocation" +#: libreplan-webapp/src/main/webapp/resources/worker/_workRelationships.zul:30 +#: libreplan-webapp/src/main/webapp/resources/worker/_editWorkRelationship.zul:27 +msgid "Relationship" msgstr "" -#: libreplan-webapp/src/main/webapp/logs/_listIssueLog.zul:31 -#: libreplan-webapp/src/main/webapp/logs/_editIssueLog.zul:79 -msgid "Date raised" +#: org/libreplan/web/templates/OrderTemplatesModel.java:304 +msgid "Already exists another template with the same name" msgstr "" -#: libreplan-webapp/src/main/webapp/users/_editUser.zul:38 -msgid "Password cannot be managed for LDAP users because LDAP authentication is enabled." +#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:123 +msgid "Expense date" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/Worker.java:127 -msgid "worker's first name not specified" +#: libreplan-webapp/src/main/webapp/scenarios/_list.zul:22 +msgid "Scenarios List" msgstr "" -#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:160 -msgid "Start Date" +#: org/libreplan/web/common/CustomMenuController.java:473 +#: org/libreplan/web/externalcompanies/ExternalCompanyCRUDController.java:143 +msgid "Companies" msgstr "" -#: libreplan-webapp/src/main/webapp/subcontract/reportAdvances.zul:47 -msgid "Date last progress reported" +#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:725 +msgid "" +"Spread progress cannot be changed if there is a consolidation in any " +"progress assignment from root task" msgstr "" -#: libreplan-webapp/src/main/webapp/logs/_editRiskLog.zul:144 -msgid "Action When" +#: libreplan-webapp/src/main/webapp/advance/_listAdvanceTypes.zul:22 +msgid "Progress Types List" msgstr "" -#: libreplan-webapp/src/main/webapp/common/pageNotFound.zul:61 -msgid "Open file HACKING.rst in project directory and read Part LibrePlan documentation generation, how to generate help/info pages" +#: org/libreplan/web/materials/UnitTypeController.java:126 +#: org/libreplan/web/materials/UnitTypeController.java:146 +#: org/libreplan/web/materials/MaterialsController.java:278 +#: org/libreplan/web/orders/OrderCRUDController.java:1612 +#: org/libreplan/web/orders/OrderCRUDController.java:1628 +#: org/libreplan/web/orders/ProjectDetailsController.java:165 +#: org/libreplan/web/orders/criterionrequirements/AssignedCriterionRequirementController.java:332 +#: org/libreplan/web/orders/TimSynchronizationController.java:138 +#: org/libreplan/web/orders/labels/AssignedLabelsController.java:118 +#: org/libreplan/web/orders/OrderElementTreeController.java:415 +#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:876 +#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:888 +#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:1287 +#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:1313 +#: org/libreplan/web/templates/TemplatesTreeController.java:89 +#: org/libreplan/web/calendars/BaseCalendarEditionController.java:916 +#: org/libreplan/web/calendars/BaseCalendarEditionController.java:1080 +#: org/libreplan/web/calendars/BaseCalendarEditionController.java:1297 +#: org/libreplan/web/users/UserCRUDController.java:462 +#: org/libreplan/web/tree/TreeController.java:295 +#: org/libreplan/web/tree/TreeController.java:1013 +#: org/libreplan/web/common/ConfigurationController.java:1048 +#: org/libreplan/web/common/ConfigurationController.java:1453 +#: org/libreplan/web/montecarlo/MonteCarloController.java:140 +#: org/libreplan/web/montecarlo/MonteCarloController.java:271 +#: org/libreplan/web/externalcompanies/ExternalCompanyCRUDController.java:122 +#: org/libreplan/web/externalcompanies/ExternalCompanyCRUDController.java:123 +#: org/libreplan/web/externalcompanies/ExternalCompanyCRUDController.java:124 +#: org/libreplan/web/costcategories/CostCategoryCRUDController.java:148 +#: org/libreplan/web/costcategories/CostCategoryCRUDController.java:153 +#: org/libreplan/web/costcategories/CostCategoryCRUDController.java:214 +#: org/libreplan/web/costcategories/CostCategoryCRUDController.java:313 +#: org/libreplan/web/workreports/WorkReportCRUDController.java:337 +#: org/libreplan/web/workreports/WorkReportCRUDController.java:343 +#: org/libreplan/web/workreports/WorkReportCRUDController.java:349 +#: org/libreplan/web/workreports/WorkReportCRUDController.java:378 +#: org/libreplan/web/workreports/WorkReportCRUDController.java:392 +#: org/libreplan/web/workreports/WorkReportCRUDController.java:407 +#: org/libreplan/web/workreports/WorkReportCRUDController.java:419 +#: org/libreplan/web/workreports/WorkReportCRUDController.java:430 +#: org/libreplan/web/workreports/WorkReportCRUDController.java:441 +#: org/libreplan/web/workreports/WorkReportCRUDController.java:473 +#: org/libreplan/web/resources/criterion/CriterionTreeController.java:131 +#: org/libreplan/web/resources/worker/CriterionsMachineController.java:229 +#: org/libreplan/web/resources/worker/CriterionsMachineController.java:342 +#: org/libreplan/web/resources/worker/CriterionsMachineController.java:351 +#: org/libreplan/web/resources/worker/WorkerCRUDController.java:320 +#: org/libreplan/web/resources/worker/WorkerCRUDController.java:325 +#: org/libreplan/web/resources/worker/CriterionsController.java:218 +#: org/libreplan/web/resources/worker/CriterionsController.java:345 +#: org/libreplan/web/resources/worker/CriterionsController.java:354 +#: org/libreplan/web/planner/reassign/ReassignController.java:128 +#: libreplan-webapp/src/main/webapp/excetiondays/_editExceptionDayType.zul:44 +#: libreplan-webapp/src/main/webapp/excetiondays/_editExceptionDayType.zul:57 +#: libreplan-webapp/src/main/webapp/materials/materials.zul:95 +#: libreplan-webapp/src/main/webapp/materials/materials.zul:97 +#: libreplan-webapp/src/main/webapp/orders/_projectDetails.zul:40 +#: libreplan-webapp/src/main/webapp/orders/_projectDetails.zul:58 +#: libreplan-webapp/src/main/webapp/orders/components/_jiraOrderElementSync.zul:49 +#: libreplan-webapp/src/main/webapp/orders/_orderElementDetails.zul:35 +#: libreplan-webapp/src/main/webapp/orders/_orderElementDetails.zul:41 +#: libreplan-webapp/src/main/webapp/logs/_editRiskLog.zul:37 +#: libreplan-webapp/src/main/webapp/logs/_editRiskLog.zul:98 +#: libreplan-webapp/src/main/webapp/logs/_editRiskLog.zul:146 +#: libreplan-webapp/src/main/webapp/logs/_editIssueLog.zul:36 +#: libreplan-webapp/src/main/webapp/logs/_editIssueLog.zul:81 +#: libreplan-webapp/src/main/webapp/templates/_materialAssignmentsBox.zul:39 +#: libreplan-webapp/src/main/webapp/typeofworkhours/_editTypeOfWorkHours.zul:44 +#: libreplan-webapp/src/main/webapp/typeofworkhours/_editTypeOfWorkHours.zul:55 +#: libreplan-webapp/src/main/webapp/typeofworkhours/_editTypeOfWorkHours.zul:61 +#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:44 +#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:62 +#: libreplan-webapp/src/main/webapp/users/_editUser.zul:51 +#: libreplan-webapp/src/main/webapp/scenarios/_edition.zul:34 +#: libreplan-webapp/src/main/webapp/profiles/_editProfile.zul:44 +#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:35 +#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:42 +#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:51 +#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:63 +#: libreplan-webapp/src/main/webapp/common/configuration.zul:65 +#: libreplan-webapp/src/main/webapp/externalcompanies/_editExternalCompany.zul:43 +#: libreplan-webapp/src/main/webapp/externalcompanies/_editExternalCompany.zul:50 +#: libreplan-webapp/src/main/webapp/costcategories/_editCostCategory.zul:51 +#: libreplan-webapp/src/main/webapp/costcategories/_editCostCategory.zul:62 +#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:179 +#: libreplan-webapp/src/main/webapp/labels/_editLabelType.zul:45 +#: libreplan-webapp/src/main/webapp/labels/_editLabelType.zul:53 +#: libreplan-webapp/src/main/webapp/labels/_editLabelType.zul:89 +#: libreplan-webapp/src/main/webapp/labels/_editLabelType.zul:94 +#: libreplan-webapp/src/main/webapp/resources/worker/_edition.zul:58 +#: libreplan-webapp/src/main/webapp/resources/machine/_editMachine.zul:48 +#: libreplan-webapp/src/main/webapp/resources/machine/_editMachine.zul:58 +#: libreplan-webapp/src/main/webapp/resources/machine/_editMachine.zul:64 +#: libreplan-webapp/src/main/webapp/resources/machine/_machineConfigurationUnits.zul:149 +#: libreplan-webapp/src/main/webapp/resources/criterions/_edition.zul:46 +#: libreplan-webapp/src/main/webapp/resources/criterions/_edition.zul:74 +msgid "cannot be empty" msgstr "" -#: org/libreplan/web/resources/machine/MachineConfigurationController.java:124 -msgid "No worker selected" +#: libreplan-business/src/main/java/org/libreplan/business/planner/entities/SubcontractedTaskData.java:209 +#: libreplan-business/src/main/java/org/libreplan/business/planner/entities/SubcontractedTaskData.java:209 +msgid "subcontratation date not specified" msgstr "" -#: org/libreplan/web/resources/criterion/CriterionAdminController.java:251 -msgid "" -"This criterion type cannot be deleted because it is assigned to projects or " -"resources" +#: libreplan-webapp/src/main/webapp/orders/components/_listOrderElementMaterials.zul:64 +msgid "Required materials" msgstr "" -#: org/libreplan/web/calendars/BaseCalendarCRUDController.java:377 -msgid "" -"Default calendar cannot be removed. Please, change the default calendar in " -"the Main Settings window before." +#: org/libreplan/web/qualityforms/QualityFormCRUDController.java:226 +msgid "percentage must be unique" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementCriterionRequirements.zul:177 -msgid "Hours Group" +#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:693 +msgid "Progress that are reported by quality forms cannot be modified" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/CriterionType.java:413 -msgid "criterion names must be unique inside a criterion type" +#: org/libreplan/web/planner/TaskElementAdapter.java:871 +msgid "Budget: {0}, Consumed: {1} ({2}%)" msgstr "" -#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:157 -msgid "Year (optional)" +#: libreplan-webapp/src/main/webapp/common/concurrentModification.zul:30 +msgid "Another user has modified the same data, so the operation cannot be safely completed." msgstr "" -#: org/libreplan/web/advance/AdvanceTypeCRUDController.java:96 -msgid "" -"Value is not valid, the default max value must be greater than the precision " -"value " +#: libreplan-webapp/src/main/webapp/limitingresources/limitingResourcesLayout.zul:126 +msgid "Assign selected items" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/components/_jiraOrderElementSync.zul:22 -msgid "JIRA sync information" +#: libreplan-business/src/main/java/org/libreplan/business/costcategories/entities/TypeOfWorkHours.java:106 +#: libreplan-business/src/main/java/org/libreplan/business/costcategories/entities/TypeOfWorkHours.java:106 +msgid "default price not specified" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/calendars/entities/ResourceCalendar.java:79 -#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportLine.java:167 -#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/CriterionSatisfaction.java:206 -msgid "resource not specified" +#: org/libreplan/web/resources/criterion/CriterionsModel.java:179 +msgid "{0} not found type for criterion " msgstr "" -#: libreplan-webapp/src/main/webapp/reports/workingArrangementsPerOrderReport.zul:65 -msgid "Dependencies" +#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:174 +msgid "here" msgstr "" -#: org/libreplan/web/workreports/WorkReportTypeCRUDController.java:602 -msgid "A description field with the same name already exists." +#: org/libreplan/web/common/CustomMenuController.java:336 +#: org/libreplan/web/resources/machine/MachineCRUDController.java:579 +msgid "Machines" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_allocationConfiguration.zul:41 -msgid "Planned workable days" +#: org/libreplan/web/planner/tabs/PlanningTabCreator.java:181 +#: org/libreplan/web/planner/tabs/OrdersTabCreator.java:50 +msgid "Project Details" msgstr "" -#: org/libreplan/web/orders/OrderCRUDController.java:1049 -msgid "" -"You can not remove the project \"{0}\" because it has time tracked at some " -"of its tasks" +#: libreplan-webapp/src/main/webapp/workreports/_editWorkReportType.zul:142 +#: libreplan-webapp/src/main/webapp/planner/stretches_function.zul:54 +msgid "Length" msgstr "" -#: libreplan-webapp/src/main/webapp/users/_editUser.zul:75 -#: libreplan-webapp/src/main/webapp/myaccount/changePassword.zul:77 -#: libreplan-webapp/src/main/webapp/resources/worker/_edition.zul:180 -msgid "Password confirmation" +#: libreplan-business/src/main/java/org/libreplan/business/requirements/entities/IndirectCriterionRequirement.java:77 +#: libreplan-business/src/main/java/org/libreplan/business/requirements/entities/IndirectCriterionRequirement.java:77 +msgid "parent not specified" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReport.java:227 -msgid "date cannot be empty if it is shared by lines" +#: org/libreplan/web/planner/allocation/AllocationRow.java:628 +msgid "{0} cannot be fulfilled" msgstr "" -#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:47 -#: libreplan-webapp/src/main/webapp/common/_listJobScheduling.zul:30 -msgid "Cron expression" +#: org/libreplan/web/workreports/WorkReportCRUDController.java:496 +msgid "task is already marked as finished in another timesheet" msgstr "" -#: org/libreplan/web/calendars/BaseCalendarEditionController.java:311 -msgid "from {0}" +#: libreplan-webapp/src/main/webapp/reports/schedulingProgressPerOrderReport.zul:21 +msgid "LibrePlan: Work And Progress Per Project" msgstr "" -#: org/libreplan/web/dashboard/DashboardController.java:183 -msgid "Task deadline violations" +#: libreplan-webapp/src/main/webapp/qualityforms/_editQualityForm.zul:74 +msgid "Quality form items list" msgstr "" -#: org/libreplan/web/planner/allocation/AdvancedAllocationController.java:1028 -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelNonLimitingResourceAllocation.zul:96 -msgid "Function" -msgstr "" +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportLabelTypeAssignment.java:38 +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportLabelTypeAssignment.java:38 +msgid "label type not specified" +msgstr "" -#: libreplan-webapp/src/main/webapp/workreports/_editWorkReportType.zul:126 -msgid "Complementary text fields" +#: libreplan-webapp/src/main/webapp/common/configuration.zul:236 +msgid "MonteCarlo method" msgstr "" -#: libreplan-webapp/src/main/webapp/users/_editUser.zul:140 -msgid "Roles of LDAP users cannot be managed because LDAP is enabled and LDAP roles are being used." +#: libreplan-business/src/main/java/org/libreplan/business/expensesheet/entities/ExpenseSheetLine.java:146 +#: libreplan-business/src/main/java/org/libreplan/business/expensesheet/entities/ExpenseSheetLine.java:146 +msgid "expense sheet not specified" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/materials/entities/MaterialCategory.java:242 -msgid "There are repeated material category codes" +#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/Order.java:365 +#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/Order.java:365 +msgid "the project must have a start date" msgstr "" -#: libreplan-webapp/src/main/webapp/reports/projectStatusReport.zul:107 -#: libreplan-webapp/src/main/webapp/reports/workingProgressPerTaskReport.zul:116 -#: libreplan-webapp/src/main/webapp/reports/workingArrangementsPerOrderReport.zul:129 -#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:157 -#: libreplan-webapp/src/main/webapp/reports/orderCostsPerResource.zul:169 -#: libreplan-webapp/src/main/webapp/reports/completedEstimatedHoursPerTask.zul:120 -msgid "Filter by criteria" +#: libreplan-webapp/src/main/webapp/orders/components/_orderElementTree.zul:64 +msgid "Move selected task down" msgstr "" -#: org/libreplan/web/advance/AdvanceTypeCRUDController.java:113 -msgid "" -"The name is not valid, there is another progress type with the same name. " +#: org/libreplan/web/importers/ProjectImportController.java:105 +msgid ": Calendar import successfully!" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/planner/entities/SubcontractedTaskData.java:243 -msgid "state not specified" +#: org/libreplan/web/expensesheet/ExpenseSheetCRUDController.java:538 +msgid "Expense Sheets" msgstr "" -#: org/libreplan/web/reports/WorkingProgressPerTaskController.java:165 -#: org/libreplan/web/reports/HoursWorkedPerWorkerController.java:348 -#: org/libreplan/web/reports/OrderCostsPerResourceController.java:208 -#: org/libreplan/web/reports/CompletedEstimatedHoursPerTaskController.java:172 -#: org/libreplan/web/reports/WorkingArrangementsPerOrderController.java:211 -msgid "This Criterion has already been added." +#: libreplan-webapp/src/main/webapp/orders/_assignmentsBox.zul:76 +#: libreplan-webapp/src/main/webapp/templates/_materialAssignmentsBox.zul:60 +msgid "Split assignment" msgstr "" -#: libreplan-webapp/src/main/webapp/typeofworkhours/_editTypeOfWorkHours.zul:66 -#: libreplan-webapp/src/main/webapp/typeofworkhours/_listTypesOfWorkHours.zul:29 -#: libreplan-webapp/src/main/webapp/advance/_listAdvanceTypes.zul:28 -#: libreplan-webapp/src/main/webapp/costcategories/_listCostCategories.zul:29 -#: libreplan-webapp/src/main/webapp/costcategories/_editCostCategory.zul:67 -#: libreplan-webapp/src/main/webapp/resources/criterions/_edition.zul:61 -#: libreplan-webapp/src/main/webapp/resources/criterions/_list.zul:28 -msgid "Enabled" +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/Worker.java:260 +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/Worker.java:260 +msgid "Virtual resources cannot be bound to any user" msgstr "" -#: libreplan-webapp/src/main/webapp/subcontract/subcontractorCommunications.zul:60 -msgid "Subcontracted task" +#: libreplan-business/src/main/java/org/libreplan/business/common/entities/Configuration.java:146 +#: libreplan-business/src/main/java/org/libreplan/business/common/entities/Configuration.java:146 +msgid "default calendar not specified" msgstr "" -#: org/libreplan/web/logs/RiskLogCRUDController.java:392 -msgid "Issue log" +#: libreplan-business/src/main/java/org/libreplan/business/users/entities/OrderAuthorization.java:43 +#: libreplan-business/src/main/java/org/libreplan/business/users/entities/OrderAuthorization.java:43 +msgid "an authorization type must be set" msgstr "" -#: libreplan-webapp/src/main/webapp/subcontract/customerCommunications.zul:20 -msgid "LibrePlan: Received From Customers" +#: org/libreplan/web/logs/IssueLogCRUDController.java:260 +msgid "Must have" msgstr "" -#: libreplan-webapp/src/main/webapp/common/eventError.zul:26 -#: libreplan-webapp/src/main/webapp/common/error.zul:31 -msgid "Message - {0}" +#: org/libreplan/web/common/CustomMenuController.java:569 +msgid "Change Password" msgstr "" -#: libreplan-webapp/src/main/webapp/dashboard/_costStatus.zul:60 -msgid "Project closing previsions" +#: org/libreplan/web/orders/OrdersTreeComponent.java:93 +msgid "Must start after" msgstr "" -#: org/libreplan/web/labels/LabelTypeModel.java:267 -msgid "Already exists other label with the same name" +#: org/libreplan/web/orders/OrderCRUDController.java:888 +#: org/libreplan/web/orders/OrderCRUDController.java:1086 +#: org/libreplan/web/resourceload/ResourceLoadController.java:1058 +msgid "You don't have read access to this project" msgstr "" -#: libreplan-webapp/src/main/webapp/scenarios/transferOrders.zul:23 -msgid "LibrePlan: Transfer Projects Between Scenarios" +#: libreplan-webapp/src/main/webapp/excetiondays/_listExceptionDayTypes.zul:33 +msgid "Overallocated" msgstr "" -#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:21 -msgid "LibrePlan: Expenses" +#: libreplan-webapp/src/main/webapp/email/email_templates.zul:63 +msgid "Select template type" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_edition.zul:302 -#: libreplan-webapp/src/main/webapp/orders/_edition.zul:338 -#: libreplan-webapp/src/main/webapp/subcontract/subcontractedTasks.zul:48 -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelSubcontract.zul:114 -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelSubcontract.zul:131 -msgid "Communication date" +#: libreplan-webapp/src/main/webapp/limitingresources/limitingResourcesLayout.zul:152 +msgid "Hours to allocate" msgstr "" -#: libreplan-webapp/src/main/webapp/common/layout/login.zul:207 -msgid "is not supported for its use with LibrePlan." +#: libreplan-webapp/src/main/webapp/common/configuration.zul:242 +msgid "Automatic budget" msgstr "" -#: libreplan-webapp/src/main/webapp/subcontract/customerCommunications.zul:44 -#: libreplan-webapp/src/main/webapp/subcontract/subcontractorCommunications.zul:46 -msgid "Refresh" +#: libreplan-webapp/src/main/webapp/planner/_legendLoadChartCompany.zul:34 +msgid "Load 100%" msgstr "" -#: org/libreplan/web/expensesheet/ExpenseSheetCRUDController.java:538 -msgid "Expense Sheets" +#: org/libreplan/web/users/UserCRUDController.java:298 +msgid "Users" msgstr "" -#: libreplan-webapp/src/main/webapp/resources/worker/_calendar.zul:36 -#: libreplan-webapp/src/main/webapp/resources/machine/_calendar.zul:30 -msgid "Select parent calendar" +#: org/libreplan/web/planner/TaskElementAdapter.java:1213 +msgid "Hours-status" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/Resource.java:1051 -msgid "Some criterion satisfactions overlap in time" +#: org/libreplan/web/dashboard/GlobalProgressChart.java:59 +msgid "By all tasks hours" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/imports/projectImport.zul:37 -msgid "The formats supported for import are MPP and PLANNER files." +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/Resource.java:1080 +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/Resource.java:1080 +msgid "Some cost category assignments overlap in time" msgstr "" -#: libreplan-webapp/src/main/webapp/common/concurrentModification.zul:31 -msgid "Please try it again." +#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:1226 +msgid "" +"Date is not valid, it must be later than the last progress reported to the " +"customer" msgstr "" -#: libreplan-webapp/src/main/webapp/workreports/_editWorkReportType.zul:158 -msgid "Add New Label Type Field" +#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:124 +msgid "Any" msgstr "" -#: org/libreplan/web/users/dashboard/PersonalTimesheetDTO.java:129 -msgid "{0} 1st fortnight" +#: libreplan-webapp/src/main/webapp/qualityforms/_listQualityForm.zul:27 +msgid "name" msgstr "" -#: libreplan-webapp/src/main/webapp/templates/_historicalAssignment.zul:39 -msgid "Estimated hours" +#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:33 +#: libreplan-webapp/src/main/webapp/common/_listJobScheduling.zul:28 +msgid "Job group" msgstr "" -#: org/libreplan/web/common/JobSchedulerController.java:363 -#: org/libreplan/web/common/JobSchedulerController.java:368 -msgid "Job scheduling" +#: libreplan-webapp/src/main/webapp/orders/_ordersTab.zul:37 +msgid "Cancel editing" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/labels/entities/LabelType.java:108 -msgid "label names must be unique inside a label type" +#: org/libreplan/web/reports/OrderCostsPerResourceModel.java:323 +msgid "Total dedication" msgstr "" -#: libreplan-webapp/src/main/webapp/myaccount/personalTimesheet.zul:21 -msgid "LibrePlan: Personal timesheet" +#: org/libreplan/web/common/CustomMenuController.java:565 +msgid "Home" msgstr "" -#: org/libreplan/importers/ExportTimesheetsToTim.java:130 -msgid "Order should not be empty" +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/Worker.java:228 +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/Worker.java:228 +msgid "User already bound to other worker" msgstr "" -#: org/libreplan/web/calendars/BaseCalendarModel.java:508 -msgid "This date can not include the whole previous work week" +#: libreplan-webapp/src/main/webapp/logs/_listRiskLog.zul:33 +msgid "Counter measures" msgstr "" -#: org/libreplan/web/common/ConfigurationController.java:1442 -msgid "Only {0} allowed" +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementCriterionRequirements.zul:38 +msgid "Add criterion requirement" msgstr "" -#: libreplan-webapp/src/main/webapp/materials/materials.zul:76 -#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:167 -msgid "New" +#: libreplan-webapp/src/main/webapp/planner/advance_allocation.zul:35 +msgid "No Allocations have been done" msgstr "" -#: org/libreplan/web/materials/MaterialsModel.java:179 -#: org/libreplan/web/calendars/BaseCalendarModel.java:602 -#: org/libreplan/web/scenarios/ScenarioModel.java:220 -#: org/libreplan/web/qualityforms/QualityFormCRUDController.java:190 -#: org/libreplan/web/qualityforms/QualityFormCRUDController.java:204 -#: org/libreplan/web/labels/LabelTypeModel.java:154 -#: org/libreplan/web/labels/LabelTypeModel.java:180 -#: org/libreplan/web/labels/LabelTypeCRUDController.java:262 -msgid "{0} already exists" +#: libreplan-webapp/src/main/webapp/myaccount/changePassword.zul:54 +msgid "Password settings" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/QualityForm.java:84 -msgid "quality form name not specified" +#: libreplan-webapp/src/main/webapp/limitingresources/manualAllocation.zul:111 +msgid "Appropriative allocation" msgstr "" -#: org/libreplan/web/orders/files/OrderFilesController.java:283 -msgid "Please, make repository" +#: libreplan-business/src/main/java/org/libreplan/business/common/entities/JobSchedulerConfiguration.java:72 +#: libreplan-business/src/main/java/org/libreplan/business/common/entities/JobSchedulerConfiguration.java:72 +msgid "job name not specified" msgstr "" -#: libreplan-webapp/src/main/webapp/dashboard/_pipeline.zul:11 -msgid "ACCEPTED" +#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:113 +msgid "Field" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_listHoursGroupCriterionRequirement.zul:25 -msgid "No criterions" +#: libreplan-webapp/src/main/webapp/resources/criterions/_workers.zul:41 +msgid "Administration" msgstr "" -#: org/libreplan/web/workreports/WorkReportCRUDController.java:698 -msgid "Edit Timesheet" +#: libreplan-webapp/src/main/webapp/subcontract/subcontractedTasks.zul:35 +msgid "Communications To Subcontractors" msgstr "" -#: org/libreplan/web/calendars/BaseCalendarEditionController.java:138 -msgid "unl" +#: libreplan-webapp/src/main/webapp/scenarios/transferOrders.zul:31 +msgid "Transfer Projects Between Scenarios" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/imports/projectImport.zul:53 -msgid "Gantt charts" +#: org/libreplan/importers/JiraTimesheetSynchronizer.java:307 +msgid "Hours type should not be empty to synchronine timesheets" msgstr "" -#: org/libreplan/web/common/JobSchedulerController.java:267 -#: org/libreplan/web/common/JobSchedulerController.java:268 -#: org/libreplan/web/limitingresources/LimitingResourcesController.java:451 -msgid "Manual" +#: org/libreplan/web/planner/adaptplanning/AdaptPlanningCommand.java:70 +msgid "Adapting planning according to timesheets" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/common/entities/ConfigurationRolesLDAP.java:56 -msgid "LibrePlan role not specified" +#: org/libreplan/web/orders/OrderCRUDController.java:498 +msgid "" +"Starting date cannot be empty because there is a task with constraint \"as " +"soon as possible\"" msgstr "" -#: org/libreplan/web/subcontract/ReportAdvancesModel.java:225 -#: org/libreplan/web/subcontract/SubcontractedTasksModel.java:240 -#: org/libreplan/web/subcontract/SubcontractedTasksModel.java:277 -msgid "Error: {0}" +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportType.java:85 +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportType.java:85 +msgid "name not specified or empty" msgstr "" -#: libreplan-webapp/src/main/webapp/labels/_listLabelTypes.zul:22 -msgid "Label Types List" +#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:1193 +msgid "" +"Value must be a multiple of the precision value of the progress type: {0}" msgstr "" -#: libreplan-webapp/src/main/webapp/myaccount/_personalTimesheetsArea.zul:33 -#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:77 -msgid "Total work" +#: org/libreplan/web/common/components/NewAllocationSelector.java:55 +msgid "generic workers allocation" msgstr "" -#: org/libreplan/web/importers/ProjectImportController.java:133 -msgid "The only current supported formats are mpp and planner." +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/VirtualWorker.java:98 +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/VirtualWorker.java:98 +msgid "Virtual worker group name must be unique" msgstr "" -#: org/libreplan/web/templates/TemplatesTreeComponent.java:60 -msgid "New Template element" +#: org/libreplan/web/tree/TreeController.java:1017 +msgid "cannot be negative" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/Worker.java:228 -msgid "User already bound to other worker" +#: libreplan-webapp/src/main/webapp/templates/_historicalAssignment.zul:51 +msgid "View" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/users/entities/OrderAuthorization.java:43 -msgid "an authorization type must be set" +#: org/libreplan/web/orders/OrderCRUDController.java:444 +msgid "Forward" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/Worker.java:149 -msgid "Worker ID cannot be empty" +#: libreplan-webapp/src/main/webapp/orders/_editOrderElement.zul:44 +msgid "Details" msgstr "" -#: libreplan-webapp/src/main/webapp/common/layout/template.zul:204 -msgid "default password was not changed" +#: org/libreplan/web/dashboard/GlobalProgressChart.java:60 +msgid "By critical path hours" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/materials/entities/MaterialCategory.java:259 -msgid "There are repeated material codes" +#: libreplan-webapp/src/main/webapp/workreports/workReportQuery.zul:70 +#: libreplan-webapp/src/main/webapp/resources/search/_resourceFilter.zul:36 +msgid "More options" msgstr "" -#: org/libreplan/web/orders/criterionrequirements/AssignedCriterionRequirementController.java:411 -msgid "At least one HoursGroup is needed" +#: libreplan-webapp/src/main/webapp/orders/components/_orderElementTree.zul:44 +msgid "Add From Template" msgstr "" -#: org/libreplan/web/expensesheet/ExpenseSheetCRUDController.java:468 -msgid "must be greater or equal than 0" +#: libreplan-business/src/main/java/org/libreplan/business/labels/entities/LabelType.java:108 +#: libreplan-business/src/main/java/org/libreplan/business/labels/entities/LabelType.java:108 +msgid "label names must be unique inside a label type" msgstr "" -#: libreplan-webapp/src/main/webapp/templates/_listTemplates.zul:33 -#: libreplan-webapp/src/main/webapp/templates/_editTemplate.zul:99 -msgid "Days from Beginning to Deadline" +#: libreplan-webapp/src/main/webapp/logs/_logsFilter.zul:22 +msgid "Select required issue/risk name and press filter button" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/Resource.java:1136 -msgid "resource cost category assignments codes must be " -"unique inside a resource" +#: libreplan-webapp/src/main/webapp/orders/_edition.zul:301 +#: libreplan-webapp/src/main/webapp/subcontract/subcontractedTasks.zul:55 +msgid "Delivery date" msgstr "" -#: org/libreplan/web/advance/AdvanceTypeCRUDController.java:80 -msgid "" -"Invalid value. Precission value must be lower than the Default Max value." +#: libreplan-webapp/src/main/webapp/email/email_templates.zul:124 +msgid "Project details page" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_edition.zul:213 -msgid "WBS calculated budget" +#: libreplan-webapp/src/main/webapp/email/email_templates.zul:94 +msgid "First name of user" msgstr "" -#: org/libreplan/importers/JiraTimesheetSynchronizer.java:120 -msgid "Order \"{0}\" not found. Order probalbly not synchronized" +#: libreplan-webapp/src/main/webapp/orders/imports/projectImport.zul:33 +msgid "Import Project" msgstr "" -#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:1101 -msgid "Consolidated progress measurement cannot be removed" +#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:108 +msgid "Cron expression format" msgstr "" -#: libreplan-webapp/src/main/webapp/common/configuration.zul:225 -msgid "Expense sheets" +#: libreplan-webapp/src/main/webapp/workreports/_editWorkReportType.zul:158 +msgid "Add New Label Type Field" msgstr "" -#: libreplan-webapp/src/main/webapp/common/configuration.zul:498 -msgid "LibrePlan Role" +#: libreplan-webapp/src/main/webapp/myaccount/settings.zul:125 +msgid "Planning view modes on" msgstr "" -#: org/libreplan/importers/JiraOrderElementSynchronizer.java:524 -msgid "No items found in 'OrderSyncInfo' to synchronize with JIRA issues" +#: org/libreplan/web/planner/TaskElementAdapter.java:1291 +#: org/libreplan/web/planner/TaskElementAdapter.java:1311 +msgid "{0} not supported yet" msgstr "" -#: libreplan-webapp/src/main/webapp/dashboard/_dashboardfororder.zul:100 -msgid "Availability ratio" +#: org/libreplan/web/calendars/BaseCalendarEditionController.java:555 +msgid "Exception: {0}" msgstr "" -#: org/libreplan/web/orders/OrderCRUDController.java:1027 -#: org/libreplan/web/templates/historicalAssignment/OrderElementHistoricalAssignmentComponent.java:144 -msgid "Not enough permissions to edit this project" +#: org/libreplan/web/users/UserCRUDController.java:422 +msgid "Confirm edit worker" msgstr "" -#: org/libreplan/web/common/CustomMenuController.java:329 -msgid "Workers" +#: org/libreplan/web/common/CustomMenuController.java:468 +#: libreplan-webapp/src/main/webapp/common/configuration.zul:335 +#: libreplan-webapp/src/main/webapp/resources/machine/_editMachine.zul:33 +msgid "Configuration" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_allocationConfiguration.zul:31 -msgid "Planned start" +#: org/libreplan/web/resources/worker/WorkerCRUDController.java:397 +#: org/libreplan/web/resources/worker/WorkerCRUDController.java:438 +msgid "Edit Worker: {0}" msgstr "" -#: org/libreplan/web/resources/criterion/CriterionTreeController.java:335 -msgid "Criterion has subelements" +#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:113 +msgid "Select template" msgstr "" -#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:260 -#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:677 -#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:1110 -msgid "" -"Subcontractor values are read only because they were reported by the " -"subcontractor company." +#: org/libreplan/web/common/components/finders/TaskGroupFilterEnum.java:30 +#: org/libreplan/web/common/components/finders/OrderFilterEnum.java:30 +#: libreplan-webapp/src/main/webapp/orders/_edition.zul:273 +#: libreplan-webapp/src/main/webapp/orders/_projectDetails.zul:75 +#: libreplan-webapp/src/main/webapp/orders/_list.zul:34 +#: libreplan-webapp/src/main/webapp/subcontract/customerCommunications.zul:61 +msgid "Customer" msgstr "" -#: org/libreplan/web/users/dashboard/UserDashboardController.java:64 -msgid "Personal timesheet \"{0}\" saved" +#: org/libreplan/web/common/ConfigurationController.java:332 +msgid "Cannot connect to LDAP server" msgstr "" -#: libreplan-webapp/src/main/webapp/unittypes/unitTypes.zul:21 -msgid "LibrePlan: Material Units" +#: org/libreplan/web/workreports/WorkReportTypeCRUDController.java:766 +msgid "Unallocated name" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_editOrderElement.zul:39 -#: libreplan-webapp/src/main/webapp/templates/_editTemplateWindow.zul:42 -#: libreplan-webapp/src/main/webapp/planner/editTask.zul:48 -msgid "Edit task" +#: libreplan-business/src/main/java/org/libreplan/business/expensesheet/entities/ExpenseSheet.java:235 +#: libreplan-business/src/main/java/org/libreplan/business/expensesheet/entities/ExpenseSheet.java:235 +msgid "a personal expense sheet must have the same resource in all the lines" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/common/entities/Configuration.java:175 -msgid "port not specified" +#: org/libreplan/web/orders/AssignedTaskQualityFormsToOrderElementController.java:359 +#: libreplan-webapp/src/main/webapp/qualityforms/_editQualityForm.zul:84 +#: libreplan-webapp/src/main/webapp/workreports/_editWorkReportType.zul:143 +#: libreplan-webapp/src/main/webapp/workreports/_editWorkReportType.zul:168 +msgid "Position" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/scenarios/entities/OrderVersion.java:55 -msgid "owner scenario not specified" +#: org/libreplan/web/logs/IssueLogCRUDController.java:277 +msgid "Medium" msgstr "" -#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:1088 -msgid "" -"Progress measurements that are reported by quality forms cannot be removed" +#: libreplan-webapp/src/main/webapp/limitingresources/manualAllocation.zul:25 +msgid "Manual allocation" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_edition.zul:134 -msgid "Planning Configuration" +#: libreplan-webapp/src/main/webapp/orders/_orderElementDetails.zul:71 +#: libreplan-webapp/src/main/webapp/templates/_editTemplate.zul:114 +#: libreplan-webapp/src/main/webapp/common/configuration.zul:258 +msgid "cannot be negative or empty" msgstr "" -#: org/libreplan/web/planner/allocation/AdvancedAllocationController.java:1021 -msgid "Efforts" +#: libreplan-webapp/src/main/webapp/costcategories/costCategory.zul:23 +msgid "LibrePlan: Cost Categories" msgstr "" -#: libreplan-webapp/src/main/webapp/externalcompanies/_listExternalCompanies.zul:28 -#: libreplan-webapp/src/main/webapp/externalcompanies/_editExternalCompany.zul:53 -msgid "Client" +#: libreplan-webapp/src/main/webapp/templates/_editTemplateWindow.zul:52 +msgid "Criterion requirement" msgstr "" -#: libreplan-webapp/src/main/webapp/common/layout/login.zul:182 -msgid "Ever!" +#: org/libreplan/web/common/CustomMenuController.java:543 +#: libreplan-webapp/src/main/webapp/reports/workingArrangementsPerOrderReport.zul:39 +msgid "Task Scheduling Status In Project" msgstr "" -#: libreplan-webapp/src/main/webapp/reports/projectStatusReport.zul:67 -#: libreplan-webapp/src/main/webapp/reports/workingProgressPerTaskReport.zul:75 -#: libreplan-webapp/src/main/webapp/reports/workingArrangementsPerOrderReport.zul:85 -#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:105 -#: libreplan-webapp/src/main/webapp/reports/orderCostsPerResource.zul:124 -#: libreplan-webapp/src/main/webapp/reports/completedEstimatedHoursPerTask.zul:77 -msgid "Filter by labels" +#: org/libreplan/web/workreports/WorkReportTypeModel.java:427 +msgid "" +"Value is not valid.\n" +" Code cannot contain chars like '_'." msgstr "" -#: libreplan-webapp/src/main/webapp/common/configuration.zul:77 -msgid "Hours type for personal timesheets" +#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:278 +#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:302 +msgid "Valid from" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementCriterionRequirements.zul:126 -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementCriterionRequirements.zul:138 -msgid "Total hours task" +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReport.java:227 +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReport.java:227 +msgid "date cannot be empty if it is shared by lines" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/print_configuration.zul:47 -msgid "Please remember that only saved changes will be printed" +#: libreplan-business/src/main/java/org/libreplan/business/planner/entities/TaskMilestone.java:122 +#: libreplan-business/src/main/java/org/libreplan/business/planner/entities/TaskMilestone.java:122 +msgid "a milestone cannot have a task associated" msgstr "" -#: org/libreplan/web/materials/MaterialsController.java:493 -msgid "Cannot delete that material because it is assigned to a project." +#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:210 +msgid "OK" msgstr "" -#: libreplan-webapp/src/main/webapp/myaccount/personalTimesheet.zul:115 -msgid "Total extra" +#: org/libreplan/web/common/ConfigurationController.java:513 +#: org/libreplan/web/common/ConfigurationController.java:905 +#: org/libreplan/web/common/ConfigurationController.java:993 +msgid "number of digits must be between {0} and {1}" msgstr "" -#: libreplan-webapp/src/main/webapp/common/_listJobScheduling.zul:31 -msgid "Next fire time" +#: libreplan-webapp/src/main/webapp/planner/_legendLoadChartOrder.zul:42 +msgid "Load due to other assignments" msgstr "" -#: org/libreplan/web/common/CustomMenuController.java:295 -#: libreplan-webapp/src/main/webapp/scenarios/_edition.zul:48 -msgid "Projects" +#: libreplan-webapp/src/main/webapp/qualityforms/_editQualityForm.zul:111 +msgid "Down" msgstr "" -#: libreplan-webapp/src/main/webapp/logs/_listRiskLog.zul:31 -#: libreplan-webapp/src/main/webapp/logs/_editRiskLog.zul:96 -msgid "Date created" +#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/QualityForm.java:101 +#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/QualityForm.java:101 +msgid "quality form type not specified" msgstr "" -#: org/libreplan/web/workreports/WorkReportTypeCRUDController.java:593 -msgid "Label type already assigned" +#: libreplan-webapp/src/main/webapp/subcontract/customerCommunications.zul:60 +#: libreplan-webapp/src/main/webapp/subcontract/subcontractorCommunications.zul:66 +#: libreplan-webapp/src/main/webapp/workreports/workReportQuery.zul:109 +#: libreplan-webapp/src/main/webapp/reports/completedEstimatedHoursPerTask.zul:66 +msgid "Project Code" msgstr "" -#: libreplan-webapp/src/main/webapp/subcontract/subcontractorCommunications.zul:33 -msgid "Communications From Subcontractors" +#: libreplan-webapp/src/main/webapp/workreports/workReportQuery.zul:79 +msgid "type" msgstr "" -#: org/libreplan/web/limitingresources/QueueComponent.java:238 -msgid "Criteria: {0}" +#: org/libreplan/web/planner/TaskElementAdapter.java:1234 +msgid "Project margin: {0}% ({1})={2}" msgstr "" -#: org/libreplan/web/expensesheet/ExpenseSheetCRUDController.java:606 -msgid "Regular" +#: libreplan-webapp/src/main/webapp/reports/orderCostsPerResource.zul:58 +msgid "Work done from starting date" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/Worker.java:275 -msgid "Bound user does not have the proper role" +#: libreplan-webapp/src/main/webapp/myaccount/settings.zul:115 +msgid "Project view" msgstr "" -#: libreplan-webapp/src/main/webapp/myaccount/personalTimesheet.zul:132 -msgid "Add task" +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementHours.zul:25 +msgid "Imputed hours calculation" msgstr "" -#: libreplan-webapp/src/main/webapp/users/_listUsers.zul:22 -msgid "Users List" +#: org/libreplan/web/templates/TemplatesTreeComponent.java:99 +msgid "Deadline (days since project start)" msgstr "" -#: org/libreplan/web/tree/TreeController.java:1299 -msgid "Modified" +#: libreplan-webapp/src/main/webapp/common/eventError.zul:49 +#: libreplan-webapp/src/main/webapp/common/error.zul:54 +msgid "Stacktrace" msgstr "" -#: libreplan-webapp/src/main/webapp/common/configuration.zul:69 -msgid "Default calendar" +#: libreplan-webapp/src/main/webapp/common/layout/login.zul:208 +msgid "Please use some of the compatible browsers: Chrome, Firefox, Safari or Epiphany." msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementHours.zul:84 -#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:152 -#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:180 -msgid "Concept" -msgstr "" - -#: libreplan-webapp/src/main/webapp/common/configuration.zul:147 -msgid "Enable/Disable warning about new LibrePlan versions available" +#: org/libreplan/web/common/IntegrationEntityModel.java:79 +msgid "Could not retrieve Code. Please, try again later" msgstr "" -#: org/libreplan/web/scenarios/TransferOrdersModel.java:148 -msgid "Please, select a destination scenario" +#: org/libreplan/web/subcontract/ReportAdvancesController.java:193 +#: org/libreplan/web/subcontract/SubcontractedTasksController.java:202 +msgid "Send" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_assignmentsBox.zul:75 -#: libreplan-webapp/src/main/webapp/templates/_materialAssignmentsBox.zul:59 -msgid "Split" +#: libreplan-webapp/src/main/webapp/myaccount/userDashboard.zul:21 +msgid "LibrePlan: My Dashboard" msgstr "" -#: org/libreplan/web/planner/limiting/allocation/LimitingResourceAllocationModel.java:153 -#: org/libreplan/web/planner/allocation/FormBinder.java:655 -msgid "" -"there are no resources for required criteria: {0}. So the generic allocation " -"can't be added" +#: libreplan-business/src/main/java/org/libreplan/business/expensesheet/entities/ExpenseSheet.java:115 +#: libreplan-business/src/main/java/org/libreplan/business/expensesheet/entities/ExpenseSheet.java:116 +#: libreplan-business/src/main/java/org/libreplan/business/expensesheet/entities/ExpenseSheet.java:115 +#: libreplan-business/src/main/java/org/libreplan/business/expensesheet/entities/ExpenseSheet.java:116 +msgid "the expense sheet must have least a expense sheet line." msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/workreports/valueobjects/DescriptionValue.java:71 -#: libreplan-business/src/main/java/org/libreplan/business/workreports/valueobjects/DescriptionField.java:71 -msgid "field name not specified or empty" +#: org/libreplan/web/expensesheet/ExpenseSheetCRUDController.java:533 +msgid "Expense Sheet" msgstr "" -#: org/libreplan/web/templates/TemplatesTreeComponent.java:68 -msgid "Delete Template element" +#: org/libreplan/web/resources/criterion/CriterionTreeController.java:334 +msgid "references" msgstr "" -#: libreplan-webapp/src/main/webapp/calendars/calendars.zul:22 -msgid "LibrePlan: Calendars" +#: org/libreplan/web/orders/labels/AssignedLabelsController.java:106 +msgid "you do not have permissions to create new labels" msgstr "" -#: org/libreplan/web/limitingresources/QueueComponent.java:504 -msgid "Unassign" +#: libreplan-webapp/src/main/webapp/common/configuration.zul:210 +msgid "Timesheet templates" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/planner/entities/SubcontractedTaskData.java:230 -msgid "external company should be subcontractor" +#: org/libreplan/web/qualityforms/QualityFormCRUDController.java:290 +msgid "Quality Form" msgstr "" -#: org/libreplan/web/common/components/finders/CriterionBandboxFinder.java:44 -msgid "Criterion Name" +#: org/libreplan/web/workreports/WorkReportCRUDController.java:892 +msgid "Task finished" msgstr "" -#: libreplan-webapp/src/main/webapp/myaccount/_expensesArea.zul:36 -#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:51 -msgid "Last expense" +#: libreplan-webapp/src/main/webapp/logs/_editRiskLog.zul:101 +#: libreplan-webapp/src/main/webapp/logs/_editIssueLog.zul:84 +msgid "Created by" msgstr "" -#: org/libreplan/web/orders/OrderCRUDController.java:498 -msgid "" -"Starting date cannot be empty because there is a task with constraint \"as " -"soon as possible\"" +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelTaskProperties.zul:75 +msgid "Resource allocation type" msgstr "" -#: org/libreplan/web/workreports/WorkReportCRUDController.java:486 -msgid "cannot be empty." +#: libreplan-webapp/src/main/webapp/common/configuration.zul:62 +msgid "Company code" msgstr "" -#: org/libreplan/web/orders/OrderCRUDController.java:1349 -#: org/libreplan/web/orders/OrderElementTreeController.java:539 -#: org/libreplan/web/templates/TemplatesTreeController.java:69 -#: org/libreplan/web/calendars/BaseCalendarCRUDController.java:335 -#: org/libreplan/web/subcontract/CustomerCommunicationCRUDController.java:196 -#: org/libreplan/web/subcontract/SubcontractorCommunicationCRUDController.java:232 -#: org/libreplan/web/common/Util.java:668 -#: org/libreplan/web/limitingresources/QueueComponent.java:502 -#: libreplan-webapp/src/main/webapp/excetiondays/_editExceptionDayType.zul:26 -#: libreplan-webapp/src/main/webapp/unittypes/_editUnitType.zul:25 -#: libreplan-webapp/src/main/webapp/templates/_listTemplates.zul:58 -#: libreplan-webapp/src/main/webapp/typeofworkhours/_listTypesOfWorkHours.zul:45 -#: libreplan-webapp/src/main/webapp/profiles/_listProfiles.zul:36 -#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:55 -#: libreplan-webapp/src/main/webapp/advance/_editAdvanceTypes.zul:26 -#: libreplan-webapp/src/main/webapp/externalcompanies/_listExternalCompanies.zul:43 -#: libreplan-webapp/src/main/webapp/qualityforms/_listQualityForm.zul:49 -#: libreplan-webapp/src/main/webapp/costcategories/_listCostCategories.zul:41 -#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:93 -#: libreplan-webapp/src/main/webapp/workreports/workReportQuery.zul:151 -#: libreplan-webapp/src/main/webapp/workreports/_listWorkReportTypes.zul:37 -#: libreplan-webapp/src/main/webapp/labels/_listLabelTypes.zul:37 -#: libreplan-webapp/src/main/webapp/resources/worker/_workRelationships.zul:42 -#: libreplan-webapp/src/main/webapp/resources/worker/_listVirtualWorkers.zul:47 -#: libreplan-webapp/src/main/webapp/resources/criterions/_edition.zul:28 -#: libreplan-webapp/src/main/webapp/resources/criterions/_workers.zul:33 -#: libreplan-webapp/src/main/webapp/resources/criterions/_list.zul:40 -msgid "Edit" +#: libreplan-business/src/main/java/org/libreplan/business/expensesheet/entities/ExpenseSheet.java:126 +#: libreplan-business/src/main/java/org/libreplan/business/expensesheet/entities/ExpenseSheet.java:126 +msgid "last expense sheet line sequence code not specified" msgstr "" -#: org/libreplan/web/common/ConfigurationController.java:382 -msgid "Tim connection was successful" +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportLine.java:277 +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportLine.java:277 +msgid "Start hour cannot be greater than finish hour" msgstr "" -#: libreplan-webapp/src/main/webapp/resources/worker/_edition.zul:76 -msgid "Group name" +#: libreplan-webapp/src/main/webapp/orders/components/_listOrderElementLabels.zul:78 +msgid "Assign Label" msgstr "" -#: org/libreplan/web/planner/chart/EarnedValueChartFiller.java:252 -msgid "ETC" +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementCriterionRequirements.zul:126 +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementCriterionRequirements.zul:138 +msgid "Total hours task" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/components/_orderElementTree.zul:69 -msgid "Move selected task up" +#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:714 +msgid "" +"Advance assignment cannot be removed as it has advance measures that have " +"already been reported to the customer" msgstr "" -#: org/libreplan/web/common/CustomMenuController.java:462 -msgid "Edit E-mail Templates" +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelSubcontract.zul:84 +msgid "Material assignments" msgstr "" -#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:74 -msgid "Connector" +#: org/libreplan/web/common/CustomMenuController.java:444 +msgid "User Accounts" msgstr "" -#: org/libreplan/web/expensesheet/ExpenseSheetCRUDController.java:483 -msgid "it already exists another expense sheet with the same code." +#: org/libreplan/web/workreports/WorkReportTypeModel.java:433 +msgid "There is another timesheet template with the same code" msgstr "" -#: org/libreplan/web/planner/allocation/stretches/StretchesFunctionController.java:127 -msgid "Confirm cancel" +#: org/libreplan/web/montecarlo/MonteCarloController.java:144 +#: org/libreplan/web/montecarlo/MonteCarloController.java:273 +msgid "Number of iterations should be between 1 and {0}" msgstr "" -#: libreplan-webapp/src/main/webapp/email/email_templates.zul:114 -msgid "Name of task" +#: libreplan-webapp/src/main/webapp/reports/schedulingProgressPerOrderReport.zul:164 +#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerInAMonthReport.zul:87 +#: libreplan-webapp/src/main/webapp/reports/projectStatusReport.zul:173 +#: libreplan-webapp/src/main/webapp/reports/workingProgressPerTaskReport.zul:178 +#: libreplan-webapp/src/main/webapp/reports/workingArrangementsPerOrderReport.zul:195 +#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:220 +#: libreplan-webapp/src/main/webapp/reports/orderCostsPerResource.zul:235 +#: libreplan-webapp/src/main/webapp/reports/timeLineMaterialReport.zul:165 +#: libreplan-webapp/src/main/webapp/reports/completedEstimatedHoursPerTask.zul:185 +msgid "Click on this" msgstr "" -#: org/libreplan/web/limitingresources/QueueComponent.java:223 -msgid "Task: {0}" +#: libreplan-webapp/src/main/webapp/templates/_listTemplates.zul:21 +msgid "Templates List" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/advance_allocation.zul:35 -msgid "No Allocations have been done" +#: libreplan-webapp/src/main/webapp/resources/criterions/_criterionsTree.zul:23 +msgid "Criteria list" msgstr "" -#: org/libreplan/web/resources/worker/WorkerCRUDController.java:330 -msgid "passwords do not match" +#: org/libreplan/web/calendars/BaseCalendarEditionController.java:562 +msgid "Not workable day" msgstr "" -#: libreplan-webapp/src/main/webapp/common/configuration.zul:120 -msgid "Currency" +#: org/libreplan/web/resources/worker/WorkerCRUDController.java:741 +msgid "Create Virtual Workers Group" msgstr "" -#: libreplan-webapp/src/main/webapp/common/eventError.zul:39 -#: libreplan-webapp/src/main/webapp/common/error.zul:44 -msgid "Exception type" +#: org/libreplan/web/planner/order/SubcontractController.java:147 +msgid "" +"It will only be possible to add a Deliver Date if all the deliver date " +"exiting in the table have a CommunicationDate not empty. " msgstr "" -#: org/libreplan/web/logs/IssueLogCRUDController.java:268 -msgid "Minor" +#: org/libreplan/web/resources/machine/MachineCRUDController.java:616 +msgid "Machines limit reached" msgstr "" -#: libreplan-webapp/src/main/webapp/scenarios/transferOrders.zul:38 -msgid "Source scenario" +#: org/libreplan/web/resourceload/ResourceLoadModel.java:694 +msgid "Other projects" msgstr "" -#: org/libreplan/web/planner/tabs/LogsTabCreator.java:89 -#: org/libreplan/web/planner/tabs/LogsTabCreator.java:106 -#: org/libreplan/web/planner/tabs/LogsTabCreator.java:121 -#: org/libreplan/web/planner/tabs/LogsTabCreator.java:138 -msgid "Logs" +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAdvances.zul:57 +msgid "Calculated" msgstr "" -#: org/libreplan/web/planner/allocation/stretches/StretchesFunctionController.java:367 -msgid "Amount work percentage should be between 0 and 100" +#: org/libreplan/web/orders/criterionrequirements/AssignedCriterionRequirementModel.java:187 +msgid "New hours group " msgstr "" -#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:1139 -msgid "Add measure" +#: org/libreplan/web/resources/worker/CriterionsMachineController.java:189 +#: org/libreplan/web/resources/worker/CriterionsController.java:196 +msgid "This criterion type cannot have multiple values in the same period" msgstr "" -#: org/libreplan/web/workreports/WorkReportCRUDController.java:948 -msgid "Cannot be higher than finish hour" +#: org/libreplan/web/calendars/BaseCalendarModel.java:508 +msgid "This date can not include the whole previous work week" msgstr "" -#: libreplan-webapp/src/main/webapp/profiles/_listProfiles.zul:22 -msgid "Profiles List" +#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:70 +msgid "Filter by workers" msgstr "" -#: libreplan-webapp/src/main/webapp/common/accessForbidden.zul:40 -msgid "Please try to contact with any administrator in order to review your permissions in LibrePlan." +#: org/libreplan/web/users/dashboard/PersonalTimesheetDTO.java:130 +msgid "{0} 2nd fortnight" msgstr "" -#: libreplan-webapp/src/main/webapp/externalcompanies/_editExternalCompany.zul:90 -msgid "Company password" +#: libreplan-webapp/src/main/webapp/templates/_listTemplates.zul:31 +#: libreplan-webapp/src/main/webapp/templates/_editTemplate.zul:93 +msgid "Delay from beginning (days)" msgstr "" -#: org/libreplan/web/orders/OrderCRUDController.java:888 -#: org/libreplan/web/orders/OrderCRUDController.java:1086 -#: org/libreplan/web/resourceload/ResourceLoadController.java:1058 -msgid "You don't have read access to this project" +#: org/libreplan/web/resources/worker/WorkerCRUDController.java:184 +msgid "Create new user" msgstr "" -#: libreplan-webapp/src/main/webapp/calendars/_list.zul:22 -msgid "Calendars List" +#: org/libreplan/web/planner/reassign/ReassignCommand.java:167 +msgid "Done {0} of {1}" msgstr "" -#: org/libreplan/web/orders/OrderCRUDController.java:378 -#: org/libreplan/web/planner/order/OrderPlanningModel.java:1027 -msgid "Confirm exit dialog" +#: org/libreplan/web/orders/AssignedTaskQualityFormsToOrderElementController.java:371 +#: org/libreplan/web/workreports/WorkReportCRUDController.java:817 +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAdvances.zul:53 +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAdvances.zul:82 +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAdvances.zul:103 +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementHours.zul:31 +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementHours.zul:83 +#: libreplan-webapp/src/main/webapp/myaccount/_personalTimesheetsArea.zul:28 +#: libreplan-webapp/src/main/webapp/myaccount/personalTimesheet.zul:51 +#: libreplan-webapp/src/main/webapp/myaccount/personalTimesheet.zul:163 +#: libreplan-webapp/src/main/webapp/subcontract/subcontractorCommunications.zul:89 +#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:136 +#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:203 +#: libreplan-webapp/src/main/webapp/workreports/workReportQuery.zul:104 +#: libreplan-webapp/src/main/webapp/workreports/_editWorkReportType.zul:73 +#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:181 +#: libreplan-webapp/src/main/webapp/reports/schedulingProgressPerOrderReport.zul:43 +#: libreplan-webapp/src/main/webapp/reports/workingProgressPerTaskReport.zul:43 +#: libreplan-webapp/src/main/webapp/reports/completedEstimatedHoursPerTask.zul:43 +#: libreplan-webapp/src/main/webapp/planner/order.zul:106 +#: libreplan-webapp/src/main/webapp/planner/stretches_function.zul:53 +msgid "Date" msgstr "" -#: org/libreplan/web/common/CustomMenuController.java:565 -msgid "Home" +#: libreplan-webapp/src/main/webapp/orders/_projectDetails.zul:25 +msgid "Create new project" msgstr "" -#: org/libreplan/web/planner/order/SubcontractController.java:154 -msgid "It already exists a deliver date with the same date. " +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/Worker.java:166 +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/Worker.java:166 +msgid "ID already used. It has to be be unique" msgstr "" -#: org/libreplan/web/common/BaseCRUDController.java:85 -msgid "{0} List" +#: libreplan-webapp/src/main/webapp/excetiondays/_listExceptionDayTypes.zul:34 +#: libreplan-webapp/src/main/webapp/excetiondays/_editExceptionDayType.zul:83 +msgid "Standard Effort" msgstr "" -#: org/libreplan/web/subcontract/SubcontractedTasksController.java:208 -msgid "Subcontracted task sent successfully" +#: libreplan-webapp/src/main/webapp/myaccount/_personalTimesheetsArea.zul:33 +#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:77 +msgid "Total work" msgstr "" -#: org/libreplan/web/workreports/WorkReportCRUDController.java:1525 -msgid "must be before end date" +#: org/libreplan/web/resources/worker/WorkerCRUDController.java:183 +#: libreplan-webapp/src/main/webapp/resources/worker/_edition.zul:120 +msgid "Existing user" msgstr "" -#: libreplan-webapp/src/main/webapp/myaccount/settings.zul:193 -msgid "Resources load since" +#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:254 +msgid "Inherited from parent calendar" msgstr "" -#: org/libreplan/web/qualityforms/QualityFormCRUDController.java:155 -msgid "" -"Deleting this item will disable the report progress option. Are you sure?" +#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:114 +msgid "Task of project" msgstr "" -#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:113 -msgid "Field" +#: libreplan-webapp/src/main/webapp/orders/components/_orderElementTree.zul:53 +msgid "Edit selected task" msgstr "" -#: org/libreplan/web/common/CustomMenuController.java:477 -msgid "Send To Subcontractors" +#: org/libreplan/importers/ExportTimesheetsToTim.java:203 +msgid "Unable to crate time registration for request" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/calendars/entities/BaseCalendar.java:1204 -msgid "last sequence code not specified" +#: libreplan-webapp/src/main/webapp/resources/machine/_listMachines.zul:22 +msgid "Machines List" msgstr "" -#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:280 -msgid "Valid until" +#: libreplan-webapp/src/main/webapp/resources/worker/_calendar.zul:52 +#: libreplan-webapp/src/main/webapp/resources/machine/_calendar.zul:43 +msgid "Remove calendar" msgstr "" -#: libreplan-webapp/src/main/webapp/profiles/_editProfile.zul:28 -msgid "Profile data" +#: libreplan-webapp/src/main/webapp/common/configuration.zul:509 +msgid "Application properties" msgstr "" -#: libreplan-webapp/src/main/webapp/myaccount/settings.zul:115 -msgid "Project view" +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_taskInformation.zul:47 +msgid "Recommended allocation" msgstr "" -#: libreplan-webapp/src/main/webapp/qualityforms/_editQualityForm.zul:29 -msgid "Quality form" +#: org/libreplan/web/common/ConfigurationController.java:1442 +msgid "Only {0} allowed" msgstr "" -#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:1226 -msgid "" -"Date is not valid, it must be later than the last progress reported to the " -"customer" +#: libreplan-business/src/main/java/org/libreplan/business/advance/entities/AdvanceMeasurement.java:152 +#: libreplan-business/src/main/java/org/libreplan/business/advance/entities/AdvanceMeasurement.java:165 +#: libreplan-business/src/main/java/org/libreplan/business/advance/entities/AdvanceMeasurement.java:152 +#: libreplan-business/src/main/java/org/libreplan/business/advance/entities/AdvanceMeasurement.java:165 +msgid "The current value must be less than the max value." msgstr "" -#: org/libreplan/web/resources/worker/CriterionsMachineController.java:213 -#: org/libreplan/web/resources/worker/CriterionsController.java:244 -msgid "Invaldid End Date. New End Date must be after current End Date " +#: libreplan-business/src/main/java/org/libreplan/business/materials/entities/MaterialInfo.java:48 +#: libreplan-business/src/main/java/org/libreplan/business/materials/entities/MaterialInfo.java:48 +msgid "units not specified" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/CriterionType.java:517 -msgid "last criterion sequence code not specified" +#: org/libreplan/web/resources/machine/MachineCRUDController.java:279 +msgid "Please, select a calendar" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/common/entities/JobSchedulerConfiguration.java:63 -msgid "job group not specified" +#: org/libreplan/web/advance/AdvanceTypeCRUDController.java:210 +msgid "Progress Type" msgstr "" -#: libreplan-webapp/src/main/webapp/workreports/_editWorkReportType.zul:169 -msgid "Default Label" +#: org/libreplan/web/costcategories/CostCategoryCRUDController.java:280 +#: org/libreplan/web/workreports/WorkReportCRUDController.java:1107 +#: org/libreplan/web/workreports/WorkReportCRUDController.java:1339 +msgid "Please, select an item" msgstr "" -#: org/libreplan/web/common/components/EffortDurationPicker.java:63 -#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:127 -#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:188 -msgid "Minutes" +#: libreplan-business/src/main/java/org/libreplan/business/externalcompanies/entities/CustomerCommunication.java:132 +#: libreplan-business/src/main/java/org/libreplan/business/externalcompanies/entities/CustomerCommunication.java:132 +msgid "project not specified" msgstr "" -#: org/libreplan/web/calendars/BaseCalendarCRUDController.java:451 -#: org/libreplan/web/common/BaseCRUDController.java:129 -#: org/libreplan/web/resources/worker/WorkerCRUDController.java:1021 -msgid "Create {0}" +#: org/libreplan/web/common/ConfigurationController.java:384 +msgid "Cannot connet to Tim server" msgstr "" -#: org/libreplan/web/tree/TreeController.java:1017 -msgid "cannot be negative" +#: org/libreplan/web/common/components/finders/QualityFormBandboxFinder.java:50 +#: org/libreplan/web/common/components/finders/CriterionBandboxFinder.java:44 +#: org/libreplan/web/common/components/finders/LabelBandboxFinder.java:51 +#: org/libreplan/web/common/components/finders/ResourceInExpenseSheetBandboxFinder.java:44 +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAdvances.zul:44 +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementTaskQualityForms.zul:53 +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementFiles.zul:38 +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementCriterionRequirements.zul:53 +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementCriterionRequirements.zul:169 +#: libreplan-webapp/src/main/webapp/orders/_listHoursGroupCriterionRequirement.zul:31 +#: libreplan-webapp/src/main/webapp/logs/_listIssueLog.zul:26 +#: libreplan-webapp/src/main/webapp/logs/_editIssueLog.zul:52 +#: libreplan-webapp/src/main/webapp/templates/_listTemplates.zul:27 +#: libreplan-webapp/src/main/webapp/templates/_advances.zul:36 +#: libreplan-webapp/src/main/webapp/templates/_assignedQualityForms.zul:50 +#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:49 +#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:123 +#: libreplan-webapp/src/main/webapp/advance/_editAdvanceTypes.zul:70 +#: libreplan-webapp/src/main/webapp/costcategories/_editCostCategory.zul:91 +#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:172 +#: libreplan-webapp/src/main/webapp/workreports/_sortFieldsAndLabels.zul:35 +#: libreplan-webapp/src/main/webapp/workreports/_sortFieldsAndLabels.zul:51 +#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:56 +#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:94 +#: libreplan-webapp/src/main/webapp/resources/worker/_edition.zul:94 +#: libreplan-webapp/src/main/webapp/resources/search/_resourceFilter.zul:46 +#: libreplan-webapp/src/main/webapp/resources/machine/_editMachine.zul:68 +#: libreplan-webapp/src/main/webapp/resources/criterions/_edition.zul:44 +#: libreplan-webapp/src/main/webapp/resources/criterions/_list.zul:27 +#: libreplan-webapp/src/main/webapp/reports/projectStatusReport.zul:87 +#: libreplan-webapp/src/main/webapp/reports/projectStatusReport.zul:129 +#: libreplan-webapp/src/main/webapp/reports/workingProgressPerTaskReport.zul:95 +#: libreplan-webapp/src/main/webapp/reports/workingProgressPerTaskReport.zul:136 +#: libreplan-webapp/src/main/webapp/reports/workingArrangementsPerOrderReport.zul:108 +#: libreplan-webapp/src/main/webapp/reports/workingArrangementsPerOrderReport.zul:152 +#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:93 +#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:136 +#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:178 +#: libreplan-webapp/src/main/webapp/reports/orderCostsPerResource.zul:148 +#: libreplan-webapp/src/main/webapp/reports/orderCostsPerResource.zul:191 +#: libreplan-webapp/src/main/webapp/reports/completedEstimatedHoursPerTask.zul:99 +#: libreplan-webapp/src/main/webapp/reports/completedEstimatedHoursPerTask.zul:142 +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_taskInformation.zul:33 +msgid "Type" msgstr "" -#: org/libreplan/web/externalcompanies/ExternalCompanyCRUDController.java:175 -msgid "{0} \"{1}\" can not be deleted because of it is being used" +#: org/libreplan/web/common/ConfigurationController.java:1564 +msgid "The only current supported formats are png and jpeg" msgstr "" -#: org/libreplan/web/resources/worker/WorkRelationshipsController.java:163 -msgid "Unexpected: {0}" +#: org/libreplan/web/planner/TaskElementAdapter.java:1232 +msgid "Budget-status" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/print_configuration.zul:37 -msgid "Shrink to fit page width" +#: libreplan-webapp/src/main/webapp/orders/_edition.zul:302 +#: libreplan-webapp/src/main/webapp/orders/_edition.zul:338 +#: libreplan-webapp/src/main/webapp/subcontract/subcontractedTasks.zul:48 +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelSubcontract.zul:114 +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelSubcontract.zul:131 +msgid "Communication date" msgstr "" -#: libreplan-webapp/src/main/webapp/common/layout/login.zul:143 -msgid "Incorrect authentication" +#: libreplan-webapp/src/main/webapp/dashboard/_dashboardforglobal.zul:32 +msgid "Pipeline" msgstr "" -#: org/libreplan/web/externalcompanies/ExternalCompanyCRUDController.java:138 -#: libreplan-webapp/src/main/webapp/subcontract/subcontractedTasks.zul:49 -#: libreplan-webapp/src/main/webapp/subcontract/subcontractorCommunications.zul:69 -msgid "Company" +#: org/libreplan/web/orders/labels/AssignedLabelsController.java:84 +#: org/libreplan/web/reports/WorkingProgressPerTaskController.java:128 +#: org/libreplan/web/reports/ProjectStatusReportController.java:192 +#: org/libreplan/web/reports/HoursWorkedPerWorkerController.java:312 +#: org/libreplan/web/reports/OrderCostsPerResourceController.java:173 +#: org/libreplan/web/reports/CompletedEstimatedHoursPerTaskController.java:134 +#: org/libreplan/web/reports/WorkingArrangementsPerOrderController.java:174 +msgid "please, select a label" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/Worker.java:252 -msgid "Queue-based resources cannot be bound to any user" +#: libreplan-webapp/src/main/webapp/resources/search/allocation_selector.zul:107 +msgid "Found resources" msgstr "" -#: libreplan-webapp/src/main/webapp/common/eventError.zul:49 -#: libreplan-webapp/src/main/webapp/common/error.zul:54 -msgid "Stacktrace" +#: libreplan-webapp/src/main/webapp/resources/worker/_calendar.zul:36 +#: libreplan-webapp/src/main/webapp/resources/machine/_calendar.zul:30 +msgid "Select parent calendar" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/advance_allocation.zul:22 -msgid "LibrePlan: Advanced allocation" +#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:139 +msgid "Work week" msgstr "" -#: libreplan-webapp/src/main/webapp/advance/_listAdvanceTypes.zul:22 -msgid "Progress Types List" +#: org/libreplan/web/scenarios/TransferOrdersController.java:190 +msgid "Project {0} transfered" msgstr "" -#: org/libreplan/web/materials/MaterialsModel.java:282 -msgid "both {0} of category {1} and {2} of category {3} have the same code" +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAdvances.zul:59 +#: libreplan-webapp/src/main/webapp/subcontract/customerCommunications.zul:38 +#: libreplan-webapp/src/main/webapp/subcontract/subcontractorCommunications.zul:38 +#: libreplan-webapp/src/main/webapp/reports/schedulingProgressPerOrderReport.zul:171 +#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerInAMonthReport.zul:94 +#: libreplan-webapp/src/main/webapp/reports/projectStatusReport.zul:180 +#: libreplan-webapp/src/main/webapp/reports/workingProgressPerTaskReport.zul:185 +#: libreplan-webapp/src/main/webapp/reports/workingArrangementsPerOrderReport.zul:202 +#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:226 +#: libreplan-webapp/src/main/webapp/reports/orderCostsPerResource.zul:242 +#: libreplan-webapp/src/main/webapp/reports/timeLineMaterialReport.zul:172 +#: libreplan-webapp/src/main/webapp/reports/completedEstimatedHoursPerTask.zul:192 +msgid "Show" msgstr "" -#: libreplan-webapp/src/main/webapp/subcontract/reportAdvances.zul:48 -msgid "Value last progress reported" +#: libreplan-webapp/src/main/webapp/templates/_historicalStatistics.zul:63 +msgid "Maximum/minimum of worked hours in finished applications" msgstr "" -#: libreplan-webapp/src/main/webapp/workreports/_editWorkReportType.zul:152 -msgid "Label Type fields" +#: libreplan-webapp/src/main/webapp/myaccount/personalTimesheet.zul:90 +msgid "Total personal timesheet" msgstr "" -#: org/libreplan/web/workreports/WorkReportModel.java:579 -msgid "Show all" +#: libreplan-webapp/src/main/webapp/resources/search/allocation_selector.zul:108 +msgid "Resources matching selected criteria" msgstr "" -#: libreplan-webapp/src/main/webapp/email/email_templates.zul:21 -msgid "LibrePlan: Email Templates" +#: org/libreplan/web/orders/JiraSynchronizationController.java:195 +msgid "No JIRA issues to import" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/common/IntegrationEntity.java:47 -msgid "code not specified" +#: libreplan-webapp/src/main/webapp/common/configuration.zul:102 +msgid "Company logo URL" msgstr "" -#: libreplan-webapp/src/main/webapp/scenarios/_edition.zul:39 -msgid "Predecessor" +#: libreplan-webapp/src/main/webapp/orders/_editOrderElement.zul:62 +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementTaskQualityForms.zul:26 +#: libreplan-webapp/src/main/webapp/orders/_edition.zul:71 +msgid "Task quality forms" msgstr "" -#: org/libreplan/web/resources/worker/AssignedCriterionsModel.java:338 -#: org/libreplan/web/resources/machine/AssignedMachineCriterionsModel.java:401 -msgid "The {0} is not valid. Other value exists from the same criterion type" +#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:47 +#: libreplan-webapp/src/main/webapp/common/_listJobScheduling.zul:30 +msgid "Cron expression" msgstr "" -#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:1141 -msgid "Add new progress measurement" +#: org/libreplan/web/resources/worker/CriterionsMachineController.java:184 +#: org/libreplan/web/resources/worker/CriterionsController.java:192 +msgid "Criterion already assigned" msgstr "" -#: libreplan-webapp/src/main/webapp/logs/_listRiskLog.zul:34 -msgid "New risk score" +#: libreplan-webapp/src/main/webapp/planner/print_configuration.zul:37 +msgid "Shrink to fit page width" msgstr "" -#: org/libreplan/web/scenarios/ScenarioModel.java:131 -msgid "You cannot remove a scenario with derived scenarios" +#: org/libreplan/importers/ImportRosterFromTim.java:129 +#: org/libreplan/importers/ExportTimesheetsToTim.java:96 +#: org/libreplan/importers/ExportTimesheetsToTim.java:140 +msgid "Connection values of Tim connector are invalid" msgstr "" -#: org/libreplan/web/common/CustomMenuController.java:560 -msgid "Reports" +#: libreplan-webapp/src/main/webapp/common/configuration.zul:255 +msgid "Seconds planning warning" msgstr "" -#: libreplan-webapp/src/main/webapp/advance/_editAdvanceTypes.zul:61 -msgid "Precision" +#: libreplan-webapp/src/main/webapp/planner/montecarlo_function.zul:31 +msgid "MonteCarlo" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_edition.zul:86 -#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:65 -msgid "Identification" +#: libreplan-webapp/src/main/webapp/common/configuration.zul:499 +msgid "LDAP Roles (separated by ;)" msgstr "" -#: libreplan-webapp/src/main/webapp/common/configuration.zul:345 -msgid "Host" +#: org/libreplan/web/common/JobSchedulerModel.java:173 +msgid "Task should finish job" msgstr "" -#: org/libreplan/web/exceptionDays/CalendarExceptionTypeCRUDController.java:257 -msgid "Calendar Exception Day" +#: org/libreplan/importers/ExportTimesheetsToTim.java:99 +msgid "Export" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/components/_orderElementTree.zul:84 -msgid "Delete selected task" +#: org/libreplan/web/orders/OrderCRUDController.java:447 +msgid "Backwards" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/TaskQualityForm.java:112 -msgid "items cannot be checked until the previous items are checked before." +#: org/libreplan/web/common/ConfigurationController.java:479 +msgid "Cannot connect" msgstr "" -#: libreplan-webapp/src/main/webapp/workreports/_editWorkReportType.zul:29 -msgid "Report structure" +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAuthorizations.zul:26 +msgid "Profiles authorization" msgstr "" -#: org/libreplan/web/dashboard/DashboardController.java:248 -msgid "Estimation deviation on completed tasks" +#: libreplan-business/src/main/java/org/libreplan/business/common/entities/Configuration.java:175 +#: libreplan-business/src/main/java/org/libreplan/business/common/entities/Configuration.java:175 +msgid "port not specified" msgstr "" -#: org/libreplan/web/planner/allocation/ResourceAllocationController.java:452 -msgid "Total Hours" +#: libreplan-webapp/src/main/webapp/profiles/_listProfiles.zul:22 +msgid "Profiles List" msgstr "" -#: org/libreplan/web/resources/machine/MachineCRUDController.java:574 -msgid "Machine" +#: libreplan-webapp/src/main/webapp/workreports/_editWorkReportType.zul:133 +msgid "Add New Complementary Field" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/advance/entities/AdvanceType.java:251 -msgid "progress type name is already in use" +#: libreplan-webapp/src/main/webapp/resources/worker/_edition.zul:118 +msgid "Bound user" msgstr "" -#: libreplan-webapp/src/main/webapp/scenarios/transferOrders.zul:39 -msgid "Destination scenario" +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAdvances.zul:80 +#: libreplan-webapp/src/main/webapp/orders/components/_listOrderElementLabels.zul:36 +#: libreplan-webapp/src/main/webapp/orders/components/_listOrderElementLabels.zul:57 +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementHours.zul:86 +#: libreplan-webapp/src/main/webapp/subcontract/subcontractorCommunications.zul:75 +#: libreplan-webapp/src/main/webapp/common/configuration.zul:532 +#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:144 +#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:179 +#: libreplan-webapp/src/main/webapp/planner/order.zul:104 +msgid "Value" msgstr "" -#: org/libreplan/web/scenarios/ScenarioCRUDController.java:213 -#: org/libreplan/web/common/TemplateController.java:133 -msgid "error doing reassignment: {0}" +#: libreplan-webapp/src/main/webapp/planner/print_configuration.zul:41 +msgid "Show all reported hours" msgstr "" -#: libreplan-webapp/src/main/webapp/common/layout/login.zul:183 -msgid "But" +#: libreplan-webapp/src/main/webapp/materials/materials.zul:50 +#: libreplan-webapp/src/main/webapp/orders/components/_listOrderElementMaterials.zul:45 +#: libreplan-webapp/src/main/webapp/orders/components/_listOrderElementMaterials.zul:85 +#: libreplan-webapp/src/main/webapp/reports/timeLineMaterialReport.zul:126 +msgid "Unselect" msgstr "" -#: org/libreplan/web/common/ConfigurationController.java:246 -msgid "Check all fields" +#: libreplan-business/src/main/java/org/libreplan/business/common/entities/Configuration.java:474 +#: libreplan-business/src/main/java/org/libreplan/business/common/entities/Configuration.java:474 +msgid "seconds planning warning not specified" msgstr "" -#: libreplan-webapp/src/main/webapp/limitingresources/manualAllocation.zul:97 -msgid "Latest date" +#: org/libreplan/web/common/ConfigurationController.java:973 +msgid "format prefix invalid. It cannot be empty or contain whitespaces." msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_edition.zul:336 -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelSubcontract.zul:112 -msgid "Save date" +#: org/libreplan/web/common/components/TwoWaySelector.java:108 +msgid "Unknown attribute '{0}' in class {1}" msgstr "" -#: org/libreplan/web/orders/labels/AssignedLabelsController.java:106 -msgid "you do not have permissions to create new labels" +#: libreplan-webapp/src/main/webapp/excetiondays/_editExceptionDayType.zul:47 +#: libreplan-webapp/src/main/webapp/materials/materials.zul:63 +#: libreplan-webapp/src/main/webapp/unittypes/_editUnitType.zul:45 +#: libreplan-webapp/src/main/webapp/orders/_edition.zul:107 +#: libreplan-webapp/src/main/webapp/orders/_projectDetails.zul:59 +#: libreplan-webapp/src/main/webapp/typeofworkhours/_editTypeOfWorkHours.zul:46 +#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:65 +#: libreplan-webapp/src/main/webapp/costcategories/_editCostCategory.zul:52 +#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:181 +#: libreplan-webapp/src/main/webapp/workreports/_editWorkReportType.zul:63 +#: libreplan-webapp/src/main/webapp/labels/_editLabelType.zul:56 +#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:82 +#: libreplan-webapp/src/main/webapp/resources/worker/_edition.zul:61 +#: libreplan-webapp/src/main/webapp/resources/machine/_editMachine.zul:50 +#: libreplan-webapp/src/main/webapp/resources/criterions/_edition.zul:76 +msgid "Generate code" msgstr "" -#: org/libreplan/web/planner/taskedition/TaskPropertiesController.java:616 -#: org/libreplan/web/planner/taskedition/TaskPropertiesController.java:652 -msgid "Assigned resources for this task will be deleted. Are you sure?" +#: libreplan-business/src/main/java/org/libreplan/business/calendars/entities/BaseCalendar.java:1209 +#: libreplan-business/src/main/java/org/libreplan/business/calendars/entities/BaseCalendar.java:1209 +msgid "calendars with zero hours are not allowed" msgstr "" -#: org/libreplan/web/qualityforms/QualityFormCRUDController.java:226 -msgid "percentage must be unique" +#: org/libreplan/web/calendars/BaseCalendarModel.java:488 +#: org/libreplan/web/calendars/BaseCalendarModel.java:520 +msgid "This date cannot be empty" msgstr "" -#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:709 -msgid "" -"Subcontractor values are read only because they were reported by the " -"subcontractor company" +#: org/libreplan/web/materials/MaterialsModel.java:282 +msgid "both {0} of category {1} and {2} of category {3} have the same code" msgstr "" -#: org/libreplan/web/planner/allocation/AdvancedAllocationController.java:1662 -msgid "Not configurable" +#: org/libreplan/web/dashboard/GlobalProgressChart.java:58 +msgid "Spreading progress" msgstr "" -#: libreplan-webapp/src/main/webapp/email/email_templates.zul:39 -msgid "Template data" +#: libreplan-webapp/src/main/webapp/orders/_orderFilter.zul:51 +#: libreplan-webapp/src/main/webapp/orders/_orderElementTreeFilter.zul:41 +msgid "Apply filtering to tasks satisfying required criteria" msgstr "" -#: org/libreplan/web/logs/IssueLogCRUDController.java:270 -msgid "Major" +#: org/libreplan/importers/JiraTimesheetSynchronizer.java:135 +msgid "No worklogs found for \"{0}\" key" msgstr "" -#: org/libreplan/web/advance/AdvanceTypeCRUDController.java:91 -msgid "Invalid value. Default Max Value cannot be empty" +#: org/libreplan/web/planner/allocation/ResourceAllocationCommand.java:71 +msgid "Resource allocation" msgstr "" -#: org/libreplan/web/limitingresources/LimitingResourcesController.java:331 -msgid "Scheduling saved" +#: org/libreplan/web/common/BaseCRUDController.java:233 +msgid "{0} \"{1}\" saved" msgstr "" -#: libreplan-webapp/src/main/webapp/common/configuration.zul:366 -msgid "Base" +#: libreplan-webapp/src/main/webapp/reports/workingArrangementsPerOrderReport.zul:58 +msgid "Filter by task status" msgstr "" -#: libreplan-webapp/src/main/webapp/logs/_editRiskLog.zul:121 -msgid "Risk Score After CM" +#: org/libreplan/web/resources/worker/WorkerModel.java:428 +msgid "" +"Please, allow Multiple Active Criteria in this type in order to use selected " +"Assignment Strategy" msgstr "" -#: libreplan-webapp/src/main/webapp/workreports/_sortFieldsAndLabels.zul:27 -msgid "Heading" +#: org/libreplan/web/workreports/WorkReportCRUDController.java:870 +#: libreplan-webapp/src/main/webapp/workreports/workReportQuery.zul:121 +msgid "Start hour" msgstr "" -#: org/libreplan/importers/JiraTimesheetSynchronizer.java:124 -msgid "Key for Order \"{0}\" is empty" +#: libreplan-webapp/src/main/webapp/calendars/_createNewVersion.zul:51 +msgid "Up to date" msgstr "" -#: org/libreplan/web/planner/reassign/Type.java:55 -msgid "From chosen date" +#: org/libreplan/web/common/components/finders/TaskGroupFilterEnum.java:30 +#: org/libreplan/web/common/components/finders/OrderFilterEnum.java:30 +#: org/libreplan/web/common/components/finders/TaskElementFilterEnum.java:34 +#: org/libreplan/web/common/components/finders/OrderElementFilterEnum.java:36 +#: org/libreplan/web/workreports/WorkReportTypeCRUDController.java:785 +msgid "Label" msgstr "" -#: org/libreplan/web/common/ConfigurationController.java:513 -#: org/libreplan/web/common/ConfigurationController.java:905 -#: org/libreplan/web/common/ConfigurationController.java:993 -msgid "number of digits must be between {0} and {1}" +#: libreplan-webapp/src/main/webapp/common/concurrentModification.zul:31 +msgid "Please try it again." msgstr "" -#: libreplan-webapp/src/main/webapp/templates/_editTemplate.zul:64 -msgid "Template Tree" +#: libreplan-webapp/src/main/webapp/common/configuration.zul:43 +msgid "Main preferences" msgstr "" -#: org/libreplan/web/common/CustomMenuController.java:538 -#: libreplan-webapp/src/main/webapp/reports/orderCostsPerResource.zul:39 -msgid "Project Costs" +#: org/libreplan/web/planner/chart/EarnedValueChartFiller.java:249 +msgid "Schedule Variance" msgstr "" -#: org/libreplan/web/users/settings/SettingsController.java:127 -msgid "Settings saved" +#: org/libreplan/web/resources/criterion/CriterionsModel.java:216 +msgid "Resource type cannot be empty" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/components/_listOrderElementLabels.zul:35 -#: libreplan-webapp/src/main/webapp/orders/components/_listOrderElementLabels.zul:56 -#: libreplan-webapp/src/main/webapp/labels/_editLabelType.zul:29 -msgid "Label type" +#: libreplan-webapp/src/main/webapp/scenarios/_edition.zul:39 +msgid "Predecessor" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_timImpExpInfo.zul:24 -msgid "was successful" +#: libreplan-webapp/src/main/webapp/common/configuration.zul:396 +msgid "Test LDAP connection" msgstr "" -#: libreplan-webapp/src/main/webapp/common/layout/_customMenu.zul:82 -#: libreplan-webapp/src/main/webapp/common/layout/login.zul:65 -msgid "en" +#: org/libreplan/web/resources/worker/WorkerCRUDController.java:982 +msgid "This worker was already removed by other user" msgstr "" -#: libreplan-webapp/src/main/webapp/logs/_listRiskLog.zul:26 -#: libreplan-webapp/src/main/webapp/logs/_editRiskLog.zul:62 -#: libreplan-webapp/src/main/webapp/planner/montecarlo_function.zul:50 -msgid "Probability" +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelSubcontract.zul:121 +msgid "End date communicated by the subcontractor." msgstr "" -#: org/libreplan/web/limitingresources/LimitingResourcesController.java:435 -msgid "Edit queue-based resource element" +#: libreplan-webapp/src/main/webapp/myaccount/personalTimesheet.zul:110 +msgid "Total extra per day" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementHours.zul:225 -msgid "Expenses budget" +#: libreplan-webapp/src/main/webapp/reports/orderCostsPerResource.zul:64 +msgid "Work done until ending date" msgstr "" -#: libreplan-webapp/src/main/webapp/common/layout/login.zul:159 -msgid "Supported Chrome, Firefox, Safari and Epiphany browsers" +#: org/libreplan/web/resources/search/NewAllocationSelectorController.java:699 +msgid "Start filtering date cannot be empty" msgstr "" -#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:1193 -msgid "" -"Value must be a multiple of the precision value of the progress type: {0}" +#: libreplan-webapp/src/main/webapp/myaccount/settings.zul:193 +msgid "Resources load since" msgstr "" -#: org/libreplan/web/materials/UnitTypeController.java:184 -#: org/libreplan/web/common/CustomMenuController.java:377 -#: libreplan-webapp/src/main/webapp/common/configuration.zul:199 -msgid "Material Units" +#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:132 +msgid "Expense lines" msgstr "" -#: org/libreplan/web/users/UserCRUDController.java:98 -#: org/libreplan/web/users/UserCRUDController.java:99 -#: org/libreplan/web/users/UserCRUDController.java:399 -msgid "No" +#: org/libreplan/web/common/CustomMenuController.java:329 +msgid "Workers" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/_legendLoadChartOrder.zul:37 -msgid "Resources capability" +#: org/libreplan/web/common/components/NewAllocationSelector.java:75 +msgid "generic machines allocation" msgstr "" -#: org/libreplan/web/workreports/WorkReportCRUDController.java:1636 -msgid "Please set a date" +#: org/libreplan/web/resources/worker/WorkerCRUDController.java:955 +msgid "" +"This worker cannot be deleted because it has assignments to projects or " +"imputed hours" msgstr "" -#: org/libreplan/web/templates/OrderTemplatesModel.java:298 -#: org/libreplan/web/workreports/WorkReportTypeModel.java:408 -msgid "name cannot be empty" +#: libreplan-webapp/src/main/webapp/templates/_listTemplates.zul:33 +#: libreplan-webapp/src/main/webapp/templates/_editTemplate.zul:99 +msgid "Days from Beginning to Deadline" msgstr "" -#: org/libreplan/web/users/UserCRUDController.java:355 -msgid "" -"User is bound to resource \"{0}\" and it will be unbound. Do you want to " -"continue with user removal?" -msgstr "" - -#: org/libreplan/web/resources/criterion/CriterionTreeModel.java:342 -msgid "Name of criterion is empty." -msgstr "" - -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelNonLimitingResourceAllocation.zul:76 -msgid "Extended view" -msgstr "" - -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementCriterionRequirements.zul:245 -msgid "Add Criterion" +#: org/libreplan/web/materials/MaterialsController.java:493 +msgid "Cannot delete that material because it is assigned to a project." msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_ordersTab.zul:37 -msgid "Cancel editing" +#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/Order.java:707 +#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/Order.java:707 +msgid "task code is repeated inside the project" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportLine.java:439 -msgid "label type: the timesheet has not assigned this label type" +#: libreplan-business/src/main/java/org/libreplan/business/planner/entities/StretchesFunction.java:362 +#: libreplan-business/src/main/java/org/libreplan/business/planner/entities/StretchesFunction.java:362 +msgid "Last stretch should have one hundred percent " +"length and one hundred percent of work percentage" msgstr "" -#: libreplan-webapp/src/main/webapp/logs/_listRiskLog.zul:32 -msgid "CreatedBy" +#: org/libreplan/web/orders/OrderCRUDController.java:1381 +msgid "Create Template" msgstr "" -#: libreplan-webapp/src/main/webapp/common/configuration.zul:143 -msgid "Check for updates" +#: libreplan-webapp/src/main/webapp/common/configuration.zul:462 +msgid "(If it is empty, a node strategy is used)" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/expensesheet/entities/ExpenseSheet.java:115 -#: libreplan-business/src/main/java/org/libreplan/business/expensesheet/entities/ExpenseSheet.java:116 -msgid "the expense sheet must have least a expense sheet line." +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReport.java:295 +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReport.java:295 +msgid "There are repeated description values in the timesheet " msgstr "" -#: libreplan-webapp/src/main/webapp/subcontract/subcontractedTasks.zul:45 -#: libreplan-webapp/src/main/webapp/subcontract/subcontractedTasks.zul:46 -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelSubcontract.zul:45 -msgid "Subcontracting date" +#: org/libreplan/web/planner/TaskElementAdapter.java:1220 +msgid ". Already registered: {0} hours" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/VirtualWorker.java:98 -msgid "Virtual worker group name must be unique" +#: libreplan-webapp/src/main/webapp/orders/components/_jiraOrderElementSync.zul:34 +msgid "JIRA label" msgstr "" -#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerInAMonthReport.zul:21 -msgid "LibrePlan: Total Worked Hours By Resource In A Month" +#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:223 +msgid "Origin" msgstr "" -#: libreplan-webapp/src/main/webapp/common/configuration.zul:307 -#: libreplan-webapp/src/main/webapp/advance/_editAdvanceTypes.zul:47 -#: libreplan-webapp/src/main/webapp/resources/criterions/_criterionsTree.zul:47 -msgid "Active" +#: libreplan-webapp/src/main/webapp/orders/imports/projectImport.zul:37 +msgid "The formats supported for import are MPP and PLANNER files." msgstr "" -#: org/libreplan/web/orders/OrderCRUDController.java:548 -#: org/libreplan/web/orders/OrderCRUDController.java:1424 -#: org/libreplan/web/orders/ProjectDetailsController.java:253 -#: org/libreplan/web/orders/OrderElementTreeController.java:764 -#: org/libreplan/web/workreports/WorkReportQueryController.java:155 -#: org/libreplan/web/resources/worker/WorkerCRUDController.java:794 -#: org/libreplan/web/resources/machine/MachineCRUDController.java:423 -#: org/libreplan/web/reports/OrderCostsPerResourceController.java:146 -#: org/libreplan/web/planner/company/CompanyPlanningController.java:309 -#: org/libreplan/web/planner/order/OrderPlanningController.java:361 -msgid "must be lower than end date" +#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:32 +msgid "Expense Sheets List" msgstr "" -#: org/libreplan/web/common/components/finders/TaskGroupFilterEnum.java:30 -#: org/libreplan/web/common/components/finders/OrderFilterEnum.java:30 -#: org/libreplan/web/common/components/finders/TaskElementFilterEnum.java:34 -#: org/libreplan/web/common/components/finders/OrderElementFilterEnum.java:36 -#: org/libreplan/web/workreports/WorkReportTypeCRUDController.java:785 -msgid "Label" +#: org/libreplan/web/orders/AssignedTaskQualityFormsToOrderElementController.java:175 +#: org/libreplan/web/orders/labels/AssignedLabelsController.java:87 +#: org/libreplan/web/orders/labels/AssignedLabelsController.java:128 +msgid "already assigned" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/components/_timOrderTimesheetSync.zul:45 -msgid "Export to Tim" +#: libreplan-webapp/src/main/webapp/planner/advance_allocation.zul:22 +msgid "LibrePlan: Advanced allocation" msgstr "" -#: org/libreplan/web/common/JobSchedulerModel.java:149 -msgid "Resource removed from task job" +#: libreplan-webapp/src/main/webapp/users/_listUsers.zul:30 +msgid "Superuser" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/advance/entities/AdvanceMeasurement.java:152 -#: libreplan-business/src/main/java/org/libreplan/business/advance/entities/AdvanceMeasurement.java:165 -msgid "The current value must be less than the max value." +#: libreplan-webapp/src/main/webapp/dashboard/_dashboardfororder.zul:90 +msgid "Resources usage" msgstr "" -#: libreplan-webapp/src/main/webapp/limitingresources/limitingResourcesLayout.zul:71 -#: libreplan-webapp/src/main/webapp/planner/advance_allocation.zul:68 -msgid "Pagination" +#: org/libreplan/web/templates/historicalAssignment/OrderElementHistoricalAssignmentComponent.java:153 +msgid "" +"The planning of this task is not in the current scenenario.\n" +"You should change to any of the following scenarios: {0}" msgstr "" -#: org/libreplan/web/scenarios/TransferOrdersModel.java:170 -msgid "Project version is the same in source and destination scenarios" +#: libreplan-webapp/src/main/webapp/scenarios/transferOrders.zul:38 +msgid "Source scenario" msgstr "" -#: libreplan-webapp/src/main/webapp/logs/_listRiskLog.zul:37 -msgid "ActionWhen" +#: org/libreplan/web/calendars/BaseCalendarCRUDController.java:344 +#: org/libreplan/web/common/Util.java:687 +msgid "Remove" msgstr "" -#: org/libreplan/web/resources/worker/WorkerCRUDController.java:960 -msgid "Confirm deleting this worker. Are you sure?" +#: org/libreplan/web/workreports/WorkReportCRUDController.java:238 +msgid "Timesheet removed successfully" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_edition.zul:282 -msgid "Customer reference" +#: org/libreplan/web/logs/IssueLogCRUDController.java:263 +msgid "Won't have" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportType.java:160 -msgid "timesheet template name is already being used" +#: libreplan-webapp/src/main/webapp/orders/components/_orderElementTree.zul:79 +msgid "Indent selected task" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/Resource.java:1130 -msgid "criterion satisfaction codes must be unique inside " -"a resource" +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportLine.java:213 +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportLine.java:213 +msgid "timesheet not specified" msgstr "" -#: org/libreplan/web/planner/order/SubcontractController.java:270 -#: org/libreplan/web/planner/order/SubcontractController.java:273 -msgid "Update task end" +#: org/libreplan/web/calendars/BaseCalendarCRUDController.java:451 +#: org/libreplan/web/common/BaseCRUDController.java:129 +#: org/libreplan/web/resources/worker/WorkerCRUDController.java:1021 +msgid "Create {0}" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/costcategories/entities/HourCost.java:86 -msgid "price cost not specified" +#: libreplan-webapp/src/main/webapp/resources/_criterions.zul:28 +#: libreplan-webapp/src/main/webapp/resources/criterions/_criterionsTree.zul:28 +msgid "New criterion" msgstr "" -#: org/libreplan/web/qualityforms/QualityFormCRUDController.java:290 -msgid "Quality Form" +#: libreplan-webapp/src/main/webapp/dashboard/_costStatus.zul:48 +msgid "Remaining time" msgstr "" -#: org/libreplan/web/users/settings/PasswordController.java:112 -msgid "Current password is incorrect" +#: libreplan-webapp/src/main/webapp/reports/projectStatusReport.zul:67 +#: libreplan-webapp/src/main/webapp/reports/workingProgressPerTaskReport.zul:75 +#: libreplan-webapp/src/main/webapp/reports/workingArrangementsPerOrderReport.zul:85 +#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:105 +#: libreplan-webapp/src/main/webapp/reports/orderCostsPerResource.zul:124 +#: libreplan-webapp/src/main/webapp/reports/completedEstimatedHoursPerTask.zul:77 +msgid "Filter by labels" msgstr "" -#: libreplan-webapp/src/main/webapp/workreports/_editWorkReportType.zul:30 -msgid "Managing fields and labels" +#: libreplan-webapp/src/main/webapp/myaccount/personalTimesheet.zul:57 +msgid "Previous" msgstr "" -#: libreplan-webapp/src/main/webapp/costcategories/_editCostCategory.zul:29 -msgid "Category data" +#: libreplan-webapp/src/main/webapp/orders/_edition.zul:237 +msgid "Budget margin" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_list.zul:24 -msgid "No projects" +#: libreplan-webapp/src/main/webapp/common/jobScheduling.zul:20 +msgid "LibrePlan: Job Scheduling" msgstr "" -#: libreplan-webapp/src/main/webapp/resources/machine/_machineConfigurationUnits.zul:40 -msgid "Human hours per machine working hour within configuration unit" +#: org/libreplan/web/workreports/WorkReportCRUDController.java:698 +msgid "Edit Timesheet" msgstr "" -#: org/libreplan/web/orders/OrderCRUDController.java:1371 -msgid "See scheduling" +#: org/libreplan/web/planner/order/SubcontractController.java:270 +#: org/libreplan/web/planner/order/SubcontractController.java:273 +msgid "Update task end" msgstr "" -#: libreplan-webapp/src/main/webapp/resources/search/allocation_selector.zul:129 -msgid "Assignment Type" +#: org/libreplan/web/subcontract/ReportAdvancesModel.java:223 +msgid "Problems connecting with client web service" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAuthorizations.zul:42 -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAuthorizations.zul:66 -#: libreplan-webapp/src/main/webapp/users/_editUser.zul:176 -#: libreplan-webapp/src/main/webapp/profiles/_listProfiles.zul:26 -msgid "Profile name" +#: org/libreplan/web/orders/TreeElementOperationsController.java:239 +#: org/libreplan/web/users/UserCRUDController.java:421 +#: org/libreplan/web/resources/worker/WorkerCRUDController.java:1103 +msgid "Unsaved changes will be lost. Would you like to continue?" msgstr "" -#: org/libreplan/web/planner/allocation/GenericAllocationRow.java:55 -msgid "Generic" +#: org/libreplan/web/planner/TaskElementAdapter.java:798 +msgid "All workers" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelLimitingResourceAllocation.zul:63 -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelNonLimitingResourceAllocation.zul:72 -msgid "Advanced search" +#: org/libreplan/web/planner/advances/AdvanceAssignmentPlanningCommand.java:69 +msgid "Progress assignment" msgstr "" -#: libreplan-webapp/src/main/webapp/myaccount/_expensesArea.zul:35 -#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:49 -msgid "First expense" +#: libreplan-webapp/src/main/webapp/orders/_edition.zul:319 +msgid "Delivery dates asked by the subcontractor. " msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_jiraSyncInfo.zul:26 -msgid "Synchronization order elements with JIRA issues was not completed for the following reasons:" +#: libreplan-business/src/main/java/org/libreplan/business/materials/entities/MaterialCategory.java:242 +#: libreplan-business/src/main/java/org/libreplan/business/materials/entities/MaterialCategory.java:242 +msgid "There are repeated material category codes" msgstr "" -#: org/libreplan/web/common/CustomMenuController.java:504 -#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:39 -msgid "Hours Worked Per Resource" +#: org/libreplan/web/planner/TaskElementAdapter.java:1215 +msgid "Project margin: {0}% ({1} hours)={2} hours" msgstr "" -#: org/libreplan/web/orders/labels/AssignedLabelsController.java:84 -#: org/libreplan/web/reports/WorkingProgressPerTaskController.java:128 -#: org/libreplan/web/reports/ProjectStatusReportController.java:192 -#: org/libreplan/web/reports/HoursWorkedPerWorkerController.java:312 -#: org/libreplan/web/reports/OrderCostsPerResourceController.java:173 -#: org/libreplan/web/reports/CompletedEstimatedHoursPerTaskController.java:134 -#: org/libreplan/web/reports/WorkingArrangementsPerOrderController.java:174 -msgid "please, select a label" +#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/TaskQualityFormItem.java:100 +#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/TaskQualityFormItem.java:100 +msgid "passed not specified" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReport.java:243 -msgid "task cannot be empty if it is shared by lines" +#: org/libreplan/web/users/OrderAuthorizationController.java:118 +msgid "" +"Could not add those authorizations to profile {0} because they were already " +"present." msgstr "" -#: org/libreplan/web/common/ConfigurationController.java:1015 -msgid "Deleting sequence" +#: org/libreplan/web/planner/chart/EarnedValueChartFiller.java:248 +msgid "SV" msgstr "" -#: org/libreplan/web/orders/labels/AssignedLabelsController.java:112 -msgid "please, select an item" +#: org/libreplan/importers/ImportRosterFromTim.java:165 +msgid "Import roster for department {0}" msgstr "" -#: org/libreplan/web/reports/SchedulingProgressPerOrderController.java:169 -#: org/libreplan/web/reports/SchedulingProgressPerOrderController.java:195 -msgid "SPREAD" +#: org/libreplan/web/orders/OrderCRUDController.java:1039 +#: org/libreplan/web/orders/OrderElementTreeController.java:776 +msgid "" +"You can not remove the project \"{0}\" because this one has imputed expense " +"sheets." msgstr "" -#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:150 -msgid "Go to personal timesheet" +#: libreplan-webapp/src/main/webapp/resources/search/allocation_selector_combo.zul:26 +msgid "Select criteria set or a resource to add" msgstr "" -#: libreplan-webapp/src/main/webapp/excetiondays/_editExceptionDayType.zul:78 -msgid "Inherited exception" +#: org/libreplan/web/planner/allocation/AllocationRow.java:829 +msgid "In the available periods {0} only {1} hours are available." msgstr "" -#: libreplan-webapp/src/main/webapp/common/configuration.zul:150 -msgid "Help the project developers to collect information about which LibrePlan version you are using" +#: libreplan-webapp/src/main/webapp/dashboard/_pipeline.zul:3 +msgid "Show archived column data" msgstr "" -#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:1179 +#: org/libreplan/web/orders/OrderCRUDController.java:548 +#: org/libreplan/web/orders/OrderCRUDController.java:1424 +#: org/libreplan/web/orders/ProjectDetailsController.java:253 +#: org/libreplan/web/orders/OrderElementTreeController.java:764 +#: org/libreplan/web/workreports/WorkReportQueryController.java:155 +#: org/libreplan/web/resources/worker/WorkerCRUDController.java:794 +#: org/libreplan/web/resources/machine/MachineCRUDController.java:423 +#: org/libreplan/web/reports/OrderCostsPerResourceController.java:146 +#: org/libreplan/web/planner/company/CompanyPlanningController.java:309 +#: org/libreplan/web/planner/order/OrderPlanningController.java:361 +msgid "must be lower than end date" +msgstr "" + +#: org/libreplan/web/resources/criterion/CriterionAdminController.java:96 msgid "" -"Spread progress cannot be removed. Please select another progress as spread." +"Disable hierarchy will cause criteria tree to be flattened. Are you sure?" msgstr "" -#: org/libreplan/web/templates/OrderTemplatesController.java:380 -msgid "Template cannot be removed because it has applications" +#: org/libreplan/web/common/CustomMenuController.java:532 +#: libreplan-webapp/src/main/webapp/reports/completedEstimatedHoursPerTask.zul:39 +msgid "Estimated/Planned Hours Per Task" msgstr "" -#: libreplan-webapp/src/main/webapp/materials/materials.zul:43 -#: libreplan-webapp/src/main/webapp/orders/components/_listOrderElementMaterials.zul:43 -#: libreplan-webapp/src/main/webapp/orders/components/_listOrderElementMaterials.zul:82 -#: libreplan-webapp/src/main/webapp/logs/_editIssueLog.zul:99 -msgid "Categories" +#: org/libreplan/web/planner/consolidations/AdvanceConsolidationModel.java:481 +msgid "Progress cannot be consolidated." msgstr "" -#: libreplan-webapp/src/main/webapp/templates/_editTemplate.zul:55 -msgid "Edit Template" +#: libreplan-webapp/src/main/webapp/orders/_synchronizationInfo.zul:20 +msgid "LibrePlan: Synchronization info" msgstr "" -#: org/libreplan/web/calendars/BaseCalendarModel.java:601 -msgid "Could not save the new calendar" +#: org/libreplan/web/users/dashboard/MyTasksAreaController.java:137 +msgid "Track time" msgstr "" -#: org/libreplan/web/dashboard/DashboardController.java:281 -msgid "Task Status" +#: libreplan-webapp/src/main/webapp/email/email_templates.zul:119 +msgid "Welcome page" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/imports/projectImport.zul:21 -msgid "LibrePlan: Import Project" +#: org/libreplan/web/common/CustomMenuController.java:361 +#: org/libreplan/web/advance/AdvanceTypeCRUDController.java:215 +msgid "Progress Types" msgstr "" -#: org/libreplan/web/planner/chart/EarnedValueChartFiller.java:250 -msgid "Budget At Completion" +#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:325 +#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:1007 +#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:1052 +msgid "" +"Progress Measurement cannot be deleted. Progress Measurement already " +"consolidated" msgstr "" -#: org/libreplan/web/resources/criterion/CriterionAdminController.java:112 -msgid "Tree {0} sucessfully flattened" +#: org/libreplan/web/advance/AdvanceTypeModel.java:89 +msgid "Progress type cannot be modified" msgstr "" -#: libreplan-webapp/src/main/webapp/users/_editUser.zul:89 -#: libreplan-webapp/src/main/webapp/myaccount/settings.zul:75 -#: libreplan-webapp/src/main/webapp/resources/worker/_edition.zul:142 -#: libreplan-webapp/src/main/webapp/resources/worker/_edition.zul:185 -msgid "E-mail" +#: libreplan-webapp/src/main/webapp/myaccount/settings.zul:93 +msgid "Select language" msgstr "" -#: org/libreplan/web/common/CustomMenuController.java:425 -#: org/libreplan/web/costcategories/TypeOfWorkHoursCRUDController.java:111 -#: libreplan-webapp/src/main/webapp/common/configuration.zul:188 -msgid "Hours Types" +#: org/libreplan/importers/JiraOrderElementSynchronizer.java:171 +#: org/libreplan/importers/JiraOrderElementSynchronizer.java:533 +msgid "Synchronization order {0}" msgstr "" -#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:61 -msgid "Job class name" +#: libreplan-webapp/src/main/webapp/dashboard/_pipeline.zul:11 +msgid "ACCEPTED" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_edition.zul:264 -msgid "Project type" +#: libreplan-webapp/src/main/webapp/logs/_editIssueLog.zul:145 +msgid "Date resolved" msgstr "" -#: org/libreplan/web/common/components/finders/TaskGroupFilterEnum.java:30 -#: org/libreplan/web/common/components/finders/OrderFilterEnum.java:30 -#: libreplan-webapp/src/main/webapp/orders/_edition.zul:273 -#: libreplan-webapp/src/main/webapp/orders/_projectDetails.zul:75 -#: libreplan-webapp/src/main/webapp/orders/_list.zul:34 -#: libreplan-webapp/src/main/webapp/subcontract/customerCommunications.zul:61 -msgid "Customer" +#: libreplan-business/src/main/java/org/libreplan/business/materials/entities/MaterialInfo.java:39 +#: libreplan-business/src/main/java/org/libreplan/business/materials/entities/MaterialInfo.java:39 +msgid "material not specified" msgstr "" -#: org/libreplan/web/common/components/finders/UserBandboxFinder.java:46 -msgid "Full name" +#: org/libreplan/web/common/CustomMenuController.java:568 +msgid "Preferences" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/advance_allocation.zul:44 -#: libreplan-webapp/src/main/webapp/planner/advance_allocation.zul:52 -msgid "Apply" +#: org/libreplan/web/users/UserCRUDController.java:502 +msgid "User limit reached" msgstr "" -#: org/libreplan/web/resourceload/ResourceLoadController.java:457 -msgid "To" +#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:157 +msgid "Year (optional)" msgstr "" -#: org/libreplan/web/calendars/BaseCalendarEditionController.java:602 -#: org/libreplan/web/calendars/BaseCalendarEditionController.java:1170 -msgid "Exception end date should be greater or equals than start date" +#: libreplan-webapp/src/main/webapp/common/configuration.zul:310 +msgid "Last value" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_orderElementTreeFilter.zul:66 -msgid "Labels without inheritance" +#: org/libreplan/web/common/JobSchedulerController.java:363 +#: org/libreplan/web/common/JobSchedulerController.java:368 +msgid "Job scheduling" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/common/entities/Configuration.java:474 -msgid "seconds planning warning not specified" +#: libreplan-webapp/src/main/webapp/common/layout/template.zul:84 +msgid "scenario" msgstr "" -#: org/libreplan/web/planner/tabs/PlanningTabCreator.java:197 -#: org/libreplan/web/planner/tabs/PlanningTabCreator.java:225 -msgid "Projects Planning" +#: org/libreplan/web/orders/OrderModel.java:756 +#: libreplan-webapp/src/main/webapp/materials/materials.zul:84 +#: libreplan-webapp/src/main/webapp/orders/_edition.zul:116 +#: libreplan-webapp/src/main/webapp/orders/_projectDetails.zul:44 +#: libreplan-webapp/src/main/webapp/orders/_orderElementDetails.zul:61 +#: libreplan-webapp/src/main/webapp/logs/_listRiskLog.zul:30 +#: libreplan-webapp/src/main/webapp/logs/_listIssueLog.zul:28 +#: libreplan-webapp/src/main/webapp/logs/_editRiskLog.zul:111 +#: libreplan-webapp/src/main/webapp/logs/_editIssueLog.zul:94 +#: libreplan-webapp/src/main/webapp/templates/_listTemplates.zul:35 +#: libreplan-webapp/src/main/webapp/templates/_editTemplate.zul:105 +#: libreplan-webapp/src/main/webapp/myaccount/_myTasksArea.zul:35 +#: libreplan-webapp/src/main/webapp/myaccount/_expensesArea.zul:32 +#: libreplan-webapp/src/main/webapp/scenarios/_edition.zul:43 +#: libreplan-webapp/src/main/webapp/qualityforms/_editQualityForm.zul:49 +#: libreplan-webapp/src/main/webapp/qualityforms/_listQualityForm.zul:39 +#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:55 +#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:89 +#: libreplan-webapp/src/main/webapp/email/email_templates.zul:83 +#: libreplan-webapp/src/main/webapp/resources/machine/_listMachines.zul:36 +#: libreplan-webapp/src/main/webapp/resources/machine/_editMachine.zul:62 +#: libreplan-webapp/src/main/webapp/resources/criterions/_edition.zul:67 +msgid "Description" msgstr "" -#: org/libreplan/web/scenarios/TransferOrdersController.java:181 -msgid "Transfer" +#: org/libreplan/web/subcontract/FilterCommunicationEnum.java:29 +msgid "Not Reviewed" msgstr "" -#: org/libreplan/web/costcategories/CostCategoryCRUDController.java:280 -#: org/libreplan/web/workreports/WorkReportCRUDController.java:1107 -#: org/libreplan/web/workreports/WorkReportCRUDController.java:1339 -msgid "Please, select an item" +#: libreplan-webapp/src/main/webapp/common/pageNotFound.zul:49 +msgid "If you reached this page from another page of LibrePlan please notify us in order to fix it as soon as possible." msgstr "" -#: org/libreplan/web/workreports/WorkReportCRUDController.java:447 -msgid "Effort must be greater than zero" +#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:21 +msgid "LibrePlan: Expenses" msgstr "" -#: org/libreplan/web/reports/ProjectStatusReportController.java:114 -msgid "You should filter the report by project, labels or criteria" +#: org/libreplan/web/orders/OrderCRUDController.java:534 +#: org/libreplan/web/orders/OrderCRUDController.java:1412 +#: org/libreplan/web/orders/ProjectDetailsController.java:237 +#: org/libreplan/web/orders/OrderElementTreeController.java:750 +#: org/libreplan/web/workreports/WorkReportQueryController.java:139 +#: org/libreplan/web/resources/worker/WorkerCRUDController.java:784 +#: org/libreplan/web/resources/machine/MachineCRUDController.java:407 +#: org/libreplan/web/planner/company/CompanyPlanningController.java:293 +#: org/libreplan/web/planner/order/OrderPlanningController.java:345 +msgid "must be after start date" msgstr "" -#: libreplan-webapp/src/main/webapp/limitingresources/limitingResourcesLayout.zul:63 -msgid "Zoom" +#: org/libreplan/web/templates/TemplatesTreeComponent.java:68 +msgid "Delete Template element" msgstr "" -#: libreplan-webapp/src/main/webapp/excetiondays/_listExceptionDayTypes.zul:33 -msgid "Overallocated" +#: org/libreplan/web/users/UserCRUDController.java:435 +msgid "You do not have permissions to go to edit worker window" msgstr "" -#: org/libreplan/web/common/CustomMenuController.java:550 -#: libreplan-webapp/src/main/webapp/reports/timeLineMaterialReport.zul:39 -msgid "Materials Needed At Date" +#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/QualityFormItem.java:81 +#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/QualityFormItem.java:81 +msgid "quality form item position not specified" msgstr "" -#: libreplan-webapp/src/main/webapp/resources/search/allocation_selector.zul:108 -msgid "Resources matching selected criteria" +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementTaskQualityForms.zul:54 +#: libreplan-webapp/src/main/webapp/qualityforms/_editQualityForm.zul:66 +msgid "Report progress" msgstr "" -#: libreplan-webapp/src/main/webapp/limitingresources/manualAllocation.zul:84 -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_allocationConfiguration.zul:27 -msgid "Allocation configuration" +#: libreplan-webapp/src/main/webapp/orders/imports/projectImport.zul:21 +msgid "LibrePlan: Import Project" msgstr "" -#: org/libreplan/web/common/CustomMenuController.java:349 -#: libreplan-webapp/src/main/webapp/orders/imports/projectImport.zul:52 -msgid "Calendars" +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementCriterionRequirements.zul:177 +msgid "Hours Group" msgstr "" -#: org/libreplan/web/resources/criterion/CriterionsModel.java:179 -msgid "{0} not found type for criterion " +#: libreplan-webapp/src/main/webapp/resources/search/allocation_selector.zul:136 +msgid "Current selection" msgstr "" -#: org/libreplan/web/orders/AssignedTaskQualityFormsToOrderElementController.java:363 -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAdvances.zul:51 -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAdvances.zul:81 -#: libreplan-webapp/src/main/webapp/advance/_editAdvanceTypes.zul:74 -#: libreplan-webapp/src/main/webapp/qualityforms/_editQualityForm.zul:86 -#: libreplan-webapp/src/main/webapp/planner/order.zul:105 -msgid "Percentage" +#: libreplan-webapp/src/main/webapp/orders/_orderElementDetails.zul:32 +#: libreplan-webapp/src/main/webapp/templates/_historicalAssignment.zul:38 +#: libreplan-webapp/src/main/webapp/subcontract/subcontractedTasks.zul:53 +#: libreplan-webapp/src/main/webapp/workreports/workReportQuery.zul:118 +msgid "Task name" msgstr "" -#: libreplan-webapp/src/main/webapp/profiles/profiles.zul:23 -msgid "LibrePlan: Profiles" +#: libreplan-webapp/src/main/webapp/workreports/_editWorkReportType.zul:29 +msgid "Report structure" msgstr "" -#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:673 -msgid "Calculated progress can not be modified" +#: org/libreplan/web/calendars/BaseCalendarCRUDController.java:377 +msgid "" +"Default calendar cannot be removed. Please, change the default calendar in " +"the Main Settings window before." msgstr "" -#: libreplan-webapp/src/main/webapp/orders/components/_jiraOrderElementSync.zul:34 -msgid "JIRA label" +#: org/libreplan/web/users/settings/SettingsController.java:127 +msgid "Settings saved" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/CriterionType.java:408 -msgid "criterion codes must be unique inside a criterion type" +#: libreplan-business/src/main/java/org/libreplan/business/materials/entities/UnitType.java:76 +#: libreplan-business/src/main/java/org/libreplan/business/materials/entities/UnitType.java:76 +msgid "measure not specified" msgstr "" -#: org/libreplan/web/calendars/BaseCalendarCRUDController.java:442 -#: libreplan-webapp/src/main/webapp/orders/_edition.zul:155 -#: libreplan-webapp/src/main/webapp/orders/_projectDetails.zul:82 -#: libreplan-webapp/src/main/webapp/templates/_editTemplate.zul:118 -#: libreplan-webapp/src/main/webapp/common/configuration.zul:203 -#: libreplan-webapp/src/main/webapp/resources/worker/_edition.zul:38 -#: libreplan-webapp/src/main/webapp/resources/machine/_editMachine.zul:32 -#: libreplan-webapp/src/main/webapp/planner/order.zul:154 -msgid "Calendar" +#: org/libreplan/web/orders/OrderCRUDController.java:507 +msgid "Deadline cannot be empty in backwards mode" msgstr "" -#: org/libreplan/web/workreports/WorkReportCRUDController.java:238 -msgid "Timesheet removed successfully" +#: org/libreplan/web/limitingresources/LimitingResourcesController.java:464 +msgid "Remove queue-based resource element" msgstr "" -#: org/libreplan/web/common/CustomMenuController.java:444 -msgid "User Accounts" +#: libreplan-webapp/src/main/webapp/common/pageNotFound.zul:40 +msgid "The page that you are requesting does not exist." msgstr "" -#: libreplan-webapp/src/main/webapp/common/configuration.zul:450 -msgid "Property strategy" +#: libreplan-webapp/src/main/webapp/resources/criterions/_edition.zul:50 +msgid "Multiple values per resource" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/TaskQualityFormItem.java:87 -msgid "position not specified" +#: libreplan-webapp/src/main/webapp/logs/_editIssueLog.zul:130 +msgid "Timing" msgstr "" -#: libreplan-webapp/src/main/webapp/myaccount/_expensesArea.zul:41 -#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:37 -msgid "New expense sheet" +#: org/libreplan/web/orders/OrderCRUDController.java:1349 +#: org/libreplan/web/orders/OrderElementTreeController.java:539 +#: org/libreplan/web/templates/TemplatesTreeController.java:69 +#: org/libreplan/web/calendars/BaseCalendarCRUDController.java:335 +#: org/libreplan/web/subcontract/CustomerCommunicationCRUDController.java:196 +#: org/libreplan/web/subcontract/SubcontractorCommunicationCRUDController.java:232 +#: org/libreplan/web/common/Util.java:668 +#: org/libreplan/web/limitingresources/QueueComponent.java:502 +#: libreplan-webapp/src/main/webapp/excetiondays/_editExceptionDayType.zul:26 +#: libreplan-webapp/src/main/webapp/unittypes/_editUnitType.zul:25 +#: libreplan-webapp/src/main/webapp/templates/_listTemplates.zul:58 +#: libreplan-webapp/src/main/webapp/typeofworkhours/_listTypesOfWorkHours.zul:45 +#: libreplan-webapp/src/main/webapp/profiles/_listProfiles.zul:36 +#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:55 +#: libreplan-webapp/src/main/webapp/advance/_editAdvanceTypes.zul:26 +#: libreplan-webapp/src/main/webapp/externalcompanies/_listExternalCompanies.zul:43 +#: libreplan-webapp/src/main/webapp/qualityforms/_listQualityForm.zul:49 +#: libreplan-webapp/src/main/webapp/costcategories/_listCostCategories.zul:41 +#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:93 +#: libreplan-webapp/src/main/webapp/workreports/workReportQuery.zul:151 +#: libreplan-webapp/src/main/webapp/workreports/_listWorkReportTypes.zul:37 +#: libreplan-webapp/src/main/webapp/labels/_listLabelTypes.zul:37 +#: libreplan-webapp/src/main/webapp/resources/worker/_workRelationships.zul:42 +#: libreplan-webapp/src/main/webapp/resources/worker/_listVirtualWorkers.zul:47 +#: libreplan-webapp/src/main/webapp/resources/criterions/_edition.zul:28 +#: libreplan-webapp/src/main/webapp/resources/criterions/_workers.zul:33 +#: libreplan-webapp/src/main/webapp/resources/criterions/_list.zul:40 +msgid "Edit" msgstr "" -#: org/libreplan/web/calendars/BaseCalendarCRUDController.java:458 -#: org/libreplan/web/common/BaseCRUDController.java:135 -#: org/libreplan/web/resources/worker/WorkerCRUDController.java:1027 -msgid "Edit {0}: {1}" +#: org/libreplan/web/resources/worker/WorkerCRUDController.java:1104 +msgid "Confirm editing user" msgstr "" -#: org/libreplan/web/common/ConfigurationController.java:332 -msgid "Cannot connect to LDAP server" +#: org/libreplan/web/planner/company/CompanyPlanningModel.java:348 +#: org/libreplan/web/planner/order/OrderPlanningModel.java:705 +msgid "Earned value" msgstr "" -#: org/libreplan/web/common/CustomMenuController.java:493 -msgid "Received From Customers" +#: org/libreplan/web/orders/OrderElementController.java:133 +msgid "Edit task {0}" msgstr "" -#: org/libreplan/web/reports/WorkingProgressPerTaskController.java:133 -#: org/libreplan/web/reports/HoursWorkedPerWorkerController.java:318 -#: org/libreplan/web/reports/OrderCostsPerResourceController.java:177 -#: org/libreplan/web/reports/CompletedEstimatedHoursPerTaskController.java:139 -#: org/libreplan/web/reports/WorkingArrangementsPerOrderController.java:179 -msgid "Label has already been added." +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_allocationConfiguration.zul:35 +msgid "Planned end" msgstr "" -#: libreplan-webapp/src/main/webapp/resources/worker/_list.zul:22 -msgid "Workers List" +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportLine.java:548 +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportLine.java:548 +msgid "there is a timesheet line in another work report marking as finished the same task" msgstr "" -#: org/libreplan/web/calendars/BaseCalendarEditionController.java:586 -#: org/libreplan/web/calendars/BaseCalendarEditionController.java:1154 -msgid "You should select a start date for the exception" +#: libreplan-webapp/src/main/webapp/myaccount/_myTasksArea.zul:38 +msgid "Work budgeted" msgstr "" -#: libreplan-webapp/src/main/webapp/resources/search/allocation_selector.zul:107 -msgid "Found resources" +#: libreplan-webapp/src/main/webapp/resources/search/allocation_selector.zul:41 +msgid "Criteria (Hold CTRL for multiple selection)" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementHours.zul:126 -msgid "Total expenses" +#: org/libreplan/importers/ExportTimesheetsToTim.java:127 +msgid "Product code should not be empty" msgstr "" -#: libreplan-webapp/src/main/webapp/email/email_templates.zul:124 -msgid "Project details page" +#: org/libreplan/web/orders/OrderCRUDController.java:1049 +msgid "" +"You can not remove the project \"{0}\" because it has time tracked at some " +"of its tasks" msgstr "" -#: org/libreplan/web/dashboard/DashboardController.java:237 -msgid "" -"Days Interval (Calculated as task completion end date minus estimated end " -"date)" +#: org/libreplan/web/scenarios/TransferOrdersModel.java:144 +msgid "Please select a source scenario" msgstr "" -#: libreplan-webapp/src/main/webapp/common/configuration.zul:45 -msgid "LDAP configuration" +#: org/libreplan/web/planner/reassign/ReassignCommand.java:209 +msgid "Reassignation" msgstr "" -#: libreplan-webapp/src/main/webapp/resources/search/allocation_selector.zul:110 -msgid "Availability" +#: org/libreplan/web/resources/worker/WorkerCRUDController.java:288 +msgid "Worker saved" msgstr "" -#: org/libreplan/web/common/ConfigurationController.java:468 -msgid "Connection unsuccessful" +#: libreplan-webapp/src/main/webapp/orders/_edition.zul:58 +#: libreplan-webapp/src/main/webapp/templates/_editTemplate.zul:61 +#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:164 +msgid "General data" msgstr "" -#: libreplan-webapp/src/main/webapp/users/_editUser.zul:36 -#: libreplan-webapp/src/main/webapp/email/email_templates.zul:44 -msgid "General user data" +#: org/libreplan/web/orders/criterionrequirements/AssignedCriterionRequirementController.java:412 +#: org/libreplan/web/limitingresources/LimitingResourcesController.java:611 +#: org/libreplan/web/planner/taskedition/TaskPropertiesController.java:389 +#: org/libreplan/web/planner/taskedition/TaskPropertiesController.java:808 +#: org/libreplan/web/planner/order/SaveCommandBuilder.java:329 +#: org/libreplan/web/planner/allocation/AdvancedAllocationController.java:1620 +#: org/libreplan/web/planner/allocation/stretches/StretchesFunctionController.java:121 +#: org/libreplan/importers/notifications/ComposeMessage.java:194 +msgid "Error" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementFiles.zul:26 -msgid "Upload" +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportLine.java:459 +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportLine.java:459 +msgid "description value: the timesheet has not assigned the description field" msgstr "" -#: libreplan-webapp/src/main/webapp/limitingresources/manualAllocation.zul:96 -msgid "Earliest date" +#: org/libreplan/web/resources/worker/WorkerCRUDController.java:182 +msgid "Not bound" msgstr "" -#: org/libreplan/web/logs/IssueLogCRUDController.java:410 -msgid "issuelog-number" +#: org/libreplan/web/planner/order/OrderPlanningController.java:311 +msgid "filtering" msgstr "" -#: org/libreplan/web/planner/reassign/Type.java:43 -msgid "From today" +#: org/libreplan/web/planner/chart/EarnedValueChartFiller.java:249 +msgid "BAC" msgstr "" -#: libreplan-webapp/src/main/webapp/common/jobScheduling.zul:20 -msgid "LibrePlan: Job Scheduling" +#: libreplan-webapp/src/main/webapp/logs/_editIssueLog.zul:125 +msgid "Assigned to" msgstr "" -#: org/libreplan/web/users/dashboard/PersonalTimesheetDTO.java:125 -msgid "Week {0}" +#: libreplan-webapp/src/main/webapp/myaccount/personalTimesheet.zul:171 +msgid "Finished" msgstr "" -#: libreplan-webapp/src/main/webapp/common/pageNotFound.zul:57 -msgid "Help/Info pages are not generated" +#: libreplan-webapp/src/main/webapp/templates/_historicalStatistics.zul:51 +msgid "Average of worked hours in finished applications" msgstr "" -#: org/libreplan/web/scenarios/TransferOrdersModel.java:144 -msgid "Please select a source scenario" +#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:117 +#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:212 +msgid "Day" msgstr "" -#: org/libreplan/web/expensesheet/ExpenseSheetCRUDController.java:234 -msgid "item" +#: libreplan-webapp/src/main/webapp/dashboard/_dashboardfororder.zul:108 +msgid "Load percentage of resources participating in the project while they are assigned" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAdvances.zul:28 -msgid "Add new progress assignment" +#: libreplan-business/src/main/java/org/libreplan/business/labels/entities/LabelType.java:125 +#: libreplan-business/src/main/java/org/libreplan/business/labels/entities/LabelType.java:125 +msgid "label type name is already in use" msgstr "" -#: org/libreplan/web/logs/IssueLogCRUDController.java:271 -msgid "Critical" +#: libreplan-webapp/src/main/webapp/workreports/_editWorkReportType.zul:152 +msgid "Label Type fields" msgstr "" -#: org/libreplan/web/workreports/WorkReportCRUDController.java:1640 -msgid "Please select a worker" +#: org/libreplan/web/calendars/BaseCalendarEditionController.java:1270 +msgid "End date can only be deleted in the last activation" msgstr "" -#: org/libreplan/web/resources/worker/WorkerCRUDController.java:182 -msgid "Not bound" +#: org/libreplan/web/materials/MaterialsModel.java:179 +#: org/libreplan/web/calendars/BaseCalendarModel.java:602 +#: org/libreplan/web/scenarios/ScenarioModel.java:220 +#: org/libreplan/web/qualityforms/QualityFormCRUDController.java:190 +#: org/libreplan/web/qualityforms/QualityFormCRUDController.java:204 +#: org/libreplan/web/labels/LabelTypeModel.java:154 +#: org/libreplan/web/labels/LabelTypeModel.java:180 +#: org/libreplan/web/labels/LabelTypeCRUDController.java:262 +msgid "{0} already exists" msgstr "" -#: libreplan-webapp/src/main/webapp/myaccount/settings.zul:118 -msgid "Resource load view" +#: org/libreplan/web/users/settings/PasswordController.java:112 +msgid "Current password is incorrect" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportLabelTypeAssignment.java:38 -msgid "label type not specified" +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAuthorizations.zul:31 +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAuthorizations.zul:56 +msgid "Read" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/components/_orderElementTree.zul:53 -msgid "Edit selected task" +#: libreplan-business/src/main/java/org/libreplan/business/costcategories/entities/ResourcesCostCategoryAssignment.java:102 +#: libreplan-business/src/main/java/org/libreplan/business/costcategories/entities/ResourcesCostCategoryAssignment.java:102 +msgid "cost assignment's start date not specified" msgstr "" -#: org/libreplan/web/email/EmailTemplateController.java:98 -msgid "E-mail template saved" +#: org/libreplan/web/common/components/finders/OrderElementBandboxFinder.java:51 +#: libreplan-webapp/src/main/webapp/templates/_historicalAssignment.zul:37 +msgid "Task code" msgstr "" -#: org/libreplan/web/resources/worker/WorkerCRUDController.java:397 -#: org/libreplan/web/resources/worker/WorkerCRUDController.java:438 -msgid "Edit Worker: {0}" +#: libreplan-webapp/src/main/webapp/resources/worker/_edition.zul:35 +#: libreplan-webapp/src/main/webapp/resources/machine/_editMachine.zul:31 +msgid "Assigned criteria" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelSubcontract.zul:84 -msgid "Material assignments" +#: org/libreplan/web/users/settings/SettingsController.java:161 +msgid "Max value = 999" msgstr "" -#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:669 -#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:697 -msgid "This progress type cannot be modified" +#: org/libreplan/web/orders/files/OrderFilesController.java:283 +msgid "Please, make repository" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_orderFilter.zul:35 -#: libreplan-webapp/src/main/webapp/orders/_orderElementTreeFilter.zul:48 -#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:55 -#: libreplan-webapp/src/main/webapp/workreports/workReportQuery.zul:58 -msgid "from" +#: libreplan-business/src/main/java/org/libreplan/business/calendars/entities/ResourceCalendar.java:79 +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportLine.java:167 +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/CriterionSatisfaction.java:206 +#: libreplan-business/src/main/java/org/libreplan/business/calendars/entities/ResourceCalendar.java:79 +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/CriterionSatisfaction.java:206 +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportLine.java:167 +msgid "resource not specified" msgstr "" -#: libreplan-webapp/src/main/webapp/common/configuration.zul:132 -msgid "Enable/Disable" +#: org/libreplan/web/planner/taskedition/TaskPropertiesController.java:387 +msgid "" +"This resource allocation type is incompatible. The task has an associated " +"order element which has a progress that is of type subcontractor. " msgstr "" -#: org/libreplan/web/resourceload/ResourceLoadController.java:455 -msgid "From" +#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/Order.java:371 +#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/Order.java:371 +msgid "the project must have a deadline" msgstr "" -#: libreplan-webapp/src/main/webapp/workreports/_editWorkReportType.zul:109 -msgid "Hours Management" +#: org/libreplan/web/resources/worker/WorkerCRUDController.java:430 +msgid "Edit Virtual Workers Group: {0}" msgstr "" -#: org/libreplan/web/planner/chart/EarnedValueChartFiller.java:255 -msgid "Schedule Performance Index" +#: libreplan-webapp/src/main/webapp/logs/_listRiskLog.zul:32 +msgid "CreatedBy" msgstr "" -#: libreplan-webapp/src/main/webapp/common/configuration.zul:509 -msgid "Application properties" +#: org/libreplan/web/common/CustomMenuController.java:504 +#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:39 +msgid "Hours Worked Per Resource" msgstr "" -#: org/libreplan/web/orders/AssignedTaskQualityFormsToOrderElementController.java:175 -#: org/libreplan/web/orders/labels/AssignedLabelsController.java:87 -#: org/libreplan/web/orders/labels/AssignedLabelsController.java:128 -msgid "already assigned" +#: libreplan-webapp/src/main/webapp/orders/_edition.zul:322 +msgid "New end date for the customer" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementHours.zul:25 -msgid "Imputed hours calculation" +#: org/libreplan/web/calendars/BaseCalendarEditionController.java:1116 +msgid "inherited exception can not be removed" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_edition.zul:166 -msgid "Dependencies have priority" +#: libreplan-business/src/main/java/org/libreplan/business/costcategories/entities/CostCategory.java:349 +#: libreplan-business/src/main/java/org/libreplan/business/costcategories/entities/CostCategory.java:349 +msgid "the cost category name has to be unique and it is already in use" msgstr "" -#: org/libreplan/web/common/components/TwoWaySelector.java:68 -msgid "Assigned" +#: org/libreplan/web/planner/allocation/AdvancedAllocationController.java:1626 +msgid "Confirm change" msgstr "" -#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:174 -msgid "here" +#: libreplan-webapp/src/main/webapp/common/configuration.zul:150 +msgid "Allow collection of anonymous statistics to help us improve LibrePlan" msgstr "" -#: org/libreplan/web/common/components/bandboxsearch/BandboxMultipleSearch.java:231 -msgid "filter already exists" +#: libreplan-webapp/src/main/webapp/limitingresources/limitingResourcesLayout.zul:72 +msgid "Page down" msgstr "" -#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:32 -msgid "Expense Sheets List" +#: libreplan-webapp/src/main/webapp/common/pageNotFound.zul:43 +msgid "If you entered the URL directly in the navigation bar of the browser, please review it or click in the following link in order to go to initial page: " msgstr "" -#: org/libreplan/web/orders/OrderCRUDController.java:1081 -#: org/libreplan/web/resourceload/ResourceLoadController.java:1053 -msgid "The project has no scheduled elements" +#: org/libreplan/web/planner/TaskElementAdapter.java:1241 +msgid ". Already spent: {0}" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAuthorizations.zul:31 -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAuthorizations.zul:56 -msgid "Read" +#: libreplan-business/src/main/java/org/libreplan/business/expensesheet/entities/ExpenseSheet.java:139 +#: libreplan-business/src/main/java/org/libreplan/business/expensesheet/entities/ExpenseSheet.java:139 +msgid "The expense sheet line codes must be unique." msgstr "" -#: org/libreplan/web/common/components/finders/OrderBandboxFinder.java:44 -#: libreplan-webapp/src/main/webapp/subcontract/subcontractedTasks.zul:51 -#: libreplan-webapp/src/main/webapp/subcontract/subcontractorCommunications.zul:63 -msgid "Project name" +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/MachineWorkersConfigurationUnit.java:166 +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/MachineWorkersConfigurationUnit.java:166 +msgid "All machine worker assignments must have a start date earlier than the end date" msgstr "" -#: libreplan-webapp/src/main/webapp/myaccount/settings.zul:22 -msgid "LibrePlan: Settings" +#: libreplan-webapp/src/main/webapp/orders/_listHoursGroupCriterionRequirement.zul:25 +msgid "No criterions" msgstr "" -#: libreplan-webapp/src/main/webapp/excetiondays/_listExceptionDayTypes.zul:32 -#: libreplan-webapp/src/main/webapp/excetiondays/_editExceptionDayType.zul:62 -msgid "Color" +#: libreplan-webapp/src/main/webapp/orders/components/_jiraOrderElementSync.zul:39 +msgid "Sync with JIRA" msgstr "" -#: org/libreplan/web/common/ConfigurationModel.java:254 -msgid "Some sequences to be removed do not exist" +#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:38 +msgid "Timesheets List" msgstr "" -#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:267 -msgid "Work weeks list" +#: libreplan-webapp/src/main/webapp/dashboard/_pipeline.zul:9 +msgid "OFFERED" msgstr "" -#: org/libreplan/web/planner/chart/EarnedValueChartFiller.java:249 -msgid "Schedule Variance" +#: org/libreplan/web/common/ConfigurationController.java:265 +msgid "Scheduling or unscheduling of jobs for this connector is not completed" msgstr "" -#: org/libreplan/web/workreports/WorkReportTypeCRUDController.java:714 -msgid "The length must be greater than 0 and not empty" +#: org/libreplan/web/subcontract/ReportAdvancesController.java:198 +msgid "Progress sent successfully" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/components/_listOrderElementLabels.zul:97 -msgid "Create & Assign" +#: org/libreplan/web/materials/MaterialsController.java:464 +#: libreplan-webapp/src/main/webapp/materials/materials.zul:74 +msgid "List of materials for all categories (select one to filter)" msgstr "" -#: org/libreplan/web/calendars/BaseCalendarCRUDController.java:327 -msgid "Create copy" +#: libreplan-webapp/src/main/webapp/dashboard/_costStatus.zul:60 +msgid "Project closing previsions" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementHours.zul:269 -msgid "Money spent" +#: libreplan-webapp/src/main/webapp/orders/components/_listOrderElementMaterials.zul:140 +msgid "Assign materials" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/common/entities/Configuration.java:185 -msgid "userId not specified" +#: org/libreplan/web/users/dashboard/ExpensesAreaController.java:80 +msgid "Delete expense sheet \"{0}\". Are you sure?" msgstr "" -#: org/libreplan/web/workreports/WorkReportCRUDController.java:875 -msgid "Finish Hour" +#: libreplan-webapp/src/main/webapp/users/_editUser.zul:75 +#: libreplan-webapp/src/main/webapp/myaccount/changePassword.zul:77 +#: libreplan-webapp/src/main/webapp/resources/worker/_edition.zul:180 +msgid "Password confirmation" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelSubcontract.zul:78 -msgid "Node without children" +#: libreplan-webapp/src/main/webapp/reports/schedulingProgressPerOrderReport.zul:153 +#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerInAMonthReport.zul:75 +#: libreplan-webapp/src/main/webapp/reports/workingProgressPerTaskReport.zul:166 +#: libreplan-webapp/src/main/webapp/reports/workingArrangementsPerOrderReport.zul:183 +#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:210 +#: libreplan-webapp/src/main/webapp/reports/orderCostsPerResource.zul:221 +#: libreplan-webapp/src/main/webapp/reports/timeLineMaterialReport.zul:154 +#: libreplan-webapp/src/main/webapp/reports/completedEstimatedHoursPerTask.zul:173 +msgid "Output format" msgstr "" -#: libreplan-webapp/src/main/webapp/common/layout/login.zul:208 -msgid "Please use some of the compatible browsers: Chrome, Firefox, Safari or Epiphany." +#: org/libreplan/web/limitingresources/QueueComponent.java:504 +msgid "Unassign" msgstr "" -#: org/libreplan/web/planner/tabs/MultipleTabsPlannerController.java:213 -msgid "changing perspective" +#: libreplan-business/src/main/java/org/libreplan/business/advance/entities/AdvanceType.java:235 +#: libreplan-business/src/main/java/org/libreplan/business/advance/entities/AdvanceType.java:235 +msgid "default maximum value of percentage progress type must be 100" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementCriterionRequirements.zul:168 -msgid "Criterion Requirements" +#: org/libreplan/web/limitingresources/ManualAllocationController.java:509 +msgid "END" msgstr "" -#: org/libreplan/web/resourceload/ResourceLoadModel.java:984 -msgid "Specific Allocations" +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementHours.zul:126 +msgid "Total expenses" msgstr "" -#: libreplan-webapp/src/main/webapp/subcontract/subcontractorCommunications.zul:20 -msgid "LibrePlan: Received From Subcontractors" +#: org/libreplan/web/calendars/BaseCalendarCRUDController.java:139 +#: org/libreplan/web/calendars/BaseCalendarCRUDController.java:156 +msgid "Base calendar \"{0}\" saved" msgstr "" -#: org/libreplan/web/orders/OrderCRUDController.java:1057 -#: org/libreplan/web/templates/OrderTemplatesController.java:369 -#: org/libreplan/web/users/dashboard/ExpensesAreaController.java:81 -#: org/libreplan/web/common/BaseCRUDController.java:307 -#: org/libreplan/web/qualityforms/QualityFormCRUDController.java:155 -msgid "Confirm" +#: org/libreplan/web/resources/criterion/CriterionTreeModel.java:342 +msgid "Name of criterion is empty." msgstr "" -#: org/libreplan/web/users/UserCRUDController.java:109 -msgid "Default user \"admin\" cannot be removed as it is mandatory" +#: libreplan-webapp/src/main/webapp/templates/_editTemplate.zul:55 +msgid "Edit Template" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_orderFilter.zul:40 -#: libreplan-webapp/src/main/webapp/orders/_orderElementTreeFilter.zul:54 -#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:57 -#: libreplan-webapp/src/main/webapp/workreports/workReportQuery.zul:62 -#: libreplan-webapp/src/main/webapp/resources/search/_resourceFilter.zul:42 -msgid "to" +#: org/libreplan/web/common/ConfigurationController.java:1015 +msgid "Deleting sequence" msgstr "" -#: libreplan-webapp/src/main/webapp/common/layout/template.zul:148 -msgid "The admin's account password remains the default one. This is insecure" +#: libreplan-webapp/src/main/webapp/myaccount/_expensesArea.zul:41 +#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:37 +msgid "New expense sheet" msgstr "" -#: org/libreplan/web/orders/assigntemplates/TemplateFinderPopup.java:134 -msgid "Choosing Template" +#: org/libreplan/web/orders/assigntemplates/TemplateFinderPopup.java:121 +msgid "Create task" msgstr "" -#: libreplan-webapp/src/main/webapp/reports/schedulingProgressPerOrderReport.zul:100 -#: libreplan-webapp/src/main/webapp/reports/workingProgressPerTaskReport.zul:62 -#: libreplan-webapp/src/main/webapp/reports/workingArrangementsPerOrderReport.zul:43 -#: libreplan-webapp/src/main/webapp/reports/orderCostsPerResource.zul:74 -#: libreplan-webapp/src/main/webapp/reports/timeLineMaterialReport.zul:74 -#: libreplan-webapp/src/main/webapp/reports/completedEstimatedHoursPerTask.zul:61 -msgid "Filter by projects" +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReport.java:455 +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReport.java:455 +msgid "only one timesheet line per day and task is allowed in personal timesheets" msgstr "" -#: libreplan-webapp/src/main/webapp/costcategories/_listCostCategories.zul:22 -msgid "Cost Categories List" +#: org/libreplan/web/users/dashboard/UserDashboardController.java:71 +msgid "Expense sheet \"{0}\" saved" msgstr "" -#: org/libreplan/web/materials/MaterialsController.java:344 -msgid "Materials saved" +#: org/libreplan/web/reports/WorkingProgressPerTaskController.java:133 +#: org/libreplan/web/reports/HoursWorkedPerWorkerController.java:318 +#: org/libreplan/web/reports/OrderCostsPerResourceController.java:177 +#: org/libreplan/web/reports/CompletedEstimatedHoursPerTaskController.java:139 +#: org/libreplan/web/reports/WorkingArrangementsPerOrderController.java:179 +msgid "Label has already been added." msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementHours.zul:177 -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementHours.zul:282 -msgid "%" +#: libreplan-webapp/src/main/webapp/planner/print_configuration.zul:33 +msgid "Show resource assignments" msgstr "" -#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:40 -#: libreplan-webapp/src/main/webapp/common/_listJobScheduling.zul:29 -msgid "Job name" +#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:709 +msgid "" +"Subcontractor values are read only because they were reported by the " +"subcontractor company" msgstr "" -#: libreplan-webapp/src/main/webapp/calendars/_createNewVersion.zul:23 -#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:259 -msgid "Create new Workweek" +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementHours.zul:252 +msgid "Hours cost" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/TaskQualityForm.java:98 -msgid "Each date must be greater than the dates of the previous task quality form items." +#: libreplan-webapp/src/main/webapp/resources/search/allocation_selector.zul:137 +msgid "[generic all workers]" msgstr "" -#: org/libreplan/web/orders/files/OrderFilesController.java:183 -msgid "Confirm deleting this file. Are you sure?" +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelSubcontract.zul:95 +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelSubcontract.zul:113 +msgid "Deliver date" msgstr "" -#: libreplan-webapp/src/main/webapp/subcontract/subcontractedTasks.zul:22 -msgid "LibrePlan: Send To Subcontractors" +#: org/libreplan/web/resourceload/ResourceLoadController.java:728 +msgid "Show all elements" msgstr "" -#: org/libreplan/web/planner/allocation/AllocationRow.java:446 -msgid "Only {0} resources per day were achieved for current allocation" +#: libreplan-webapp/src/main/webapp/limitingresources/limitingResourcesLayout.zul:150 +msgid "Earlier starting date" msgstr "" -#: org/libreplan/web/orders/OrderCRUDController.java:1055 -msgid "" -"This project is a subcontracted project. If you delete it, you won't be able " -"to report progress anymore. Are you sure?" +#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:115 +msgid "Allowed Special Characters" msgstr "" -#: org/libreplan/web/labels/LabelTypeModel.java:278 -msgid "The name of the label is empty." +#: libreplan-webapp/src/main/webapp/resources/search/_resourceFilter.zul:52 +msgid "Apply filtering to resources satisfying required criteria" msgstr "" -#: org/libreplan/web/templates/historicalAssignment/OrderElementHistoricalAssignmentComponent.java:155 -#: org/libreplan/web/limitingresources/LimitingResourcesController.java:331 -#: org/libreplan/web/resourceload/ResourceLoadController.java:1053 -#: org/libreplan/web/resourceload/ResourceLoadController.java:1058 -#: org/libreplan/web/planner/taskedition/EditTaskController.java:374 -#: org/libreplan/web/planner/order/SaveCommandBuilder.java:347 -#: org/libreplan/web/planner/allocation/AdvancedAllocationController.java:764 -msgid "Information" +#: org/libreplan/web/planner/chart/EarnedValueChartFiller.java:251 +msgid "VAC" msgstr "" -#: libreplan-webapp/src/main/webapp/logs/_logsFilter.zul:26 -msgid "Apply filtering to issues" +#: libreplan-webapp/src/main/webapp/planner/_legendLoadChartCompany.zul:44 +msgid "Assigned load" msgstr "" -#: org/libreplan/web/orders/TimSynchronizationController.java:147 -msgid "Exporting timesheets to Tim failed. Check the Tim connector" +#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:163 +msgid "End Date" msgstr "" -#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:1190 -msgid "Value is not valid. It must be smaller than max value" +#: org/libreplan/web/limitingresources/ManualAllocationController.java:522 +msgid "Manual assignment" msgstr "" -#: org/libreplan/web/calendars/BaseCalendarModel.java:534 -msgid "Date cannot include the entire next work week" +#: org/libreplan/web/orders/TreeElementOperationsController.java:248 +msgid "Operation cannot be done" msgstr "" -#: org/libreplan/web/planner/taskedition/TaskPropertiesController.java:682 -msgid "" -"IMPORTANT: Don't forget to communicate to subcontractor that his contract " -"has been cancelled" +#: org/libreplan/web/reports/SchedulingProgressPerOrderController.java:107 +#: org/libreplan/web/reports/TimeLineRequiredMaterialController.java:113 +#: org/libreplan/web/reports/OrderCostsPerResourceController.java:117 +msgid "This project has already been added." msgstr "" -#: libreplan-webapp/src/main/webapp/users/_listUsers.zul:30 -msgid "Superuser" +#: libreplan-webapp/src/main/webapp/myaccount/settings.zul:138 +#: libreplan-webapp/src/main/webapp/common/configuration.zul:93 +#: libreplan-webapp/src/main/webapp/planner/print_configuration.zul:39 +msgid "Show progress" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/expensesheet/entities/ExpenseSheetLine.java:146 -msgid "expense sheet not specified" -msgstr "" +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementFiles.zul:40 +msgid "Uploaded by" +msgstr "" -#: org/libreplan/web/common/BaseCRUDController.java:313 -msgid "{0} \"{1}\" deleted" +#: libreplan-webapp/src/main/webapp/users/_listUsers.zul:31 +#: libreplan-webapp/src/main/webapp/users/_editUser.zul:93 +msgid "Authentication type" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/OrderLineGroup.java:1116 -msgid "indirect progress assignments should have different types" +#: libreplan-webapp/src/main/webapp/reports/schedulingProgressPerOrderReport.zul:165 +#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerInAMonthReport.zul:88 +#: libreplan-webapp/src/main/webapp/reports/projectStatusReport.zul:174 +#: libreplan-webapp/src/main/webapp/reports/workingProgressPerTaskReport.zul:179 +#: libreplan-webapp/src/main/webapp/reports/workingArrangementsPerOrderReport.zul:196 +#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:221 +#: libreplan-webapp/src/main/webapp/reports/orderCostsPerResource.zul:236 +#: libreplan-webapp/src/main/webapp/reports/timeLineMaterialReport.zul:166 +#: libreplan-webapp/src/main/webapp/reports/completedEstimatedHoursPerTask.zul:186 +msgid "direct link" msgstr "" -#: org/libreplan/web/orders/OrderCRUDController.java:444 -msgid "Forward" +#: org/libreplan/web/calendars/BaseCalendarEditionController.java:289 +msgid "Derived of calendar {0}" msgstr "" -#: org/libreplan/web/common/CustomMenuController.java:570 -msgid "Personal area" +#: org/libreplan/web/planner/allocation/AdvancedAllocationController.java:1028 +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelNonLimitingResourceAllocation.zul:96 +msgid "Function" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/OrderLine.java:331 -#: libreplan-business/src/main/java/org/libreplan/business/templates/entities/OrderLineTemplate.java:180 -msgid "last hours group sequence code not specified" +#: libreplan-webapp/src/main/webapp/limitingresources/manualAllocation.zul:120 +msgid "Select gap" msgstr "" -#: org/libreplan/web/costcategories/ResourcesCostCategoryAssignmentController.java:135 -#: org/libreplan/web/costcategories/CostCategoryCRUDController.java:462 -msgid "Confirm deleting this hour cost. Are you sure?" +#: libreplan-business/src/main/java/org/libreplan/business/advance/entities/DirectAdvanceAssignment.java:193 +#: libreplan-business/src/main/java/org/libreplan/business/advance/entities/DirectAdvanceAssignment.java:193 +msgid "Progress measurements must have a value lower than their following progress measurements." msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementTaskQualityForms.zul:30 -#: libreplan-webapp/src/main/webapp/templates/_assignedQualityForms.zul:35 -msgid "Assign quality form" +#: libreplan-webapp/src/main/webapp/common/layout/login.zul:64 +msgid "Help on authentication (opens a new window)" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/components/_orderElementTree.zul:79 -msgid "Indent selected task" +#: libreplan-webapp/src/main/webapp/orders/_jiraSyncInfo.zul:34 +msgid "Synchronization of timesheets is not completed for the following reasons:" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/Order.java:365 -msgid "the project must have a start date" +#: libreplan-webapp/src/main/webapp/common/configuration.zul:450 +msgid "Property strategy" msgstr "" -#: org/libreplan/web/orders/AssignedTaskQualityFormsToOrderElementController.java:171 -msgid "please, select a quality form" +#: libreplan-webapp/src/main/webapp/planner/montecarlo_function.zul:38 +msgid "MonteCarlo chart" msgstr "" -#: org/libreplan/web/orders/criterionrequirements/AssignedCriterionRequirementController.java:412 -#: org/libreplan/web/limitingresources/LimitingResourcesController.java:611 -#: org/libreplan/web/planner/taskedition/TaskPropertiesController.java:389 -#: org/libreplan/web/planner/taskedition/TaskPropertiesController.java:808 -#: org/libreplan/web/planner/order/SaveCommandBuilder.java:329 -#: org/libreplan/web/planner/allocation/AdvancedAllocationController.java:1620 -#: org/libreplan/web/planner/allocation/stretches/StretchesFunctionController.java:121 -#: org/libreplan/importers/notifications/ComposeMessage.java:194 -msgid "Error" +#: org/libreplan/web/common/JobSchedulerController.java:267 +#: org/libreplan/web/common/JobSchedulerController.java:268 +#: org/libreplan/web/limitingresources/LimitingResourcesController.java:451 +msgid "Manual" msgstr "" -#: libreplan-webapp/src/main/webapp/limitingresources/limitingResourcesLayout.zul:72 -msgid "Page down" +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelSubcontract.zul:66 +msgid "Subcontract price" msgstr "" -#: libreplan-webapp/src/main/webapp/qualityforms/_editQualityForm.zul:111 -msgid "Down" +#: org/libreplan/web/labels/LabelTypeModel.java:278 +msgid "The name of the label is empty." msgstr "" -#: libreplan-webapp/src/main/webapp/planner/stretches_function.zul:41 -msgid "Add stretch" +#: org/libreplan/web/orders/OrderCRUDController.java:1067 +msgid "Removed {0}" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/_legendLoadChartOrder.zul:29 -msgid "External overload" +#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:44 +#: libreplan-webapp/src/main/webapp/reports/orderCostsPerResource.zul:49 +#: libreplan-webapp/src/main/webapp/reports/timeLineMaterialReport.zul:44 +msgid "Dates" msgstr "" -#: libreplan-webapp/src/main/webapp/reports/schedulingProgressPerOrderReport.zul:166 -#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerInAMonthReport.zul:89 -#: libreplan-webapp/src/main/webapp/reports/projectStatusReport.zul:175 -#: libreplan-webapp/src/main/webapp/reports/workingProgressPerTaskReport.zul:180 -#: libreplan-webapp/src/main/webapp/reports/workingArrangementsPerOrderReport.zul:197 -#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:222 -#: libreplan-webapp/src/main/webapp/reports/orderCostsPerResource.zul:237 -#: libreplan-webapp/src/main/webapp/reports/completedEstimatedHoursPerTask.zul:187 -msgid "if the report is not opened automatically or use save as..." +#: org/libreplan/web/limitingresources/ManualAllocationController.java:328 +#: org/libreplan/web/limitingresources/ManualAllocationController.java:335 +msgid "Day is not valid" msgstr "" -#: libreplan-webapp/src/main/webapp/reports/timeLineMaterialReport.zul:124 -msgid "Filter by categories or materials" +#: libreplan-webapp/src/main/webapp/users/_editUser.zul:38 +msgid "Password cannot be managed for LDAP users because LDAP authentication is enabled." msgstr "" -#: libreplan-webapp/src/main/webapp/resources/worker/_localizations.zul:26 -msgid "Assigned locations" +#: libreplan-webapp/src/main/webapp/orders/_assignmentsBox.zul:34 +#: libreplan-webapp/src/main/webapp/logs/_listRiskLog.zul:29 +#: libreplan-webapp/src/main/webapp/logs/_listIssueLog.zul:27 +#: libreplan-webapp/src/main/webapp/logs/_editRiskLog.zul:44 +#: libreplan-webapp/src/main/webapp/logs/_editIssueLog.zul:59 +#: libreplan-webapp/src/main/webapp/reports/timeLineMaterialReport.zul:61 +msgid "Status" msgstr "" -#: org/libreplan/web/planner/chart/EarnedValueChartFiller.java:253 -msgid "Estimate To Complete" +#: org/libreplan/web/planner/calendar/CalendarAllocationCommand.java:55 +#: libreplan-webapp/src/main/webapp/planner/order.zul:146 +msgid "Calendar allocation" msgstr "" -#: libreplan-webapp/src/main/webapp/templates/_historicalAssignment.zul:51 -msgid "View" +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportLine.java:539 +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportLine.java:539 +msgid "finished not specified" msgstr "" -#: org/libreplan/web/planner/taskedition/TaskPropertiesController.java:481 -msgid "Normal resource assignment" +#: org/libreplan/web/planner/allocation/ResourceAllocationController.java:452 +msgid "Total Hours" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/MachineWorkersConfigurationUnit.java:161 -msgid "Alpha must be greater than 0" +#: org/libreplan/web/common/ConfigurationController.java:843 +msgid "Code sequence is already in use and cannot be updated" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/stretches_function.zul:66 -msgid "Cannot calculate charts for current data" +#: org/libreplan/web/users/settings/PasswordController.java:73 +msgid "Password saved" msgstr "" -#: libreplan-webapp/src/main/webapp/myaccount/settings.zul:102 -msgid "Planning charts expanded" +#: libreplan-business/src/main/java/org/libreplan/business/workreports/valueobjects/DescriptionField.java:80 +#: libreplan-business/src/main/java/org/libreplan/business/workreports/valueobjects/DescriptionField.java:80 +msgid "length less than 1" msgstr "" -#: org/libreplan/web/limitingresources/QueueComponent.java:222 -msgid "Project: {0}" +#: org/libreplan/web/resources/criterion/CriterionTreeController.java:296 +msgid "Unindent" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_edition.zul:301 -#: libreplan-webapp/src/main/webapp/subcontract/subcontractedTasks.zul:55 -msgid "Delivery date" +#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:150 +msgid "Go to personal timesheet" msgstr "" -#: org/libreplan/web/dashboard/DashboardController.java:171 -msgid "There is a margin of {0} days with the project global deadline ({1}%)." +#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/OrderLineGroup.java:1116 +#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/OrderLineGroup.java:1116 +msgid "indirect progress assignments should have different types" msgstr "" -#: org/libreplan/web/workreports/WorkReportQueryController.java:285 -msgid "Task not found" +#: libreplan-webapp/src/main/webapp/common/layout/login.zul:183 +msgid "But" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/requirements/entities/CriterionRequirement.java:68 -#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/CriterionSatisfaction.java:196 -msgid "criterion not specified" +#: libreplan-webapp/src/main/webapp/common/configuration.zul:45 +msgid "LDAP configuration" msgstr "" -#: org/libreplan/web/common/CustomMenuController.java:302 -msgid "Resources Load" +#: libreplan-business/src/main/java/org/libreplan/business/common/entities/EntitySequence.java:106 +#: libreplan-business/src/main/java/org/libreplan/business/common/entities/EntitySequence.java:106 +msgid "Prefix cannot contain whitespaces" msgstr "" -#: org/libreplan/web/users/dashboard/PersonalTimesheetDTO.java:130 -msgid "{0} 2nd fortnight" +#: org/libreplan/importers/ExportTimesheetsToTim.java:217 +msgid "No response or exception in response" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/components/_listOrderElementMaterials.zul:107 -msgid "Search" +#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:300 +#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:429 +msgid "" +"Progress Assignment cannot be deleted or changed. Progress Assignment " +"contains Progress Consolidations values" msgstr "" -#: org/libreplan/web/common/ConfigurationModel.java:211 -msgid "The {0} sequence prefixes cannot be repeated" +#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:1101 +msgid "Consolidated progress measurement cannot be removed" msgstr "" -#: libreplan-webapp/src/main/webapp/common/pageNotFound.zul:40 -msgid "The page that you are requesting does not exist." +#: libreplan-webapp/src/main/webapp/templates/_historicalStatistics.zul:43 +msgid "Number of finished applications" msgstr "" -#: org/libreplan/web/planner/TaskElementAdapter.java:1232 -msgid "Budget-status" +#: org/libreplan/web/limitingresources/QueueComponent.java:238 +msgid "Criteria: {0}" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_jiraSyncInfo.zul:39 -#: libreplan-webapp/src/main/webapp/orders/_timImpExpInfo.zul:29 -#: libreplan-webapp/src/main/webapp/orders/_synchronizationInfo.zul:26 -#: libreplan-webapp/src/main/webapp/workreports/_editWorkReportType.zul:202 -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelLimitingResourceAllocation.zul:91 -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelNonLimitingResourceAllocation.zul:143 -msgid "Close" +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementCriterionRequirements.zul:33 +msgid "Assigned criterion requirements" msgstr "" -#: org/libreplan/web/limitingresources/LimitingResourcesController.java:479 -msgid "Automatic" +#: libreplan-webapp/src/main/webapp/logs/_listRiskLog.zul:38 +#: libreplan-webapp/src/main/webapp/logs/_listIssueLog.zul:36 +#: libreplan-webapp/src/main/webapp/logs/_editRiskLog.zul:157 +#: libreplan-webapp/src/main/webapp/logs/_editIssueLog.zul:154 +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelTaskProperties.zul:51 +#: libreplan-webapp/src/main/webapp/planner/main.zul:61 +msgid "Notes" msgstr "" -#: org/libreplan/web/users/dashboard/MyTasksAreaController.java:137 -msgid "Track time" +#: libreplan-webapp/src/main/webapp/common/configuration.zul:235 +msgid "Perspectives" msgstr "" -#: org/libreplan/web/tree/TreeComponent.java:58 -#: org/libreplan/web/workreports/WorkReportCRUDController.java:900 -#: libreplan-webapp/src/main/webapp/orders/_assignmentsBox.zul:35 -#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:225 -#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:284 -#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:306 -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelNonLimitingResourceAllocation.zul:99 -#: libreplan-webapp/src/main/webapp/planner/stretches_function.zul:56 -msgid "Op." +#: libreplan-webapp/src/main/webapp/common/configuration.zul:366 +msgid "Base" msgstr "" -#: org/libreplan/web/subcontract/ReportAdvancesController.java:193 -#: org/libreplan/web/subcontract/SubcontractedTasksController.java:202 -msgid "Send" +#: libreplan-webapp/src/main/webapp/costcategories/_listCostCategories.zul:28 +#: libreplan-webapp/src/main/webapp/resources/_costCategoryAssignment.zul:39 +msgid "Category name" msgstr "" -#: org/libreplan/web/resources/worker/WorkerCRUDController.java:955 -msgid "" -"This worker cannot be deleted because it has assignments to projects or " -"imputed hours" +#: org/libreplan/importers/ImportRosterFromTim.java:124 +#: org/libreplan/importers/ExportTimesheetsToTim.java:92 +#: org/libreplan/importers/ExportTimesheetsToTim.java:135 +msgid "Tim connector not found" msgstr "" -#: org/libreplan/web/common/components/NewAllocationSelector.java:93 -msgid "specific allocation" +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelSubcontract.zul:87 +msgid "Hours groups" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/components/_listOrderElementLabels.zul:90 -msgid "Create and assign label" +#: libreplan-webapp/src/main/webapp/resources/machine/_machineConfigurationUnits.zul:27 +msgid "Add new configuration unit" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_editOrderElement.zul:56 -#: libreplan-webapp/src/main/webapp/orders/_edition.zul:66 -#: libreplan-webapp/src/main/webapp/templates/_editTemplate.zul:70 -msgid "Criterion Requirement" +#: libreplan-webapp/src/main/webapp/workreports/workReportQuery.zul:23 +msgid "LibrePlan: Timesheet Lines List" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportLabelTypeAssignment.java:41 -msgid "default label not specified" +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementHours.zul:259 +msgid "Expenses cost" msgstr "" -#: org/libreplan/web/resourceload/ResourceLoadController.java:551 -msgid "Resources or criteria" +#: org/libreplan/web/planner/allocation/stretches/StretchesFunctionController.java:127 +msgid "Confirm cancel" msgstr "" -#: org/libreplan/web/orders/OrdersTreeComponent.java:76 -msgid "Total task budget" +#: libreplan-business/src/main/java/org/libreplan/business/users/entities/User.java:150 +#: libreplan-business/src/main/java/org/libreplan/business/users/entities/User.java:150 +msgid "username not specified" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_edition.zul:145 -#: libreplan-webapp/src/main/webapp/orders/_projectDetails.zul:64 -#: libreplan-webapp/src/main/webapp/orders/_list.zul:31 -#: libreplan-webapp/src/main/webapp/orders/_orderElementDetails.zul:45 -#: libreplan-webapp/src/main/webapp/resources/worker/_workRelationships.zul:28 -#: libreplan-webapp/src/main/webapp/resources/worker/_localizations.zul:33 -#: libreplan-webapp/src/main/webapp/resources/worker/_localizations.zul:69 -#: libreplan-webapp/src/main/webapp/resources/worker/_editWorkRelationship.zul:25 -#: libreplan-webapp/src/main/webapp/resources/_criterions.zul:50 -#: libreplan-webapp/src/main/webapp/reports/schedulingProgressPerOrderReport.zul:53 -msgid "Starting date" +#: libreplan-webapp/src/main/webapp/logs/_listIssueLog.zul:29 +#: libreplan-webapp/src/main/webapp/logs/_editIssueLog.zul:109 +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelLimitingResourceAllocation.zul:78 +msgid "Priority" msgstr "" -#: org/libreplan/web/limitingresources/QueueComponent.java:493 -msgid "Invalid queue element" +#: libreplan-business/src/main/java/org/libreplan/business/expensesheet/entities/ExpenseSheet.java:110 +#: libreplan-business/src/main/java/org/libreplan/business/expensesheet/entities/ExpenseSheet.java:110 +msgid "total not specified" msgstr "" -#: org/libreplan/web/materials/MaterialsController.java:464 -#: libreplan-webapp/src/main/webapp/materials/materials.zul:74 -msgid "List of materials for all categories (select one to filter)" +#: org/libreplan/web/scenarios/ScenarioCRUDController.java:171 +msgid "Connect" msgstr "" -#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:693 -msgid "Progress that are reported by quality forms cannot be modified" +#: org/libreplan/web/materials/MaterialsController.java:261 +#: org/libreplan/web/orders/AssignedTaskQualityFormsToOrderElementController.java:193 +#: org/libreplan/web/orders/OrderCRUDController.java:1018 +#: org/libreplan/web/calendars/BaseCalendarCRUDController.java:399 +#: org/libreplan/web/workreports/WorkReportCRUDController.java:233 +#: org/libreplan/web/workreports/WorkReportCRUDController.java:954 +#: org/libreplan/web/expensesheet/ExpenseSheetCRUDController.java:212 +msgid "Confirm deleting {0}. Are you sure?" msgstr "" -#: libreplan-webapp/src/main/webapp/resources/worker/_edition.zul:39 -#: libreplan-webapp/src/main/webapp/resources/_costCategoryAssignment.zul:26 -#: libreplan-webapp/src/main/webapp/resources/machine/_editMachine.zul:34 -msgid "Cost category assignment" +#: libreplan-webapp/src/main/webapp/resources/criterions/_edition.zul:51 +msgid "Allow multiple values of this type of criterion in the same period of time" msgstr "" -#: libreplan-webapp/src/main/webapp/common/configuration.zul:210 -msgid "Timesheet templates" +#: libreplan-webapp/src/main/webapp/logs/_editRiskLog.zul:50 +msgid "Estimations" msgstr "" -#: libreplan-webapp/src/main/webapp/dashboard/_pipeline.zul:8 -msgid "PRE-SALES" +#: org/libreplan/web/resources/criterion/CriterionAdminController.java:112 +msgid "Tree {0} sucessfully flattened" msgstr "" -#: libreplan-webapp/src/main/webapp/resources/search/_resourceFilter.zul:25 -msgid "Filter by" +#: libreplan-business/src/main/java/org/libreplan/business/advance/entities/AdvanceType.java:251 +#: libreplan-business/src/main/java/org/libreplan/business/advance/entities/AdvanceType.java:251 +msgid "progress type name is already in use" msgstr "" -#: libreplan-webapp/src/main/webapp/limitingresources/manualAllocation.zul:120 -msgid "Select gap" +#: libreplan-webapp/src/main/webapp/common/configuration.zul:77 +msgid "Hours type for personal timesheets" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/advance_allocation.zul:54 -msgid "Apply changes and continue editing" +#: org/libreplan/web/tree/TreeComponent.java:160 +#: libreplan-webapp/src/main/webapp/materials/materials.zul:47 +#: libreplan-webapp/src/main/webapp/orders/_edition.zul:324 +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementCriterionRequirements.zul:37 +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementCriterionRequirements.zul:182 +#: libreplan-webapp/src/main/webapp/common/configuration.zul:296 +#: libreplan-webapp/src/main/webapp/labels/_editLabelType.zul:72 +#: libreplan-webapp/src/main/webapp/resources/_criterions.zul:32 +#: libreplan-webapp/src/main/webapp/resources/criterions/_criterionsTree.zul:31 +#: libreplan-webapp/src/main/webapp/reports/schedulingProgressPerOrderReport.zul:110 +#: libreplan-webapp/src/main/webapp/reports/projectStatusReport.zul:77 +#: libreplan-webapp/src/main/webapp/reports/projectStatusReport.zul:117 +#: libreplan-webapp/src/main/webapp/reports/workingProgressPerTaskReport.zul:85 +#: libreplan-webapp/src/main/webapp/reports/workingProgressPerTaskReport.zul:126 +#: libreplan-webapp/src/main/webapp/reports/workingArrangementsPerOrderReport.zul:96 +#: libreplan-webapp/src/main/webapp/reports/workingArrangementsPerOrderReport.zul:140 +#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:80 +#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:116 +#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:168 +#: libreplan-webapp/src/main/webapp/reports/orderCostsPerResource.zul:87 +#: libreplan-webapp/src/main/webapp/reports/orderCostsPerResource.zul:137 +#: libreplan-webapp/src/main/webapp/reports/orderCostsPerResource.zul:180 +#: libreplan-webapp/src/main/webapp/reports/timeLineMaterialReport.zul:85 +#: libreplan-webapp/src/main/webapp/reports/completedEstimatedHoursPerTask.zul:87 +#: libreplan-webapp/src/main/webapp/reports/completedEstimatedHoursPerTask.zul:130 +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelSubcontract.zul:102 +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelLimitingResourceAllocation.zul:60 +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelNonLimitingResourceAllocation.zul:67 +msgid "Add" msgstr "" -#: libreplan-webapp/src/main/webapp/common/configuration.zul:424 -msgid "Save passwords in database" +#: libreplan-webapp/src/main/webapp/subcontract/customerCommunications.zul:62 +#: libreplan-webapp/src/main/webapp/subcontract/subcontractorCommunications.zul:72 +msgid "Communication Date" msgstr "" -#: org/libreplan/importers/JiraOrderElementSynchronizer.java:402 -msgid "Duplicate value AdvanceAssignment for order element of \"{0}\"" +#: libreplan-webapp/src/main/webapp/planner/_legendLoadChartOrder.zul:34 +#: libreplan-webapp/src/main/webapp/planner/_legendLoadChartCompany.zul:29 +msgid "Overload" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/print_configuration.zul:22 -#: libreplan-webapp/src/main/webapp/planner/print_configuration.zul:26 -msgid "Print configuration" +#: libreplan-webapp/src/main/webapp/resources/search/allocation_selector.zul:110 +msgid "Availability" msgstr "" -#: org/libreplan/web/resources/worker/WorkerCRUDController.java:307 -msgid "please select a user to bound" +#: libreplan-webapp/src/main/webapp/common/configuration.zul:46 +msgid "Connectors" msgstr "" -#: libreplan-webapp/src/main/webapp/common/configuration.zul:513 -msgid "Select connector" +#: org/libreplan/web/workreports/WorkReportCRUDController.java:948 +msgid "Cannot be higher than finish hour" msgstr "" -#: libreplan-webapp/src/main/webapp/common/configuration.zul:325 -msgid "Enable LDAP authentication" +#: libreplan-webapp/src/main/webapp/logs/_listRiskLog.zul:26 +#: libreplan-webapp/src/main/webapp/logs/_editRiskLog.zul:62 +#: libreplan-webapp/src/main/webapp/planner/montecarlo_function.zul:50 +msgid "Probability" msgstr "" -#: libreplan-webapp/src/main/webapp/common/configuration.zul:414 -msgid "UserId" +#: libreplan-webapp/src/main/webapp/myaccount/settings.zul:118 +msgid "Resource load view" msgstr "" -#: org/libreplan/web/workreports/WorkReportTypeModel.java:423 -msgid "Code cannot be empty" +#: libreplan-webapp/src/main/webapp/users/_editUser.zul:163 +msgid "Association with profiles" msgstr "" -#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:146 -msgid "or names" +#: libreplan-webapp/src/main/webapp/myaccount/settings.zul:141 +msgid "Show reported hours" msgstr "" -#: org/libreplan/web/orders/CriterionRequirementWrapper.java:216 -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementCriterionRequirements.zul:108 -msgid "Validate" +#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/QualityFormItem.java:72 +#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/QualityFormItem.java:72 +msgid "quality form item name not specified or empty" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/common/entities/EntitySequence.java:140 -msgid "number of digits not specified" +#: org/libreplan/web/planner/taskedition/TaskPropertiesCommand.java:60 +msgid "Task Properties" msgstr "" -#: org/libreplan/web/planner/calendar/CalendarAllocationCommand.java:55 -#: libreplan-webapp/src/main/webapp/planner/order.zul:146 -msgid "Calendar allocation" +#: libreplan-webapp/src/main/webapp/myaccount/changePassword.zul:43 +msgid "Change password" msgstr "" -#: org/libreplan/web/planner/taskedition/TaskPropertiesController.java:482 -msgid "Queue-based resource assignation" +#: org/libreplan/web/tree/TreeComponent.java:172 +msgid "Delete task" msgstr "" -#: libreplan-webapp/src/main/webapp/myaccount/changePassword.zul:71 -msgid "New password" +#: libreplan-webapp/src/main/webapp/logs/_listRiskLog.zul:37 +msgid "ActionWhen" msgstr "" -#: libreplan-webapp/src/main/webapp/excetiondays/exceptionDays.zul:22 -msgid "LibrePlan: Calendar Exception Days" +#: libreplan-business/src/main/java/org/libreplan/business/common/entities/EntitySequence.java:140 +#: libreplan-business/src/main/java/org/libreplan/business/common/entities/EntitySequence.java:140 +msgid "number of digits not specified" msgstr "" -#: libreplan-webapp/src/main/webapp/myaccount/personalTimesheet.zul:95 -msgid "Total other" +#: libreplan-webapp/src/main/webapp/logs/_editRiskLog.zul:116 +msgid "Counter measures (CM)" msgstr "" -#: libreplan-webapp/src/main/webapp/advance/_editAdvanceTypes.zul:38 -msgid "Unit name" +#: libreplan-webapp/src/main/webapp/myaccount/personalTimesheet.zul:132 +msgid "Add task" msgstr "" -#: libreplan-webapp/src/main/webapp/common/configuration.zul:294 -#: libreplan-webapp/src/main/webapp/common/configuration.zul:309 -msgid "Number of digits" +#: org/libreplan/web/workreports/WorkReportTypeCRUDController.java:714 +msgid "The length must be greater than 0 and not empty" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_timImpExpInfo.zul:20 -msgid "LibrePlan: Tim import export info" +#: libreplan-webapp/src/main/webapp/labels/_editLabelType.zul:67 +msgid "Labels list" msgstr "" -#: org/libreplan/web/orders/JiraSynchronizationController.java:195 -msgid "No JIRA issues to import" +#: org/libreplan/web/limitingresources/LimitingResourcesController.java:435 +msgid "Edit queue-based resource element" msgstr "" -#: org/libreplan/web/orders/OrderElementTreeModel.java:53 -#: libreplan-webapp/src/main/webapp/orders/components/_orderElementTree.zul:35 -msgid "New task" +#: libreplan-webapp/src/main/webapp/unittypes/unitTypes.zul:42 +#: libreplan-webapp/src/main/webapp/templates/_editTemplate.zul:165 +#: libreplan-webapp/src/main/webapp/typeofworkhours/_editTypeOfWorkHours.zul:79 +#: libreplan-webapp/src/main/webapp/users/_editUser.zul:202 +#: libreplan-webapp/src/main/webapp/myaccount/personalTimesheet.zul:146 +#: libreplan-webapp/src/main/webapp/scenarios/_edition.zul:67 +#: libreplan-webapp/src/main/webapp/profiles/_editProfile.zul:72 +#: libreplan-webapp/src/main/webapp/advance/advanceTypes.zul:39 +#: libreplan-webapp/src/main/webapp/externalcompanies/_editExternalCompany.zul:104 +#: libreplan-webapp/src/main/webapp/qualityforms/_editQualityForm.zul:134 +#: libreplan-webapp/src/main/webapp/costcategories/_editCostCategory.zul:112 +#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:262 +#: libreplan-webapp/src/main/webapp/workreports/workReportTypes.zul:37 +#: libreplan-webapp/src/main/webapp/labels/_editLabelType.zul:114 +#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:193 +#: libreplan-webapp/src/main/webapp/resources/worker/_edition.zul:221 +#: libreplan-webapp/src/main/webapp/resources/machine/_editMachine.zul:100 +#: libreplan-webapp/src/main/webapp/resources/criterions/_edition.zul:92 +msgid "Save & Continue" msgstr "" -#: org/libreplan/web/subcontract/FilterCommunicationEnum.java:28 -#: org/libreplan/web/workreports/WorkReportQueryController.java:252 -#: org/libreplan/web/resources/worker/WorkerCRUDController.java:852 -#: org/libreplan/web/reports/SchedulingProgressPerOrderController.java:186 -#: org/libreplan/web/reports/TimeLineRequiredMaterialController.java:212 -#: org/libreplan/web/resourceload/ResourceLoadController.java:727 -#: libreplan-webapp/src/main/webapp/workreports/workReportQuery.zul:80 -#: libreplan-webapp/src/main/webapp/workreports/workReportQuery.zul:81 -msgid "All" +#: libreplan-webapp/src/main/webapp/email/email_templates.zul:71 +msgid "E-mail subject" msgstr "" -#: org/libreplan/web/planner/tabs/DashboardTabCreator.java:113 -#: org/libreplan/web/planner/tabs/DashboardTabCreator.java:131 -#: org/libreplan/web/planner/tabs/DashboardTabCreator.java:151 -#: org/libreplan/web/planner/tabs/DashboardTabCreator.java:160 -msgid "Dashboard" +#: libreplan-webapp/src/main/webapp/resources/worker/_edition.zul:45 +msgid "Basic data" msgstr "" -#: libreplan-webapp/src/main/webapp/workreports/workReportQuery.zul:133 -msgid "Timesheet" +#: org/libreplan/web/planner/chart/EarnedValueChartFiller.java:247 +msgid "BCWP" msgstr "" -#: libreplan-webapp/src/main/webapp/subcontract/customerCommunications.zul:57 -#: libreplan-webapp/src/main/webapp/subcontract/subcontractorCommunications.zul:57 -msgid "Communication Type" +#: libreplan-webapp/src/main/webapp/reports/projectStatusReport.zul:20 +msgid "LibrePlan: Project Status Report" msgstr "" -#: org/libreplan/web/resources/criterion/CriterionAdminController.java:96 -msgid "" -"Disable hierarchy will cause criteria tree to be flattened. Are you sure?" +#: org/libreplan/web/expensesheet/ExpenseSheetCRUDController.java:468 +msgid "must be greater or equal than 0" msgstr "" -#: org/libreplan/web/qualityforms/QualityFormCRUDController.java:272 -msgid "" -"Quality form should include an item with a value of 100% in order to report " -"progress" +#: org/libreplan/web/advance/AdvanceTypeCRUDController.java:75 +msgid "Value is not valid, the precision value must not be empty" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportLine.java:268 -msgid "clock finish cannot be empty if number of hours is calcultate by clock" +#: libreplan-business/src/main/java/org/libreplan/business/expensesheet/entities/ExpenseSheet.java:109 +#: libreplan-business/src/main/java/org/libreplan/business/expensesheet/entities/ExpenseSheet.java:109 +msgid "total must be greater or equal than 0" msgstr "" -#: org/libreplan/web/users/dashboard/PersonalTimesheetController.java:397 -#: org/libreplan/web/users/dashboard/PersonalTimesheetController.java:689 -msgid "Other" +#: libreplan-webapp/src/main/webapp/workreports/workReportQuery.zul:115 +msgid "Task Code" msgstr "" -#: org/libreplan/web/tree/TreeController.java:1038 -msgid "Disabled because of it contains more than one hours group" +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelNonLimitingResourceAllocation.zul:152 +msgid "Apply tab changes" msgstr "" -#: org/libreplan/web/orders/OrderCRUDController.java:444 -msgid "Schedule from start to deadline" +#: org/libreplan/web/planner/consolidations/AdvanceConsolidationCommand.java:67 +#: libreplan-webapp/src/main/webapp/planner/order.zul:79 +msgid "Progress consolidation" msgstr "" -#: libreplan-webapp/src/main/webapp/myaccount/changePassword.zul:21 -msgid "LibrePlan: Change password" +#: libreplan-webapp/src/main/webapp/common/configuration.zul:328 +msgid "Use LDAP roles" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/users/entities/Profile.java:89 -msgid "profile name is already being used by another profile" +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelNonLimitingResourceAllocation.zul:115 +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelNonLimitingResourceAllocation.zul:123 +msgid "Non Consolidated" msgstr "" -#: org/libreplan/web/materials/UnitTypeController.java:151 -msgid "The code is not valid. There is another unit type with the same code" +#: libreplan-webapp/src/main/webapp/orders/_jiraSyncInfo.zul:26 +msgid "Synchronization order elements with JIRA issues was not completed for the following reasons:" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_assignmentsBox.zul:76 -#: libreplan-webapp/src/main/webapp/templates/_materialAssignmentsBox.zul:60 -msgid "Split assignment" +#: libreplan-webapp/src/main/webapp/typeofworkhours/typeOfWorkHours.zul:23 +msgid "LibrePlan: Hours Types" +msgstr "" + +#: libreplan-webapp/src/main/webapp/planner/print_configuration.zul:49 +msgid "Print" +msgstr "" + +#: libreplan-business/src/main/java/org/libreplan/business/advance/entities/AdvanceAssignment.java:76 +#: libreplan-business/src/main/java/org/libreplan/business/advance/entities/AdvanceAssignment.java:76 +msgid "progress type not specified" +msgstr "" + +#: libreplan-webapp/src/main/webapp/email/email_templates.zul:75 +msgid "Template contents" +msgstr "" + +#: org/libreplan/web/planner/taskedition/EditTaskController.java:164 +msgid "Edit task: {0}" +msgstr "" + +#: org/libreplan/web/common/CustomMenuController.java:318 +#: org/libreplan/web/importers/ProjectImportController.java:84 +msgid "Import project" +msgstr "" + +#: org/libreplan/web/workreports/WorkReportQueryController.java:261 +#: libreplan-webapp/src/main/webapp/workreports/workReportQuery.zul:83 +msgid "Indirect" +msgstr "" + +#: org/libreplan/web/resources/criterion/CriterionTreeController.java:335 +msgid "Criterion has subelements" +msgstr "" + +#: libreplan-webapp/src/main/webapp/dashboard/_pipeline.zul:12 +msgid "STARTED" msgstr "" #: org/libreplan/web/planner/tabs/PlanningTabCreator.java:151 @@ -6284,1298 +6872,1066 @@ msgstr "" msgid "Schedule" msgstr "" -#: org/libreplan/web/planner/tabs/OrdersTabCreator.java:105 -#: org/libreplan/web/planner/tabs/OrdersTabCreator.java:137 -msgid "Projects List" +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelSubcontract.zul:100 +msgid "New delivery date" msgstr "" -#: libreplan-webapp/src/main/webapp/users/_editUser.zul:146 -#: libreplan-webapp/src/main/webapp/profiles/_editProfile.zul:55 -msgid "Add role" +#: org/libreplan/web/planner/allocation/stretches/StretchesFunctionModel.java:169 +msgid "Some stretch has higher or equal values than the previous stretch" msgstr "" -#: org/libreplan/web/templates/OrderTemplatesController.java:369 -msgid "Delete template. Are you sure?" +#: org/libreplan/web/users/UserCRUDController.java:98 +#: org/libreplan/web/users/UserCRUDController.java:99 +#: org/libreplan/web/users/UserCRUDController.java:399 +msgid "Yes" msgstr "" -#: org/libreplan/web/orders/CriterionRequirementWrapper.java:87 -#: org/libreplan/web/calendars/BaseCalendarEditionController.java:1088 -#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:252 -msgid "Inherited" +#: org/libreplan/web/subcontract/SubcontractedTasksController.java:208 +msgid "Subcontracted task sent successfully" msgstr "" -#: org/libreplan/web/common/ConfigurationController.java:1460 -msgid "Only digits allowed" +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReport.java:252 +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReport.java:252 +msgid "label type: the timesheet have not assigned this label type" msgstr "" -#: libreplan-webapp/src/main/webapp/common/configuration.zul:376 -msgid "UserDn" +#: org/libreplan/web/planner/chart/EarnedValueChartFiller.java:252 +msgid "Variance At Completion" msgstr "" -#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:139 -msgid "Work week" +#: org/libreplan/web/resources/worker/WorkRelationshipsController.java:163 +msgid "Unexpected: {0}" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReport.java:414 -msgid "The timesheet line codes must be unique." +#: org/libreplan/web/users/UserCRUDController.java:355 +msgid "" +"User is bound to resource \"{0}\" and it will be unbound. Do you want to " +"continue with user removal?" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/advance/entities/AdvanceAssignment.java:76 -msgid "progress type not specified" +#: libreplan-webapp/src/main/webapp/common/configuration.zul:225 +msgid "Expense sheets" msgstr "" -#: libreplan-webapp/src/main/webapp/common/layout/template.zul:152 -msgid "Change the password" +#: org/libreplan/web/planner/company/CompanyPlanningModel.java:538 +#: org/libreplan/web/planner/order/OrderPlanningModel.java:849 +msgid "h" msgstr "" -#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:72 -msgid "Date Start" +#: libreplan-webapp/src/main/webapp/resources/machine/_machineConfigurationUnits.zul:124 +msgid "Add new criterion requirement" msgstr "" -#: libreplan-webapp/src/main/webapp/myaccount/_myTasksArea.zul:25 -msgid "My tasks" +#: libreplan-webapp/src/main/webapp/orders/_assignmentsBox.zul:30 +#: libreplan-webapp/src/main/webapp/orders/_splitMaterialAssignmentDlg.zul:38 +#: libreplan-webapp/src/main/webapp/templates/_materialAssignmentsBox.zul:29 +msgid "Units" msgstr "" -#: libreplan-webapp/src/main/webapp/common/layout/_customMenu.zul:59 -msgid "START" +#: org/libreplan/web/workreports/WorkReportCRUDController.java:710 +#: org/libreplan/web/workreports/WorkReportQueryController.java:336 +msgid "You do not have permissions to edit this timesheet" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementHours.zul:235 -msgid "Total calculated budget" +#: libreplan-webapp/src/main/webapp/common/configuration.zul:325 +msgid "Enable LDAP authentication" msgstr "" -#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:1131 -msgid "" -"Progress measurement cannot be canged to {0}, because it is consolidated" +#: libreplan-webapp/src/main/webapp/montecarlo/_montecarlo.zul:50 +msgid "Duration" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/stretches_function.zul:85 -msgid "Accumulated hours chart" +#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:1197 +#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:1214 +msgid "" +"Invalid value. Value must be greater than the value of previous progress." msgstr "" -#: org/libreplan/web/orders/TreeElementOperationsController.java:248 -msgid "Operation cannot be done" +#: libreplan-webapp/src/main/webapp/planner/reassign.zul:34 +msgid "Reassigning type" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementHours.zul:218 -msgid "Resources budget" +#: org/libreplan/web/resources/machine/MachineConfigurationController.java:124 +msgid "No worker selected" msgstr "" -#: libreplan-webapp/src/main/webapp/workreports/_editWorkReportType.zul:142 -#: libreplan-webapp/src/main/webapp/planner/stretches_function.zul:54 -msgid "Length" +#: org/libreplan/web/externalcompanies/ExternalCompanyCRUDController.java:175 +msgid "{0} \"{1}\" can not be deleted because of it is being used" msgstr "" -#: org/libreplan/web/planner/chart/EarnedValueChartFiller.java:248 -msgid "SV" +#: org/libreplan/web/orders/CriterionRequirementWrapper.java:87 +#: org/libreplan/web/calendars/BaseCalendarEditionController.java:1088 +#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:252 +msgid "Inherited" msgstr "" -#: libreplan-webapp/src/main/webapp/templates/_historicalStatistics.zul:51 -msgid "Average of worked hours in finished applications" +#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:21 +msgid "LibrePlan: Hours Worked Per Resource" msgstr "" -#: org/libreplan/web/limitingresources/ManualAllocationController.java:522 -msgid "Manual assignment" +#: org/libreplan/web/calendars/BaseCalendarEditionController.java:300 +msgid "to {0}" msgstr "" -#: libreplan-webapp/src/main/webapp/common/layout/template.zul:72 -msgid "Main menu" +#: org/libreplan/web/orders/AssignedTaskQualityFormsToOrderElementController.java:171 +msgid "please, select a quality form" msgstr "" -#: libreplan-webapp/src/main/webapp/logs/_editIssueLog.zul:130 -msgid "Timing" +#: libreplan-webapp/src/main/webapp/myaccount/changePassword.zul:71 +msgid "New password" msgstr "" -#: org/libreplan/web/orders/TreeElementOperationsController.java:52 -msgid "Please select a task" +#: libreplan-webapp/src/main/webapp/resources/criterions/_list.zul:22 +msgid "Criterion Types List" msgstr "" -#: org/libreplan/web/tree/TreeComponent.java:66 -msgid "Scheduling state" +#: libreplan-business/src/main/java/org/libreplan/business/calendars/entities/CalendarExceptionType.java:163 +#: libreplan-business/src/main/java/org/libreplan/business/scenarios/entities/Scenario.java:149 +#: libreplan-business/src/main/java/org/libreplan/business/calendars/entities/CalendarExceptionType.java:163 +#: libreplan-business/src/main/java/org/libreplan/business/scenarios/entities/Scenario.java:149 +msgid "name is already used" msgstr "" -#: org/libreplan/web/common/BaseCRUDController.java:320 -msgid "{0} \"{1}\" could not be deleted, it was already removed" +#: org/libreplan/web/qualityforms/QualityFormCRUDController.java:155 +msgid "" +"Deleting this item will disable the report progress option. Are you sure?" msgstr "" -#: org/libreplan/web/planner/taskedition/EditTaskController.java:371 -msgid "" -"The task has got progress consolidations. To change resource allocation type " -"all consolidations must be removed before" +#: libreplan-webapp/src/main/webapp/myaccount/_myTasksArea.zul:25 +msgid "My tasks" msgstr "" -#: org/libreplan/web/limitingresources/QueueComponent.java:241 -msgid "Allocation: [{0},{1}]" +#: org/libreplan/web/planner/taskedition/TaskPropertiesController.java:616 +#: org/libreplan/web/planner/taskedition/TaskPropertiesController.java:652 +msgid "Assigned resources for this task will be deleted. Are you sure?" msgstr "" -#: org/libreplan/web/workreports/WorkReportTypeCRUDController.java:902 -msgid "" -"Cannot delete timesheet template. There are some timesheets bound to it." +#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:43 +msgid "Filter timesheet by" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/editTask.zul:63 -msgid "Queue-based resource allocation" +#: libreplan-webapp/src/main/webapp/planner/_legendLoadChartOrder.zul:27 +msgid "Overload due to other assignments" msgstr "" -#: libreplan-webapp/src/main/webapp/excetiondays/_listExceptionDayTypes.zul:34 -#: libreplan-webapp/src/main/webapp/excetiondays/_editExceptionDayType.zul:83 -msgid "Standard Effort" +#: libreplan-webapp/src/main/webapp/resources/search/_resourceFilter.zul:40 +msgid "Active period from" msgstr "" -#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:114 -msgid "Task of project" +#: libreplan-webapp/src/main/webapp/common/layout/template.zul:113 +msgid "Log out" msgstr "" -#: libreplan-webapp/src/main/webapp/email/email_templates.zul:78 -msgid "Possible content keywords" +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelTaskProperties.zul:59 +msgid "Duration (days)" msgstr "" -#: org/libreplan/web/planner/adaptplanning/AdaptPlanningCommand.java:70 -msgid "Adapting planning according to timesheets" +#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:1141 +msgid "Add new progress measurement" msgstr "" -#: org/libreplan/web/resources/worker/WorkRelationshipsController.java:148 -msgid "Time period saved" +#: libreplan-business/src/main/java/org/libreplan/business/materials/entities/MaterialCategory.java:155 +#: libreplan-business/src/main/java/org/libreplan/business/materials/entities/MaterialCategory.java:155 +msgid "material category name has to be unique. It is already used" msgstr "" -#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:171 -#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:216 -#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:246 -msgid "Normal Effort" +#: org/libreplan/web/planner/order/SaveCommandBuilder.java:863 +msgid "" +"Confirm creating a new project version for this scenario and derived. Are " +"you sure?" msgstr "" -#: org/libreplan/web/reports/WorkingProgressPerTaskController.java:160 -#: org/libreplan/web/reports/HoursWorkedPerWorkerController.java:342 -#: org/libreplan/web/reports/OrderCostsPerResourceController.java:204 -#: org/libreplan/web/reports/CompletedEstimatedHoursPerTaskController.java:166 -#: org/libreplan/web/reports/WorkingArrangementsPerOrderController.java:206 -msgid "please, select a Criterion" +#: org/libreplan/web/users/OrderAuthorizationController.java:108 +msgid "" +"Could not add those authorizations to user {0} because they were already " +"present." msgstr "" -#: org/libreplan/web/tree/TreeComponent.java:160 -#: libreplan-webapp/src/main/webapp/materials/materials.zul:47 -#: libreplan-webapp/src/main/webapp/orders/_edition.zul:324 -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementCriterionRequirements.zul:37 -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementCriterionRequirements.zul:182 -#: libreplan-webapp/src/main/webapp/common/configuration.zul:296 -#: libreplan-webapp/src/main/webapp/labels/_editLabelType.zul:72 -#: libreplan-webapp/src/main/webapp/resources/_criterions.zul:32 -#: libreplan-webapp/src/main/webapp/resources/criterions/_criterionsTree.zul:31 -#: libreplan-webapp/src/main/webapp/reports/schedulingProgressPerOrderReport.zul:110 -#: libreplan-webapp/src/main/webapp/reports/projectStatusReport.zul:77 -#: libreplan-webapp/src/main/webapp/reports/projectStatusReport.zul:117 -#: libreplan-webapp/src/main/webapp/reports/workingProgressPerTaskReport.zul:85 -#: libreplan-webapp/src/main/webapp/reports/workingProgressPerTaskReport.zul:126 -#: libreplan-webapp/src/main/webapp/reports/workingArrangementsPerOrderReport.zul:96 -#: libreplan-webapp/src/main/webapp/reports/workingArrangementsPerOrderReport.zul:140 -#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:80 -#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:116 -#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:168 -#: libreplan-webapp/src/main/webapp/reports/orderCostsPerResource.zul:87 -#: libreplan-webapp/src/main/webapp/reports/orderCostsPerResource.zul:137 -#: libreplan-webapp/src/main/webapp/reports/orderCostsPerResource.zul:180 -#: libreplan-webapp/src/main/webapp/reports/timeLineMaterialReport.zul:85 -#: libreplan-webapp/src/main/webapp/reports/completedEstimatedHoursPerTask.zul:87 -#: libreplan-webapp/src/main/webapp/reports/completedEstimatedHoursPerTask.zul:130 -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelSubcontract.zul:102 -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelLimitingResourceAllocation.zul:60 -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelNonLimitingResourceAllocation.zul:67 -msgid "Add" +#: libreplan-webapp/src/main/webapp/resources/worker/_edition.zul:160 +msgid "New user" msgstr "" -#: libreplan-webapp/src/main/webapp/externalcompanies/_listExternalCompanies.zul:29 -#: libreplan-webapp/src/main/webapp/externalcompanies/_editExternalCompany.zul:58 -msgid "Subcontractor" +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAuthorizations.zul:33 +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAuthorizations.zul:58 +msgid "Authorize" msgstr "" -#: libreplan-webapp/src/main/webapp/common/configuration.zul:499 -msgid "LDAP Roles (separated by ;)" +#: org/libreplan/web/planner/tabs/MonteCarloTabCreator.java:51 +#: org/libreplan/web/planner/tabs/MonteCarloTabCreator.java:159 +msgid "MonteCarlo Method" msgstr "" -#: org/libreplan/web/resources/criterion/CriterionTreeController.java:296 -msgid "Unindent" +#: libreplan-webapp/src/main/webapp/orders/_timImpExpInfo.zul:20 +msgid "LibrePlan: Tim import export info" msgstr "" -#: org/libreplan/importers/ImportRosterFromTim.java:210 -msgid "No roster-exceptions found in the response" +#: org/libreplan/web/common/components/TwoWaySelector.java:68 +msgid "Assigned" msgstr "" -#: org/libreplan/web/planner/allocation/stretches/StretchesFunctionController.java:328 -msgid "Length percentage should be between 0 and 100" +#: org/libreplan/web/orders/CriterionRequirementWrapper.java:46 +#: org/libreplan/web/calendars/BaseCalendarEditionController.java:1091 +#: org/libreplan/web/workreports/WorkReportQueryController.java:259 +#: libreplan-webapp/src/main/webapp/workreports/workReportQuery.zul:82 +msgid "Direct" msgstr "" -#: libreplan-webapp/src/main/webapp/myaccount/personalTimesheet.zul:105 -msgid "Total capacity" +#: org/libreplan/importers/ImportRosterFromTim.java:182 +msgid "No valid response for department \"{0}\"" msgstr "" -#: libreplan-webapp/src/main/webapp/common/configuration.zul:355 -msgid "Port" +#: libreplan-webapp/src/main/webapp/orders/components/_listOrderElementLabels.zul:97 +msgid "Create & Assign" msgstr "" -#: org/libreplan/web/common/JobSchedulerModel.java:141 -msgid "Task assigned to resource emails job" +#: org/libreplan/web/orders/OrderCRUDController.java:1618 +#: org/libreplan/web/orders/ProjectDetailsController.java:169 +msgid "project name already being used" msgstr "" -#: org/libreplan/web/materials/MaterialsController.java:335 -msgid "Cannot insert material in general view. Please, select a category" +#: org/libreplan/web/reports/OrderCostsPerResourceModel.java:308 +#: org/libreplan/web/planner/reassign/Type.java:31 +msgid "All project tasks" msgstr "" -#: org/libreplan/web/dashboard/DashboardController.java:186 -msgid "No deadline" +#: libreplan-webapp/src/main/webapp/orders/components/_timOrderTimesheetSync.zul:22 +msgid "Tim sync information" msgstr "" -#: libreplan-webapp/src/main/webapp/resources/search/allocation_selector_combo.zul:25 -msgid "Select criteria or resources" +#: org/libreplan/web/common/JobSchedulerModel.java:181 +msgid "Timesheet data missing job" msgstr "" -#: libreplan-webapp/src/main/webapp/common/accessForbidden.zul:20 -msgid "LibrePlan: Access Forbidden" +#: libreplan-webapp/src/main/webapp/resources/search/allocation_selector.zul:27 +msgid "Select criteria set or specific resources for allocation" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/advance/entities/AdvanceType.java:127 -msgid "unit name not specified" +#: libreplan-webapp/src/main/webapp/email/email_templates.zul:54 +msgid "Select template language" msgstr "" -#: libreplan-webapp/src/main/webapp/myaccount/settings.zul:41 -msgid "Data" +#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/TaskQualityForm.java:98 +#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/TaskQualityForm.java:98 +msgid "Each date must be greater than the dates of the previous task quality form items." msgstr "" -#: libreplan-webapp/src/main/webapp/myaccount/personalTimesheet.zul:167 -msgid "Effort" +#: org/libreplan/web/planner/chart/EarnedValueChartFiller.java:245 +msgid "Budgeted Cost Work Scheduled" msgstr "" -#: libreplan-webapp/src/main/webapp/resources/search/allocation_selector.zul:41 -msgid "Criteria (Hold CTRL for multiple selection)" +#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerInAMonthReport.zul:43 +msgid "Filter by month" msgstr "" -#: org/libreplan/web/workreports/WorkReportCRUDController.java:710 -#: org/libreplan/web/workreports/WorkReportQueryController.java:336 -msgid "You do not have permissions to edit this timesheet" +#: libreplan-webapp/src/main/webapp/materials/materials.zul:86 +#: libreplan-webapp/src/main/webapp/orders/components/_listOrderElementMaterials.zul:121 +#: libreplan-webapp/src/main/webapp/orders/_assignmentsBox.zul:31 +#: libreplan-webapp/src/main/webapp/templates/_materialAssignmentsBox.zul:30 +msgid "Unit type" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/Order.java:589 -msgid "project name is already being used" +#: org/libreplan/web/planner/order/SaveCommandBuilder.java:1022 +msgid "Hours Group at {0}" msgstr "" -#: org/libreplan/web/resources/worker/CriterionsMachineController.java:211 -msgid "End date is not valid, the new end date must be after the start date" +#: org/libreplan/web/planner/allocation/stretches/StretchesFunctionModel.java:284 +msgid "Stretch date must be earlier than End date: " msgstr "" -#: libreplan-webapp/src/main/webapp/planner/stretches_function.zul:76 -msgid "Dedication chart" +#: libreplan-webapp/src/main/webapp/users/_editUser.zul:89 +#: libreplan-webapp/src/main/webapp/myaccount/settings.zul:75 +#: libreplan-webapp/src/main/webapp/resources/worker/_edition.zul:142 +#: libreplan-webapp/src/main/webapp/resources/worker/_edition.zul:185 +msgid "E-mail" msgstr "" -#: libreplan-webapp/src/main/webapp/common/configuration.zul:436 -msgid "Authorization" +#: org/libreplan/web/logs/RiskLogCRUDController.java:392 +msgid "Issue log" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/QualityForm.java:248 -msgid "The quality item positions must be correct in function to the percentage." +#: libreplan-webapp/src/main/webapp/common/components/schedulingStateToggler.zul:33 +msgid "Unschedule" msgstr "" -#: libreplan-webapp/src/main/webapp/common/configuration.zul:83 -msgid "Personal timesheets peridocity" +#: org/libreplan/web/workreports/WorkReportCRUDController.java:683 +msgid "Create Timesheet" msgstr "" -#: org/libreplan/web/workreports/WorkReportCRUDController.java:1122 -msgid "Please, enter a valid effort" +#: libreplan-webapp/src/main/webapp/dashboard/_dashboardfororder.zul:96 +msgid "Overtime ratio" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportType.java:178 -msgid "The field name must be unique." +#: libreplan-webapp/src/main/webapp/limitingresources/manualAllocation.zul:96 +msgid "Earliest date" msgstr "" -#: org/libreplan/importers/ExportTimesheetsToTim.java:217 -msgid "No response or exception in response" +#: libreplan-webapp/src/main/webapp/users/_editUser.zul:56 +#: libreplan-webapp/src/main/webapp/myaccount/settings.zul:63 +#: libreplan-webapp/src/main/webapp/resources/worker/_edition.zul:68 +#: libreplan-webapp/src/main/webapp/resources/worker/_list.zul:36 +msgid "First name" msgstr "" -#: org/libreplan/web/templates/historicalAssignment/OrderElementHistoricalAssignmentComponent.java:153 -msgid "" -"The planning of this task is not in the current scenenario.\n" -"You should change to any of the following scenarios: {0}" +#: libreplan-webapp/src/main/webapp/planner/advance_allocation.zul:46 +msgid "Apply changes and go back to scheduling" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/montecarlo_function.zul:38 -msgid "MonteCarlo chart" +#: org/libreplan/web/resources/machine/MachineConfigurationController.java:206 +msgid "End date is not valid, the date field can not be blank" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_assignmentsBox.zul:33 -#: libreplan-webapp/src/main/webapp/templates/_materialAssignmentsBox.zul:32 -msgid "Total price" +#: libreplan-webapp/src/main/webapp/email/email_templates.zul:78 +msgid "Possible content keywords" msgstr "" -#: org/libreplan/web/resources/machine/MachineConfigurationController.java:206 -msgid "End date is not valid, the date field can not be blank" +#: libreplan-webapp/src/main/webapp/resources/machine/machines.zul:22 +msgid "LibrePlan: Machines" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/common/entities/Configuration.java:164 -msgid "company code cannot contain whitespaces" +#: libreplan-business/src/main/java/org/libreplan/business/templates/entities/OrderTemplate.java:72 +#: libreplan-business/src/main/java/org/libreplan/business/templates/entities/OrderTemplate.java:72 +msgid "template calendar not specified" msgstr "" -#: org/libreplan/web/planner/consolidations/AdvanceConsolidationCommand.java:67 -#: libreplan-webapp/src/main/webapp/planner/order.zul:79 -msgid "Progress consolidation" +#: libreplan-business/src/main/java/org/libreplan/business/common/entities/Connector.java:101 +#: libreplan-business/src/main/java/org/libreplan/business/common/entities/Connector.java:101 +msgid "connector name is already being used" msgstr "" -#: org/libreplan/web/common/ConfigurationController.java:465 -msgid "Connection successful!" +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportLine.java:259 +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportLine.java:259 +msgid "closckStart:the clockStart must be not null if number of hours is calcultate by clock" msgstr "" -#: libreplan-webapp/src/main/webapp/email/email_templates.zul:75 -msgid "Template contents" +#: libreplan-business/src/main/java/org/libreplan/business/planner/entities/StretchesFunction.java:324 +#: libreplan-business/src/main/java/org/libreplan/business/planner/entities/StretchesFunction.java:324 +msgid "A stretch has lower or equal values than the previous stretch" msgstr "" -#: org/libreplan/web/resources/worker/WorkerCRUDController.java:1010 -#: org/libreplan/web/reports/HoursWorkedPerWorkerController.java:297 -#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:140 -msgid "Worker" +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementCriterionRequirements.zul:50 +#: libreplan-webapp/src/main/webapp/orders/_listHoursGroupCriterionRequirement.zul:28 +#: libreplan-webapp/src/main/webapp/resources/_criterions.zul:47 +msgid "Criterion name" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/CriterionType.java:432 -msgid "Criterion Type name is already being used" +#: libreplan-webapp/src/main/webapp/workreports/workReportQuery.zul:133 +msgid "Timesheet" msgstr "" -#: org/libreplan/web/scenarios/ScenarioCRUDController.java:171 -msgid "Connect" +#: org/libreplan/web/dashboard/GlobalProgressChart.java:55 +#: libreplan-webapp/src/main/webapp/resources/_criterions.zul:56 +msgid "Current" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/planner/entities/SubcontractedTaskData.java:209 -msgid "subcontratation date not specified" +#: libreplan-webapp/src/main/webapp/email/email_templates.zul:33 +msgid "Edit E-mail template" msgstr "" -#: org/libreplan/web/reports/SchedulingProgressPerOrderController.java:102 -#: org/libreplan/web/reports/TimeLineRequiredMaterialController.java:107 -#: org/libreplan/web/reports/OrderCostsPerResourceController.java:113 -msgid "please, select a project" +#: libreplan-webapp/src/main/webapp/orders/_editOrderElement.zul:56 +#: libreplan-webapp/src/main/webapp/orders/_edition.zul:66 +#: libreplan-webapp/src/main/webapp/templates/_editTemplate.zul:70 +msgid "Criterion Requirement" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/order.zul:88 -#: libreplan-webapp/src/main/webapp/planner/order.zul:94 -msgid "Check consolidated progresses" +#: libreplan-webapp/src/main/webapp/qualityforms/_editQualityForm.zul:77 +msgid "New quality form item" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/OrderSyncInfo.java:78 -msgid "last synchronized date not specified" +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportLine.java:416 +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportLine.java:416 +msgid "Number of hours is not properly calculated according to start date and end date" msgstr "" -#: org/libreplan/web/costcategories/ResourcesCostCategoryAssignmentController.java:108 -msgid "A category must be selected" +#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:669 +#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:697 +msgid "This progress type cannot be modified" msgstr "" -#: org/libreplan/web/calendars/BaseCalendarEditionController.java:292 -msgid "Root calendar" +#: libreplan-webapp/src/main/webapp/orders/components/_listOrderElementLabels.zul:90 +msgid "Create and assign label" msgstr "" -#: org/libreplan/web/planner/taskedition/AdvancedAllocationTaskController.java:72 -msgid "Some allocations needed" +#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:169 +msgid "Dedication" msgstr "" -#: libreplan-webapp/src/main/webapp/myaccount/userDashboard.zul:21 -msgid "LibrePlan: My Dashboard" +#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/OrderSyncInfo.java:113 +#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/OrderSyncInfo.java:113 +msgid "project sync info is already being used" msgstr "" -#: org/libreplan/web/tree/TreeComponent.java:58 -#: org/libreplan/web/workreports/WorkReportCRUDController.java:902 -#: libreplan-webapp/src/main/webapp/excetiondays/_listExceptionDayTypes.zul:36 -#: libreplan-webapp/src/main/webapp/materials/materials.zul:64 -#: libreplan-webapp/src/main/webapp/materials/materials.zul:89 -#: libreplan-webapp/src/main/webapp/unittypes/_listUnitTypes.zul:29 -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAdvances.zul:61 -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAdvances.zul:83 -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementTaskQualityForms.zul:55 -#: libreplan-webapp/src/main/webapp/orders/_edition.zul:339 -#: libreplan-webapp/src/main/webapp/orders/components/_listOrderElementLabels.zul:58 -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementFiles.zul:41 -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementCriterionRequirements.zul:56 -#: libreplan-webapp/src/main/webapp/orders/_list.zul:39 -#: libreplan-webapp/src/main/webapp/orders/_listHoursGroupCriterionRequirement.zul:33 -#: libreplan-webapp/src/main/webapp/logs/_listRiskLog.zul:39 -#: libreplan-webapp/src/main/webapp/logs/_listIssueLog.zul:37 -#: libreplan-webapp/src/main/webapp/templates/_listTemplates.zul:37 -#: libreplan-webapp/src/main/webapp/templates/_advances.zul:39 -#: libreplan-webapp/src/main/webapp/templates/_assignedQualityForms.zul:51 -#: libreplan-webapp/src/main/webapp/templates/_historicalAssignment.zul:41 -#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:285 -#: libreplan-webapp/src/main/webapp/calendars/_list.zul:31 -#: libreplan-webapp/src/main/webapp/myaccount/_personalTimesheetsArea.zul:37 -#: libreplan-webapp/src/main/webapp/myaccount/_myTasksArea.zul:41 -#: libreplan-webapp/src/main/webapp/myaccount/_expensesArea.zul:37 -#: libreplan-webapp/src/main/webapp/scenarios/transferOrders.zul:68 -#: libreplan-webapp/src/main/webapp/scenarios/_list.zul:28 -#: libreplan-webapp/src/main/webapp/subcontract/subcontractedTasks.zul:57 -#: libreplan-webapp/src/main/webapp/subcontract/customerCommunications.zul:64 -#: libreplan-webapp/src/main/webapp/subcontract/subcontractorCommunications.zul:80 -#: libreplan-webapp/src/main/webapp/subcontract/reportAdvances.zul:52 -#: libreplan-webapp/src/main/webapp/common/_listJobScheduling.zul:32 -#: libreplan-webapp/src/main/webapp/common/configuration.zul:311 -#: libreplan-webapp/src/main/webapp/advance/_listAdvanceTypes.zul:30 -#: libreplan-webapp/src/main/webapp/limitingresources/limitingResourcesLayout.zul:154 -#: libreplan-webapp/src/main/webapp/externalcompanies/_listExternalCompanies.zul:31 -#: libreplan-webapp/src/main/webapp/qualityforms/_editQualityForm.zul:87 -#: libreplan-webapp/src/main/webapp/qualityforms/_listQualityForm.zul:40 -#: libreplan-webapp/src/main/webapp/costcategories/_editCostCategory.zul:95 -#: libreplan-webapp/src/main/webapp/workreports/_sortFieldsAndLabels.zul:36 -#: libreplan-webapp/src/main/webapp/workreports/_sortFieldsAndLabels.zul:52 -#: libreplan-webapp/src/main/webapp/workreports/_editWorkReportType.zul:144 -#: libreplan-webapp/src/main/webapp/workreports/_editWorkReportType.zul:170 -#: libreplan-webapp/src/main/webapp/workreports/_listWorkReportTypes.zul:28 -#: libreplan-webapp/src/main/webapp/labels/_listLabelTypes.zul:28 -#: libreplan-webapp/src/main/webapp/labels/_editLabelType.zul:81 -#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:57 -#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:185 -#: libreplan-webapp/src/main/webapp/resources/worker/_workRelationships.zul:31 -#: libreplan-webapp/src/main/webapp/resources/worker/_listVirtualWorkers.zul:37 -#: libreplan-webapp/src/main/webapp/resources/worker/_list.zul:40 -#: libreplan-webapp/src/main/webapp/resources/_criterions.zul:58 -#: libreplan-webapp/src/main/webapp/resources/_costCategoryAssignment.zul:42 -#: libreplan-webapp/src/main/webapp/resources/machine/_listMachines.zul:39 -#: libreplan-webapp/src/main/webapp/resources/machine/_machineConfigurationUnits.zul:41 -#: libreplan-webapp/src/main/webapp/resources/machine/_machineConfigurationUnits.zul:70 -#: libreplan-webapp/src/main/webapp/resources/machine/_machineConfigurationUnits.zul:131 -#: libreplan-webapp/src/main/webapp/resources/criterions/_criterionsTree.zul:48 -#: libreplan-webapp/src/main/webapp/resources/criterions/_workers.zul:26 -#: libreplan-webapp/src/main/webapp/resources/criterions/_list.zul:29 -#: libreplan-webapp/src/main/webapp/reports/schedulingProgressPerOrderReport.zul:123 -#: libreplan-webapp/src/main/webapp/reports/projectStatusReport.zul:89 -#: libreplan-webapp/src/main/webapp/reports/projectStatusReport.zul:131 -#: libreplan-webapp/src/main/webapp/reports/workingProgressPerTaskReport.zul:97 -#: libreplan-webapp/src/main/webapp/reports/workingProgressPerTaskReport.zul:138 -#: libreplan-webapp/src/main/webapp/reports/workingArrangementsPerOrderReport.zul:110 -#: libreplan-webapp/src/main/webapp/reports/workingArrangementsPerOrderReport.zul:154 -#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:97 -#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:138 -#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:180 -#: libreplan-webapp/src/main/webapp/reports/orderCostsPerResource.zul:103 -#: libreplan-webapp/src/main/webapp/reports/orderCostsPerResource.zul:150 -#: libreplan-webapp/src/main/webapp/reports/orderCostsPerResource.zul:193 -#: libreplan-webapp/src/main/webapp/reports/timeLineMaterialReport.zul:101 -#: libreplan-webapp/src/main/webapp/reports/completedEstimatedHoursPerTask.zul:101 -#: libreplan-webapp/src/main/webapp/reports/completedEstimatedHoursPerTask.zul:144 -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelSubcontract.zul:115 -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelSubcontract.zul:132 -msgid "Operations" +#: libreplan-webapp/src/main/webapp/common/configuration.zul:324 +msgid "Activation" msgstr "" -#: libreplan-webapp/src/main/webapp/logs/_logs.zul:44 -msgid "Risk logs" +#: libreplan-webapp/src/main/webapp/myaccount/settings.zul:84 +msgid "Application settings" msgstr "" -#: org/libreplan/importers/JiraOrderElementSynchronizer.java:541 -msgid "No JIRA issues found for key {0}" +#: libreplan-webapp/src/main/webapp/orders/_listHoursGroupCriterionRequirement.zul:22 +msgid "Criteria Requirement" msgstr "" -#: org/libreplan/web/calendars/BaseCalendarEditionController.java:1270 -msgid "End date can only be deleted in the last activation" +#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/OrderLine.java:331 +#: libreplan-business/src/main/java/org/libreplan/business/templates/entities/OrderLineTemplate.java:180 +#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/OrderLine.java:331 +#: libreplan-business/src/main/java/org/libreplan/business/templates/entities/OrderLineTemplate.java:180 +msgid "last hours group sequence code not specified" msgstr "" -#: org/libreplan/web/workreports/WorkReportQueryController.java:261 -#: libreplan-webapp/src/main/webapp/workreports/workReportQuery.zul:83 -msgid "Indirect" +#: org/libreplan/web/dashboard/DashboardController.java:266 +msgid "" +"% Deviation interval (difference % between consumed and estimated hours)" msgstr "" -#: libreplan-webapp/src/main/webapp/reports/orderCostsPerResource.zul:58 -msgid "Work done from starting date" +#: libreplan-webapp/src/main/webapp/planner/stretches_function.zul:85 +msgid "Accumulated hours chart" msgstr "" -#: libreplan-webapp/src/main/webapp/templates/_historicalStatistics.zul:47 -msgid "Estimated hours average" +#: libreplan-webapp/src/main/webapp/qualityforms/_listQualityForm.zul:26 +msgid "Filter quality forms by" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/OrderSyncInfo.java:113 -msgid "project sync info is already being used" +#: libreplan-webapp/src/main/webapp/orders/components/_listOrderElementLabels.zul:35 +#: libreplan-webapp/src/main/webapp/orders/components/_listOrderElementLabels.zul:56 +#: libreplan-webapp/src/main/webapp/labels/_editLabelType.zul:29 +msgid "Label type" msgstr "" -#: libreplan-webapp/src/main/webapp/limitingresources/manualAllocation.zul:52 -msgid "Select queue" +#: org/libreplan/web/orders/OrderCRUDController.java:1114 +msgid "Sorry, you do not have permissions to access this project" msgstr "" -#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:123 -msgid "Expense date" +#: org/libreplan/web/tree/TreeComponent.java:66 +msgid "Scheduling state" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_orderFilter.zul:30 -#: libreplan-webapp/src/main/webapp/orders/_orderElementTreeFilter.zul:29 -msgid "with" +#: org/libreplan/importers/CalendarImporterMPXJ.java:340 +msgid "Calendar name already in use" msgstr "" -#: org/libreplan/web/resources/criterion/CriterionTreeController.java:311 -msgid "Indent" +#: org/libreplan/web/resources/criterion/CriterionAdminController.java:251 +msgid "" +"This criterion type cannot be deleted because it is assigned to projects or " +"resources" msgstr "" -#: org/libreplan/web/workreports/WorkReportTypeCRUDController.java:766 -msgid "Unallocated name" +#: org/libreplan/web/dashboard/DashboardController.java:219 +msgid "Task Completation Lead/Lag" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportLine.java:548 -msgid "there is a timesheet line in another work report marking as finished the same task" +#: org/libreplan/web/workreports/WorkReportTypeCRUDController.java:602 +msgid "A description field with the same name already exists." msgstr "" -#: libreplan-webapp/src/main/webapp/resources/worker/_calendar.zul:49 -#: libreplan-webapp/src/main/webapp/resources/machine/_calendar.zul:40 -msgid "Edit Calendar" +#: libreplan-webapp/src/main/webapp/common/layout/login.zul:205 +msgid "The browser you are using" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/expensesheet/entities/ExpenseSheet.java:126 -msgid "last expense sheet line sequence code not specified" +#: libreplan-webapp/src/main/webapp/externalcompanies/_editExternalCompany.zul:71 +msgid "Interacts with applications" msgstr "" -#: org/libreplan/web/common/CustomMenuController.java:395 -#: libreplan-webapp/src/main/webapp/common/configuration.zul:177 -#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:121 -msgid "Timesheets" +#: org/libreplan/web/orders/JiraSynchronizationController.java:278 +msgid "Start sync" msgstr "" -#: org/libreplan/web/calendars/BaseCalendarEditionController.java:208 -msgid "Unlimited" +#: org/libreplan/web/planner/chart/EarnedValueChartFiller.java:253 +msgid "CPI" msgstr "" -#: org/libreplan/web/common/ConfigurationController.java:843 -msgid "Code sequence is already in use and cannot be updated" +#: libreplan-webapp/src/main/webapp/excetiondays/_editExceptionDayType.zul:88 +#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:218 +#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:249 +msgid "Extra Effort" msgstr "" -#: libreplan-webapp/src/main/webapp/reports/schedulingProgressPerOrderReport.zul:165 -#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerInAMonthReport.zul:88 -#: libreplan-webapp/src/main/webapp/reports/projectStatusReport.zul:174 -#: libreplan-webapp/src/main/webapp/reports/workingProgressPerTaskReport.zul:179 -#: libreplan-webapp/src/main/webapp/reports/workingArrangementsPerOrderReport.zul:196 -#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:221 -#: libreplan-webapp/src/main/webapp/reports/orderCostsPerResource.zul:236 -#: libreplan-webapp/src/main/webapp/reports/timeLineMaterialReport.zul:166 -#: libreplan-webapp/src/main/webapp/reports/completedEstimatedHoursPerTask.zul:186 -msgid "direct link" +#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:673 +msgid "Calculated progress can not be modified" msgstr "" -#: org/libreplan/web/common/CustomMenuController.java:482 -msgid "Received From Subcontractors" +#: libreplan-business/src/main/java/org/libreplan/business/advance/entities/AdvanceMeasurement.java:100 +#: libreplan-business/src/main/java/org/libreplan/business/workreports/valueobjects/DescriptionValue.java:80 +#: libreplan-business/src/main/java/org/libreplan/business/expensesheet/entities/ExpenseSheetLine.java:87 +#: libreplan-business/src/main/java/org/libreplan/business/advance/entities/AdvanceMeasurement.java:100 +#: libreplan-business/src/main/java/org/libreplan/business/workreports/valueobjects/DescriptionValue.java:80 +#: libreplan-business/src/main/java/org/libreplan/business/expensesheet/entities/ExpenseSheetLine.java:87 +msgid "value not specified" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/advance_allocation.zul:50 -msgid "Cancel changes and back to scheduling" +#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/Order.java:377 +#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/Order.java:377 +msgid "deadline must be after start date" msgstr "" -#: libreplan-webapp/src/main/webapp/montecarlo/_montecarlo.zul:51 -#: libreplan-webapp/src/main/webapp/montecarlo/_montecarlo.zul:53 -#: libreplan-webapp/src/main/webapp/montecarlo/_montecarlo.zul:55 -msgid "Estimated days" +#: libreplan-webapp/src/main/webapp/myaccount/_expensesArea.zul:36 +#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:51 +msgid "Last expense" msgstr "" -#: libreplan-webapp/src/main/webapp/myaccount/personalTimesheet.zul:42 -msgid "Timesheet data" +#: org/libreplan/web/common/CustomMenuController.java:407 +#: libreplan-webapp/src/main/webapp/workreports/workReportQuery.zul:32 +msgid "Timesheet Lines List" msgstr "" -#: org/libreplan/web/dashboard/DashboardController.java:239 -#: org/libreplan/web/dashboard/DashboardController.java:268 -#: libreplan-webapp/src/main/webapp/myaccount/_personalTimesheetsArea.zul:35 -msgid "Number of tasks" +#: org/libreplan/web/common/JobSchedulerController.java:403 +msgid "Job is deleted from scheduler" msgstr "" -#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:21 -msgid "LibrePlan: Hours Worked Per Resource" +#: libreplan-webapp/src/main/webapp/common/layout/login.zul:143 +msgid "Incorrect authentication" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementTaskQualityForms.zul:50 -msgid "Task quality form name" +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportLine.java:479 +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportLine.java:479 +msgid "there are repeated description values in the timesheet lines" msgstr "" -#: libreplan-webapp/src/main/webapp/workreports/_sortFieldsAndLabels.zul:44 -msgid "Lines" +#: libreplan-webapp/src/main/webapp/common/layout/timeout.zul:29 +msgid "Back to log in" msgstr "" -#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:33 -#: libreplan-webapp/src/main/webapp/common/_listJobScheduling.zul:28 -msgid "Job group" +#: libreplan-webapp/src/main/webapp/common/configuration.zul:513 +msgid "Select connector" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_assignmentsBox.zul:30 -#: libreplan-webapp/src/main/webapp/orders/_splitMaterialAssignmentDlg.zul:38 -#: libreplan-webapp/src/main/webapp/templates/_materialAssignmentsBox.zul:29 -msgid "Units" +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAdvances.zul:55 +#: libreplan-webapp/src/main/webapp/templates/_advances.zul:38 +msgid "Spread" msgstr "" -#: libreplan-webapp/src/main/webapp/resources/worker/_edition.zul:37 -msgid "Work record" +#: libreplan-business/src/main/java/org/libreplan/business/costcategories/entities/CostCategory.java:339 +#: libreplan-business/src/main/java/org/libreplan/business/costcategories/entities/CostCategory.java:339 +msgid "last hours cost sequence code not specified" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelTaskProperties.zul:68 -msgid "Constraint" +#: org/libreplan/web/orders/materials/AssignedMaterialsController.java:450 +msgid "Do you want to split the material assignment {0}?" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/advance/entities/DirectAdvanceAssignment.java:224 -msgid "maximum value of percentagee progress type must be 100" +#: org/libreplan/web/email/EmailTemplateController.java:98 +msgid "E-mail template saved" msgstr "" -#: org/libreplan/web/calendars/BaseCalendarCRUDController.java:370 -msgid "Calendar cannot be removed as it has other derived calendars from it" +#: org/libreplan/web/importers/ProjectImportController.java:133 +msgid "The only current supported formats are mpp and planner." msgstr "" -#: org/libreplan/web/orders/OrderCRUDController.java:378 -#: org/libreplan/web/planner/order/OrderPlanningModel.java:1027 -msgid "Unsaved changes will be lost. Are you sure?" +#: org/libreplan/web/common/JobSchedulerModel.java:165 +msgid "Task should start job" msgstr "" -#: libreplan-webapp/src/main/webapp/logs/_editIssueLog.zul:29 -msgid "Issue number" +#: org/libreplan/web/limitingresources/QueueComponent.java:396 +msgid "Workable capacity for this period " msgstr "" -#: libreplan-webapp/src/main/webapp/users/_listUsers.zul:33 -#: libreplan-webapp/src/main/webapp/users/_editUser.zul:102 -#: libreplan-webapp/src/main/webapp/users/_editUser.zul:114 -msgid "Bound resource" +#: org/libreplan/web/common/CustomMenuController.java:488 +msgid "Send To Customers" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/workreports/valueobjects/DescriptionField.java:80 -msgid "length less than 1" +#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:1093 +msgid "This progress type cannot cannot be removed" msgstr "" -#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:264 -msgid "Save & New timesheet" +#: libreplan-webapp/src/main/webapp/reports/projectStatusReport.zul:107 +#: libreplan-webapp/src/main/webapp/reports/workingProgressPerTaskReport.zul:116 +#: libreplan-webapp/src/main/webapp/reports/workingArrangementsPerOrderReport.zul:129 +#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:157 +#: libreplan-webapp/src/main/webapp/reports/orderCostsPerResource.zul:169 +#: libreplan-webapp/src/main/webapp/reports/completedEstimatedHoursPerTask.zul:120 +msgid "Filter by criteria" msgstr "" -#: libreplan-webapp/src/main/webapp/common/configuration.zul:242 -msgid "Automatic budget" +#: libreplan-webapp/src/main/webapp/typeofworkhours/_listTypesOfWorkHours.zul:22 +msgid "Work Hours Types List" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/advance/entities/DirectAdvanceAssignment.java:193 -msgid "Progress measurements must have a value lower than their following progress measurements." +#: libreplan-webapp/src/main/webapp/common/eventError.zul:39 +#: libreplan-webapp/src/main/webapp/common/error.zul:44 +msgid "Exception type" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/TaskQualityForm.java:71 -#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportLine.java:185 -#: libreplan-business/src/main/java/org/libreplan/business/expensesheet/entities/ExpenseSheetLine.java:104 -#: libreplan-business/src/main/java/org/libreplan/business/planner/entities/SubcontractedTaskData.java:119 -msgid "task not specified" +#: org/libreplan/web/planner/chart/EarnedValueChartFiller.java:245 +msgid "BCWS" msgstr "" -#: org/libreplan/web/resources/worker/WorkerCRUDController.java:741 -msgid "Create Virtual Workers Group" +#: libreplan-business/src/main/java/org/libreplan/business/planner/entities/SubcontractedTaskData.java:124 +#: libreplan-business/src/main/java/org/libreplan/business/planner/entities/SubcontractedTaskData.java:124 +msgid "external company not specified" msgstr "" -#: org/libreplan/web/common/ConfigurationController.java:474 -msgid "Invalid credentials" +#: org/libreplan/web/resources/worker/WorkerCRUDController.java:307 +msgid "please select a user to bound" msgstr "" -#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:109 -msgid "Day properties" +#: org/libreplan/web/resources/worker/WorkerModel.java:254 +msgid "Worker must be not-null" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/components/_timOrderTimesheetSync.zul:22 -msgid "Tim sync information" +#: org/libreplan/web/orders/OrderCRUDController.java:1679 +#: org/libreplan/web/planner/order/SubcontractController.java:139 +msgid "You must select a valid date. " msgstr "" -#: libreplan-webapp/src/main/webapp/qualityforms/_listQualityForm.zul:22 -msgid "Quality Forms List" +#: org/libreplan/web/calendars/BaseCalendarModel.java:601 +msgid "Could not save the new calendar" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/planner/entities/SubcontractorCommunicationValue.java:73 -msgid "progress should be greater than 0% and less than 100%" +#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/OrderElement.java:1124 +#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/OrderElement.java:1124 +msgid "a label can not be assigned twice in the same branch" msgstr "" -#: org/libreplan/web/common/CustomMenuController.java:568 -msgid "Preferences" +#: org/libreplan/web/common/ConfigurationController.java:329 +msgid "LDAP connection was successful" msgstr "" -#: libreplan-webapp/src/main/webapp/templates/_editTemplate.zul:74 -msgid "Statistics log" +#: org/libreplan/web/planner/allocation/FormBinder.java:899 +msgid "{0} could not be allocated. Cannot allocate more than one resource" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/_legendLoadChartOrder.zul:34 -#: libreplan-webapp/src/main/webapp/planner/_legendLoadChartCompany.zul:29 -msgid "Overload" +#: org/libreplan/web/planner/allocation/FormBinder.java:666 +msgid "resources per day cannot be empty or less than zero" msgstr "" -#: libreplan-webapp/src/main/webapp/qualityforms/_editQualityForm.zul:74 -msgid "Quality form items list" +#: libreplan-webapp/src/main/webapp/dashboard/_dashboardfororder.zul:116 +msgid "Time" msgstr "" -#: libreplan-webapp/src/main/webapp/dashboard/_pipeline.zul:10 -msgid "OUTSOURCED" +#: org/libreplan/web/planner/taskedition/AdvancedAllocationTaskController.java:72 +msgid "Some allocations needed" msgstr "" -#: libreplan-webapp/src/main/webapp/reports/projectStatusReport.zul:20 -msgid "LibrePlan: Project Status Report" +#: org/libreplan/web/users/dashboard/ExpensesAreaController.java:94 +msgid "Expense sheet \"{1}\" could not be deleted, it was already removed" msgstr "" -#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:140 -msgid "Activation periods" +#: libreplan-webapp/src/main/webapp/myaccount/settings.zul:164 +msgid "Projects since" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementTaskQualityForms.zul:36 -#: libreplan-webapp/src/main/webapp/orders/components/_listOrderElementLabels.zul:82 -#: libreplan-webapp/src/main/webapp/orders/components/_listOrderElementMaterials.zul:109 -#: libreplan-webapp/src/main/webapp/templates/_assignedQualityForms.zul:39 -msgid "Assign" +#: libreplan-webapp/src/main/webapp/resources/search/allocation_selector_combo.zul:25 +msgid "Select criteria or resources" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/labels/entities/LabelType.java:156 -msgid "label code is already being used" +#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:152 +msgid "1 or 7 is Sunday, or use names" msgstr "" -#: libreplan-webapp/src/main/webapp/email/email_templates.zul:71 -msgid "E-mail subject" +#: libreplan-webapp/src/main/webapp/costcategories/_editCostCategory.zul:77 +msgid "Hour costs" msgstr "" -#: org/libreplan/web/common/TemplateController.java:245 -msgid "A new version " +#: org/libreplan/web/orders/criterionrequirements/AssignedCriterionRequirementController.java:411 +msgid "At least one HoursGroup is needed" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/QualityForm.java:210 -msgid "Quality form item name must be unique" +#: libreplan-business/src/main/java/org/libreplan/business/expensesheet/entities/ExpenseSheetLine.java:86 +#: libreplan-business/src/main/java/org/libreplan/business/expensesheet/entities/ExpenseSheetLine.java:86 +msgid "value must be greater or equal than 0" msgstr "" -#: org/libreplan/web/planner/reassign/ReassignCommand.java:167 -msgid "Done {0} of {1}" +#: org/libreplan/web/resourceload/ResourceLoadController.java:551 +msgid "Resources or criteria" msgstr "" -#: libreplan-webapp/src/main/webapp/myaccount/settings.zul:154 -msgid "Projects view filtering" +#: libreplan-webapp/src/main/webapp/orders/_list.zul:24 +msgid "No projects" msgstr "" -#: org/libreplan/web/orders/TreeElementOperationsController.java:240 -msgid "Confirm create template" +#: org/libreplan/web/dashboard/GlobalProgressChart.java:122 +msgid "Project progress percentage" msgstr "" -#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:158 -msgid "Period" +#: org/libreplan/web/orders/OrderCRUDController.java:1386 +#: org/libreplan/web/orders/OrderElementTreeController.java:320 +msgid "Not enough permissions to create templates" msgstr "" -#: org/libreplan/web/resources/worker/AssignedCriterionsModel.java:333 -#: org/libreplan/web/resources/machine/AssignedMachineCriterionsModel.java:398 -msgid "" -"The {0} can not be assigned to this resource. Its interval overlaps with " -"other criterion" +#: org/libreplan/importers/JiraOrderElementSynchronizer.java:194 +msgid "Estimated time for \"{0}\" issue is 0" msgstr "" -#: libreplan-webapp/src/main/webapp/calendars/_list.zul:30 -msgid "Inherits up to date" +#: libreplan-webapp/src/main/webapp/logs/_editRiskLog.zul:121 +msgid "Risk Score After CM" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelNonLimitingResourceAllocation.zul:94 -msgid "Resources Per Day" +#: libreplan-webapp/src/main/webapp/logs/_listRiskLog.zul:27 +#: libreplan-webapp/src/main/webapp/logs/_editRiskLog.zul:69 +msgid "Impact" msgstr "" -#: libreplan-webapp/src/main/webapp/common/layout/login.zul:125 -msgid "Log in" +#: libreplan-business/src/main/java/org/libreplan/business/planner/entities/SubcontractedTaskData.java:230 +#: libreplan-business/src/main/java/org/libreplan/business/planner/entities/SubcontractedTaskData.java:230 +msgid "external company should be subcontractor" msgstr "" -#: org/libreplan/web/common/components/finders/QualityFormBandboxFinder.java:50 -#: org/libreplan/web/common/components/finders/CriterionBandboxFinder.java:44 -#: org/libreplan/web/common/components/finders/LabelBandboxFinder.java:51 -#: org/libreplan/web/common/components/finders/ResourceInExpenseSheetBandboxFinder.java:44 -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAdvances.zul:44 -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementTaskQualityForms.zul:53 -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementFiles.zul:38 -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementCriterionRequirements.zul:53 -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementCriterionRequirements.zul:169 -#: libreplan-webapp/src/main/webapp/orders/_listHoursGroupCriterionRequirement.zul:31 -#: libreplan-webapp/src/main/webapp/logs/_listIssueLog.zul:26 -#: libreplan-webapp/src/main/webapp/logs/_editIssueLog.zul:52 -#: libreplan-webapp/src/main/webapp/templates/_listTemplates.zul:27 -#: libreplan-webapp/src/main/webapp/templates/_advances.zul:36 -#: libreplan-webapp/src/main/webapp/templates/_assignedQualityForms.zul:50 -#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:49 -#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:123 -#: libreplan-webapp/src/main/webapp/advance/_editAdvanceTypes.zul:70 -#: libreplan-webapp/src/main/webapp/costcategories/_editCostCategory.zul:91 -#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:172 -#: libreplan-webapp/src/main/webapp/workreports/_sortFieldsAndLabels.zul:35 -#: libreplan-webapp/src/main/webapp/workreports/_sortFieldsAndLabels.zul:51 -#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:56 -#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:94 -#: libreplan-webapp/src/main/webapp/resources/worker/_edition.zul:94 -#: libreplan-webapp/src/main/webapp/resources/search/_resourceFilter.zul:46 -#: libreplan-webapp/src/main/webapp/resources/machine/_editMachine.zul:68 -#: libreplan-webapp/src/main/webapp/resources/criterions/_edition.zul:44 -#: libreplan-webapp/src/main/webapp/resources/criterions/_list.zul:27 -#: libreplan-webapp/src/main/webapp/reports/projectStatusReport.zul:87 -#: libreplan-webapp/src/main/webapp/reports/projectStatusReport.zul:129 -#: libreplan-webapp/src/main/webapp/reports/workingProgressPerTaskReport.zul:95 -#: libreplan-webapp/src/main/webapp/reports/workingProgressPerTaskReport.zul:136 -#: libreplan-webapp/src/main/webapp/reports/workingArrangementsPerOrderReport.zul:108 -#: libreplan-webapp/src/main/webapp/reports/workingArrangementsPerOrderReport.zul:152 -#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:93 -#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:136 -#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:178 -#: libreplan-webapp/src/main/webapp/reports/orderCostsPerResource.zul:148 -#: libreplan-webapp/src/main/webapp/reports/orderCostsPerResource.zul:191 -#: libreplan-webapp/src/main/webapp/reports/completedEstimatedHoursPerTask.zul:99 -#: libreplan-webapp/src/main/webapp/reports/completedEstimatedHoursPerTask.zul:142 -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_taskInformation.zul:33 -msgid "Type" +#: org/libreplan/web/orders/OrderCRUDController.java:1645 +msgid "Subcontracted by client" msgstr "" -#: org/libreplan/web/common/CustomMenuController.java:370 -#: libreplan-webapp/src/main/webapp/materials/materials.zul:35 -#: libreplan-webapp/src/main/webapp/orders/_editOrderElement.zul:59 -#: libreplan-webapp/src/main/webapp/orders/_edition.zul:69 -#: libreplan-webapp/src/main/webapp/orders/_edition.zul:201 -#: libreplan-webapp/src/main/webapp/templates/_editTemplate.zul:71 -#: libreplan-webapp/src/main/webapp/templates/_materialAssignmentsBox.zul:22 -#: libreplan-webapp/src/main/webapp/templates/_editTemplateWindow.zul:53 -msgid "Materials" +#: org/libreplan/web/common/ConfigurationController.java:410 +msgid "JIRA connection was successful" msgstr "" -#: org/libreplan/web/calendars/BaseCalendarEditionController.java:595 -#: org/libreplan/web/calendars/BaseCalendarEditionController.java:1163 -msgid "Please, select an End Date for the Exception" +#: org/libreplan/web/logs/IssueLogCRUDController.java:278 +msgid "High" msgstr "" -#: org/libreplan/web/orders/OrderElementTreeController.java:455 -msgid "" -"Value is not valid.\n" -" Code cannot contain chars like '_' \n" -" and should not be empty" +#: libreplan-webapp/src/main/webapp/excetiondays/exceptionDays.zul:22 +msgid "LibrePlan: Calendar Exception Days" msgstr "" -#: org/libreplan/web/common/BaseCRUDController.java:306 -msgid "Delete {0} \"{1}\". Are you sure?" +#: libreplan-webapp/src/main/webapp/common/configuration.zul:498 +msgid "LibrePlan Role" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/imports/projectImport.zul:49 -msgid "Select the elements to import into LibrePlan" +#: org/libreplan/web/users/dashboard/PersonalTimesheetController.java:611 +#: libreplan-webapp/src/main/webapp/myaccount/personalTimesheet.zul:32 +msgid "Personal timesheet" msgstr "" -#: libreplan-webapp/src/main/webapp/advance/advanceTypes.zul:22 -msgid "LibrePlan: Progress Types" +#: org/libreplan/web/templates/OrderTemplatesController.java:304 +#: org/libreplan/web/common/CustomMenuController.java:323 +#: org/libreplan/web/common/CustomMenuController.java:588 +#: org/libreplan/web/importers/ProjectImportController.java:82 +#: org/libreplan/web/planner/tabs/MultipleTabsPlannerController.java:237 +msgid "Planning" msgstr "" -#: org/libreplan/web/workreports/WorkReportCRUDController.java:886 -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementHours.zul:33 -#: libreplan-webapp/src/main/webapp/common/configuration.zul:244 -#: libreplan-webapp/src/main/webapp/workreports/workReportQuery.zul:130 -msgid "Hours type" +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportLine.java:439 +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportLine.java:439 +msgid "label type: the timesheet has not assigned this label type" msgstr "" -#: libreplan-webapp/src/main/webapp/common/layout/timeout.zul:27 -msgid "Your session has expired because of inactivity. Please log in again." +#: libreplan-webapp/src/main/webapp/common/layout/template.zul:152 +msgid "Change the password" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/OrderElement.java:525 -#: libreplan-business/src/main/java/org/libreplan/business/templates/entities/OrderElementTemplate.java:379 -#: libreplan-business/src/main/java/org/libreplan/business/calendars/entities/CalendarExceptionType.java:108 -#: libreplan-business/src/main/java/org/libreplan/business/calendars/entities/BaseCalendar.java:158 -#: libreplan-business/src/main/java/org/libreplan/business/scenarios/entities/Scenario.java:116 -#: libreplan-business/src/main/java/org/libreplan/business/common/entities/Connector.java:70 -#: libreplan-business/src/main/java/org/libreplan/business/costcategories/entities/TypeOfWorkHours.java:97 -#: libreplan-business/src/main/java/org/libreplan/business/costcategories/entities/CostCategory.java:204 -#: libreplan-business/src/main/java/org/libreplan/business/labels/entities/Label.java:44 -#: libreplan-business/src/main/java/org/libreplan/business/labels/entities/LabelType.java:50 -msgid "name not specified" +#: org/libreplan/web/common/JobSchedulerModel.java:149 +msgid "Resource removed from task job" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/expensesheet/entities/ExpenseSheetLine.java:86 -msgid "value must be greater or equal than 0" +#: libreplan-webapp/src/main/webapp/orders/_orderFilter.zul:40 +#: libreplan-webapp/src/main/webapp/orders/_orderElementTreeFilter.zul:54 +#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:57 +#: libreplan-webapp/src/main/webapp/workreports/workReportQuery.zul:62 +#: libreplan-webapp/src/main/webapp/resources/search/_resourceFilter.zul:42 +msgid "to" msgstr "" -#: org/libreplan/web/workreports/WorkReportTypeCRUDController.java:775 -msgid "Text field" +#: org/libreplan/web/users/UserCRUDController.java:306 +msgid "Password cannot be empty" msgstr "" -#: org/libreplan/web/reports/ProjectStatusReportController.java:215 -msgid "please, select a criterion" +#: libreplan-webapp/src/main/webapp/workreports/_editWorkReportType.zul:109 +msgid "Hours Management" msgstr "" -#: org/libreplan/web/common/CustomMenuController.java:343 -msgid "Virtual Workers" +#: org/libreplan/web/planner/allocation/stretches/StretchesFunctionController.java:126 +msgid "All changes will be lost. Are you sure?" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/planner/entities/StretchesFunction.java:362 -msgid "Last stretch should have one hundred percent " -"length and one hundred percent of work percentage" +#: libreplan-webapp/src/main/webapp/myaccount/settings.zul:22 +msgid "LibrePlan: Settings" msgstr "" -#: libreplan-webapp/src/main/webapp/limitingresources/manualAllocation.zul:100 -msgid "Select start date" +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/CriterionType.java:413 +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/CriterionType.java:413 +msgid "criterion names must be unique inside a criterion type" msgstr "" -#: org/libreplan/web/users/UserCRUDController.java:357 -msgid "Confirm remove user" +#: org/libreplan/web/reports/WorkingProgressPerTaskController.java:165 +#: org/libreplan/web/reports/HoursWorkedPerWorkerController.java:348 +#: org/libreplan/web/reports/OrderCostsPerResourceController.java:208 +#: org/libreplan/web/reports/CompletedEstimatedHoursPerTaskController.java:172 +#: org/libreplan/web/reports/WorkingArrangementsPerOrderController.java:211 +msgid "This Criterion has already been added." msgstr "" -#: libreplan-webapp/src/main/webapp/common/configuration.zul:404 -msgid "Authentication" +#: org/libreplan/web/workreports/WorkReportCRUDController.java:273 +msgid "Timesheet saved" msgstr "" -#: org/libreplan/web/orders/OrderElementTreeController.java:697 -#: org/libreplan/web/common/CustomMenuController.java:357 -#: org/libreplan/web/reports/ProjectStatusReportController.java:179 -#: org/libreplan/web/resourceload/ResourceLoadController.java:553 -#: libreplan-webapp/src/main/webapp/common/configuration.zul:166 -#: libreplan-webapp/src/main/webapp/limitingresources/manualAllocation.zul:36 -#: libreplan-webapp/src/main/webapp/resources/search/allocation_selector.zul:40 -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_taskInformation.zul:32 -msgid "Criteria" +#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:171 +#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:216 +#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:246 +msgid "Normal Effort" msgstr "" -#: org/libreplan/importers/JiraOrderElementSynchronizer.java:171 -#: org/libreplan/importers/JiraOrderElementSynchronizer.java:533 -msgid "Synchronization order {0}" +#: libreplan-webapp/src/main/webapp/orders/_edition.zul:195 +msgid "Work" msgstr "" -#: org/libreplan/importers/ImportRosterFromTim.java:239 -#: org/libreplan/importers/JiraTimesheetSynchronizer.java:357 -#: org/libreplan/importers/ExportTimesheetsToTim.java:291 -msgid "Worker \"{0}\" not found" +#: org/libreplan/web/resources/machine/MachineCRUDController.java:549 +msgid "Machine was already removed" msgstr "" -#: libreplan-webapp/src/main/webapp/labels/_editLabelType.zul:69 -msgid "New label" +#: libreplan-webapp/src/main/webapp/orders/imports/projectImport.zul:54 +msgid "Both calendars and gantt charts" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/common/entities/EntitySequence.java:106 -msgid "Prefix cannot contain whitespaces" +#: org/libreplan/web/planner/order/SaveCommandBuilder.java:328 +msgid "" +"Error saving the project\n" +"{0}" msgstr "" -#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:701 -msgid "Calculated progress cannot be removed" +#: libreplan-webapp/src/main/webapp/logs/_listRiskLog.zul:31 +#: libreplan-webapp/src/main/webapp/logs/_editRiskLog.zul:96 +msgid "Date created" msgstr "" -#: libreplan-webapp/src/main/webapp/common/layout/login.zul:184 -msgid "without you, LibrePlan can’t exist." +#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:264 +msgid "Save & New timesheet" msgstr "" -#: org/libreplan/web/users/UserCRUDController.java:98 -#: org/libreplan/web/users/UserCRUDController.java:99 -#: org/libreplan/web/users/UserCRUDController.java:399 -msgid "Yes" +#: org/libreplan/web/orders/OrdersTreeComponent.java:107 +msgid "" +"Estimated end date for the task (press enter in textbox to open calendar " +"popup or type in date directly)" msgstr "" -#: org/libreplan/web/orders/AssignedTaskQualityFormsToOrderElementController.java:353 -#: org/libreplan/web/tree/TreeComponent.java:51 -#: org/libreplan/web/common/components/finders/QualityFormBandboxFinder.java:50 -#: org/libreplan/web/common/components/finders/TypeOfWorkHoursBandboxFinder.java:43 -#: org/libreplan/web/common/components/finders/BaseCalendarBandboxFinder.java:46 -#: org/libreplan/web/common/components/finders/ScenarioBandboxFinder.java:46 -#: org/libreplan/web/common/components/finders/ExternalCompanyBandboxFinder.java:50 -#: org/libreplan/web/common/components/finders/LabelBandboxFinder.java:51 -#: org/libreplan/web/planner/allocation/AdvancedAllocationController.java:1013 -#: org/libreplan/web/planner/allocation/ResourceAllocationController.java:438 -#: libreplan-webapp/src/main/webapp/excetiondays/_listExceptionDayTypes.zul:31 -#: libreplan-webapp/src/main/webapp/excetiondays/_editExceptionDayType.zul:54 -#: libreplan-webapp/src/main/webapp/materials/materials.zul:61 -#: libreplan-webapp/src/main/webapp/unittypes/_editUnitType.zul:51 -#: libreplan-webapp/src/main/webapp/orders/_edition.zul:97 -#: libreplan-webapp/src/main/webapp/orders/_projectDetails.zul:38 -#: libreplan-webapp/src/main/webapp/orders/components/_listOrderElementMaterials.zul:120 -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementFiles.zul:37 -#: libreplan-webapp/src/main/webapp/orders/_assignmentsBox.zul:28 -#: libreplan-webapp/src/main/webapp/orders/_list.zul:29 -#: libreplan-webapp/src/main/webapp/logs/_logsFilter.zul:21 -#: libreplan-webapp/src/main/webapp/templates/_listTemplates.zul:29 -#: libreplan-webapp/src/main/webapp/templates/_editTemplate.zul:87 -#: libreplan-webapp/src/main/webapp/templates/_assignedQualityForms.zul:49 -#: libreplan-webapp/src/main/webapp/typeofworkhours/_editTypeOfWorkHours.zul:52 -#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:41 -#: libreplan-webapp/src/main/webapp/calendars/_list.zul:28 -#: libreplan-webapp/src/main/webapp/scenarios/transferOrders.zul:66 -#: libreplan-webapp/src/main/webapp/scenarios/transferOrders.zul:76 -#: libreplan-webapp/src/main/webapp/scenarios/_edition.zul:32 -#: libreplan-webapp/src/main/webapp/scenarios/_edition.zul:52 -#: libreplan-webapp/src/main/webapp/scenarios/_list.zul:27 -#: libreplan-webapp/src/main/webapp/subcontract/reportAdvances.zul:46 -#: libreplan-webapp/src/main/webapp/profiles/_editProfile.zul:41 -#: libreplan-webapp/src/main/webapp/common/configuration.zul:531 -#: libreplan-webapp/src/main/webapp/advance/_listAdvanceTypes.zul:27 -#: libreplan-webapp/src/main/webapp/limitingresources/limitingResourcesLayout.zul:95 -#: libreplan-webapp/src/main/webapp/externalcompanies/_listExternalCompanies.zul:26 -#: libreplan-webapp/src/main/webapp/qualityforms/_editQualityForm.zul:42 -#: libreplan-webapp/src/main/webapp/qualityforms/_editQualityForm.zul:83 -#: libreplan-webapp/src/main/webapp/qualityforms/_listQualityForm.zul:38 -#: libreplan-webapp/src/main/webapp/costcategories/_editCostCategory.zul:59 -#: libreplan-webapp/src/main/webapp/workreports/_sortFieldsAndLabels.zul:34 -#: libreplan-webapp/src/main/webapp/workreports/_sortFieldsAndLabels.zul:50 -#: libreplan-webapp/src/main/webapp/workreports/_editWorkReportType.zul:45 -#: libreplan-webapp/src/main/webapp/workreports/_editWorkReportType.zul:141 -#: libreplan-webapp/src/main/webapp/workreports/_editWorkReportType.zul:167 -#: libreplan-webapp/src/main/webapp/workreports/_listWorkReportTypes.zul:27 -#: libreplan-webapp/src/main/webapp/labels/_listLabelTypes.zul:26 -#: libreplan-webapp/src/main/webapp/labels/_editLabelType.zul:42 -#: libreplan-webapp/src/main/webapp/labels/_editLabelType.zul:77 -#: libreplan-webapp/src/main/webapp/resources/worker/_listVirtualWorkers.zul:34 -#: libreplan-webapp/src/main/webapp/resources/machine/_listMachines.zul:35 -#: libreplan-webapp/src/main/webapp/resources/machine/_editMachine.zul:56 -#: libreplan-webapp/src/main/webapp/resources/machine/_machineConfigurationUnits.zul:34 -#: libreplan-webapp/src/main/webapp/resources/machine/_machineConfigurationUnits.zul:67 -#: libreplan-webapp/src/main/webapp/resources/machine/_machineConfigurationUnits.zul:130 -#: libreplan-webapp/src/main/webapp/resources/criterions/_criterionsTree.zul:44 -#: libreplan-webapp/src/main/webapp/resources/criterions/_edition.zul:39 -#: libreplan-webapp/src/main/webapp/resources/criterions/_workers.zul:27 -#: libreplan-webapp/src/main/webapp/resources/criterions/_workers.zul:45 -#: libreplan-webapp/src/main/webapp/resources/criterions/_list.zul:25 -#: libreplan-webapp/src/main/webapp/reports/schedulingProgressPerOrderReport.zul:120 -#: libreplan-webapp/src/main/webapp/reports/projectStatusReport.zul:88 -#: libreplan-webapp/src/main/webapp/reports/projectStatusReport.zul:130 -#: libreplan-webapp/src/main/webapp/reports/workingProgressPerTaskReport.zul:96 -#: libreplan-webapp/src/main/webapp/reports/workingProgressPerTaskReport.zul:137 -#: libreplan-webapp/src/main/webapp/reports/workingArrangementsPerOrderReport.zul:109 -#: libreplan-webapp/src/main/webapp/reports/workingArrangementsPerOrderReport.zul:153 -#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:95 -#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:137 -#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:179 -#: libreplan-webapp/src/main/webapp/reports/orderCostsPerResource.zul:100 -#: libreplan-webapp/src/main/webapp/reports/orderCostsPerResource.zul:149 -#: libreplan-webapp/src/main/webapp/reports/orderCostsPerResource.zul:192 -#: libreplan-webapp/src/main/webapp/reports/timeLineMaterialReport.zul:98 -#: libreplan-webapp/src/main/webapp/reports/completedEstimatedHoursPerTask.zul:100 -#: libreplan-webapp/src/main/webapp/reports/completedEstimatedHoursPerTask.zul:143 -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelTaskProperties.zul:33 -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelNonLimitingResourceAllocation.zul:90 -#: libreplan-webapp/src/main/webapp/planner/main.zul:49 -msgid "Name" +#: org/libreplan/web/costcategories/CostCategoryCRUDController.java:525 +msgid "Cost Category" msgstr "" -#: libreplan-webapp/src/main/webapp/typeofworkhours/typeOfWorkHours.zul:23 -msgid "LibrePlan: Hours Types" +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/Resource.java:1051 +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/Resource.java:1051 +msgid "Some criterion satisfactions overlap in time" +msgstr "" + +#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:139 +#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:190 +msgid "Day of month" +msgstr "" + +#: org/libreplan/web/resources/criterion/CriterionTreeController.java:311 +msgid "Indent" msgstr "" -#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:303 -msgid "Expiry date" +#: libreplan-webapp/src/main/webapp/workreports/_editWorkReportType.zul:169 +msgid "Default Label" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/common/entities/JobSchedulerConfiguration.java:120 -msgid "job group and name are already being used" +#: org/libreplan/web/templates/OrderTemplatesModel.java:298 +#: org/libreplan/web/workreports/WorkReportTypeModel.java:408 +msgid "name cannot be empty" msgstr "" -#: org/libreplan/web/common/JobSchedulerModel.java:173 -msgid "Task should finish job" +#: org/libreplan/web/workreports/WorkReportCRUDController.java:890 +msgid "Done" msgstr "" -#: org/libreplan/web/common/components/bandboxsearch/BandboxMultipleSearch.java:241 -msgid "format filters are not valid" +#: libreplan-webapp/src/main/webapp/common/pageNotFound.zul:61 +msgid "Open file HACKING.rst in project directory and read Part LibrePlan documentation generation, how to generate help/info pages" msgstr "" -#: org/libreplan/web/planner/allocation/stretches/StretchesFunctionModel.java:284 -msgid "Stretch date must be earlier than End date: " +#: org/libreplan/web/dashboard/DashboardController.java:185 +msgid "Violated deadline" msgstr "" -#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:108 -msgid "Cron expression format" +#: libreplan-webapp/src/main/webapp/common/pageNotFound.zul:51 +msgid "Sorry for the inconvenience." msgstr "" -#: libreplan-webapp/src/main/webapp/reports/schedulingProgressPerOrderReport.zul:143 -#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerInAMonthReport.zul:65 -#: libreplan-webapp/src/main/webapp/reports/projectStatusReport.zul:152 -#: libreplan-webapp/src/main/webapp/reports/workingProgressPerTaskReport.zul:157 -#: libreplan-webapp/src/main/webapp/reports/workingArrangementsPerOrderReport.zul:173 -#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:200 -#: libreplan-webapp/src/main/webapp/reports/orderCostsPerResource.zul:212 -#: libreplan-webapp/src/main/webapp/reports/timeLineMaterialReport.zul:145 -#: libreplan-webapp/src/main/webapp/reports/completedEstimatedHoursPerTask.zul:164 -msgid "Format" +#: org/libreplan/importers/JiraTimesheetSynchronizer.java:124 +msgid "Key for Order \"{0}\" is empty" msgstr "" -#: org/libreplan/web/limitingresources/LimitingResourcesController.java:506 -msgid "Select for automatic queuing" +#: libreplan-webapp/src/main/webapp/unittypes/unitTypes.zul:21 +msgid "LibrePlan: Material Units" msgstr "" -#: org/libreplan/web/orders/OrderCRUDController.java:1114 -msgid "Sorry, you do not have permissions to access this project" +#: org/libreplan/web/orders/OrdersTreeComponent.java:69 +msgid "Total task hours" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementCriterionRequirements.zul:50 -#: libreplan-webapp/src/main/webapp/orders/_listHoursGroupCriterionRequirement.zul:28 -#: libreplan-webapp/src/main/webapp/resources/_criterions.zul:47 -msgid "Criterion name" +#: org/libreplan/web/users/dashboard/PersonalTimesheetController.java:749 +#: org/libreplan/web/workreports/WorkReportCRUDController.java:214 +msgid "Personal timesheet saved" msgstr "" -#: org/libreplan/web/common/CustomMenuController.java:307 -msgid "Queue-based Resources" +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelLimitingResourceAllocation.zul:63 +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelNonLimitingResourceAllocation.zul:72 +msgid "Advanced search" msgstr "" -#: org/libreplan/importers/JiraOrderElementSynchronizer.java:290 -#: org/libreplan/importers/JiraTimesheetSynchronizer.java:139 -msgid "No worklog items found for \"{0}\" issue" +#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:705 +msgid "Consolidated progress cannot be removed" msgstr "" -#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:1097 -msgid "Calculated progress measurements cannot be removed" +#: org/libreplan/web/orders/materials/AssignedMaterialsController.java:454 +msgid "Split new assignment" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelNonLimitingResourceAllocation.zul:112 -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelNonLimitingResourceAllocation.zul:120 -#: libreplan-webapp/src/main/webapp/planner/order.zul:107 -msgid "Consolidated" +#: org/libreplan/web/planner/taskedition/TaskPropertiesController.java:808 +msgid "You cannot email user twice with the same info" msgstr "" -#: libreplan-webapp/src/main/webapp/montecarlo/_montecarlo.zul:45 -msgid "Pessimistic" +#: libreplan-webapp/src/main/webapp/subcontract/customerCommunications.zul:57 +#: libreplan-webapp/src/main/webapp/subcontract/subcontractorCommunications.zul:57 +msgid "Communication Type" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/components/_timOrderTimesheetSync.zul:33 -msgid "Tim last sync" +#: org/libreplan/web/calendars/BaseCalendarEditionController.java:602 +#: org/libreplan/web/calendars/BaseCalendarEditionController.java:1170 +msgid "Exception end date should be greater or equals than start date" msgstr "" -#: org/libreplan/web/planner/milestone/DeleteMilestoneCommand.java:59 -msgid "Delete Milestone" +#: org/libreplan/web/orders/ManageOrderElementAdvancesModel.java:128 +msgid "{0} (max: {1})" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAdvances.zul:59 -#: libreplan-webapp/src/main/webapp/subcontract/customerCommunications.zul:38 -#: libreplan-webapp/src/main/webapp/subcontract/subcontractorCommunications.zul:38 -#: libreplan-webapp/src/main/webapp/reports/schedulingProgressPerOrderReport.zul:171 -#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerInAMonthReport.zul:94 -#: libreplan-webapp/src/main/webapp/reports/projectStatusReport.zul:180 -#: libreplan-webapp/src/main/webapp/reports/workingProgressPerTaskReport.zul:185 -#: libreplan-webapp/src/main/webapp/reports/workingArrangementsPerOrderReport.zul:202 -#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:226 -#: libreplan-webapp/src/main/webapp/reports/orderCostsPerResource.zul:242 -#: libreplan-webapp/src/main/webapp/reports/timeLineMaterialReport.zul:172 -#: libreplan-webapp/src/main/webapp/reports/completedEstimatedHoursPerTask.zul:192 -msgid "Show" +#: libreplan-webapp/src/main/webapp/limitingresources/manualAllocation.zul:127 +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelTaskProperties.zul:37 +#: libreplan-webapp/src/main/webapp/planner/main.zul:53 +msgid "Start" msgstr "" -#: libreplan-webapp/src/main/webapp/scenarios/transferOrders.zul:52 -msgid "Select destination" +#: org/libreplan/web/users/settings/PasswordController.java:101 +#: org/libreplan/web/users/UserCRUDController.java:286 +msgid "passwords don't match" msgstr "" -#: org/libreplan/web/users/dashboard/PersonalTimesheetController.java:215 -#: org/libreplan/web/users/dashboard/PersonalTimesheetController.java:283 -#: org/libreplan/web/common/EffortDurationBox.java:49 -msgid "Invalid Effort Duration" +#: libreplan-webapp/src/main/webapp/workreports/workReportTypes.zul:23 +msgid "LibrePlan: Timesheets Templates" msgstr "" -#: org/libreplan/web/orders/OrderCRUDController.java:1039 -#: org/libreplan/web/orders/OrderElementTreeController.java:776 +#: org/libreplan/web/common/ConfigurationController.java:1283 msgid "" -"You can not remove the project \"{0}\" because this one has imputed expense " -"sheets." +"Periocity cannot be changed because there is already any personal timesheet " +"stored" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_editOrderElement.zul:44 -msgid "Details" +#: org/libreplan/web/resources/worker/WorkerCRUDController.java:449 +msgid "Create Worker" msgstr "" -#: org/libreplan/web/planner/chart/EarnedValueChartFiller.java:249 -msgid "BAC" +#: org/libreplan/web/templates/TemplatesTree.java:42 +msgid "New template" msgstr "" -#: libreplan-webapp/src/main/webapp/common/concurrentModification.zul:33 -#: libreplan-webapp/src/main/webapp/common/eventError.zul:56 -msgid "Continue" +#: org/libreplan/web/planner/reassign/Type.java:55 +msgid "From chosen date" msgstr "" -#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:309 -msgid "Create activation period" +#: org/libreplan/web/exceptionDays/CalendarExceptionTypeModel.java:96 +msgid "Cannot remove {0}, since it is being used by some exception day" msgstr "" -#: org/libreplan/web/orders/OrderModel.java:756 -#: libreplan-webapp/src/main/webapp/materials/materials.zul:84 -#: libreplan-webapp/src/main/webapp/orders/_edition.zul:116 -#: libreplan-webapp/src/main/webapp/orders/_projectDetails.zul:44 -#: libreplan-webapp/src/main/webapp/orders/_orderElementDetails.zul:61 -#: libreplan-webapp/src/main/webapp/logs/_listRiskLog.zul:30 -#: libreplan-webapp/src/main/webapp/logs/_listIssueLog.zul:28 -#: libreplan-webapp/src/main/webapp/logs/_editRiskLog.zul:111 -#: libreplan-webapp/src/main/webapp/logs/_editIssueLog.zul:94 -#: libreplan-webapp/src/main/webapp/templates/_listTemplates.zul:35 -#: libreplan-webapp/src/main/webapp/templates/_editTemplate.zul:105 -#: libreplan-webapp/src/main/webapp/myaccount/_myTasksArea.zul:35 -#: libreplan-webapp/src/main/webapp/myaccount/_expensesArea.zul:32 -#: libreplan-webapp/src/main/webapp/scenarios/_edition.zul:43 -#: libreplan-webapp/src/main/webapp/qualityforms/_editQualityForm.zul:49 -#: libreplan-webapp/src/main/webapp/qualityforms/_listQualityForm.zul:39 -#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:55 -#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:89 -#: libreplan-webapp/src/main/webapp/email/email_templates.zul:83 -#: libreplan-webapp/src/main/webapp/resources/machine/_listMachines.zul:36 -#: libreplan-webapp/src/main/webapp/resources/machine/_editMachine.zul:62 -#: libreplan-webapp/src/main/webapp/resources/criterions/_edition.zul:67 -msgid "Description" +#: org/libreplan/web/common/ConfigurationController.java:254 +msgid "Changes saved" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/Order.java:437 -msgid "project calendar not specified" +#: libreplan-webapp/src/main/webapp/myaccount/_myTasksArea.zul:36 +#: libreplan-webapp/src/main/webapp/costcategories/_editCostCategory.zul:93 +#: libreplan-webapp/src/main/webapp/resources/search/allocation_selector.zul:58 +#: libreplan-webapp/src/main/webapp/resources/_costCategoryAssignment.zul:40 +#: libreplan-webapp/src/main/webapp/resources/machine/_machineConfigurationUnits.zul:68 +#: libreplan-webapp/src/main/webapp/reports/schedulingProgressPerOrderReport.zul:122 +#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:55 +#: libreplan-webapp/src/main/webapp/reports/orderCostsPerResource.zul:102 +#: libreplan-webapp/src/main/webapp/reports/timeLineMaterialReport.zul:53 +#: libreplan-webapp/src/main/webapp/reports/timeLineMaterialReport.zul:100 +#: libreplan-webapp/src/main/webapp/planner/montecarlo_function.zul:44 +msgid "Start date" msgstr "" -#: org/libreplan/web/resources/worker/WorkerCRUDController.java:449 -msgid "Create Worker" +#: libreplan-webapp/src/main/webapp/reports/timeLineMaterialReport.zul:124 +msgid "Filter by categories or materials" msgstr "" -#: libreplan-webapp/src/main/webapp/limitingresources/limitingResourcesLayout.zul:152 -msgid "Hours to allocate" +#: org/libreplan/web/subcontract/ReportAdvancesModel.java:225 +#: org/libreplan/web/subcontract/SubcontractedTasksModel.java:240 +#: org/libreplan/web/subcontract/SubcontractedTasksModel.java:277 +msgid "Error: {0}" msgstr "" -#: org/libreplan/web/orders/OrdersTreeComponent.java:84 -msgid "Budget minus resources costs" +#: org/libreplan/web/calendars/BaseCalendarEditionController.java:577 +msgid "Please, select type of exception" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/_legendLoadChartOrder.zul:47 -msgid "Load due to current project" +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementHours.zul:269 +msgid "Money spent" msgstr "" -#: org/libreplan/web/orders/OrdersTreeComponent.java:95 -msgid "" -"Estimated start date for the task (press enter in textbox to open calendar " -"popup or type in date directly)" +#: libreplan-webapp/src/main/webapp/advance/advanceTypes.zul:22 +msgid "LibrePlan: Progress Types" msgstr "" -#: org/libreplan/web/planner/chart/EarnedValueChartFiller.java:251 -msgid "VAC" +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementHours.zul:84 +#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:152 +#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:180 +msgid "Concept" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/common/entities/ConnectorProperty.java:51 -msgid "property key not specified" +#: libreplan-webapp/src/main/webapp/myaccount/settings.zul:102 +msgid "Planning charts expanded" msgstr "" -#: libreplan-webapp/src/main/webapp/resources/search/_resourceFilter.zul:52 -msgid "Apply filtering to resources satisfying required criteria" +#: libreplan-webapp/src/main/webapp/subcontract/reportAdvances.zul:49 +msgid "Date last progress measurement" msgstr "" -#: org/libreplan/web/orders/AssignedTaskQualityFormsToOrderElementModel.java:344 -msgid "Quality form cannot be removed as it is spreading progress" +#: libreplan-business/src/main/java/org/libreplan/business/costcategories/entities/HourCost.java:86 +#: libreplan-business/src/main/java/org/libreplan/business/costcategories/entities/HourCost.java:86 +msgid "price cost not specified" msgstr "" -#: org/libreplan/web/planner/order/SaveCommandBuilder.java:863 -msgid "" -"Confirm creating a new project version for this scenario and derived. Are " -"you sure?" +#: org/libreplan/web/planner/reassign/ReassignCommand.java:163 +msgid "Doing {0} reassignations" msgstr "" -#: libreplan-webapp/src/main/webapp/costcategories/_editCostCategory.zul:77 -msgid "Hour costs" +#: libreplan-webapp/src/main/webapp/planner/print_configuration.zul:47 +msgid "Please remember that only saved changes will be printed" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/materials/entities/UnitType.java:76 -msgid "measure not specified" +#: org/libreplan/web/planner/allocation/AdvancedAllocationController.java:1285 +msgid "Stretches with Interpolation" msgstr "" -#: libreplan-webapp/src/main/webapp/users/_editUser.zul:155 -#: libreplan-webapp/src/main/webapp/profiles/_editProfile.zul:60 -msgid "Role name" +#: libreplan-webapp/src/main/webapp/dashboard/_pipeline.zul:15 +msgid "CANCELLED" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/QualityForm.java:216 -msgid "The quality form item positions must be unique and consecutive." +#: org/libreplan/web/calendars/BaseCalendarEditionController.java:586 +#: org/libreplan/web/calendars/BaseCalendarEditionController.java:1154 +msgid "You should select a start date for the exception" msgstr "" -#: org/libreplan/web/resources/criterion/CriterionTreeController.java:334 -msgid "references" +#: org/libreplan/web/common/TemplateController.java:245 +msgid "" +" of LibrePlan is available. Please check next link for more information:" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/components/_listOrderElementMaterials.zul:64 -msgid "Required materials" +#: org/libreplan/web/dashboard/DashboardController.java:171 +msgid "There is a margin of {0} days with the project global deadline ({1}%)." +msgstr "" + +#: libreplan-webapp/src/main/webapp/common/layout/template.zul:129 +msgid "Create New Project" msgstr "" -#: libreplan-webapp/src/main/webapp/reports/workingProgressPerTaskReport.zul:21 -msgid "LibrePlan: Work And Progress Per Task" +#: libreplan-business/src/main/java/org/libreplan/business/materials/entities/Material.java:105 +#: libreplan-business/src/main/java/org/libreplan/business/materials/entities/Material.java:105 +msgid "description is not specified" msgstr "" -#: libreplan-webapp/src/main/webapp/resources/_criterions.zul:36 -msgid "Show only current satisfied criteria" +#: libreplan-webapp/src/main/webapp/myaccount/_myTasksArea.zul:39 +msgid "Work done" msgstr "" -#: org/libreplan/web/planner/company/CompanyPlanningModel.java:388 -#: org/libreplan/web/planner/order/OrderPlanningModel.java:749 -msgid "date in the future" +#: org/libreplan/importers/ExportTimesheetsToTim.java:162 +msgid "Export product code {0}, project {1}" msgstr "" -#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:117 -#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:212 -msgid "Day" +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelSubcontract.zul:76 +msgid "Exportation options" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/costcategories/entities/HourCost.java:112 -#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportLine.java:242 -msgid "type of work hours not specified" +#: libreplan-webapp/src/main/webapp/users/users.zul:23 +msgid "LibrePlan: User Accounts" msgstr "" #: org/libreplan/web/users/dashboard/PersonalTimesheetController.java:789 @@ -7585,1687 +7941,1594 @@ msgid "" "before moving" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/common/entities/EntitySequence.java:93 -msgid "prefix not specified" -msgstr "" - -#: libreplan-business/src/main/java/org/libreplan/business/advance/entities/DirectAdvanceAssignment.java:82 -msgid "maximum value not specified" -msgstr "" - -#: libreplan-webapp/src/main/webapp/orders/_edition.zul:75 -msgid "Authorizations" -msgstr "" - -#: org/libreplan/web/planner/order/OrderPlanningModel.java:739 -msgid "Date must be inside visualization area" +#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:197 +msgid "Update exception" msgstr "" -#: libreplan-webapp/src/main/webapp/common/configuration.zul:214 -msgid "Calendar exception days" +#: libreplan-business/src/main/java/org/libreplan/business/labels/entities/Label.java:47 +#: libreplan-business/src/main/java/org/libreplan/business/labels/entities/Label.java:47 +msgid "type not specified" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAuthorizations.zul:44 -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAuthorizations.zul:68 -#: libreplan-webapp/src/main/webapp/typeofworkhours/_listTypesOfWorkHours.zul:30 -#: libreplan-webapp/src/main/webapp/users/_listUsers.zul:34 -#: libreplan-webapp/src/main/webapp/users/_editUser.zul:156 -#: libreplan-webapp/src/main/webapp/users/_editUser.zul:177 -#: libreplan-webapp/src/main/webapp/profiles/_editProfile.zul:61 -#: libreplan-webapp/src/main/webapp/profiles/_listProfiles.zul:28 -#: libreplan-webapp/src/main/webapp/costcategories/_listCostCategories.zul:30 -#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:79 -msgid "Actions" +#: libreplan-webapp/src/main/webapp/excetiondays/_listExceptionDayTypes.zul:32 +#: libreplan-webapp/src/main/webapp/excetiondays/_editExceptionDayType.zul:62 +msgid "Color" msgstr "" -#: org/libreplan/web/common/CustomMenuController.java:468 -#: libreplan-webapp/src/main/webapp/common/configuration.zul:335 -#: libreplan-webapp/src/main/webapp/resources/machine/_editMachine.zul:33 -msgid "Configuration" +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReport.java:506 +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReport.java:506 +msgid "resource has to be bound to a user in personal timesheets" msgstr "" -#: org/libreplan/web/planner/allocation/AdvancedAllocationController.java:1517 -msgid "Queue-based assignment" +#: libreplan-webapp/src/main/webapp/qualityforms/_editQualityForm.zul:56 +msgid "Quality form type" msgstr "" -#: org/libreplan/web/common/CustomMenuController.java:556 -msgid "Project Status" +#: libreplan-webapp/src/main/webapp/orders/components/_listOrderElementMaterials.zul:107 +msgid "Search" msgstr "" -#: org/libreplan/web/calendars/BaseCalendarCRUDController.java:139 -#: org/libreplan/web/calendars/BaseCalendarCRUDController.java:156 -msgid "Base calendar \"{0}\" saved" +#: libreplan-webapp/src/main/webapp/email/email_templates.zul:82 +msgid "Keyword" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/Criterion.java:293 -msgid "criterion name not specified" +#: libreplan-webapp/src/main/webapp/common/_listJobScheduling.zul:20 +msgid "Job Scheduling List" msgstr "" -#: org/libreplan/web/common/CustomMenuController.java:336 -#: org/libreplan/web/resources/machine/MachineCRUDController.java:579 -msgid "Machines" +#: libreplan-business/src/main/java/org/libreplan/business/costcategories/entities/TypeOfWorkHours.java:128 +#: libreplan-business/src/main/java/org/libreplan/business/costcategories/entities/TypeOfWorkHours.java:128 +msgid "the type of work hours name has to be unique. It is already used" msgstr "" -#: org/libreplan/web/resources/worker/WorkerCRUDController.java:1104 -msgid "Confirm editing user" +#: org/libreplan/web/users/dashboard/PersonalTimesheetController.java:340 +#: org/libreplan/web/users/dashboard/PersonalTimesheetController.java:697 +#: org/libreplan/web/planner/allocation/ResourceAllocationController.java:608 +#: libreplan-webapp/src/main/webapp/orders/_edition.zul:207 +#: libreplan-webapp/src/main/webapp/orders/_edition.zul:226 +#: libreplan-webapp/src/main/webapp/myaccount/personalTimesheet.zul:100 +#: libreplan-webapp/src/main/webapp/myaccount/_expensesArea.zul:34 +#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:53 +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelNonLimitingResourceAllocation.zul:109 +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelNonLimitingResourceAllocation.zul:117 +msgid "Total" msgstr "" -#: libreplan-webapp/src/main/webapp/resources/machine/_machineConfigurationUnits.zul:124 -msgid "Add new criterion requirement" +#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/QualityForm.java:192 +#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/QualityForm.java:192 +msgid "Quality form name is already being used" msgstr "" -#: org/libreplan/web/materials/MaterialsController.java:461 -msgid "List of materials for category: {0}" +#: libreplan-business/src/main/java/org/libreplan/business/materials/entities/MaterialCategory.java:223 +#: libreplan-business/src/main/java/org/libreplan/business/materials/entities/MaterialCategory.java:223 +msgid "Subcategory names must be unique." msgstr "" -#: libreplan-webapp/src/main/webapp/resources/criterions/criterions.zul:24 -msgid "LibrePlan: Criteria" +#: org/libreplan/web/qualityforms/QualityFormCRUDController.java:272 +msgid "" +"Quality form should include an item with a value of 100% in order to report " +"progress" msgstr "" -#: org/libreplan/web/resources/worker/WorkerCRUDController.java:972 -msgid "Do you want to remove bound user \"{0}\" too?" +#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:109 +msgid "Day properties" msgstr "" -#: libreplan-webapp/src/main/webapp/users/_editUser.zul:137 -#: libreplan-webapp/src/main/webapp/profiles/_editProfile.zul:52 -msgid "Association with roles" +#: libreplan-webapp/src/main/webapp/common/layout/login.zul:137 +msgid "User disabled" msgstr "" -#: org/libreplan/web/common/CustomMenuController.java:532 -#: libreplan-webapp/src/main/webapp/reports/completedEstimatedHoursPerTask.zul:39 -msgid "Estimated/Planned Hours Per Task" +#: libreplan-webapp/src/main/webapp/common/layout/template.zul:72 +msgid "Main menu" msgstr "" -#: org/libreplan/web/common/ConfigurationController.java:410 -msgid "JIRA connection was successful" +#: libreplan-webapp/src/main/webapp/limitingresources/limitingResourcesLayout.zul:79 +msgid "Page up" msgstr "" -#: org/libreplan/web/costcategories/ResourcesCostCategoryAssignmentController.java:171 -#: org/libreplan/web/costcategories/CostCategoryCRUDController.java:352 -msgid "Start date cannot be empty" +#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:1088 +msgid "" +"Progress measurements that are reported by quality forms cannot be removed" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/expensesheet/entities/ExpenseSheet.java:139 -msgid "The expense sheet line codes must be unique." +#: org/libreplan/web/exceptionDays/CalendarExceptionTypeCRUDController.java:257 +msgid "Calendar Exception Day" msgstr "" -#: org/libreplan/web/resources/worker/CriterionsController.java:242 -#: org/libreplan/web/resources/machine/MachineConfigurationController.java:215 -msgid "End date is not valid, the new end date must be after start date" +#: org/libreplan/web/users/dashboard/PersonalTimesheetDTO.java:129 +msgid "{0} 1st fortnight" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelTaskProperties.zul:59 -msgid "Duration (days)" +#: libreplan-webapp/src/main/webapp/common/eventError.zul:58 +#: libreplan-webapp/src/main/webapp/common/error.zul:62 +msgid "Exit session" msgstr "" -#: org/libreplan/web/users/settings/PasswordController.java:101 -#: org/libreplan/web/users/UserCRUDController.java:286 -msgid "passwords don't match" +#: org/libreplan/web/common/CustomMenuController.java:400 +#: org/libreplan/web/workreports/WorkReportTypeCRUDController.java:878 +msgid "Timesheets Templates" msgstr "" -#: org/libreplan/web/orders/OrdersTreeComponent.java:69 -#: org/libreplan/web/templates/TemplatesTreeComponent.java:78 -#: org/libreplan/web/common/components/EffortDurationPicker.java:62 -#: org/libreplan/web/workreports/WorkReportCRUDController.java:882 -#: libreplan-webapp/src/main/webapp/orders/components/_orderElementTree.zul:38 -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementHours.zul:34 -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementCriterionRequirements.zul:170 -#: libreplan-webapp/src/main/webapp/orders/_list.zul:37 -#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:133 -#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:189 -#: libreplan-webapp/src/main/webapp/limitingresources/manualAllocation.zul:37 -#: libreplan-webapp/src/main/webapp/workreports/workReportQuery.zul:127 -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelLimitingResourceAllocation.zul:77 -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelTaskProperties.zul:55 -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelNonLimitingResourceAllocation.zul:92 -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_taskInformation.zul:34 -#: libreplan-webapp/src/main/webapp/planner/stretches_function.zul:80 -#: libreplan-webapp/src/main/webapp/planner/stretches_function.zul:89 -msgid "Hours" +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAuthorizations.zul:44 +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAuthorizations.zul:68 +#: libreplan-webapp/src/main/webapp/typeofworkhours/_listTypesOfWorkHours.zul:30 +#: libreplan-webapp/src/main/webapp/users/_listUsers.zul:34 +#: libreplan-webapp/src/main/webapp/users/_editUser.zul:156 +#: libreplan-webapp/src/main/webapp/users/_editUser.zul:177 +#: libreplan-webapp/src/main/webapp/profiles/_editProfile.zul:61 +#: libreplan-webapp/src/main/webapp/profiles/_listProfiles.zul:28 +#: libreplan-webapp/src/main/webapp/costcategories/_listCostCategories.zul:30 +#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:79 +msgid "Actions" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementHours.zul:145 -msgid "Percentage of estimated budget hours / hours consumed" +#: libreplan-webapp/src/main/webapp/montecarlo/_montecarlo.zul:45 +msgid "Pessimistic" msgstr "" -#: libreplan-webapp/src/main/webapp/resources/worker/_edition.zul:118 -msgid "Bound user" +#: org/libreplan/importers/JiraTimesheetSynchronizer.java:111 +msgid "No workers found" msgstr "" -#: org/libreplan/web/planner/tabs/PlanningTabCreator.java:181 -#: org/libreplan/web/planner/tabs/OrdersTabCreator.java:50 -msgid "Project Details" +#: org/libreplan/web/planner/allocation/AdvancedAllocationController.java:1659 +msgid "Configure" msgstr "" -#: org/libreplan/web/common/components/finders/TaskGroupFilterEnum.java:30 -#: org/libreplan/web/common/components/finders/ResourceFilterEnum.java:29 -#: org/libreplan/web/common/components/finders/ResourceFilterEnumByResourceAndCriterion.java:31 -#: org/libreplan/web/common/components/finders/OrderFilterEnum.java:30 -#: org/libreplan/web/common/components/finders/TaskElementFilterEnum.java:34 -#: org/libreplan/web/common/components/finders/OrderElementFilterEnum.java:36 -#: org/libreplan/web/common/components/finders/ResourceAllocationFilterEnum.java:30 -msgid "Criterion" +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAdvances.zul:28 +msgid "Add new progress assignment" msgstr "" -#: org/libreplan/web/common/ConfigurationController.java:384 -msgid "Cannot connet to Tim server" +#: org/libreplan/web/common/entrypoints/RedirectorSynthetiser.java:126 +msgid "Could not load any resource" msgstr "" -#: org/libreplan/web/common/TemplateController.java:245 -msgid "" -" of LibrePlan is available. Please check next link for more information:" +#: org/libreplan/web/costcategories/TypeOfWorkHoursCRUDController.java:106 +msgid "Hours Type" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/expensesheet/entities/ExpenseSheet.java:235 -msgid "a personal expense sheet must have the same resource in all the lines" +#: libreplan-webapp/src/main/webapp/users/_editUser.zul:127 +msgid "Unbound resource" msgstr "" -#: org/libreplan/web/planner/allocation/AllocationRow.java:814 -msgid "there are no valid periods for this calendar" +#: org/libreplan/web/common/components/finders/CriterionBandboxFinder.java:44 +msgid "Criterion Name" msgstr "" -#: libreplan-webapp/src/main/webapp/subcontract/subcontractedTasks.zul:52 -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelSubcontract.zul:71 -msgid "Subcontracting code" +#: libreplan-webapp/src/main/webapp/templates/_historicalAssignment.zul:39 +msgid "Estimated hours" msgstr "" -#: org/libreplan/web/common/components/finders/TaskGroupFilterEnum.java:32 -#: org/libreplan/web/common/components/finders/ResourceBandboxFinder.java:46 -#: org/libreplan/web/common/components/finders/ResourceFilterEnumByResourceAndCriterion.java:31 -#: org/libreplan/web/common/components/finders/TaskElementFilterEnum.java:34 -#: org/libreplan/web/common/components/finders/ResourceAllocationFilterEnum.java:30 -#: org/libreplan/web/workreports/WorkReportCRUDController.java:829 -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementHours.zul:32 -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementHours.zul:85 -#: libreplan-webapp/src/main/webapp/myaccount/personalTimesheet.zul:73 -#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:208 -#: libreplan-webapp/src/main/webapp/workreports/workReportQuery.zul:48 -#: libreplan-webapp/src/main/webapp/workreports/workReportQuery.zul:106 -#: libreplan-webapp/src/main/webapp/workreports/_editWorkReportType.zul:85 -#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:99 -#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:157 -#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:182 -msgid "Resource" +#: org/libreplan/web/orders/JiraSynchronizationController.java:178 +#: org/libreplan/web/orders/JiraSynchronizationController.java:225 +#: org/libreplan/web/common/ConfigurationController.java:413 +#: org/libreplan/web/common/ConfigurationController.java:418 +msgid "Cannot connect to JIRA server" msgstr "" -#: libreplan-webapp/src/main/webapp/montecarlo/_montecarlo.zul:43 -msgid "Optimistic" +#: libreplan-webapp/src/main/webapp/common/configuration.zul:69 +msgid "Default calendar" msgstr "" -#: libreplan-webapp/src/main/webapp/common/_listJobScheduling.zul:20 -msgid "Job Scheduling List" +#: libreplan-webapp/src/main/webapp/externalcompanies/_editExternalCompany.zul:77 +msgid "Application URI" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/common/entities/Configuration.java:180 -msgid "base not specified" +#: org/libreplan/web/planner/allocation/stretches/StretchesFunctionModel.java:278 +msgid "Stretch date must not be before task start date: " msgstr "" -#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:114 -msgid "Allowed values" +#: libreplan-webapp/src/main/webapp/myaccount/settings.zul:170 +#: libreplan-webapp/src/main/webapp/myaccount/settings.zul:199 +msgid "months to" msgstr "" -#: org/libreplan/web/users/dashboard/ExpensesAreaController.java:94 -msgid "Expense sheet \"{1}\" could not be deleted, it was already removed" +#: libreplan-webapp/src/main/webapp/orders/_edition.zul:268 +msgid "External code" msgstr "" -#: org/libreplan/web/resources/criterion/CriterionAdminController.java:200 -msgid "Criterion Type" +#: org/libreplan/importers/JiraOrderElementSynchronizer.java:105 +#: org/libreplan/importers/JiraOrderElementSynchronizer.java:127 +#: org/libreplan/importers/JiraOrderElementSynchronizer.java:507 +#: org/libreplan/importers/JiraTimesheetSynchronizer.java:300 +msgid "JIRA connector not found" msgstr "" -#: org/libreplan/web/workreports/WorkReportCRUDController.java:890 -msgid "Done" +#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:61 +msgid "Job class name" msgstr "" -#: org/libreplan/web/calendars/BaseCalendarCRUDController.java:344 -#: org/libreplan/web/common/Util.java:687 -msgid "Remove" +#: org/libreplan/web/orders/JiraSynchronizationController.java:175 +#: org/libreplan/web/orders/JiraSynchronizationController.java:222 +msgid "Failed: {0}" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/logs/entities/IssueLog.java:104 -msgid "date raised is not specified" +#: libreplan-webapp/src/main/webapp/advance/_listAdvanceTypes.zul:29 +msgid "Predefined" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportType.java:190 -msgid "Assigned Label Type cannot be repeated in a Timesheet Template." +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelNonLimitingResourceAllocation.zul:94 +msgid "Resources Per Day" msgstr "" -#: org/libreplan/web/orders/OrderCRUDController.java:534 -#: org/libreplan/web/orders/OrderCRUDController.java:1412 -#: org/libreplan/web/orders/ProjectDetailsController.java:237 -#: org/libreplan/web/orders/OrderElementTreeController.java:750 -#: org/libreplan/web/workreports/WorkReportQueryController.java:139 -#: org/libreplan/web/resources/worker/WorkerCRUDController.java:784 -#: org/libreplan/web/resources/machine/MachineCRUDController.java:407 -#: org/libreplan/web/planner/company/CompanyPlanningController.java:293 -#: org/libreplan/web/planner/order/OrderPlanningController.java:345 -msgid "must be after start date" +#: libreplan-webapp/src/main/webapp/common/layout/login.zul:185 +msgid "Giving a gift today means LibrePlan continues to remain available and in active development tomorrow!" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReport.java:442 -msgid "last timesheet line sequence code not specified" +#: libreplan-webapp/src/main/webapp/users/_listUsers.zul:22 +msgid "Users List" msgstr "" -#: libreplan-webapp/src/main/webapp/common/layout/template.zul:110 -msgid "user" +#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/OrderElement.java:525 +#: libreplan-business/src/main/java/org/libreplan/business/templates/entities/OrderElementTemplate.java:379 +#: libreplan-business/src/main/java/org/libreplan/business/calendars/entities/CalendarExceptionType.java:108 +#: libreplan-business/src/main/java/org/libreplan/business/calendars/entities/BaseCalendar.java:158 +#: libreplan-business/src/main/java/org/libreplan/business/scenarios/entities/Scenario.java:116 +#: libreplan-business/src/main/java/org/libreplan/business/common/entities/Connector.java:70 +#: libreplan-business/src/main/java/org/libreplan/business/costcategories/entities/TypeOfWorkHours.java:97 +#: libreplan-business/src/main/java/org/libreplan/business/costcategories/entities/CostCategory.java:204 +#: libreplan-business/src/main/java/org/libreplan/business/labels/entities/Label.java:44 +#: libreplan-business/src/main/java/org/libreplan/business/labels/entities/LabelType.java:50 +#: libreplan-business/src/main/java/org/libreplan/business/calendars/entities/CalendarExceptionType.java:108 +#: libreplan-business/src/main/java/org/libreplan/business/calendars/entities/BaseCalendar.java:158 +#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/OrderElement.java:525 +#: libreplan-business/src/main/java/org/libreplan/business/common/entities/Connector.java:70 +#: libreplan-business/src/main/java/org/libreplan/business/labels/entities/LabelType.java:50 +#: libreplan-business/src/main/java/org/libreplan/business/labels/entities/Label.java:44 +#: libreplan-business/src/main/java/org/libreplan/business/templates/entities/OrderElementTemplate.java:379 +#: libreplan-business/src/main/java/org/libreplan/business/costcategories/entities/CostCategory.java:204 +#: libreplan-business/src/main/java/org/libreplan/business/costcategories/entities/TypeOfWorkHours.java:97 +#: libreplan-business/src/main/java/org/libreplan/business/scenarios/entities/Scenario.java:116 +msgid "name not specified" msgstr "" -#: org/libreplan/web/planner/taskedition/TaskPropertiesCommand.java:60 -msgid "Task Properties" +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReport.java:524 +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReport.java:524 +msgid "the same task is marked as finished by more than one timesheet line" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_edition.zul:162 -msgid "Scheduling mode" +#: libreplan-webapp/src/main/webapp/orders/_assignmentsBox.zul:29 +msgid "Reception date" msgstr "" -#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:244 -#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:151 -#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:192 -msgid "Day of week" +#: org/libreplan/web/common/components/TwoWaySelector.java:79 +#: org/libreplan/web/limitingresources/ManualAllocationController.java:585 +#: org/libreplan/web/limitingresources/ManualAllocationController.java:593 +#: org/libreplan/web/limitingresources/ManualAllocationController.java:601 +msgid "Unassigned" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/OrderSyncInfo.java:96 -msgid "connector name not specified" +#: org/libreplan/web/orders/AssignedTaskQualityFormsToOrderElementModel.java:276 +msgid "cannot be checked until the previous item is checked before" msgstr "" -#: libreplan-webapp/src/main/webapp/common/layout/login.zul:21 -msgid "LibrePlan: User access" +#: org/libreplan/web/orders/CriterionRequirementWrapper.java:216 +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementCriterionRequirements.zul:113 +msgid "Invalidate" msgstr "" -#: libreplan-webapp/src/main/webapp/myaccount/settings.zul:156 -msgid "Label filter" +#: libreplan-business/src/main/java/org/libreplan/business/costcategories/entities/ResourcesCostCategoryAssignment.java:145 +#: libreplan-business/src/main/java/org/libreplan/business/costcategories/entities/ResourcesCostCategoryAssignment.java:145 +msgid "cost assignment with end date before start date" msgstr "" -#: libreplan-webapp/src/main/webapp/calendars/_createNewVersion.zul:45 -msgid "From date" +#: org/libreplan/web/users/settings/SettingsController.java:172 +msgid "Project since should be lower than project to" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAuthorizations.zul:32 -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAuthorizations.zul:57 -msgid "Write" +#: org/libreplan/web/resources/worker/WorkerCRUDController.java:973 +msgid "Delete bound user" msgstr "" -#: org/libreplan/web/orders/OrdersTreeComponent.java:84 -#: org/libreplan/web/common/CustomMenuController.java:413 -#: libreplan-webapp/src/main/webapp/orders/_edition.zul:216 -#: libreplan-webapp/src/main/webapp/myaccount/_expensesArea.zul:23 -msgid "Expenses" +#: org/libreplan/web/common/BaseCRUDController.java:306 +msgid "Delete {0} \"{1}\". Are you sure?" msgstr "" -#: libreplan-webapp/src/main/webapp/resources/worker/_calendar.zul:52 -#: libreplan-webapp/src/main/webapp/resources/machine/_calendar.zul:43 -msgid "Remove calendar" +#: libreplan-webapp/src/main/webapp/orders/_orderFilter.zul:45 +#: libreplan-webapp/src/main/webapp/myaccount/settings.zul:176 +msgid "Exclude finished projects" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/calendars/entities/BaseCalendar.java:1111 -msgid "dates must be sorted and cannot overlap" +#: org/libreplan/web/costcategories/ResourcesCostCategoryAssignmentController.java:135 +#: org/libreplan/web/costcategories/CostCategoryCRUDController.java:462 +msgid "Confirm deleting this hour cost. Are you sure?" msgstr "" -#: org/libreplan/web/resources/worker/WorkerCRUDController.java:979 -msgid "Worker and bound user deleted" +#: org/libreplan/web/common/CustomMenuController.java:525 +#: libreplan-webapp/src/main/webapp/reports/workingProgressPerTaskReport.zul:39 +msgid "Work And Progress Per Task" msgstr "" -#: org/libreplan/web/labels/LabelTypeCRUDController.java:294 -msgid "Label Types" +#: org/libreplan/web/planner/allocation/AdvancedAllocationController.java:1626 +msgid "Assignment function will be changed. Are you sure?" msgstr "" -#: libreplan-webapp/src/main/webapp/myaccount/_myTasksArea.zul:38 -msgid "Work budgeted" +#: libreplan-webapp/src/main/webapp/calendars/_createNewVersion.zul:23 +#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:259 +msgid "Create new Workweek" msgstr "" -#: libreplan-webapp/src/main/webapp/common/configuration.zul:396 -msgid "Test LDAP connection" +#: org/libreplan/web/users/dashboard/PersonalTimesheetController.java:397 +#: org/libreplan/web/users/dashboard/PersonalTimesheetController.java:689 +msgid "Other" msgstr "" -#: libreplan-webapp/src/main/webapp/common/layout/login.zul:181 -msgid "We don’t show advertisements or sell your data." +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementTaskQualityForms.zul:30 +#: libreplan-webapp/src/main/webapp/templates/_assignedQualityForms.zul:35 +msgid "Assign quality form" msgstr "" -#: libreplan-webapp/src/main/webapp/dashboard/_pipeline.zul:15 -msgid "CANCELLED" +#: libreplan-webapp/src/main/webapp/users/_editUser.zul:68 +#: libreplan-webapp/src/main/webapp/myaccount/changePassword.zul:49 +#: libreplan-webapp/src/main/webapp/common/layout/login.zul:105 +#: libreplan-webapp/src/main/webapp/common/configuration.zul:386 +#: libreplan-webapp/src/main/webapp/resources/worker/_edition.zul:175 +msgid "Password" msgstr "" -#: org/libreplan/web/common/ConfigurationController.java:265 -msgid "Scheduling or unscheduling of jobs for this connector is not completed" +#: libreplan-webapp/src/main/webapp/orders/_edition.zul:112 +#: libreplan-webapp/src/main/webapp/logs/_listRiskLog.zul:36 +#: libreplan-webapp/src/main/webapp/logs/_editRiskLog.zul:149 +msgid "Responsible" msgstr "" -#: org/libreplan/web/calendars/BaseCalendarEditionController.java:562 -msgid "Not workable day" +#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:244 +#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:151 +#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:192 +msgid "Day of week" msgstr "" -#: libreplan-webapp/src/main/webapp/myaccount/personalTimesheet.zul:90 -msgid "Total personal timesheet" +#: org/libreplan/web/workreports/WorkReportTypeCRUDController.java:593 +msgid "Label type already assigned" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementHours.zul:77 -msgid "Imputed expenses" +#: libreplan-webapp/src/main/webapp/myaccount/changePassword.zul:65 +msgid "Current password" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReport.java:234 -msgid "resource cannot be empty if it is shared by lines" +#: libreplan-webapp/src/main/webapp/common/configuration.zul:477 +msgid "Role search query" msgstr "" -#: libreplan-webapp/src/main/webapp/resources/search/allocation_selector.zul:137 -msgid "[generic all workers]" +#: libreplan-webapp/src/main/webapp/orders/_projectDetails.zul:94 +#: libreplan-webapp/src/main/webapp/common/layout/template.zul:104 +#: libreplan-webapp/src/main/webapp/limitingresources/manualAllocation.zul:140 +#: libreplan-webapp/src/main/webapp/planner/main.zul:66 +#: libreplan-webapp/src/main/webapp/planner/reassign.zul:49 +#: libreplan-webapp/src/main/webapp/planner/editTask.zul:76 +#: libreplan-webapp/src/main/webapp/planner/order.zul:131 +#: libreplan-webapp/src/main/webapp/planner/order.zul:166 +#: libreplan-webapp/src/main/webapp/planner/stretches_function.zul:97 +msgid "Accept" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelLimitingResourceAllocation.zul:75 -msgid "Assignation type" +#: libreplan-webapp/src/main/webapp/orders/_edition.zul:250 +msgid "Customer information" msgstr "" -#: org/libreplan/web/orders/DetailsOrderElementController.java:143 -msgid "must be after starting date" +#: org/libreplan/web/planner/tabs/OrdersTabCreator.java:105 +#: org/libreplan/web/planner/tabs/OrdersTabCreator.java:137 +msgid "Projects List" msgstr "" -#: org/libreplan/web/planner/taskedition/TaskPropertiesController.java:387 -msgid "" -"This resource allocation type is incompatible. The task has an associated " -"order element which has a progress that is of type subcontractor. " +#: libreplan-webapp/src/main/webapp/templates/_historicalStatistics.zul:30 +msgid "Statistics list " msgstr "" -#: org/libreplan/web/common/components/ResourceAllocationBehaviour.java:63 -#: libreplan-webapp/src/main/webapp/resources/worker/_list.zul:39 -#: libreplan-webapp/src/main/webapp/resources/machine/_listMachines.zul:38 -#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:94 -msgid "Queue-based" +#: org/libreplan/web/common/CustomMenuController.java:498 +msgid "Communications" msgstr "" -#: org/libreplan/importers/OrderImporterMPXJ.java:608 -msgid "Linked calendar not found" +#: libreplan-webapp/src/main/webapp/planner/stretches_function.zul:76 +msgid "Dedication chart" msgstr "" -#: org/libreplan/web/workreports/WorkReportCRUDController.java:273 -msgid "Timesheet saved" +#: libreplan-webapp/src/main/webapp/externalcompanies/_listExternalCompanies.zul:27 +#: libreplan-webapp/src/main/webapp/externalcompanies/_editExternalCompany.zul:47 +msgid "Company ID" msgstr "" -#: org/libreplan/web/resourceload/ResourceLoadController.java:228 -#: org/libreplan/web/planner/company/CompanyPlanningModel.java:347 -#: org/libreplan/web/planner/order/OrderPlanningModel.java:704 -#: libreplan-webapp/src/main/webapp/planner/_legendLoadChartOrder.zul:49 -msgid "Load" +#: org/libreplan/web/orders/criterionrequirements/AssignedCriterionRequirementController.java:259 +msgid "" +"Are you sure of changing the resource type? You will lose the criteria with " +"different resource type." msgstr "" -#: libreplan-webapp/src/main/webapp/typeofworkhours/_editTypeOfWorkHours.zul:59 -#: libreplan-webapp/src/main/webapp/typeofworkhours/_listTypesOfWorkHours.zul:28 -msgid "Default price" +#: org/libreplan/web/reports/ProjectStatusReportController.java:114 +msgid "You should filter the report by project, labels or criteria" msgstr "" -#: org/libreplan/web/dashboard/GlobalProgressChart.java:58 -msgid "Spreading progress" +#: libreplan-business/src/main/java/org/libreplan/business/labels/entities/LabelType.java:156 +#: libreplan-business/src/main/java/org/libreplan/business/labels/entities/LabelType.java:156 +msgid "label code is already being used" msgstr "" -#: libreplan-webapp/src/main/webapp/myaccount/settings.zul:125 -msgid "Planning view modes on" +#: org/libreplan/web/orders/materials/AssignedMaterialsController.java:380 +msgid "Delete item {0}. Are you sure?" msgstr "" -#: org/libreplan/web/expensesheet/ExpenseSheetCRUDController.java:439 -msgid "Code cannot be empty." +#: org/libreplan/web/montecarlo/MonteCarloModel.java:68 +#: libreplan-webapp/src/main/webapp/montecarlo/_montecarlo.zul:71 +msgid "Critical path" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/Resource.java:1080 -msgid "Some cost category assignments overlap in time" +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementCriterionRequirements.zul:168 +msgid "Criterion Requirements" msgstr "" -#: libreplan-webapp/src/main/webapp/logs/_listRiskLog.zul:33 -msgid "Counter measures" +#: libreplan-webapp/src/main/webapp/limitingresources/manualAllocation.zul:128 +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelTaskProperties.zul:42 +#: libreplan-webapp/src/main/webapp/planner/main.zul:57 +msgid "End" msgstr "" -#: org/libreplan/web/planner/allocation/FormBinder.java:661 -msgid "already exists an allocation for criteria {0}" +#: org/libreplan/web/orders/OrderCRUDController.java:1057 +#: org/libreplan/web/templates/OrderTemplatesController.java:369 +#: org/libreplan/web/users/dashboard/ExpensesAreaController.java:81 +#: org/libreplan/web/common/BaseCRUDController.java:307 +#: org/libreplan/web/qualityforms/QualityFormCRUDController.java:155 +msgid "Confirm" msgstr "" -#: libreplan-webapp/src/main/webapp/calendars/_createNewVersion.zul:35 -msgid "Base calendar type" +#: libreplan-webapp/src/main/webapp/users/_editUser.zul:137 +#: libreplan-webapp/src/main/webapp/profiles/_editProfile.zul:52 +msgid "Association with roles" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/QualityFormItem.java:72 -msgid "quality form item name not specified or empty" +#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/TaskQualityFormItem.java:87 +#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/TaskQualityFormItem.java:87 +msgid "position not specified" msgstr "" -#: org/libreplan/web/common/CustomMenuController.java:390 -#: libreplan-webapp/src/main/webapp/dashboard/_dashboardfororder.zul:84 -#: libreplan-webapp/src/main/webapp/orders/_edition.zul:221 -#: libreplan-webapp/src/main/webapp/common/configuration.zul:181 -msgid "Resources" +#: libreplan-webapp/src/main/webapp/common/pageNotFound.zul:57 +msgid "Help/Info pages are not generated" msgstr "" -#: org/libreplan/web/common/CustomMenuController.java:525 -#: libreplan-webapp/src/main/webapp/reports/workingProgressPerTaskReport.zul:39 -msgid "Work And Progress Per Task" +#: org/libreplan/web/planner/taskedition/TaskPropertiesController.java:483 +#: org/libreplan/web/planner/order/SubcontractCommand.java:53 +#: libreplan-webapp/src/main/webapp/planner/editTask.zul:64 +msgid "Subcontract" msgstr "" -#: org/libreplan/web/workreports/WorkReportCRUDController.java:1575 -#: org/libreplan/web/workreports/WorkReportCRUDController.java:1580 -msgid "please, select a timesheet template type" +#: libreplan-webapp/src/main/webapp/logs/_listIssueLog.zul:30 +#: libreplan-webapp/src/main/webapp/logs/_editIssueLog.zul:115 +msgid "Severity" msgstr "" -#: libreplan-webapp/src/main/webapp/typeofworkhours/_listTypesOfWorkHours.zul:27 -msgid "Type name" +#: libreplan-webapp/src/main/webapp/subcontract/subcontractedTasks.zul:22 +msgid "LibrePlan: Send To Subcontractors" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/externalcompanies/entities/ExternalCompany.java:148 -msgid "company name must be unique. Company name already used" +#: org/libreplan/web/dashboard/DashboardController.java:183 +msgid "Task deadline violations" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReport.java:455 -msgid "only one timesheet line per day and task is allowed in personal timesheets" +#: org/libreplan/web/common/components/finders/ResourceFilterEnum.java:29 +#: libreplan-webapp/src/main/webapp/common/configuration.zul:221 +#: libreplan-webapp/src/main/webapp/resources/criterions/_criterionsTree.zul:45 +msgid "Cost category" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/TaskQualityFormItem.java:78 -msgid "percentage not specified" +#: libreplan-webapp/src/main/webapp/reports/schedulingProgressPerOrderReport.zul:100 +#: libreplan-webapp/src/main/webapp/reports/workingProgressPerTaskReport.zul:62 +#: libreplan-webapp/src/main/webapp/reports/workingArrangementsPerOrderReport.zul:43 +#: libreplan-webapp/src/main/webapp/reports/orderCostsPerResource.zul:74 +#: libreplan-webapp/src/main/webapp/reports/timeLineMaterialReport.zul:74 +#: libreplan-webapp/src/main/webapp/reports/completedEstimatedHoursPerTask.zul:61 +msgid "Filter by projects" msgstr "" -#: org/libreplan/web/orders/TreeElementOperationsController.java:239 -#: org/libreplan/web/users/UserCRUDController.java:421 -#: org/libreplan/web/resources/worker/WorkerCRUDController.java:1103 -msgid "Unsaved changes will be lost. Would you like to continue?" +#: org/libreplan/web/orders/AssignedTaskQualityFormsToOrderElementController.java:353 +#: org/libreplan/web/tree/TreeComponent.java:51 +#: org/libreplan/web/common/components/finders/QualityFormBandboxFinder.java:50 +#: org/libreplan/web/common/components/finders/TypeOfWorkHoursBandboxFinder.java:43 +#: org/libreplan/web/common/components/finders/BaseCalendarBandboxFinder.java:46 +#: org/libreplan/web/common/components/finders/ScenarioBandboxFinder.java:46 +#: org/libreplan/web/common/components/finders/ExternalCompanyBandboxFinder.java:50 +#: org/libreplan/web/common/components/finders/LabelBandboxFinder.java:51 +#: org/libreplan/web/planner/allocation/AdvancedAllocationController.java:1013 +#: org/libreplan/web/planner/allocation/ResourceAllocationController.java:438 +#: libreplan-webapp/src/main/webapp/excetiondays/_listExceptionDayTypes.zul:31 +#: libreplan-webapp/src/main/webapp/excetiondays/_editExceptionDayType.zul:54 +#: libreplan-webapp/src/main/webapp/materials/materials.zul:61 +#: libreplan-webapp/src/main/webapp/unittypes/_editUnitType.zul:51 +#: libreplan-webapp/src/main/webapp/orders/_edition.zul:97 +#: libreplan-webapp/src/main/webapp/orders/_projectDetails.zul:38 +#: libreplan-webapp/src/main/webapp/orders/components/_listOrderElementMaterials.zul:120 +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementFiles.zul:37 +#: libreplan-webapp/src/main/webapp/orders/_assignmentsBox.zul:28 +#: libreplan-webapp/src/main/webapp/orders/_list.zul:29 +#: libreplan-webapp/src/main/webapp/logs/_logsFilter.zul:21 +#: libreplan-webapp/src/main/webapp/templates/_listTemplates.zul:29 +#: libreplan-webapp/src/main/webapp/templates/_editTemplate.zul:87 +#: libreplan-webapp/src/main/webapp/templates/_assignedQualityForms.zul:49 +#: libreplan-webapp/src/main/webapp/typeofworkhours/_editTypeOfWorkHours.zul:52 +#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:41 +#: libreplan-webapp/src/main/webapp/calendars/_list.zul:28 +#: libreplan-webapp/src/main/webapp/scenarios/transferOrders.zul:66 +#: libreplan-webapp/src/main/webapp/scenarios/transferOrders.zul:76 +#: libreplan-webapp/src/main/webapp/scenarios/_edition.zul:32 +#: libreplan-webapp/src/main/webapp/scenarios/_edition.zul:52 +#: libreplan-webapp/src/main/webapp/scenarios/_list.zul:27 +#: libreplan-webapp/src/main/webapp/subcontract/reportAdvances.zul:46 +#: libreplan-webapp/src/main/webapp/profiles/_editProfile.zul:41 +#: libreplan-webapp/src/main/webapp/common/configuration.zul:531 +#: libreplan-webapp/src/main/webapp/advance/_listAdvanceTypes.zul:27 +#: libreplan-webapp/src/main/webapp/limitingresources/limitingResourcesLayout.zul:95 +#: libreplan-webapp/src/main/webapp/externalcompanies/_listExternalCompanies.zul:26 +#: libreplan-webapp/src/main/webapp/qualityforms/_editQualityForm.zul:42 +#: libreplan-webapp/src/main/webapp/qualityforms/_editQualityForm.zul:83 +#: libreplan-webapp/src/main/webapp/qualityforms/_listQualityForm.zul:38 +#: libreplan-webapp/src/main/webapp/costcategories/_editCostCategory.zul:59 +#: libreplan-webapp/src/main/webapp/workreports/_sortFieldsAndLabels.zul:34 +#: libreplan-webapp/src/main/webapp/workreports/_sortFieldsAndLabels.zul:50 +#: libreplan-webapp/src/main/webapp/workreports/_editWorkReportType.zul:45 +#: libreplan-webapp/src/main/webapp/workreports/_editWorkReportType.zul:141 +#: libreplan-webapp/src/main/webapp/workreports/_editWorkReportType.zul:167 +#: libreplan-webapp/src/main/webapp/workreports/_listWorkReportTypes.zul:27 +#: libreplan-webapp/src/main/webapp/labels/_listLabelTypes.zul:26 +#: libreplan-webapp/src/main/webapp/labels/_editLabelType.zul:42 +#: libreplan-webapp/src/main/webapp/labels/_editLabelType.zul:77 +#: libreplan-webapp/src/main/webapp/resources/worker/_listVirtualWorkers.zul:34 +#: libreplan-webapp/src/main/webapp/resources/machine/_listMachines.zul:35 +#: libreplan-webapp/src/main/webapp/resources/machine/_editMachine.zul:56 +#: libreplan-webapp/src/main/webapp/resources/machine/_machineConfigurationUnits.zul:34 +#: libreplan-webapp/src/main/webapp/resources/machine/_machineConfigurationUnits.zul:67 +#: libreplan-webapp/src/main/webapp/resources/machine/_machineConfigurationUnits.zul:130 +#: libreplan-webapp/src/main/webapp/resources/criterions/_criterionsTree.zul:44 +#: libreplan-webapp/src/main/webapp/resources/criterions/_edition.zul:39 +#: libreplan-webapp/src/main/webapp/resources/criterions/_workers.zul:27 +#: libreplan-webapp/src/main/webapp/resources/criterions/_workers.zul:45 +#: libreplan-webapp/src/main/webapp/resources/criterions/_list.zul:25 +#: libreplan-webapp/src/main/webapp/reports/schedulingProgressPerOrderReport.zul:120 +#: libreplan-webapp/src/main/webapp/reports/projectStatusReport.zul:88 +#: libreplan-webapp/src/main/webapp/reports/projectStatusReport.zul:130 +#: libreplan-webapp/src/main/webapp/reports/workingProgressPerTaskReport.zul:96 +#: libreplan-webapp/src/main/webapp/reports/workingProgressPerTaskReport.zul:137 +#: libreplan-webapp/src/main/webapp/reports/workingArrangementsPerOrderReport.zul:109 +#: libreplan-webapp/src/main/webapp/reports/workingArrangementsPerOrderReport.zul:153 +#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:95 +#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:137 +#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:179 +#: libreplan-webapp/src/main/webapp/reports/orderCostsPerResource.zul:100 +#: libreplan-webapp/src/main/webapp/reports/orderCostsPerResource.zul:149 +#: libreplan-webapp/src/main/webapp/reports/orderCostsPerResource.zul:192 +#: libreplan-webapp/src/main/webapp/reports/timeLineMaterialReport.zul:98 +#: libreplan-webapp/src/main/webapp/reports/completedEstimatedHoursPerTask.zul:100 +#: libreplan-webapp/src/main/webapp/reports/completedEstimatedHoursPerTask.zul:143 +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelTaskProperties.zul:33 +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelNonLimitingResourceAllocation.zul:90 +#: libreplan-webapp/src/main/webapp/planner/main.zul:49 +msgid "Name" msgstr "" -#: org/libreplan/web/workreports/WorkReportCRUDController.java:496 -msgid "task is already marked as finished in another timesheet" +#: org/libreplan/web/common/ConfigurationModel.java:202 +msgid "At least one {0} sequence is needed" msgstr "" -#: org/libreplan/web/planner/order/SaveCommandBuilder.java:1010 -msgid "Task {0}" +#: org/libreplan/web/common/CustomMenuController.java:462 +msgid "Edit E-mail Templates" msgstr "" -#: org/libreplan/web/workreports/WorkReportCRUDController.java:458 -msgid "effort is not properly calculated based on clock" +#: libreplan-webapp/src/main/webapp/workreports/_editWorkReportType.zul:126 +msgid "Complementary text fields" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/OrderElement.java:1118 -msgid "code is already used in another project" +#: org/libreplan/web/common/CustomMenuController.java:431 +#: libreplan-webapp/src/main/webapp/dashboard/_dashboardfororder.zul:75 +#: libreplan-webapp/src/main/webapp/orders/_editOrderElement.zul:47 +#: libreplan-webapp/src/main/webapp/orders/_edition.zul:60 +msgid "Cost" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/materials/entities/MaterialInfo.java:61 -msgid "unit price not specified" +#: org/libreplan/web/scenarios/ScenarioCRUDController.java:213 +#: org/libreplan/web/common/TemplateController.java:133 +msgid "error doing reassignment: {0}" msgstr "" -#: libreplan-webapp/src/main/webapp/common/layout/login.zul:180 -msgid "Did you know LibrePlan is funded only by donations, from people like you?" +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementCriterionRequirements.zul:250 +msgid "Add Exception" msgstr "" -#: libreplan-webapp/src/main/webapp/limitingresources/limitingResourcesLayout.zul:119 -msgid "Tasks input buffer" +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementTaskQualityForms.zul:36 +#: libreplan-webapp/src/main/webapp/orders/components/_listOrderElementLabels.zul:82 +#: libreplan-webapp/src/main/webapp/orders/components/_listOrderElementMaterials.zul:109 +#: libreplan-webapp/src/main/webapp/templates/_assignedQualityForms.zul:39 +msgid "Assign" msgstr "" -#: libreplan-webapp/src/main/webapp/reports/schedulingProgressPerOrderReport.zul:65 -#: libreplan-webapp/src/main/webapp/reports/workingProgressPerTaskReport.zul:53 -#: libreplan-webapp/src/main/webapp/reports/completedEstimatedHoursPerTask.zul:52 -msgid "Reference date" +#: org/libreplan/web/calendars/BaseCalendarCRUDController.java:318 +#: org/libreplan/web/scenarios/ScenarioCRUDController.java:129 +msgid "Create derived" msgstr "" -#: org/libreplan/web/dashboard/DashboardController.java:266 -msgid "" -"% Deviation interval (difference % between consumed and estimated hours)" +#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:309 +msgid "Create activation period" msgstr "" -#: org/libreplan/web/orders/OrderCRUDController.java:1693 -msgid "It already exists a end date with the same date. " +#: libreplan-webapp/src/main/webapp/orders/components/_orderElementTree.zul:58 +msgid "Create template from selected task" msgstr "" -#: org/libreplan/web/templates/OrderTemplatesController.java:304 -#: org/libreplan/web/common/CustomMenuController.java:323 -#: org/libreplan/web/common/CustomMenuController.java:588 -#: org/libreplan/web/importers/ProjectImportController.java:82 -#: org/libreplan/web/planner/tabs/MultipleTabsPlannerController.java:237 -msgid "Planning" +#: org/libreplan/web/common/CustomMenuController.java:482 +msgid "Received From Subcontractors" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_list.zul:22 -msgid "Projects list" +#: org/libreplan/web/tree/TreeController.java:1299 +msgid "Modified" msgstr "" -#: libreplan-webapp/src/main/webapp/myaccount/settings.zul:47 -msgid "Personal Data" +#: org/libreplan/web/planner/allocation/ResourceAllocationController.java:368 +msgid "Calculate Workable Days" msgstr "" -#: org/libreplan/web/orders/JiraSynchronizationController.java:278 -msgid "Start sync" +#: org/libreplan/web/resources/worker/WorkerCRUDController.java:478 +#: org/libreplan/web/resources/worker/CriterionsController.java:93 +msgid "MessagesContainer is needed" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/externalcompanies/entities/ExternalCompany.java:182 -msgid "interaction fields are empty and company is marked as interact with applications" +#: org/libreplan/web/expensesheet/ExpenseSheetCRUDController.java:606 +msgid "Regular" msgstr "" -#: org/libreplan/web/planner/order/SaveCommandBuilder.java:328 -msgid "" -"Error saving the project\n" -"{0}" +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelLimitingResourceAllocation.zul:75 +msgid "Assignation type" msgstr "" -#: org/libreplan/web/workreports/WorkReportTypeCRUDController.java:835 -msgid "Index fields and labels must be unique and consecutive" +#: org/libreplan/web/planner/reassign/ReassignCommand.java:129 +msgid "{0} reassignations finished" msgstr "" -#: org/libreplan/web/materials/MaterialsController.java:247 -#: org/libreplan/web/materials/MaterialsController.java:262 -#: org/libreplan/web/orders/files/OrderFilesController.java:183 -#: org/libreplan/web/orders/materials/AssignedMaterialsController.java:381 -#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:1156 -#: org/libreplan/web/calendars/BaseCalendarEditionController.java:819 -#: org/libreplan/web/calendars/BaseCalendarEditionController.java:1106 -#: org/libreplan/web/calendars/BaseCalendarEditionController.java:1312 -#: org/libreplan/web/calendars/BaseCalendarCRUDController.java:400 -#: org/libreplan/web/tree/TreeController.java:1163 -#: org/libreplan/web/tree/TreeController.java:1172 -#: org/libreplan/web/costcategories/ResourcesCostCategoryAssignmentController.java:135 -#: org/libreplan/web/costcategories/ResourcesCostCategoryAssignmentController.java:152 -#: org/libreplan/web/costcategories/CostCategoryCRUDController.java:293 -#: org/libreplan/web/costcategories/CostCategoryCRUDController.java:462 -#: org/libreplan/web/workreports/WorkReportCRUDController.java:955 -#: org/libreplan/web/workreports/WorkReportCRUDController.java:1196 -#: org/libreplan/web/workreports/WorkReportTypeCRUDController.java:324 -#: org/libreplan/web/expensesheet/ExpenseSheetCRUDController.java:213 -#: org/libreplan/web/expensesheet/ExpenseSheetCRUDController.java:385 -#: org/libreplan/web/resources/criterion/CriterionTreeController.java:329 -#: org/libreplan/web/resources/worker/WorkerCRUDController.java:961 -#: org/libreplan/web/reports/HoursWorkedPerWorkerController.java:280 -#: org/libreplan/web/planner/order/SubcontractController.java:207 -#: org/libreplan/web/planner/allocation/stretches/StretchesFunctionController.java:387 -#: org/libreplan/web/planner/allocation/ResourceAllocationController.java:629 -#: libreplan-webapp/src/main/webapp/materials/materials.zul:108 -#: libreplan-webapp/src/main/webapp/orders/components/_listOrderElementLabels.zul:68 -#: libreplan-webapp/src/main/webapp/orders/_assignmentsBox.zul:72 -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementCriterionRequirements.zul:103 -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementCriterionRequirements.zul:241 -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAuthorizations.zul:79 -#: libreplan-webapp/src/main/webapp/orders/_listHoursGroupCriterionRequirement.zul:119 -#: libreplan-webapp/src/main/webapp/templates/_listTemplates.zul:64 -#: libreplan-webapp/src/main/webapp/templates/_materialAssignmentsBox.zul:57 -#: libreplan-webapp/src/main/webapp/typeofworkhours/_listTypesOfWorkHours.zul:50 -#: libreplan-webapp/src/main/webapp/users/_editUser.zul:185 -#: libreplan-webapp/src/main/webapp/profiles/_listProfiles.zul:41 -#: libreplan-webapp/src/main/webapp/externalcompanies/_listExternalCompanies.zul:48 -#: libreplan-webapp/src/main/webapp/qualityforms/_editQualityForm.zul:116 -#: libreplan-webapp/src/main/webapp/qualityforms/_listQualityForm.zul:54 -#: libreplan-webapp/src/main/webapp/costcategories/_listCostCategories.zul:47 -#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:99 -#: libreplan-webapp/src/main/webapp/workreports/_listWorkReportTypes.zul:43 -#: libreplan-webapp/src/main/webapp/labels/_listLabelTypes.zul:42 -#: libreplan-webapp/src/main/webapp/labels/_editLabelType.zul:99 -#: libreplan-webapp/src/main/webapp/resources/worker/_workRelationships.zul:46 -#: libreplan-webapp/src/main/webapp/resources/worker/_listVirtualWorkers.zul:52 -#: libreplan-webapp/src/main/webapp/resources/_criterions.zul:114 -#: libreplan-webapp/src/main/webapp/resources/machine/_machineConfigurationUnits.zul:87 -#: libreplan-webapp/src/main/webapp/resources/machine/_machineConfigurationUnits.zul:139 -#: libreplan-webapp/src/main/webapp/resources/machine/_machineConfigurationUnits.zul:155 -#: libreplan-webapp/src/main/webapp/resources/criterions/_list.zul:45 -#: libreplan-webapp/src/main/webapp/reports/schedulingProgressPerOrderReport.zul:133 -#: libreplan-webapp/src/main/webapp/reports/projectStatusReport.zul:98 -#: libreplan-webapp/src/main/webapp/reports/projectStatusReport.zul:140 -#: libreplan-webapp/src/main/webapp/reports/workingProgressPerTaskReport.zul:106 -#: libreplan-webapp/src/main/webapp/reports/workingProgressPerTaskReport.zul:147 -#: libreplan-webapp/src/main/webapp/reports/workingArrangementsPerOrderReport.zul:119 -#: libreplan-webapp/src/main/webapp/reports/workingArrangementsPerOrderReport.zul:163 -#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:146 -#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:188 -#: libreplan-webapp/src/main/webapp/reports/orderCostsPerResource.zul:114 -#: libreplan-webapp/src/main/webapp/reports/orderCostsPerResource.zul:159 -#: libreplan-webapp/src/main/webapp/reports/orderCostsPerResource.zul:202 -#: libreplan-webapp/src/main/webapp/reports/timeLineMaterialReport.zul:110 -#: libreplan-webapp/src/main/webapp/reports/completedEstimatedHoursPerTask.zul:110 -#: libreplan-webapp/src/main/webapp/reports/completedEstimatedHoursPerTask.zul:153 -msgid "Delete" +#: libreplan-webapp/src/main/webapp/common/configuration.zul:23 +msgid "LibrePlan: Main Settings" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/Criterion.java:306 -msgid "criterion type not specified" +#: org/libreplan/web/users/OrderAuthorizationController.java:93 +msgid "No authorizations were added because you did not select any." msgstr "" -#: libreplan-webapp/src/main/webapp/logs/_listIssueLog.zul:33 -msgid "Assigned To" +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementHours.zul:168 +msgid "Imputed hours" msgstr "" -#: libreplan-webapp/src/main/webapp/scenarios/transferOrders.zul:67 -#: libreplan-webapp/src/main/webapp/scenarios/transferOrders.zul:77 -msgid "Version" +#: org/libreplan/web/resources/worker/WorkerCRUDController.java:854 +msgid "Normal resource" msgstr "" -#: org/libreplan/web/orders/CriterionRequirementWrapper.java:216 -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementCriterionRequirements.zul:113 -msgid "Invalidate" +#: libreplan-webapp/src/main/webapp/templates/_historicalStatistics.zul:55 +msgid "Maximum/minimum of estimated hours" msgstr "" -#: libreplan-webapp/src/main/webapp/dashboard/_pipeline.zul:12 -msgid "STARTED" +#: org/libreplan/web/planner/reassign/Type.java:43 +msgid "From today" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/common/entities/EntitySequence.java:189 -msgid "entity name not specified" +#: org/libreplan/web/common/CustomMenuController.java:570 +msgid "Personal area" msgstr "" -#: org/libreplan/web/common/CustomMenuController.java:431 -#: libreplan-webapp/src/main/webapp/dashboard/_dashboardfororder.zul:75 -#: libreplan-webapp/src/main/webapp/orders/_editOrderElement.zul:47 -#: libreplan-webapp/src/main/webapp/orders/_edition.zul:60 -msgid "Cost" +#: org/libreplan/web/resourceload/ResourceLoadController.java:455 +msgid "From" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/MachineWorkersConfigurationUnit.java:179 -msgid "The same resource is assigned twice inside an interval" +#: libreplan-webapp/src/main/webapp/orders/imports/projectImport.zul:60 +msgid "Upload Project" msgstr "" -#: org/libreplan/web/orders/materials/AssignedMaterialsController.java:380 -msgid "Delete item {0}. Are you sure?" +#: libreplan-webapp/src/main/webapp/myaccount/settings.zul:135 +msgid "Show resources" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_listHoursGroupCriterionRequirement.zul:126 -msgid "Disable Delete" +#: org/libreplan/web/resources/criterion/CriterionsModel.java:217 +msgid "Criterion cannot be empty" msgstr "" -#: org/libreplan/web/resources/criterion/CriterionAdminController.java:205 -msgid "Criterion Types" +#: org/libreplan/web/resources/worker/CriterionsMachineController.java:233 +#: org/libreplan/web/resources/worker/CriterionsController.java:222 +msgid "Invalid Start Date. New Start Date must be earlier than End Date" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementFiles.zul:40 -msgid "Uploaded by" +#: org/libreplan/web/common/JobSchedulerController.java:385 +msgid "Job is scheduled/unscheduled" msgstr "" -#: org/libreplan/web/common/components/NewAllocationSelector.java:55 -msgid "generic workers allocation" +#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/OrderLine.java:336 +#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/OrderLine.java:336 +msgid "Code already included in Hours Group codes" msgstr "" -#: org/libreplan/web/planner/order/SaveCommandBuilder.java:494 -#: org/libreplan/web/planner/order/SaveCommandBuilder.java:504 -msgid "Repeated Project code {0} in Project {1}" +#: libreplan-webapp/src/main/webapp/resources/_criterions.zul:36 +msgid "Show only current satisfied criteria" msgstr "" -#: libreplan-webapp/src/main/webapp/users/_editUser.zul:56 -#: libreplan-webapp/src/main/webapp/myaccount/settings.zul:63 -#: libreplan-webapp/src/main/webapp/resources/worker/_edition.zul:68 -#: libreplan-webapp/src/main/webapp/resources/worker/_list.zul:36 -msgid "First name" +#: libreplan-webapp/src/main/webapp/orders/_edition.zul:337 +#: libreplan-webapp/src/main/webapp/myaccount/_myTasksArea.zul:37 +#: libreplan-webapp/src/main/webapp/costcategories/_editCostCategory.zul:94 +#: libreplan-webapp/src/main/webapp/resources/search/allocation_selector.zul:63 +#: libreplan-webapp/src/main/webapp/resources/_costCategoryAssignment.zul:41 +#: libreplan-webapp/src/main/webapp/resources/machine/_machineConfigurationUnits.zul:69 +#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:60 +#: libreplan-webapp/src/main/webapp/reports/timeLineMaterialReport.zul:57 +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelSubcontract.zul:130 +#: libreplan-webapp/src/main/webapp/planner/montecarlo_function.zul:47 +#: libreplan-webapp/src/main/webapp/planner/montecarlo_function.zul:63 +msgid "End date" msgstr "" -#: org/libreplan/web/common/CustomMenuController.java:511 -#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerInAMonthReport.zul:39 -msgid "Total Worked Hours By Resource In A Month" +#: libreplan-business/src/main/java/org/libreplan/business/labels/entities/LabelType.java:201 +#: libreplan-business/src/main/java/org/libreplan/business/labels/entities/LabelType.java:201 +msgid "last label sequence code not specified" msgstr "" -#: libreplan-webapp/src/main/webapp/montecarlo/_montecarlo.zul:100 -msgid "Go!" +#: org/libreplan/web/planner/consolidations/AdvanceConsolidationModel.java:458 +msgid "( max: {0} )" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/planner/entities/consolidations/ConsolidatedValue.java:70 -msgid "task end date not specified" +#: libreplan-webapp/src/main/webapp/orders/_orderFilter.zul:24 +#: libreplan-webapp/src/main/webapp/orders/_orderElementTreeFilter.zul:24 +#: libreplan-webapp/src/main/webapp/resources/search/_resourceFilter.zul:26 +msgid "Select required criteria set and press filter button" msgstr "" -#: libreplan-webapp/src/main/webapp/resources/worker/worker.zul:22 -msgid "LibrePlan: Workers" +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAuthorizations.zul:43 +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAuthorizations.zul:67 +msgid "Permissions" msgstr "" -#: libreplan-webapp/src/main/webapp/dashboard/_dashboardfororder.zul:131 -msgid "No tasks available yet" +#: libreplan-webapp/src/main/webapp/reports/schedulingProgressPerOrderReport.zul:166 +#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerInAMonthReport.zul:89 +#: libreplan-webapp/src/main/webapp/reports/projectStatusReport.zul:175 +#: libreplan-webapp/src/main/webapp/reports/workingProgressPerTaskReport.zul:180 +#: libreplan-webapp/src/main/webapp/reports/workingArrangementsPerOrderReport.zul:197 +#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:222 +#: libreplan-webapp/src/main/webapp/reports/orderCostsPerResource.zul:237 +#: libreplan-webapp/src/main/webapp/reports/completedEstimatedHoursPerTask.zul:187 +msgid "if the report is not opened automatically or use save as..." msgstr "" -#: org/libreplan/web/common/JobSchedulerModel.java:165 -msgid "Task should start job" +#: libreplan-webapp/src/main/webapp/common/configuration.zul:151 +msgid "Check this option if you would like to send feedback to LibrePlan developers about program usage" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementHours.zul:252 -msgid "Hours cost" +#: org/libreplan/web/common/ConfigurationModel.java:254 +msgid "Some sequences to be removed do not exist" msgstr "" -#: org/libreplan/web/users/OrderAuthorizationController.java:93 -msgid "No authorizations were added because you did not select any." +#: org/libreplan/web/planner/allocation/AdvancedAllocationCommand.java:47 +msgid "Advanced allocation" msgstr "" -#: libreplan-webapp/src/main/webapp/reports/orderCostsPerResource.zul:64 -msgid "Work done until ending date" +#: libreplan-webapp/src/main/webapp/common/layout/_customMenu.zul:59 +msgid "START" msgstr "" -#: org/libreplan/web/resources/worker/WorkerModel.java:254 -msgid "Worker must be not-null" +#: libreplan-webapp/src/main/webapp/orders/components/_orderElementTree.zul:69 +msgid "Move selected task up" msgstr "" -#: org/libreplan/web/common/components/finders/ExternalCompanyBandboxFinder.java:50 -#: libreplan-webapp/src/main/webapp/resources/worker/_edition.zul:88 -#: libreplan-webapp/src/main/webapp/resources/worker/_list.zul:37 -#: libreplan-webapp/src/main/webapp/resources/criterions/_workers.zul:29 -msgid "ID" +#: libreplan-business/src/main/java/org/libreplan/business/costcategories/entities/TypeOfWorkHours.java:171 +#: libreplan-business/src/main/java/org/libreplan/business/costcategories/entities/TypeOfWorkHours.java:171 +msgid "type of work hours for JIRA connector cannot be disabled" msgstr "" -#: org/libreplan/web/common/components/finders/ResourceInExpenseSheetBandboxFinder.java:44 -msgid "Resource name (Resource code)" +#: libreplan-business/src/main/java/org/libreplan/business/users/entities/User.java:392 +#: libreplan-business/src/main/java/org/libreplan/business/users/entities/User.java:392 +msgid "You have exceeded the maximum limit of users" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportLine.java:539 -msgid "finished not specified" +#: libreplan-webapp/src/main/webapp/planner/advance_allocation.zul:50 +msgid "Cancel changes and back to scheduling" msgstr "" -#: org/libreplan/web/expensesheet/ExpenseSheetCRUDController.java:606 -msgid "Personal" +#: org/libreplan/web/planner/tabs/LimitingResourcesTabCreator.java:84 +#: org/libreplan/web/planner/tabs/LimitingResourcesTabCreator.java:103 +msgid "Queue-based Resources Planning" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelSubcontract.zul:121 -msgid "End date communicated by the subcontractor." +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/CriterionType.java:472 +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/CriterionType.java:472 +msgid "resource type does not allow enabled criteria" msgstr "" -#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerInAMonthReport.zul:43 -msgid "Filter by month" +#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/QualityForm.java:266 +#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/QualityForm.java:266 +msgid "percentages in quality form items must be unique" msgstr "" -#: org/libreplan/web/planner/chart/EarnedValueChartFiller.java:246 -msgid "ACWP" +#: libreplan-business/src/main/java/org/libreplan/business/common/entities/JobSchedulerConfiguration.java:63 +#: libreplan-business/src/main/java/org/libreplan/business/common/entities/JobSchedulerConfiguration.java:63 +msgid "job group not specified" msgstr "" -#: libreplan-webapp/src/main/webapp/common/configuration.zul:62 -msgid "Company code" +#: libreplan-webapp/src/main/webapp/planner/fileupload.zul:51 +msgid "Please select a file on your system" msgstr "" -#: libreplan-webapp/src/main/webapp/common/accessForbidden.zul:38 -msgid "You do not have permissions to access to this page." +#: libreplan-webapp/src/main/webapp/planner/_legendLoadChartOrder.zul:39 +#: libreplan-webapp/src/main/webapp/planner/_legendLoadChartCompany.zul:39 +msgid "Total capability" msgstr "" -#: libreplan-webapp/src/main/webapp/myaccount/_personalTimesheetsArea.zul:31 -msgid "Available hours" +#: libreplan-business/src/main/java/org/libreplan/business/costcategories/entities/HourCost.java:121 +#: libreplan-business/src/main/java/org/libreplan/business/costcategories/entities/HourCost.java:121 +msgid "cost category not specified" msgstr "" -#: org/libreplan/web/orders/OrderCRUDController.java:1067 -msgid "Removed {0}" +#: libreplan-webapp/src/main/webapp/planner/stretches_function.zul:55 +msgid "Work amount" msgstr "" -#: org/libreplan/web/tree/TreeComponent.java:68 -msgid "Fully, Partially or Unscheduled. (Drag and drop to move tasks)" +#: libreplan-webapp/src/main/webapp/scenarios/transferOrders.zul:52 +msgid "Select destination" msgstr "" -#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:300 -#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:429 -msgid "" -"Progress Assignment cannot be deleted or changed. Progress Assignment " -"contains Progress Consolidations values" +#: org/libreplan/web/planner/chart/EarnedValueChartFiller.java:247 +msgid "Budgeted Cost Work Performed" msgstr "" -#: org/libreplan/web/limitingresources/ManualAllocationController.java:328 -#: org/libreplan/web/limitingresources/ManualAllocationController.java:335 -msgid "Day is not valid" +#: libreplan-webapp/src/main/webapp/myaccount/changePassword.zul:21 +msgid "LibrePlan: Change password" msgstr "" -#: libreplan-webapp/src/main/webapp/myaccount/settings.zul:93 -msgid "Select language" +#: org/libreplan/web/orders/AssignedTaskQualityFormsToOrderElementController.java:472 +#: org/libreplan/web/orders/AssignedTaskQualityFormsToOrderElementModel.java:285 +msgid "must be after the previous date" msgstr "" -#: org/libreplan/web/orders/OrderCRUDController.java:513 -msgid "" -"Deadline cannot be empty because there is a task with constraint \"as late " -"as possible\"" +#: org/libreplan/web/common/TemplateModel.java:329 +msgid "Reassigning {0} projects" msgstr "" -#: libreplan-webapp/src/main/webapp/limitingresources/manualAllocation.zul:32 -msgid "Queue Element Information" +#: libreplan-webapp/src/main/webapp/common/configuration.zul:214 +msgid "Calendar exception days" msgstr "" -#: org/libreplan/web/resources/worker/CriterionsMachineController.java:233 -#: org/libreplan/web/resources/worker/CriterionsController.java:222 -msgid "Invalid Start Date. New Start Date must be earlier than End Date" +#: libreplan-webapp/src/main/webapp/email/email_templates.zul:89 +msgid "Username of user" msgstr "" -#: libreplan-webapp/src/main/webapp/dashboard/_dashboardfororder.zul:96 -msgid "Overtime ratio" +#: libreplan-webapp/src/main/webapp/reports/projectStatusReport.zul:162 +msgid "Output format:" msgstr "" -#: libreplan-webapp/src/main/webapp/advance/_listAdvanceTypes.zul:29 -msgid "Predefined" +#: libreplan-business/src/main/java/org/libreplan/business/common/entities/EntitySequence.java:145 +#: libreplan-business/src/main/java/org/libreplan/business/common/entities/EntitySequence.java:145 +msgid "number of digits out of range" msgstr "" -#: org/libreplan/web/expensesheet/ExpenseSheetCRUDController.java:446 -msgid "The code must be unique." +#: org/libreplan/importers/JiraOrderElementSynchronizer.java:524 +msgid "No items found in 'OrderSyncInfo' to synchronize with JIRA issues" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementCriterionRequirements.zul:38 -msgid "Add criterion requirement" +#: org/libreplan/web/limitingresources/LimitingResourcesController.java:453 +msgid "Assign element to queue manually" msgstr "" -#: org/libreplan/web/planner/allocation/AllocationRow.java:834 -msgid "" -"Periods available depend on the satisfaction of the criteria of resources " -"and their calendars." +#: libreplan-business/src/main/java/org/libreplan/business/advance/entities/AdvanceType.java:127 +#: libreplan-business/src/main/java/org/libreplan/business/advance/entities/AdvanceType.java:127 +msgid "unit name not specified" msgstr "" -#: org/libreplan/web/planner/allocation/stretches/StretchesFunctionModel.java:169 -msgid "Some stretch has higher or equal values than the previous stretch" +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/Resource.java:1130 +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/Resource.java:1130 +msgid "criterion satisfaction codes must be unique inside " +"a resource" msgstr "" -#: org/libreplan/web/workreports/WorkReportQueryController.java:372 -#: libreplan-webapp/src/main/webapp/orders/_edition.zul:233 -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementHours.zul:67 -msgid "Total hours" +#: org/libreplan/web/common/BaseCRUDController.java:320 +msgid "{0} \"{1}\" could not be deleted, it was already removed" msgstr "" -#: libreplan-webapp/src/main/webapp/users/users.zul:23 -msgid "LibrePlan: User Accounts" +#: org/libreplan/web/planner/allocation/AdvancedAllocationController.java:1021 +msgid "Efforts" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/expensesheet/entities/ExpenseSheet.java:109 -msgid "total must be greater or equal than 0" +#: libreplan-webapp/src/main/webapp/resources/worker/_edition.zul:107 +#: libreplan-webapp/src/main/webapp/resources/worker/_listVirtualWorkers.zul:36 +msgid "Observations" msgstr "" -#: libreplan-webapp/src/main/webapp/dashboard/_dashboardforglobal.zul:32 -msgid "Pipeline" +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportLine.java:391 +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportLine.java:391 +msgid "fields should match with timesheet data if are shared by lines" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/editTask.zul:60 -msgid "Task properties" +#: libreplan-webapp/src/main/webapp/users/_editUser.zul:146 +#: libreplan-webapp/src/main/webapp/profiles/_editProfile.zul:55 +msgid "Add role" msgstr "" -#: libreplan-webapp/src/main/webapp/reports/workingArrangementsPerOrderReport.zul:58 -msgid "Filter by task status" +#: org/libreplan/web/planner/allocation/AdvancedAllocationController.java:1662 +msgid "Not configurable" msgstr "" -#: libreplan-webapp/src/main/webapp/common/configuration.zul:540 -msgid "Test connection" +#: org/libreplan/web/dashboard/GlobalProgressChart.java:123 +msgid "Progress percentage per progress type" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/_legendLoadChartCompany.zul:44 -msgid "Assigned load" +#: org/libreplan/web/labels/LabelTypeCRUDController.java:294 +msgid "Label Types" msgstr "" -#: org/libreplan/web/orders/OrderElementTreeController.java:342 -msgid "Expand/Collapse all" +#: libreplan-webapp/src/main/webapp/planner/_legendLoadChartOrder.zul:29 +msgid "External overload" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementHours.zul:108 -msgid "Sum of direct expenses" +#: libreplan-webapp/src/main/webapp/calendars/_createNewVersion.zul:35 +msgid "Base calendar type" msgstr "" -#: libreplan-webapp/src/main/webapp/resources/worker/_workRelationships.zul:30 -#: libreplan-webapp/src/main/webapp/resources/worker/_editWorkRelationship.zul:27 -msgid "Relationship" +#: libreplan-webapp/src/main/webapp/resources/search/_resourceFilter.zul:31 +msgid "Personal details" msgstr "" -#: org/libreplan/web/scenarios/ScenarioModel.java:117 -msgid "You cannot remove the default scenario \"{0}\"" +#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:72 +msgid "Date Start" msgstr "" -#: org/libreplan/web/common/TemplateModel.java:329 -msgid "Reassigning {0} projects" +#: org/libreplan/web/expensesheet/ExpenseSheetCRUDController.java:483 +msgid "it already exists another expense sheet with the same code." msgstr "" -#: org/libreplan/web/reports/WorkingProgressPerTaskController.java:116 -#: org/libreplan/web/reports/CompletedEstimatedHoursPerTaskController.java:122 -#: org/libreplan/web/reports/WorkingArrangementsPerOrderController.java:147 -msgid "Please, select a project" +#: org/libreplan/web/resources/worker/WorkRelationshipsController.java:148 +msgid "Time period saved" msgstr "" -#: org/libreplan/web/planner/allocation/ResourceAllocationController.java:445 -#: libreplan-webapp/src/main/webapp/resources/machine/_machineConfigurationUnits.zul:38 -msgid "Alpha" +#: org/libreplan/web/planner/order/SaveCommandBuilder.java:843 +#: libreplan-webapp/src/main/webapp/excetiondays/_editExceptionDayType.zul:102 +#: libreplan-webapp/src/main/webapp/materials/materials.zul:119 +#: libreplan-webapp/src/main/webapp/unittypes/unitTypes.zul:41 +#: libreplan-webapp/src/main/webapp/logs/_editRiskLog.zul:165 +#: libreplan-webapp/src/main/webapp/logs/_editIssueLog.zul:162 +#: libreplan-webapp/src/main/webapp/templates/_editTemplate.zul:162 +#: libreplan-webapp/src/main/webapp/typeofworkhours/_editTypeOfWorkHours.zul:77 +#: libreplan-webapp/src/main/webapp/calendars/calendars.zul:45 +#: libreplan-webapp/src/main/webapp/users/_editUser.zul:200 +#: libreplan-webapp/src/main/webapp/myaccount/settings.zul:214 +#: libreplan-webapp/src/main/webapp/myaccount/personalTimesheet.zul:143 +#: libreplan-webapp/src/main/webapp/myaccount/changePassword.zul:89 +#: libreplan-webapp/src/main/webapp/scenarios/_edition.zul:64 +#: libreplan-webapp/src/main/webapp/profiles/_editProfile.zul:70 +#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:95 +#: libreplan-webapp/src/main/webapp/common/configuration.zul:548 +#: libreplan-webapp/src/main/webapp/advance/advanceTypes.zul:37 +#: libreplan-webapp/src/main/webapp/limitingresources/limitingResourcesLayout.zul:57 +#: libreplan-webapp/src/main/webapp/externalcompanies/_editExternalCompany.zul:102 +#: libreplan-webapp/src/main/webapp/qualityforms/_editQualityForm.zul:131 +#: libreplan-webapp/src/main/webapp/costcategories/_editCostCategory.zul:109 +#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:260 +#: libreplan-webapp/src/main/webapp/workreports/workReportTypes.zul:36 +#: libreplan-webapp/src/main/webapp/labels/_editLabelType.zul:112 +#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:191 +#: libreplan-webapp/src/main/webapp/email/email_templates.zul:140 +#: libreplan-webapp/src/main/webapp/resources/worker/worker.zul:42 +#: libreplan-webapp/src/main/webapp/resources/worker/virtualWorkers.zul:40 +#: libreplan-webapp/src/main/webapp/resources/worker/_editWorkRelationship.zul:45 +#: libreplan-webapp/src/main/webapp/resources/machine/_editMachine.zul:97 +#: libreplan-webapp/src/main/webapp/resources/criterions/criterions.zul:45 +#: libreplan-webapp/src/main/webapp/resources/criterions/_edition.zul:90 +#: libreplan-webapp/src/main/webapp/resources/criterions/_workers.zul:48 +msgid "Save" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelSubcontract.zul:59 -msgid "Work description" +#: libreplan-webapp/src/main/webapp/dashboard/_dashboardfororder.zul:100 +msgid "Availability ratio" msgstr "" -#: libreplan-webapp/src/main/webapp/materials/materials.zul:21 -msgid "LibrePlan: Materials" +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelNonLimitingResourceAllocation.zul:106 +msgid "Original" msgstr "" -#: libreplan-webapp/src/main/webapp/common/layout/template.zul:88 -msgid "Change scenario" +#: libreplan-webapp/src/main/webapp/resources/worker/_listVirtualWorkers.zul:60 +msgid "Create Virtual Worker" msgstr "" -#: libreplan-webapp/src/main/webapp/reports/schedulingProgressPerOrderReport.zul:74 -#: libreplan-webapp/src/main/webapp/reports/schedulingProgressPerOrderReport.zul:84 -msgid "Progress type" +#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:110 +msgid "Expense properties" msgstr "" -#: libreplan-webapp/src/main/webapp/workreports/workReportQuery.zul:74 -msgid "hours type" +#: org/libreplan/web/orders/OrderCRUDController.java:1687 +msgid "" +"It will only be possible to add an end date if all the exiting ones in the " +"table have already been sent to the customer." msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportType.java:85 -msgid "name not specified or empty" +#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:145 +#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:191 +#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerInAMonthReport.zul:54 +msgid "Month" msgstr "" -#: org/libreplan/web/planner/company/CompanyPlanningModel.java:442 -#: org/libreplan/web/planner/order/OrderPlanningModel.java:520 -msgid "Select date" +#: org/libreplan/web/common/ConfigurationController.java:1460 +msgid "Only digits allowed" msgstr "" -#: org/libreplan/web/resources/worker/WorkerCRUDController.java:183 -#: libreplan-webapp/src/main/webapp/resources/worker/_edition.zul:120 -msgid "Existing user" +#: libreplan-webapp/src/main/webapp/email/email_templates.zul:109 +msgid "Name of resource" msgstr "" -#: org/libreplan/web/orders/assigntemplates/TemplateFinderPopup.java:121 -msgid "Create task" +#: libreplan-webapp/src/main/webapp/resources/worker/virtualWorkers.zul:22 +msgid "LibrePlan: Virtual Worker Groups" msgstr "" -#: org/libreplan/web/planner/allocation/AdvancedAllocationController.java:764 -msgid "Changes applied" +#: org/libreplan/web/workreports/WorkReportTypeModel.java:423 +msgid "Code cannot be empty" msgstr "" -#: libreplan-webapp/src/main/webapp/templates/_editTemplate.zul:73 -#: libreplan-webapp/src/main/webapp/templates/_historicalAssignment.zul:30 -msgid "Assignment log" +#: libreplan-webapp/src/main/webapp/myaccount/_expensesArea.zul:35 +#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:49 +msgid "First expense" msgstr "" -#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:70 -msgid "Filter by workers" +#: libreplan-webapp/src/main/webapp/qualityforms/_editQualityForm.zul:29 +msgid "Quality form" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/Order.java:377 -msgid "deadline must be after start date" +#: libreplan-webapp/src/main/webapp/planner/_legendLoadChartOrder.zul:44 +msgid "External load" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/common/entities/EntitySequence.java:145 -msgid "number of digits out of range" +#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:748 +msgid "" +"Spread progress cannot be changed if there is a consolidation in any " +"progress assignment" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/components/_orderElementTree.zul:58 -msgid "Create template from selected task" +#: org/libreplan/web/importers/ProjectImportController.java:115 +msgid ": Task import successfully!" msgstr "" -#: org/libreplan/web/orders/JiraSynchronizationController.java:175 -#: org/libreplan/web/orders/JiraSynchronizationController.java:222 -msgid "Failed: {0}" +#: org/libreplan/web/dashboard/DashboardController.java:281 +msgid "Task Status" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_allocationConfiguration.zul:35 -msgid "Planned end" +#: libreplan-webapp/src/main/webapp/dashboard/_pipeline.zul:16 +msgid "ARCHIVED" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportType.java:154 -msgid "Value is not valid.\n Code cannot contain chars like '_'." +#: org/libreplan/web/resources/criterion/CriterionTreeController.java:299 +#: org/libreplan/web/resources/criterion/CriterionTreeController.java:314 +msgid "Not indentable" msgstr "" -#: libreplan-webapp/src/main/webapp/common/configuration.zul:46 -msgid "Connectors" +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementHours.zul:235 +msgid "Total calculated budget" msgstr "" -#: libreplan-webapp/src/main/webapp/dashboard/_dashboardfororder.zul:116 -msgid "Time" +#: libreplan-webapp/src/main/webapp/users/_editUser.zul:28 +msgid "User data" msgstr "" -#: org/libreplan/web/materials/UnitTypeController.java:126 -#: org/libreplan/web/materials/UnitTypeController.java:146 -#: org/libreplan/web/materials/MaterialsController.java:278 -#: org/libreplan/web/orders/OrderCRUDController.java:1612 -#: org/libreplan/web/orders/OrderCRUDController.java:1628 -#: org/libreplan/web/orders/ProjectDetailsController.java:165 -#: org/libreplan/web/orders/criterionrequirements/AssignedCriterionRequirementController.java:332 -#: org/libreplan/web/orders/TimSynchronizationController.java:138 -#: org/libreplan/web/orders/labels/AssignedLabelsController.java:118 -#: org/libreplan/web/orders/OrderElementTreeController.java:415 -#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:876 -#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:888 -#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:1287 -#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:1313 -#: org/libreplan/web/templates/TemplatesTreeController.java:89 -#: org/libreplan/web/calendars/BaseCalendarEditionController.java:916 -#: org/libreplan/web/calendars/BaseCalendarEditionController.java:1080 -#: org/libreplan/web/calendars/BaseCalendarEditionController.java:1297 -#: org/libreplan/web/users/UserCRUDController.java:462 -#: org/libreplan/web/tree/TreeController.java:295 -#: org/libreplan/web/tree/TreeController.java:1013 -#: org/libreplan/web/common/ConfigurationController.java:1048 -#: org/libreplan/web/common/ConfigurationController.java:1453 -#: org/libreplan/web/montecarlo/MonteCarloController.java:140 -#: org/libreplan/web/montecarlo/MonteCarloController.java:271 -#: org/libreplan/web/externalcompanies/ExternalCompanyCRUDController.java:122 -#: org/libreplan/web/externalcompanies/ExternalCompanyCRUDController.java:123 -#: org/libreplan/web/externalcompanies/ExternalCompanyCRUDController.java:124 -#: org/libreplan/web/costcategories/CostCategoryCRUDController.java:148 -#: org/libreplan/web/costcategories/CostCategoryCRUDController.java:153 -#: org/libreplan/web/costcategories/CostCategoryCRUDController.java:214 -#: org/libreplan/web/costcategories/CostCategoryCRUDController.java:313 -#: org/libreplan/web/workreports/WorkReportCRUDController.java:337 -#: org/libreplan/web/workreports/WorkReportCRUDController.java:343 -#: org/libreplan/web/workreports/WorkReportCRUDController.java:349 -#: org/libreplan/web/workreports/WorkReportCRUDController.java:378 -#: org/libreplan/web/workreports/WorkReportCRUDController.java:392 -#: org/libreplan/web/workreports/WorkReportCRUDController.java:407 -#: org/libreplan/web/workreports/WorkReportCRUDController.java:419 -#: org/libreplan/web/workreports/WorkReportCRUDController.java:430 -#: org/libreplan/web/workreports/WorkReportCRUDController.java:441 -#: org/libreplan/web/workreports/WorkReportCRUDController.java:473 -#: org/libreplan/web/resources/criterion/CriterionTreeController.java:131 -#: org/libreplan/web/resources/worker/CriterionsMachineController.java:229 -#: org/libreplan/web/resources/worker/CriterionsMachineController.java:342 -#: org/libreplan/web/resources/worker/CriterionsMachineController.java:351 -#: org/libreplan/web/resources/worker/WorkerCRUDController.java:320 -#: org/libreplan/web/resources/worker/WorkerCRUDController.java:325 -#: org/libreplan/web/resources/worker/CriterionsController.java:218 -#: org/libreplan/web/resources/worker/CriterionsController.java:345 -#: org/libreplan/web/resources/worker/CriterionsController.java:354 -#: org/libreplan/web/planner/reassign/ReassignController.java:128 -#: libreplan-webapp/src/main/webapp/excetiondays/_editExceptionDayType.zul:44 -#: libreplan-webapp/src/main/webapp/excetiondays/_editExceptionDayType.zul:57 -#: libreplan-webapp/src/main/webapp/materials/materials.zul:95 -#: libreplan-webapp/src/main/webapp/materials/materials.zul:97 -#: libreplan-webapp/src/main/webapp/orders/_projectDetails.zul:40 -#: libreplan-webapp/src/main/webapp/orders/_projectDetails.zul:58 -#: libreplan-webapp/src/main/webapp/orders/components/_jiraOrderElementSync.zul:49 -#: libreplan-webapp/src/main/webapp/orders/_orderElementDetails.zul:35 -#: libreplan-webapp/src/main/webapp/orders/_orderElementDetails.zul:41 -#: libreplan-webapp/src/main/webapp/logs/_editRiskLog.zul:37 -#: libreplan-webapp/src/main/webapp/logs/_editRiskLog.zul:98 -#: libreplan-webapp/src/main/webapp/logs/_editRiskLog.zul:146 -#: libreplan-webapp/src/main/webapp/logs/_editIssueLog.zul:36 -#: libreplan-webapp/src/main/webapp/logs/_editIssueLog.zul:81 -#: libreplan-webapp/src/main/webapp/templates/_materialAssignmentsBox.zul:39 -#: libreplan-webapp/src/main/webapp/typeofworkhours/_editTypeOfWorkHours.zul:44 -#: libreplan-webapp/src/main/webapp/typeofworkhours/_editTypeOfWorkHours.zul:55 -#: libreplan-webapp/src/main/webapp/typeofworkhours/_editTypeOfWorkHours.zul:61 -#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:44 -#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:62 -#: libreplan-webapp/src/main/webapp/users/_editUser.zul:51 -#: libreplan-webapp/src/main/webapp/scenarios/_edition.zul:34 -#: libreplan-webapp/src/main/webapp/profiles/_editProfile.zul:44 -#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:35 -#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:42 -#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:51 -#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:63 -#: libreplan-webapp/src/main/webapp/common/configuration.zul:65 -#: libreplan-webapp/src/main/webapp/externalcompanies/_editExternalCompany.zul:43 -#: libreplan-webapp/src/main/webapp/externalcompanies/_editExternalCompany.zul:50 -#: libreplan-webapp/src/main/webapp/costcategories/_editCostCategory.zul:51 -#: libreplan-webapp/src/main/webapp/costcategories/_editCostCategory.zul:62 -#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:179 -#: libreplan-webapp/src/main/webapp/labels/_editLabelType.zul:45 -#: libreplan-webapp/src/main/webapp/labels/_editLabelType.zul:53 -#: libreplan-webapp/src/main/webapp/labels/_editLabelType.zul:89 -#: libreplan-webapp/src/main/webapp/labels/_editLabelType.zul:94 -#: libreplan-webapp/src/main/webapp/resources/worker/_edition.zul:58 -#: libreplan-webapp/src/main/webapp/resources/machine/_editMachine.zul:48 -#: libreplan-webapp/src/main/webapp/resources/machine/_editMachine.zul:58 -#: libreplan-webapp/src/main/webapp/resources/machine/_editMachine.zul:64 -#: libreplan-webapp/src/main/webapp/resources/machine/_machineConfigurationUnits.zul:149 -#: libreplan-webapp/src/main/webapp/resources/criterions/_edition.zul:46 -#: libreplan-webapp/src/main/webapp/resources/criterions/_edition.zul:74 -msgid "cannot be empty" +#: org/libreplan/web/planner/tabs/LogsTabCreator.java:89 +#: org/libreplan/web/planner/tabs/LogsTabCreator.java:106 +#: org/libreplan/web/planner/tabs/LogsTabCreator.java:121 +#: org/libreplan/web/planner/tabs/LogsTabCreator.java:138 +msgid "Logs" msgstr "" -#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:1166 -msgid "All progress types have already been assigned." +#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:303 +msgid "Expiry date" msgstr "" -#: org/libreplan/web/common/ConfigurationController.java:479 -msgid "Cannot connect" +#: libreplan-webapp/src/main/webapp/templates/_historicalStatistics.zul:47 +msgid "Estimated hours average" msgstr "" -#: org/libreplan/importers/JiraOrderElementSynchronizer.java:194 -msgid "Estimated time for \"{0}\" issue is 0" +#: libreplan-webapp/src/main/webapp/reports/workingArrangementsPerOrderReport.zul:21 +msgid "LibrePlan: Task Scheduling Status In Project" msgstr "" -#: org/libreplan/web/users/dashboard/PersonalTimesheetController.java:424 -#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:72 -#: libreplan-webapp/src/main/webapp/resources/worker/_listVirtualWorkers.zul:35 -msgid "Capacity" +#: org/libreplan/web/common/JobSchedulerController.java:328 +msgid "Unable to parse cron expression" msgstr "" -#: libreplan-webapp/src/main/webapp/dashboard/_pipeline.zul:3 -msgid "Show archived column data" +#: org/libreplan/web/scenarios/TransferOrdersModel.java:148 +msgid "Please, select a destination scenario" msgstr "" -#: libreplan-webapp/src/main/webapp/common/configuration.zul:310 -msgid "Last value" +#: libreplan-webapp/src/main/webapp/templates/_assignedQualityForms.zul:31 +msgid "Quality forms" msgstr "" -#: libreplan-webapp/src/main/webapp/logs/_editIssueLog.zul:42 -msgid "Type and status" +#: org/libreplan/web/resources/worker/CriterionsMachineController.java:211 +msgid "End date is not valid, the new end date must be after the start date" msgstr "" -#: org/libreplan/importers/JiraOrderElementSynchronizer.java:283 -msgid "No worklogs found for \"{0}\" issue" +#: org/libreplan/web/planner/tabs/AdvancedAllocationTabCreator.java:153 +#: org/libreplan/web/planner/tabs/AdvancedAllocationTabCreator.java:238 +msgid "Advanced Allocation" msgstr "" -#: org/libreplan/web/resourceload/ResourceLoadModel.java:694 -msgid "Other projects" +#: org/libreplan/web/planner/allocation/stretches/StretchesFunctionController.java:367 +msgid "Amount work percentage should be between 0 and 100" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/advance/entities/AdvanceType.java:274 -msgid "default maximum value must be greater than precision value" +#: org/libreplan/web/templates/OrderTemplatesController.java:369 +msgid "Delete template. Are you sure?" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementHours.zul:117 -msgid "Sum of expenses imputed in children tasks" +#: libreplan-business/src/main/java/org/libreplan/business/externalcompanies/entities/ExternalCompany.java:165 +#: libreplan-business/src/main/java/org/libreplan/business/externalcompanies/entities/ExternalCompany.java:165 +msgid "Company ID already used. It must be unique" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/QualityForm.java:192 -msgid "Quality form name is already being used" +#: org/libreplan/web/planner/chart/EarnedValueChartFiller.java:253 +msgid "Estimate To Complete" msgstr "" -#: org/libreplan/web/orders/criterionrequirements/AssignedCriterionRequirementController.java:259 -msgid "" -"Are you sure of changing the resource type? You will lose the criteria with " -"different resource type." +#: org/libreplan/web/calendars/BaseCalendarEditionController.java:138 +msgid "unl" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/print_configuration.zul:35 -msgid "Expand taskgroups" +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/CriterionType.java:501 +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/CriterionType.java:501 +msgid "Criteria of this criterion type have been assigned to some resource." msgstr "" -#: org/libreplan/web/common/CustomMenuController.java:353 -#: org/libreplan/web/exceptionDays/CalendarExceptionTypeCRUDController.java:262 -msgid "Calendar Exception Days" +#: libreplan-business/src/main/java/org/libreplan/business/common/entities/Configuration.java:185 +#: libreplan-business/src/main/java/org/libreplan/business/common/entities/Configuration.java:185 +msgid "userId not specified" msgstr "" -#: org/libreplan/web/planner/tabs/MultipleTabsPlannerController.java:262 -#: org/libreplan/web/planner/order/SaveCommandBuilder.java:355 -msgid "" -"You are about to leave the planning editing. Unsaved changes will be lost!" +#: libreplan-webapp/src/main/webapp/orders/components/_orderElementTree.zul:74 +msgid "Unindent selected task" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/common/entities/Configuration.java:423 -msgid "currency code not specified" +#: libreplan-webapp/src/main/webapp/logs/_listIssueLog.zul:35 +msgid "Date Resolved" msgstr "" -#: libreplan-webapp/src/main/webapp/limitingresources/manualAllocation.zul:128 -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelTaskProperties.zul:42 -#: libreplan-webapp/src/main/webapp/planner/main.zul:57 -msgid "End" +#: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:1097 +msgid "Calculated progress measurements cannot be removed" msgstr "" -#: libreplan-webapp/src/main/webapp/common/pageNotFound.zul:45 -#: libreplan-webapp/src/main/webapp/common/accessForbidden.zul:45 -msgid "Go to init" +#: org/libreplan/web/common/components/finders/TaskGroupFilterEnum.java:30 +#: org/libreplan/web/common/components/finders/ResourceFilterEnum.java:29 +#: org/libreplan/web/common/components/finders/ResourceFilterEnumByResourceAndCriterion.java:31 +#: org/libreplan/web/common/components/finders/OrderFilterEnum.java:30 +#: org/libreplan/web/common/components/finders/TaskElementFilterEnum.java:34 +#: org/libreplan/web/common/components/finders/OrderElementFilterEnum.java:36 +#: org/libreplan/web/common/components/finders/ResourceAllocationFilterEnum.java:30 +msgid "Criterion" msgstr "" -#: libreplan-webapp/src/main/webapp/resources/machine/_machineConfigurationUnits.zul:100 -msgid "Criterion requirements" +#: org/libreplan/web/common/components/finders/UserBandboxFinder.java:46 +#: libreplan-webapp/src/main/webapp/users/_listUsers.zul:27 +#: libreplan-webapp/src/main/webapp/users/_editUser.zul:48 +#: libreplan-webapp/src/main/webapp/myaccount/settings.zul:56 +#: libreplan-webapp/src/main/webapp/resources/worker/_edition.zul:170 +msgid "Username" msgstr "" -#: libreplan-webapp/src/main/webapp/myaccount/changePassword.zul:56 -msgid "LDAP users cannot change their password if LDAP authentication is enabled. Talk to one of the administrators" +#: org/libreplan/web/planner/chart/EarnedValueChartFiller.java:252 +msgid "ETC" msgstr "" -#: libreplan-webapp/src/main/webapp/email/email_templates.zul:94 -msgid "First name of user" +#: org/libreplan/web/planner/TaskElementAdapter.java:875 +msgid "Hours cost: {0}, Expenses cost: {1}" msgstr "" -#: org/libreplan/web/common/JobSchedulerController.java:213 -msgid "Completed" +#: libreplan-webapp/src/main/webapp/users/_listUsers.zul:33 +#: libreplan-webapp/src/main/webapp/users/_editUser.zul:102 +#: libreplan-webapp/src/main/webapp/users/_editUser.zul:114 +msgid "Bound resource" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_list.zul:35 -msgid "Total Budget" +#: org/libreplan/web/common/CustomMenuController.java:437 +#: libreplan-webapp/src/main/webapp/common/configuration.zul:36 +msgid "Main Settings" msgstr "" -#: org/libreplan/web/planner/consolidations/AdvanceConsolidationModel.java:458 -msgid "( max: {0} )" +#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/Order.java:589 +#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/Order.java:589 +msgid "project name is already being used" msgstr "" -#: org/libreplan/importers/ImportRosterFromTim.java:182 -msgid "No valid response for department \"{0}\"" +#: libreplan-webapp/src/main/webapp/costcategories/_listCostCategories.zul:22 +msgid "Cost Categories List" msgstr "" -#: org/libreplan/web/planner/allocation/ResourceAllocationCommand.java:71 -msgid "Resource allocation" +#: libreplan-webapp/src/main/webapp/reports/workingProgressPerTaskReport.zul:21 +msgid "LibrePlan: Work And Progress Per Task" msgstr "" -#: libreplan-webapp/src/main/webapp/subcontract/customerCommunications.zul:33 -msgid "Communications From Customers" +#: org/libreplan/web/orders/labels/AssignedLabelsController.java:112 +msgid "please, select an item" msgstr "" -#: org/libreplan/web/templates/TemplatesTreeComponent.java:92 -msgid "Must start after (days since project start)" +#: org/libreplan/web/reports/HoursWorkedPerWorkerController.java:299 +msgid "Virtual worker" msgstr "" -#: org/libreplan/web/limitingresources/QueueComponent.java:396 -msgid "Workable capacity for this period " +#: libreplan-webapp/src/main/webapp/myaccount/personalTimesheet.zul:105 +msgid "Total capacity" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/components/_timOrderTimesheetSync.zul:41 -msgid "Tim product code" +#: libreplan-webapp/src/main/webapp/resources/worker/_list.zul:35 +#: libreplan-webapp/src/main/webapp/resources/criterions/_workers.zul:28 +msgid "Surname" msgstr "" -#: libreplan-webapp/src/main/webapp/common/accessForbidden.zul:43 -msgid "Click the following link to return to home page: " +#: org/libreplan/web/common/CustomMenuController.java:477 +msgid "Send To Subcontractors" msgstr "" -#: libreplan-webapp/src/main/webapp/resources/machine/_machineConfigurationUnits.zul:27 -msgid "Add new configuration unit" +#: libreplan-webapp/src/main/webapp/subcontract/reportAdvances.zul:47 +msgid "Date last progress reported" msgstr "" -#: org/libreplan/web/subcontract/ReportAdvancesController.java:198 -msgid "Progress sent successfully" +#: org/libreplan/web/workreports/WorkReportCRUDController.java:1636 +msgid "Please set a date" msgstr "" -#: libreplan-webapp/src/main/webapp/common/configuration.zul:306 -msgid "Entity type" +#: libreplan-webapp/src/main/webapp/reports/schedulingProgressPerOrderReport.zul:65 +#: libreplan-webapp/src/main/webapp/reports/workingProgressPerTaskReport.zul:53 +#: libreplan-webapp/src/main/webapp/reports/completedEstimatedHoursPerTask.zul:52 +msgid "Reference date" msgstr "" -#: libreplan-webapp/src/main/webapp/labels/labelTypes.zul:21 -msgid "LibrePlan: Labels" +#: org/libreplan/web/planner/taskedition/TaskPropertiesController.java:682 +msgid "" +"IMPORTANT: Don't forget to communicate to subcontractor that his contract " +"has been cancelled" msgstr "" -#: libreplan-webapp/src/main/webapp/workreports/workReportQuery.zul:79 -msgid "type" +#: org/libreplan/web/resources/criterion/CriterionTreeModel.java:330 +msgid "Already exists another criterion with the same name" msgstr "" -#: org/libreplan/web/materials/UnitTypeController.java:131 -msgid "" -"The meausure name is not valid. There is another unit type with the same " -"measure name" +#: org/libreplan/web/resources/worker/WorkerCRUDController.java:997 +#: org/libreplan/web/resources/machine/MachineCRUDController.java:563 +msgid "no" msgstr "" -#: org/libreplan/web/expensesheet/ExpenseSheetCRUDController.java:479 -msgid "The code cannot be empty and it must be unique." +#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:243 +msgid "Timesheet lines" msgstr "" -#: libreplan-webapp/src/main/webapp/common/eventError.zul:57 -#: libreplan-webapp/src/main/webapp/common/error.zul:61 -msgid "Reload" +#: libreplan-webapp/src/main/webapp/myaccount/personalTimesheet.zul:95 +msgid "Total other" msgstr "" -#: libreplan-webapp/src/main/webapp/resources/worker/_edition.zul:107 -#: libreplan-webapp/src/main/webapp/resources/worker/_listVirtualWorkers.zul:36 -msgid "Observations" +#: libreplan-webapp/src/main/webapp/orders/_edition.zul:282 +msgid "Customer reference" msgstr "" -#: org/libreplan/web/planner/order/SaveCommandBuilder.java:843 -#: libreplan-webapp/src/main/webapp/excetiondays/_editExceptionDayType.zul:102 -#: libreplan-webapp/src/main/webapp/materials/materials.zul:119 -#: libreplan-webapp/src/main/webapp/unittypes/unitTypes.zul:41 -#: libreplan-webapp/src/main/webapp/logs/_editRiskLog.zul:165 -#: libreplan-webapp/src/main/webapp/logs/_editIssueLog.zul:162 -#: libreplan-webapp/src/main/webapp/templates/_editTemplate.zul:162 -#: libreplan-webapp/src/main/webapp/typeofworkhours/_editTypeOfWorkHours.zul:77 -#: libreplan-webapp/src/main/webapp/calendars/calendars.zul:45 -#: libreplan-webapp/src/main/webapp/users/_editUser.zul:200 -#: libreplan-webapp/src/main/webapp/myaccount/settings.zul:214 -#: libreplan-webapp/src/main/webapp/myaccount/personalTimesheet.zul:143 -#: libreplan-webapp/src/main/webapp/myaccount/changePassword.zul:89 -#: libreplan-webapp/src/main/webapp/scenarios/_edition.zul:64 -#: libreplan-webapp/src/main/webapp/profiles/_editProfile.zul:70 -#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:95 -#: libreplan-webapp/src/main/webapp/common/configuration.zul:548 -#: libreplan-webapp/src/main/webapp/advance/advanceTypes.zul:37 -#: libreplan-webapp/src/main/webapp/limitingresources/limitingResourcesLayout.zul:57 -#: libreplan-webapp/src/main/webapp/externalcompanies/_editExternalCompany.zul:102 -#: libreplan-webapp/src/main/webapp/qualityforms/_editQualityForm.zul:131 -#: libreplan-webapp/src/main/webapp/costcategories/_editCostCategory.zul:109 -#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:260 -#: libreplan-webapp/src/main/webapp/workreports/workReportTypes.zul:36 -#: libreplan-webapp/src/main/webapp/labels/_editLabelType.zul:112 -#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:191 -#: libreplan-webapp/src/main/webapp/email/email_templates.zul:140 -#: libreplan-webapp/src/main/webapp/resources/worker/worker.zul:42 -#: libreplan-webapp/src/main/webapp/resources/worker/virtualWorkers.zul:40 -#: libreplan-webapp/src/main/webapp/resources/worker/_editWorkRelationship.zul:45 -#: libreplan-webapp/src/main/webapp/resources/machine/_editMachine.zul:97 -#: libreplan-webapp/src/main/webapp/resources/criterions/criterions.zul:45 -#: libreplan-webapp/src/main/webapp/resources/criterions/_edition.zul:90 -#: libreplan-webapp/src/main/webapp/resources/criterions/_workers.zul:48 -msgid "Save" +#: org/libreplan/web/planner/allocation/AdvancedAllocationController.java:1262 +msgid "Stretches list" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/labels/entities/LabelType.java:201 -msgid "last label sequence code not specified" +#: org/libreplan/web/common/CustomMenuController.java:493 +msgid "Received From Customers" msgstr "" -#: libreplan-webapp/src/main/webapp/calendars/_createNewVersion.zul:51 -msgid "Up to date" +#: libreplan-webapp/src/main/webapp/resources/worker/_localizations.zul:48 +msgid "Non-assigned locations" msgstr "" -#: org/libreplan/web/resources/worker/WorkerCRUDController.java:982 -msgid "This worker was already removed by other user" +#: libreplan-business/src/main/java/org/libreplan/business/materials/entities/MaterialCategory.java:259 +#: libreplan-business/src/main/java/org/libreplan/business/materials/entities/MaterialCategory.java:259 +msgid "There are repeated material codes" msgstr "" -#: org/libreplan/web/orders/OrdersTreeComponent.java:93 -msgid "Must start after" +#: libreplan-webapp/src/main/webapp/reports/completedEstimatedHoursPerTask.zul:21 +msgid "LibrePlan: Estimated/Planned Hours Per Task" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelSubcontract.zul:95 -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelSubcontract.zul:113 -msgid "Deliver date" +#: org/libreplan/web/orders/OrderCRUDController.java:378 +#: org/libreplan/web/planner/order/OrderPlanningModel.java:1027 +msgid "Unsaved changes will be lost. Are you sure?" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/CriterionSatisfaction.java:288 -msgid "criterion satisfaction with end date before start" +#: libreplan-webapp/src/main/webapp/orders/components/_orderElementTree.zul:50 +msgid "Selected node" msgstr "" -#: org/libreplan/web/dashboard/GlobalProgressChart.java:123 -msgid "Progress percentage per progress type" +#: org/libreplan/web/materials/MaterialsController.java:461 +msgid "List of materials for category: {0}" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementCriterionRequirements.zul:33 -msgid "Assigned criterion requirements" +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementCriterionRequirements.zul:184 +msgid "Add new hours group" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/reassign.zul:34 -msgid "Reassigning type" +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReport.java:477 +#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReport.java:477 +msgid "In personal timesheets, all timesheet lines should be in the same period" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_listOrderElementAdvances.zul:97 -msgid "Progress Evolution" +#: libreplan-webapp/src/main/webapp/logs/_editIssueLog.zul:42 +msgid "Type and status" msgstr "" -#: org/libreplan/web/montecarlo/MonteCarloModel.java:68 -#: libreplan-webapp/src/main/webapp/montecarlo/_montecarlo.zul:71 -msgid "Critical path" +#: org/libreplan/web/logs/IssueLogCRUDController.java:433 +#: org/libreplan/web/logs/RiskLogCRUDController.java:413 +msgid "please select a project" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelNonLimitingResourceAllocation.zul:106 -msgid "Original" +#: org/libreplan/web/planner/reassign/ReassignCommand.java:133 +msgid "Assignments could not be completed" msgstr "" -#: org/libreplan/web/orders/JiraSynchronizationController.java:283 -#: org/libreplan/web/orders/assigntemplates/TemplateFinderPopup.java:126 -#: org/libreplan/web/planner/order/OrderPlanningModel.java:1020 -#: libreplan-webapp/src/main/webapp/excetiondays/_editExceptionDayType.zul:108 -#: libreplan-webapp/src/main/webapp/unittypes/unitTypes.zul:43 -#: libreplan-webapp/src/main/webapp/orders/_projectDetails.zul:95 -#: libreplan-webapp/src/main/webapp/orders/components/_listOrderElementMaterials.zul:144 -#: libreplan-webapp/src/main/webapp/logs/_editRiskLog.zul:171 -#: libreplan-webapp/src/main/webapp/logs/_editIssueLog.zul:168 -#: libreplan-webapp/src/main/webapp/templates/_editTemplate.zul:168 -#: libreplan-webapp/src/main/webapp/typeofworkhours/_editTypeOfWorkHours.zul:81 -#: libreplan-webapp/src/main/webapp/calendars/_createNewVersion.zul:62 -#: libreplan-webapp/src/main/webapp/calendars/calendars.zul:48 -#: libreplan-webapp/src/main/webapp/users/_editUser.zul:204 -#: libreplan-webapp/src/main/webapp/myaccount/personalTimesheet.zul:149 -#: libreplan-webapp/src/main/webapp/scenarios/_edition.zul:70 -#: libreplan-webapp/src/main/webapp/profiles/_editProfile.zul:74 -#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:101 -#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:211 -#: libreplan-webapp/src/main/webapp/common/layout/template.zul:106 -#: libreplan-webapp/src/main/webapp/common/configuration.zul:551 -#: libreplan-webapp/src/main/webapp/advance/advanceTypes.zul:38 -#: libreplan-webapp/src/main/webapp/limitingresources/manualAllocation.zul:143 -#: libreplan-webapp/src/main/webapp/externalcompanies/_editExternalCompany.zul:106 -#: libreplan-webapp/src/main/webapp/qualityforms/_editQualityForm.zul:137 -#: libreplan-webapp/src/main/webapp/costcategories/_editCostCategory.zul:115 -#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:266 -#: libreplan-webapp/src/main/webapp/workreports/workReportTypes.zul:38 -#: libreplan-webapp/src/main/webapp/labels/_editLabelType.zul:116 -#: libreplan-webapp/src/main/webapp/expensesheet/expenseSheet.zul:195 -#: libreplan-webapp/src/main/webapp/email/email_templates.zul:143 -#: libreplan-webapp/src/main/webapp/resources/machine/_editMachine.zul:103 -#: libreplan-webapp/src/main/webapp/resources/criterions/criterions.zul:46 -#: libreplan-webapp/src/main/webapp/resources/criterions/_edition.zul:94 -#: libreplan-webapp/src/main/webapp/resources/criterions/_workers.zul:49 -#: libreplan-webapp/src/main/webapp/planner/print_configuration.zul:50 -#: libreplan-webapp/src/main/webapp/planner/reassign.zul:50 -#: libreplan-webapp/src/main/webapp/planner/editTask.zul:78 -#: libreplan-webapp/src/main/webapp/planner/advance_allocation.zul:48 -#: libreplan-webapp/src/main/webapp/planner/order.zul:134 -#: libreplan-webapp/src/main/webapp/planner/order.zul:170 -#: libreplan-webapp/src/main/webapp/planner/stretches_function.zul:99 -msgid "Cancel" +#: libreplan-webapp/src/main/webapp/planner/stretches_function.zul:66 +msgid "Cannot calculate charts for current data" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportLine.java:459 -msgid "description value: the timesheet has not assigned the description field" +#: libreplan-webapp/src/main/webapp/limitingresources/manualAllocation.zul:84 +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_allocationConfiguration.zul:27 +msgid "Allocation configuration" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/Order.java:383 -msgid "At least one hours group is needed for each task" +#: libreplan-business/src/main/java/org/libreplan/business/calendars/entities/BaseCalendar.java:1111 +#: libreplan-business/src/main/java/org/libreplan/business/calendars/entities/BaseCalendar.java:1111 +msgid "dates must be sorted and cannot overlap" msgstr "" -#: libreplan-webapp/src/main/webapp/logs/_listRiskLog.zul:38 -#: libreplan-webapp/src/main/webapp/logs/_listIssueLog.zul:36 -#: libreplan-webapp/src/main/webapp/logs/_editRiskLog.zul:157 -#: libreplan-webapp/src/main/webapp/logs/_editIssueLog.zul:154 -#: libreplan-webapp/src/main/webapp/planner/taskpanels/_tabPanelTaskProperties.zul:51 -#: libreplan-webapp/src/main/webapp/planner/main.zul:61 -msgid "Notes" +#: org/libreplan/web/orders/TreeElementOperationsController.java:240 +msgid "Confirm create template" msgstr "" -#: org/libreplan/web/dashboard/DashboardController.java:175 -msgid "No project deadline defined" +#: libreplan-webapp/src/main/webapp/planner/taskpanels/_allocationConfiguration.zul:31 +msgid "Planned start" msgstr "" -#: org/libreplan/web/materials/UnitTypeController.java:179 -#: libreplan-webapp/src/main/webapp/unittypes/_listUnitTypes.zul:27 -msgid "Material Unit" +#: org/libreplan/web/common/CustomMenuController.java:343 +msgid "Virtual Workers" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/_legendLoadChartOrder.zul:39 -#: libreplan-webapp/src/main/webapp/planner/_legendLoadChartCompany.zul:39 -msgid "Total capability" +#: org/libreplan/web/common/JobSchedulerModel.java:141 +msgid "Task assigned to resource emails job" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/Resource.java:1116 -msgid "there exist criterion satisfactions referring to " -"criterion types not applicable to this resource" +#: org/libreplan/importers/JiraOrderElementSynchronizer.java:402 +msgid "Duplicate value AdvanceAssignment for order element of \"{0}\"" msgstr "" -#: org/libreplan/web/planner/chart/EarnedValueChartFiller.java:246 -msgid "Actual Cost Work Performed" +#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/OrderElement.java:1437 +#: libreplan-business/src/main/java/org/libreplan/business/orders/entities/OrderElement.java:1437 +msgid "a quality form cannot be assigned twice to the same task" msgstr "" -#: org/libreplan/web/planner/TaskElementAdapter.java:1234 -msgid "Project margin: {0}% ({1})={2}" +#: libreplan-webapp/src/main/webapp/orders/_edition.zul:73 +msgid "Files" msgstr "" -#: org/libreplan/web/users/OrderAuthorizationController.java:118 -msgid "" -"Could not add those authorizations to profile {0} because they were already " -"present." +#: org/libreplan/web/orders/AssignedTaskQualityFormsToOrderElementModel.java:344 +msgid "Quality form cannot be removed as it is spreading progress" msgstr "" -#: org/libreplan/web/common/ConfigurationController.java:833 -msgid "{0} sequences" +#: org/libreplan/web/orders/CriterionRequirementWrapper.java:216 +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementCriterionRequirements.zul:108 +msgid "Validate" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/imports/projectImport.zul:41 -msgid "Your project could only partially be imported." +#: libreplan-webapp/src/main/webapp/myaccount/personalTimesheet.zul:81 +msgid "Timesheet summary" msgstr "" -#: org/libreplan/web/reports/OrderCostsPerResourceController.java:160 -msgid "must be after end date" +#: libreplan-webapp/src/main/webapp/montecarlo/_montecarlo.zul:100 +msgid "Go!" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/costcategories/entities/TypeOfWorkHours.java:128 -msgid "the type of work hours name has to be unique. It is already used" +#: libreplan-webapp/src/main/webapp/resources/worker/_edition.zul:36 +msgid "Locations" msgstr "" -#: libreplan-webapp/src/main/webapp/resources/machine/_machineConfigurationUnits.zul:50 -msgid "Worker assignments" +#: org/libreplan/web/orders/DetailsOrderElementController.java:120 +#: org/libreplan/web/orders/ProjectDetailsController.java:262 +msgid "Must be after 2010!" msgstr "" -#: org/libreplan/web/resources/worker/CriterionsMachineController.java:189 -#: org/libreplan/web/resources/worker/CriterionsController.java:196 -msgid "This criterion type cannot have multiple values in the same period" +#: libreplan-webapp/src/main/webapp/common/configuration.zul:350 +#: libreplan-webapp/src/main/webapp/common/configuration.zul:361 +#: libreplan-webapp/src/main/webapp/common/configuration.zul:371 +#: libreplan-webapp/src/main/webapp/common/configuration.zul:381 +#: libreplan-webapp/src/main/webapp/common/configuration.zul:419 +#: libreplan-webapp/src/main/webapp/common/configuration.zul:461 +#: libreplan-webapp/src/main/webapp/common/configuration.zul:472 +#: libreplan-webapp/src/main/webapp/common/configuration.zul:482 +#: libreplan-webapp/src/main/webapp/externalcompanies/_editExternalCompany.zul:81 +msgid "Example: {0}" msgstr "" -#: libreplan-webapp/src/main/webapp/reports/timeLineMaterialReport.zul:167 -msgid "if the report is not opened automatically" +#: org/libreplan/web/planner/tabs/DashboardTabCreator.java:113 +#: org/libreplan/web/planner/tabs/DashboardTabCreator.java:131 +#: org/libreplan/web/planner/tabs/DashboardTabCreator.java:151 +#: org/libreplan/web/planner/tabs/DashboardTabCreator.java:160 +msgid "Dashboard" msgstr "" -#: org/libreplan/web/dashboard/GlobalProgressChart.java:60 -msgid "By critical path hours" +#: libreplan-webapp/src/main/webapp/common/configuration.zul:132 +msgid "Enable/Disable" msgstr "" -#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:274 -msgid "Parent" +#: org/libreplan/web/templates/OrderTemplatesController.java:380 +msgid "Template cannot be removed because it has applications" msgstr "" -#: libreplan-webapp/src/main/webapp/logs/_editRiskLog.zul:116 -msgid "Counter measures (CM)" +#: org/libreplan/web/importers/ProjectImportController.java:107 +#: org/libreplan/web/importers/ProjectImportController.java:123 +msgid "Instance not found." msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/workreports/valueobjects/DescriptionField.java:81 -msgid "length not specified" +#: libreplan-webapp/src/main/webapp/logs/_listIssueLog.zul:31 +#: libreplan-webapp/src/main/webapp/logs/_editIssueLog.zul:79 +msgid "Date raised" msgstr "" -#: org/libreplan/web/workreports/WorkReportTypeCRUDController.java:704 -msgid "The field name must be unique and not empty" +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/CriterionSatisfaction.java:288 +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/CriterionSatisfaction.java:288 +msgid "criterion satisfaction with end date before start" msgstr "" -#: org/libreplan/web/resources/search/NewAllocationSelectorController.java:701 -msgid "End filtering date cannot be empty" +#: org/libreplan/web/dashboard/DashboardController.java:237 +msgid "" +"Days Interval (Calculated as task completion end date minus estimated end " +"date)" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/externalcompanies/entities/CustomerCommunication.java:132 -msgid "project not specified" +#: org/libreplan/web/common/components/EffortDurationPicker.java:69 +#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:121 +#: libreplan-webapp/src/main/webapp/common/_editJobScheduling.zul:187 +msgid "Seconds" msgstr "" -#: libreplan-webapp/src/main/webapp/common/layout/template.zul:113 -msgid "Log out" +#: libreplan-webapp/src/main/webapp/orders/_listOrderElementCriterionRequirements.zul:245 +msgid "Add Criterion" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReport.java:524 -msgid "the same task is marked as finished by more than one timesheet line" +#: libreplan-webapp/src/main/webapp/common/layout/_customMenu.zul:82 +#: libreplan-webapp/src/main/webapp/common/layout/login.zul:65 +msgid "en" msgstr "" -#: org/libreplan/web/users/dashboard/ExpensesAreaController.java:80 -msgid "Delete expense sheet \"{0}\". Are you sure?" +#: libreplan-webapp/src/main/webapp/resources/machine/_machineConfigurationUnits.zul:62 +msgid "Add new worker assignment" msgstr "" #: org/libreplan/web/common/ConfigurationController.java:294 msgid "Changes have been canceled" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/CriterionType.java:210 -msgid "criterion type name not specified" -msgstr "" - -#: libreplan-business/src/main/java/org/libreplan/business/advance/entities/AdvanceType.java:215 -#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/TaskQualityForm.java:80 -msgid "quality form not specified" +#: org/libreplan/web/resources/search/NewAllocationSelectorController.java:701 +msgid "End filtering date cannot be empty" msgstr "" -#: org/libreplan/web/orders/AssignedTaskQualityFormsToOrderElementController.java:468 -#: org/libreplan/web/orders/AssignedTaskQualityFormsToOrderElementModel.java:293 -#: libreplan-business/src/main/java/org/libreplan/business/advance/entities/AdvanceMeasurement.java:80 -#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/TaskQualityFormItem.java:137 -#: libreplan-business/src/main/java/org/libreplan/business/workreports/entities/WorkReportLine.java:142 -#: libreplan-business/src/main/java/org/libreplan/business/expensesheet/entities/ExpenseSheetLine.java:137 -msgid "date not specified" +#: libreplan-webapp/src/main/webapp/orders/_edition.zul:134 +msgid "Planning Configuration" msgstr "" -#: libreplan-webapp/src/main/webapp/reports/schedulingProgressPerOrderReport.zul:164 -#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerInAMonthReport.zul:87 -#: libreplan-webapp/src/main/webapp/reports/projectStatusReport.zul:173 -#: libreplan-webapp/src/main/webapp/reports/workingProgressPerTaskReport.zul:178 -#: libreplan-webapp/src/main/webapp/reports/workingArrangementsPerOrderReport.zul:195 -#: libreplan-webapp/src/main/webapp/reports/hoursWorkedPerWorkerReport.zul:220 -#: libreplan-webapp/src/main/webapp/reports/orderCostsPerResource.zul:235 -#: libreplan-webapp/src/main/webapp/reports/timeLineMaterialReport.zul:165 -#: libreplan-webapp/src/main/webapp/reports/completedEstimatedHoursPerTask.zul:185 -msgid "Click on this" +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/Resource.java:1136 +#: libreplan-business/src/main/java/org/libreplan/business/resources/entities/Resource.java:1136 +msgid "resource cost category assignments codes must be " +"unique inside a resource" msgstr "" -#: org/libreplan/web/users/dashboard/PersonalTimesheetController.java:455 -msgid "Extra" +#: libreplan-webapp/src/main/webapp/orders/_orderElementTreeFilter.zul:36 +msgid "Set Filter Options" msgstr "" -#: libreplan-webapp/src/main/webapp/dashboard/_pipeline.zul:9 -msgid "OFFERED" +#: org/libreplan/web/labels/LabelTypeModel.java:267 +msgid "Already exists other label with the same name" msgstr "" -#: org/libreplan/web/resources/worker/CriterionsMachineController.java:238 -#: org/libreplan/web/resources/worker/CriterionsController.java:226 -msgid "" -"Start date is not valid, the new start date must be previous the current " -"start date" +#: libreplan-webapp/src/main/webapp/myaccount/settings.zul:182 +msgid "Resources load filtering" msgstr "" -#: libreplan-webapp/src/main/webapp/advance/_editAdvanceTypes.zul:52 -msgid "Default max value" +#: org/libreplan/web/planner/chart/EarnedValueChartFiller.java:255 +msgid "Schedule Performance Index" msgstr "" -#: org/libreplan/web/resources/worker/WorkerCRUDController.java:997 -#: org/libreplan/web/resources/machine/MachineCRUDController.java:563 -msgid "yes" +#: libreplan-webapp/src/main/webapp/orders/_timImpExpInfo.zul:24 +msgid "was successful" msgstr "" -#: libreplan-webapp/src/main/webapp/labels/_editLabelType.zul:67 -msgid "Labels list" +#: libreplan-webapp/src/main/webapp/myaccount/personalTimesheet.zul:37 +msgid "Warning: Not editing from home page of bound users" msgstr "" -#: org/libreplan/web/users/settings/PasswordController.java:98 -msgid "passwords can not be empty" +#: libreplan-webapp/src/main/webapp/workreports/workReportQuery.zul:52 +msgid "task" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/stretches_function.zul:55 -msgid "Work amount" +#: org/libreplan/importers/ExportTimesheetsToTim.java:130 +msgid "Order should not be empty" msgstr "" -#: libreplan-webapp/src/main/webapp/reports/orderCostsPerResource.zul:21 -msgid "LibrePlan: Project Costs" +#: libreplan-webapp/src/main/webapp/common/configuration.zul:83 +msgid "Personal timesheets peridocity" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/costcategories/entities/ResourcesCostCategoryAssignment.java:145 -msgid "cost assignment with end date before start date" +#: libreplan-webapp/src/main/webapp/orders/_edition.zul:264 +msgid "Project type" msgstr "" -#: libreplan-webapp/src/main/webapp/common/configuration.zul:255 -msgid "Seconds planning warning" +#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/QualityForm.java:248 +#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/QualityForm.java:248 +msgid "The quality item positions must be correct in function to the percentage." msgstr "" -#: org/libreplan/web/subcontract/FilterCommunicationEnum.java:29 -msgid "Not Reviewed" +#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/QualityForm.java:216 +#: libreplan-business/src/main/java/org/libreplan/business/qualityforms/entities/QualityForm.java:216 +msgid "The quality form item positions must be unique and consecutive." msgstr "" -#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:278 -#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:302 -msgid "Valid from" +#: libreplan-webapp/src/main/webapp/myaccount/personalTimesheet.zul:125 +msgid "Time tracking" msgstr "" -#: org/libreplan/web/planner/chart/EarnedValueChartFiller.java:253 -msgid "CPI" +#: libreplan-webapp/src/main/webapp/common/layout/template.zul:110 +msgid "user" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_edition.zul:195 -msgid "Work" +#: libreplan-business/src/main/java/org/libreplan/business/common/entities/Configuration.java:159 +#: libreplan-business/src/main/java/org/libreplan/business/common/entities/Configuration.java:159 +msgid "company code not specified" msgstr "" -#: libreplan-webapp/src/main/webapp/subcontract/reportAdvances.zul:50 -msgid "Value last progress measurement" +#: libreplan-webapp/src/main/webapp/orders/imports/projectImport.zul:53 +msgid "Gantt charts" msgstr "" -#: libreplan-webapp/src/main/webapp/resources/machine/_machineConfigurationUnits.zul:62 -msgid "Add new worker assignment" +#: libreplan-webapp/src/main/webapp/common/concurrentModification.zul:33 +#: libreplan-webapp/src/main/webapp/common/eventError.zul:56 +msgid "Continue" msgstr "" -#: libreplan-webapp/src/main/webapp/planner/print_configuration.zul:29 -msgid "Export options" +#: org/libreplan/web/calendars/BaseCalendarCRUDController.java:458 +#: org/libreplan/web/common/BaseCRUDController.java:135 +#: org/libreplan/web/resources/worker/WorkerCRUDController.java:1027 +msgid "Edit {0}: {1}" msgstr "" -#: org/libreplan/web/planner/order/SaveCommandBuilder.java:864 -msgid "New project version" +#: org/libreplan/web/dashboard/GlobalProgressChart.java:61 +msgid "By critical path duration" msgstr "" -#: libreplan-webapp/src/main/webapp/orders/_edition.zul:58 -#: libreplan-webapp/src/main/webapp/templates/_editTemplate.zul:61 -#: libreplan-webapp/src/main/webapp/workreports/workReport.zul:164 -msgid "General data" +#: org/libreplan/web/planner/allocation/FormBinder.java:661 +msgid "already exists an allocation for criteria {0}" msgstr "" -#: libreplan-webapp/src/main/webapp/templates/_editTemplateWindow.zul:52 -msgid "Criterion requirement" +#: org/libreplan/web/planner/adaptplanning/AdaptPlanningCommand.java:60 +msgid "Adapt planning according to timesheets" msgstr "" -#: libreplan-webapp/src/main/webapp/resources/worker/_editWorkRelationship.zul:47 -msgid "Cancel and return" +#: libreplan-webapp/src/main/webapp/orders/_timImpExpInfo.zul:25 +msgid "is not completed for the following reasons:" msgstr "" -#: org/libreplan/web/calendars/BaseCalendarEditionController.java:289 -msgid "Derived of calendar {0}" +#: libreplan-webapp/src/main/webapp/planner/advance_allocation.zul:54 +msgid "Apply changes and continue editing" msgstr "" -#: libreplan-business/src/main/java/org/libreplan/business/common/entities/Connector.java:101 -msgid "connector name is already being used" +#: org/libreplan/web/planner/allocation/AllocationRow.java:834 +msgid "" +"Periods available depend on the satisfaction of the criteria of resources " +"and their calendars." msgstr "" -#: org/libreplan/web/orders/ManageOrderElementAdvancesModel.java:128 -msgid "{0} (max: {1})" +#: org/libreplan/web/planner/allocation/GenericAllocationRow.java:55 +msgid "Generic" msgstr "" -#: org/libreplan/web/common/components/finders/TaskGroupFilterEnum.java:32 -#: org/libreplan/web/common/components/finders/OrderFilterEnum.java:32 -msgid "Customer Reference" +#: org/libreplan/web/limitingresources/LimitingResourcesController.java:331 +msgid "Scheduling saved" msgstr "" -#: org/libreplan/importers/notifications/ComposeMessage.java:193 -msgid " - this user have not filled E-mail" +#: org/libreplan/web/limitingresources/QueueComponent.java:231 +msgid "Resource: {0}" msgstr "" -#: libreplan-webapp/src/main/webapp/calendars/_edition.zul:128 -msgid "Workable time" +#: libreplan-business/src/main/java/org/libreplan/business/materials/entities/UnitType.java:85 +#: libreplan-business/src/main/java/org/libreplan/business/materials/entities/UnitType.java:85 +msgid "the measure has to be unique" msgstr "" -#: org/libreplan/web/users/UserCRUDController.java:503 -#: org/libreplan/web/resources/worker/WorkerCRUDController.java:1147 -#: org/libreplan/web/resources/machine/MachineCRUDController.java:617 -msgid "left" +#: libreplan-webapp/src/main/webapp/common/configuration.zul:345 +msgid "Host" msgstr "" -#: libreplan-webapp/src/main/webapp/common/configuration.zul:477 -msgid "Role search query" +#: libreplan-webapp/src/main/webapp/orders/components/_timOrderTimesheetSync.zul:41 +msgid "Tim product code" msgstr "" diff --git a/libreplan-webapp/src/main/resources/i18n/nb.po b/libreplan-webapp/src/main/resources/i18n/nb.po index 5cbf6a581d..eabdf0f521 100644 --- a/libreplan-webapp/src/main/resources/i18n/nb.po +++ b/libreplan-webapp/src/main/resources/i18n/nb.po @@ -5460,10 +5460,8 @@ msgid "LDAP Roles (separated by ;)" msgstr "LDAP Roller (atskilt med;)" #: libreplan-webapp/src/main/webapp/common/configuration.zul:129 -msgid "" -"Help the project developers to collect information about which LibrePlan " -"version you are using" -msgstr "Hjelp prosjektutviklere å samle inn informasjon om hvilke LibrePlan versjon du bruker" +msgid "Allow collection of anonymous statistics to help us improve LibrePlan" +msgstr "Tillat innsamling av anonym statistikk for å hjelpe oss med å forbedre LibrePlan" #: org/libreplan/web/resources/worker/WorkerCRUDController.java:190 msgid "Not bound" diff --git a/libreplan-webapp/src/main/resources/i18n/nl.po b/libreplan-webapp/src/main/resources/i18n/nl.po index d9148e377a..6c619f84b1 100644 --- a/libreplan-webapp/src/main/resources/i18n/nl.po +++ b/libreplan-webapp/src/main/resources/i18n/nl.po @@ -5391,12 +5391,8 @@ msgid "Inherited exception" msgstr "Georven uitzondering" #: libreplan-webapp/src/main/webapp/common/configuration.zul:150 -msgid "" -"Help the project developers to collect information about which LibrePlan " -"version you are using" -msgstr "" -"Help de ontwikkelaars van LibrePlan bij het verzamelen van informatie over " -"welke versie u gebruikt" +msgid "Allow collection of anonymous statistics to help us improve LibrePlan" +msgstr "Sta het verzamelen van anonieme statistieken toe om ons te helpen LibrePlan te verbeteren" #: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:1179 msgid "" diff --git a/libreplan-webapp/src/main/resources/i18n/pl.po b/libreplan-webapp/src/main/resources/i18n/pl.po index 1cd72049b3..1cf4820015 100644 --- a/libreplan-webapp/src/main/resources/i18n/pl.po +++ b/libreplan-webapp/src/main/resources/i18n/pl.po @@ -5463,10 +5463,8 @@ msgid "LDAP Roles (separated by ;)" msgstr "Role Ldap (podzielone przez ;)" #: libreplan-webapp/src/main/webapp/common/configuration.zul:129 -msgid "" -"Help the project developers to collect information about which LibrePlan " -"version you are using" -msgstr "" +msgid "Allow collection of anonymous statistics to help us improve LibrePlan" +msgstr "Zezwól na zbieranie anonimowych statystyk, aby pomóc nam ulepszyć LibrePlan" #: org/libreplan/web/resources/worker/WorkerCRUDController.java:190 msgid "Not bound" diff --git a/libreplan-webapp/src/main/resources/i18n/pt.po b/libreplan-webapp/src/main/resources/i18n/pt.po index b094f1c57b..71db583104 100644 --- a/libreplan-webapp/src/main/resources/i18n/pt.po +++ b/libreplan-webapp/src/main/resources/i18n/pt.po @@ -5463,10 +5463,8 @@ msgid "LDAP Roles (separated by ;)" msgstr "Funções LDAP (separadas por ;)" #: libreplan-webapp/src/main/webapp/common/configuration.zul:129 -msgid "" -"Help the project developers to collect information about which LibrePlan " -"version you are using" -msgstr "" +msgid "Allow collection of anonymous statistics to help us improve LibrePlan" +msgstr "Permitir a recolha de estatísticas anónimas para nos ajudar a melhorar o LibrePlan" #: org/libreplan/web/resources/worker/WorkerCRUDController.java:190 msgid "Not bound" diff --git a/libreplan-webapp/src/main/resources/i18n/pt_BR.po b/libreplan-webapp/src/main/resources/i18n/pt_BR.po index dfd3e68a8f..8cfdb0924d 100644 --- a/libreplan-webapp/src/main/resources/i18n/pt_BR.po +++ b/libreplan-webapp/src/main/resources/i18n/pt_BR.po @@ -5387,12 +5387,8 @@ msgid "Inherited exception" msgstr "Exceção herdada" #: libreplan-webapp/src/main/webapp/common/configuration.zul:150 -msgid "" -"Help the project developers to collect information about which LibrePlan " -"version you are using" -msgstr "" -"Ajude os desenvolvedores enviando informações sobre qual versão do LibrePlan " -"você está usando." +msgid "Allow collection of anonymous statistics to help us improve LibrePlan" +msgstr "Permitir a coleta de estatísticas anônimas para nos ajudar a melhorar o LibrePlan" #: org/libreplan/web/orders/ManageOrderElementAdvancesController.java:1179 msgid "" diff --git a/libreplan-webapp/src/main/resources/i18n/ru.po b/libreplan-webapp/src/main/resources/i18n/ru.po index 6a9bb09247..55ad3cbea4 100644 --- a/libreplan-webapp/src/main/resources/i18n/ru.po +++ b/libreplan-webapp/src/main/resources/i18n/ru.po @@ -5469,10 +5469,8 @@ msgid "LDAP Roles (separated by ;)" msgstr "LDAP Roles (разделены ;)" #: libreplan-webapp/src/main/webapp/common/configuration.zul:129 -msgid "" -"Help the project developers to collect information about which LibrePlan " -"version you are using" -msgstr "Помочь разработчикам проекта собрать информацию о используемой версии LibrePlan" +msgid "Allow collection of anonymous statistics to help us improve LibrePlan" +msgstr "Разрешить сбор анонимной статистики для помощи в улучшении LibrePlan" #: org/libreplan/web/resources/worker/WorkerCRUDController.java:190 msgid "Not bound" diff --git a/libreplan-webapp/src/main/resources/i18n/sv_SE.po b/libreplan-webapp/src/main/resources/i18n/sv_SE.po index 9df2156291..0913b02c39 100644 --- a/libreplan-webapp/src/main/resources/i18n/sv_SE.po +++ b/libreplan-webapp/src/main/resources/i18n/sv_SE.po @@ -5461,10 +5461,8 @@ msgid "LDAP Roles (separated by ;)" msgstr "" #: libreplan-webapp/src/main/webapp/common/configuration.zul:129 -msgid "" -"Help the project developers to collect information about which LibrePlan " -"version you are using" -msgstr "" +msgid "Allow collection of anonymous statistics to help us improve LibrePlan" +msgstr "Tillåt insamling av anonym statistik för att hjälpa oss att förbättra LibrePlan" #: org/libreplan/web/resources/worker/WorkerCRUDController.java:190 msgid "Not bound" diff --git a/libreplan-webapp/src/main/resources/i18n/zh.po b/libreplan-webapp/src/main/resources/i18n/zh.po index 99169eb234..a80fff89bf 100644 --- a/libreplan-webapp/src/main/resources/i18n/zh.po +++ b/libreplan-webapp/src/main/resources/i18n/zh.po @@ -5498,10 +5498,8 @@ msgid "Delivery dates requested by customer. " msgstr "按客户要求交货日期。" #: libreplan-webapp/src/main/webapp/common/configuration.zul:128 -msgid "" -"Help the project developers to collect information about which LibrePlan " -"version you are using" -msgstr "帮助项目开发商LibrePlan版本,你使用的是收集信息" +msgid "Allow collection of anonymous statistics to help us improve LibrePlan" +msgstr "允許收集匿名統計資料,幫助我們改善LibrePlan" #: libreplan-webapp/src/main/webapp/resources/worker/worker.zul:22 msgid "LibrePlan: Workers" diff --git a/libreplan-webapp/src/main/resources/i18n/zh_CN.po b/libreplan-webapp/src/main/resources/i18n/zh_CN.po index 6216f9ccf0..e01270ceff 100644 --- a/libreplan-webapp/src/main/resources/i18n/zh_CN.po +++ b/libreplan-webapp/src/main/resources/i18n/zh_CN.po @@ -5469,10 +5469,8 @@ msgid "LDAP Roles (separated by ;)" msgstr "LDAP角色(用;分隔)" #: libreplan-webapp/src/main/webapp/common/configuration.zul:129 -msgid "" -"Help the project developers to collect information about which LibrePlan " -"version you are using" -msgstr "帮助项目开发者收集有关您正在使用版本的LibrePlan信息" +msgid "Allow collection of anonymous statistics to help us improve LibrePlan" +msgstr "允许收集匿名统计信息,帮助我们改进LibrePlan" #: org/libreplan/web/resources/worker/WorkerCRUDController.java:190 msgid "Not bound" diff --git a/libreplan-webapp/src/main/webapp/common/configuration.zul b/libreplan-webapp/src/main/webapp/common/configuration.zul index 2c4612c4d5..f73c2cb3ac 100644 --- a/libreplan-webapp/src/main/webapp/common/configuration.zul +++ b/libreplan-webapp/src/main/webapp/common/configuration.zul @@ -147,7 +147,7 @@ tooltiptext="${i18n:_t('Enable/Disable warning about new LibrePlan versions available')}" checked="@{configurationController.checkNewVersionEnabled}" /> From 097709d6bff049d5ee284b47e3dcd0fa4850c0af Mon Sep 17 00:00:00 2001 From: Jeroen Baten Date: Mon, 13 Apr 2026 11:34:11 +0200 Subject: [PATCH 5/5] Apply suggestion from @sanbor MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Thanks. The Dutch word for this mistake on my part would be "suf" :-). Co-authored-by: Santiago Borrazás --- libreplan-webapp/src/main/webapp/common/configuration.zul | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libreplan-webapp/src/main/webapp/common/configuration.zul b/libreplan-webapp/src/main/webapp/common/configuration.zul index f73c2cb3ac..a7c93c77cf 100644 --- a/libreplan-webapp/src/main/webapp/common/configuration.zul +++ b/libreplan-webapp/src/main/webapp/common/configuration.zul @@ -147,7 +147,7 @@ tooltiptext="${i18n:_t('Enable/Disable warning about new LibrePlan versions available')}" checked="@{configurationController.checkNewVersionEnabled}" />