diff --git a/Gemfile.lock b/Gemfile.lock
index f9e7a05e527d..015eda43ca1c 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -386,7 +386,7 @@ GEM
brakeman (6.1.2)
racc
browser (6.0.0)
- builder (3.2.4)
+ builder (3.3.0)
byebug (11.1.3)
capybara (3.40.0)
addressable
@@ -775,7 +775,7 @@ GEM
actionview
openproject-octicons (= 19.14.0)
railties
- openproject-primer_view_components (0.33.1)
+ openproject-primer_view_components (0.33.2)
actionview (>= 5.0.0)
activesupport (>= 5.0.0)
openproject-octicons (>= 19.12.0)
diff --git a/app/assets/images/logo-black-bg-ua.png b/app/assets/images/logo-black-bg-ua.png
index 176f3cf46da3..ed49f1fcb28a 100644
Binary files a/app/assets/images/logo-black-bg-ua.png and b/app/assets/images/logo-black-bg-ua.png differ
diff --git a/app/assets/images/logo-white-bg-ua.png b/app/assets/images/logo-white-bg-ua.png
index 7278fdcf6d2a..29891ab9e578 100644
Binary files a/app/assets/images/logo-white-bg-ua.png and b/app/assets/images/logo-white-bg-ua.png differ
diff --git a/app/components/settings/project_custom_fields/project_custom_field_mapping/new_project_mapping_component.sass b/app/components/settings/project_custom_fields/project_custom_field_mapping/new_project_mapping_component.sass
index 76511b9c5b3e..635af4bfd82a 100644
--- a/app/components/settings/project_custom_fields/project_custom_field_mapping/new_project_mapping_component.sass
+++ b/app/components/settings/project_custom_fields/project_custom_field_mapping/new_project_mapping_component.sass
@@ -6,3 +6,8 @@
&:before
@include icon-font-common
margin-right: 10px
+
+.FormControl-horizontalGroup
+ display: flex
+ align-items: center
+ justify-content: space-between
diff --git a/app/controllers/work_packages/progress_controller.rb b/app/controllers/work_packages/progress_controller.rb
index d9e5cfa196a4..b522a5081a2d 100644
--- a/app/controllers/work_packages/progress_controller.rb
+++ b/app/controllers/work_packages/progress_controller.rb
@@ -130,17 +130,7 @@ def extract_persisted_progress_attributes
def work_package_params
params.require(:work_package)
- .permit(allowed_params).tap do |wp_params|
- %w[estimated_hours remaining_hours].each do |attr|
- if wp_params[attr].present?
- begin
- wp_params[attr] = DurationConverter.parse(wp_params[attr])
- rescue ChronicDuration::DurationParseError
- @work_package.errors.add(attr.to_sym, :invalid)
- end
- end
- end
- end
+ .permit(allowed_params)
end
def allowed_params
diff --git a/app/helpers/omniauth_helper.rb b/app/helpers/omniauth_helper.rb
index b8507f9b8589..26428f7d9d7b 100644
--- a/app/helpers/omniauth_helper.rb
+++ b/app/helpers/omniauth_helper.rb
@@ -42,6 +42,6 @@ def omniauth_direct_login?
# If this option is active /login will lead directly to the configured omniauth provider
# and so will a click on 'Sign in' (as opposed to opening the drop down menu).
def direct_login_provider
- OpenProject::Configuration["omniauth_direct_login_provider"]
+ Setting.omniauth_direct_login_provider
end
end
diff --git a/app/models/work_package.rb b/app/models/work_package.rb
index 0d32c30f11aa..a1dd265d12a3 100644
--- a/app/models/work_package.rb
+++ b/app/models/work_package.rb
@@ -315,13 +315,11 @@ def hide_attachments?
end
def estimated_hours=(hours)
- converted_hours = (hours.is_a?(String) ? hours.to_hours : hours)
- write_attribute :estimated_hours, !!converted_hours ? converted_hours : hours
+ write_attribute :estimated_hours, convert_duration_to_hours(hours)
end
def remaining_hours=(hours)
- converted_hours = (hours.is_a?(String) ? hours.to_hours : hours)
- write_attribute :remaining_hours, !!converted_hours ? converted_hours : hours
+ write_attribute :remaining_hours, convert_duration_to_hours(hours)
end
def duration_in_hours
@@ -546,6 +544,17 @@ def add_time_entry_for(user, attributes)
time_entries.build(attributes)
end
+ def convert_duration_to_hours(value)
+ if value.is_a?(String)
+ begin
+ value = value.blank? ? nil : DurationConverter.parse(value)
+ rescue ChronicDuration::DurationParseError
+ # keep invalid value, error shall be caught by numericality validator
+ end
+ end
+ value
+ end
+
##
# Checks if the time entry defined by the given attributes is blank.
# A time entry counts as blank despite a selected activity if that activity
diff --git a/app/seeders/development_data/projects_seeder.rb b/app/seeders/development_data/projects_seeder.rb
index 8ee201e14fab..51677b913b7e 100644
--- a/app/seeders/development_data/projects_seeder.rb
+++ b/app/seeders/development_data/projects_seeder.rb
@@ -47,7 +47,13 @@ def seed_data!
end
def applicable?
- Project.where(identifier: project_identifiers).count == 0
+ recent_installation? && Project.where(identifier: project_identifiers).count == 0
+ end
+
+ # returns true if no projects have been created more than 1 hour ago,
+ # meaning this is a recent installation
+ def recent_installation?
+ Project.where(created_at: ..1.hour.ago).none?
end
def project_identifiers
diff --git a/config/locales/crowdin/af.yml b/config/locales/crowdin/af.yml
index 4430e652b1ed..273beb5de061 100644
--- a/config/locales/crowdin/af.yml
+++ b/config/locales/crowdin/af.yml
@@ -1039,11 +1039,13 @@ af:
only_same_project_categories_allowed: "Die katagorie van 'n werkspakket moet binne in dieselfde projek wees as die werkspakket."
does_not_exist: "Die spesefieke kategorie bestaan nie."
estimated_hours:
+ not_a_number: "is not a valid duration."
cant_be_inferior_to_remaining_work: "Cannot be lower than Remaining work."
must_be_set_when_remaining_work_is_set: "Required when Remaining work is set."
only_values_greater_or_equal_zeroes_allowed: "Must be >= 0."
format: "%{message}"
remaining_hours:
+ not_a_number: "is not a valid duration."
cant_exceed_work: "Cannot be higher than Work."
must_be_set_when_work_is_set: "Required when Work is set."
format: "%{message}"
diff --git a/config/locales/crowdin/ar.yml b/config/locales/crowdin/ar.yml
index 5364ffea99ef..110587f2cbb4 100644
--- a/config/locales/crowdin/ar.yml
+++ b/config/locales/crowdin/ar.yml
@@ -1067,11 +1067,13 @@ ar:
only_same_project_categories_allowed: "يجب أن يكون فئة مجموعة العمل ضمن نفس المشروع كمجموعة عمل."
does_not_exist: "الفئة المحددة غير موجودة."
estimated_hours:
+ not_a_number: "is not a valid duration."
cant_be_inferior_to_remaining_work: "Cannot be lower than Remaining work."
must_be_set_when_remaining_work_is_set: "Required when Remaining work is set."
only_values_greater_or_equal_zeroes_allowed: "Must be >= 0."
format: "%{message}"
remaining_hours:
+ not_a_number: "is not a valid duration."
cant_exceed_work: "Cannot be higher than Work."
must_be_set_when_work_is_set: "Required when Work is set."
format: "%{message}"
diff --git a/config/locales/crowdin/az.yml b/config/locales/crowdin/az.yml
index 59a7c4513c26..20c1bd669159 100644
--- a/config/locales/crowdin/az.yml
+++ b/config/locales/crowdin/az.yml
@@ -1039,11 +1039,13 @@ az:
only_same_project_categories_allowed: "The category of a work package must be within the same project as the work package."
does_not_exist: "The specified category does not exist."
estimated_hours:
+ not_a_number: "is not a valid duration."
cant_be_inferior_to_remaining_work: "Cannot be lower than Remaining work."
must_be_set_when_remaining_work_is_set: "Required when Remaining work is set."
only_values_greater_or_equal_zeroes_allowed: "Must be >= 0."
format: "%{message}"
remaining_hours:
+ not_a_number: "is not a valid duration."
cant_exceed_work: "Cannot be higher than Work."
must_be_set_when_work_is_set: "Required when Work is set."
format: "%{message}"
diff --git a/config/locales/crowdin/be.yml b/config/locales/crowdin/be.yml
index 3dd437f3e326..ad5aff098438 100644
--- a/config/locales/crowdin/be.yml
+++ b/config/locales/crowdin/be.yml
@@ -1053,11 +1053,13 @@ be:
only_same_project_categories_allowed: "The category of a work package must be within the same project as the work package."
does_not_exist: "The specified category does not exist."
estimated_hours:
+ not_a_number: "is not a valid duration."
cant_be_inferior_to_remaining_work: "Cannot be lower than Remaining work."
must_be_set_when_remaining_work_is_set: "Required when Remaining work is set."
only_values_greater_or_equal_zeroes_allowed: "Must be >= 0."
format: "%{message}"
remaining_hours:
+ not_a_number: "is not a valid duration."
cant_exceed_work: "Cannot be higher than Work."
must_be_set_when_work_is_set: "Required when Work is set."
format: "%{message}"
diff --git a/config/locales/crowdin/bg.yml b/config/locales/crowdin/bg.yml
index 2f34ed109ddc..8aeff6c06019 100644
--- a/config/locales/crowdin/bg.yml
+++ b/config/locales/crowdin/bg.yml
@@ -1039,11 +1039,13 @@ bg:
only_same_project_categories_allowed: "Категорията на работен пакет трябва да бъде в същия проект като работния пакет."
does_not_exist: "Определената категория не съществува."
estimated_hours:
+ not_a_number: "is not a valid duration."
cant_be_inferior_to_remaining_work: "Cannot be lower than Remaining work."
must_be_set_when_remaining_work_is_set: "Required when Remaining work is set."
only_values_greater_or_equal_zeroes_allowed: "Must be >= 0."
format: "%{message}"
remaining_hours:
+ not_a_number: "is not a valid duration."
cant_exceed_work: "Cannot be higher than Work."
must_be_set_when_work_is_set: "Required when Work is set."
format: "%{message}"
diff --git a/config/locales/crowdin/ca.yml b/config/locales/crowdin/ca.yml
index c1f5e59cf3c3..7c3446015815 100644
--- a/config/locales/crowdin/ca.yml
+++ b/config/locales/crowdin/ca.yml
@@ -1035,11 +1035,13 @@ ca:
only_same_project_categories_allowed: "La categoria d'un paquet de treball ha d'estar al mateix projecte que el paquet de treball."
does_not_exist: "La categoria especificada no existeix."
estimated_hours:
+ not_a_number: "is not a valid duration."
cant_be_inferior_to_remaining_work: "No pot ser inferior al treball restant."
must_be_set_when_remaining_work_is_set: "Required when Remaining work is set."
only_values_greater_or_equal_zeroes_allowed: "Must be >= 0."
format: "%{message}"
remaining_hours:
+ not_a_number: "is not a valid duration."
cant_exceed_work: "Cannot be higher than Work."
must_be_set_when_work_is_set: "Required when Work is set."
format: "%{message}"
diff --git a/config/locales/crowdin/ckb-IR.yml b/config/locales/crowdin/ckb-IR.yml
index 18fd56d616ba..a56595c00af6 100644
--- a/config/locales/crowdin/ckb-IR.yml
+++ b/config/locales/crowdin/ckb-IR.yml
@@ -1039,11 +1039,13 @@ ckb-IR:
only_same_project_categories_allowed: "The category of a work package must be within the same project as the work package."
does_not_exist: "The specified category does not exist."
estimated_hours:
+ not_a_number: "is not a valid duration."
cant_be_inferior_to_remaining_work: "Cannot be lower than Remaining work."
must_be_set_when_remaining_work_is_set: "Required when Remaining work is set."
only_values_greater_or_equal_zeroes_allowed: "Must be >= 0."
format: "%{message}"
remaining_hours:
+ not_a_number: "is not a valid duration."
cant_exceed_work: "Cannot be higher than Work."
must_be_set_when_work_is_set: "Required when Work is set."
format: "%{message}"
diff --git a/config/locales/crowdin/cs.yml b/config/locales/crowdin/cs.yml
index 86bc449dc686..af7ba2acd22b 100644
--- a/config/locales/crowdin/cs.yml
+++ b/config/locales/crowdin/cs.yml
@@ -290,22 +290,22 @@ cs:
title: "Atributy projektu"
description: "These project attributes will be displayed in your project overview page under their respective sections. You can enable or disable individual attributes. Project attributes and sections are defined in the administration settings by the administrator of the instance. "
filter:
- label: "Search project attribute"
+ label: "Hledat atribut projektu"
actions:
label_enable_single: "Aktivní v tomto projektu, kliknutím vypnete"
label_disable_single: "Neaktivní v tomto projektu, klikněte pro povolení"
- deactivate_for_project: "Deactivate for this project"
+ deactivate_for_project: "Deaktivovat pro tento projekt"
label_enable_all: "Povolit vše"
label_disable_all: "Zakázat vše"
is_required_blank_slate:
- heading: Required in all projects
+ heading: Povinné u všech projektů
description: This project attribute is activated in all projects since the "Required in all projects" option is checked. It cannot be deactivated for individual projects.
new_project_mapping_form:
- add_projects: Add projects
- include_sub_projects: Include sub-projects
+ add_projects: Přidat projekty
+ include_sub_projects: Zahrnout všechny podprojekty
project_mapping_filter:
- label: Search project
- placeholder: Filter by text
+ label: Hledat projekt
+ placeholder:
types:
no_results_title_text: V současné době nejsou k dispozici žádné typy.
form:
@@ -317,13 +317,13 @@ cs:
no_results_title_text: Neexistuje žádné další diskové místo využívané tímto projektem.
lists:
create:
- success: "The modified list has been saved as a new list"
- failure: "The modified list cannot be saved: %{errors}"
+ success: "Upravený seznam byl uložen jako nový seznam."
+ failure: "Upravený seznam nelze uložit: %{errors}"
update:
success: "The modified list has been saved"
failure: "The modified list cannot be saved: %{errors}"
publish:
- success: "The list has been made public"
+ success: "Seznam byl zveřejněn"
failure: "The list cannot be made public: %{errors}"
unpublish:
success: "The list has been made private"
@@ -363,7 +363,7 @@ cs:
other: "However, %{shared_work_packages_link} have also been shared with this group."
remove_work_packages_shared_with_user_too: "A user that has been removed as member can still access shared work packages. Would you like to remove the shares too?"
remove_work_packages_shared_with_group_too: "A group that has been removed as member can still access shared work packages. Would you like to remove the shares too?"
- will_not_affect_inherited_shares: "(This will not affect work packages shared with their group)."
+ will_not_affect_inherited_shares: "(To nemá vliv na pracovní balíčky sdílené s jejich skupinou)."
can_remove_direct_but_not_shared_roles: "You can remove this user as a direct project member but a group they are in is also a member of this project, so they will continue being a member via the group."
also_work_packages_shared_with_user_html:
one: "Also, %{shared_work_packages_link} has been shared with this user."
@@ -476,9 +476,9 @@ cs:
no_results_title_text: Momentálně zde nejsou žádné stavy pracovního balíčku.
no_results_content_text: Přidat nový stav
headers:
- is_default: "Default"
- is_closed: "Closed"
- is_readonly: "Read-only"
+ is_default: "Výchozí"
+ is_closed: "Uzavřeno"
+ is_readonly: "Pouze pro čtení"
excluded_from_totals: "Excluded from totals"
themes:
light: "Světlý"
@@ -792,7 +792,7 @@ cs:
before_or_equal_to: "musí být před nebo rovno %{date}."
blank: "nemůže být prázdné."
blank_nested: "musí mít nastavenou vlastnost '%{property}'."
- cannot_delete_mapping: "is required. Cannot be deleted."
+ cannot_delete_mapping: "je povinné. Nelze odstranit."
cant_link_a_work_package_with_a_descendant: "Pracovní balíček nemůže být propojen s jedním z jeho podúkolů."
circular_dependency: "Tento vztah by vytvořil kruhovou závislost."
confirmation: "neshoduje se s %{attribute}."
@@ -953,7 +953,7 @@ cs:
nonexistent: "Sloupec '%{column}' neexistuje."
format: "%{message}"
group_by_hierarchies_exclusive: "je vzájemně exkluzivní se skupinou od '%{group_by}'. Nelze aktivovat obojí."
- can_only_be_modified_by_owner: "The query can only be modified by its owner."
+ can_only_be_modified_by_owner: "Dotaz může být upraven pouze jeho vlastníkem."
need_permission_to_modify_public_query: "Veřejný dotaz nelze upravit."
filters:
custom_fields:
@@ -988,14 +988,14 @@ cs:
base:
working_days_are_missing: "Nejméně jeden den v týdnu musí být definován jako pracovní den."
previous_working_day_changes_unprocessed: "Předchozí změny nastavení pracovních dnů ještě nebyly použity."
- hours_per_day_are_missing: "The number of hours per day must be defined."
- days_per_week_are_missing: "The number of days per week must be defined."
- days_per_month_are_missing: "The number of days per month must be defined."
- durations_are_not_positive_numbers: "The durations must be positive numbers."
- hours_per_day_is_out_of_bounds: "Hours per day can't be more than 24"
- days_per_week_is_out_of_bounds: "Days per week can't be more than 7"
- days_per_month_is_out_of_bounds: "Days per month can't be more than 31"
- days_per_week_and_days_per_month_are_inconsistent: "The number of days per week and the number of days per month must be consistent."
+ hours_per_day_are_missing: "Musí být stanoven počet hodin denně."
+ days_per_week_are_missing: "Musí být stanoven počet dnů v týdnu."
+ days_per_month_are_missing: "Musí být stanoven počet dnů v měsíci."
+ durations_are_not_positive_numbers: "Doba trvání musí být kladná čísla."
+ hours_per_day_is_out_of_bounds: "Počet hodin za den nesmí být více než 24."
+ days_per_week_is_out_of_bounds: "Počet dní v týdnu nesmí být vyšší než 7."
+ days_per_month_is_out_of_bounds: "Počet dní v měsíci nesmí být vyšší než 31."
+ days_per_week_and_days_per_month_are_inconsistent: "Počet dnů v týdnu a počet dnů v měsíci musí být konzistentní."
time_entry:
attributes:
hours:
@@ -1053,13 +1053,15 @@ cs:
only_same_project_categories_allowed: "Kategorie pracovního balíčku musí být v rámci stejného projektu jako pracovního balíčku."
does_not_exist: "Zadaná kategorie neexistuje."
estimated_hours:
+ not_a_number: "is not a valid duration."
cant_be_inferior_to_remaining_work: "Cannot be lower than Remaining work."
must_be_set_when_remaining_work_is_set: "Required when Remaining work is set."
only_values_greater_or_equal_zeroes_allowed: "Musí být >= 0."
format: "%{message}"
remaining_hours:
- cant_exceed_work: "Cannot be higher than Work."
- must_be_set_when_work_is_set: "Required when Work is set."
+ not_a_number: "is not a valid duration."
+ cant_exceed_work: "Nemůže být vyšší než Práce."
+ must_be_set_when_work_is_set: "Vyžadováno, když je nastavena práce."
format: "%{message}"
readonly_status: "Pracovní balíček je ve stavu jen pro čtení, takže jeho atributy nelze změnit."
type:
@@ -1179,8 +1181,8 @@ cs:
deleted_by_on: "deleted by %{user} on %{datetime}"
added_on: "added on %{datetime}"
added_by_on: "added by %{user} on %{datetime}"
- removed_on: "removed on %{datetime}"
- removed_by_on: "removed by %{user} on %{datetime}"
+ removed_on: "odstraněno %{datetime}"
+ removed_by_on: "odstranil/a %{user} %{datetime}"
parent_without_of: "Podprojekt"
parent_no_longer: "Již není podprojekt projektu"
time_entry:
@@ -1372,10 +1374,10 @@ cs:
button_remove_member_and_shares: "Remove member and shares"
button_revoke_work_package_shares: "Revoke work package shares"
button_revoke_access: "Odebrat přístup"
- button_revoke_all: "Revoke all"
+ button_revoke_all: "Zrušit vše"
button_revoke_only: "Revoke only %{shared_role_name}"
- button_publish: "Make public"
- button_unpublish: "Make private"
+ button_publish: "Zveřejnit"
+ button_unpublish: "Nastavit jako soukromé"
consent:
checkbox_label: Zaznamenal(a) jsem a souhlasím s výše uvedeným.
failure_message: Souhlas se nezdařil, nelze pokračovat.
@@ -1885,7 +1887,7 @@ cs:
label_attribute_expand_text: "The complete text for '%{attribute}'"
label_authentication: "Ověření"
label_available_global_roles: "Dostupné globální role"
- label_available_project_attributes: "Available project attributes"
+ label_available_project_attributes: "Dostupné atributy projektu"
label_available_project_forums: "Dostupná fóra"
label_available_project_repositories: "Dostupné repozitáře"
label_available_project_versions: "Dostupné verze"
@@ -2015,7 +2017,7 @@ cs:
label_enterprise_support: "Podpora pro Enterprise edici"
label_enterprise_addon: "Doplňky Enterprise Edice"
label_environment: "Prostředí"
- label_estimates_and_progress: "Estimates and progress"
+ label_estimates_and_progress: "Odhady a posup"
label_equals: "je"
label_everywhere: "všude"
label_example: "Příklad"
@@ -2242,7 +2244,7 @@ cs:
label_project_attributes_plural: "Atributy projektu"
label_project_custom_field_plural: "Atributy projektu"
label_project_settings: "Nastavení projektu"
- label_project_attributes_settings: "Project attributes settings"
+ label_project_attributes_settings: ""
label_project_storage_plural: "Úložiště souborů"
label_project_storage_project_folder: "Úložiště souborů: Složky projektů"
label_projects_disk_usage_information: "%{count} projects using %{used_disk_space} disk space"
@@ -2417,7 +2419,7 @@ cs:
label_workflow: "Pracovní postup"
label_workflow_plural: "Pracovní postupy"
label_workflow_summary: "Souhrn"
- label_working_days_and_hours: "Working days and hours"
+ label_working_days_and_hours: "Pracovní dny a hodiny"
label_x_closed_work_packages_abbr:
one: "1 uzavřeno"
other: "%{count} uzavřených"
@@ -2524,7 +2526,7 @@ cs:
plaintext:
storage: "Úložiště"
healthy:
- summary: "Good news! The status of your storage, %{storage_name}, is currently displaying as \"Healthy\"."
+ summary: "Dobré zprávy! Stav vašeho úložiště, %{storage_name}, se aktuálně zobrazuje jako \"Zdravý\"."
error-solved-on: "Vyřešeno"
recommendation: "We will continue monitoring the system to ensure it remains in good health. In case of any discrepancies, we will notify you."
details: "For more details or to make any necessary amendments, you can visit your storage configuration"
@@ -2539,10 +2541,10 @@ cs:
see_storage_settings: "Zobrazit nastavení úložiště"
healthy:
subject: "Storage \"%{name}\" is now healthy!"
- solved_at: "solved at"
+ solved_at: "vyřešeno v"
summary: "The problem with your %{storage_name} storage integration is now solved"
unhealthy:
- subject: "Storage \"%{name}\" is unhealthy!"
+ subject: "Úložiště \"%{name}\" je nezdravé!"
since: "od"
summary: "There is a problem with your %{storage_name} storage integration"
troubleshooting:
@@ -3020,7 +3022,7 @@ cs:
setting_cross_project_work_package_relations: "Povolit vztahy mezi projekty a pracovními balíčky"
setting_first_week_of_year: "První týden v roce obsahuje"
setting_date_format: "Datum"
- setting_days_per_month: "Days per month"
+ setting_days_per_month: "Dny za měsíc"
setting_days_per_month_explanation: >-
This will define what is considered a "month" when displaying duration in a more natural way (for example, if a month is 20 days, 60 days would be 3 months.
setting_default_language: "Výchozí jazyk"
@@ -3041,7 +3043,7 @@ cs:
setting_hours_per_day: "Hours per day"
setting_hours_per_day_explanation: >-
This will define what is considered a "day" when displaying duration in a more natural way (for example, if a day is 8 hours, 32 hours would be 4 days).
- setting_days_per_week: "Days per week"
+ setting_days_per_week: "Dnů týdně"
setting_days_per_week_explanation: >-
This will define what is considered a "week" when displaying duration in a more natural way (for example, if a week is 5 days, 15 days would be 3 weeks).
setting_invitation_expiration_days: "Platnost aktivačního e-mailu vyprší po"
@@ -3161,7 +3163,7 @@ cs:
label_new_attribute: "Atribut projektu"
label_new_section: "Sekce"
label_edit_section: "Upravit název"
- label_section_actions: "Section actions"
+ label_section_actions: "Akce v sekci"
heading_description: "These project attributes appear in the overview page of each project. You can add new attributes, group them into sections and re-order them as you please. These attributes can be enabled or disabled but not re-ordered at a project level."
label_project_custom_field_actions: "Project attribute actions"
label_no_project_custom_fields: "No project attributes defined in this section"
diff --git a/config/locales/crowdin/da.yml b/config/locales/crowdin/da.yml
index 681cd6ef54bc..d065e9e1fb91 100644
--- a/config/locales/crowdin/da.yml
+++ b/config/locales/crowdin/da.yml
@@ -1037,11 +1037,13 @@ da:
only_same_project_categories_allowed: "Arbejdspakkens kategori skal være tilstede i samme projekt som pakken."
does_not_exist: "Den angivne kategori findes ikke."
estimated_hours:
+ not_a_number: "is not a valid duration."
cant_be_inferior_to_remaining_work: "Cannot be lower than Remaining work."
must_be_set_when_remaining_work_is_set: "Required when Remaining work is set."
only_values_greater_or_equal_zeroes_allowed: "Must be >= 0."
format: "%{message}"
remaining_hours:
+ not_a_number: "is not a valid duration."
cant_exceed_work: "Cannot be higher than Work."
must_be_set_when_work_is_set: "Required when Work is set."
format: "%{message}"
diff --git a/config/locales/crowdin/de.yml b/config/locales/crowdin/de.yml
index 414aa2761dac..e78c40a105af 100644
--- a/config/locales/crowdin/de.yml
+++ b/config/locales/crowdin/de.yml
@@ -1034,11 +1034,13 @@ de:
only_same_project_categories_allowed: "Ein Arbeitpaket und seine Kategorie müssen im selben Projekt sein."
does_not_exist: "Die angegebene Kategorie existiert nicht."
estimated_hours:
+ not_a_number: "is not a valid duration."
cant_be_inferior_to_remaining_work: "Kann nicht niedriger sein als Verbleibender Aufwand."
must_be_set_when_remaining_work_is_set: "Ist erforderlich, wenn Verbleibender Aufwand gesetzt ist."
only_values_greater_or_equal_zeroes_allowed: "Muss >= 0 sein."
format: "%{message}"
remaining_hours:
+ not_a_number: "is not a valid duration."
cant_exceed_work: "Kann nicht größer als der Aufwand sein."
must_be_set_when_work_is_set: "Ist erforderlich, wenn Aufwand gesetzt ist."
format: "%{message}"
diff --git a/config/locales/crowdin/el.yml b/config/locales/crowdin/el.yml
index 6044e7949c54..6d5ec9f0ac56 100644
--- a/config/locales/crowdin/el.yml
+++ b/config/locales/crowdin/el.yml
@@ -1035,11 +1035,13 @@ el:
only_same_project_categories_allowed: "Η κατηγορία ενός πακέτου εργασίας πρέπει να είναι μέσα στο ίδιο έργο με το πακέτο εργασίας."
does_not_exist: "Η καθορισμένη κατηγορία δεν υπάρχει."
estimated_hours:
+ not_a_number: "is not a valid duration."
cant_be_inferior_to_remaining_work: "Cannot be lower than Remaining work."
must_be_set_when_remaining_work_is_set: "Required when Remaining work is set."
only_values_greater_or_equal_zeroes_allowed: "Must be >= 0."
format: "%{message}"
remaining_hours:
+ not_a_number: "is not a valid duration."
cant_exceed_work: "Cannot be higher than Work."
must_be_set_when_work_is_set: "Required when Work is set."
format: "%{message}"
diff --git a/config/locales/crowdin/eo.yml b/config/locales/crowdin/eo.yml
index a889bf65cac6..fe7a356819f7 100644
--- a/config/locales/crowdin/eo.yml
+++ b/config/locales/crowdin/eo.yml
@@ -1039,11 +1039,13 @@ eo:
only_same_project_categories_allowed: "The category of a work package must be within the same project as the work package."
does_not_exist: "The specified category does not exist."
estimated_hours:
+ not_a_number: "is not a valid duration."
cant_be_inferior_to_remaining_work: "Cannot be lower than Remaining work."
must_be_set_when_remaining_work_is_set: "Required when Remaining work is set."
only_values_greater_or_equal_zeroes_allowed: "Must be >= 0."
format: "%{message}"
remaining_hours:
+ not_a_number: "is not a valid duration."
cant_exceed_work: "Cannot be higher than Work."
must_be_set_when_work_is_set: "Required when Work is set."
format: "%{message}"
diff --git a/config/locales/crowdin/es.yml b/config/locales/crowdin/es.yml
index ceeb050ec753..36abaf127505 100644
--- a/config/locales/crowdin/es.yml
+++ b/config/locales/crowdin/es.yml
@@ -1036,11 +1036,13 @@ es:
only_same_project_categories_allowed: "La categoría de un paquete de trabajo debe estar en el mismo proyecto que el paquete de trabajo."
does_not_exist: "La categoría especificada no existe."
estimated_hours:
+ not_a_number: "is not a valid duration."
cant_be_inferior_to_remaining_work: "No puede ser inferior al Trabajo restante."
must_be_set_when_remaining_work_is_set: "Obligatorio cuando el Trabajo restante está establecido."
only_values_greater_or_equal_zeroes_allowed: "Debe ser >= 0."
format: "%{message}"
remaining_hours:
+ not_a_number: "is not a valid duration."
cant_exceed_work: "No puede ser superior a Trabajo."
must_be_set_when_work_is_set: "Obligatorio cuando Trabajo está establecido."
format: "%{message}"
diff --git a/config/locales/crowdin/et.yml b/config/locales/crowdin/et.yml
index 27264a2abd63..f18cbe9dcd73 100644
--- a/config/locales/crowdin/et.yml
+++ b/config/locales/crowdin/et.yml
@@ -1039,11 +1039,13 @@ et:
only_same_project_categories_allowed: "The category of a work package must be within the same project as the work package."
does_not_exist: "The specified category does not exist."
estimated_hours:
+ not_a_number: "is not a valid duration."
cant_be_inferior_to_remaining_work: "Cannot be lower than Remaining work."
must_be_set_when_remaining_work_is_set: "Required when Remaining work is set."
only_values_greater_or_equal_zeroes_allowed: "Must be >= 0."
format: "%{message}"
remaining_hours:
+ not_a_number: "is not a valid duration."
cant_exceed_work: "Cannot be higher than Work."
must_be_set_when_work_is_set: "Required when Work is set."
format: "%{message}"
diff --git a/config/locales/crowdin/eu.yml b/config/locales/crowdin/eu.yml
index 5b13cbd6a71e..31857aea6d98 100644
--- a/config/locales/crowdin/eu.yml
+++ b/config/locales/crowdin/eu.yml
@@ -1039,11 +1039,13 @@ eu:
only_same_project_categories_allowed: "The category of a work package must be within the same project as the work package."
does_not_exist: "The specified category does not exist."
estimated_hours:
+ not_a_number: "is not a valid duration."
cant_be_inferior_to_remaining_work: "Cannot be lower than Remaining work."
must_be_set_when_remaining_work_is_set: "Required when Remaining work is set."
only_values_greater_or_equal_zeroes_allowed: "Must be >= 0."
format: "%{message}"
remaining_hours:
+ not_a_number: "is not a valid duration."
cant_exceed_work: "Cannot be higher than Work."
must_be_set_when_work_is_set: "Required when Work is set."
format: "%{message}"
diff --git a/config/locales/crowdin/fa.yml b/config/locales/crowdin/fa.yml
index 53eea8f5f584..ec8e3afc4a05 100644
--- a/config/locales/crowdin/fa.yml
+++ b/config/locales/crowdin/fa.yml
@@ -1039,11 +1039,13 @@ fa:
only_same_project_categories_allowed: "دسته یک بسته کاری باید در همان پروژه به عنوان یک بسته کاری وجود داشته باشد."
does_not_exist: "دسته انتخاب شده وجود ندارد."
estimated_hours:
+ not_a_number: "is not a valid duration."
cant_be_inferior_to_remaining_work: "Cannot be lower than Remaining work."
must_be_set_when_remaining_work_is_set: "Required when Remaining work is set."
only_values_greater_or_equal_zeroes_allowed: "Must be >= 0."
format: "%{message}"
remaining_hours:
+ not_a_number: "is not a valid duration."
cant_exceed_work: "Cannot be higher than Work."
must_be_set_when_work_is_set: "Required when Work is set."
format: "%{message}"
diff --git a/config/locales/crowdin/fi.yml b/config/locales/crowdin/fi.yml
index 3be7f249e580..5face310d489 100644
--- a/config/locales/crowdin/fi.yml
+++ b/config/locales/crowdin/fi.yml
@@ -1039,11 +1039,13 @@ fi:
only_same_project_categories_allowed: "Tehtävän kategorian tulee olla samasta projektista."
does_not_exist: "Määritettyä luokkaa ei ole."
estimated_hours:
+ not_a_number: "is not a valid duration."
cant_be_inferior_to_remaining_work: "Cannot be lower than Remaining work."
must_be_set_when_remaining_work_is_set: "Required when Remaining work is set."
only_values_greater_or_equal_zeroes_allowed: "Must be >= 0."
format: "%{message}"
remaining_hours:
+ not_a_number: "is not a valid duration."
cant_exceed_work: "Cannot be higher than Work."
must_be_set_when_work_is_set: "Required when Work is set."
format: "%{message}"
diff --git a/config/locales/crowdin/fil.yml b/config/locales/crowdin/fil.yml
index bc68eb9eb44e..e0d510552d4a 100644
--- a/config/locales/crowdin/fil.yml
+++ b/config/locales/crowdin/fil.yml
@@ -1039,11 +1039,13 @@ fil:
only_same_project_categories_allowed: "Ang kategorya ng isang work package ay dapat nakapaloob sa kaparehong proyekto bilang work package."
does_not_exist: "Ang tinukoy na kategorya ay hindi umiiral."
estimated_hours:
+ not_a_number: "is not a valid duration."
cant_be_inferior_to_remaining_work: "Cannot be lower than Remaining work."
must_be_set_when_remaining_work_is_set: "Required when Remaining work is set."
only_values_greater_or_equal_zeroes_allowed: "Must be >= 0."
format: "%{message}"
remaining_hours:
+ not_a_number: "is not a valid duration."
cant_exceed_work: "Cannot be higher than Work."
must_be_set_when_work_is_set: "Required when Work is set."
format: "%{message}"
diff --git a/config/locales/crowdin/fr.yml b/config/locales/crowdin/fr.yml
index 9eceeabf752f..1301ebd8c646 100644
--- a/config/locales/crowdin/fr.yml
+++ b/config/locales/crowdin/fr.yml
@@ -1039,11 +1039,13 @@ fr:
only_same_project_categories_allowed: "La catégorie du lot de travaux doit faire partie du même projet que le lot de travaux."
does_not_exist: "La catégorie spécifiée n'existe pas."
estimated_hours:
+ not_a_number: "is not a valid duration."
cant_be_inferior_to_remaining_work: "Ne peut être inférieur au Travail restant."
must_be_set_when_remaining_work_is_set: "Requis lorsque le Travail restant est défini."
only_values_greater_or_equal_zeroes_allowed: "Doit être >= 0."
format: "%{message}"
remaining_hours:
+ not_a_number: "is not a valid duration."
cant_exceed_work: "Ne peut être supérieur au Travail."
must_be_set_when_work_is_set: "Requis lorsque le Travail est défini."
format: "%{message}"
diff --git a/config/locales/crowdin/he.yml b/config/locales/crowdin/he.yml
index d9c7f8d99e56..ceb90d60838c 100644
--- a/config/locales/crowdin/he.yml
+++ b/config/locales/crowdin/he.yml
@@ -1053,11 +1053,13 @@ he:
only_same_project_categories_allowed: "הקטגוריה של חבילת עבודה חייבת להיות בתוך אותו פרוייקט כמו חבילת עבודה."
does_not_exist: "הקטגוריה שצוינה אינה קיימת."
estimated_hours:
+ not_a_number: "is not a valid duration."
cant_be_inferior_to_remaining_work: "Cannot be lower than Remaining work."
must_be_set_when_remaining_work_is_set: "Required when Remaining work is set."
only_values_greater_or_equal_zeroes_allowed: "Must be >= 0."
format: "%{message}"
remaining_hours:
+ not_a_number: "is not a valid duration."
cant_exceed_work: "Cannot be higher than Work."
must_be_set_when_work_is_set: "Required when Work is set."
format: "%{message}"
diff --git a/config/locales/crowdin/hi.yml b/config/locales/crowdin/hi.yml
index 9aff67140875..59a60abc66e1 100644
--- a/config/locales/crowdin/hi.yml
+++ b/config/locales/crowdin/hi.yml
@@ -1037,11 +1037,13 @@ hi:
only_same_project_categories_allowed: "एक कार्य पैकेज की श्रेणी कार्य पैकेज के रूप में एक ही प्रोजेक्ट के भीतर होना चाहिए ।"
does_not_exist: "निर्दिष्ट श्रेणी मौजूद नहीं है ।"
estimated_hours:
+ not_a_number: "is not a valid duration."
cant_be_inferior_to_remaining_work: "Cannot be lower than Remaining work."
must_be_set_when_remaining_work_is_set: "Required when Remaining work is set."
only_values_greater_or_equal_zeroes_allowed: "Must be >= 0."
format: "%{message}"
remaining_hours:
+ not_a_number: "is not a valid duration."
cant_exceed_work: "Cannot be higher than Work."
must_be_set_when_work_is_set: "Required when Work is set."
format: "%{message}"
diff --git a/config/locales/crowdin/hr.yml b/config/locales/crowdin/hr.yml
index 02f4cef1fd22..bdd77c635c9c 100644
--- a/config/locales/crowdin/hr.yml
+++ b/config/locales/crowdin/hr.yml
@@ -1046,11 +1046,13 @@ hr:
only_same_project_categories_allowed: "Kategorija radnog paketa mora biti u sklopu istog projekta kao i sam radni paket."
does_not_exist: "Navedena kategorija ne postoji."
estimated_hours:
+ not_a_number: "is not a valid duration."
cant_be_inferior_to_remaining_work: "Cannot be lower than Remaining work."
must_be_set_when_remaining_work_is_set: "Required when Remaining work is set."
only_values_greater_or_equal_zeroes_allowed: "Must be >= 0."
format: "%{message}"
remaining_hours:
+ not_a_number: "is not a valid duration."
cant_exceed_work: "Cannot be higher than Work."
must_be_set_when_work_is_set: "Required when Work is set."
format: "%{message}"
diff --git a/config/locales/crowdin/hu.yml b/config/locales/crowdin/hu.yml
index f3fe3fc6d141..da286004e4df 100644
--- a/config/locales/crowdin/hu.yml
+++ b/config/locales/crowdin/hu.yml
@@ -1036,11 +1036,13 @@ hu:
only_same_project_categories_allowed: "A feladatcsoport kategóriájának azonos projektben kell lennie a munkacsomaggal."
does_not_exist: "A megadott kategória nem létezik."
estimated_hours:
+ not_a_number: "is not a valid duration."
cant_be_inferior_to_remaining_work: "Cannot be lower than Remaining work."
must_be_set_when_remaining_work_is_set: "Required when Remaining work is set."
only_values_greater_or_equal_zeroes_allowed: "Must be >= 0."
format: "%{message}\n"
remaining_hours:
+ not_a_number: "is not a valid duration."
cant_exceed_work: "Cannot be higher than Work."
must_be_set_when_work_is_set: "Required when Work is set."
format: "%{message}\n"
diff --git a/config/locales/crowdin/id.yml b/config/locales/crowdin/id.yml
index 498130de3d37..db08baee7d82 100644
--- a/config/locales/crowdin/id.yml
+++ b/config/locales/crowdin/id.yml
@@ -1025,11 +1025,13 @@ id:
only_same_project_categories_allowed: "Kategori yang dipilih harus diambil dari kategori yang berlaku pada proyek."
does_not_exist: "Kategori yang dipilih tidak ada."
estimated_hours:
+ not_a_number: "is not a valid duration."
cant_be_inferior_to_remaining_work: "Cannot be lower than Remaining work."
must_be_set_when_remaining_work_is_set: "Required when Remaining work is set."
only_values_greater_or_equal_zeroes_allowed: "Must be >= 0."
format: "%{message}"
remaining_hours:
+ not_a_number: "is not a valid duration."
cant_exceed_work: "Cannot be higher than Work."
must_be_set_when_work_is_set: "Required when Work is set."
format: "%{message}"
diff --git a/config/locales/crowdin/it.yml b/config/locales/crowdin/it.yml
index 458b23cdf021..8709f8686daf 100644
--- a/config/locales/crowdin/it.yml
+++ b/config/locales/crowdin/it.yml
@@ -1036,11 +1036,13 @@ it:
only_same_project_categories_allowed: "La categoria di una macro-attività deve essere contenuta nel medesimo progetto della macro-attività."
does_not_exist: "La categoria specificata non esiste."
estimated_hours:
+ not_a_number: "is not a valid duration."
cant_be_inferior_to_remaining_work: "Non può essere inferiore al Lavoro residuo."
must_be_set_when_remaining_work_is_set: "Obbligatorio quando si imposta Lavoro residuo."
only_values_greater_or_equal_zeroes_allowed: "Deve essere >=0."
format: "%{message}"
remaining_hours:
+ not_a_number: "is not a valid duration."
cant_exceed_work: "Non può essere superiore a Lavoro."
must_be_set_when_work_is_set: "Obbligatorio quando è impostato Lavoro."
format: "%{message}"
diff --git a/config/locales/crowdin/ja.yml b/config/locales/crowdin/ja.yml
index 7da60486d7b5..b5d83eafd265 100644
--- a/config/locales/crowdin/ja.yml
+++ b/config/locales/crowdin/ja.yml
@@ -1028,11 +1028,13 @@ ja:
only_same_project_categories_allowed: "ワークパッケージのカテゴリは、同じプロジェクト内にそのワークパッケージでなければなりません。"
does_not_exist: "指定されたカテゴリは存在しません。"
estimated_hours:
+ not_a_number: "is not a valid duration."
cant_be_inferior_to_remaining_work: "Cannot be lower than Remaining work."
must_be_set_when_remaining_work_is_set: "Required when Remaining work is set."
only_values_greater_or_equal_zeroes_allowed: "Must be >= 0."
format: "%{message}"
remaining_hours:
+ not_a_number: "is not a valid duration."
cant_exceed_work: "Cannot be higher than Work."
must_be_set_when_work_is_set: "Required when Work is set."
format: "%{message}"
diff --git a/config/locales/crowdin/js-cs.yml b/config/locales/crowdin/js-cs.yml
index b67c8300404b..313664bf61a5 100644
--- a/config/locales/crowdin/js-cs.yml
+++ b/config/locales/crowdin/js-cs.yml
@@ -335,7 +335,7 @@ cs:
description: >
Vyberte počáteční úroveň přiblížení, která by se měla zobrazit, pokud není autozoom dostupný.
export:
- title: "Gantt chart PDF options"
+ title: "Možnosti Ganttova diagramu PDF"
button_export: "Export"
column_widths:
narrow: "Úzké"
diff --git a/config/locales/crowdin/js-ms.yml b/config/locales/crowdin/js-ms.yml
index 7563f36c8cdc..7d3c9a115761 100644
--- a/config/locales/crowdin/js-ms.yml
+++ b/config/locales/crowdin/js-ms.yml
@@ -102,7 +102,7 @@ ms:
button_save: "Simpan"
button_settings: "Tetapan"
button_uncheck_all: "Nyahtandakan semua"
- button_update: "Kemaskini"
+ button_update: "Kemas kini"
button_export-pdf: "Muat turun PDF"
button_export-atom: "Muat Turun Atom"
button_create: "Cipta"
@@ -276,9 +276,9 @@ ms:
Adakah anda pasti anda ingin teruskan?
work_packages_settings:
warning_progress_calculation_mode_change_from_status_to_field_html: >-
- Changing progress calculation mode from status-based to work-based will make % Complete a non-editable field whose value is derived from Work and Remaining work. Existing values for % Complete are preserved. If values for Work and Remaining work were not present, they will be required in order to change % Complete.
+ Mengubah mod pengiraan perkembangan daripada berdasarkan-status kepada berdasarkan-kerja akan menjadikan % Selesai ruang yang tidak boleh diedit yang nilainya diperoleh daripada Kerja dan Kerja yang berbaki. Nilai yang sedia ada bagi % Selesai dikekalkan. Jika nilai Kerja dan Kerja yang berbaki tiada, nilai tersebut akan diperlukan untuk mengubah % Selesai.
warning_progress_calculation_mode_change_from_field_to_status_html: >-
- Changing progress calculation mode from work-based to status-based will result in all existing % Complete values to be lost and replaced with values associated with each status. Existing values for Remaining work may also be recalculated to reflect this change. This action is not reversible.
+ Mengubah mod pengiraan perkembangan daripada berasaskan-kerja kepada berasaskan-status akan menjadikan semua nilai % Selesai yang sedia ada hilang dan digantikan dengan nilai yang berkaitan dengan setiap status. Nilai sedia ada bagi Kerja yang berbaki juga akan dikira semula untuk menggambarkan perubahan ini. Tindakan ini tidak boleh dipulihkan.
custom_actions:
date:
specific: "pada"
@@ -368,7 +368,7 @@ ms:
"14_1":
standard:
new_features_html: >
- Keluaran tersebut mengandungi pelbagai fitur baharu dan penambahbaikan:
%{set_protocol}
, tetapi permintaannya ialah permintaan %{actual_protocol}
. Ini akan mengakibatkan ralat! Anda perlu menetapkan nilai konfigurasi seperti yang berikut: %{setting_value}
. Sila lihat dokumentasi pemasangan atas cara-cara untuk menetapkan konfigurasi ini.
+ Aplikasi anda sedang berjalan dengan mod HTTPS ditetapkan kepada %{set_protocol}
, tetapi permintaannya adalah permintaan %{actual_protocol}
. Ini akan mengakibatkan ralat! Anda perlu menetapkan nilai konfigurasi seperti yang berikut: %{setting_value}
. Sila lihat dokumentasi pemasangan atas cara-cara untuk menetapkan konfigurasi ini.
hostname_mismatch:
title: "Tetapan nama hos tidak sepadan"
text_html: >
diff --git a/config/locales/crowdin/ne.yml b/config/locales/crowdin/ne.yml
index 135c98c3403c..2e26a99b1b23 100644
--- a/config/locales/crowdin/ne.yml
+++ b/config/locales/crowdin/ne.yml
@@ -1039,11 +1039,13 @@ ne:
only_same_project_categories_allowed: "The category of a work package must be within the same project as the work package."
does_not_exist: "The specified category does not exist."
estimated_hours:
+ not_a_number: "is not a valid duration."
cant_be_inferior_to_remaining_work: "Cannot be lower than Remaining work."
must_be_set_when_remaining_work_is_set: "Required when Remaining work is set."
only_values_greater_or_equal_zeroes_allowed: "Must be >= 0."
format: "%{message}"
remaining_hours:
+ not_a_number: "is not a valid duration."
cant_exceed_work: "Cannot be higher than Work."
must_be_set_when_work_is_set: "Required when Work is set."
format: "%{message}"
diff --git a/config/locales/crowdin/nl.yml b/config/locales/crowdin/nl.yml
index 3e7ca5fe74d8..1fe1977d42b5 100644
--- a/config/locales/crowdin/nl.yml
+++ b/config/locales/crowdin/nl.yml
@@ -1036,11 +1036,13 @@ nl:
only_same_project_categories_allowed: "De categorie van het werkpakket moet binnen hetzelfde project bestaan als het werkpakket."
does_not_exist: "De gekozen categorie bestaat niet."
estimated_hours:
+ not_a_number: "is not a valid duration."
cant_be_inferior_to_remaining_work: "Cannot be lower than Remaining work."
must_be_set_when_remaining_work_is_set: "Required when Remaining work is set."
only_values_greater_or_equal_zeroes_allowed: "Must be >= 0."
format: "%{message}"
remaining_hours:
+ not_a_number: "is not a valid duration."
cant_exceed_work: "Cannot be higher than Work."
must_be_set_when_work_is_set: "Required when Work is set."
format: "%{message}"
diff --git a/config/locales/crowdin/no.yml b/config/locales/crowdin/no.yml
index 954c37419e75..a61bfee6b912 100644
--- a/config/locales/crowdin/no.yml
+++ b/config/locales/crowdin/no.yml
@@ -1038,11 +1038,13 @@
only_same_project_categories_allowed: "Kategorien for en arbeidpakke må være innenfor samme prosjekt som arbeidspakken."
does_not_exist: "Den angitte kategorien finnes ikke."
estimated_hours:
+ not_a_number: "is not a valid duration."
cant_be_inferior_to_remaining_work: "Kan ikke være lavere enn gjenstående arbeid."
must_be_set_when_remaining_work_is_set: "Påkrevd når gjenværende arbeid er satt."
only_values_greater_or_equal_zeroes_allowed: "Må være >= 0."
format: "%{message}"
remaining_hours:
+ not_a_number: "is not a valid duration."
cant_exceed_work: "Kan ikke være høyere enn arbeidet."
must_be_set_when_work_is_set: "Påkrevet når arbeidet settes."
format: "%{message}"
diff --git a/config/locales/crowdin/pl.yml b/config/locales/crowdin/pl.yml
index 407c45647dcc..2f35b2a932b7 100644
--- a/config/locales/crowdin/pl.yml
+++ b/config/locales/crowdin/pl.yml
@@ -1050,11 +1050,13 @@ pl:
only_same_project_categories_allowed: "Kategoria pakietu roboczego musi znajdować się w tym samym projekcie co pakiet roboczy."
does_not_exist: "Podana kategoria nie istnieje."
estimated_hours:
+ not_a_number: "is not a valid duration."
cant_be_inferior_to_remaining_work: "Nie może być mniejsza niż wartość pozostałej pracy."
must_be_set_when_remaining_work_is_set: "Wymagane, gdy ustawiona jest opcja Pozostała praca."
only_values_greater_or_equal_zeroes_allowed: "Musi być >= 0."
format: "%{message}"
remaining_hours:
+ not_a_number: "is not a valid duration."
cant_exceed_work: "Nie może być wyższa niż wartość pracy."
must_be_set_when_work_is_set: "Wymagane, gdy ustawiona jest opcja Praca."
format: "%{message}"
diff --git a/config/locales/crowdin/pt-BR.yml b/config/locales/crowdin/pt-BR.yml
index ba6299a3d5b5..0409b263eb59 100644
--- a/config/locales/crowdin/pt-BR.yml
+++ b/config/locales/crowdin/pt-BR.yml
@@ -1038,11 +1038,13 @@ pt-BR:
only_same_project_categories_allowed: "A categoria de um pacote de trabalho deve estar dentro do mesmo projeto do pacote de trabalho."
does_not_exist: "Categoria especificada não existe."
estimated_hours:
+ not_a_number: "is not a valid duration."
cant_be_inferior_to_remaining_work: "Não pode ser menor do que o Trabalho restante."
must_be_set_when_remaining_work_is_set: "Necessário quando o Trabalho restante for definido."
only_values_greater_or_equal_zeroes_allowed: "Deve ser >= 0."
format: "%{message}"
remaining_hours:
+ not_a_number: "is not a valid duration."
cant_exceed_work: "Não pode ser maior do que o Trabalho."
must_be_set_when_work_is_set: "Necessário quando o Trabalho for definido."
format: "%{message}"
diff --git a/config/locales/crowdin/pt-PT.yml b/config/locales/crowdin/pt-PT.yml
index 0efbaeeee1de..42a5df4f6007 100644
--- a/config/locales/crowdin/pt-PT.yml
+++ b/config/locales/crowdin/pt-PT.yml
@@ -1037,11 +1037,13 @@ pt-PT:
only_same_project_categories_allowed: "A categoria de um pacote de trabalho deve estar dentro do mesmo projeto que o pacote de trabalho."
does_not_exist: "A categoria especificada não existe."
estimated_hours:
+ not_a_number: "is not a valid duration."
cant_be_inferior_to_remaining_work: "Não pode ser inferior a Trabalho restante."
must_be_set_when_remaining_work_is_set: "Obrigatório quando o Trabalho restante está definido."
only_values_greater_or_equal_zeroes_allowed: "Tem de ser >= 0."
format: "%{message}"
remaining_hours:
+ not_a_number: "is not a valid duration."
cant_exceed_work: "Não pode ser superior a Trabalho."
must_be_set_when_work_is_set: "Obrigatório quando o Trabalho é definido."
format: "%{message}"
diff --git a/config/locales/crowdin/ro.yml b/config/locales/crowdin/ro.yml
index 7d14d0d6dcf2..5afe7f72b2a3 100644
--- a/config/locales/crowdin/ro.yml
+++ b/config/locales/crowdin/ro.yml
@@ -1046,11 +1046,13 @@ ro:
only_same_project_categories_allowed: "Categoria unui pachet de lucru trebuie să fie în cadrul aceluiaşi proiect ca pachetul de lucru."
does_not_exist: "Categoria specificată nu există."
estimated_hours:
+ not_a_number: "is not a valid duration."
cant_be_inferior_to_remaining_work: "Cannot be lower than Remaining work."
must_be_set_when_remaining_work_is_set: "Required when Remaining work is set."
only_values_greater_or_equal_zeroes_allowed: "Must be >= 0."
format: "%{message}"
remaining_hours:
+ not_a_number: "is not a valid duration."
cant_exceed_work: "Cannot be higher than Work."
must_be_set_when_work_is_set: "Required when Work is set."
format: "%{message}"
diff --git a/config/locales/crowdin/ru.yml b/config/locales/crowdin/ru.yml
index a47c7380a783..189d831411dd 100644
--- a/config/locales/crowdin/ru.yml
+++ b/config/locales/crowdin/ru.yml
@@ -300,11 +300,11 @@ ru:
heading: Требуется во всех проектах
description: Этот атрибут проекта активирован во всех проектах, поскольку установлен флажок «Требуется во всех проектах». Его нельзя отключить для отдельных проектов.
new_project_mapping_form:
- add_projects: Add projects
- include_sub_projects: Include sub-projects
+ add_projects: Добавить проекты
+ include_sub_projects: Включить подпроекты
project_mapping_filter:
- label: Search project
- placeholder: Filter by text
+ label: Поиск проекта
+ placeholder: Фильтр по тексту
types:
no_results_title_text: На данный момент доступных типов нет.
form:
@@ -1052,11 +1052,13 @@ ru:
only_same_project_categories_allowed: "Категория пакета работ должна быть в рамках того же проекта, что и пакет работ."
does_not_exist: "Указанная категория не существует."
estimated_hours:
+ not_a_number: "не является допустимой продолжительностью."
cant_be_inferior_to_remaining_work: "Не может быть меньше, чем Оставшаяся работа."
must_be_set_when_remaining_work_is_set: "Требуется, если установлен параметр Оставшаяся работа."
only_values_greater_or_equal_zeroes_allowed: "Должно быть >= 0."
format: "%{message}"
remaining_hours:
+ not_a_number: "is not a valid duration."
cant_exceed_work: "Не может быть выше Работы."
must_be_set_when_work_is_set: "Требуется, если установлен параметр «Работа»."
format: "%{message}"
@@ -1682,11 +1684,11 @@ ru:
image:
omitted: "Изображение не экспортировано."
macro:
- error: "Macro error, %{message}"
- attribute_not_found: "attribute not found: %{attribute}"
- model_not_found: "invalid attribute model: %{model}"
- resource_not_found: "resource not found: %{resource}"
- rich_text_unsupported: "Rich text embedding currently not supported in export"
+ error: "Ошибка макроса, %{message}"
+ attribute_not_found: "атрибут не найден: %{attribute}"
+ model_not_found: "неверная модель атрибута: %{model}"
+ resource_not_found: "ресурс не найден: %{resource}"
+ rich_text_unsupported: "Встраивание форматированного текста в настоящее время не поддерживается при экспорте."
units:
hours: ч
days: д
diff --git a/config/locales/crowdin/rw.yml b/config/locales/crowdin/rw.yml
index 0b0fe0718418..393f1710eb65 100644
--- a/config/locales/crowdin/rw.yml
+++ b/config/locales/crowdin/rw.yml
@@ -1039,11 +1039,13 @@ rw:
only_same_project_categories_allowed: "The category of a work package must be within the same project as the work package."
does_not_exist: "The specified category does not exist."
estimated_hours:
+ not_a_number: "is not a valid duration."
cant_be_inferior_to_remaining_work: "Cannot be lower than Remaining work."
must_be_set_when_remaining_work_is_set: "Required when Remaining work is set."
only_values_greater_or_equal_zeroes_allowed: "Must be >= 0."
format: "%{message}"
remaining_hours:
+ not_a_number: "is not a valid duration."
cant_exceed_work: "Cannot be higher than Work."
must_be_set_when_work_is_set: "Required when Work is set."
format: "%{message}"
diff --git a/config/locales/crowdin/si.yml b/config/locales/crowdin/si.yml
index 171a4a3a8b3b..b46c7ce225b5 100644
--- a/config/locales/crowdin/si.yml
+++ b/config/locales/crowdin/si.yml
@@ -1039,11 +1039,13 @@ si:
only_same_project_categories_allowed: "වැඩ පැකේජයක කාණ්ඩය වැඩ පැකේජයට සමාන ව්යාපෘතියක් විය යුතුය."
does_not_exist: "නිශ්චිත කාණ්ඩය නොපවතී."
estimated_hours:
+ not_a_number: "is not a valid duration."
cant_be_inferior_to_remaining_work: "Cannot be lower than Remaining work."
must_be_set_when_remaining_work_is_set: "Required when Remaining work is set."
only_values_greater_or_equal_zeroes_allowed: "Must be >= 0."
format: "%{message}"
remaining_hours:
+ not_a_number: "is not a valid duration."
cant_exceed_work: "Cannot be higher than Work."
must_be_set_when_work_is_set: "Required when Work is set."
format: "%{message}"
diff --git a/config/locales/crowdin/sk.yml b/config/locales/crowdin/sk.yml
index cbc306c99bd1..c20853f8645f 100644
--- a/config/locales/crowdin/sk.yml
+++ b/config/locales/crowdin/sk.yml
@@ -1053,11 +1053,13 @@ sk:
only_same_project_categories_allowed: "Kategória pracovného balíčka sa musí nachádzať v rámci rovnakého projektu ako pracovný balíček."
does_not_exist: "Špecifikovaná kategória neexistuje."
estimated_hours:
+ not_a_number: "is not a valid duration."
cant_be_inferior_to_remaining_work: "Cannot be lower than Remaining work."
must_be_set_when_remaining_work_is_set: "Required when Remaining work is set."
only_values_greater_or_equal_zeroes_allowed: "Must be >= 0."
format: "%{message}"
remaining_hours:
+ not_a_number: "is not a valid duration."
cant_exceed_work: "Cannot be higher than Work."
must_be_set_when_work_is_set: "Required when Work is set."
format: "%{message}"
diff --git a/config/locales/crowdin/sl.yml b/config/locales/crowdin/sl.yml
index 11630979b0c7..0e15844cf5f7 100644
--- a/config/locales/crowdin/sl.yml
+++ b/config/locales/crowdin/sl.yml
@@ -1050,11 +1050,13 @@ sl:
only_same_project_categories_allowed: "Kategorija delovnega paketa mora biti v istem projektu kot delovni paket."
does_not_exist: "Izbrana kategorija ne obstaja."
estimated_hours:
+ not_a_number: "is not a valid duration."
cant_be_inferior_to_remaining_work: "Cannot be lower than Remaining work."
must_be_set_when_remaining_work_is_set: "Required when Remaining work is set."
only_values_greater_or_equal_zeroes_allowed: "Must be >= 0."
format: "%{message}"
remaining_hours:
+ not_a_number: "is not a valid duration."
cant_exceed_work: "Cannot be higher than Work."
must_be_set_when_work_is_set: "Required when Work is set."
format: "%{message}"
diff --git a/config/locales/crowdin/sr.yml b/config/locales/crowdin/sr.yml
index 8630a3e6567b..3d0b7d29ee42 100644
--- a/config/locales/crowdin/sr.yml
+++ b/config/locales/crowdin/sr.yml
@@ -1046,11 +1046,13 @@ sr:
only_same_project_categories_allowed: "The category of a work package must be within the same project as the work package."
does_not_exist: "The specified category does not exist."
estimated_hours:
+ not_a_number: "is not a valid duration."
cant_be_inferior_to_remaining_work: "Cannot be lower than Remaining work."
must_be_set_when_remaining_work_is_set: "Required when Remaining work is set."
only_values_greater_or_equal_zeroes_allowed: "Must be >= 0."
format: "%{message}"
remaining_hours:
+ not_a_number: "is not a valid duration."
cant_exceed_work: "Cannot be higher than Work."
must_be_set_when_work_is_set: "Required when Work is set."
format: "%{message}"
diff --git a/config/locales/crowdin/sv.yml b/config/locales/crowdin/sv.yml
index 357930892064..b33da157becf 100644
--- a/config/locales/crowdin/sv.yml
+++ b/config/locales/crowdin/sv.yml
@@ -1038,11 +1038,13 @@ sv:
only_same_project_categories_allowed: "Kategorin för ett arbetspaket måste tillhöra samma projekt som arbetspaketet."
does_not_exist: "Den angivna kategorin finns inte."
estimated_hours:
+ not_a_number: "is not a valid duration."
cant_be_inferior_to_remaining_work: "Cannot be lower than Remaining work."
must_be_set_when_remaining_work_is_set: "Required when Remaining work is set."
only_values_greater_or_equal_zeroes_allowed: "Must be >= 0."
format: "%{message}"
remaining_hours:
+ not_a_number: "is not a valid duration."
cant_exceed_work: "Cannot be higher than Work."
must_be_set_when_work_is_set: "Required when Work is set."
format: "%{message}"
diff --git a/config/locales/crowdin/th.yml b/config/locales/crowdin/th.yml
index ed492f465c9a..85af25d0f3ac 100644
--- a/config/locales/crowdin/th.yml
+++ b/config/locales/crowdin/th.yml
@@ -1032,11 +1032,13 @@ th:
only_same_project_categories_allowed: "ประเภทของแพคเกจการทำงานต้องมีภายในโครงการเดียวกันเป็นแพคเกจทำงาน"
does_not_exist: "ไม่มีประเภทที่ระบุ"
estimated_hours:
+ not_a_number: "is not a valid duration."
cant_be_inferior_to_remaining_work: "Cannot be lower than Remaining work."
must_be_set_when_remaining_work_is_set: "Required when Remaining work is set."
only_values_greater_or_equal_zeroes_allowed: "Must be >= 0."
format: "%{message}"
remaining_hours:
+ not_a_number: "is not a valid duration."
cant_exceed_work: "Cannot be higher than Work."
must_be_set_when_work_is_set: "Required when Work is set."
format: "%{message}"
diff --git a/config/locales/crowdin/tr.yml b/config/locales/crowdin/tr.yml
index f84e684d5afa..7d6f28cfe300 100644
--- a/config/locales/crowdin/tr.yml
+++ b/config/locales/crowdin/tr.yml
@@ -1038,11 +1038,13 @@ tr:
only_same_project_categories_allowed: "Bir iş paketinin kategorisi iş paketi ile aynı proje içinde olmalıdır."
does_not_exist: "Belirtilen kategori yok."
estimated_hours:
+ not_a_number: "is not a valid duration."
cant_be_inferior_to_remaining_work: "Cannot be lower than Remaining work."
must_be_set_when_remaining_work_is_set: "Required when Remaining work is set."
only_values_greater_or_equal_zeroes_allowed: "Must be >= 0."
format: "%{message}"
remaining_hours:
+ not_a_number: "is not a valid duration."
cant_exceed_work: "Cannot be higher than Work."
must_be_set_when_work_is_set: "Required when Work is set."
format: "%{message}"
diff --git a/config/locales/crowdin/uk.yml b/config/locales/crowdin/uk.yml
index cbd580431a6b..397c238cd7a6 100644
--- a/config/locales/crowdin/uk.yml
+++ b/config/locales/crowdin/uk.yml
@@ -1048,11 +1048,13 @@ uk:
only_same_project_categories_allowed: "Категорія комплекс робіт повинен бути в межах одного проекту як комплексу робіт."
does_not_exist: "Указана категорія не існує."
estimated_hours:
+ not_a_number: "is not a valid duration."
cant_be_inferior_to_remaining_work: "Має дорівнювати значенню «Залишок робіт» або перевищувати його."
must_be_set_when_remaining_work_is_set: "Потрібно вказати, якщо визначено атрибут «Залишок робіт»."
only_values_greater_or_equal_zeroes_allowed: "Має бути >= 0."
format: "%{message}"
remaining_hours:
+ not_a_number: "is not a valid duration."
cant_exceed_work: "Не може перевищувати значення «Робота»."
must_be_set_when_work_is_set: "Потрібно вказати, якщо визначено атрибут «Робота»."
format: "%{message}"
diff --git a/config/locales/crowdin/uz.yml b/config/locales/crowdin/uz.yml
index 6d8f0a386eaa..467f91703320 100644
--- a/config/locales/crowdin/uz.yml
+++ b/config/locales/crowdin/uz.yml
@@ -1039,11 +1039,13 @@ uz:
only_same_project_categories_allowed: "The category of a work package must be within the same project as the work package."
does_not_exist: "The specified category does not exist."
estimated_hours:
+ not_a_number: "is not a valid duration."
cant_be_inferior_to_remaining_work: "Cannot be lower than Remaining work."
must_be_set_when_remaining_work_is_set: "Required when Remaining work is set."
only_values_greater_or_equal_zeroes_allowed: "Must be >= 0."
format: "%{message}"
remaining_hours:
+ not_a_number: "is not a valid duration."
cant_exceed_work: "Cannot be higher than Work."
must_be_set_when_work_is_set: "Required when Work is set."
format: "%{message}"
diff --git a/config/locales/crowdin/vi.yml b/config/locales/crowdin/vi.yml
index 564d0b0fa406..e0cf23275931 100644
--- a/config/locales/crowdin/vi.yml
+++ b/config/locales/crowdin/vi.yml
@@ -1034,11 +1034,13 @@ vi:
only_same_project_categories_allowed: "Các thể loại của một work package phải trong dự án tương tự như work package."
does_not_exist: "Thể loại đã chỉ định không tồn tại."
estimated_hours:
+ not_a_number: "is not a valid duration."
cant_be_inferior_to_remaining_work: "Cannot be lower than Remaining work."
must_be_set_when_remaining_work_is_set: "Required when Remaining work is set."
only_values_greater_or_equal_zeroes_allowed: "Must be >= 0."
format: "%{message}"
remaining_hours:
+ not_a_number: "is not a valid duration."
cant_exceed_work: "Cannot be higher than Work."
must_be_set_when_work_is_set: "Required when Work is set."
format: "%{message}"
diff --git a/config/locales/crowdin/zh-CN.yml b/config/locales/crowdin/zh-CN.yml
index 8c5a95a36f1c..b90a4048a41d 100644
--- a/config/locales/crowdin/zh-CN.yml
+++ b/config/locales/crowdin/zh-CN.yml
@@ -1028,11 +1028,13 @@ zh-CN:
only_same_project_categories_allowed: "工作包的类别必须包含在相同的项目工作包中。"
does_not_exist: "指定的类别不存在。"
estimated_hours:
+ not_a_number: "is not a valid duration."
cant_be_inferior_to_remaining_work: "不能低于剩余工时。"
must_be_set_when_remaining_work_is_set: "必须在设置 \"剩余工时 \"时设置。"
only_values_greater_or_equal_zeroes_allowed: "必须 > = 0。"
format: "%{message}"
remaining_hours:
+ not_a_number: "is not a valid duration."
cant_exceed_work: "不能高于工时。"
must_be_set_when_work_is_set: "当设置工时需要。"
format: "%{message}"
diff --git a/config/locales/crowdin/zh-TW.yml b/config/locales/crowdin/zh-TW.yml
index 8017d73682db..aa277235227a 100644
--- a/config/locales/crowdin/zh-TW.yml
+++ b/config/locales/crowdin/zh-TW.yml
@@ -1031,11 +1031,13 @@ zh-TW:
only_same_project_categories_allowed: "工作項目的類別必須與工作項目在同一個專案中"
does_not_exist: "指定的類別不存在"
estimated_hours:
+ not_a_number: "is not a valid duration."
cant_be_inferior_to_remaining_work: "Cannot be lower than Remaining work."
must_be_set_when_remaining_work_is_set: "Required when Remaining work is set."
only_values_greater_or_equal_zeroes_allowed: "Must be >= 0."
format: "%{message}"
remaining_hours:
+ not_a_number: "is not a valid duration."
cant_exceed_work: "Cannot be higher than Work."
must_be_set_when_work_is_set: "Required when Work is set."
format: "%{message}"
diff --git a/config/locales/en.yml b/config/locales/en.yml
index 546bfdb71ed5..270d815a5b0a 100644
--- a/config/locales/en.yml
+++ b/config/locales/en.yml
@@ -1111,11 +1111,13 @@ Project attributes and sections are defined in the = 0."
format: "%{message}"
remaining_hours:
+ not_a_number: "is not a valid duration."
cant_exceed_work: "Cannot be higher than Work."
must_be_set_when_work_is_set: "Required when Work is set."
format: "%{message}"
diff --git a/docs/installation-and-operations/configuration/environment/README.md b/docs/installation-and-operations/configuration/environment/README.md
index b4d59d5b5e70..08a81877257f 100644
--- a/docs/installation-and-operations/configuration/environment/README.md
+++ b/docs/installation-and-operations/configuration/environment/README.md
@@ -32,23 +32,26 @@ Underscores within keys have to be escaped by doubling them.
For example, given the following configuration:
```yaml
-storage:
- tmp_path: tmp
+scm:
+ subversion:
+ access_token: 'token'
```
You can override it by defining the following environment variable:
```ruby
-OPENPROJECT_STORAGE_TMP__PATH=/some/other/path
+OPENPROJECT_SCM_SUBVERSION_ACCESS__TOKEN=some-other-token
```
-You can also add new values this way. For instance you could add another field 'type' to the
-storage config above like this:
+You can also add new values this way. For instance you could add another field 'insecure' to the
+subversion configuration above like this:
```ruby
-OPENPROJECT_STORAGE_TYPE=nfs
+OPENPROJECT_SCM_SUBVERSION_INSECURE=true
```
+Mind, these options are simply examples. Neither are they an exhaustive list, nor will they appear as possible options for the `OPENPROJECT_SCM` option listed in the section on supported environment variables below. This is due to the nature of that option as a hash which will allow passing of arbitrary values which are simply passed through to the scm adapter used.
+
## Seed variables
Some of the provided variables are only applicable during the seeding of a new installation (i.e., during the first start or run of the `db:seeds` setup task).
diff --git a/docs/release-notes/14-2-0/README.md b/docs/release-notes/14-2-0/README.md
new file mode 100644
index 000000000000..6fa57ebabb29
--- /dev/null
+++ b/docs/release-notes/14-2-0/README.md
@@ -0,0 +1,69 @@
+---
+title: OpenProject 14.2.0
+sidebar_navigation:
+ title: 14.2.0
+release_version: 14.2.0
+release_date: 2024-06-07
+---
+
+# OpenProject 14.2.0
+
+Release date: 2024-06-19
+
+We released [OpenProject 14.2.0](https://community.openproject.org/versions/2040).
+The release contains several bug fixes and we recommend updating to the newest version.
+
+## Important updates and breaking changes
+
+
+
+
+
+## Bug fixes and changes
+
+
+
+
+- Bugfix: Misleading Openproject Reconfigure wizard leading to undesired removal of Apache \[[#41293](https://community.openproject.org/wp/41293)\]
+- Bugfix: Some buttons are missing on mobile screens on iOS Safari \[[#50724](https://community.openproject.org/wp/50724)\]
+- Bugfix: Different headings in permission report and role form \[[#51447](https://community.openproject.org/wp/51447)\]
+- Bugfix: Main menu resizer handle misplaced on hover \[[#52670](https://community.openproject.org/wp/52670)\]
+- Bugfix: Error when sorting projects list by "latest activity at" \[[#53315](https://community.openproject.org/wp/53315)\]
+- Bugfix: Query lost when sorting the project table quickly \[[#53329](https://community.openproject.org/wp/53329)\]
+- Bugfix: Seeded demo project "Project plan" view should be in Gantt charts section \[[#53624](https://community.openproject.org/wp/53624)\]
+- Bugfix: The label for "Spent time" is still visible after deactiving the module "Time and costs" \[[#53772](https://community.openproject.org/wp/53772)\]
+- Bugfix: Text editor is partially out of view on mobile \[[#54128](https://community.openproject.org/wp/54128)\]
+- Bugfix: Health e-mail showing storage host URL but unexpectedly linking OP \[[#55137](https://community.openproject.org/wp/55137)\]
+- Bugfix: Meetings participants toggle has the wrong color \[[#55169](https://community.openproject.org/wp/55169)\]
+- Bugfix: User icon appearing on the share work packages modal in the empty state \[[#55231](https://community.openproject.org/wp/55231)\]
+- Bugfix: Favorite colum margin is too big on project list \[[#55251](https://community.openproject.org/wp/55251)\]
+- Bugfix: Notifications are sent to the author if the author is member of a @mentioned group \[[#55255](https://community.openproject.org/wp/55255)\]
+- Bugfix: New section option not i18n-ed \[[#55275](https://community.openproject.org/wp/55275)\]
+- Bugfix: Can't update from 13.1 - main language pt-BR \[[#55318](https://community.openproject.org/wp/55318)\]
+- Bugfix: Progress units: Display Work and Remaining work in days and hours \[[#55466](https://community.openproject.org/wp/55466)\]
+- Bugfix: Focus ripped from work/remaining work preemptively disrupting input \[[#55515](https://community.openproject.org/wp/55515)\]
+- Feature: Exclude by status some work packages from the calculation of totals for % Complete and work estimates \[[#49409](https://community.openproject.org/wp/49409)\]
+- Feature: Avoid redundant emails in case of @mentions and email reminder \[[#50140](https://community.openproject.org/wp/50140)\]
+- Feature: Record work and remaining work in different units (hours, days, weeks, ...) \[[#50954](https://community.openproject.org/wp/50954)\]
+- Feature: Allow renaming persisted project lists \[[#51673](https://community.openproject.org/wp/51673)\]
+- Feature: Change default view for meetings module to upcoming invitations \[[#53669](https://community.openproject.org/wp/53669)\]
+- Feature: Create a sub-header component in Primer \[[#54043](https://community.openproject.org/wp/54043)\]
+- Feature: Embedded work package attributes in PDF export \[[#54377](https://community.openproject.org/wp/54377)\]
+- Feature: Configure which projects are activated for a project attribute \[[#54455](https://community.openproject.org/wp/54455)\]
+- Feature: Allow meeting invite to be sent out when creating meetings \[[#54469](https://community.openproject.org/wp/54469)\]
+- Feature: Extend storage API to include boolean "configured" attribute \[[#55158](https://community.openproject.org/wp/55158)\]
+- Feature: Extend primer component PageHeader to support Tabs \[[#55190](https://community.openproject.org/wp/55190)\]
+- Feature: Transform remove action from share modals to an IconButton \[[#55230](https://community.openproject.org/wp/55230)\]
+- Feature: Localize demo projects when user starts a trial \[[#55323](https://community.openproject.org/wp/55323)\]
+- Feature: Track deployment status for OpenProject pull requests in github integration \[[#55425](https://community.openproject.org/wp/55425)\]
+- Feature: Warn admins about potential data loss when changing progress calculation modes \[[#55467](https://community.openproject.org/wp/55467)\]
+
+
+
+
+#### Contributions
+A big thanks to community members for reporting bugs and helping us identifying and providing fixes.
+
+Special thanks for reporting and finding bugs go to
+
+Ricardo Brenner, Sven Kunze
diff --git a/docs/system-admin-guide/integrations/excel-synchronization/README.md b/docs/system-admin-guide/integrations/excel-synchronization/README.md
index d78bbbbc1a06..ff231cd9eaea 100644
--- a/docs/system-admin-guide/integrations/excel-synchronization/README.md
+++ b/docs/system-admin-guide/integrations/excel-synchronization/README.md
@@ -44,9 +44,20 @@ You will then get the relations in your Excel file.
**Example:**
"follows 12345, precedes 45678"
-Unfortunately, there is no way to create relation with translated terms via API at the moment. You have to use these terms instead: [Relation Edit Form API](../../../api/endpoints/relations/#relation-edit-form)
-
-
+Unfortunately, there is no way to create relation with translated terms via API at the moment. You have to use these
+terms instead, defined in the [relations model](https://github.com/opf/openproject/blob/f8caab74090dce26b6056857226a7e00e3b3fa09/app/models/relation.rb):
+
+- relates
+- duplicates
+- duplicated
+- blocks
+- blocked
+- precedes
+- follows
+- includes
+- partof
+- requires
+- required
diff --git a/docs/system-admin-guide/integrations/excel-synchronization/image-20211014153150017.png b/docs/system-admin-guide/integrations/excel-synchronization/image-20211014153150017.png
deleted file mode 100644
index ee3a075bcada..000000000000
Binary files a/docs/system-admin-guide/integrations/excel-synchronization/image-20211014153150017.png and /dev/null differ
diff --git a/docs/user-guide/meetings/dynamic-meetings/README.md b/docs/user-guide/meetings/dynamic-meetings/README.md
index 5a02967352c8..510f8aab7762 100644
--- a/docs/user-guide/meetings/dynamic-meetings/README.md
+++ b/docs/user-guide/meetings/dynamic-meetings/README.md
@@ -30,7 +30,7 @@ Introduced in OpenProject 13.1, dynamic meetings offer easier meeting management
## Meetings in OpenProject
-By selecting **Meetings** in the project menu on the left, you get an overview of all the meetings within a specific project sorted by date. By clicking on a meeting name you can view further details of the meeting.
+By selecting **Meetings** in the project menu on the left, you get an overview of all the meetings you have been invited to within a specific project sorted by date. By clicking on a meeting name you can view further details of the meeting.
To get an overview of the meetings across multiple projects, you can select **Meetings** in the [global modules menu](../../../user-guide/home/global-modules/).
@@ -52,7 +52,7 @@ To create a new meeting, click the green **+ Meeting** button in the upper right

-Enter your meeting's title, type, location, start date and duration.
+Enter your meeting's title, type, location, start date and duration. You can also choose if you want to invite meeting participants via email after the meeting has been created (this option is activated by default).
If you are creating a meeting from a global module you will first need to select a project to which the meeting is attributed. After you have selected a project, the list of potential participants (project members) will appear for you to select who to invite. After the meeting you can note who attended the meeting.
diff --git a/docs/user-guide/meetings/dynamic-meetings/openproject_userguide_create_new_meeting.png b/docs/user-guide/meetings/dynamic-meetings/openproject_userguide_create_new_meeting.png
index 2b4024ca28bb..103df663a50e 100644
Binary files a/docs/user-guide/meetings/dynamic-meetings/openproject_userguide_create_new_meeting.png and b/docs/user-guide/meetings/dynamic-meetings/openproject_userguide_create_new_meeting.png differ
diff --git a/docs/user-guide/projects/project-lists/README.md b/docs/user-guide/projects/project-lists/README.md
index 0e281d4df8a0..f0c2d9c961ca 100644
--- a/docs/user-guide/projects/project-lists/README.md
+++ b/docs/user-guide/projects/project-lists/README.md
@@ -118,9 +118,11 @@ Your saved project lists filter will appear on the left side under **My private

-You can always remove your private project lists by using the **Delete** option.
+You can always rename or remove your private project lists by using the respective option.
-
+> **Note:** static lists and lists, that have been shared with other users cannot be renamed, so the option will not be displayed.
+
+
### Gantt chart view
diff --git a/docs/user-guide/projects/project-lists/private-project-filter-rename-delete.png b/docs/user-guide/projects/project-lists/private-project-filter-rename-delete.png
new file mode 100644
index 000000000000..3785107cccf8
Binary files /dev/null and b/docs/user-guide/projects/project-lists/private-project-filter-rename-delete.png differ
diff --git a/docs/user-guide/work-packages/share-work-packages/openproject_user_guide_share_button_wp.png b/docs/user-guide/work-packages/share-work-packages/openproject_user_guide_share_button_wp.png
index 5ccd840774bc..9e5236d24a56 100644
Binary files a/docs/user-guide/work-packages/share-work-packages/openproject_user_guide_share_button_wp.png and b/docs/user-guide/work-packages/share-work-packages/openproject_user_guide_share_button_wp.png differ
diff --git a/docs/user-guide/work-packages/share-work-packages/openproject_user_guide_share_button_wp_numbers.png b/docs/user-guide/work-packages/share-work-packages/openproject_user_guide_share_button_wp_numbers.png
index 237585a45f33..a0bbb5c6f92f 100644
Binary files a/docs/user-guide/work-packages/share-work-packages/openproject_user_guide_share_button_wp_numbers.png and b/docs/user-guide/work-packages/share-work-packages/openproject_user_guide_share_button_wp_numbers.png differ
diff --git a/docs/user-guide/work-packages/share-work-packages/openproject_user_guide_shared_search.png b/docs/user-guide/work-packages/share-work-packages/openproject_user_guide_shared_search.png
index 6a3d3106fa4f..b0033c416722 100644
Binary files a/docs/user-guide/work-packages/share-work-packages/openproject_user_guide_shared_search.png and b/docs/user-guide/work-packages/share-work-packages/openproject_user_guide_shared_search.png differ
diff --git a/docs/user-guide/work-packages/share-work-packages/openproject_user_guide_shared_with_list.png b/docs/user-guide/work-packages/share-work-packages/openproject_user_guide_shared_with_list.png
index 3eb72498e92e..a04f68b95ab4 100644
Binary files a/docs/user-guide/work-packages/share-work-packages/openproject_user_guide_shared_with_list.png and b/docs/user-guide/work-packages/share-work-packages/openproject_user_guide_shared_with_list.png differ
diff --git a/docs/user-guide/work-packages/share-work-packages/openproject_user_guide_shared_with_list_change_role.png b/docs/user-guide/work-packages/share-work-packages/openproject_user_guide_shared_with_list_change_role.png
index 6e58b0dac7a0..2c9821b25103 100644
Binary files a/docs/user-guide/work-packages/share-work-packages/openproject_user_guide_shared_with_list_change_role.png and b/docs/user-guide/work-packages/share-work-packages/openproject_user_guide_shared_with_list_change_role.png differ
diff --git a/docs/user-guide/work-packages/share-work-packages/openproject_user_guide_shared_with_users_filter_new.png b/docs/user-guide/work-packages/share-work-packages/openproject_user_guide_shared_with_users_filter_new.png
index cd0c5dd20edd..285d771dfe4d 100644
Binary files a/docs/user-guide/work-packages/share-work-packages/openproject_user_guide_shared_with_users_filter_new.png and b/docs/user-guide/work-packages/share-work-packages/openproject_user_guide_shared_with_users_filter_new.png differ
diff --git a/frontend/package-lock.json b/frontend/package-lock.json
index d29cb193cfd7..f28af01b8e45 100644
--- a/frontend/package-lock.json
+++ b/frontend/package-lock.json
@@ -4816,9 +4816,9 @@
}
},
"node_modules/@openproject/primer-view-components": {
- "version": "0.33.1",
- "resolved": "https://registry.npmjs.org/@openproject/primer-view-components/-/primer-view-components-0.33.1.tgz",
- "integrity": "sha512-lOKqObPWYfuscBJnj0fFuyq8Lz/sQYBlXsvFAs3N1Nu0XSDH/Ak97bFcuIIX4lRWxnyGWSj/BREvIjCoyi2BCA==",
+ "version": "0.33.2",
+ "resolved": "https://registry.npmjs.org/@openproject/primer-view-components/-/primer-view-components-0.33.2.tgz",
+ "integrity": "sha512-TVxwv4R3QqANMkBl54t0LssMkwdfmFHv+rUCInap+1wrdb6pmGh+K1TvMS7yt+Uvu+0joxegorDmIiWLjJqWMA==",
"dependencies": {
"@github/auto-check-element": "^5.2.0",
"@github/auto-complete-element": "^3.6.2",
@@ -22755,9 +22755,9 @@
}
},
"node_modules/zone.js": {
- "version": "0.14.6",
- "resolved": "https://registry.npmjs.org/zone.js/-/zone.js-0.14.6.tgz",
- "integrity": "sha512-vyRNFqofdaHVdWAy7v3Bzmn84a1JHWSjpuTZROT/uYn8I3p2cmo7Ro9twFmYRQDPhiYOV7QLk0hhY4JJQVqS6Q=="
+ "version": "0.14.7",
+ "resolved": "https://registry.npmjs.org/zone.js/-/zone.js-0.14.7.tgz",
+ "integrity": "sha512-0w6DGkX2BPuiK/NLf+4A8FLE43QwBfuqz2dVgi/40Rj1WmqUskCqj329O/pwrqFJLG5X8wkeG2RhIAro441xtg=="
}
},
"dependencies": {
@@ -25864,9 +25864,9 @@
}
},
"@openproject/primer-view-components": {
- "version": "0.33.1",
- "resolved": "https://registry.npmjs.org/@openproject/primer-view-components/-/primer-view-components-0.33.1.tgz",
- "integrity": "sha512-lOKqObPWYfuscBJnj0fFuyq8Lz/sQYBlXsvFAs3N1Nu0XSDH/Ak97bFcuIIX4lRWxnyGWSj/BREvIjCoyi2BCA==",
+ "version": "0.33.2",
+ "resolved": "https://registry.npmjs.org/@openproject/primer-view-components/-/primer-view-components-0.33.2.tgz",
+ "integrity": "sha512-TVxwv4R3QqANMkBl54t0LssMkwdfmFHv+rUCInap+1wrdb6pmGh+K1TvMS7yt+Uvu+0joxegorDmIiWLjJqWMA==",
"requires": {
"@github/auto-check-element": "^5.2.0",
"@github/auto-complete-element": "^3.6.2",
@@ -39071,9 +39071,9 @@
"dev": true
},
"zone.js": {
- "version": "0.14.6",
- "resolved": "https://registry.npmjs.org/zone.js/-/zone.js-0.14.6.tgz",
- "integrity": "sha512-vyRNFqofdaHVdWAy7v3Bzmn84a1JHWSjpuTZROT/uYn8I3p2cmo7Ro9twFmYRQDPhiYOV7QLk0hhY4JJQVqS6Q=="
+ "version": "0.14.7",
+ "resolved": "https://registry.npmjs.org/zone.js/-/zone.js-0.14.7.tgz",
+ "integrity": "sha512-0w6DGkX2BPuiK/NLf+4A8FLE43QwBfuqz2dVgi/40Rj1WmqUskCqj329O/pwrqFJLG5X8wkeG2RhIAro441xtg=="
}
}
}
diff --git a/frontend/src/global_styles/content/_autocomplete_primerized.sass b/frontend/src/global_styles/content/_autocomplete_primerized.sass
index ea444055242c..0d3ee701fa53 100644
--- a/frontend/src/global_styles/content/_autocomplete_primerized.sass
+++ b/frontend/src/global_styles/content/_autocomplete_primerized.sass
@@ -30,5 +30,4 @@
&.ng-select--primerized
.ng-select-container
border-radius: 6px
- height: 32px !important
min-height: 32px !important
diff --git a/lookbook/previews/queries/sort_by_component_preview.rb b/lookbook/previews/open_project/queries/sort_by_component_preview.rb
similarity index 78%
rename from lookbook/previews/queries/sort_by_component_preview.rb
rename to lookbook/previews/open_project/queries/sort_by_component_preview.rb
index 7d332cba9f74..6b519d344998 100644
--- a/lookbook/previews/queries/sort_by_component_preview.rb
+++ b/lookbook/previews/open_project/queries/sort_by_component_preview.rb
@@ -1,11 +1,12 @@
-module Queries
+module OpenProject::Queries
+ # @logical_path OpenProject/Queries
class SortByComponentPreview < Lookbook::Preview
def default
query = ::Queries::Projects::ProjectQuery.new
query.order(lft: :asc)
query.order(created_at: :desc)
- render SortByComponent.new(
+ render ::Queries::SortByComponent.new(
query:,
selectable_columns: [
{ id: :lft, name: I18n.t(:label_project_hierarchy) },
diff --git a/modules/avatars/config/locales/crowdin/js-ms.yml b/modules/avatars/config/locales/crowdin/js-ms.yml
index 88aac2b59ccd..2952e3124618 100644
--- a/modules/avatars/config/locales/crowdin/js-ms.yml
+++ b/modules/avatars/config/locales/crowdin/js-ms.yml
@@ -2,7 +2,7 @@
ms:
js:
label_preview: 'Previu'
- button_update: 'Kemaskini'
+ button_update: 'Kemas kini'
avatars:
label_choose_avatar: "Pilih Avatar dari fail"
uploading_avatar: "Memuat naik avatar anda."
diff --git a/modules/backlogs/config/locales/crowdin/ms.yml b/modules/backlogs/config/locales/crowdin/ms.yml
index 3a1c3c3285b1..d4b83cad035d 100644
--- a/modules/backlogs/config/locales/crowdin/ms.yml
+++ b/modules/backlogs/config/locales/crowdin/ms.yml
@@ -64,8 +64,8 @@ ms:
properties: "Ciri-ciri"
rebuild: "Bina semula"
rebuild_positions: "Bina semula kedudukan"
- remaining_hours: "Baki kerja"
- remaining_hours_ideal: "Baki kerja (ideal)"
+ remaining_hours: "Kerja yang berbaki"
+ remaining_hours_ideal: "Kerja yang berbaki (ideal)"
show_burndown_chart: "Carta Burndown"
story: "Cerita"
story_points: "Titik Cerita"
@@ -82,9 +82,9 @@ ms:
backlogs_product_backlog_is_empty: "Tunggakan produk kosong"
backlogs_product_backlog_unsized: "Bahagian atas tunggakan produk mempunyai cerita tanpa saiz"
backlogs_sizing_inconsistent: "Saiz cerita berbeza mengikut anggaran"
- backlogs_sprint_notes_missing: "Pecutan ditutup tanpa nota restrospektif atau semakan"
+ backlogs_sprint_notes_missing: "Pecutan ditutup tanpa nota restrospektif/semakan"
backlogs_sprint_unestimated: "Pecutan aktif atau ditutup bersama cerita yang tiada anggaran"
- backlogs_sprint_unsized: "Projek mempunyai cerita-cerita berkenaan pecutan aktif atau baru ditutup yang tidak bersaiz"
+ backlogs_sprint_unsized: "Projek mempunyai cerita-cerita berkenaan pecutan aktif atau yang baru ditutup yang tidak bersaiz"
backlogs_sprints: "Pecutan"
backlogs_story: "Cerita"
backlogs_story_type: "Jenis cerita"
@@ -112,7 +112,7 @@ ms:
label_burndown: "Burndown"
label_column_in_backlog: "Kolum dalam tunggakan"
label_hours: "jam"
- label_work_package_hierarchy: "Hierarki Pakej kerja"
+ label_work_package_hierarchy: "Hierarki pakej kerja"
label_master_backlog: "Tunggakan Utama"
label_not_prioritized: "tidak diutamakan"
label_points: "mata"
@@ -147,7 +147,7 @@ ms:
rb_label_copy_tasks_none: "Tiada"
rb_label_copy_tasks_open: "Buka"
rb_label_link_to_original: "Sertakan pautan ke cerita asal"
- remaining_hours: "baki kerja"
+ remaining_hours: "kerja yang berbaki"
required_burn_rate_hours: "kadar burn yang diperlukan (jam)"
required_burn_rate_points: "kadar burn yang diperlukan (mata)"
todo_work_package_description: "%{summary}: %{url}\n%{description}"
diff --git a/modules/bim/config/locales/crowdin/ms.seeders.yml b/modules/bim/config/locales/crowdin/ms.seeders.yml
index 0e5ecb33376c..5af028d04491 100644
--- a/modules/bim/config/locales/crowdin/ms.seeders.yml
+++ b/modules/bim/config/locales/crowdin/ms.seeders.yml
@@ -47,12 +47,12 @@ ms:
name: Konflik
global_queries:
item_0:
- name: 'Jadual yang telah disematkan: Kanak-kanak'
+ name: 'Jadual tersemat: Anak-anak'
type_configuration:
item_0:
form_configuration:
item_0:
- group_name: Kanak-kanak
+ group_name: Anak-anak
groups:
item_0:
name: Arkitek
diff --git a/modules/bim/config/locales/crowdin/ms.yml b/modules/bim/config/locales/crowdin/ms.yml
index 37a17178c476..dff87b50b925 100644
--- a/modules/bim/config/locales/crowdin/ms.yml
+++ b/modules/bim/config/locales/crowdin/ms.yml
@@ -24,7 +24,7 @@ ms:
xml_file: 'Fail BCF XML'
import_title: 'Import'
export: 'Eksport'
- import_update_comment: '(Dikemas kini di dalam import BCF)'
+ import_update_comment: '(Dikemas kini dalam import BCF)'
import_failed: 'Tidak boleh import fail BCF: %{error}'
import_failed_unsupported_bcf_version: 'Fail BCF gagal untuk dibaca: Versi BCF ini tidak disokong. Sila pastikan versi ini adalah sekurang-kurangnya %{minimal_version} atau lebih tinggi.'
import_successful: 'Import %{count} isu BCF'
diff --git a/modules/boards/config/locales/crowdin/js-ms.yml b/modules/boards/config/locales/crowdin/js-ms.yml
index c4228e444bf7..aab49afba5fa 100644
--- a/modules/boards/config/locales/crowdin/js-ms.yml
+++ b/modules/boards/config/locales/crowdin/js-ms.yml
@@ -12,15 +12,15 @@ ms:
lists:
delete: 'Padam senarai'
version:
- is_locked: 'Versi ini dikunci. Tiada item yang boleh ditambah kedalam versi ini.'
- is_closed: 'Versi ini ditutup. Tiada item yang boleh ditambah kedalam versi ini.'
+ is_locked: 'Versi ini dikunci. Tiada item yang boleh ditambah ke dalam versi ini.'
+ is_closed: 'Versi ini ditutup. Tiada item yang boleh ditambah ke dalam versi ini.'
close_version: 'Versi tertutup'
open_version: 'Versi terbuka'
lock_version: 'Versi terkunci'
unlock_version: 'Versi dibuka'
edit_version: 'Versi edit'
show_version: 'Papar versi'
- locked: 'Dikunci'
+ locked: 'Terkunci'
closed: 'Tertutup'
new_board: 'Board baharu'
add_list: 'Tambah senarai ke board'
diff --git a/modules/github_integration/config/locales/crowdin/js-ru.yml b/modules/github_integration/config/locales/crowdin/js-ru.yml
index 8f82b01901ef..67de504b75da 100644
--- a/modules/github_integration/config/locales/crowdin/js-ru.yml
+++ b/modules/github_integration/config/locales/crowdin/js-ru.yml
@@ -45,7 +45,7 @@ ru:
referenced_message: "Запрос на извлечение #%{pr_number} %{pr_link} для %{repository_link} автором %{github_user_link} ссылается на этот пакет работ."
states:
opened: 'открыт'
- closed: 'закрыт'
+ closed: 'закрыто'
draft: 'составлен'
merged: 'объединен'
ready_for_review: 'отмечен как готовый к просмотру'
diff --git a/modules/github_integration/config/locales/crowdin/ms.yml b/modules/github_integration/config/locales/crowdin/ms.yml
index 5194c5899f6a..fadbf9dc1c1d 100644
--- a/modules/github_integration/config/locales/crowdin/ms.yml
+++ b/modules/github_integration/config/locales/crowdin/ms.yml
@@ -20,20 +20,20 @@
#See COPYRIGHT and LICENSE files for more details.
#++
ms:
- button_add_deploy_target: Add deploy target
- label_deploy_target: Deploy target
- label_deploy_target_new: New deploy target
- label_deploy_target_plural: Deploy targets
- label_github_integration: GitHub Integration
- notice_deploy_target_created: Deploy target created
- notice_deploy_target_destroyed: Deploy target deleted
+ button_add_deploy_target: Tambah sasaran penyerahan
+ label_deploy_target: Sasaran penyerahan
+ label_deploy_target_new: Sasaran penyerahan baharu
+ label_deploy_target_plural: Sasaran penyerahan
+ label_github_integration: Integrasi GitHub
+ notice_deploy_target_created: Sasaran penyerahan dicipta
+ notice_deploy_target_destroyed: Sasaran penyerahan dipadam
plugin_openproject_github_integration:
name: "Integrasi GitHub OpenProject"
description: "Mengintegrasikan OpenProject dan GitHub untuk aliran kerja yang lebih baik"
project_module_github: "GitHub"
permission_show_github_content: "Paparkan kandungan GitHub"
- permission_introspection: Read running OpenProject core version and build SHA
+ permission_introspection: Baca versi teras OpenProject yang aktif dan bangunkan SHA
text_deploy_target_type_info: >
- So far we only support OpenProject itself.
+ Setakat ini kami hanya menyokong OpenProject sahaja.
text_deploy_target_api_key_info: >
- An OpenProject [API key](docs_url) belonging to a user who has the global introspection permission.
+ [API key](docs_url) OpenProject yang dimiliki oleh pengguna yang mempunyai kebenaran intipan global.
diff --git a/modules/github_integration/config/locales/crowdin/pt-BR.yml b/modules/github_integration/config/locales/crowdin/pt-BR.yml
index 6537addd962d..784fd3607cd6 100644
--- a/modules/github_integration/config/locales/crowdin/pt-BR.yml
+++ b/modules/github_integration/config/locales/crowdin/pt-BR.yml
@@ -24,7 +24,7 @@ pt-BR:
label_deploy_target: Deploy target
label_deploy_target_new: New deploy target
label_deploy_target_plural: Deploy targets
- label_github_integration: GitHub Integration
+ label_github_integration: Integração com o GitHub
notice_deploy_target_created: Deploy target created
notice_deploy_target_destroyed: Deploy target deleted
plugin_openproject_github_integration:
@@ -34,6 +34,6 @@ pt-BR:
permission_show_github_content: "Exibir conteúdo GitHub"
permission_introspection: Read running OpenProject core version and build SHA
text_deploy_target_type_info: >
- So far we only support OpenProject itself.
+ No momento, oferecemos suporte apenas ao próprio OpenProject
text_deploy_target_api_key_info: >
- An OpenProject [API key](docs_url) belonging to a user who has the global introspection permission.
+ Uma [API key](docs_url) do OpenProject pertencente a um usuário que tenha permissões globais de introspecção.
diff --git a/modules/github_integration/config/locales/crowdin/ru.yml b/modules/github_integration/config/locales/crowdin/ru.yml
index 003a9741bdfd..16c78629da77 100644
--- a/modules/github_integration/config/locales/crowdin/ru.yml
+++ b/modules/github_integration/config/locales/crowdin/ru.yml
@@ -20,20 +20,20 @@
#See COPYRIGHT and LICENSE files for more details.
#++
ru:
- button_add_deploy_target: Add deploy target
- label_deploy_target: Deploy target
- label_deploy_target_new: New deploy target
- label_deploy_target_plural: Deploy targets
- label_github_integration: GitHub Integration
- notice_deploy_target_created: Deploy target created
- notice_deploy_target_destroyed: Deploy target deleted
+ button_add_deploy_target: Добавить цель установки
+ label_deploy_target: Цель установки
+ label_deploy_target_new: Новая цель установки
+ label_deploy_target_plural: Цели установки
+ label_github_integration: Интеграция с GitHub
+ notice_deploy_target_created: Цель установки создана
+ notice_deploy_target_destroyed: Цель установки удалена
plugin_openproject_github_integration:
name: "Интеграция с OpenProject GitHub"
description: "Интегрирует OpenProject и GitHub для лучшего рабочего процесса"
project_module_github: "GitHub"
permission_show_github_content: "Показать контент GitHub"
- permission_introspection: Read running OpenProject core version and build SHA
+ permission_introspection: Ознакомьтесь с версией ядра OpenProject и сборкой SHA
text_deploy_target_type_info: >
- So far we only support OpenProject itself.
+ Пока что мы поддерживаем только сам OpenProject.
text_deploy_target_api_key_info: >
- An OpenProject [API key](docs_url) belonging to a user who has the global introspection permission.
+ OpenProject [API key](docs_url), принадлежащий пользователю, имеющему глобальное разрешение на самоанализ.
diff --git a/modules/job_status/config/locales/crowdin/js-ms.yml b/modules/job_status/config/locales/crowdin/js-ms.yml
index bd9a17950282..b43a2e070be5 100644
--- a/modules/job_status/config/locales/crowdin/js-ms.yml
+++ b/modules/job_status/config/locales/crowdin/js-ms.yml
@@ -10,7 +10,7 @@ ms:
errors: 'Beberapa ralat telah berlaku'
generic_messages:
not_found: 'Kerja ini tidak dapat ditemui.'
- in_queue: 'Kerja ini telah dibaris gilirkan dan akan diproses sebentar lagi.'
+ in_queue: 'Kerja ini sedang menunggu giliran dan akan diproses sebentar lagi.'
in_process: 'Kerja ini sedang diproses.'
error: 'Kerja ini gagal disiapkan.'
cancelled: 'Kerja ini telah dibatalkan disebabkan oleh sebuah ralat.'
diff --git a/modules/meeting/config/locales/crowdin/be.yml b/modules/meeting/config/locales/crowdin/be.yml
index a199dcd61cb7..f5a573058061 100644
--- a/modules/meeting/config/locales/crowdin/be.yml
+++ b/modules/meeting/config/locales/crowdin/be.yml
@@ -60,7 +60,7 @@ be:
meeting_agenda_item: "Agenda item"
meeting_agenda: "Agenda"
meeting_minutes: "Minutes"
- meeting_section: "Section"
+ meeting_section: "Раздзел"
activity:
filter:
meeting: "Meetings"
diff --git a/modules/meeting/config/locales/crowdin/cs.yml b/modules/meeting/config/locales/crowdin/cs.yml
index c585e54808cd..865f2a0cb50d 100644
--- a/modules/meeting/config/locales/crowdin/cs.yml
+++ b/modules/meeting/config/locales/crowdin/cs.yml
@@ -60,7 +60,7 @@ cs:
meeting_agenda_item: "Pořad jednání"
meeting_agenda: "Agenda"
meeting_minutes: "Zápis"
- meeting_section: "Section"
+ meeting_section: "Sekce"
activity:
filter:
meeting: "Schůzky"
@@ -119,12 +119,12 @@ cs:
copy:
title: "Kopírovat schůzku %{title}"
attachments: "Kopírovat přílohy"
- attachments_text: "Copy over all attached files to the new meeting"
+ attachments_text: "Zkopírujte všechny přiložené soubory do nové schůzky"
agenda: "Kopírovat program"
agenda_text: "Zkopírujte program staré schůzky"
email:
send_emails: "Odeslat e-maily"
- send_invitation_emails: "Send out invitation emails upon creation"
+ send_invitation_emails: "Odeslat e-maily s pozvánkou při vytvoření"
open_meeting_link: "Otevřít schůzku"
invited:
summary: "%{actor} vám poslal pozvánku na schůzku %{title}"
@@ -192,17 +192,17 @@ cs:
label_agenda_item_move_down: "Přesunout níž"
label_agenda_item_add_notes: "Přidat poznámky"
label_agenda_item_work_package: "Agenda item work package"
- text_agenda_item_title: 'Agenda item "%{title}"'
+ text_agenda_item_title: 'Bod programu "%{title}"'
text_agenda_work_package_deleted: 'Agenda item for deleted work package'
text_deleted_agenda_item: 'Deleted agenda item'
label_initial_meeting_details: "Schůzka"
label_meeting_details: "Podrobnosti o schůzce"
label_meeting_details_edit: "Upravit podrobnosti schůzky"
- label_meeting_state: "Meeting status"
+ label_meeting_state: "Stav schůzky"
label_meeting_state_open: "Otevřít"
- label_meeting_state_open_html: "Open"
+ label_meeting_state_open_html: "Otevřeno"
label_meeting_state_closed: "Uzavřený"
- label_meeting_state_closed_html: "Closed"
+ label_meeting_state_closed_html: "Uzavřeno"
label_meeting_reopen_action: "Znovu otevřít schůzku"
label_meeting_close_action: "Ukončit schůzku"
text_meeting_open_description: "Tato schůzka je otevřená. Můžete přidat/odebrat položky programu a upravit je, jak chcete. Po skončení schůzky ji zavřete a uzamkněte ji."
diff --git a/modules/meeting/config/locales/crowdin/de.yml b/modules/meeting/config/locales/crowdin/de.yml
index 672ce0be8056..47b58d5629d2 100644
--- a/modules/meeting/config/locales/crowdin/de.yml
+++ b/modules/meeting/config/locales/crowdin/de.yml
@@ -58,7 +58,7 @@ de:
meeting_agenda_item: "Tagesordnungspunkt"
meeting_agenda: "Agenda"
meeting_minutes: "Protokoll"
- meeting_section: "Section"
+ meeting_section: "Abschnitt"
activity:
filter:
meeting: "Besprechungen"
diff --git a/modules/meeting/config/locales/crowdin/es.yml b/modules/meeting/config/locales/crowdin/es.yml
index 0534701eb97c..947fb6921cdd 100644
--- a/modules/meeting/config/locales/crowdin/es.yml
+++ b/modules/meeting/config/locales/crowdin/es.yml
@@ -58,7 +58,7 @@ es:
meeting_agenda_item: "Puntos de Agenda"
meeting_agenda: "Agenda"
meeting_minutes: "Minutas"
- meeting_section: "Section"
+ meeting_section: "Sección"
activity:
filter:
meeting: "Reuniones"
diff --git a/modules/meeting/config/locales/crowdin/it.yml b/modules/meeting/config/locales/crowdin/it.yml
index 0f65741c2f62..3294609561c4 100644
--- a/modules/meeting/config/locales/crowdin/it.yml
+++ b/modules/meeting/config/locales/crowdin/it.yml
@@ -58,7 +58,7 @@ it:
meeting_agenda_item: "Attività"
meeting_agenda: "Ordine del giorno"
meeting_minutes: "Verbali"
- meeting_section: "Section"
+ meeting_section: "Sezione"
activity:
filter:
meeting: "Riunioni"
diff --git a/modules/meeting/config/locales/crowdin/ms.yml b/modules/meeting/config/locales/crowdin/ms.yml
index cd3f4b60a5d4..a16185072566 100644
--- a/modules/meeting/config/locales/crowdin/ms.yml
+++ b/modules/meeting/config/locales/crowdin/ms.yml
@@ -57,7 +57,7 @@ ms:
meeting_agenda_item: "Item agenda"
meeting_agenda: "Agenda"
meeting_minutes: "Minit mesyuarat"
- meeting_section: "Section"
+ meeting_section: "Bahagian"
activity:
filter:
meeting: "Mesyuarat"
@@ -67,13 +67,13 @@ ms:
added: "ditetapkan kepada %{value}"
added_html: "ditetapkan kepada %{value}"
removed: "dikeluarkan"
- updated: "ditukar dari %{old_value} kepada %{value}"
- updated_html: "ditukar dari %{old_value} kepada %{value}"
+ updated: "ditukar daripada %{old_value} kepada %{value}"
+ updated_html: "ditukar daripada %{old_value} kepada %{value}"
position:
updated: "disusun semula"
work_package:
- updated: "ditukar dari %{old_value} kepada %{value}"
- updated_html: "ditukar dari %{old_value} kepada %{value}"
+ updated: "ditukar daripada %{old_value} kepada %{value}"
+ updated_html: "ditukar daripada %{old_value} kepada %{value}"
description_attended: "dihadiri"
description_invite: "dijemput"
events:
diff --git a/modules/meeting/config/locales/crowdin/pt-BR.yml b/modules/meeting/config/locales/crowdin/pt-BR.yml
index 4ee36b373c64..3323826b1a12 100644
--- a/modules/meeting/config/locales/crowdin/pt-BR.yml
+++ b/modules/meeting/config/locales/crowdin/pt-BR.yml
@@ -58,7 +58,7 @@ pt-BR:
meeting_agenda_item: "Item da agenda"
meeting_agenda: "Agenda"
meeting_minutes: "Atas"
- meeting_section: "Section"
+ meeting_section: "Seção"
activity:
filter:
meeting: "Reuniões"
diff --git a/modules/meeting/config/locales/crowdin/pt-PT.yml b/modules/meeting/config/locales/crowdin/pt-PT.yml
index c1359db8c076..310c39be9dbc 100644
--- a/modules/meeting/config/locales/crowdin/pt-PT.yml
+++ b/modules/meeting/config/locales/crowdin/pt-PT.yml
@@ -58,7 +58,7 @@ pt-PT:
meeting_agenda_item: "Pontos da ordem de trabalhos"
meeting_agenda: "Agenda"
meeting_minutes: "Minutos"
- meeting_section: "Section"
+ meeting_section: "Secção"
activity:
filter:
meeting: "Reuniões"
diff --git a/modules/meeting/config/locales/crowdin/uk.yml b/modules/meeting/config/locales/crowdin/uk.yml
index c39410201798..831cf2f93a4a 100644
--- a/modules/meeting/config/locales/crowdin/uk.yml
+++ b/modules/meeting/config/locales/crowdin/uk.yml
@@ -60,7 +60,7 @@ uk:
meeting_agenda_item: "Порядок денний"
meeting_agenda: "Порядок денний"
meeting_minutes: "Хвилини"
- meeting_section: "Section"
+ meeting_section: "Розділ"
activity:
filter:
meeting: "Наради"
diff --git a/modules/openid_connect/lib/open_project/openid_connect/hooks/hook.rb b/modules/openid_connect/lib/open_project/openid_connect/hooks/hook.rb
index 2d3b92c952d9..f2d446830767 100644
--- a/modules/openid_connect/lib/open_project/openid_connect/hooks/hook.rb
+++ b/modules/openid_connect/lib/open_project/openid_connect/hooks/hook.rb
@@ -41,22 +41,9 @@ def user_logged_in(context)
end
##
- # Once omniauth has returned with an auth hash
- # persist the access token
- def omniauth_user_authorized(context)
- auth_hash = context[:auth_hash]
- controller = context[:controller]
-
- # fetch the access token if it's present
- access_token = auth_hash.fetch(:credentials, {})[:token]
- # put it into a cookie
- if controller && access_token
- controller.send(:cookies)[:_open_project_session_access_token] = {
- value: access_token,
- secure: !!Rails.configuration.force_ssl
- }
- end
- end
+ # Called once omniauth has returned with an auth hash
+ # NOTE: It's a passthrough as we no longer persist the access token into the cookie
+ def omniauth_user_authorized(_context); end
end
end
end
diff --git a/modules/openid_connect/spec/requests/openid_connect_spec.rb b/modules/openid_connect/spec/requests/openid_connect_spec.rb
index c09af595b26b..686f588b7297 100644
--- a/modules/openid_connect/spec/requests/openid_connect_spec.rb
+++ b/modules/openid_connect/spec/requests/openid_connect_spec.rb
@@ -98,13 +98,6 @@
expect(response).to have_http_status :found
expect(response.location).to match /\/\?first_time_user=true$/
- # after_login requires the optional third context parameter
- # remove this guard once we are on v4.1
- if OpenProject::OmniAuth::Authorization.method(:after_login!).arity.abs > 2
- # check that cookie is stored in the access token
- expect(response.cookies["_open_project_session_access_token"]).to eq "foo bar baz"
- end
-
user = User.find_by(mail: user_info[:email])
expect(user).not_to be_nil
diff --git a/modules/reporting/config/locales/crowdin/ms.yml b/modules/reporting/config/locales/crowdin/ms.yml
index 66823c595542..a3bcbcb3f812 100644
--- a/modules/reporting/config/locales/crowdin/ms.yml
+++ b/modules/reporting/config/locales/crowdin/ms.yml
@@ -22,7 +22,7 @@
ms:
plugin_openproject_reporting:
name: "Pelaporan OpenProject"
- description: "Plugin ini membenarkan mencipta laporan kos tersuai dengan menyaring dan pengumpulan yang dibuat oleh plugin Masa dan kos OpenProject."
+ description: "Plugin ini membenarkan untuk mencipta laporan kos tersuai dengan penyaring dan pengumpulan yang dibuat oleh plugin Masa dan kos OpenProject."
button_save_as: "Simpan laporan sebagai..."
comments: "Komen"
cost_reports_title: "Masa dan kos"
diff --git a/spec/features/auth/omniauth_spec.rb b/spec/features/auth/omniauth_spec.rb
index f2b884f7ba50..3957086fbd9c 100644
--- a/spec/features/auth/omniauth_spec.rb
+++ b/spec/features/auth/omniauth_spec.rb
@@ -121,8 +121,7 @@ def translation_substring(translation)
end
describe "sign out a user with direct login and login required",
- with_config: { omniauth_direct_login_provider: "developer" },
- with_settings: { login_required?: true } do
+ with_config: { omniauth_direct_login_provider: "developer", login_required: true } do
it "shows a notice that the user has been logged out" do
visit signout_path
diff --git a/spec/models/work_package_spec.rb b/spec/models/work_package_spec.rb
index 88ce100130d5..e8885efdf741 100644
--- a/spec/models/work_package_spec.rb
+++ b/spec/models/work_package_spec.rb
@@ -56,7 +56,7 @@
priority:,
subject: "test_create",
description: "WorkPackage#create",
- estimated_hours: "1:30" }
+ estimated_hours: "1h30" }
end
end
@@ -746,9 +746,22 @@ def stub_shared_versions(version = nil)
end
describe "#remaining_hours" do
- it "allows empty values" do
+ it "allows empty value" do
+ work_package.remaining_hours = ""
+ expect(work_package).to be_valid
expect(work_package.remaining_hours).to be_nil
+ end
+
+ it "allows blank values" do
+ work_package.remaining_hours = " "
expect(work_package).to be_valid
+ expect(work_package.remaining_hours).to be_nil
+ end
+
+ it "allows nil value" do
+ work_package.remaining_hours = nil
+ expect(work_package).to be_valid
+ expect(work_package.remaining_hours).to be_nil
end
it "allows values greater than or equal to 0" do
@@ -773,5 +786,23 @@ def stub_shared_versions(version = nil)
work_package.remaining_hours = "1.3"
expect(work_package).to be_valid
end
+
+ it "allows hours like '1h06'" do
+ work_package.remaining_hours = "1h06"
+ expect(work_package).to be_valid
+ expect(work_package.remaining_hours).to eq(1.1)
+ end
+
+ it "allows hours like '1h 24m'" do
+ work_package.remaining_hours = "1h 24m"
+ expect(work_package).to be_valid
+ expect(work_package.remaining_hours).to eq(1.4)
+ end
+
+ it "allows hours like '3d 1h 30m'" do
+ work_package.remaining_hours = "3d 1h 30m"
+ expect(work_package).to be_valid
+ expect(work_package.remaining_hours).to eq((3 * 8) + 1.5)
+ end
end
end
diff --git a/spec/support/shared/with_config.rb b/spec/support/shared/with_config.rb
index 19a8669bed9d..ceaee33d8c68 100644
--- a/spec/support/shared/with_config.rb
+++ b/spec/support/shared/with_config.rb
@@ -70,6 +70,11 @@ def stub_key(key, value)
.to receive(:[])
.with(key.to_sym)
.and_return(value)
+
+ # if a configuration value was set then it automatically pins
+ # the respective setting as well which is why we stub this here too
+ allow(Setting).to receive(:[]).with(key.to_s).and_return(value)
+ allow(Setting).to receive(:[]).with(key.to_sym).and_return(value)
end
def aggregate_mocked_configuration(example, config)
@@ -90,6 +95,7 @@ def allow_original_implementation_for_unstubbed_keys
return if @call_original_implementation_done
allow(OpenProject::Configuration).to receive(:[]).and_call_original
+ allow(Setting).to receive(:[]).and_call_original
@call_original_implementation_done = true
end
end