Merge branch 'release/14.5' into task/57594-145-documentation-update-pageheaders-and-subheaders-in-the-my-account-pages

This commit is contained in:
Andrej Sandorf
2024-09-09 09:40:12 +02:00
committed by GitHub
176 changed files with 1484 additions and 1059 deletions
@@ -26,7 +26,9 @@
selected: selected_columns,
protected: helpers.protected_projects_columns_options,
name: COLUMN_HTML_NAME,
id: 'columns-select',
id: COLUMN_HTML_ID,
dragAreaName: "#{COLUMN_HTML_ID}_dragarea",
formControlId: "#{COLUMN_HTML_ID}_autocompleter",
inputLabel: I18n.t(:'queries.configure_view.columns.input_label'),
inputPlaceholder: I18n.t(:'queries.configure_view.columns.input_placeholder'),
dragAreaLabel: I18n.t(:'queries.configure_view.columns.drag_area_label'),
@@ -34,6 +34,7 @@ class Projects::ConfigureViewModalComponent < ApplicationComponent
MODAL_ID = "op-project-list-configure-dialog"
QUERY_FORM_ID = "op-project-list-configure-query-form"
COLUMN_HTML_NAME = "columns"
COLUMN_HTML_ID = "columns-select"
options :query
@@ -62,8 +62,8 @@
flex.with_column(classes: "op-work-package-details-tab-component--action") do
render(Primer::Beta::IconButton.new(icon: :x,
tag: :a,
href: helpers.url_for_with_params(action: :close_split_view),
data: { turbo: true, 'turbo-stream': true },
href: base_route,
data: { turbo: true, target: "_top", turbo_action: "advance" },
scheme: :invisible,
test_selector: "wp-details-tab-component--close",
aria: { label: I18n.t(:button_close) }))
@@ -17,7 +17,7 @@
flex.with_row(flex: 1) do
helpers.angular_component_tag "opce-wp-split-view",
inputs: {
work_package_id: params[:work_package_id] || @work_package.id,
work_package_id: @id,
resizerClass: "op-work-package-split-view",
activeTab: @tab
}
@@ -7,3 +7,7 @@
@media screen and (max-width: $breakpoint-lg)
// Unfortunately, we have to enforce this style via !important as the resizer writes the width directly on the element as inline style
min-width: unset !important
@media screen and (max-width: $breakpoint-sm)
.work-packages--details-toolbar-container
@include hide-button-texts
@@ -37,33 +37,5 @@ module WorkPackages
def split_view_work_package_id
params[:work_package_id].to_i
end
def close_split_view
respond_to do |format|
format.turbo_stream do
render turbo_stream: [
turbo_stream.remove("work-package-details-#{split_view_work_package_id}"),
turbo_stream.push_state(url: split_view_base_route),
turbo_stream.set_title(title: helpers.page_title(I18n.t("js.notifications.title")))
]
end
format.html do
redirect_to split_view_base_route
end
end
end
def respond_to_with_split_view(&format_block)
respond_to do |format|
format.turbo_stream do
render turbo_stream: [
turbo_stream.update("content-bodyRight", helpers.split_view_instance.render_in(view_context)),
turbo_stream.push_state(url: request.fullpath)
]
end
yield(format) if format_block
end
end
end
end
+7 -3
View File
@@ -31,16 +31,20 @@ class NotificationsController < ApplicationController
before_action :require_login
before_action :filtered_query, only: :mark_all_read
no_authorization_required! :index, :split_view, :update_counter, :close_split_view, :mark_all_read, :date_alerts, :share_upsale
no_authorization_required! :index, :split_view, :update_counter, :mark_all_read, :date_alerts, :share_upsale
def index
render_notifications_layout
end
def split_view
respond_to_with_split_view do |format|
respond_to do |format|
format.html do
render :index, layout: "notifications"
if turbo_frame_request?
render "work_packages/split_view", layout: false
else
render :index, layout: "notifications"
end
end
end
end
@@ -10,6 +10,6 @@ module WorkPackages::SplitViewHelper
def split_view_instance
WorkPackages::SplitViewComponent.new(id: params[:work_package_id],
tab: params[:tab],
base_route: params[:base_route] || work_packages_path)
base_route: split_view_base_route)
end
end
+1 -1
View File
@@ -15,7 +15,7 @@ class SharingMailer < ApplicationMailer
@role_rights = derive_role_rights(role)
@allowed_work_package_actions = derive_allowed_work_package_actions(role)
@url = optionally_activated_url(work_package_url(@work_package.id), @invitation_token)
@notification_url = optionally_activated_url(details_notifications_url(@work_package.id), @invitation_token)
@notification_url = optionally_activated_url(details_notifications_url(@work_package.id, tab: :activity), @invitation_token)
set_open_project_headers(@work_package)
message_id(membership, sharer)
+2 -2
View File
@@ -155,9 +155,9 @@ See COPYRIGHT and LICENSE files for more details.
<%= yield %>
<% end %>
</div>
<div id="content-bodyRight">
<%= turbo_frame_tag "content-bodyRight" do %>
<%= content_for :content_body_right %>
</div>
<% end %>
<% end %>
</main>
</div>
+2 -2
View File
@@ -1,5 +1,5 @@
<a style="text-decoration: none;display: block;"
href="<%= local_assigns[:notification_url] || details_notifications_url(work_package.id) %>"
href="<%= local_assigns[:notification_url] || details_notifications_url(work_package.id, tab: :activity) %>"
target="_blank">
<%= render layout: 'mailer/border_table' do %>
<tr>
@@ -104,7 +104,7 @@
</table>
<a style="margin-left: 12px;"
href="<%= defined?(open_in_browser_path) ? open_in_browser_path : details_notifications_url(work_package.id) %>"
href="<%= defined?(open_in_browser_path) ? open_in_browser_path : details_notifications_url(work_package.id, tab: :activity) %>"
target="_blank"
rel="noopener noreferrer">
<%= I18n.t('mail.work_packages.open_in_browser') %>
@@ -11,7 +11,7 @@
<%= render partial: 'mailer/mailer_header',
locals: {
summary: I18n.t(:'mail.work_packages.mentioned_by', user: @journal.user),
button_href: details_notifications_url(@work_package.id),
button_href: details_notifications_url(@work_package.id, tab: :activity),
button_text: I18n.t(:'mail.notification.see_in_center'),
user: @user,
} %>
@@ -0,0 +1,3 @@
<%= turbo_frame_tag "content-bodyRight" do %>
<%= render(split_view_instance) %>
<% end %>
+16 -16
View File
@@ -297,7 +297,7 @@ de:
actions:
label_enable_single: "In diesem Projekt aktiv, zum Deaktivieren anklicken"
label_disable_single: "In diesem Projekt inaktiv, zum Aktivieren anklicken"
remove_from_project: "Remove from project"
remove_from_project: "Aus dem Projekt entfernen"
label_enable_all: "Alles aktivieren"
label_disable_all: "Alles deaktivieren"
is_required_blank_slate:
@@ -1679,23 +1679,23 @@ de:
label: "Zoom levels"
caption: "Select what is the zoom level for dates displayed in the chart."
options:
days: "Days"
weeks: "Weeks"
months: "Months"
quarters: "Quarters"
days: "Tage"
weeks: "Wochen"
months: "Monate"
quarters: "Quartale"
column_width:
label: "Table column width"
label: "Breite der Tabellenspalten"
options:
narrow: "Narrow"
medium: "Medium"
wide: "Wide"
very_wide: "Very wide"
narrow: "Schmal"
medium: "Mittel"
wide: "Breit"
very_wide: "Sehr breit"
paper_size:
label: "Paper size"
caption: "Depending on the chart size more than one page might be exported."
label: "Papierformat"
caption: "Je nach Größe des Diagramms besteht der Export aus einer oder auch aus mehreren Seiten."
long_text_fields:
input_caption: "By default all long text fields are selected."
input_label: "Add long text fields"
input_caption: "Standardmäßig sind alle Langtextfelder ausgewählt."
input_label: "Langtextfelder hinzufügen"
input_placeholder: "Search for long text fields"
drag_area_label: "Manage long text fields"
xls:
@@ -3517,9 +3517,9 @@ de:
remaining_hours:
cleared_because_work_is_empty: "Cleared because Work is empty."
cleared_because_percent_complete_is_empty: "Cleared because % Complete is empty."
decreased_like_work: "Decreased by the same amount as Work."
decreased_like_work: "Verringert um den gleichen Betrag wie Aufwand."
derived: "Derived from Work and % Complete."
increased_like_work: "Increased by the same amount as Work."
increased_like_work: "Erhöht um den gleichen Betrag wie Aufwand."
same_as_work: "Set to same value as Work."
permissions:
comment: "Kommentar"
+48 -48
View File
@@ -300,7 +300,7 @@ fr:
actions:
label_enable_single: "Actif dans ce projet, cliquez pour le désactiver"
label_disable_single: "Inactif dans ce projet, cliquez pour l'activer"
remove_from_project: "Remove from project"
remove_from_project: "Supprimer du projet"
label_enable_all: "Activer tout"
label_disable_all: "Désactiver tout"
is_required_blank_slate:
@@ -1673,46 +1673,46 @@ fr:
caption: "Exporter la liste des lots de travaux dans une table avec les colonnes souhaitées."
report:
label: "Rapport"
caption: "Export the work package on a detailed report of all work packages in the list."
caption: "Exportez le lot de travaux dans un rapport détaillé de tous les lots de travaux de la liste."
gantt:
label: "Gantt chart"
caption: "Export the work packages list in a Gantt diagram view."
label: "Diagramme de Gantt"
caption: "Exportez la liste des lots de travaux dans un diagramme de Gantt."
include_images:
label: "Include images"
caption: "Exclude images to reduce the size of the PDF export."
label: "Inclure des images"
caption: "Excluez les images pour réduire la taille de l'exportation PDF."
gantt_zoom_levels:
label: "Zoom levels"
caption: "Select what is the zoom level for dates displayed in the chart."
label: "Niveaux de zoom"
caption: "Sélectionnez le niveau de zoom pour les dates affichées dans le graphique."
options:
days: "Days"
weeks: "Weeks"
months: "Months"
quarters: "Quarters"
days: "Jours"
weeks: "Semaines"
months: "Mois"
quarters: "Trimestres"
column_width:
label: "Table column width"
label: "Largeur des colonnes du tableau"
options:
narrow: "Narrow"
medium: "Medium"
wide: "Wide"
very_wide: "Very wide"
narrow: "Étroite"
medium: "Moyenne"
wide: "Large"
very_wide: "Très large"
paper_size:
label: "Paper size"
caption: "Depending on the chart size more than one page might be exported."
label: "Format du papier"
caption: "Plusieurs pages peuvent être exportées en fonction de la taille de la carte."
long_text_fields:
input_caption: "By default all long text fields are selected."
input_label: "Add long text fields"
input_placeholder: "Search for long text fields"
drag_area_label: "Manage long text fields"
input_caption: "Par défaut, tous les champs de texte long sont sélectionnés."
input_label: "Ajouter des champs de texte longs"
input_placeholder: "Recherche de champs de texte longs"
drag_area_label: "Gérer les champs de texte longs"
xls:
include_relations:
label: "Include relations"
caption: "This option will create a duplicate of each work package for every relation this has with another work package."
label: "Inclure les relations"
caption: "Cette option crée un double de chaque lot de travaux pour chaque relation qu'il a avec un autre lot de travaux."
include_descriptions:
label: "Include descriptions"
caption: "This option will add a description column in raw format."
your_work_packages_export: "Work packages are being exported"
succeeded: "Export completed"
failed: "An error has occurred while trying to export the work packages: %{message}"
label: "Inclure des descriptions"
caption: "Cette option permet d'ajouter une colonne de description au format brut."
your_work_packages_export: "Les lots de travaux sont exportés"
succeeded: "Exportation terminée"
failed: "Une erreur s'est produite lors de l'exportation des lots de travaux : %{message}"
format:
atom: "Atom"
csv: "CSV"
@@ -2363,8 +2363,8 @@ fr:
label_role_plural: "Rôles"
label_role_search: "Assigner un rôle aux nouveaux membres"
label_scm: "SCM"
label_scroll_left: "Scroll left"
label_scroll_right: "Scroll right"
label_scroll_left: "Défilement vers la gauche"
label_scroll_right: "Défilement vers la droite"
label_search: "Recherche"
label_search_by_name: "Rechercher par nom"
label_send_information: "Envoyer de nouveaux identifiants à l'utilisateur"
@@ -3122,9 +3122,9 @@ fr:
setting_work_package_done_ratio_field: "Basé sur le travail"
setting_work_package_done_ratio_status: "Basé sur le statut"
setting_work_package_done_ratio_explanation_pre_14_4_without_percent_complete_edition_html: >
In <b>work-based</b> mode, % Complete is calculated from how much work is done in relation to total work. In <b>status-based</b> mode, each status has a % Complete value associated with it. Changing status will change % Complete.
En mode <b>Basé sur le travail</b>, le % d'achèvement est calculé à partir de la quantité de travail effectuée par rapport au total du travail. En mode <b>Basé sur le statut</b>, chaque état a une valeur de % d'achèvement associée. Le changement de statut changera la valeur de % d'achèvement.
setting_work_package_done_ratio_explanation_html: >
In <b>work-based</b> mode, % Complete can be freely set to any value. If you optionally enter a value for Work, Remaining work will automatically be derived. In <b>status-based</b> mode, each status has a % Complete value associated with it. Changing status will change % Complete.
En mode <b>Basé sur le travail</b>, le % d'achèvement peut être librement défini sur n'importe quelle valeur. Si vous saisissez une valeur pour le travail, le travail restant sera automatiquement dérivé. En mode <b>Basé sur le statut</b>, chaque état a une valeur de % d'achèvement associée. Le changement de statut changera la valeur de % d'achèvement.
setting_work_package_properties: "Propriétés du Lot de Travaux"
setting_work_package_startdate_is_adddate: "Utiliser la date actuelle comme date de début des nouveaux lots de travaux"
setting_work_packages_projects_export_limit: "Limite d'exportation des lots de travaux/projets"
@@ -3506,26 +3506,26 @@ fr:
progress:
label_note: "Note :"
modal:
work_based_help_text: "Each field is automatically calculated from the two others when possible."
work_based_help_text_pre_14_4_without_percent_complete_edition: "% Complete is automatically derived from Work and Remaining work."
work_based_help_text: "Chaque champ est calculé automatiquement à partir des deux autres lorsque cela est possible."
work_based_help_text_pre_14_4_without_percent_complete_edition: "Le % d'achèvement est automatiquement dérivé du travail et du travail restant."
status_based_help_text: "Le % réalisé est défini par le statut du lot de travaux."
migration_warning_text: "Dans le mode de calcul de la progression basé sur le travail, le % réalisé ne peut pas être défini manuellement et est lié au travail. La valeur existante a été conservée mais ne peut pas être modifiée. Veuillez d'abord renseigner Travail."
derivation_hints:
done_ratio:
cleared_because_remaining_work_is_empty: "Cleared because Remaining work is empty."
cleared_because_work_is_0h: "Cleared because Work is 0h."
derived: "Derived from Work and Remaining work."
cleared_because_remaining_work_is_empty: "Effacé parce que le travail restant est vide."
cleared_because_work_is_0h: "Effacé parce que le travail est de 0 h."
derived: "Dérivé du travail et du travail restant."
estimated_hours:
cleared_because_remaining_work_is_empty: "Cleared because Remaining work is empty."
derived: "Derived from Remaining work and % Complete."
same_as_remaining_work: "Set to same value as Remaining work."
cleared_because_remaining_work_is_empty: "Effacé parce que le travail restant est vide."
derived: "Dérivé du travail restant et du % d'achèvement."
same_as_remaining_work: "Régler à la même valeur que le travail restant."
remaining_hours:
cleared_because_work_is_empty: "Cleared because Work is empty."
cleared_because_percent_complete_is_empty: "Cleared because % Complete is empty."
decreased_like_work: "Decreased by the same amount as Work."
derived: "Derived from Work and % Complete."
increased_like_work: "Increased by the same amount as Work."
same_as_work: "Set to same value as Work."
cleared_because_work_is_empty: "Effacé parce que le travail est vide."
cleared_because_percent_complete_is_empty: "Effacé parce que le % d'achèvement est vide."
decreased_like_work: "Diminué du même montant que le travail."
derived: "Dérivé du travail et du % d'achèvement."
increased_like_work: "Augmenté du même montant que le travail."
same_as_work: "Régler à la même valeur que le travail."
permissions:
comment: "Commentaire"
comment_description: "Peut consulter et commenter ce lot de travaux."
+72 -72
View File
@@ -262,8 +262,8 @@ it:
no_results_title_text: Al momento non esistono progetti
no_results_content_text: Crea un nuovo progetto
search:
label: Project name filter
placeholder: Search by project name
label: Filtro per nome progetto
placeholder: Ricerca per nome del progetto
lists:
active: "Progetti attivi"
my: "I miei progetti"
@@ -297,7 +297,7 @@ it:
actions:
label_enable_single: "Attivo in questo progetto, clicca per disattivarlo"
label_disable_single: "Non attivo in questo progetto, clicca per attivarlo"
remove_from_project: "Remove from project"
remove_from_project: "Rimuovi dal progetto"
label_enable_all: "Abilita tutti"
label_disable_all: "Disabilita tutti"
is_required_blank_slate:
@@ -1037,10 +1037,10 @@ it:
assigned_to:
format: "%{message}"
done_ratio:
does_not_match_work_and_remaining_work: "does not match Work and Remaining work"
cannot_be_set_when_work_is_zero: "cannot be set when Work is 0h"
must_be_set_when_remaining_work_is_set: "required when Remaining work is set."
must_be_set_when_work_and_remaining_work_are_set: "required when Work and Remaining work are set."
does_not_match_work_and_remaining_work: "non corrisponde al Lavoro e al Lavoro residuo"
cannot_be_set_when_work_is_zero: "non può essere impostata quando il Lavoro è 0"
must_be_set_when_remaining_work_is_set: "obbligatorio quando si imposta Lavoro residuo."
must_be_set_when_work_and_remaining_work_are_set: "obbligatorio quando si impostano Lavoro e Lavoro residuo."
inclusion: "deve essere compresa tra 0 e 100."
due_date:
not_start_date: "non è sulla data di inizio, nonostante sia obbligatorio per i traguardi."
@@ -1070,17 +1070,17 @@ it:
does_not_exist: "La categoria specificata non esiste."
estimated_hours:
not_a_number: "non è una durata valida."
cant_be_inferior_to_remaining_work: "cannot be lower than Remaining work."
must_be_set_when_remaining_work_and_percent_complete_are_set: "required when Remaining work and % Complete are set."
cant_be_inferior_to_remaining_work: "non può essere inferiore al Lavoro residuo."
must_be_set_when_remaining_work_and_percent_complete_are_set: "obbligatorio quando sono impostate le opzioni Lavoro residuo e % completamento."
remaining_hours:
not_a_number: "non è una durata valida."
cant_exceed_work: "cannot be higher than Work."
must_be_set_when_work_is_set: "required when Work is set."
must_be_set_when_work_and_percent_complete_are_set: "required when Work and % Complete are set."
cant_exceed_work: "non può essere superiore a Lavoro."
must_be_set_when_work_is_set: "obbligatorio quando è impostato Lavoro."
must_be_set_when_work_and_percent_complete_are_set: "obbligatorio quando sono impostate le opzioni Lavoro e % completamento."
must_be_set_to_zero_hours_when_work_is_set_and_percent_complete_is_100p: >-
must be 0h when Work is set and % Complete is 100%.
deve essere 0h quando è impostato il Lavoro e la % completamento è 100%.
must_be_empty_when_work_is_empty_and_percent_complete_is_100p: >-
must be empty when Work is empty and % Complete is 100%.
deve essere vuoto quando il Lavoro è vuoto e la % completamento è 100%.
readonly_status: "La macro-attività è in uno stato di sola lettura perciò i suoi attributi non possono essere modificati."
type:
attributes:
@@ -1647,10 +1647,10 @@ it:
subproject: "Sottoprogetto: %{name}"
export:
dialog:
title: "Export"
submit: "Export"
title: "Esporta"
submit: "Esporta"
format:
label: "File format"
label: "Formato file"
options:
csv:
label: "CSV"
@@ -1659,58 +1659,58 @@ it:
xls:
label: "XLS"
columns:
input_label_report: "Add columns to attribute table"
input_caption_report: "By default all attributes added as columns in the work package list are selected. Long text fields are not available in the attribute table, but can be displayed below it."
input_caption_table: "By default all attributes added as columns in the work package list are selected. Long text fields are not available in table based exports."
input_label_report: "Aggiungi colonne alla tabella degli attributi"
input_caption_report: "Per impostazione predefinita, tutti gli attributi aggiunti come colonne nell'elenco della macro-attività sono selezionati. I campi di testo lunghi non sono disponibili nella tabella degli attributi, ma possono essere visualizzati sotto di essa."
input_caption_table: "Per impostazione predefinita, tutti gli attributi aggiunti come colonne nell'elenco della macro-attività sono selezionati. I campi di testo lunghi non sono disponibili nelle esportazioni basate su tabelle."
pdf:
export_type:
label: "PDF export type"
label: "Tipo di esportazione PDF"
options:
table:
label: "Table"
caption: "Export the work packages list in a table with the desired columns."
label: "Tabella"
caption: "Esporta l'elenco delle macro-attività in una tabella con le colonne desiderate."
report:
label: "Report"
caption: "Export the work package on a detailed report of all work packages in the list."
caption: "Esporta la macro-attività in un report dettagliato di tutte le macro-attività dell'elenco."
gantt:
label: "Gantt chart"
caption: "Export the work packages list in a Gantt diagram view."
label: "Diagramma di Gantt"
caption: "Esporta l'elenco delle macro-attività in una vista a diagramma di Gantt."
include_images:
label: "Include images"
caption: "Exclude images to reduce the size of the PDF export."
label: "Includi immagini"
caption: "Escludi le immagini per ridurre la dimensione dell'esportazione in PDF."
gantt_zoom_levels:
label: "Zoom levels"
caption: "Select what is the zoom level for dates displayed in the chart."
label: "Livelli di zoom"
caption: "Seleziona il livello di zoom per le date visualizzate nel grafico."
options:
days: "Days"
weeks: "Weeks"
months: "Months"
quarters: "Quarters"
days: "Giorni"
weeks: "Settimane"
months: "Mesi"
quarters: "Trimestri"
column_width:
label: "Table column width"
label: "Larghezza della colonna della tabella"
options:
narrow: "Narrow"
medium: "Medium"
wide: "Wide"
very_wide: "Very wide"
narrow: "Stretta"
medium: "Media"
wide: "Ampia"
very_wide: "Molto ampia"
paper_size:
label: "Paper size"
caption: "Depending on the chart size more than one page might be exported."
label: "Dimensione del foglio"
caption: "A seconda delle dimensioni del diagramma, potrebbe essere esportata più di una pagina."
long_text_fields:
input_caption: "By default all long text fields are selected."
input_label: "Add long text fields"
input_placeholder: "Search for long text fields"
drag_area_label: "Manage long text fields"
input_caption: "Per impostazione predefinita, tutti i campi di testo lunghi sono selezionati."
input_label: "Aggiungi campi di testo lunghi"
input_placeholder: "Cerca campi di testo lunghi"
drag_area_label: "Gestisci campi di testo lunghi"
xls:
include_relations:
label: "Include relations"
caption: "This option will create a duplicate of each work package for every relation this has with another work package."
label: "Includi relazioni"
caption: "Questa opzione creerà un duplicato di ogni macro-attività per ogni relazione che ha con un'altra macro-attività."
include_descriptions:
label: "Include descriptions"
caption: "This option will add a description column in raw format."
your_work_packages_export: "Work packages are being exported"
succeeded: "Export completed"
failed: "An error has occurred while trying to export the work packages: %{message}"
label: "Includi descrizioni"
caption: "Questa opzione aggiungerà una colonna descrizione in formato grezzo."
your_work_packages_export: "Le macro-attività sono in fase di esportazione"
succeeded: "Esportazione completata"
failed: "Si è verificato un errore durante il tentativo di esportare le macro-attività: %{message}"
format:
atom: "Atom"
csv: "CSV"
@@ -2235,8 +2235,8 @@ it:
label_next_week: "Prossima settimana"
label_no_change_option: "(Nessuna modifica)"
label_no_data: "Nessun dato da visualizzare"
label_no_due_date: "no finish date"
label_no_start_date: "no start date"
label_no_due_date: "nessuna data di fine"
label_no_start_date: "nessuna data di inizio"
label_no_parent_page: "Nessuna pagina genitore"
label_nothing_display: "Niente da visualizzare"
label_nobody: "nessuno"
@@ -2361,8 +2361,8 @@ it:
label_role_plural: "Ruoli"
label_role_search: "Assegna ruolo ai nuovi membri"
label_scm: "SCM"
label_scroll_left: "Scroll left"
label_scroll_right: "Scroll right"
label_scroll_left: "Scorri a sinistra"
label_scroll_right: "Scorri a destra"
label_search: "Cerca"
label_search_by_name: "Cerca per nome"
label_send_information: "Invia nuove credenziali all'utente"
@@ -3120,9 +3120,9 @@ it:
setting_work_package_done_ratio_field: "Basato sul lavoro"
setting_work_package_done_ratio_status: "Basato sullo stato"
setting_work_package_done_ratio_explanation_pre_14_4_without_percent_complete_edition_html: >
In <b>work-based</b> mode, % Complete is calculated from how much work is done in relation to total work. In <b>status-based</b> mode, each status has a % Complete value associated with it. Changing status will change % Complete.
Nella modalità <b>basata sul lavoro</b>, la % completamento viene calcolata in base alla quantità di lavoro svolto rispetto al lavoro totale. Nella modalità <b>basata sullo stato</b>, a ogni stato è associato un valore di % completamento. La modifica dello stato cambierà la % completamento.
setting_work_package_done_ratio_explanation_html: >
In <b>work-based</b> mode, % Complete can be freely set to any value. If you optionally enter a value for Work, Remaining work will automatically be derived. In <b>status-based</b> mode, each status has a % Complete value associated with it. Changing status will change % Complete.
Nella modalità <b>basata sul lavoro</b>, la % completamento può assumere qualsiasi valore. Se inserisci facoltativamente un Lavoro, il Lavoro residuo verrà automaticamente calcolato. Nella modalità <b>basata sullo stato</b>, a ogni stato è associato un valore di % completamento. La modifica dello stato cambierà la % completamento.
setting_work_package_properties: "Proprietà della macro-attività"
setting_work_package_startdate_is_adddate: "Usa la data corrente come data di inizio per le nuove macro-attività"
setting_work_packages_projects_export_limit: "Limite di esportazione di macro-attività/progetti"
@@ -3505,26 +3505,26 @@ it:
progress:
label_note: "Nota:"
modal:
work_based_help_text: "Each field is automatically calculated from the two others when possible."
work_based_help_text_pre_14_4_without_percent_complete_edition: "% Complete is automatically derived from Work and Remaining work."
work_based_help_text: "Ogni campo viene calcolato automaticamente dagli altri due, quando possibile."
work_based_help_text_pre_14_4_without_percent_complete_edition: "La % completamento viene ricavata automaticamente dal Lavoro e dal Lavoro residuo."
status_based_help_text: "La % completamento è stabilita dallo stato della macro-attività."
migration_warning_text: "Nella modalità di calcolo basata sul lavoro, la % completamento non può essere impostata manualmente ed è legata al lavoro. Il valore esistente è stato mantenuto ma non può essere modificato. Specifica prima il lavoro."
derivation_hints:
done_ratio:
cleared_because_remaining_work_is_empty: "Cleared because Remaining work is empty."
cleared_because_work_is_0h: "Cleared because Work is 0h."
derived: "Derived from Work and Remaining work."
cleared_because_remaining_work_is_empty: "Azzerato perché il Lavoro residuo è vuoto."
cleared_because_work_is_0h: "Azzerato perché il Lavoro è 0h."
derived: "Derivato da Lavoro e Lavoro residuo."
estimated_hours:
cleared_because_remaining_work_is_empty: "Cleared because Remaining work is empty."
derived: "Derived from Remaining work and % Complete."
same_as_remaining_work: "Set to same value as Remaining work."
cleared_because_remaining_work_is_empty: "Azzerato perché il Lavoro residuo è vuoto."
derived: "Derivato da Lavoro residuo e da % completamento."
same_as_remaining_work: "Imposta lo stesso valore di Lavoro residuo."
remaining_hours:
cleared_because_work_is_empty: "Cleared because Work is empty."
cleared_because_percent_complete_is_empty: "Cleared because % Complete is empty."
decreased_like_work: "Decreased by the same amount as Work."
derived: "Derived from Work and % Complete."
increased_like_work: "Increased by the same amount as Work."
same_as_work: "Set to same value as Work."
cleared_because_work_is_empty: "Azzerato perché il Lavoro è vuoto."
cleared_because_percent_complete_is_empty: "Azzerato perché la % completamento è vuota."
decreased_like_work: "Diminuite della stessa quantità di Lavoro."
derived: "Derivato da Lavoro e da % completamento."
increased_like_work: "Aumentate della stessa quantità di Lavoro."
same_as_work: "Impostato allo stesso valore del Lavoro."
permissions:
comment: "Commentare"
comment_description: "Può visualizzare e commentare questa macro-attività."
+7 -7
View File
@@ -74,7 +74,7 @@ de:
button_copy: "Kopieren"
button_copy_to_clipboard: "In Zwischenablage kopieren"
button_copy_link_to_clipboard: "Link in Zwischenablage kopieren"
button_copy_to_other_project: "Duplicate in another project"
button_copy_to_other_project: "In anderes Projekt duplizieren"
button_custom-fields: "Benutzerdefinierte Felder"
button_delete: "Löschen"
button_delete_watcher: "Beobachter löschen"
@@ -138,8 +138,8 @@ de:
description_select_work_package: "Arbeitspaket #%{id} auswählen"
description_subwork_package: "Kind von Arbeitspaket #%{id}"
editor:
revisions: "Show local modifications"
no_revisions: "No local modifications found"
revisions: "Lokale Änderungen anzeigen"
no_revisions: "Keine lokalen Änderungen gefunden"
preview: "Vorschau-Modus ein/aus"
source_code: "Wechseln zwischen Markdown-Source und WYSIWYG"
error_saving_failed: "Fehler beim Speichern des Dokuments: %{error}"
@@ -360,7 +360,7 @@ de:
"14_5":
standard:
new_features_html: >
The release contains various new features and improvements, such as: <br> <ul class="%{list_styling_class}"> <li>Keep and restore local versions of WYSIWYG content changes.</li> <li>Enable a storage for multiple projects at once.</li> <li>Export work packages in an updated modal with additional settings.</li> <li>Display custom field columns/filters in project lists also in the Community Edition.</li> <li>Support CloudFlare Turnstile as Captcha.</li> </ul>
Die Version enthält verschiedene neue Funktionen und Verbesserungen, wie z.B.: <br> <ul class="%{list_styling_class}"> <li>Wiederherstellen lokaler Versionen von WYSIWYG-Inhaltsänderungen.</li> <li>Aktivieren Sie eine Speicherung für mehrere Projekte auf einmal.</li> <li>Exportieren Sie Arbeitspakete in einem aktualisierten Modal mit zusätzlichen Einstellungen.</li> <li>Anzeige von benutzerdefinierten Feldspalten & Filtern in Projektlisten auch in der Community Edition.</li> <li>Unterstützung von CloudFlare Turnstile als Captcha.</li> </ul>
ical_sharing_modal:
title: "Kalender abonnieren"
inital_setup_error_message: "Beim Abrufen der Daten ist ein Fehler aufgetreten."
@@ -401,7 +401,7 @@ de:
label_create: "Erstellen"
label_create_work_package: "Erstelle neues Arbeitspaket"
label_created_by: "Erstellt von"
label_current: "current"
label_current: "aktuell"
label_date: "Datum"
label_date_with_format: "Die %{date_attribute} im folgenden Format eingeben: %{format}"
label_deactivate: "Deaktiviere"
@@ -1187,8 +1187,8 @@ de:
other: "%{count} Tage"
zero: "0 Tage"
word:
one: "1 word"
other: "%{count} words"
one: "1 Wort"
other: "%{count} Wörter"
zen_mode:
button_activate: "Zen-Modus aktivieren"
button_deactivate: "Zen-Modus deaktivieren"
+3 -3
View File
@@ -74,7 +74,7 @@ fr:
button_copy: "Copier"
button_copy_to_clipboard: "Copier dans le presse-papier"
button_copy_link_to_clipboard: "Copier le lien dans le presse-papiers"
button_copy_to_other_project: "Duplicate in another project"
button_copy_to_other_project: "Dupliquer dans un autre projet"
button_custom-fields: "Champs personnalisés"
button_delete: "Supprimer"
button_delete_watcher: "Supprimer observateur"
@@ -361,7 +361,7 @@ fr:
"14_5":
standard:
new_features_html: >
The release contains various new features and improvements, such as: <br> <ul class="%{list_styling_class}"> <li>Keep and restore local versions of WYSIWYG content changes.</li> <li>Enable a storage for multiple projects at once.</li> <li>Export work packages in an updated modal with additional settings.</li> <li>Display custom field columns/filters in project lists also in the Community Edition.</li> <li>Support CloudFlare Turnstile as Captcha.</li> </ul>
Cette version contient plusieurs nouvelles fonctionnalités et améliorations, telles que <br> <ul class="%{list_styling_class}"> <li>Conservation et restauration des versions locales des changements de contenu WYSIWYG.</li> <li>Activation d'un stockage pour plusieurs projets à la fois.</li> <li>Exportation des lots de travaux dans une fenêtre modale mise à jour avec des paramètres supplémentaires.</li> <li>Affichage des colonnes/filtres de champs personnalisés dans les listes de projets, y compris dans l'édition Community.</li> <li>Prise en charge de Turnstile de CloudFlare comme Captcha.</li> </ul>
ical_sharing_modal:
title: "S'abonner au calendrier"
inital_setup_error_message: "Une erreur est survenue lors de la récupération des données."
@@ -1188,7 +1188,7 @@ fr:
other: "%{count} jours"
zero: "0 jour"
word:
one: "1 word"
one: "1 mot"
other: "%{count} mots"
zen_mode:
button_activate: "Activer le mode zen"
+11 -11
View File
@@ -66,7 +66,7 @@ it:
button_back_to_list_view: "Torna alla visualizzazione in lista"
button_cancel: "Annulla"
button_close: "Chiuso"
button_change_project: "Move to another project"
button_change_project: "Sposta su un altro progetto"
button_check_all: "Seleziona tutti"
button_configure-form: "Configura modulo"
button_confirm: "Conferma"
@@ -74,7 +74,7 @@ it:
button_copy: "Copia"
button_copy_to_clipboard: "Copia negli appunti"
button_copy_link_to_clipboard: "Copia link negli appunti"
button_copy_to_other_project: "Duplicate in another project"
button_copy_to_other_project: "Duplica in un altro progetto"
button_custom-fields: "Campo personalizzato"
button_delete: "Cancella"
button_delete_watcher: "Elimina osservatore"
@@ -138,8 +138,8 @@ it:
description_select_work_package: "Seleziona la macro-attività #%{id}"
description_subwork_package: "Subordinata alla macro-attività #%{id}"
editor:
revisions: "Show local modifications"
no_revisions: "No local modifications found"
revisions: "Mostra le modifiche locali"
no_revisions: "Nessuna modifica locale trovata"
preview: "Attiva/disattiva modalità anteprima"
source_code: "Attiva/Disattiva modalità origine Marcatura"
error_saving_failed: "Il salvataggio del documento è fallito con il seguente errore: %{error}"
@@ -279,9 +279,9 @@ it:
Vuoi davvero continuare?
work_packages_settings:
warning_progress_calculation_mode_change_from_status_to_field_pre_14_4_without_percent_complete_edition_html: >-
Changing progress calculation mode from status-based to work-based will make <i>% Complete</i> a non-editable field whose value is derived from <i>Work</i> and <i>Remaining work</i>. Existing values for <i>% Complete</i> are preserved. If values for <i>Work</i> and <i>Remaining work</i> were not present, they will be required in order to change <i>% Complete</i>.
La modifica della modalità di calcolo dei progressi da basata sullo stato a basata su lavoro renderà <i>% completamento</i> un campo non modificabile il cui valore è derivato da <i>Lavoro</i> e <i>Lavoro residuo</i>. I valori esistenti per <i>% completamento</i> sono conservati. Se i valori per <i>Lavoro</i> e <i>Lavoro residuo</i> non erano presenti, saranno necessari per modificare <i>% completamento</i>.
warning_progress_calculation_mode_change_from_status_to_field_html: >-
Changing progress calculation mode from status-based to work-based will make the <i>% Complete</i> field freely editable. If you optionally enter values for <i>Work</i> or <i>Remaining work</i>, they will also be linked to <i>% Complete</i>. Changing <i>Remaining work</i> can then update <i>% Complete</i>.
La modifica della modalità di calcolo dei progressi da basata sullo stato a basata sul lavoro renderà il campo <i>% completamento</i> liberamente modificabile. Se inserisci facoltativamente valori per <i>Lavoro</i> o <i>Lavoro residuo</i>, questi verranno collegati anche a <i>% completamento</i>. La modifica di <i>Lavoro residuo</i> può quindi aggiornare <i>% completamento</i>.
warning_progress_calculation_mode_change_from_field_to_status_html: >-
Cambiando la modalità di calcolo dell'avanzamento da basata sul lavoro a basata sullo stato porvocherà la perdita di tutti i valori <i>% Complete</i> esistenti e saranno sostituiti con i valori associati ad ogni stato. I valori esistenti per il lavoro <i>rimanente</i> potrebbero anche essere ricalcolati per riflettere questo cambiamento. Questa azione non è reversibile.
custom_actions:
@@ -361,7 +361,7 @@ it:
"14_5":
standard:
new_features_html: >
The release contains various new features and improvements, such as: <br> <ul class="%{list_styling_class}"> <li>Keep and restore local versions of WYSIWYG content changes.</li> <li>Enable a storage for multiple projects at once.</li> <li>Export work packages in an updated modal with additional settings.</li> <li>Display custom field columns/filters in project lists also in the Community Edition.</li> <li>Support CloudFlare Turnstile as Captcha.</li> </ul>
Questa versione include varie nuove funzionalità e miglioramenti, come: <br> <ul class="%{list_styling_class}"> <li>Conservazione e ripristino delle versioni locali delle modifiche ai contenuti WYSIWYG.</li> <li>Abilitazione di un archivio per più progetti contemporaneamente.</li> <li>Esportazione di macro-attività in una nuova modalità con impostazioni aggiuntive.</li> <li>Visualizzazione di colonne/filtri di campi personalizzati negli elenchi di progetti anche nella Community Edition.</li> <li>Supporto a CloudFlare Turnstile come Captcha.</li> </ul>
ical_sharing_modal:
title: "Iscriviti al calendario"
inital_setup_error_message: "Si è verificato un errore recuperando i dati."
@@ -402,7 +402,7 @@ it:
label_create: "Crea"
label_create_work_package: "Crea una nuova macro-attività"
label_created_by: "Creato da"
label_current: "current"
label_current: "attuale"
label_date: "Data"
label_date_with_format: "Immettere il %{date_attribute} utilizzando il seguente formato: %{format}"
label_deactivate: "Disattivare"
@@ -641,7 +641,7 @@ it:
with_current_filter: "Non ci sono notifiche in questa vista al momento"
mark_all_read: "Segna tutti come letti"
mark_as_read: "Segna come letto"
text_update_date_by: "%{date} by"
text_update_date_by: "%{date} da"
total_count_warning: "Mostrando le %{newest_count} notifiche più recenti. %{more_count} altre non vengono visualizzate."
empty_state:
no_notification: "Sembra che siate tutti coinvolti."
@@ -1188,8 +1188,8 @@ it:
other: "%{count} giorni"
zero: "0 giorni"
word:
one: "1 word"
other: "%{count} words"
one: "1 parola"
other: "%{count} parole"
zen_mode:
button_activate: "Attiva modalità zen"
button_deactivate: "Disattiva modalità zen"
+10 -10
View File
@@ -66,7 +66,7 @@ ko:
button_back_to_list_view: "목록으로 돌아가기"
button_cancel: "취소"
button_close: "닫기"
button_change_project: "Move to another project"
button_change_project: "다른 프로젝트로 이동"
button_check_all: "모두 선택"
button_configure-form: "구성 양식"
button_confirm: "확인"
@@ -74,7 +74,7 @@ ko:
button_copy: "복사"
button_copy_to_clipboard: "클립보드 복사"
button_copy_link_to_clipboard: "클립보드에 링크 복사"
button_copy_to_other_project: "Duplicate in another project"
button_copy_to_other_project: "다른 프로젝트에 복제"
button_custom-fields: "사용자 정의 필드"
button_delete: "삭제"
button_delete_watcher: "주시자 삭제"
@@ -138,8 +138,8 @@ ko:
description_select_work_package: "작업 패키지 #%{id} 선택"
description_subwork_package: "작업 패키지 #%{id}의 자식"
editor:
revisions: "Show local modifications"
no_revisions: "No local modifications found"
revisions: "로컬 수정 사항 표시"
no_revisions: "로컬 수정 사항 찾지 못함"
preview: "미리 보기 모드 토글"
source_code: "Markdown 소스 모드 토글"
error_saving_failed: "다음 오류로 인해 문서를 저장하지 못했습니다: %{error}"
@@ -279,9 +279,9 @@ ko:
계속하시겠습니까?
work_packages_settings:
warning_progress_calculation_mode_change_from_status_to_field_pre_14_4_without_percent_complete_edition_html: >-
Changing progress calculation mode from status-based to work-based will make <i>% Complete</i> a non-editable field whose value is derived from <i>Work</i> and <i>Remaining work</i>. Existing values for <i>% Complete</i> are preserved. If values for <i>Work</i> and <i>Remaining work</i> were not present, they will be required in order to change <i>% Complete</i>.
진행률 계산 모드를 상태 기반에서 작업 기반으로 변경하면 <i>완료 %</i>가 편집할 수 없는 필드가 되며 해당 값은 <i>작업</i> <i>남은 작업</i>에서 파생됩니다. <i>완료 %</i>의 기존 값은 유지됩니다. <i>작업</i> <i>남은 작업</i>의 값이 없는 경우, <i>완료 %</i>를 변경하려면 해당 값이 필요합니다.
warning_progress_calculation_mode_change_from_status_to_field_html: >-
Changing progress calculation mode from status-based to work-based will make the <i>% Complete</i> field freely editable. If you optionally enter values for <i>Work</i> or <i>Remaining work</i>, they will also be linked to <i>% Complete</i>. Changing <i>Remaining work</i> can then update <i>% Complete</i>.
진행률 계산 모드를 상태 기반에서 작업 기반으로 변경하면 <i>완료 %</i> 필드를 자유롭게 편집할 수 있습니다. 선택적으로 <i>작업</i> 또는 <i>남은 작업</i>에 대한 값을 입력하면 해당 값도 <i>완료 %</i>에 링크됩니다. <i>남은 작업</i>을 변경하면 <i>완료 %</i>가 업데이트될 수 있습니다.
warning_progress_calculation_mode_change_from_field_to_status_html: >-
진행률 계산 모드를 작업 기반에서 상태 기반으로 변경하면 기존의 모든 <i>완료 %</i> 값이 손실되고 각 상태와 관련된 값으로 대체됩니다. <i>남은 작업</i>의 기존 값도 이 변경 사항을 반영하기 위해 다시 계산될 수 있습니다. 이 작업은 되돌릴 수 없습니다.
custom_actions:
@@ -361,7 +361,7 @@ ko:
"14_5":
standard:
new_features_html: >
The release contains various new features and improvements, such as: <br> <ul class="%{list_styling_class}"> <li>Keep and restore local versions of WYSIWYG content changes.</li> <li>Enable a storage for multiple projects at once.</li> <li>Export work packages in an updated modal with additional settings.</li> <li>Display custom field columns/filters in project lists also in the Community Edition.</li> <li>Support CloudFlare Turnstile as Captcha.</li> </ul>
이 릴리스에는 다음과 같은 다양한 새로운 기능과 개선 사항이 포함되어 있습니다: <br> <ul class="%{list_styling_class}"> <li>로컬 버전의 WYSIWYG 콘텐츠 변경 사항을 유지하고 복원합니다.</li> <li>한 번에 여러 프로젝트의 저장소를 활성화합니다.</li> <li>추가 설정이 포함된 업데이트된 모달로 작업 패키지를 내보냅니다.</li> <li>Community Edition에서도 프로젝트 목록에 사용자 지정 필드 열/필터를 표시합니다.</li> <li>캡차로 CloudFlare Turnstile을 지원합니다.</li> </ul>
ical_sharing_modal:
title: "캘린더 구독"
inital_setup_error_message: "데이터를 가져오는 중에 오류가 발생했습니다."
@@ -402,7 +402,7 @@ ko:
label_create: "만들기"
label_create_work_package: "새 작업 패키지 만들기"
label_created_by: "작성자"
label_current: "current"
label_current: "현재"
label_date: "날짜"
label_date_with_format: "%{date_attribute} 는 %{format} 과 같이 입력되어야 합니다."
label_deactivate: "비활성화"
@@ -640,7 +640,7 @@ ko:
with_current_filter: "현재 이 보기에는 알림이 없습니다."
mark_all_read: "모두 읽은 상태로 표시"
mark_as_read: "읽음으로 표시"
text_update_date_by: "%{date} by"
text_update_date_by: "%{date} -"
total_count_warning: "%{newest_count} 개의 가장 최근 알림을 표시합니다. %{more_count} 개의 알림은 표시되지 않습니다."
empty_state:
no_notification: "모두 확인하신 것 같습니다."
@@ -1185,7 +1185,7 @@ ko:
other: "%{count}일"
zero: "0일"
word:
other: "%{count} words"
other: "단어 %{count}"
zen_mode:
button_activate: "Zen 모드 활성화"
button_deactivate: "Zen 모드 비활성화"
+13 -13
View File
@@ -66,7 +66,7 @@ pl:
button_back_to_list_view: "Wróć do widoku listy"
button_cancel: "Anuluj"
button_close: "Zamknij"
button_change_project: "Move to another project"
button_change_project: "Przenieś do innego projektu"
button_check_all: "Zaznacz wszystko"
button_configure-form: "Skonfiguruj formularz"
button_confirm: "Potwierdź"
@@ -74,7 +74,7 @@ pl:
button_copy: "Kopiuj"
button_copy_to_clipboard: "Skopiuj do schowka"
button_copy_link_to_clipboard: "Kopiuj link do schowka"
button_copy_to_other_project: "Duplicate in another project"
button_copy_to_other_project: "Zduplikuj w innym projekcie"
button_custom-fields: "Pola niestandardowe"
button_delete: "Usuń"
button_delete_watcher: "Usuń obserwatora"
@@ -138,8 +138,8 @@ pl:
description_select_work_package: "Zaznacz zestaw Zadań #%{id}"
description_subwork_package: "Otwórz zadanie-dziecko #%{id}"
editor:
revisions: "Show local modifications"
no_revisions: "No local modifications found"
revisions: "Pokaż lokalne modyfikacje"
no_revisions: "Nie znaleziono żadnych lokalnych modyfikacji"
preview: "Przełącz tryb podglądu"
source_code: "Przełącz tryb źródła Markdown"
error_saving_failed: "Zapisywanie dokumentu nie powiodło się, błąd: %{error}"
@@ -279,9 +279,9 @@ pl:
Czy na pewno chcesz kontynuować?
work_packages_settings:
warning_progress_calculation_mode_change_from_status_to_field_pre_14_4_without_percent_complete_edition_html: >-
Changing progress calculation mode from status-based to work-based will make <i>% Complete</i> a non-editable field whose value is derived from <i>Work</i> and <i>Remaining work</i>. Existing values for <i>% Complete</i> are preserved. If values for <i>Work</i> and <i>Remaining work</i> were not present, they will be required in order to change <i>% Complete</i>.
Zmiana trybu obliczania postępu z opartego na statusie na oparty na pracy sprawi, że atrybut <i>% ukończenia</i> będzie nieedytowalnym polem, którego wartość pochodzi z atrybutów <i>Praca</i> i <i>Pozostała praca</i>. Istniejące wartości atrybutu <i>% ukończenia</i> zostaną zachowane. Jeśli wartości atrybutów <i>Praca</i> i <i>Pozostała praca</i> nie były obecne, będą one wymagane w celu zmiany wartości <i>% ukończenia</i>.
warning_progress_calculation_mode_change_from_status_to_field_html: >-
Changing progress calculation mode from status-based to work-based will make the <i>% Complete</i> field freely editable. If you optionally enter values for <i>Work</i> or <i>Remaining work</i>, they will also be linked to <i>% Complete</i>. Changing <i>Remaining work</i> can then update <i>% Complete</i>.
Zmiana trybu obliczania postępu z opartego na statusie na oparty na pracy spowoduje, że pole <i>% ukończenia</i> będzie można dowolnie edytować. Jeśli opcjonalnie wprowadzisz wartości <i>Praca</i> lub <i>Pozostała praca</i>, zostaną one również powiązane z wartością <i>% ukończenia</i>. Zmiana wartości <i>Pozostała praca</i> może wówczas skutkować zaktualizowaniem wartości <i>% ukończenia</i>.
warning_progress_calculation_mode_change_from_field_to_status_html: >-
Zmiana trybu obliczania postępu z opartego na pracy na oparty na statusie spowoduje, że wszystkie istniejące wartości <i>% ukończenia</i> zostaną utracone i zastąpione wartościami powiązanymi z poszczególnymi statusami. Istniejące wartości <i>Pozostała praca</i> mogą również zostać obliczone ponownie w celu odzwierciedlenia tej zmiany. Działanie to jest nieodwracalne.
custom_actions:
@@ -361,7 +361,7 @@ pl:
"14_5":
standard:
new_features_html: >
The release contains various new features and improvements, such as: <br> <ul class="%{list_styling_class}"> <li>Keep and restore local versions of WYSIWYG content changes.</li> <li>Enable a storage for multiple projects at once.</li> <li>Export work packages in an updated modal with additional settings.</li> <li>Display custom field columns/filters in project lists also in the Community Edition.</li> <li>Support CloudFlare Turnstile as Captcha.</li> </ul>
Wersja zawiera różne nowe funkcje i ulepszenia, takie jak: <br> <ul class="%{list_styling_class}"> <li>Zachowywanie i przywracanie lokalnych wersji zmian zawartości WYSIWYG.</li> <li>Włączanie magazynu dla wielu projektów naraz.</li> <li>Eksport pakietów roboczych w zaktualizowanym modalu z dodatkowymi ustawieniami.</li> <li>Wyświetlanie niestandardowych kolumny/filtrów pól na listach projektów również w wersji Community.</li> <li>Obsługa CloudFlare Turnstile jako mechanizmu Captcha.</li> </ul>
ical_sharing_modal:
title: "Subskrybuj kalendarz"
inital_setup_error_message: "Podczas pobierania danych wystąpił błąd."
@@ -402,7 +402,7 @@ pl:
label_create: "Utwórz"
label_create_work_package: "Utwórz nowy pakiet roboczy"
label_created_by: "Utworzony przez"
label_current: "current"
label_current: "bieżący"
label_date: "Data"
label_date_with_format: "Wprowadź %{date_attribute} w następującym formacie: %{format}"
label_deactivate: "Wyłącz"
@@ -643,7 +643,7 @@ pl:
with_current_filter: "Obecnie brak powiadomień w tym widoku"
mark_all_read: "Oznacz wszystko jako przeczytane"
mark_as_read: "Oznacz jako przeczytane"
text_update_date_by: "%{date} by"
text_update_date_by: "%{date} przez"
total_count_warning: "Wyświetlono najnowsze powiadomienia: %{newest_count}. Nie wyświetlono %{more_count}."
empty_state:
no_notification: "Wygląda na to, że jesteś już na bieżąco."
@@ -1194,10 +1194,10 @@ pl:
other: "%{count} dni"
zero: "0 dni"
word:
one: "1 word"
few: "%{count} words"
many: "%{count} words"
other: "%{count} words"
one: "1 słowo"
few: "%{count} słowa"
many: "%{count} słów"
other: "%{count} słowa"
zen_mode:
button_activate: "Włącz tryb zen"
button_deactivate: "Wyłącz tryb zen"
+11 -11
View File
@@ -66,7 +66,7 @@ pt-BR:
button_back_to_list_view: "Voltar à lista"
button_cancel: "Cancelar"
button_close: "Fechar"
button_change_project: "Move to another project"
button_change_project: "Mover para outro projeto"
button_check_all: "Marcar todos"
button_configure-form: "Configurar formulário"
button_confirm: "Confirmar"
@@ -74,7 +74,7 @@ pt-BR:
button_copy: "Copiar"
button_copy_to_clipboard: "Copiar para a área de transferência"
button_copy_link_to_clipboard: "Copiar link para área de transferência"
button_copy_to_other_project: "Duplicate in another project"
button_copy_to_other_project: "Duplicar em outro projeto"
button_custom-fields: "Campos personalizados"
button_delete: "Excluir"
button_delete_watcher: "Excluir observador"
@@ -138,8 +138,8 @@ pt-BR:
description_select_work_package: "Selecionar o pacote de trabalho #%{id}"
description_subwork_package: "Filho do pacote de trabalho #%{id}"
editor:
revisions: "Show local modifications"
no_revisions: "No local modifications found"
revisions: "Exibir modificações locais"
no_revisions: "Nenhuma modificação local encontrada"
preview: "Alternar modo de visualização"
source_code: "Alternar para código Markdown"
error_saving_failed: "Não foi possível salvar o documento pelo seguinte erro: %{error}"
@@ -278,9 +278,9 @@ pt-BR:
Tem a certeza de que deseja continuar?
work_packages_settings:
warning_progress_calculation_mode_change_from_status_to_field_pre_14_4_without_percent_complete_edition_html: >-
Changing progress calculation mode from status-based to work-based will make <i>% Complete</i> a non-editable field whose value is derived from <i>Work</i> and <i>Remaining work</i>. Existing values for <i>% Complete</i> are preserved. If values for <i>Work</i> and <i>Remaining work</i> were not present, they will be required in order to change <i>% Complete</i>.
Alterar o modo de cálculo do progresso de "baseado em status" para "baseado em trabalho" tornará o campo <i>% de conclusão</i> não editável, com seu valor derivado de <i>Trabalho</i> e <i>Trabalho Restante</i>. Os valores existentes de <i>% de conclusão</i> serão preservados. Se os valores de <i>Trabalho</i> e <i>Trabalho Restante</i> não estiverem presentes, eles serão necessários para modificar a <i>% de conclusão</i>.
warning_progress_calculation_mode_change_from_status_to_field_html: >-
Changing progress calculation mode from status-based to work-based will make the <i>% Complete</i> field freely editable. If you optionally enter values for <i>Work</i> or <i>Remaining work</i>, they will also be linked to <i>% Complete</i>. Changing <i>Remaining work</i> can then update <i>% Complete</i>.
Alterar o modo de cálculo de progresso de baseado em status para baseado em trabalho tornará o campo <i>% de conclusão</i> editável livremente. Se você optar por inserir valores para <i>Trabalho</i> ou <i>Trabalho restante</i>, eles também estarão vinculados ao <i>% de conclusão</i>. Alterar <i>Trabalho restante</i> pode, então, atualizar <i>% de conclusão</i>.
warning_progress_calculation_mode_change_from_field_to_status_html: >-
Alterar o modo de cálculo do progresso de "baseado em trabalho" para "baseado em status" resultará na perda de todos os valores existentes de <i>% de conclusão</i>, que serão substituídos pelos valores associados a cada status. Os valores existentes de <i>Trabalho restante</i> também podem ser recalculados para refletir essa mudança. Essa ação é irreversível.
custom_actions:
@@ -360,7 +360,7 @@ pt-BR:
"14_5":
standard:
new_features_html: >
The release contains various new features and improvements, such as: <br> <ul class="%{list_styling_class}"> <li>Keep and restore local versions of WYSIWYG content changes.</li> <li>Enable a storage for multiple projects at once.</li> <li>Export work packages in an updated modal with additional settings.</li> <li>Display custom field columns/filters in project lists also in the Community Edition.</li> <li>Support CloudFlare Turnstile as Captcha.</li> </ul>
A versão inclui várias novas funcionalidades e melhorias, como: <br> <ul class="%{list_styling_class}"> <li>Manter e restaurar versões locais das alterações de conteúdo WYSIWYG.</li> <li>Habilitar o armazenamento para múltiplos projetos simultaneamente.</li> <li>Exportar pacotes de trabalho em um modal atualizado com configurações adicionais.</li> <li>Exibir colunas e filtros de campos personalizados nas listas de projetos também na Edição Comunitária.</li> <li>Suporte ao CloudFlare Turnstile como Captcha.</li> </ul>
ical_sharing_modal:
title: "Assinar calendário"
inital_setup_error_message: "Ocorreu um erro ao buscar dados."
@@ -401,7 +401,7 @@ pt-BR:
label_create: "Criar"
label_create_work_package: "Criar novo pacote de trabalho"
label_created_by: "Criado por"
label_current: "current"
label_current: "atual"
label_date: "Data"
label_date_with_format: "Insira a %{date_attribute} usando o seguinte formato: %{format}"
label_deactivate: "Desativado"
@@ -640,7 +640,7 @@ pt-BR:
with_current_filter: "Não há notificações nesta visualização no momento"
mark_all_read: "Marcar tudo como lido"
mark_as_read: "Marcar como lido"
text_update_date_by: "%{date} by"
text_update_date_by: "%{date} por"
total_count_warning: "Mostrando as %{newest_count} notificações mais recentes. Outras %{more_count} não são exibidas."
empty_state:
no_notification: "Parece que você já está com tudo em dia."
@@ -1187,8 +1187,8 @@ pt-BR:
other: "%{count} dias"
zero: "0 dias"
word:
one: "1 word"
other: "%{count} words"
one: "1 palavra"
other: "%{count} palavras"
zen_mode:
button_activate: "Ativar modo zen"
button_deactivate: "Desativar modo zen"
+11 -11
View File
@@ -66,7 +66,7 @@ pt-PT:
button_back_to_list_view: "Voltar à visualização de lista"
button_cancel: "Cancelar"
button_close: "Fechar"
button_change_project: "Move to another project"
button_change_project: "Mover para outro projeto"
button_check_all: "Seleccionar Todos"
button_configure-form: "Configurar formulário"
button_confirm: "Confirmar"
@@ -74,7 +74,7 @@ pt-PT:
button_copy: "Copiar"
button_copy_to_clipboard: "Copiar para a Área de transferência"
button_copy_link_to_clipboard: "Copiar link para a área de transferência"
button_copy_to_other_project: "Duplicate in another project"
button_copy_to_other_project: "Duplicar noutro projeto"
button_custom-fields: "Campos personalizados"
button_delete: "Eliminar"
button_delete_watcher: "Eliminar observador"
@@ -138,8 +138,8 @@ pt-PT:
description_select_work_package: "Selecionar pacote de trabalho #%{id}"
description_subwork_package: "Filho de pacote de trabalho #%{id}"
editor:
revisions: "Show local modifications"
no_revisions: "No local modifications found"
revisions: "Mostrar modificações locais"
no_revisions: "Não foram encontradas modificações locais"
preview: "Alternar modo de pré-visualização"
source_code: "Alternar modo de fonte do Markdown"
error_saving_failed: "Ao guardar o documento ocorreu o seguinte erro: %{error}"
@@ -279,9 +279,9 @@ pt-PT:
Tem a certeza de que quer continuar?
work_packages_settings:
warning_progress_calculation_mode_change_from_status_to_field_pre_14_4_without_percent_complete_edition_html: >-
Changing progress calculation mode from status-based to work-based will make <i>% Complete</i> a non-editable field whose value is derived from <i>Work</i> and <i>Remaining work</i>. Existing values for <i>% Complete</i> are preserved. If values for <i>Work</i> and <i>Remaining work</i> were not present, they will be required in order to change <i>% Complete</i>.
Alterar o modo de cálculo do progresso de "baseado no estado" para "baseado no trabalho" fará com que a <i>% de conclusão</i> seja um campo não editável cujo valor é derivado de <i>Trabalho</i> e <i>Trabalho restante</i>. Os valores existentes para a <i>% de conclusão</i> são preservados. Se os valores para <i>Trabalho</i> e <i>Trabalho restante</i> não estiverem presentes, eles serão necessários para alterar a <i>% de conclusão</i>.
warning_progress_calculation_mode_change_from_status_to_field_html: >-
Changing progress calculation mode from status-based to work-based will make the <i>% Complete</i> field freely editable. If you optionally enter values for <i>Work</i> or <i>Remaining work</i>, they will also be linked to <i>% Complete</i>. Changing <i>Remaining work</i> can then update <i>% Complete</i>.
Se alterar o modo de cálculo do progresso de baseado no estado para baseado no trabalho, o campo <i>% de conclusão</i> poderá ser editado livremente. Se, opcionalmente, introduzir valores para <i>Trabalho</i> ou <i>Trabalho restante</i>, estes também serão associado a <i>% de conclusão</i>. Se alterar o <i>Trabalho restante</i>, pode atualizar a <i>% de conclusão</i>.
warning_progress_calculation_mode_change_from_field_to_status_html: >-
Se alterar o modo de cálculo do progresso de "baseado no trabalho" para "baseado no estado", todos os valores <i>% Completo</i> existentes serão perdidos e substituídos por valores associados a cada estado. Os valores existentes para <i>Trabalho restante</i> também podem ser recalculados para refletir esta alteração. Esta ação não é reversível.
custom_actions:
@@ -361,7 +361,7 @@ pt-PT:
"14_5":
standard:
new_features_html: >
The release contains various new features and improvements, such as: <br> <ul class="%{list_styling_class}"> <li>Keep and restore local versions of WYSIWYG content changes.</li> <li>Enable a storage for multiple projects at once.</li> <li>Export work packages in an updated modal with additional settings.</li> <li>Display custom field columns/filters in project lists also in the Community Edition.</li> <li>Support CloudFlare Turnstile as Captcha.</li> </ul>
A versão contém várias funcionalidades novas e melhorias, tais como: <br> <ul class="%{list_styling_class}"> <li>Manter e restaurar versões locais de alterações de conteúdo WYSIWYG.</li> <li>Permitir o armazenamento de vários projetos de uma só vez.</li> <li>Exportar pacotes de trabalho num modal atualizado com definições adicionais.</li> <li>Exibir colunas/filtros de campos personalizados em listas de projetos também na Community Edition.</li> <li>Oferecer suporte ao CloudFlare Turnstile como Captcha.</li> </ul>
ical_sharing_modal:
title: "Subscrever o calendário"
inital_setup_error_message: "Ocorreu um erro ao recuperar os dados."
@@ -402,7 +402,7 @@ pt-PT:
label_create: "Criar"
label_create_work_package: "Criar nova tarefa"
label_created_by: "Criado por"
label_current: "current"
label_current: "atual"
label_date: "Data"
label_date_with_format: "Digite o %{date_attribute} usando o seguinte formato: %{format}"
label_deactivate: "Desativar"
@@ -641,7 +641,7 @@ pt-PT:
with_current_filter: "Não há notificações nesta visualização neste momento"
mark_all_read: "Marcar tudo como lido"
mark_as_read: "Marcar como lida"
text_update_date_by: "%{date} by"
text_update_date_by: "%{date} por"
total_count_warning: "A mostrar as %{newest_count} notificações mais recentes. Mas %{more_count} não estão visíveis."
empty_state:
no_notification: "Parece que tem tudo em dia."
@@ -1188,8 +1188,8 @@ pt-PT:
other: "%{count} dias"
zero: "0 dias"
word:
one: "1 word"
other: "%{count} words"
one: "1 palavra"
other: "%{count} palavras"
zen_mode:
button_activate: "Ativar modo zen"
button_deactivate: "Desativar modo zen"
+1 -1
View File
@@ -360,7 +360,7 @@ ru:
"14_5":
standard:
new_features_html: >
The release contains various new features and improvements, such as: <br> <ul class="%{list_styling_class}"> <li>Keep and restore local versions of WYSIWYG content changes.</li> <li>Enable a storage for multiple projects at once.</li> <li>Export work packages in an updated modal with additional settings.</li> <li>Display custom field columns/filters in project lists also in the Community Edition.</li> <li>Support CloudFlare Turnstile as Captcha.</li> </ul>
Этот выпуск содержит различные новые функции и улучшения, такие как: <br> <ul class="%{list_styling_class}"> <li>Сохранение и восстановление локальных версий изменений содержимого WYSIWYG.</li> <li>Включение хранилища для нескольких проектов одновременно.</li> <li>Экспорт пакетов работ в обновленном модальном окне с дополнительными настройками.</li> <li>Отображение столбцов/фильтров настраиваемых полей в списках проектов.</li> <li>Поддержка CloudFlare Turnstile в качестве Captcha.</li> </ul>
ical_sharing_modal:
title: "Подписаться на календарь"
inital_setup_error_message: "Произошла ошибка при получении данных."
+13 -13
View File
@@ -66,7 +66,7 @@ uk:
button_back_to_list_view: "Повернутися до списку"
button_cancel: "Скасувати"
button_close: "Закрити"
button_change_project: "Move to another project"
button_change_project: "Перейти до іншого проєкту"
button_check_all: "Перевірити все"
button_configure-form: "Налаштуйте форму"
button_confirm: "Підтвердити"
@@ -74,7 +74,7 @@ uk:
button_copy: "Копіювати"
button_copy_to_clipboard: "Копіювати в буфер обміну"
button_copy_link_to_clipboard: "Копіювати посилання в буфер обміну"
button_copy_to_other_project: "Duplicate in another project"
button_copy_to_other_project: "Копіювати в інший проєкт"
button_custom-fields: "Індивідуальні поля"
button_delete: "Видалити"
button_delete_watcher: "Видалити спостерігача"
@@ -138,8 +138,8 @@ uk:
description_select_work_package: "Виберіть пакет робіт #%{id}"
description_subwork_package: "Нащадок пакету робіт #%{id}"
editor:
revisions: "Show local modifications"
no_revisions: "No local modifications found"
revisions: "Показати локальні зміни"
no_revisions: "Локальних змін не знайдено"
preview: "Перемкнути режим попереднього перегляду"
source_code: "Увімкнути режим вимкнення Markdown"
error_saving_failed: "Не вдалося зберегти документ із такою помилкою: %{error}"
@@ -279,9 +279,9 @@ uk:
Продовжити?
work_packages_settings:
warning_progress_calculation_mode_change_from_status_to_field_pre_14_4_without_percent_complete_edition_html: >-
Changing progress calculation mode from status-based to work-based will make <i>% Complete</i> a non-editable field whose value is derived from <i>Work</i> and <i>Remaining work</i>. Existing values for <i>% Complete</i> are preserved. If values for <i>Work</i> and <i>Remaining work</i> were not present, they will be required in order to change <i>% Complete</i>.
Якщо перейти з режиму обчислення прогресу на основі статусу на режим на основі роботи, атрибут <i>% завершення</i> стане недоступним для редагування полем, значення якого виводитиметься зі значень атрибутів <i>Робота</i> й <i>Залишок роботи</i>. Наявні значення атрибута <i>% завершення</i> буде збережено. Якщо значення атрибутів <i>Робота</i> й <i>Залишок роботи</i> не задано, їх потрібно буде задати, щоб змінити значення атрибута <i>% завершення</i>.
warning_progress_calculation_mode_change_from_status_to_field_html: >-
Changing progress calculation mode from status-based to work-based will make the <i>% Complete</i> field freely editable. If you optionally enter values for <i>Work</i> or <i>Remaining work</i>, they will also be linked to <i>% Complete</i>. Changing <i>Remaining work</i> can then update <i>% Complete</i>.
Якщо перейти з режиму обчислення прогресу на основі статусу на режим на основі роботи, атрибут <i>% завершення</i> стане доступним для редагування полем. Якщо визначено атрибути <i>Робота</i> й <i>Залишок роботи</i>, їх значення буде також пов’язано з атрибутом <i>% завершення</i>. Змінення значення атрибута <i>Залишок роботи</i> призводить до оновлення атрибута <i>% завершення</i>.
warning_progress_calculation_mode_change_from_field_to_status_html: >-
Якщо перейти з режиму обчислення прогресу на основі робіт на режим на основі статусу, усі наявні значення атрибута <i>% завершення</i> буде втрачено й замінено значеннями, пов’язаними з кожним статусом. Наявні значення атрибута <i>Залишок роботи</i> може бути також переобчислено з урахуванням цієї зміни. Цю дію не можна скасувати.
custom_actions:
@@ -361,7 +361,7 @@ uk:
"14_5":
standard:
new_features_html: >
The release contains various new features and improvements, such as: <br> <ul class="%{list_styling_class}"> <li>Keep and restore local versions of WYSIWYG content changes.</li> <li>Enable a storage for multiple projects at once.</li> <li>Export work packages in an updated modal with additional settings.</li> <li>Display custom field columns/filters in project lists also in the Community Edition.</li> <li>Support CloudFlare Turnstile as Captcha.</li> </ul>
Випуск включає такі наведені нижче функції і поліпшення. <br> <ul class="%{list_styling_class}"> <li>Зберігайте й відновлюйте локальні версії змін вмісту WYSIWYG.</li> <li>Вмикайте сховище для кількох проєктів за раз.</li> <li>Експортуйте пакети робіт в оновлено модальному вікні з додатковими параметрами.</li> <li>Відображайте стовпці / фільтри користувацьких полів у списках проєктів у версії Community Edition.</li> <li>Використовуйте CloudFlare Turnstile для перевірки CAPTCHA.</li> </ul>
ical_sharing_modal:
title: "Підписатися на календар"
inital_setup_error_message: "Під час отримання даних сталася помилка."
@@ -402,7 +402,7 @@ uk:
label_create: "Створити"
label_create_work_package: "Створити новий робочий пакет"
label_created_by: "Створено"
label_current: "current"
label_current: "поточний"
label_date: "Дата"
label_date_with_format: "Введіть %{date_attribute}, використовуючи наступний формат: %{format}"
label_deactivate: "Деактивувати"
@@ -643,7 +643,7 @@ uk:
with_current_filter: "Зараз у цьому поданні немає сповіщень"
mark_all_read: "Позначити все як прочитане"
mark_as_read: "Позначити як прочитане"
text_update_date_by: "%{date} by"
text_update_date_by: "%{date} за"
total_count_warning: "Показано стільки останніх сповіщень: %{newest_count}. Ще %{more_count} не показано."
empty_state:
no_notification: "Схоже, ви все переглянули."
@@ -1194,10 +1194,10 @@ uk:
other: "%{count} д."
zero: "0 днів"
word:
one: "1 word"
few: "%{count} words"
many: "%{count} words"
other: "%{count} words"
one: "1 слово"
few: "%{count} слова"
many: "%{count} слів"
other: "%{count} слова"
zen_mode:
button_activate: "Активуйте режим дзен"
button_deactivate: "Деактивуйте режим дзен"
+1 -1
View File
@@ -360,7 +360,7 @@ zh-CN:
"14_5":
standard:
new_features_html: >
The release contains various new features and improvements, such as: <br> <ul class="%{list_styling_class}"> <li>Keep and restore local versions of WYSIWYG content changes.</li> <li>Enable a storage for multiple projects at once.</li> <li>Export work packages in an updated modal with additional settings.</li> <li>Display custom field columns/filters in project lists also in the Community Edition.</li> <li>Support CloudFlare Turnstile as Captcha.</li> </ul>
该版本包含各种新功能和改进,例如 <br> <ul class="%{list_styling_class}"> <li>编辑器保留和恢复所见即所得内容更改的本地版本。</li> <li>同时打开多个项目的文件存储。</li> <li>更新了导出工作包的模态对话框,并提供更多设置。</li> <li>在社区版的项目列表中显示自定义字段列/过滤器。</li> <li>支持 CloudFlare Turnstile 验证码。</li> </ul>
ical_sharing_modal:
title: "订阅日历"
inital_setup_error_message: "获取数据时发生错误。"
+81 -81
View File
@@ -212,12 +212,12 @@ ko:
reorder_confirmation: "경고: 사용 가능한 값의 현재 순서가 손실됩니다. 계속하시겠습니까?"
instructions:
is_required: "사용자 지정 필드를 필수로 표시합니다. 이렇게 하면 새 리소스를 생성하거나 기존 리소스를 업데이트할 때 이 필드를 반드시 입력해야 합니다."
is_required_for_project: "Check to enable this attribute and make it required in all projects. It cannot be deactived for individual projects."
is_required_for_project: "이 특성을 활성화하려면 선택하고 모든 프로젝트에서 필수로 지정하세요. 개별 프로젝트에 대해 비활성화할 수는 없습니다."
is_for_all: "모든 기존 프로젝트와 새 프로젝트에서 사용자 지정 필드를 사용 가능으로 표시합니다."
searchable: "글로벌 검색 기능을 사용할 때 필드 값을 포함합니다."
searchable_for_project: "Check to make this attribute available as a filter in project lists."
searchable_for_project: "프로젝트 목록에서 이 특성을 필터로 사용 가능하게 설정하려면 선택하세요."
editable: "사용자가 필드를 편집할 수 있도록 허용합니다."
admin_only: "Check to make this attribute only visible to administrators. Users without admin rights will not be able to view or edit it."
admin_only: "이 특성을 관리자에게만 표시하려면 선택하세요. 관리자 권한이 없는 사용자는 이 특성을 보거나 편집할 수 없습니다."
is_filter: >
작업 패키지 보기의 필터에서 사용자 지정 필드를 사용할 수 있도록 허용합니다. '모든 프로젝트용'을 선택한 경우에만 사용자 지정 필드가 글로벌 보기에 표시됩니다.
tab:
@@ -265,8 +265,8 @@ ko:
no_results_title_text: 프로젝트가 없습니다.
no_results_content_text: 새 프로젝트 생성
search:
label: Project name filter
placeholder: Search by project name
label: 프로젝트 이름 필터
placeholder: 프로젝트 이름으로 검색
lists:
active: "활성 프로젝트"
my: "내 프로젝트"
@@ -300,7 +300,7 @@ ko:
actions:
label_enable_single: "이 프로젝트에서 활성화되어 있습니다. 비활성화하려면 클릭하세요."
label_disable_single: "이 프로젝트에서 비활성화되어 있습니다. 활성화하려면 클릭하세요."
remove_from_project: "Remove from project"
remove_from_project: "프로젝트에서 제거"
label_enable_all: "모두 활성화"
label_disable_all: "모두 비활성화"
is_required_blank_slate:
@@ -386,8 +386,8 @@ ko:
my:
access_token:
create_dialog:
header: The %{type} token has been generated
warning: Note that this is the only time you will see this token, make sure to copy it now.
header: '%{type} 토큰이 생성되었습니다.'
warning: 이번에만 이 토큰이 표시됩니다. 지금 이 토큰을 복사해야 합니다.
errors:
token_name_blank: "API 토큰 이름을 입력하세요"
token_name_in_use: "이 API 토큰 이름은 이미 사용 중입니다. 다른 이름을 선택하세요."
@@ -616,7 +616,7 @@ ko:
possible_values: "가능한 값"
regexp: "정규 표현식"
searchable: "검색가능한"
admin_only: "Admin-only"
admin_only: "관리자 전용"
custom_value:
value: "값"
doorkeeper/application:
@@ -686,7 +686,7 @@ ko:
versions: "버전"
work_packages: "작업 패키지"
project_custom_field:
is_required: "Required for all projects"
is_required: "모든 프로젝트에 필수"
custom_field_section: 섹션
query:
column_names: "컬럼"
@@ -1032,10 +1032,10 @@ ko:
assigned_to:
format: "%{message}"
done_ratio:
does_not_match_work_and_remaining_work: "does not match Work and Remaining work"
cannot_be_set_when_work_is_zero: "cannot be set when Work is 0h"
must_be_set_when_remaining_work_is_set: "required when Remaining work is set."
must_be_set_when_work_and_remaining_work_are_set: "required when Work and Remaining work are set."
does_not_match_work_and_remaining_work: "- 작업과 남은 작업이 일치하지 않습니다"
cannot_be_set_when_work_is_zero: "- 작업이 0시간인 경우 설정할 수 없습니다"
must_be_set_when_remaining_work_is_set: "- 남은 작업이 설정된 경우 필수입니다."
must_be_set_when_work_and_remaining_work_are_set: "- 작업 및 남은 작업이 설정된 경우 필수입니다."
inclusion: "- 0에서 100 사이여야 합니다."
due_date:
not_start_date: "마일스톤에서 요구하지만, 시작 날짜가 없음"
@@ -1065,17 +1065,17 @@ ko:
does_not_exist: "지정한 카테고리가 존재하지 않습니다."
estimated_hours:
not_a_number: "- 유효한 기간이 아닙니다."
cant_be_inferior_to_remaining_work: "cannot be lower than Remaining work."
must_be_set_when_remaining_work_and_percent_complete_are_set: "required when Remaining work and % Complete are set."
cant_be_inferior_to_remaining_work: "- 남은 작업보다 낮을 수 없습니다."
must_be_set_when_remaining_work_and_percent_complete_are_set: "- 남은 작업 및 완료 %가 설정된 경우 필수입니다."
remaining_hours:
not_a_number: "- 유효한 기간이 아닙니다."
cant_exceed_work: "cannot be higher than Work."
must_be_set_when_work_is_set: "required when Work is set."
must_be_set_when_work_and_percent_complete_are_set: "required when Work and % Complete are set."
cant_exceed_work: "- 작업보다 높을 수 없습니다."
must_be_set_when_work_is_set: "- 작업이 설정된 경우 필수입니다."
must_be_set_when_work_and_percent_complete_are_set: "- 작업 및 완료 %가 설정된 경우 필수입니다."
must_be_set_to_zero_hours_when_work_is_set_and_percent_complete_is_100p: >-
must be 0h when Work is set and % Complete is 100%.
- 작업이 설정되고 완료 %가 100%인 경우 0시간이어야 합니다.
must_be_empty_when_work_is_empty_and_percent_complete_is_100p: >-
must be empty when Work is empty and % Complete is 100%.
- 작업이 비어 있고 완료 %가 100%인 경우 비어 있어야 합니다.
readonly_status: "작업 패키지가 읽기 전용 상태이므로 해당 속성을 변경할 수 없습니다."
type:
attributes:
@@ -1154,7 +1154,7 @@ ko:
other: "역할"
status: "작업 패키지 상태"
token/api:
other: Access tokens
other: 액세스 토큰
type: "타입"
user: "사용자"
version: "버전"
@@ -1614,10 +1614,10 @@ ko:
subproject: "하위 프로젝트: %{name}"
export:
dialog:
title: "Export"
submit: "Export"
title: "내보내기"
submit: "내보내기"
format:
label: "File format"
label: "파일 형식"
options:
csv:
label: "CSV"
@@ -1626,58 +1626,58 @@ ko:
xls:
label: "XLS"
columns:
input_label_report: "Add columns to attribute table"
input_caption_report: "By default all attributes added as columns in the work package list are selected. Long text fields are not available in the attribute table, but can be displayed below it."
input_caption_table: "By default all attributes added as columns in the work package list are selected. Long text fields are not available in table based exports."
input_label_report: "특성 테이블에 열 추가"
input_caption_report: "기본적으로 작업 패키지 목록에 열로 추가된 모든 특성이 선택되어 있습니다. 긴 텍스트 필드는 특성 테이블에서 사용할 수 없지만 그 아래에 표시될 수 있습니다."
input_caption_table: "기본적으로 작업 패키지 목록에 열로 추가된 모든 특성이 선택되어 있습니다. 긴 텍스트 필드는 테이블 기반 내보내기에서 사용할 수 없습니다."
pdf:
export_type:
label: "PDF export type"
label: "PDF 내보내기 유형"
options:
table:
label: "Table"
caption: "Export the work packages list in a table with the desired columns."
label: "테이블"
caption: "원하는 열이 포함된 테이블로 작업 패키지 목록을 내보냅니다."
report:
label: "Report"
caption: "Export the work package on a detailed report of all work packages in the list."
label: "보고서"
caption: "목록에 있는 모든 작업 패키지의 상세 보고서로 작업 패키지를 내보냅니다."
gantt:
label: "Gantt chart"
caption: "Export the work packages list in a Gantt diagram view."
label: "Gantt 차트"
caption: "Gantt 다이어그램 보기로 작업 패키지 목록을 내보냅니다."
include_images:
label: "Include images"
caption: "Exclude images to reduce the size of the PDF export."
label: "이미지 포함"
caption: "PDF 내보내기 크기를 줄이려면 이미지를 제외합니다."
gantt_zoom_levels:
label: "Zoom levels"
caption: "Select what is the zoom level for dates displayed in the chart."
label: "확대/축소 수준"
caption: "차트에 표시되는 날짜의 확대/축소 수준을 선택합니다."
options:
days: "Days"
weeks: "Weeks"
months: "Months"
quarters: "Quarters"
days: ""
weeks: ""
months: "개월"
quarters: "분기"
column_width:
label: "Table column width"
label: "테이블 열 너비"
options:
narrow: "Narrow"
medium: "Medium"
wide: "Wide"
very_wide: "Very wide"
narrow: "좁음"
medium: "보통"
wide: "넓음"
very_wide: "매우 넓음"
paper_size:
label: "Paper size"
caption: "Depending on the chart size more than one page might be exported."
label: "용지 크기"
caption: "차트 크기에 따라 두 페이지 이상 내보낼 수 있습니다."
long_text_fields:
input_caption: "By default all long text fields are selected."
input_label: "Add long text fields"
input_placeholder: "Search for long text fields"
drag_area_label: "Manage long text fields"
input_caption: "기본적으로 모든 긴 텍스트 필드가 선택되어 있습니다."
input_label: "긴 텍스트 필드 추가"
input_placeholder: "긴 텍스트 필드 검색"
drag_area_label: "긴 텍스트 필드 관리"
xls:
include_relations:
label: "Include relations"
caption: "This option will create a duplicate of each work package for every relation this has with another work package."
label: "관계 포함"
caption: "이 옵션은 다른 작업 패키지와의 각 관계에 대해 작업 패키지 각각의 복제본을 만듭니다."
include_descriptions:
label: "Include descriptions"
caption: "This option will add a description column in raw format."
your_work_packages_export: "Work packages are being exported"
succeeded: "Export completed"
failed: "An error has occurred while trying to export the work packages: %{message}"
label: "설명 포함"
caption: "이 옵션은 원시 형식으로 설명 열을 추가합니다."
your_work_packages_export: "작업 패키지를 내보내는 중입니다."
succeeded: "내보내기 완료"
failed: "작업 패키지를 내보내려는 중에 오류가 발생했습니다: %{message}"
format:
atom: "Atom"
csv: "CSV"
@@ -2202,8 +2202,8 @@ ko:
label_next_week: "다음 주"
label_no_change_option: "(변경 없음)"
label_no_data: "표시할 데이터가 없습니다."
label_no_due_date: "no finish date"
label_no_start_date: "no start date"
label_no_due_date: "완료 날짜 없음"
label_no_start_date: "시작 날짜 없음"
label_no_parent_page: "부모 페이지 없음"
label_nothing_display: "표시할 것이 없음"
label_nobody: "아무도 없음"
@@ -2328,8 +2328,8 @@ ko:
label_role_plural: "역할"
label_role_search: "새 멤버에게 역할 할당"
label_scm: "SCM"
label_scroll_left: "Scroll left"
label_scroll_right: "Scroll right"
label_scroll_left: "왼쪽으로 스크롤"
label_scroll_right: "오른쪽으로 스크롤"
label_search: "검색"
label_search_by_name: "이름별 검색"
label_send_information: "사용자에게 새 자격 증명 보내기"
@@ -3082,9 +3082,9 @@ ko:
setting_work_package_done_ratio_field: "작업 기반"
setting_work_package_done_ratio_status: "상태 기반"
setting_work_package_done_ratio_explanation_pre_14_4_without_percent_complete_edition_html: >
In <b>work-based</b> mode, % Complete is calculated from how much work is done in relation to total work. In <b>status-based</b> mode, each status has a % Complete value associated with it. Changing status will change % Complete.
<b>작업 기반</b> 모드에서 완료 %는 총 작업 대비 완료된 작업을 기준으로 계산됩니다. <b>상태 기반</b> 모드에서는 각 상태에 완료 % 값이 연결되어 있습니다. 상태를 변경하면 완료 %도 변경됩니다.
setting_work_package_done_ratio_explanation_html: >
In <b>work-based</b> mode, % Complete can be freely set to any value. If you optionally enter a value for Work, Remaining work will automatically be derived. In <b>status-based</b> mode, each status has a % Complete value associated with it. Changing status will change % Complete.
<b>작업 기반</b> 모드에서 완료 %는 어떤 값으로든 자유롭게 설정할 수 있습니다. 선택적으로 작업에 대한 값을 입력하면 남은 작업이 자동으로 파생됩니다. <b>상태 기반</b> 모드에서는 각 상태에 완료 % 값이 연결되어 있습니다. 상태를 변경하면 완료 %도 변경됩니다.
setting_work_package_properties: "작업 패키지 속성"
setting_work_package_startdate_is_adddate: "새 작업 패키지에 대한 시작 날짜로 현재 날짜 사용"
setting_work_packages_projects_export_limit: "작업 패키지/프로젝트 내보내기 제한"
@@ -3466,26 +3466,26 @@ ko:
progress:
label_note: "참고:"
modal:
work_based_help_text: "Each field is automatically calculated from the two others when possible."
work_based_help_text_pre_14_4_without_percent_complete_edition: "% Complete is automatically derived from Work and Remaining work."
work_based_help_text: "가능한 경우 각 필드는 다른 두 필드에서 자동으로 계산됩니다."
work_based_help_text_pre_14_4_without_percent_complete_edition: "완료 %는 작업 및 남은 작업에서 자동으로 파생됩니다."
status_based_help_text: "완료 %는 작업 패키지 상태에 따라 설정됩니다."
migration_warning_text: "작업 기반 진행률 계산 모드에서 완료 %는 수동으로 설정할 수 없으며 작업에 연결됩니다. 기존 값은 유지되지만 편집할 수 없습니다. 먼저 작업을 입력하세요."
derivation_hints:
done_ratio:
cleared_because_remaining_work_is_empty: "Cleared because Remaining work is empty."
cleared_because_work_is_0h: "Cleared because Work is 0h."
derived: "Derived from Work and Remaining work."
cleared_because_remaining_work_is_empty: "남은 작업이 비어 있으므로 지워졌습니다."
cleared_because_work_is_0h: "작업이 0시간이므로 지워졌습니다."
derived: "작업 및 남은 작업에서 파생되었습니다."
estimated_hours:
cleared_because_remaining_work_is_empty: "Cleared because Remaining work is empty."
derived: "Derived from Remaining work and % Complete."
same_as_remaining_work: "Set to same value as Remaining work."
cleared_because_remaining_work_is_empty: "남은 작업이 비어 있으므로 지워졌습니다."
derived: "남은 작업 및 완료 %에서 파생되었습니다."
same_as_remaining_work: "남은 작업과 동일한 값으로 설정합니다."
remaining_hours:
cleared_because_work_is_empty: "Cleared because Work is empty."
cleared_because_percent_complete_is_empty: "Cleared because % Complete is empty."
decreased_like_work: "Decreased by the same amount as Work."
derived: "Derived from Work and % Complete."
increased_like_work: "Increased by the same amount as Work."
same_as_work: "Set to same value as Work."
cleared_because_work_is_empty: "작업이 비어 있으므로 지워졌습니다."
cleared_because_percent_complete_is_empty: "완료 %가 비어 있으므로 지워졌습니다."
decreased_like_work: "작업과 동일하게 감소했습니다."
derived: "작업 및 완료 %에서 파생되었습니다."
increased_like_work: "작업과 동일하게 증가했습니다."
same_as_work: "작업과 동일한 값으로 설정합니다."
permissions:
comment: "코멘트"
comment_description: "이 작업 패키지를 보고 코멘트를 작성할 수 있습니다."
+84 -84
View File
@@ -209,12 +209,12 @@ pl:
reorder_confirmation: "Ostrzeżenie: Bieżąca kolejność dostępnych wartości zostanie utracona. Kontynuować?"
instructions:
is_required: "Oznacz pole niestandardowe jako wymagane. To spowoduje obowiązkowe wypełnianie pola podczas tworzenia nowych lub aktualizacji istniejących zasobów."
is_required_for_project: "Check to enable this attribute and make it required in all projects. It cannot be deactived for individual projects."
is_required_for_project: "Zaznacz, aby włączyć ten atrybut i uczynić go wymaganym we wszystkich projektach. Nie można go wyłączyć dla poszczególnych projektów."
is_for_all: "Zaznacz pole niestandardowe jako dostępne we wszystkich istniejących i nowych projektach."
searchable: "Uwzględnij wartości pól podczas korzystania z funkcji wyszukiwania globalnego."
searchable_for_project: "Check to make this attribute available as a filter in project lists."
searchable_for_project: "Zaznacz, aby ten atrybut był dostępny jako filtr na listach projektów."
editable: "Zezwól na edycję pola przez samych użytkowników."
admin_only: "Check to make this attribute only visible to administrators. Users without admin rights will not be able to view or edit it."
admin_only: "Zaznacz, aby ten atrybut był widoczny tylko dla administratorów. Użytkownicy bez uprawnień administratora nie będą mogli go wyświetlać ani edytować."
is_filter: >
Zezwól na użycie pola niestandardowego w filtrze w widokach pakietów roboczych. Pamiętaj, że pole niestandardowe będzie wyświetlane w widokach globalnych dopiero po zaznaczeniu opcji „Dla wszystkich projektów”.
tab:
@@ -262,8 +262,8 @@ pl:
no_results_title_text: Nie ma jeszcze żadnego projektu
no_results_content_text: Utwórz nowy projekt
search:
label: Project name filter
placeholder: Search by project name
label: Filtr nazwy projektu
placeholder: Wyszukaj według nazwy projektu
lists:
active: "Aktywne projekty"
my: "Moje projekty"
@@ -297,7 +297,7 @@ pl:
actions:
label_enable_single: "Aktywne w tym projekcie, kliknij, aby wyłączyć"
label_disable_single: "Nieaktywne w tym projekcie, kliknij, aby włączyć"
remove_from_project: "Remove from project"
remove_from_project: "Usuń z projektu"
label_enable_all: "Włącz wszystkie"
label_disable_all: "Wyłącz wszystkie"
is_required_blank_slate:
@@ -401,8 +401,8 @@ pl:
my:
access_token:
create_dialog:
header: The %{type} token has been generated
warning: Note that this is the only time you will see this token, make sure to copy it now.
header: Token %{type} został wygenerowany
warning: 'Uwaga: jest to jedyny raz, gdy zobaczysz ten token, koniecznie skopiuj go teraz.'
errors:
token_name_blank: "Podaj nazwę tokena API"
token_name_in_use: "Ta nazwa tokena API jest już używana, wybierz inną"
@@ -635,7 +635,7 @@ pl:
possible_values: "Możliwe wartości"
regexp: "Wyrażenie regularne"
searchable: "Wyszukiwalne"
admin_only: "Admin-only"
admin_only: "Tylko dla administratorów"
custom_value:
value: "Wartość"
doorkeeper/application:
@@ -705,7 +705,7 @@ pl:
versions: "Wersje"
work_packages: "Zadania"
project_custom_field:
is_required: "Required for all projects"
is_required: "Wymagane dla wszystkich projektów"
custom_field_section: Sekcja
query:
column_names: "Kolumny"
@@ -1051,10 +1051,10 @@ pl:
assigned_to:
format: "%{message}"
done_ratio:
does_not_match_work_and_remaining_work: "does not match Work and Remaining work"
cannot_be_set_when_work_is_zero: "cannot be set when Work is 0h"
must_be_set_when_remaining_work_is_set: "required when Remaining work is set."
must_be_set_when_work_and_remaining_work_are_set: "required when Work and Remaining work are set."
does_not_match_work_and_remaining_work: "nie odpowiada Pracy i Pozostałej pracy"
cannot_be_set_when_work_is_zero: "nie można ustawić, gdy Praca wynosi zero"
must_be_set_when_remaining_work_is_set: "wymagane, gdy ustawiona jest opcja Pozostała praca."
must_be_set_when_work_and_remaining_work_are_set: "wymagane, gdy ustawione są opcje Praca i Pozostała praca."
inclusion: "musi wynosić od 0 do 100."
due_date:
not_start_date: "nie jest w dniu rozpoczęcia, chociaż jest to wymagane dla Kamieni Milowych."
@@ -1084,17 +1084,17 @@ pl:
does_not_exist: "Podana kategoria nie istnieje."
estimated_hours:
not_a_number: "nie jest prawidłowym czasem trwania."
cant_be_inferior_to_remaining_work: "cannot be lower than Remaining work."
must_be_set_when_remaining_work_and_percent_complete_are_set: "required when Remaining work and % Complete are set."
cant_be_inferior_to_remaining_work: "nie może być mniejsza niż Pozostała praca."
must_be_set_when_remaining_work_and_percent_complete_are_set: "wymagane, gdy ustawione są opcje Pozostała praca i % ukończenia."
remaining_hours:
not_a_number: "nie jest prawidłowym czasem trwania."
cant_exceed_work: "cannot be higher than Work."
must_be_set_when_work_is_set: "required when Work is set."
must_be_set_when_work_and_percent_complete_are_set: "required when Work and % Complete are set."
cant_exceed_work: "nie może być wyższa niż Praca."
must_be_set_when_work_is_set: "wymagane, gdy ustawiona jest opcja Praca."
must_be_set_when_work_and_percent_complete_are_set: "wymagane, gdy ustawione są opcje Praca i % ukończenia."
must_be_set_to_zero_hours_when_work_is_set_and_percent_complete_is_100p: >-
must be 0h when Work is set and % Complete is 100%.
musi wynosić 0 h, gdy ustawiona jest opcja Praca, a % ukończenia wynosi 100%.
must_be_empty_when_work_is_empty_and_percent_complete_is_100p: >-
must be empty when Work is empty and % Complete is 100%.
musi być puste, gdy Praca jest pusta, a % ukończenia wynosi 100%.
readonly_status: "Pakiet roboczy ma status tylko do odczytu, więc jego atrybutów nie można zmienić."
type:
attributes:
@@ -1188,10 +1188,10 @@ pl:
other: "Rol"
status: "Status pakietu roboczego"
token/api:
one: Access token
few: Access tokens
many: Access tokens
other: Access tokens
one: Token dostępu
few: Tokeny dostępu
many: Tokenów dostępu
other: Tokenu dostępu
type: "Typ"
user: "Użytkownik"
version: "Wersja"
@@ -1717,10 +1717,10 @@ pl:
subproject: "Podprojekt: %{name}"
export:
dialog:
title: "Export"
submit: "Export"
title: "Eksport"
submit: "Eksportuj"
format:
label: "File format"
label: "Format pliku"
options:
csv:
label: "CSV"
@@ -1729,58 +1729,58 @@ pl:
xls:
label: "XLS"
columns:
input_label_report: "Add columns to attribute table"
input_caption_report: "By default all attributes added as columns in the work package list are selected. Long text fields are not available in the attribute table, but can be displayed below it."
input_caption_table: "By default all attributes added as columns in the work package list are selected. Long text fields are not available in table based exports."
input_label_report: "Dodaj kolumny do tabeli atrybutów"
input_caption_report: "Domyślnie zaznaczone są wszystkie atrybuty dodane jako kolumny na liście pakietów roboczych. Długie pola tekstowe nie są dostępne w tabeli atrybutów, ale mogą być wyświetlane pod nią."
input_caption_table: "Domyślnie zaznaczone są wszystkie atrybuty dodane jako kolumny na liście pakietów roboczych. Długie pola tekstowe nie są dostępne w eksportach opartych na tabelach."
pdf:
export_type:
label: "PDF export type"
label: "Typ eksportu PDF"
options:
table:
label: "Table"
caption: "Export the work packages list in a table with the desired columns."
label: "Tabela"
caption: "Wyeksportuj listę pakietów roboczych w tabeli z żądanymi kolumnami."
report:
label: "Report"
caption: "Export the work package on a detailed report of all work packages in the list."
label: "Raport"
caption: "Wyeksportuj pakiet roboczy w szczegółowym raporcie dotyczącym wszystkich pakietów roboczych na liście."
gantt:
label: "Gantt chart"
caption: "Export the work packages list in a Gantt diagram view."
label: "Wykres Gantta"
caption: "Wyeksportuj listę pakietów roboczych w widoku diagramu Gantta."
include_images:
label: "Include images"
caption: "Exclude images to reduce the size of the PDF export."
label: "Uwzględnij obrazy"
caption: "Wyklucz obrazy, aby zmniejszyć rozmiar eksportowanego pliku PDF."
gantt_zoom_levels:
label: "Zoom levels"
caption: "Select what is the zoom level for dates displayed in the chart."
label: "Poziomy powiększenia"
caption: "Wybierz poziom powiększenia dla dat wyświetlanych na wykresie."
options:
days: "Days"
weeks: "Weeks"
months: "Months"
quarters: "Quarters"
days: "Dni"
weeks: "Tygodnie"
months: "Miesiące"
quarters: "Kwartały"
column_width:
label: "Table column width"
label: "Szerokość kolumny tabeli"
options:
narrow: "Narrow"
medium: "Medium"
wide: "Wide"
very_wide: "Very wide"
narrow: "Wąskie"
medium: "Średnie"
wide: "Szerokie"
very_wide: "Bardzo szerokie"
paper_size:
label: "Paper size"
caption: "Depending on the chart size more than one page might be exported."
label: "Rozmiar papieru"
caption: "W zależności od rozmiaru wykresu może zostać wyeksportowana więcej niż jedna strona."
long_text_fields:
input_caption: "By default all long text fields are selected."
input_label: "Add long text fields"
input_placeholder: "Search for long text fields"
drag_area_label: "Manage long text fields"
input_caption: "Domyślnie zaznaczone są wszystkie długie pola tekstowe."
input_label: "Dodaj długie pola tekstowe"
input_placeholder: "Wyszukaj długie pola tekstowe"
drag_area_label: "Zarządzanie długimi polami tekstowymi"
xls:
include_relations:
label: "Include relations"
caption: "This option will create a duplicate of each work package for every relation this has with another work package."
label: "Uwzględnij relacje"
caption: "Ta opcja spowoduje utworzenie duplikatu każdego pakietu roboczego dla każdej relacji z innym pakietem roboczym."
include_descriptions:
label: "Include descriptions"
caption: "This option will add a description column in raw format."
your_work_packages_export: "Work packages are being exported"
succeeded: "Export completed"
failed: "An error has occurred while trying to export the work packages: %{message}"
label: "Uwzględnij opisy"
caption: "Ta opcja doda kolumnę opisu w formacie nieprzetworzonym."
your_work_packages_export: "Pakiety robocze są eksportowane"
succeeded: "Eksport ukończony"
failed: "Podczas próby wyeksportowania pakietów roboczych wystąpił błąd: %{message}"
format:
atom: "Atom"
csv: "CSV"
@@ -2305,8 +2305,8 @@ pl:
label_next_week: "Następny tydzień"
label_no_change_option: "(Bez zmian)"
label_no_data: "Brak danych do pokazania"
label_no_due_date: "no finish date"
label_no_start_date: "no start date"
label_no_due_date: "brak daty zakończenia"
label_no_start_date: "brak daty rozpoczęcia"
label_no_parent_page: "Bez strony nadrzędnej"
label_nothing_display: "Brak danych do pokazania"
label_nobody: "nikt"
@@ -2431,8 +2431,8 @@ pl:
label_role_plural: "Role"
label_role_search: "Przydziel role nowemu członkowi"
label_scm: "SCM"
label_scroll_left: "Scroll left"
label_scroll_right: "Scroll right"
label_scroll_left: "Przewiń w lewo"
label_scroll_right: "Przewiń w prawo"
label_search: "Szukaj"
label_search_by_name: "Wyszukaj według nazwy"
label_send_information: "Wyślij nowe poświadczenia do użytkownika"
@@ -3191,9 +3191,9 @@ pl:
setting_work_package_done_ratio_field: "Oparte na pracy"
setting_work_package_done_ratio_status: "Oparte na statusie"
setting_work_package_done_ratio_explanation_pre_14_4_without_percent_complete_edition_html: >
In <b>work-based</b> mode, % Complete is calculated from how much work is done in relation to total work. In <b>status-based</b> mode, each status has a % Complete value associated with it. Changing status will change % Complete.
W trybie <b>opartym na pracy</b> % ukończenia jest obliczany na podstawie ilości wykonanej pracy w stosunku do pracy całkowitej. W trybie <b>opartym na statusie</b> każdy status ma powiązaną wartość % ukończenia. Zmiana statusu spowoduje zmianę % ukończenia.
setting_work_package_done_ratio_explanation_html: >
In <b>work-based</b> mode, % Complete can be freely set to any value. If you optionally enter a value for Work, Remaining work will automatically be derived. In <b>status-based</b> mode, each status has a % Complete value associated with it. Changing status will change % Complete.
W trybie <b>opartym na pracy</b> % ukończenia można swobodnie ustawić na dowolną wartość. Jeśli opcjonalnie wprowadzisz wartość Praca, Pozostała praca zostanie wyprowadzona automatycznie. W trybie <b>opartym na statusie</b> każdy status ma powiązaną wartość % ukończenia. Zmiana statusu spowoduje zmianę wartości % ukończenia.
setting_work_package_properties: "Właściwości pakietu roboczego"
setting_work_package_startdate_is_adddate: "Użyj bieżącej daty jako daty początkowej dla nowych pakietów roboczych"
setting_work_packages_projects_export_limit: "Limit eksportu pakietów roboczych / projektów"
@@ -3578,26 +3578,26 @@ pl:
progress:
label_note: "Uwaga:"
modal:
work_based_help_text: "Each field is automatically calculated from the two others when possible."
work_based_help_text_pre_14_4_without_percent_complete_edition: "% Complete is automatically derived from Work and Remaining work."
work_based_help_text: "Każde pole jest automatycznie obliczane na podstawie dwóch innych, jeśli to możliwe."
work_based_help_text_pre_14_4_without_percent_complete_edition: "% ukończenia jest automatycznie wyprowadzany z wartości Praca i Pozostała praca."
status_based_help_text: "% ukończenia jest ustawiany na podstawie statusu pakietu roboczego."
migration_warning_text: "W trybie obliczania postępu na podstawie pracy wartości % ukończenia nie można ustawić ręcznie i jest ona powiązana z wartością Praca. Istniejąca wartość została zachowana, ale nie można jej edytować. Najpierw wprowadź wartość Praca."
derivation_hints:
done_ratio:
cleared_because_remaining_work_is_empty: "Cleared because Remaining work is empty."
cleared_because_work_is_0h: "Cleared because Work is 0h."
derived: "Derived from Work and Remaining work."
cleared_because_remaining_work_is_empty: "Wyczyszczono, ponieważ Pozostała praca jest pusta."
cleared_because_work_is_0h: "Wyczyszczono, ponieważ Praca wynosi 0 h."
derived: "Wartość jest wyprowadzana z wartości Praca i Pozostała praca."
estimated_hours:
cleared_because_remaining_work_is_empty: "Cleared because Remaining work is empty."
derived: "Derived from Remaining work and % Complete."
same_as_remaining_work: "Set to same value as Remaining work."
cleared_because_remaining_work_is_empty: "Wyczyszczono, ponieważ Pozostała praca jest pusta."
derived: "Wartość jest wyprowadzana z wartości Pozostała praca i % ukończenia."
same_as_remaining_work: "Ustaw tę samą wartość, co Pozostała praca."
remaining_hours:
cleared_because_work_is_empty: "Cleared because Work is empty."
cleared_because_percent_complete_is_empty: "Cleared because % Complete is empty."
decreased_like_work: "Decreased by the same amount as Work."
derived: "Derived from Work and % Complete."
increased_like_work: "Increased by the same amount as Work."
same_as_work: "Set to same value as Work."
cleared_because_work_is_empty: "Wyczyszczono, ponieważ Praca jest pusta."
cleared_because_percent_complete_is_empty: "Wyczyszczono, ponieważ % ukończenia jest pusty."
decreased_like_work: "Zmniejszono o taką samą wartość jak pole Praca."
derived: "Wartość jest wyprowadzana z wartości Praca i % ukończenia."
increased_like_work: "Zwiększono o taką samą wartość jak pole Praca."
same_as_work: "Ustaw na tę samą wartość, co Praca."
permissions:
comment: "Komentarz"
comment_description: "Może wyświetlać i komentować ten pakiet roboczy."
+47 -47
View File
@@ -211,12 +211,12 @@ pt-BR:
reorder_confirmation: "Aviso: A ordem atual dos valores disponíveis será perdida. Continuar?"
instructions:
is_required: "Marcar o campo personalizado como obrigatório. Isto tornará obrigatório o preenchimento do campo ao criar novos recursos ou ao atualizar recursos existentes."
is_required_for_project: "Marque para ativar esse atributo e torná-lo obrigatório em todos os projetos. Ele não pode ser desativado para projetos individuais."
is_required_for_project: "Marque esta opção para ativar este atributo e torná-lo obrigatório em todos os projetos. Este atributo não pode ser desativado em projetos individuais."
is_for_all: "Marcar o campo personalizado como disponível em todos os projetos existentes e novos."
searchable: "Incluir os valores dos campos ao utilizar a funcionalidade de busca global."
searchable_for_project: "Marque para tornar esse atributo disponível como um filtro nas listas de projetos."
searchable_for_project: "Marque esta opção para disponibilizar este atributo como um filtro nas listas de projetos."
editable: "Permita que o campo seja editável pelos próprios usuários."
admin_only: "Marque para tornar esse atributo visível apenas para os administradores. Os usuários sem direitos de administrador não poderão visualizá-lo ou editá-lo."
admin_only: "Marque esta opção para tornar este atributo visível apenas para os administradores. Os usuários sem permissões de administrador não poderão vê-lo ou editá-lo."
is_filter: >
Permita que o campo personalizado seja utilizado num filtro nas visualizações do pacote de trabalho. Note que apenas com a opção "Para todos os projetos" selecionada, o campo personalizado irá aparecer nas visualizações globais.
tab:
@@ -299,7 +299,7 @@ pt-BR:
actions:
label_enable_single: "Ativo neste projeto, clique para desativar"
label_disable_single: "Inativo neste projeto, clique para ativar"
remove_from_project: "Remove from project"
remove_from_project: "Remover do projeto"
label_enable_all: "Ativar tudo"
label_disable_all: "Desativar tudo"
is_required_blank_slate:
@@ -713,13 +713,13 @@ pt-BR:
is_closed: "Pacote de trabalho fechado"
is_readonly: "Pacote de trabalho somente leitura"
excluded_from_totals: "Excluir do cálculo de totais na hierarquia"
default_done_ratio: "% concluído"
default_done_ratio: "% de concluo"
time_entry:
activity: "Atividade"
hours: "horas"
spent_on: "Data"
type: "Tipo"
ongoing: "Em curso"
ongoing: "Em andamento"
type:
description: "Texto padrão para descrição"
attribute_groups: ""
@@ -1071,7 +1071,7 @@ pt-BR:
does_not_exist: "Categoria especificada não existe."
estimated_hours:
not_a_number: "não é uma duração válida."
cant_be_inferior_to_remaining_work: "não pode ser menor do que o Trabalho restante."
cant_be_inferior_to_remaining_work: "não pode ser menor que o Trabalho restante."
must_be_set_when_remaining_work_and_percent_complete_are_set: "necessário quando o Trabalho restante e o % concluído são definidos."
remaining_hours:
not_a_number: "não é uma duração válida."
@@ -1081,7 +1081,7 @@ pt-BR:
must_be_set_to_zero_hours_when_work_is_set_and_percent_complete_is_100p: >-
deve ser 0h quando o trabalho é definido e % concluído é de 100%.
must_be_empty_when_work_is_empty_and_percent_complete_is_100p: >-
deve estar vazio quando Trabalho estiver vazio e %completo for 100%.
deve ficar vazio quando o Trabalho estiver vazio e % de conclusão for 100%.
readonly_status: "O pacote de trabalho está em estado somente leitura, então seus atributos não podem ser alterados."
type:
attributes:
@@ -1661,8 +1661,8 @@ pt-BR:
label: "XLS"
columns:
input_label_report: "Adicionar colunas à tabela de atributos"
input_caption_report: "Por padrão, todos os atributos adicionados como colunas na lista de pacotes de trabalho são selecionados. Os campos de texto longo não estão disponíveis na tabela de atributos, mas podem ser exibidos abaixo dela."
input_caption_table: "Por padrão, todos os atributos adicionados como colunas na lista de pacotes de trabalho são selecionados. Os campos de texto longo não estão disponíveis na tabela de atributos, mas podem ser exibidos abaixo dela."
input_caption_report: "Por padrão, todos os atributos adicionados como colunas na lista de pacotes de trabalho são selecionados. Embora os campos de texto longo não estejam disponíveis na tabela de atributos, eles podem ser visualizados logo abaixo."
input_caption_table: "Por padrão, todos os atributos adicionados como colunas na lista de pacotes de trabalho são selecionados. Os campos de texto longo não estão disponíveis nas exportações em formato de tabela."
pdf:
export_type:
label: "Formato de exportação de PDF"
@@ -1672,7 +1672,7 @@ pt-BR:
caption: "Exporte a lista de pacotes de trabalho em uma tabela com as colunas desejadas."
report:
label: "Relatório"
caption: "Exportar o pacote de trabalho em um relatório detalhado de todos os pacotes de trabalho da lista."
caption: "Exporte o pacote de trabalho em um relatório detalhado que inclua todos os pacotes de trabalho da lista."
gantt:
label: "Gráfico de Gantt"
caption: "Exportar a lista de pacotes de trabalho em uma visualização de diagrama de Gantt."
@@ -1691,27 +1691,27 @@ pt-BR:
label: "Largura da coluna da tabela"
options:
narrow: "Estreito"
medium: "Medium"
wide: "Wide"
very_wide: "Very wide"
medium: "Médio"
wide: "Amplo"
very_wide: "Muito amplo"
paper_size:
label: "Paper size"
caption: "Depending on the chart size more than one page might be exported."
label: "Tamanho do papel"
caption: "Dependendo do tamanho do gráfico, pode ser necessário exportar mais de uma página."
long_text_fields:
input_caption: "By default all long text fields are selected."
input_label: "Add long text fields"
input_placeholder: "Search for long text fields"
drag_area_label: "Manage long text fields"
input_caption: "Por padrão, todos os campos de texto longos são selecionados."
input_label: "Adicionar campos de texto longos"
input_placeholder: "Pesquisar campos de texto longos"
drag_area_label: "Gerenciar campos de texto longos"
xls:
include_relations:
label: "Include relations"
caption: "This option will create a duplicate of each work package for every relation this has with another work package."
label: "Incluir relações"
caption: "Esta opção criará uma cópia de cada pacote de trabalho para cada relação que ele tenha com outros pacotes de trabalho."
include_descriptions:
label: "Include descriptions"
caption: "This option will add a description column in raw format."
your_work_packages_export: "Work packages are being exported"
succeeded: "Export completed"
failed: "An error has occurred while trying to export the work packages: %{message}"
label: "Incluir descrições"
caption: "Esta opção adicionará uma coluna de descrição em formato bruto."
your_work_packages_export: "Os pacotes de trabalho estão sendo exportados"
succeeded: "Exportação concluída"
failed: "Ocorreu um erro ao tentar exportar os pacotes de trabalho: %{message}"
format:
atom: "Atom"
csv: "CSV"
@@ -2236,8 +2236,8 @@ pt-BR:
label_next_week: "Próxima semana"
label_no_change_option: "(Sem alteração)"
label_no_data: "Sem dados para exibir"
label_no_due_date: "no finish date"
label_no_start_date: "no start date"
label_no_due_date: "sem data de conclusão"
label_no_start_date: "nenhuma data de início"
label_no_parent_page: "Nenhuma página pai"
label_nothing_display: "Nada para exibir"
label_nobody: "ninguém"
@@ -2362,8 +2362,8 @@ pt-BR:
label_role_plural: "Papéis"
label_role_search: "Atribuir papéis aos novos membros"
label_scm: "SCM"
label_scroll_left: "Scroll left"
label_scroll_right: "Scroll right"
label_scroll_left: "Rolar para a esquerda"
label_scroll_right: "Rolar para a direita"
label_search: "Pesquisar"
label_search_by_name: "Pesquisar por nome"
label_send_information: "Enviar novas credenciais ao usuário"
@@ -3119,9 +3119,9 @@ pt-BR:
setting_work_package_done_ratio_field: "Com base no trabalho"
setting_work_package_done_ratio_status: "Com base no estado"
setting_work_package_done_ratio_explanation_pre_14_4_without_percent_complete_edition_html: >
In <b>work-based</b> mode, % Complete is calculated from how much work is done in relation to total work. In <b>status-based</b> mode, each status has a % Complete value associated with it. Changing status will change % Complete.
No modo <b>com base no trabalho</b>, a % de conclusão é calculada com base na quantidade de trabalho realizado em relação ao total de trabalho. Já no modo <b>com base no estado</b>, cada estado possui um valor de % de conclusão associado a ele. Alterar o estado resultará em uma mudança na % de conclusão.
setting_work_package_done_ratio_explanation_html: >
In <b>work-based</b> mode, % Complete can be freely set to any value. If you optionally enter a value for Work, Remaining work will automatically be derived. In <b>status-based</b> mode, each status has a % Complete value associated with it. Changing status will change % Complete.
No modo <b>baseado em trabalho</b>, você pode definir o % de conclusão para qualquer valor desejado. Se você inserir um valor para o Trabalho, o Trabalho restante será calculado automaticamente. No modo <b>baseado em status</b>, cada status está associado a um valor de % de conclusão. Alterar o status irá atualizar o % de conclusão correspondente.
setting_work_package_properties: "Propriedades do pacote de trabalho"
setting_work_package_startdate_is_adddate: "Usar a data atual como data para início dos novos pacotes de trabalho"
setting_work_packages_projects_export_limit: "Limite de exportação de pacote de trabalho / projetos"
@@ -3503,26 +3503,26 @@ pt-BR:
progress:
label_note: "Obs.:"
modal:
work_based_help_text: "Each field is automatically calculated from the two others when possible."
work_based_help_text_pre_14_4_without_percent_complete_edition: "% Complete is automatically derived from Work and Remaining work."
work_based_help_text: "Cada campo é calculado automaticamente a partir dos outros dois, sempre que possível."
work_based_help_text_pre_14_4_without_percent_complete_edition: "% de conclusão é automaticamente calculada com base no trabalho total e no trabalho restante."
status_based_help_text: "A % de conclusão é definida pelo estado do pacote de trabalho."
migration_warning_text: "No modo de cálculo de progresso com base no trabalho, a % conclusão não pode ser definida manualmente e está vinculada ao Trabalho. O valor existente foi mantido, mas não pode ser editado. Favor inserir o Trabalho primeiro."
derivation_hints:
done_ratio:
cleared_because_remaining_work_is_empty: "Cleared because Remaining work is empty."
cleared_because_work_is_0h: "Cleared because Work is 0h."
derived: "Derived from Work and Remaining work."
cleared_because_remaining_work_is_empty: "Removido porque o campo \"Trabalho restante\" está vazio."
cleared_because_work_is_0h: "Removido porque o Trabalho está 0h."
derived: "Derivado de Trabalho e Trabalho restante."
estimated_hours:
cleared_because_remaining_work_is_empty: "Cleared because Remaining work is empty."
derived: "Derived from Remaining work and % Complete."
same_as_remaining_work: "Set to same value as Remaining work."
cleared_because_remaining_work_is_empty: "Removido porque o campo \"Trabalho restante\" está vazio."
derived: "Derivado de Trabalho restante e % de conclusão."
same_as_remaining_work: "Defina o mesmo valor que o Trabalho restante."
remaining_hours:
cleared_because_work_is_empty: "Cleared because Work is empty."
cleared_because_percent_complete_is_empty: "Cleared because % Complete is empty."
decreased_like_work: "Decreased by the same amount as Work."
derived: "Derived from Work and % Complete."
increased_like_work: "Increased by the same amount as Work."
same_as_work: "Set to same value as Work."
cleared_because_work_is_empty: "Removido porque o Trabalho está vazio."
cleared_because_percent_complete_is_empty: "Removido porque % de conclusão está vazio."
decreased_like_work: "Diminuído pela mesma quantidade que o Trabalho."
derived: "Derivado de Trabalho e % de conclusão."
increased_like_work: "Aumentado pela mesma quantidade que o Trabalho."
same_as_work: "Defina para o mesmo valor que o Trabalho."
permissions:
comment: "Comentário"
comment_description: "Pode visualizar e comentar neste pacote de trabalho."
+83 -83
View File
@@ -210,12 +210,12 @@ pt-PT:
reorder_confirmation: "Aviso: A ordem atual de valores disponíveis será perdida. Continuar?"
instructions:
is_required: "Marque o campo personalizado como obrigatório. Isto tornará obrigatório o preenchimento do campo ao criar novos recursos ou ao atualizar recursos existentes."
is_required_for_project: "Check to enable this attribute and make it required in all projects. It cannot be deactived for individual projects."
is_required_for_project: "Selecione para ativar este atributo e torná-lo obrigatório em todos os projetos. Não pode ser desativado para projetos individuais."
is_for_all: "Marque o campo personalizado como disponível em todos os projetos existentes e novos."
searchable: "Inclua os valores dos campos ao utilizar a funcionalidade de pesquisa global."
searchable_for_project: "Check to make this attribute available as a filter in project lists."
searchable_for_project: "Selecione para tornar este atributo disponível como um filtro nas listas de projetos."
editable: "Permita que o campo seja editável pelos próprios utilizadores."
admin_only: "Check to make this attribute only visible to administrators. Users without admin rights will not be able to view or edit it."
admin_only: "Selecione para tornar este atributo visível apenas para os administradores. Os utilizadores sem direitos de administrador não o poderão ver ou editar."
is_filter: >
Permita que o campo personalizado seja utilizado num filtro nas vistas do pacote de trabalho. Note que apenas com a opção "Para todos os projetos" selecionada, o campo personalizado irá aparecer nas vistas globais.
tab:
@@ -263,8 +263,8 @@ pt-PT:
no_results_title_text: Atualmente, não existem projetos
no_results_content_text: Crie um novo projeto
search:
label: Project name filter
placeholder: Search by project name
label: Filtro do nome do projeto
placeholder: Pesquisar por nome de projeto
lists:
active: "Projetos ativos"
my: "Os meus projetos"
@@ -298,7 +298,7 @@ pt-PT:
actions:
label_enable_single: "Ativo neste projeto, clique para desativar"
label_disable_single: "Inativo neste projeto, clique para ativar"
remove_from_project: "Remove from project"
remove_from_project: "Remover do projeto"
label_enable_all: "Ativar tudo"
label_disable_all: "Desativar tudo"
is_required_blank_slate:
@@ -390,8 +390,8 @@ pt-PT:
my:
access_token:
create_dialog:
header: The %{type} token has been generated
warning: Note that this is the only time you will see this token, make sure to copy it now.
header: O token %{type} foi gerado
warning: Note que esta é a única vez que irá ver este token, certifique-se de que o copia agora.
errors:
token_name_blank: "Forneça um nome de token da API"
token_name_in_use: "Este nome de token de API já está a ser utilizado, selecione um diferente"
@@ -622,7 +622,7 @@ pt-PT:
possible_values: "Valores possíveis"
regexp: "Expressão regular"
searchable: "Pesquisável"
admin_only: "Admin-only"
admin_only: "Apenas administradores"
custom_value:
value: "Valor"
doorkeeper/application:
@@ -692,7 +692,7 @@ pt-PT:
versions: "Versões"
work_packages: "Tarefas"
project_custom_field:
is_required: "Required for all projects"
is_required: "Obrigatório para todos os projetos"
custom_field_section: Secção
query:
column_names: "Colunas"
@@ -713,7 +713,7 @@ pt-PT:
is_closed: "Tarefa fechada"
is_readonly: "Pacote de trabalho só de leitura"
excluded_from_totals: "Excluir do cálculo dos totais na hierarquia"
default_done_ratio: "% concluído"
default_done_ratio: "% de concluo"
time_entry:
activity: "Atividade"
hours: "Horas"
@@ -1038,10 +1038,10 @@ pt-PT:
assigned_to:
format: "%{message}"
done_ratio:
does_not_match_work_and_remaining_work: "does not match Work and Remaining work"
cannot_be_set_when_work_is_zero: "cannot be set when Work is 0h"
must_be_set_when_remaining_work_is_set: "required when Remaining work is set."
must_be_set_when_work_and_remaining_work_are_set: "required when Work and Remaining work are set."
does_not_match_work_and_remaining_work: "não corresponde ao Trabalho e ao Trabalho restante"
cannot_be_set_when_work_is_zero: "não pode ser definido quando o Trabalho é 0h"
must_be_set_when_remaining_work_is_set: "obrigatório quando o Trabalho restante está definido."
must_be_set_when_work_and_remaining_work_are_set: "obrigatório quando o Trabalho e o Trabalho restante estão definidos."
inclusion: "tem de estar entre 0 e 100."
due_date:
not_start_date: "não é na data de início, embora isto seja necessário para os registos."
@@ -1071,17 +1071,17 @@ pt-PT:
does_not_exist: "A categoria especificada não existe."
estimated_hours:
not_a_number: "não é uma duração válida."
cant_be_inferior_to_remaining_work: "cannot be lower than Remaining work."
must_be_set_when_remaining_work_and_percent_complete_are_set: "required when Remaining work and % Complete are set."
cant_be_inferior_to_remaining_work: "não pode ser inferior a Trabalho restante."
must_be_set_when_remaining_work_and_percent_complete_are_set: "obrigatório quando o Trabalho restante e % de conclusão estão definidos."
remaining_hours:
not_a_number: "não é uma duração válida."
cant_exceed_work: "cannot be higher than Work."
must_be_set_when_work_is_set: "required when Work is set."
must_be_set_when_work_and_percent_complete_are_set: "required when Work and % Complete are set."
cant_exceed_work: "não pode ser superior a Trabalho."
must_be_set_when_work_is_set: "obrigatório quando o Trabalho está definido."
must_be_set_when_work_and_percent_complete_are_set: "obrigatório quando o Trabalho e % de conclusão estão definidos."
must_be_set_to_zero_hours_when_work_is_set_and_percent_complete_is_100p: >-
must be 0h when Work is set and % Complete is 100%.
tem de ser 0h quando o Trabalho está definido e % de conclusão é 100 %.
must_be_empty_when_work_is_empty_and_percent_complete_is_100p: >-
must be empty when Work is empty and % Complete is 100%.
tem de estar vazio quando o Trabalho está vazio e % de conclusão é 100 %.
readonly_status: "O pacote de trabalho está em estado de apenas leitura, por isso os seus atributos não podem ser alterados."
type:
attributes:
@@ -1165,8 +1165,8 @@ pt-PT:
other: "Papel"
status: "Estado da tarefa"
token/api:
one: Access token
other: Access tokens
one: Token de acesso
other: Tokens de acesso
type: "Tipo"
user: "Utilizador"
version: "Versão"
@@ -1648,10 +1648,10 @@ pt-PT:
subproject: "Subprojeto: %{name}"
export:
dialog:
title: "Export"
submit: "Export"
title: "Exportar"
submit: "Exportar"
format:
label: "File format"
label: "Formato do ficheiro"
options:
csv:
label: "CSV"
@@ -1660,58 +1660,58 @@ pt-PT:
xls:
label: "XLS"
columns:
input_label_report: "Add columns to attribute table"
input_caption_report: "By default all attributes added as columns in the work package list are selected. Long text fields are not available in the attribute table, but can be displayed below it."
input_caption_table: "By default all attributes added as columns in the work package list are selected. Long text fields are not available in table based exports."
input_label_report: "Adicione colunas à tabela de atributos"
input_caption_report: "Por defeito, todos os atributos adicionados como colunas na lista de pacotes de trabalho são selecionados. Os campos de texto longo não estão disponíveis na tabela de atributos, mas podem ser apresentados por baixo desta."
input_caption_table: "Por defeito, todos os atributos adicionados como colunas na lista de pacotes de trabalho são selecionados. Os campos de texto longo não estão disponíveis nas exportações baseadas em tabelas."
pdf:
export_type:
label: "PDF export type"
label: "Tipo de exportação PDF"
options:
table:
label: "Table"
caption: "Export the work packages list in a table with the desired columns."
label: "Tabela"
caption: "Exporte a lista de pacotes de trabalho numa tabela com as colunas desejadas."
report:
label: "Report"
caption: "Export the work package on a detailed report of all work packages in the list."
label: "Relatório"
caption: "Exporte o pacote de trabalho para um relatório detalhado de todos os pacotes de trabalho da lista."
gantt:
label: "Gantt chart"
caption: "Export the work packages list in a Gantt diagram view."
label: "Gráfico de Gantt"
caption: "Exporte a lista de pacotes de trabalho numa vista de diagrama de Gantt."
include_images:
label: "Include images"
caption: "Exclude images to reduce the size of the PDF export."
label: "Incluir imagens"
caption: "Exclua imagens para reduzir o tamanho da exportação do PDF."
gantt_zoom_levels:
label: "Zoom levels"
caption: "Select what is the zoom level for dates displayed in the chart."
label: "Níveis de ampliação"
caption: "Selecione o nível de amplicação para as datas apresentadas no gráfico."
options:
days: "Days"
weeks: "Weeks"
months: "Months"
quarters: "Quarters"
days: "Dias"
weeks: "Semanas"
months: "Meses"
quarters: "Trimestres"
column_width:
label: "Table column width"
label: "Largura da coluna da tabela"
options:
narrow: "Narrow"
medium: "Medium"
wide: "Wide"
very_wide: "Very wide"
narrow: "Estreito"
medium: "Médio"
wide: "Amplo"
very_wide: "Muito amplo"
paper_size:
label: "Paper size"
caption: "Depending on the chart size more than one page might be exported."
label: "Tamanho do papel"
caption: "Dependendo do tamanho do gráfico, pode exportar mais do que uma página."
long_text_fields:
input_caption: "By default all long text fields are selected."
input_label: "Add long text fields"
input_placeholder: "Search for long text fields"
drag_area_label: "Manage long text fields"
input_caption: "Por defeito, todos os campos de texto longos são selecionados."
input_label: "Adicionar campos de texto longo"
input_placeholder: "Procurar campos de texto longos"
drag_area_label: "Gerir campos de texto longo"
xls:
include_relations:
label: "Include relations"
caption: "This option will create a duplicate of each work package for every relation this has with another work package."
label: "Incluir relações"
caption: "Esta opção irá criar um duplicado de cada pacote de trabalho para cada relação que este tenha com outro pacote de trabalho."
include_descriptions:
label: "Include descriptions"
caption: "This option will add a description column in raw format."
your_work_packages_export: "Work packages are being exported"
succeeded: "Export completed"
failed: "An error has occurred while trying to export the work packages: %{message}"
label: "Incluir descrições"
caption: "Esta opção adiciona uma coluna de descrição em formato bruto."
your_work_packages_export: "Os pacotes de trabalho estão a ser exportados"
succeeded: "Exportação concluída"
failed: "Ocorreu um erro ao tentar exportar os pacotes de trabalho: %{message}"
format:
atom: "Atom"
csv: "CSV"
@@ -2236,8 +2236,8 @@ pt-PT:
label_next_week: "Próxima semana"
label_no_change_option: "(Sem mudança)"
label_no_data: "Sem dados para apresentar"
label_no_due_date: "no finish date"
label_no_start_date: "no start date"
label_no_due_date: "sem data de término"
label_no_start_date: "sem data de início"
label_no_parent_page: "Sem página pai"
label_nothing_display: "Nada para exibir"
label_nobody: "ninguém"
@@ -2362,8 +2362,8 @@ pt-PT:
label_role_plural: "Papel"
label_role_search: "Atribuir função aos novos membros"
label_scm: "SCM"
label_scroll_left: "Scroll left"
label_scroll_right: "Scroll right"
label_scroll_left: "Deslocar para a esquerda"
label_scroll_right: "Deslocar para a direita"
label_search: "Pesquisar"
label_search_by_name: "Pesquisar por nome"
label_send_information: "Enviar novas credenciais para o utilizador"
@@ -3118,9 +3118,9 @@ pt-PT:
setting_work_package_done_ratio_field: "Baseado no trabalho"
setting_work_package_done_ratio_status: "Baseado no estado"
setting_work_package_done_ratio_explanation_pre_14_4_without_percent_complete_edition_html: >
In <b>work-based</b> mode, % Complete is calculated from how much work is done in relation to total work. In <b>status-based</b> mode, each status has a % Complete value associated with it. Changing status will change % Complete.
No modo <b>baseado no trabalho</b>, a % de conclusão é calculada a partir da quantidade de trabalho realizado em relação ao trabalho total. No modo <b>baseado no estado</b>, cada estado tem um valor de % de conclusão associado. A alteração do estado altera a % de conclusão.
setting_work_package_done_ratio_explanation_html: >
In <b>work-based</b> mode, % Complete can be freely set to any value. If you optionally enter a value for Work, Remaining work will automatically be derived. In <b>status-based</b> mode, each status has a % Complete value associated with it. Changing status will change % Complete.
No modo <b>baseado no trabalho</b>, a % de conclusão pode ser definida livremente para qualquer valor. Se, opcionalmente, introduzir um valor para Trabalho, o Trabalho restante será automaticamente derivado. No modo <b>baseado no estado</b>, cada estado tem um valor de % de conclusão associado. A alteração do estado altera a % de conclusão.
setting_work_package_properties: "Propriedades das tarefas"
setting_work_package_startdate_is_adddate: "Utilizar a data atual como data de início para novos pacotes de trabalho"
setting_work_packages_projects_export_limit: "Pacotes de trabalho / limite de exportação de projetos"
@@ -3503,26 +3503,26 @@ pt-PT:
progress:
label_note: "Nota:"
modal:
work_based_help_text: "Each field is automatically calculated from the two others when possible."
work_based_help_text_pre_14_4_without_percent_complete_edition: "% Complete is automatically derived from Work and Remaining work."
work_based_help_text: "Cada campo é calculado automaticamente a partir dos outros dois, sempre que possível."
work_based_help_text_pre_14_4_without_percent_complete_edition: "A % de conclusão é derivada automaticamente do Trabalho e do Trabalho restante."
status_based_help_text: "A % de conclusão é definida pelo estado do pacote de trabalho."
migration_warning_text: "No modo de cálculo do progresso com base no trabalho, a % de conclusão não pode ser definida manualmente e está ligada ao Trabalho. O valor existente foi mantido, mas não pode ser editado. Introduza primeiro o Trabalho."
derivation_hints:
done_ratio:
cleared_because_remaining_work_is_empty: "Cleared because Remaining work is empty."
cleared_because_work_is_0h: "Cleared because Work is 0h."
derived: "Derived from Work and Remaining work."
cleared_because_remaining_work_is_empty: "Apagado porque o Trabalho restante está vazio."
cleared_because_work_is_0h: "Apagado porque o Trabalho é 0h."
derived: "Derivado de Trabalho e Trabalho restante."
estimated_hours:
cleared_because_remaining_work_is_empty: "Cleared because Remaining work is empty."
derived: "Derived from Remaining work and % Complete."
same_as_remaining_work: "Set to same value as Remaining work."
cleared_because_remaining_work_is_empty: "Apagado porque o Trabalho restante está vazio."
derived: "Derivado do Trabalho restante e da % de conclusão."
same_as_remaining_work: "Defina o mesmo valor que Trabalho restante."
remaining_hours:
cleared_because_work_is_empty: "Cleared because Work is empty."
cleared_because_percent_complete_is_empty: "Cleared because % Complete is empty."
decreased_like_work: "Decreased by the same amount as Work."
derived: "Derived from Work and % Complete."
increased_like_work: "Increased by the same amount as Work."
same_as_work: "Set to same value as Work."
cleared_because_work_is_empty: "Apagado porque o Trabalho está vazio."
cleared_because_percent_complete_is_empty: "Apagado porque a % de conclusão está vazia."
decreased_like_work: "Diminuído na mesma quantidade que o Trabalho."
derived: "Derivado do Trabalho e da % de conclusão."
increased_like_work: "Aumentado na mesma quantidade que o Trabalho."
same_as_work: "Defina o mesmo valor que Trabalho."
permissions:
comment: "Comentário"
comment_description: "Pode ver e comentar este pacote de trabalho."
+2 -2
View File
@@ -2433,8 +2433,8 @@ ru:
label_role_plural: "Роли"
label_role_search: "Назначить роль для новых участников"
label_scm: "SCM"
label_scroll_left: "Scroll left"
label_scroll_right: "Scroll right"
label_scroll_left: "Прокрутить влево"
label_scroll_right: "Прокрутить вправо"
label_search: "Поиск"
label_search_by_name: "Поиск по имени"
label_send_information: "Отправить новые учетные данные пользователю"
+84 -84
View File
@@ -207,12 +207,12 @@ uk:
reorder_confirmation: "Увага! Поточний порядок доступних значень буде втрачено. Продовжити?"
instructions:
is_required: "Позначте користувацьке поле як обов’язкове. Так його потрібно буде заповнювати під час створення нових або оновлення наявних ресурсів."
is_required_for_project: "Check to enable this attribute and make it required in all projects. It cannot be deactived for individual projects."
is_required_for_project: "Установіть прапорець, щоб увімкнути цей атрибут і зробити його обов’язковим в усіх проєктах. Його не можна деактивувати для окремих проєктів."
is_for_all: "Позначте користувацьке поле як доступне в усіх наявних і нових проєктах."
searchable: "Включіть значення полів під час використання функції глобального пошуку."
searchable_for_project: "Check to make this attribute available as a filter in project lists."
searchable_for_project: "Установіть прапорець, щоб зробити цей атрибут доступним як фільтр у списках проєктів."
editable: "Дозвольте користувачам самостійно редагувати це поле."
admin_only: "Check to make this attribute only visible to administrators. Users without admin rights will not be able to view or edit it."
admin_only: "Установіть прапорець, щоб зробити цей атрибут видимим лише для адміністраторів. Користувачі без прав адміністратора не зможуть переглядати або редагувати його."
is_filter: >
Дозвольте відображати користувацьке поле у фільтрі в поданнях пакета робіт. Зверніть увагу: користувацьке поле відображатиметься в глобальних поданнях, лише якщо встановлено прапорець «Для всіх проєктів».
tab:
@@ -260,8 +260,8 @@ uk:
no_results_title_text: Наразі немає проектів
no_results_content_text: Створіть новий проект
search:
label: Project name filter
placeholder: Search by project name
label: Фільтр назв проєктів
placeholder: Пошук за назвою проєкту
lists:
active: "Активні проєкти"
my: "Мої проєкти"
@@ -295,7 +295,7 @@ uk:
actions:
label_enable_single: "Увімкнено в цьому проєкті; натисніть, щоб вимкнути"
label_disable_single: "Вимкнено в цьому проєкті; натисніть, щоб увімкнути"
remove_from_project: "Remove from project"
remove_from_project: "Вилучити з проєкту"
label_enable_all: "Увімкнути все"
label_disable_all: "Вимкнути все"
is_required_blank_slate:
@@ -399,8 +399,8 @@ uk:
my:
access_token:
create_dialog:
header: The %{type} token has been generated
warning: Note that this is the only time you will see this token, make sure to copy it now.
header: Маркер %{type} згенеровано
warning: Зверніть увагу, що ви більше не побачите цей маркер, тому обов’язково скопіюйте його зараз.
errors:
token_name_blank: "Укажіть ім’я маркера API"
token_name_in_use: "Це ім’я маркера API уже використовується; виберіть інше"
@@ -632,7 +632,7 @@ uk:
possible_values: "Можливі значення"
regexp: "Регулярний вираз"
searchable: "Доступно для пошуку"
admin_only: "Admin-only"
admin_only: "Тільки для адміністраторів"
custom_value:
value: "Значення"
doorkeeper/application:
@@ -702,7 +702,7 @@ uk:
versions: "Версії"
work_packages: "Пакет робіт"
project_custom_field:
is_required: "Required for all projects"
is_required: "Обов’язково для всіх проєктів"
custom_field_section: Розділ
query:
column_names: "Стовпці"
@@ -1048,10 +1048,10 @@ uk:
assigned_to:
format: "%{message}"
done_ratio:
does_not_match_work_and_remaining_work: "does not match Work and Remaining work"
cannot_be_set_when_work_is_zero: "cannot be set when Work is 0h"
must_be_set_when_remaining_work_is_set: "required when Remaining work is set."
must_be_set_when_work_and_remaining_work_are_set: "required when Work and Remaining work are set."
does_not_match_work_and_remaining_work: "не збігається зі значеннями атрибутів «Робота» й «Залишок роботи»"
cannot_be_set_when_work_is_zero: "не можна встановити, коли атрибут «Робота» дорівнює 0 год"
must_be_set_when_remaining_work_is_set: "потрібно вказати, якщо визначено атрибут «Залишок роботи»."
must_be_set_when_work_and_remaining_work_are_set: "потрібно вказати, якщо визначено атрибути «Робота» й «Залишок роботи»."
inclusion: "має бути в діапазоні від 0 до 100."
due_date:
not_start_date: "не на дату початку, хоча це потрібно для етапів."
@@ -1081,17 +1081,17 @@ uk:
does_not_exist: "Указана категорія не існує."
estimated_hours:
not_a_number: "– не дійсна тривалість."
cant_be_inferior_to_remaining_work: "cannot be lower than Remaining work."
must_be_set_when_remaining_work_and_percent_complete_are_set: "required when Remaining work and % Complete are set."
cant_be_inferior_to_remaining_work: "має дорівнювати значенню «Залишок роботи» або перевищувати його."
must_be_set_when_remaining_work_and_percent_complete_are_set: "потрібно вказати, якщо визначено атрибути «Залишок роботи» й «% завершення»."
remaining_hours:
not_a_number: "– не дійсна тривалість."
cant_exceed_work: "cannot be higher than Work."
must_be_set_when_work_is_set: "required when Work is set."
must_be_set_when_work_and_percent_complete_are_set: "required when Work and % Complete are set."
cant_exceed_work: "не може перевищувати значення атрибута «Робота»."
must_be_set_when_work_is_set: "потрібно вказати, якщо визначено атрибут «Робота»."
must_be_set_when_work_and_percent_complete_are_set: "потрібно вказати, якщо визначено атрибути «Робота» й «% завершення»."
must_be_set_to_zero_hours_when_work_is_set_and_percent_complete_is_100p: >-
must be 0h when Work is set and % Complete is 100%.
має дорівнювати 0 год, якщо визначено атрибути «Робота» й «% завершення».
must_be_empty_when_work_is_empty_and_percent_complete_is_100p: >-
must be empty when Work is empty and % Complete is 100%.
має бути пустим, якщо визначено атрибути «Робота» й «% завершення».
readonly_status: "Пакет робіт перебуває в стані лише для читання, тому його атрибути не можна змінити."
type:
attributes:
@@ -1185,10 +1185,10 @@ uk:
other: "Роль"
status: "Стан робочого пакета"
token/api:
one: Access token
few: Access tokens
many: Access tokens
other: Access tokens
one: Маркер доступу
few: Маркери доступу
many: Маркери доступу
other: Маркери доступу
type: "Тип"
user: "Користувач"
version: "Версія"
@@ -1714,10 +1714,10 @@ uk:
subproject: "Підпроєкт: %{name}"
export:
dialog:
title: "Export"
submit: "Export"
title: "Експорт"
submit: "Експортувати"
format:
label: "File format"
label: "Формат файлу"
options:
csv:
label: "CSV"
@@ -1726,58 +1726,58 @@ uk:
xls:
label: "XLS"
columns:
input_label_report: "Add columns to attribute table"
input_caption_report: "By default all attributes added as columns in the work package list are selected. Long text fields are not available in the attribute table, but can be displayed below it."
input_caption_table: "By default all attributes added as columns in the work package list are selected. Long text fields are not available in table based exports."
input_label_report: "Додати стовпці в таблицю атрибутів"
input_caption_report: "За замовчуванням вибрано всі атрибути, додані як стовпці в список пакетів робіт. Довгі текстові поля недоступні в таблиці атрибутів, але можуть відображатися під нею."
input_caption_table: "За замовчуванням вибрано всі атрибути, додані як стовпці в список пакетів робіт. Довгі текстові поля недоступні в експортах даних таблиці."
pdf:
export_type:
label: "PDF export type"
label: "Тип експорту PDF"
options:
table:
label: "Table"
caption: "Export the work packages list in a table with the desired columns."
label: "Таблиця"
caption: "Експортуйте список пакетів робіт у таблицю з потрібними стовпцями."
report:
label: "Report"
caption: "Export the work package on a detailed report of all work packages in the list."
label: "Звіт"
caption: "Експортуйте пакет робіт у докладний звіт про всі пакети робіт у списку."
gantt:
label: "Gantt chart"
caption: "Export the work packages list in a Gantt diagram view."
label: "Діаграма Ґанта"
caption: "Експортуйте список пакетів робіт у вигляді діаграми Ґанта."
include_images:
label: "Include images"
caption: "Exclude images to reduce the size of the PDF export."
label: "Включити зображення"
caption: "Виключіть зображення, щоб зменшити розмір експорту PDF."
gantt_zoom_levels:
label: "Zoom levels"
caption: "Select what is the zoom level for dates displayed in the chart."
label: "Рівні масштабування"
caption: "Виберіть рівень масштабування для дат, що відображаються на діаграмі."
options:
days: "Days"
weeks: "Weeks"
months: "Months"
quarters: "Quarters"
days: "Дні"
weeks: "Тижні"
months: "Місяці"
quarters: "Квартали"
column_width:
label: "Table column width"
label: "Ширина стовпців таблиці"
options:
narrow: "Narrow"
medium: "Medium"
wide: "Wide"
very_wide: "Very wide"
narrow: "Вузькі"
medium: "Середні"
wide: "Широкі"
very_wide: "Дуже широкі"
paper_size:
label: "Paper size"
caption: "Depending on the chart size more than one page might be exported."
label: "Розмір паперу"
caption: "Залежно від розміру діаграми може бути експортовано більше ніж одну сторінку."
long_text_fields:
input_caption: "By default all long text fields are selected."
input_label: "Add long text fields"
input_placeholder: "Search for long text fields"
drag_area_label: "Manage long text fields"
input_caption: "За замовчуванням вибрано всі довгі текстові поля."
input_label: "Додати довгі текстові поля"
input_placeholder: "Пошук довгих текстових полів"
drag_area_label: "Керувати довгими текстовими полями"
xls:
include_relations:
label: "Include relations"
caption: "This option will create a duplicate of each work package for every relation this has with another work package."
label: "Включити зв’язки"
caption: "Цей параметр створює дублікат кожного пакета робіт для кожного його зв’язку з іншим пакетом робіт."
include_descriptions:
label: "Include descriptions"
caption: "This option will add a description column in raw format."
your_work_packages_export: "Work packages are being exported"
succeeded: "Export completed"
failed: "An error has occurred while trying to export the work packages: %{message}"
label: "Включити описи"
caption: "Цей параметр додає стовпець опису в необробленому форматі."
your_work_packages_export: "Пакет робіт експортуються"
succeeded: "Експорт завершено"
failed: "Під час спроби експортувати пакети робіт сталася помилка: %{message}"
format:
atom: "Atom"
csv: "CSV"
@@ -2302,8 +2302,8 @@ uk:
label_next_week: "Наступний тиждень"
label_no_change_option: "(Немає змін)"
label_no_data: "Немає даних для відображення"
label_no_due_date: "no finish date"
label_no_start_date: "no start date"
label_no_due_date: "немає дати завершення"
label_no_start_date: "немає дати початку"
label_no_parent_page: "Немає початкової сторінки"
label_nothing_display: "Нічого не відображається"
label_nobody: "жодні"
@@ -2428,8 +2428,8 @@ uk:
label_role_plural: "Роль"
label_role_search: "Призначити роль для нових членів"
label_scm: "Тип сховища"
label_scroll_left: "Scroll left"
label_scroll_right: "Scroll right"
label_scroll_left: "Гортати вліво"
label_scroll_right: "Гортати вправо"
label_search: "Пошук"
label_search_by_name: "Пошук за назвою"
label_send_information: "Надіслати нові облікові дані користувачу"
@@ -3188,9 +3188,9 @@ uk:
setting_work_package_done_ratio_field: "На основі роботи"
setting_work_package_done_ratio_status: "На основі статусу"
setting_work_package_done_ratio_explanation_pre_14_4_without_percent_complete_edition_html: >
In <b>work-based</b> mode, % Complete is calculated from how much work is done in relation to total work. In <b>status-based</b> mode, each status has a % Complete value associated with it. Changing status will change % Complete.
У режимі <b>на основі роботи</b> значення атрибута «% завершення» залежить від частки виконаної роботи відносно загального обсягу робіт. У режимі <b>на основі статусу</b> кожен статус має пов’язане з ним значення атрибута «% завершення». У разі змінення статусу змінюється й значення атрибута «% завершення».
setting_work_package_done_ratio_explanation_html: >
In <b>work-based</b> mode, % Complete can be freely set to any value. If you optionally enter a value for Work, Remaining work will automatically be derived. In <b>status-based</b> mode, each status has a % Complete value associated with it. Changing status will change % Complete.
У режимі <b>на основі роботи</b> атрибут «% завершення» може мати будь-яке значення. Якщо визначено атрибут «Робота», з нього автоматично виводиться значення атрибута «Залишок роботи». У режимі <b>на основі статусу</b> кожен статус має пов’язане з ним значення атрибута «% завершення». У разі змінення статусу змінюється й значення атрибута «% завершення».
setting_work_package_properties: "Властивості робочого пакета"
setting_work_package_startdate_is_adddate: "Використовувати поточну дату в якості дати початку роботи для нових пакетів"
setting_work_packages_projects_export_limit: "Ліміт експорту пакетів робіт / проєктів"
@@ -3574,26 +3574,26 @@ uk:
progress:
label_note: "Примітка."
modal:
work_based_help_text: "Each field is automatically calculated from the two others when possible."
work_based_help_text_pre_14_4_without_percent_complete_edition: "% Complete is automatically derived from Work and Remaining work."
work_based_help_text: "Кожне поле автоматично обчислюється на основі двох інших, коли це можливо."
work_based_help_text_pre_14_4_without_percent_complete_edition: "Значення атрибута «% завершення» автоматично виводиться з атрибутів «Робота» й «Залишок роботи»."
status_based_help_text: "Значення параметра «% завершення» визначається статусом пакета робіт."
migration_warning_text: "У режимі обчислення прогресу на основі робіт значення параметра «% завершення» не можна встановити вручну й прив’язати до значення параметра «Робота». Наявне значення збережено, але його не можна змінити. Спочатку визначте параметр «Робота»."
derivation_hints:
done_ratio:
cleared_because_remaining_work_is_empty: "Cleared because Remaining work is empty."
cleared_because_work_is_0h: "Cleared because Work is 0h."
derived: "Derived from Work and Remaining work."
cleared_because_remaining_work_is_empty: "Очищено, оскільки атрибут «Залишок роботи» пустий."
cleared_because_work_is_0h: "Очищено, оскільки атрибут «Робота» дорівнює 0 год."
derived: "Виведено з атрибутів «Робота» й «Залишок роботи»."
estimated_hours:
cleared_because_remaining_work_is_empty: "Cleared because Remaining work is empty."
derived: "Derived from Remaining work and % Complete."
same_as_remaining_work: "Set to same value as Remaining work."
cleared_because_remaining_work_is_empty: "Очищено, оскільки атрибут «Залишок роботи» пустий."
derived: "Виведено з атрибутів «Залишок роботи» й «% завершення»."
same_as_remaining_work: "Збігається зі значенням атрибута «Залишок роботи»."
remaining_hours:
cleared_because_work_is_empty: "Cleared because Work is empty."
cleared_because_percent_complete_is_empty: "Cleared because % Complete is empty."
decreased_like_work: "Decreased by the same amount as Work."
derived: "Derived from Work and % Complete."
increased_like_work: "Increased by the same amount as Work."
same_as_work: "Set to same value as Work."
cleared_because_work_is_empty: "Очищено, оскільки атрибут «Робота» пустий."
cleared_because_percent_complete_is_empty: "Очищено, оскільки атрибут «% завершення» пустий."
decreased_like_work: "Зменшено на ту саму величину, що й атрибут «Робота»."
derived: "Виведено з атрибутів «Робота» й «% завершення»."
increased_like_work: "Збільшено на ту саму величину, що й атрибут «Робота»."
same_as_work: "Збігається зі значенням атрибута «Робота»."
permissions:
comment: "Коментування"
comment_description: "Може переглядати й коментувати цей пакет робіт."
+2 -2
View File
@@ -2325,8 +2325,8 @@ zh-CN:
label_role_plural: "角色"
label_role_search: "将角色分配给新成员"
label_scm: "SCM"
label_scroll_left: "Scroll left"
label_scroll_right: "Scroll right"
label_scroll_left: "向左滚动"
label_scroll_right: "向右滚动"
label_search: "搜索"
label_search_by_name: "按名称搜索"
label_send_information: "向用户发送新的凭据"
+2 -2
View File
@@ -2327,8 +2327,8 @@ zh-TW:
label_role_plural: "角色"
label_role_search: "為新成員分配角色"
label_scm: "SCM"
label_scroll_left: "Scroll left"
label_scroll_right: "Scroll right"
label_scroll_left: "向左捲動"
label_scroll_right: "向右捲動"
label_search: "搜尋"
label_search_by_name: "以名稱搜尋"
label_send_information: "寄送密碼給使用者"
-6
View File
@@ -717,9 +717,6 @@ Rails.application.routes.draw do
defaults: { tab: :overview },
as: :details,
work_package_split_view: true
get "/:work_package_id/close",
action: :close_split_view
end
resources :notifications, only: :index do
@@ -748,9 +745,6 @@ Rails.application.routes.draw do
end
if OpenProject::Configuration.lookbook_enabled?
# Dummy route for the split screen controller
get :close_split_view, controller: "homescreen"
mount Lookbook::Engine, at: "/lookbook"
end
@@ -64,7 +64,7 @@ OpenProject recommends these authentication mechanisms:
- For any external connection (Database, LDAP, etc.), OpenProject uses openssl library for the host or container's openssl certificate store. Use your distribution's mechanisms to add verified certificate or certificate chains. For more information, see the [Ruby OpenSSL X509 Store documentation](https://ruby-doc.org/stdlib-2.4.0/libdoc/openssl/rdoc/OpenSSL/X509/Store.html).
- For smaller to medium organizations with no centralized authentication mechanism, use the internal username / password authentication mechanism for secure storing of your user's credentials using BCrypt salted cryptographic hash function.
- For organizations with a centralized and accessible LDAP server, [OpenProject provides LDAP userbind authentication](../../../system-admin-guide/authentication/ldap-authentication/) to forward the authentication request to your LDAP server. Use TLS or LDAPS encrypted connections to the LDAP server to ensure transport level security. Optionally, synchronize roles and permissions using the [LDAP Group sync functionality](../../../system-admin-guide/authentication/ldap-authentication/ldap-group-synchronization/).
- For organizations with a centralized and accessible LDAP server, [OpenProject provides LDAP userbind authentication](../../../system-admin-guide/authentication/ldap-connections/) to forward the authentication request to your LDAP server. Use TLS or LDAPS encrypted connections to the LDAP server to ensure transport level security. Optionally, synchronize roles and permissions using the [LDAP Group sync functionality](../../../system-admin-guide/authentication/ldap-connections/ldap-group-synchronization/).
- If your organization operates a central authentication services, it is very likely it supports one of the standard remote authentication mechanisms for single sign-on, such as [OpenID connect](../../../system-admin-guide/authentication/openid-providers/), [SAML](../../../system-admin-guide/authentication/saml/), or [Kerberos](../../../system-admin-guide/authentication/kerberos/). Use these mechanisms to ensure a standardized and secure authentication of users without requiring the storage of any credentials at OpenProject while providing a high level of usability due to centralized logins.
**References**
+1 -1
View File
@@ -6,7 +6,7 @@ sidebar_navigation:
# Set up a development LDAP server
**Note:** This guide is targeted only at development with OpenProject. For the LDAP configuration guide, please see this [here](../../system-admin-guide/authentication/ldap-authentication/)
**Note:** This guide is targeted only at development with OpenProject. For the LDAP configuration guide, please see this [here](../../system-admin-guide/authentication/ldap-connections/)
OpenProject comes with a built-in LDAP server for development purposes. This server uses [ladle gem](https://github.com/NUBIC/ladle)
to run an underlying apacheDS server.
@@ -82,7 +82,7 @@ Access to the database (including the PostgreSQL tables) is restricted for the E
## Can I use LDAP authentication in my Enterprise cloud environment?
You can use [LDAP authentication](../../../system-admin-guide/authentication/ldap-authentication/) in your cloud environment. **However**, usually LDAP servers will _not_ be exposed to the internet, which they have to be for this to work.
You can use [LDAP authentication](../../../system-admin-guide/authentication/ldap-connections/) in your cloud environment. **However**, usually LDAP servers will _not_ be exposed to the internet, which they have to be for this to work.
Whitelisting IPs is no option since the OpenProject servers' IPs are not permanent and can change without notice.
Moreover we do not have a mechanism to list all IP addresses currently in use.
+1 -1
View File
@@ -84,7 +84,7 @@ However, if you're still using an old OpenProject subscription there may be limi
### What is the difference between Enterprise on-premises and Community edition regarding LDAP?
In the Community edition and in the Enterprise on-premises edition you can use the standard LDAP authentication. However, the Enterprise on-premises edition also includes LDAP group synchronization. This allows you to synchronize group members from LDAP with groups in OpenProject. The respective documentation can be found [here](../system-admin-guide/authentication/ldap-authentication/ldap-group-synchronization/#synchronize-ldap-and-openproject-groups-enterprise-add-on).
In the Community edition and in the Enterprise on-premises edition you can use the standard LDAP authentication. However, the Enterprise on-premises edition also includes LDAP group synchronization. This allows you to synchronize group members from LDAP with groups in OpenProject. The respective documentation can be found [here](../system-admin-guide/authentication/ldap-connections/ldap-group-synchronization/#synchronize-ldap-and-openproject-groups-enterprise-add-on).
## How to ... in OpenProject
+1 -1
View File
@@ -56,7 +56,7 @@ In OpenProject, authentication is an important element to guarantee a data prote
- [See answers to frequently asked questions (FAQ) for authentication](../system-admin-guide/authentication/authentication-faq/)
- [See our blog post on multi-factor authentication to improve data security](https://www.openproject.org/blog/multi-factor-authentication-for-data-security/)
- [Read more about Two-factor authentication (2FA) in OpenProject](../system-admin-guide/authentication/two-factor-authentication/)
- [Read more about LDAP Authentication in OpenProject](../system-admin-guide/authentication/ldap-authentication/)
- [Read more about LDAP Authentication in OpenProject](../system-admin-guide/authentication/ldap-connections/)
## B
@@ -22,5 +22,5 @@ OpenProject can be setup in three different ways:
### Do you have a step-by-step guide to installing OpenProject Enterprise on-premises under Active Directory?
We have a guide on [how to use OpenProject with your Active Directory](../../system-admin-guide/authentication/ldap-authentication/).
In addition, with the Enterprise on-premises edition it is also possible to [link LDAP groups with groups in OpenProject](../../system-admin-guide/authentication/ldap-authentication/ldap-group-synchronization/).
We have a guide on [how to use OpenProject with your Active Directory](../../system-admin-guide/authentication/ldap-connections/).
In addition, with the Enterprise on-premises edition it is also possible to [link LDAP groups with groups in OpenProject](../../system-admin-guide/authentication/ldap-connections/ldap-group-synchronization/).
@@ -191,7 +191,12 @@ sudo wget -O /etc/yum.repos.d/openproject.repo \
If it is not already enabled, make sure to enable [Extra Packages for Enterprise Linux](https://fedoraproject.org/wiki/EPEL) (EPEL).
```shell
sudo dnf install -y epel-release
sudo subscription-manager repos --enable codeready-builder-for-rhel-9-$(arch)-rpms
sudo dnf install https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm
# if using CentOS 9:
# sudo dnf config-manager --set-enabled crb
# sudo dnf install https://dl.fedoraproject.org/pub/epel/epel{,-next}-release-latest-9.noarch.rpm
```
Download the OpenProject package:
@@ -97,11 +97,12 @@ If you want to perform changes to your configuration or are unsure what steps ar
Note that this still takes previous values into consideration. Values that should not change from your previous configurations can be skipped by pressing `<Return>`. This also applies for steps with passwords, which are shown as empty even though they may have a value. Skipping those steps equals to re-use the existing value.
## Compose-based installation
> **Note**: Please make sure the git repository with the docker-compose.yml file is up-to-date. If you're using an old version of the repository, the update might fail.
When using the Compose-based docker installation, you can simply do the following:
```shell
docker-compose pull
docker-compose pull --ignore-buildable
docker-compose up -d
```
+183
View File
@@ -0,0 +1,183 @@
# OpenProject 14.5.0
Release date: 2024-09-11
We released OpenProject [OpenProject 14.5.0](https://community.openproject.org/versions/1411). The release contains several bug fixes and we recommend updating to the newest version.
In these Release Notes, we will give an overview of important feature changes as well as breaking changes for developers. At the end, you will find a complete list of all changes and bug fixes.
## Important feature changes
### Keep and restore local versions of WYSIWYG content changes
As of OpenProject 14.5, every WYSIWYG content change is saved locally so that you can restore it if the editor crashes (e.g. if you reload the page with unsaved changes). OpenProject uses WYSIWYG editors in work package descriptions, wikis and forums. To access the locally saved content of previous changes, click on the new icon we have added to the top of your editor. If there are unsaved changes to the content, you will see a drop-down list with the changes listed, each showing the time and word count of the respective content version.
![Example screenshot of a locally stored content version in WYSIWYG editor](openproject-14-5-wysiwyg-editor.png)
Please note that locally stored means that only you can see and restore your unsaved changes.
### Enable a storage for multiple projects at once
Admins responsible for storages in OpenProject can now save time by enabling a storage for multiple projects at once. A new **Enabled in projects** tab is added to the edit storage view. Here, admins see a list of all the projects that the storage is activated in. They can now add projects to the storage by clicking the green button **Add projects**. Here is an example of how this looks like for a Nextcloud file storage:
![Example screenshot of the admin page of a Nextcloud file storage, showing the 'Enabled in projects' tab](openproject-14-5-multiple-projects-to-storage.png)
This feature works for all [external file storages](../../system-admin-guide/files/external-file-storages/) that are currently possible with OpenProject.
### Export work package lists in an updated modal with additional settings
With OpenProject 14.5., we updated the modal for exporting work package lists. The new modal is more intuitive to use and has more options. It not only looks much better now, users can also export their work package list in form of a Gantt chart. Also, they can now select and reorder the columns to be displayed in the export directly in the modal.
![Screenshot of the work package export modal for OpenProject 14.5](openproject-14-5-export-work-packages-modal.png)
### Release to Community: Display custom field columns/filters in project lists
From time to time an Enterprise add-on is released for the free community version. We are happy to announce that with OpenProject 14.5, custom field columns/filters can be displayed in project lists in all editions. This means that also Community users can now filter and sort their project lists using custom fields in order to create the best possible overview.
### Use CloudFlare Turnstile as Captcha
In addition to reCAPTCHA, administrators can now use [CloudFlare Turnstile](https://developers.cloudflare.com/turnstile/) as Captcha. Cloudflare Turnstile is an alternative to Recaptcha that avoids user interaction.
To use Cloudflare Turnstile with OpenProject, you need to configure the reCAPTCHA settings in the Cloudflare dashboard. Read more in our [system admin guide](../../system-admin-guide/authentication/recaptcha/).
![Screenshot showing OpenProject authentication administration with dropdown to choose CloudFlare Turnstile as Captcha](openproject-14-5-recaptcha-turnstile.png)
> [!NOTE]
> A special Thanks goes to [Aaron Dewes](https://github.com/AaronDewes), the initiator and Community contributor for this feature. It is very much appreciated! 💙
### Improved filter search for custom project lists
Filtering and searching project lists has been improved with OpenProject 14.5:
1. A fixed search field has been added so that you can quickly enter a project name and search for it.
2. When selecting a new filter, the project list below will immediately reload and display the selected filters.
See our user guide to learn more about [project lists and how to filter them](../../user-guide/projects/project-lists/#project-lists-filters).
### PDF export of meeting agenda and meeting
When pressing the key combination for printing e.g. **cmd + P** for mac users or **STRG + P** for Windows users you can create your meeting as PDF, download and print it. This has been improved with OpenProject 14.5, so that, for example, meeting buttons like **+ Add** are not displayed in the PDF.
### Meetings: Disable by default "Send out invitation emails upon creation"
When creating a new meeting in OpenProject, you can choose wheather you want to send out invitation emails or not. Up until now, this has been enabled by default. Due to user feedback, this option is now disabled per default.
### Rename actions in work package dropdown menu
We have renamed some of the actions in the work package dropdown menu. They should now be easier to understand and more intuitive to use for new users. Here is an overview of the renaming:
| | Old name | New name |
| ---- | --------------------------- | ------------------------------------------------------------ |
| 1 | Change project | Move to another project |
| 2 | Copy | Duplicate |
| 3 | Copy to other project | Duplicate to other project |
<!--more-->
## Breaking changes for developers
In this release, the dynamic bootstrapping of Angular components has been removed. Instead, use `Angular Elements` to define it as a custom element. See our [openproject-proto\_plugin prototypical plug-in](https://github.com/opf/openproject-proto_plugin) to see how to do that.
## Bug fixes and changes
<!-- Warning: Anything within the below lines will be automatically removed by the release script -->
<!-- BEGIN AUTOMATED SECTION -->
- Feature: PDF export of meeting agenda and meeting \[[#22517](https://community.openproject.org/wp/22517)\]
- Feature: Work packages export modal with settings & Job status modal \[[#48274](https://community.openproject.org/wp/48274)\]
- Feature: Enable a storage for multiple projects at once \[[#49212](https://community.openproject.org/wp/49212)\]
- Feature: Update PageHeaders & SubHeaders in the My account pages \[[#53807](https://community.openproject.org/wp/53807)\]
- Feature: Update PageHeaders & SubHeaders in the Admin pages \[[#53808](https://community.openproject.org/wp/53808)\]
- Feature: Always visible text filter in project list \[[#55234](https://community.openproject.org/wp/55234)\]
- Feature: Meetings: Disable by default "Send out invitation emails upon creation" \[[#56275](https://community.openproject.org/wp/56275)\]
- Feature: Create 14.5 release teaser \[[#56535](https://community.openproject.org/wp/56535)\]
- Feature: Make Project List and header view turbo aware \[[#56557](https://community.openproject.org/wp/56557)\]
- Feature: Release custom field columns/filters in project lists to Community Edition \[[#56573](https://community.openproject.org/wp/56573)\]
- Feature: Include multiple 24px icons to our library \[[#56647](https://community.openproject.org/wp/56647)\]
- Feature: Enlarge meeting history pop-up / reduce scrolling \[[#56814](https://community.openproject.org/wp/56814)\]
- Feature: Move some actions in the Notification center into the SubHeader \[[#56864](https://community.openproject.org/wp/56864)\]
- Feature: Change the styling of the split screen layout in the notification center \[[#56866](https://community.openproject.org/wp/56866)\]
- Feature: Rename actions in work package dropdown menu \[[#56900](https://community.openproject.org/wp/56900)\]
- Feature: Add numbers to tabs in new notification split screen \[[#56918](https://community.openproject.org/wp/56918)\]
- Feature: Clarify meaning of "Send e-mails" settings in meetings creation form \[[#57261](https://community.openproject.org/wp/57261)\]
- Feature: Captcha support for CloudFlare Turnstile \[[#57328](https://community.openproject.org/wp/57328)\]
- Feature: Full height split screen for notifications \[[#57341](https://community.openproject.org/wp/57341)\]
- Feature: Administration for workflows: Uncheck box by default to display all statuses \[[#57421](https://community.openproject.org/wp/57421)\]
- Feature: Store revisions of WYSIWYG content in local storage \[[#57490](https://community.openproject.org/wp/57490)\]
- Bugfix: \[API doc\] GET /projects missing params and incorrect response \[[#40642](https://community.openproject.org/wp/40642)\]
- Bugfix: OpenAPI Specs wrong for creating work package relations \[[#40942](https://community.openproject.org/wp/40942)\]
- Bugfix: API Description and OpenAPI Spec not consistent \[[#40945](https://community.openproject.org/wp/40945)\]
- Bugfix: Truncaded custom fields in work package table (Browser: Edge) \[[#52890](https://community.openproject.org/wp/52890)\]
- Bugfix: GitLab integration pipeline status not updated \[[#54122](https://community.openproject.org/wp/54122)\]
- Bugfix: Wrong date format in notification email \[[#54136](https://community.openproject.org/wp/54136)\]
- Bugfix: Sort order of wiki pages in side-menu wrong / inconsistent \[[#54450](https://community.openproject.org/wp/54450)\]
- Bugfix: Contents being lost and updated to 'undefined' in wikis, documents and work packages \[[#54796](https://community.openproject.org/wp/54796)\]
- Bugfix: Gantt PDF export shows superfluous hyphen (-) when start or finish date is missing \[[#55088](https://community.openproject.org/wp/55088)\]
- Bugfix: Project attributes: Fix phrasing of "required" and "visible" options \[[#55299](https://community.openproject.org/wp/55299)\]
- Bugfix: Budget: Groups and placeholder users saved as "deleted user" \[[#55974](https://community.openproject.org/wp/55974)\]
- Bugfix: Direct upgrade from OpenProject 11 to 14 db migration RemoveDestroyedHelpTexts not working \[[#56043](https://community.openproject.org/wp/56043)\]
- Bugfix: Authorization::UnknownPermissionError happened in GET::API::V3::Root#/ \[[#56064](https://community.openproject.org/wp/56064)\]
- Bugfix: Project selector loses current project switching to "Favorites" selection and then back to "All" \[[#56144](https://community.openproject.org/wp/56144)\]
- Bugfix: Send invitation button broken when user tries to reinvite themselves \[[#56235](https://community.openproject.org/wp/56235)\]
- Bugfix: Breadcrumb and menu structure is inconsistent for Billing administration \[[#56643](https://community.openproject.org/wp/56643)\]
- Bugfix: Meeting timestamp in edit form not the same as in details \[[#56771](https://community.openproject.org/wp/56771)\]
- Bugfix: Internal error when trying to change 2FA settings that are enforced through ENV \[[#56821](https://community.openproject.org/wp/56821)\]
- Bugfix: FixDeletedDataJournals migration can fail sometimes \[[#56846](https://community.openproject.org/wp/56846)\]
- Bugfix: Backlogs and GitHub have unnecessarily nested menu nodes \[[#56920](https://community.openproject.org/wp/56920)\]
- Bugfix: Wording of error message for Nextcloud host in storage form is missleading \[[#56992](https://community.openproject.org/wp/56992)\]
- Bugfix: OpenProject Dark Mode: selection colour of table rows \[[#57003](https://community.openproject.org/wp/57003)\]
- Bugfix: Work package toolbar has double outline on left \[[#57004](https://community.openproject.org/wp/57004)\]
- Bugfix: Firefox cuts PDF export after the first page \[[#57027](https://community.openproject.org/wp/57027)\]
- Bugfix: Some status indicators are missing a border \[[#57031](https://community.openproject.org/wp/57031)\]
- Bugfix: New status field rendering not vertically aligned correctly in notification center \[[#57033](https://community.openproject.org/wp/57033)\]
- Bugfix: DB Migration 9.x to 14.3.0 Fails on Migrating to MyProjectPageToGrid \[[#57036](https://community.openproject.org/wp/57036)\]
- Bugfix: Switching tab in the notification center looses the current filters \[[#57067](https://community.openproject.org/wp/57067)\]
- Bugfix: Nextcloud "recheck connection" checks for GroupFolderApp though AMPF is deactivated \[[#57068](https://community.openproject.org/wp/57068)\]
- Bugfix: In the calendar widget on the My Page page, meetings are displayed with the wrong time \[[#57078](https://community.openproject.org/wp/57078)\]
- Bugfix: Default user avatar is too big for work package table rendering (safari) \[[#57093](https://community.openproject.org/wp/57093)\]
- Bugfix: OpenProject Dark Mode: CKEditor using too light colours e.g. for pressed buttons \[[#57103](https://community.openproject.org/wp/57103)\]
- Bugfix: Cannot download 2FA backup codes \[[#57146](https://community.openproject.org/wp/57146)\]
- Bugfix: OpenProject Dark Mode: diff view for description (and large text fields) not matching \[[#57151](https://community.openproject.org/wp/57151)\]
- Bugfix: Project filter in notification center is not correctly highlighted \[[#57154](https://community.openproject.org/wp/57154)\]
- Bugfix: Time and cost report : text of unit cost activity is displayed with html tag <i> \[[#57198](https://community.openproject.org/wp/57198)\]
- Bugfix: Meeting selection in work packages highly confusing \[[#57205](https://community.openproject.org/wp/57205)\]
- Bugfix: Attachment headlines are semi-transparent and overlapped by content \[[#57209](https://community.openproject.org/wp/57209)\]
- Bugfix: Webhook doesn't log all errors \[[#57277](https://community.openproject.org/wp/57277)\]
- Bugfix: Notifications for date alerts show name of a person \[[#57279](https://community.openproject.org/wp/57279)\]
- Bugfix: OpenProject Dark Mode: reiterate hover/active button colour \[[#57282](https://community.openproject.org/wp/57282)\]
- Bugfix: Sorting by custom field has strong impact on performance for the project list \[[#57305](https://community.openproject.org/wp/57305)\]
- Bugfix: Robots follow action links unnecessarily \[[#57316](https://community.openproject.org/wp/57316)\]
- Bugfix: Some previews in the Lookbook do not work \[[#57322](https://community.openproject.org/wp/57322)\]
- Bugfix: Number of meeting participants does not add up \[[#57392](https://community.openproject.org/wp/57392)\]
- Bugfix: 'Buy now' button is misplaced \[[#57394](https://community.openproject.org/wp/57394)\]
- Bugfix: Sorting by link custom field causes exception \[[#57401](https://community.openproject.org/wp/57401)\]
- Bugfix: Non-working days are not correctly highlighted in the Gantt chart \[[#57414](https://community.openproject.org/wp/57414)\]
- Bugfix: If user has LDAP and identity provider connection, my account shows duplicate instructions \[[#57521](https://community.openproject.org/wp/57521)\]
- Feature: Introduce a standardized component for PageHeaders & SubHeaders \[[#52399](https://community.openproject.org/wp/52399)\]
<!-- END AUTOMATED SECTION -->
<!-- Warning: Anything above this line will be automatically removed by the release script -->
## Acknowledging security research
We thank the following security researchers for approaching us with reports, warnings, and improvements to the OpenProject software and ecosystem:
- Lukasz D. Tulikowski ([@tulik](https://github.com/tulik))
- Iqra Aslam
If you would like to report a vulnerability or help us make OpenProject more secure through other ways, please see our [Statement on Security](../../security-and-privacy/statement-on-security/) for more information.
## Contributions
A very special thank you goes to the City of Cologne again for sponsoring features on project lists.
Also a big thanks to our Community members for reporting bugs and helping us identify and provide fixes.
Special thanks for reporting and finding bugs go to Frank Schmid, Michael Kluge, Mariusz Kamiński, Rince wind, Joris Ceelen, Michael Lathion, and Cornelius Heisse.
Last but not least, we are very grateful for our very engaged translation contributors on Crowdin, who translated quite a few OpenProject strings! This release we would like to highlight
- [Phi Công Nguyễn Vũ](https://crowdin.com/profile/nguyenvuphicong), for an outstanding number of translations into Vietnamese.
- [daniel chou](https://crowdin.com/profile/chou0214), for an outstanding number of translations into Chinese.
- [Sebvita_devinci](https://crowdin.com/profile/sebvita_devinci), for proof reading French translations.
- [Alin Marcu](https://crowdin.com/profile/deconfcom), for proof reading Romanian translations.
Would you like to help out with translations yourself? Then take a look at our [translation guide](../../development/translate-openproject/) and find out exactly how you can contribute. It is very much appreciated!
Binary file not shown.

After

Width:  |  Height:  |  Size: 192 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 159 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 132 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 108 KiB

@@ -330,7 +330,7 @@ flowchart LR
* Centralized identity and access management
* Single sign on and single sign out ([OIDC](../../system-admin-guide/authentication/openid-providers/), [SAML](../../system-admin-guide/authentication/saml/))
* [Syncing LDAP groups with OpenProject groups](../../system-admin-guide/authentication/ldap-authentication/ldap-group-synchronization/)
* [Syncing LDAP groups with OpenProject groups](../../system-admin-guide/authentication/ldap-connections/ldap-group-synchronization/)
#### Processed data
@@ -15,7 +15,7 @@ Navigate to **Administration → API and webhooks**.
![API settings in OpenProject administration](openproject_system_admin_guide_api.png)
Here, you can manage the **REST web service** to selectively control whether foreign applications may access your OpenProject API endpoints from within the browser. You can set the **maximum page size** the API will respond with. It will not be possible to perform API requests that return more values on a single page. You can also enable **write access to read-only attributes**, which will allow administrators to write static read-only attributes during creation, such as *createdAt* and *author*.
Here, you can manage the **REST web service** to selectively control whether foreign applications may access your OpenProject API endpoints from within the browser. This setting allows users to access the OpenProject API using an API token created from the users "My account" page. You can set the **maximum page size** the API will respond with. It will not be possible to perform API requests that return more values on a single page. You can also enable **write access to read-only attributes**, which will allow administrators to write static read-only attributes during creation, such as *createdAt* and *author*.
### Documentation
@@ -9,7 +9,7 @@ keywords: authentication
Configure **authentication** settings and authentication providers in OpenProject. To adapt these authentication settings, navigate to your user name and select -> *Administration* -> *Authentication*.
![Sys-admin-authentication](Sys-admin-authentication-1579787715984.png)
![Authentication settings in OpenProject system administration](openproject_system_guide_authentication_settings.png)
## Overview
@@ -20,5 +20,5 @@ Configure **authentication** settings and authentication providers in OpenProjec
| [OpenID providers](openid-providers) | How to configure OpenID providers in OpenProject. |
| [Two-factor authentication](two-factor-authentication) | Set up and manage two-factor authentication (2FA) in OpenProject. |
| [reCAPTCHA](recaptcha) | How to activate reCAPTCHA in OpenProject. |
| [LDAP authentication](ldap-authentication) | How to set up LDAP authentication in OpenProject. |
| [LDAP group synchronization](ldap-authentication/ldap-group-synchronization) | How to configure LDAP group synchronization in OpenProject. (Enterprise add-on) |
| [LDAP authentication](ldap-connections) | How to set up LDAP authentication in OpenProject. |
| [LDAP group synchronization](ldap-connections/ldap-group-synchronization) | How to configure LDAP group synchronization in OpenProject. (Enterprise add-on) |
Binary file not shown.

Before

Width:  |  Height:  |  Size: 40 KiB

@@ -41,7 +41,7 @@ Yes, for Enterprise on-premises and Community edition there is a [configuration
We support all authentication providers that support the SAML and OpenID Connect (OIDC) standards, such as Microsoft Entra ID, ADFS, CAS (with the OpenID connect overlay), Azure, Keycloak, Okta.
> [Note]
> [!NOTE]
> Please note that single sign-on is an Enterprise add-on and can only be activated for Enterprise cloud and Enterprise on-premises.
## Is it possible to use a custom SSO provider (e.g. Keycloak) with the Enterprise cloud edition?
@@ -51,7 +51,7 @@ For context: The connection of custom SSO providers is also described [here](../
## I want to connect AD and LDAP to OpenProject. Which attribute for authentication sources does OpenProject use?
You can freely define the attributes that are taken from LDAP sources [in the LDAP auth source configuration screen](../ldap-authentication/).
You can freely define the attributes that are taken from LDAP sources [in the LDAP auth source configuration screen](../ldap-connections/).
For group synchronization, OpenProject supports the AD/LDAP standard for groups via "member / memberOf". The attribute cannot be configured at this time.
## Is there an option to mass-create users in OpenProject via the LDAP?
@@ -60,6 +60,6 @@ There's no such option at the moment. However, you can activate the on-the-fly u
## I would like to assign work packages to users from different authentication sources (AD and OpenLDAP). Is this possible without the admin creating groups manually?
OpenProject supports creating groups and staffing them with users based on information found in an LDAP (or AD). This is called [LDAP group synchronization](../ldap-authentication/ldap-group-synchronization/#synchronize-ldap-and-openproject-groups-enterprise-add-on). The groups are created based on the name. So theoretically, it should be possible to have a single group that gets staffed by the information found in multiple LDAPs. This scenario has not been tested yet. Therefore, we cannot promise that it will work for sure. There is currently no other option.
OpenProject supports creating groups and staffing them with users based on information found in an LDAP (or AD). This is called [LDAP group synchronization](../ldap-connections/ldap-group-synchronization/#synchronize-ldap-and-openproject-groups-enterprise-add-on). The groups are created based on the name. So theoretically, it should be possible to have a single group that gets staffed by the information found in multiple LDAPs. This scenario has not been tested yet. Therefore, we cannot promise that it will work for sure. There is currently no other option.
Assigning work packages to multiple assignees is expected to be implemented in 2021. Once it is implemented, the source the user is defined in is no longer relevant.
@@ -7,7 +7,7 @@ keywords: authentication settings
---
# Authentication settings
To adapt general system **authentication settings**, navigate to *Administration -> Authentication* and choose -> *Settings*.
To adapt general system **authentication settings**, navigate to *Administration -> Authentication* and choose -> *Authentication Settings*.
You can adapt the following under the authentication settings:
@@ -15,7 +15,8 @@ You can adapt the following under the authentication settings:
1. Select if the **authentication is required** to access OpenProject. For versions 13.1 and higher of OpenProject, this setting will be checked by default
**Important note**: If you un-tick this box your OpenProject instance will be visible to the general public without logging in. The visibility of individual projects depends on [this setting](../../../user-guide/projects/#set-a-project-to-public).
> [!IMPORTANT]
> If you un-tick this box your OpenProject instance will be visible to the general public without logging in. The visibility of individual projects depends on [this setting](../../../user-guide/projects/#set-a-project-to-public).
2. Select an option for **self-registration**. Self-registration can either be **disabled**, or it can be allowed with the following criteria:
@@ -25,22 +26,23 @@ You can adapt the following under the authentication settings:
c) **Automatic account activation** means that a newly registered user will automatically be active.
**Note:** By default, self-registration is only applied to internal users (logging in with username and password). If you have an identity provider such as LDAP, SAML or OpenID Connect, use the respective settings in their configuration to control which users are applicable for automatic user creation.
> [!NOTE]
> By default, self-registration is only applied to internal users (logging in with username and password). If you have an identity provider such as LDAP, SAML or OpenID Connect, use the respective settings in their configuration to control which users are applicable for automatic user creation.
3. Define if the **email address should be used as login** name.
4. Define after how many days the **activation email sent to new users will expire**. Afterwards, you will have the possibility to [re-send the activation email](../../users-permissions/users/#resend-user-invitation-via-email) via the user settings.
![Sys-admin-authentication-settings](Sys-admin-authentication-settings.png)
![Authentication settings in OpenProject system administration](openproject_system_admin_guide_authentication_settings.png)
## Define a registration footer for registration emails
You can define a footer for your registration emails under -> *Administration* -> *Authentication* -> *Settings*.
You can define a footer for your registration emails under -> *Administration* -> *Authentication* -> *Authentication Settings*.
1. Choose for which **language** you want to define the registration footer.
2. Enter a **text for the registration footer**.
![Sys-admin-authentication-registration-footer](Sys-admin-authentication-registration-footer.png)
![Define registration footer for registration emails in OpenProject administration](openproject_system_admin_guide_authentication_settings_registration_footer.png)
## Configure password settings
@@ -53,7 +55,7 @@ You can change various settings to configure password preferences in OpenProject
5. Define the **number of the most recently used passwords that a user should not be allowed to reuse**.
6. Activate the **Forgot your password.** This way a user will be able to reset the own password via email.
![Sys-admin-authentication-passwords](Sys-admin-authentication-passwords-1579791010597.png)
![Password settings in OpenProject administration](openproject_system_admin_guide_authentication_settings_passwords.png)
## Other authentication settings
@@ -64,7 +66,6 @@ There can be defined a number of other authentication settings.
3. Enable or disable the **autologin option**. This allows a user to remain logged in, even if he/she leaves the site. If this option is activated, the “Stay signed in” option will appear on the login screen to be selected.
4. Activate the **session expiration option**. If you select this option, an additional field will open, where you will be able to define the **inactivity time duration before the session expiry**.
5. Define to **log user login, name, and mail address for all requests**.
6. **Enable REST web service**. This setting allows users to access the OpenProject API using an API token created from the users "My account" page.
7. Do not forget to **save** your changes.
![Sys-admin-authentication-other-settings](Sys-admin-authentication-other-settings.png)
![Additional authentication settings in OpenProject administration](openproject_system_admin_guide_authentication_settings_other.png)
Binary file not shown.

Before

Width:  |  Height:  |  Size: 58 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 28 KiB

@@ -1,7 +1,7 @@
---
sidebar_navigation:
title: Kerberos
priority: 800
priority: 200
description: How to set up integration of Kerberos for authentication with OpenProject.
keywords: Kerberos, authentication
@@ -10,7 +10,9 @@ keywords: Kerberos, authentication
# Kerberos integration
> **Note**: This documentation is valid for the OpenProject Enterprise edition only.
> [!NOTE]
> This documentation is valid for the OpenProject Enterprise edition only.
[Kerberos](https://web.mit.edu/kerberos/) allows you to authenticate user requests to a service within a computer network. You can integrate it with OpenProject with the use of [GSSAPI Apache module](https://github.com/gssapi/mod_auth_gssapi/) (`mod_auth_gssapi`) plugging into the OpenProject packaged installation using Apache web server.
This guide will also apply for Docker-based installation, if you have an outer proxying server such as Apache2 that you can configure to use Kerberos. This guide however focuses on the packaged installation of OpenProject.
@@ -49,7 +51,8 @@ You will then need to add the generated keytab to be used for the OpenProject in
We are going to create a new file `/etc/openproject/addons/apache2/custom/vhost/kerberos.conf` with the following contents.
> **Please note**: The following kerberos configuration is only an example. We cannot provide any support or help with regards to the Kerberos side of configuration. OpenProject will simply handle the incoming header containing the logged in user.
> [!NOTE]
> The following kerberos configuration is only an example. We cannot provide any support or help with regards to the Kerberos side of configuration. OpenProject will simply handle the incoming header containing the logged in user.
```apache
<Location />
@@ -119,7 +122,7 @@ Once the configuration is completed, restart your OpenProject and Apache2 server
From there on, you will be forced to the Kerberos login flow whenever accessing OpenProject. For existing users that will be found by their login attribute provided in the `X-Authenticated-User`, they will be automatically logged in.
For non-existing users, if you have an LDAP configured with automatic user registration activated (check out our [LDAP authentication guide](../../../system-admin-guide/authentication/ldap-authentication/) for that), users will be created automatically with the attributes retrieved from the LDAP.
For non-existing users, if you have an LDAP configured with automatic user registration activated (check out our [LDAP authentication guide](../../../system-admin-guide/authentication/ldap-connections/) for that), users will be created automatically with the attributes retrieved from the LDAP.
## Known issues
@@ -127,7 +130,8 @@ For non-existing users, if you have an LDAP configured with automatic user regis
As Kerberos provides its own Basic Auth challenges if configured as shown above, it will prevent you from using the OpenProject API using an Authorization header such as API key authentication or OAuth2.
**Note:** A precondition to use this workaround is to run OpenProject under its own path (server prefix) such as `https://YOUR DOMAIN/openproject/`. If you are not using this, you need to first reconfigure the wizard with `openproject reconfigure` to use such a path prefix. Alternatively, you might have success by using a separate domain or subdomain, but this is untested.
> [!NOTE]
> A precondition to use this workaround is to run OpenProject under its own path (server prefix) such as `https://YOUR DOMAIN/openproject/`. If you are not using this, you need to first reconfigure the wizard with `openproject reconfigure` to use such a path prefix. Alternatively, you might have success by using a separate domain or subdomain, but this is untested.
To work around this, you will have to configure a separate route to access the API, bypassing the Kerberos configuration. You can do that by modifying the `/etc/openproject/addons/apache2/custom/vhost/kerberos.conf`as follows:
@@ -1,6 +1,6 @@
---
sidebar_navigation:
title: LDAP authentication
title: LDAP connections
priority: 500
description: Manage LDAP Authentication in OpenProject.
keywords: ldap authentication
@@ -8,7 +8,8 @@ keywords: ldap authentication
# Manage LDAP connections
> **Note**: In order to be able to access the administration panel and manage LDAP authentication you need to be a system admin.
> [!NOTE]
> In order to be able to access the administration panel and manage LDAP authentication you need to be a system admin.
To see the list of all available LDAP (Lightweight Directory Access Protocol) authentications navigate to - > *Administration* and select *-> Authentication* -> *LDAP connections* from the menu on the left. You will see the list of all available connections already created.
@@ -16,7 +17,7 @@ To see the list of all available LDAP (Lightweight Directory Access Protocol) a
To create a new LDAP connection, click on the respective icon.
![Sys-admin_ldap-authentication](Sys-admin_ldap-authentication.png)
![LDAP connections in OpenProject administration](openproject_system_guide_ldap_connections.png)
You will then be able to specify the LDAP configuration. This can be any directory service compatible with the LDAPv3 standard, such as Microsoft Active Directory or openLDAP. The configuration depends on the specific database/applications, through which the authentication with OpenProject is intended.
@@ -24,7 +25,7 @@ The following screenshots contain an exemplary configuration for a new LDAP aut
### LDAP connection details and security
![Adding a new LDAP authentication server](ldap-host-and-security.png)
![Adding a new LDAP authentication server in OpenProject administration](openproject_system_guide_ldap_connections_new_host_security.png)
In the upper section, you have to specify the connection details of your LDAP server as well as the connection encryption to use.
@@ -45,7 +46,7 @@ In the upper section, you have to specify the connection details of your LDAP se
### LDAP system user credentials
![Defining the system user of the connection](ldap-system-user.png)
![Defining the system user of the LDAP connection in OpenProject administration](openproject_system_guide_ldap_connections_new_system_account_credentials.png)
Next, you will need to enter a system user that has READ access to the users for identification and synchronization purposes. Note that most operations to the LDAP during authentication will not be using these credentials, but the user-provided credentials in the login form in order to perform a regular user bind to the LDAP.
@@ -54,7 +55,7 @@ Next, you will need to enter a system user that has READ access to the users for
### LDAP details
![Defining the details of the connection](ldap-details.png)
![Defining the details of the LDAP connection in OpenProject administration](openproject_system_guide_ldap_connections_new_system_ldap_details.png)
Next you can define what sections OpenProject will look for in the LDAP and also if users should be created automatically in OpenProject when they are accessing it. Let's look at the available options:
@@ -70,7 +71,7 @@ Next you can define what sections OpenProject will look for in the LDAP and also
### Attribute mapping
![Defining the attribute map for users](ldap-attribute-mapping.png)
![Defining the attribute map for users in OpenProject administration](openproject_system_guide_ldap_connections_new_attribute_mapping.png)
The attribute mapping is used to identify attributes of OpenProject with attributes of the LDAP directory. At least the *login* attribute is required to create DNs from the login credentials.
@@ -80,9 +81,9 @@ The attribute mapping is used to identify attributes of OpenProject with attribu
- **Email:** The attribute name in the LDAP that maps to the users mail address. This will usually be *mail.* If left empty, user will be prompted to enter upon registration if **automatic user creation** is true.
- **Admin:** Specify an attribute that if it has a truthy value, results in the user in OpenProject becoming an admin account. Leave empty to never set admin status from LDAP attributes.
Lastly, click on *Create* to save the LDAP authentication mode. You will be redirected to the index page with the created authentication mode. Click the *test* button to create a test connection using the system users bind credentials.
Lastly, click on *Create* to save the LDAP authentication mode. You will be redirected to the index page with the created LDAP connection. Click the *test* button to create a test connection using the system users bind credentials.
![LDAP authentication mode created](ldap-index-page.png)
![New LDAP connection created in OpenProject administration](openproject_system_guide_ldap_connections_new_created.png)
With the [OpenProject Enterprise edition](https://www.openproject.org/enterprise-edition/) it is possible to [synchronize LDAP and OpenProject groups](./ldap-group-synchronization).

Before

Width:  |  Height:  |  Size: 32 KiB

After

Width:  |  Height:  |  Size: 32 KiB

@@ -13,10 +13,11 @@ Note: This feature is available for the Enterprise on-premises only, for OpenPro
In OpenProject Enterprise on-premises, you can synchronize LDAP group memberships defined through the [groupOfNames](https://tools.ietf.org/html/rfc4519#section-3.5) LDAP object class. This guide assumes that you:
- have at least one group defined in OpenProject (See the “[Managing groups](../../../users-permissions/groups/)” guide for more information on how to create and edit groups),
- have set up your LDAP authentication source (See the “[Manage LDAP authentication](../../ldap-authentication/)” guide)
- have set up your LDAP authentication source (See the “[Manage LDAP authentication](../../ldap-connections/)” guide)
- have at least one LDAP entry with a *groupOfNames* object class and members of that group to contain the *`memberOf: <DN of the group>`* attribute to determine the members of a group entry. Right now we do not support LDAP instances that only have *member* attributes, but not the inverse *memberOf* property.
> **Please note**: OpenProject does not support other attributes other than the `memberOf` property to define groups. Please make sure that user objects have the `memberOf` property for the synchronization to work.
> [!NOTE]
> OpenProject does not support other attributes other than the `memberOf` property to define groups. Please make sure that user objects have the `memberOf` property for the synchronization to work.
For the sake of simplicity, we assume that in this guide, your LDAP structure looks like the following:
@@ -38,7 +39,7 @@ Instead of manually synchronizing groups from a given DN, you can also create fi
When the synchronization task is executed, the filter is being queried against the LDAP and resulting group objects will be created as synchronized groups *and* as OpenProject groups.
![LDAP synchronized filter form](ldap-groups-filter.png)
![LDAP synchronized filter form in OpenProject administration](openproject_system_guide_add_ldap_filter.png)
### Create a synchronized filter
@@ -53,7 +54,8 @@ To create a new synchronized filter, use the button on the top right of the inde
Click on *Create* to finish the creation of the synchronized filter. This filter is being executed hourly as part of the background job before the actual group synchronization runs.
**Note:** If you manually create a synchronized group that is also found by a filter, its properties (such as the *Sync users* setting) is being overridden by the filter setting.
> [!NOTE]
> If you manually create a synchronized group that is also found by a filter, its properties (such as the *Sync users* setting) is being overridden by the filter setting.
## Configure synchronized LDAP groups
@@ -63,7 +65,7 @@ In order to get to the LDAP group sync administration pane, expand the LDAP auth
In order for the LDAP groups plugin to locate your group entries, you first need to set the *group key* to **cn** (the identifying attribute of the group entries) and *group base* to **ou=groups,ou=example,ou=com** as shown in the following screenshot.
![LDAP group synchronization settings](ldap-group-form.png)
![LDAP group synchronization settings in OpenProject administration](openproject_system_guide_add_ldap_group.png)
### Create a synchronized group

Before

Width:  |  Height:  |  Size: 7.3 KiB

After

Width:  |  Height:  |  Size: 7.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

@@ -7,14 +7,13 @@ keywords: OAuth application settings
---
# OAuth applications
To configure OpenProject to act as a server to an
OAuth client applications, please navigate to *Administration* -> *Authentication* -> *OAuth applications*.
To configure OpenProject to act as a server to an OAuth client applications, please navigate to *Administration* -> *Authentication* -> *OAuth applications*.
## Add a new authentication application for OAuth
To add a new OAuth application, click the green **+ Add** button.
To add a new OAuth application, click the green **+ OAuth application** button.
![Sys-admin-authentication-OAuth-applications](Sys-admin-authentication-oauth-applications.png)
![OAuth applications in OpenProject system administration](openproject_system_admin_guide_oauth_application_button.png)
You can configure the following options to add your OAuth application:
@@ -40,9 +39,10 @@ You can configure the following options to add your OAuth application:
user on whose behalf requests will be performed.
6. Press **Create** to add your OAuth application.
![add-new-oauth-application](add-new-oauth-application.png)
![Add a new OAuth application in OpenProject administration](openproject_system_admin_guide_oauth_application_new.png)
Don't forget to note down your `Client ID` and your `Client secret`
> [!TIP]
> Don't forget to note down your `Client ID` and your `Client secret`
in a safe space. You will need them later.
## OAuth endpoints
Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 227 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 38 KiB

@@ -20,17 +20,26 @@ To activate and configure OpenID providers in OpenProject, navigate to *Administ
To add a new OpenID provider, click the green **+ OpenID provider** button.
![Sys-admin-authentication-openid-provider](Sys-admin-authentication-openid-provider.png)
![OpenID providers in OpenProject administration](openproject_system-admin-guide_authentication_openid_provider.png)
You can configure the following options.
1. Choose **Google** or **Azure** to add as an OpenID provider to OpenProject.
2. Optionally enter a **display name**.
3. Enter the **Identifier**.
4. Enter the **Secret**.
5. Optionally, if you want to honor the system-wide self-registration setting, enable "Limit self registration".
When checked, users will be created according to the [self-registration setting](../authentication-settings).
6. Press the **create** button.
When checked, users will be created according to the [self-registration setting](../authentication-settings).
6. Set the **tenant** of your Azure endpoint. This will control who gets access to the OpenProject instance. For more information, please see [our user guide on Azure OpenID connect](#azure-active-directory)
7. Press the **create** button.
![Add a new OpenID provider in OpenProject administration](openproject_system-admin-guide_authentication_openid_provider_new.png)
## Google Workspace
@@ -87,13 +96,14 @@ After pressing **CREATE** you will get a pop-up window like the following
2. **Display Name** (e.g. **EXAMPLE.COM SSO**)
3. **Identifier** (**Client ID** from step 2)
4. **Secret** (**Client Secret** from step 2)
5. Enable **Limit self registration** option
3. Press **Create**
![g6-add-new-openid-provider-google](g6-add-new-openid-provider-google.png)
![Add a new OpenID Gogole provider in OpenProject administration](openproject_system-admin-guide_authentication_openid_provider_new_google.png)
4. The following green notification **Successful creation** should appear
![g7-successful-creation-google](g7-successful-creation-google.png)
![Successful OpenID creation message in OpenProject administration](openproject_system-admin-guide_authentication_openid_provider_new_google_successful_message.png)
## Azure Active Directory
@@ -133,7 +143,7 @@ You can now click on "Certificates & secret".
![Azure Active Directory Certificates](06-certificates.png)
Then click on "New client secret", set the description to "client_secret", and the expiration to "never". Then click on "Add".
Then click on "New client secret", set the description to "client_secret", and the expiration to "730 days (24 months)". Then click on "Add".
![Azure Active Directory New Client Secret](07-client-secret.png)
Binary file not shown.

Before

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 90 KiB

@@ -7,7 +7,7 @@ keywords: reCAPTCHA
---
# reCAPTCHA configuration
To activate and **configure reCAPTCHA** for OpenProject, navigate to *Administration* -> *Authentication* and choose -> reCAPTCHA.
To activate and **configure reCAPTCHA** for OpenProject, navigate to *Administration* -> *Authentication* and choose -> *reCAPTCHA.*
If enabled, a captcha form will be rendered upon login for all users that have not verified a captcha yet. Please see the following link for more details on reCAPTCHA and their versions, and how to create the website and secret keys: [https://www.google.com/recaptcha](https://www.google.com/recaptcha).
@@ -16,9 +16,10 @@ You can configure the following options:
1. Activate reCAPTCHA for OpenProject. You can choose between reCAPTCHA v2 and reCAPTCHA v3.
2. Insert the **website key**.
3. Insert the **secret key**.
4. Press the **Apply** button to save your changes.
4. Enter the **response limit for HCaptcha**.
5. Press the **Apply** button to save your changes.
![Sysadmin authentication reCAPTCHA](Sys-admin-authentication-recaptcha.png)
![reCAPTCHA authentication settings in OpenProject administration](openproject_system_admin_guide_recaptcha.png)
# Cloudflare Turnstile configuration
Binary file not shown.

After

Width:  |  Height:  |  Size: 257 KiB

Some files were not shown because too many files have changed in this diff Show More