mirror of
https://github.com/opf/openproject.git
synced 2026-06-14 03:30:14 +00:00
Merge branch 'dev' into filter-form-with-wp-query
This commit is contained in:
@@ -10,40 +10,28 @@ jobs:
|
||||
if: github.repository == 'opf/openproject'
|
||||
runs-on: ubuntu-latest
|
||||
outputs:
|
||||
previous_release_branch: ${{ steps.find_previous_release.outputs.branch }}
|
||||
latest_release_branch: ${{ steps.find_latest_release.outputs.branch }}
|
||||
previous_release_branch: ${{ steps.find_release_branches.outputs.previous_branch }}
|
||||
latest_release_branch: ${{ steps.find_release_branches.outputs.latest_branch }}
|
||||
steps:
|
||||
- id: find_previous_release
|
||||
- id: find_release_branches
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.OPENPROJECTCI_GH_CORE_PAT }}
|
||||
GITHUB_REPOSITORY: ${{ github.repository }}
|
||||
run: |
|
||||
BRANCH=$(curl -H "Authorization: token $GITHUB_TOKEN" \
|
||||
https://api.github.com/repos/$GITHUB_REPOSITORY/branches?protected=true | \
|
||||
jq -r '.[].name' | grep '^release/' | sort --version-sort | tail -2 | head -1
|
||||
LATEST_BRANCHES=$(gh api --paginate \
|
||||
"repos/$GITHUB_REPOSITORY/branches?protected=true&per_page=100" \
|
||||
--jq '.[].name' | grep '^release/' | sort --version-sort | tail -2
|
||||
)
|
||||
if [ "$BRANCH" = "" ]; then
|
||||
echo "Invalid release branch found: $BRANCH"
|
||||
LATEST_BRANCH=$(echo "$LATEST_BRANCHES" | tail -1)
|
||||
PREVIOUS_BRANCH=$(echo "$LATEST_BRANCHES" | head -1)
|
||||
if [ -z "$LATEST_BRANCH" ] || [ -z "$PREVIOUS_BRANCH" ]; then
|
||||
echo "Invalid release branches found: latest=$LATEST_BRANCH, previous=$PREVIOUS_BRANCH"
|
||||
exit 1
|
||||
fi
|
||||
echo "Found previous release branch: $BRANCH"
|
||||
echo "branch=${BRANCH}" >> $GITHUB_OUTPUT
|
||||
- id: find_latest_release
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.OPENPROJECTCI_GH_CORE_PAT }}
|
||||
GITHUB_REPOSITORY: ${{ github.repository }}
|
||||
run: |
|
||||
BRANCH=$(curl -H "Authorization: token $GITHUB_TOKEN" \
|
||||
https://api.github.com/repos/$GITHUB_REPOSITORY/branches?protected=true | \
|
||||
jq -r '.[].name' | grep '^release/' | sort --version-sort | tail -1
|
||||
)
|
||||
if [ "$BRANCH" = "" ]; then
|
||||
echo "Invalid release branch found: $BRANCH"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "Found current release branch: $BRANCH"
|
||||
echo "branch=${BRANCH}" >> $GITHUB_OUTPUT
|
||||
echo "Found previous release branch: $PREVIOUS_BRANCH"
|
||||
echo "previous_branch=${PREVIOUS_BRANCH}" >> $GITHUB_OUTPUT
|
||||
echo "Found latest release branch: $LATEST_BRANCH"
|
||||
echo "latest_branch=${LATEST_BRANCH}" >> $GITHUB_OUTPUT
|
||||
merge-or-create-pr:
|
||||
if: github.event_name == 'workflow_dispatch' || (github.event_name == 'push' && github.ref_name == needs.setup.outputs.previous_release_branch)
|
||||
env:
|
||||
|
||||
@@ -20,9 +20,9 @@ jobs:
|
||||
GITHUB_TOKEN: ${{ secrets.OPENPROJECTCI_GH_CORE_PAT }}
|
||||
GITHUB_REPOSITORY: ${{ github.repository }}
|
||||
run: |
|
||||
BRANCH=$(curl -H "Authorization: token $GITHUB_TOKEN" \
|
||||
https://api.github.com/repos/$GITHUB_REPOSITORY/branches?protected=true | \
|
||||
jq -r '.[].name' | grep '^release/' | sort --version-sort | tail -1
|
||||
BRANCH=$(gh api --paginate \
|
||||
"repos/$GITHUB_REPOSITORY/branches?protected=true&per_page=100" --jq '.[].name' | \
|
||||
grep '^release/' | sort --version-sort | tail -1
|
||||
)
|
||||
if [ "$BRANCH" = "" ]; then
|
||||
echo "Invalid release branch found: $BRANCH"
|
||||
|
||||
@@ -17,9 +17,9 @@ jobs:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
GITHUB_REPOSITORY: ${{ github.repository }}
|
||||
run: |
|
||||
BRANCH=$(curl -H "Authorization: token $GITHUB_TOKEN" \
|
||||
https://api.github.com/repos/$GITHUB_REPOSITORY/branches?protected=true | \
|
||||
jq -r '.[].name' | grep '^release/' | sort --version-sort | tail -1
|
||||
BRANCH=$(gh api --paginate \
|
||||
"repos/$GITHUB_REPOSITORY/branches?protected=true&per_page=100" --jq '.[].name' | \
|
||||
grep '^release/' | sort --version-sort | tail -1
|
||||
)
|
||||
if [ "$BRANCH" = "" ]; then
|
||||
echo "Invalid release branch found: $BRANCH"
|
||||
|
||||
@@ -0,0 +1,41 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
#-- copyright
|
||||
# OpenProject is an open source project management software.
|
||||
# Copyright (C) the OpenProject GmbH
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License version 3.
|
||||
#
|
||||
# OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
|
||||
# Copyright (C) 2006-2013 Jean-Philippe Lang
|
||||
# Copyright (C) 2010-2013 the ChiliProject Team
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License
|
||||
# as published by the Free Software Foundation; either version 2
|
||||
# of the License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
#
|
||||
# See COPYRIGHT and LICENSE files for more details.
|
||||
#++
|
||||
|
||||
class OpenprojectMetadataController < ApplicationController
|
||||
no_authorization_required! :show
|
||||
|
||||
skip_before_action :check_if_login_required
|
||||
|
||||
def show
|
||||
render json: {
|
||||
installation_uuid: Setting.installation_uuid
|
||||
}
|
||||
end
|
||||
end
|
||||
@@ -81,6 +81,7 @@ class Workflows::Copies::Form < ApplicationForm
|
||||
decorated: true,
|
||||
closeOnSelect: false,
|
||||
appendTo: @append_to,
|
||||
dropdownPosition: "top",
|
||||
data: {
|
||||
"test-selector": "target_types_autocomplete"
|
||||
}
|
||||
@@ -117,6 +118,7 @@ class Workflows::Copies::Form < ApplicationForm
|
||||
multiple: true,
|
||||
decorated: true,
|
||||
closeOnSelect: false,
|
||||
dropdownPosition: "top",
|
||||
appendTo: @append_to,
|
||||
data: {
|
||||
"test-selector": "target_roles_autocomplete"
|
||||
|
||||
@@ -33,8 +33,9 @@ class Activities::WorkPackageActivityProvider < Activities::BaseActivityProvider
|
||||
permission: :view_work_packages
|
||||
|
||||
def extend_event_query(query)
|
||||
query.join(types_table).on(activity_journals_table[:type_id].eq(types_table[:id]))
|
||||
query.join(statuses_table).on(activity_journals_table[:status_id].eq(statuses_table[:id]))
|
||||
join_types_table(query)
|
||||
join_statuses_table(query)
|
||||
join_activitied_table(query)
|
||||
end
|
||||
|
||||
def event_query_projection
|
||||
@@ -42,12 +43,13 @@ class Activities::WorkPackageActivityProvider < Activities::BaseActivityProvider
|
||||
activity_journal_projection_statement(:subject, "subject"),
|
||||
activity_journal_projection_statement(:project_id, "project_id"),
|
||||
projection_statement(statuses_table, :is_closed, "status_closed"),
|
||||
projection_statement(types_table, :name, "type_name")
|
||||
projection_statement(types_table, :name, "type_name"),
|
||||
projection_statement(activitied_table, :identifier, "identifier")
|
||||
]
|
||||
end
|
||||
|
||||
def self.work_package_title(id, subject, type_name)
|
||||
"#{type_name} ##{id}: #{subject}"
|
||||
def self.work_package_title(id, subject, type_name, identifier = nil)
|
||||
"#{type_name} #{WorkPackage::SemanticIdentifier.formatted_id_for(id, identifier)}: #{subject}"
|
||||
end
|
||||
|
||||
protected
|
||||
@@ -55,7 +57,8 @@ class Activities::WorkPackageActivityProvider < Activities::BaseActivityProvider
|
||||
def event_title(event)
|
||||
self.class.work_package_title(event["journable_id"],
|
||||
event["subject"],
|
||||
event["type_name"])
|
||||
event["type_name"],
|
||||
event["identifier"])
|
||||
end
|
||||
|
||||
def event_type(event)
|
||||
@@ -63,11 +66,11 @@ class Activities::WorkPackageActivityProvider < Activities::BaseActivityProvider
|
||||
end
|
||||
|
||||
def event_path(event)
|
||||
url_helpers.work_package_path(event["journable_id"])
|
||||
url_helpers.work_package_path(WorkPackage::SemanticIdentifier.display_id_for(event["journable_id"], event["identifier"]))
|
||||
end
|
||||
|
||||
def event_url(event)
|
||||
url_helpers.work_package_url(event["journable_id"],
|
||||
url_helpers.work_package_url(WorkPackage::SemanticIdentifier.display_id_for(event["journable_id"], event["identifier"]),
|
||||
anchor: notes_anchor(event))
|
||||
end
|
||||
|
||||
@@ -79,6 +82,18 @@ class Activities::WorkPackageActivityProvider < Activities::BaseActivityProvider
|
||||
version > 1 ? "note-#{version - 1}" : ""
|
||||
end
|
||||
|
||||
def join_types_table(query)
|
||||
query.join(types_table).on(activity_journals_table[:type_id].eq(types_table[:id]))
|
||||
end
|
||||
|
||||
def join_statuses_table(query)
|
||||
query.join(statuses_table).on(activity_journals_table[:status_id].eq(statuses_table[:id]))
|
||||
end
|
||||
|
||||
def join_activitied_table(query)
|
||||
query.join(activitied_table).on(journals_table[:journable_id].eq(activitied_table[:id]))
|
||||
end
|
||||
|
||||
def types_table
|
||||
@types_table = Type.arel_table
|
||||
end
|
||||
|
||||
@@ -121,25 +121,34 @@ module WorkPackage::SemanticIdentifier
|
||||
end
|
||||
end
|
||||
|
||||
# Returns formatted value for inline UI display.
|
||||
# * Semantic mode: "PROJ-42" (no prefix — self-describing)
|
||||
# * Classic mode: "#42" (hash-prefixed)
|
||||
# Returns the user-facing identifier for a work package given its id and identifier.
|
||||
# In semantic mode: the project-based identifier (e.g. "PROJ-42")
|
||||
# In classic mode: the numeric database ID (even if identifier is set in the DB)
|
||||
def self.display_id_for(id, identifier)
|
||||
return id unless Setting::WorkPackageIdentifier.semantic?
|
||||
|
||||
identifier.presence || id
|
||||
end
|
||||
|
||||
# Formats a resolved display id for inline UI display.
|
||||
# Semantic mode: "PROJ-42" (no prefix — self-describing)
|
||||
# Classic mode: "#42" (hash-prefixed)
|
||||
def self.format_display_id(display_id)
|
||||
display_id.is_a?(String) && display_id.match?(/[A-Za-z]/) ? display_id : "##{display_id}"
|
||||
end
|
||||
|
||||
# Returns the inline-formatted identifier for a work package given its id and identifier.
|
||||
def self.formatted_id_for(id, identifier)
|
||||
format_display_id(display_id_for(id, identifier))
|
||||
end
|
||||
|
||||
# Returns the user-facing identifier for this work package.
|
||||
# In semantic mode: the project-based identifier (e.g. "PROJ-42")
|
||||
# In classic mode: the numeric database ID
|
||||
def display_id
|
||||
return id unless Setting::WorkPackageIdentifier.semantic?
|
||||
|
||||
identifier.presence || id
|
||||
WorkPackage::SemanticIdentifier.display_id_for(id, identifier)
|
||||
end
|
||||
|
||||
# Returns the identifier formatted for inline UI display.
|
||||
# Semantic mode: "PROJ-42" (no prefix — self-describing)
|
||||
# Classic mode: "#42" (hash-prefixed)
|
||||
def formatted_id
|
||||
WorkPackage::SemanticIdentifier.format_display_id(display_id)
|
||||
end
|
||||
|
||||
@@ -41,12 +41,10 @@ module ProjectIdentifiers
|
||||
end
|
||||
|
||||
def call
|
||||
ApplicationRecord.transaction do
|
||||
fix_identifier_if_needed
|
||||
reset_stale_identifiers
|
||||
backfill_missing_ids
|
||||
seed_alias_table
|
||||
end
|
||||
fix_identifier_if_needed
|
||||
ApplicationRecord.transaction { reset_stale_identifiers }
|
||||
ApplicationRecord.transaction { backfill_missing_ids }
|
||||
ApplicationRecord.transaction { seed_alias_table }
|
||||
end
|
||||
|
||||
private
|
||||
@@ -57,15 +55,8 @@ module ProjectIdentifiers
|
||||
# Pure format check — no DB queries.
|
||||
return if ProjectIdentifiers::IdentifierAutofix::ProblematicIdentifiers.valid_format?(project.identifier)
|
||||
|
||||
# Serialize all concurrent identifier assignments with a transaction-level
|
||||
# advisory lock. The lock is automatically released when the outer
|
||||
# ApplicationRecord.transaction commits, so the next job waiting on it
|
||||
# always reads a fully up-to-date exclusion set and can never generate a
|
||||
# duplicate. Without this, parallel jobs can read the same exclusion set
|
||||
# before any of them commits, then all pick the same candidate.
|
||||
OpenProject::Mutex.with_advisory_lock(
|
||||
Project, "semantic_identifier_generation", transaction: true
|
||||
) do
|
||||
# Identifier assignments must run one at a time to avoid conflicts with concurrent renames or conversions.
|
||||
OpenProject::Mutex.with_advisory_lock(Project, "semantic_identifier_generation") do
|
||||
assign_semantic_identifier
|
||||
end
|
||||
end
|
||||
@@ -79,10 +70,22 @@ module ProjectIdentifiers
|
||||
|
||||
raise "Generated identifier is blank for project #{project.id}" if new_identifier.blank?
|
||||
|
||||
save_identifier!(new_identifier)
|
||||
rescue ActiveRecord::RecordInvalid, ActiveRecord::RecordNotUnique => e
|
||||
handle_identifier_conflict(new_identifier, e)
|
||||
end
|
||||
|
||||
def handle_identifier_conflict(attempted_id, error)
|
||||
Rails.logger.warn "#{self.class}: Could not set identifier '#{attempted_id}' for project #{project.id}; " \
|
||||
"falling back to a random identifier. (#{error.message})"
|
||||
save_identifier!("P#{SecureRandom.alphanumeric(5).upcase}")
|
||||
end
|
||||
|
||||
def save_identifier!(new_identifier)
|
||||
project.identifier = new_identifier
|
||||
# Save with the validation context that allows to save semantic ID while system is in classic mode.
|
||||
# Suppress notifications: this is a background system operation, not a user edit.
|
||||
Journal::NotificationConfiguration.with(false) do
|
||||
# Uses :semantic_conversion context to allow saving a semantic ID while the system is in classic mode.
|
||||
project.save!(context: :semantic_conversion)
|
||||
end
|
||||
end
|
||||
|
||||
@@ -53,18 +53,22 @@ module ProjectIdentifiers
|
||||
def restore_classic_identifier
|
||||
classic_id = identifier_generator.restore_identifier(project) ||
|
||||
identifier_generator.suggest_identifier(project.name)
|
||||
# Suppress notifications: this is a background system operation, not a user edit.
|
||||
Journal::NotificationConfiguration.with(false) do
|
||||
project.update!(identifier: classic_id)
|
||||
rescue ActiveRecord::RecordInvalid => e
|
||||
handle_update_failure(classic_id, e)
|
||||
end
|
||||
save_identifier!(classic_id)
|
||||
rescue ActiveRecord::RecordInvalid, ActiveRecord::RecordNotUnique => e
|
||||
handle_update_failure(classic_id, e)
|
||||
end
|
||||
|
||||
def handle_update_failure(classic_id, error)
|
||||
Rails.logger.warn "#{self.class}: Could not set identifier '#{classic_id}' for project #{project.id}; " \
|
||||
"falling back to a randomized suffix. (#{error.message})"
|
||||
project.update!(identifier: "project-#{SecureRandom.alphanumeric(5).downcase}")
|
||||
"falling back to a random identifier. (#{error.message})"
|
||||
save_identifier!("project-#{SecureRandom.alphanumeric(5).downcase}")
|
||||
end
|
||||
|
||||
def save_identifier!(identifier)
|
||||
# Suppress notifications: this is a background system operation, not a user edit.
|
||||
Journal::NotificationConfiguration.with(false) do
|
||||
project.update!(identifier:)
|
||||
end
|
||||
end
|
||||
|
||||
def identifier_generator
|
||||
|
||||
@@ -27,54 +27,55 @@ See COPYRIGHT and LICENSE files for more details.
|
||||
|
||||
++#%>
|
||||
<%= turbo_stream.dialog do
|
||||
title = t(".title", source_type: @source_type.name)
|
||||
dialog_id = "copy_from_type_dialog"
|
||||
another_type_at_first = @source_role.nil?
|
||||
title = t(".title", source_type: @source_type.name)
|
||||
dialog_id = "copy_from_type_dialog"
|
||||
another_type_at_first = @source_role.nil?
|
||||
|
||||
render(Primer::Alpha::Dialog.new(title:, size: :large, classes: "Overlay--size-large-portrait", id: dialog_id, data: { controller: "show-when-value-selected" })) do |d|
|
||||
d.with_header(variant: :large)
|
||||
d.with_body(classes: "Overlay-body_autocomplete_height--lg") do
|
||||
settings_primer_form_with(id: "copy_form") do |f|
|
||||
render(Workflows::Copies::Form.new(f, source_type: @source_type, source_role: @source_role, other_types: @other_types, all_roles: @all_roles, append_to: "##{dialog_id}"))
|
||||
render(Primer::Alpha::Dialog.new(title:, size: :large, classes: "Overlay--size-large-portrait", id: dialog_id, data: { controller: "show-when-value-selected" })) do |d|
|
||||
d.with_header(variant: :large)
|
||||
d.with_body do
|
||||
settings_primer_form_with(id: "copy_form") do |f|
|
||||
render(Workflows::Copies::Form.new(f, source_type: @source_type, source_role: @source_role, other_types: @other_types, all_roles: @all_roles, append_to: "##{dialog_id}"))
|
||||
end
|
||||
end
|
||||
d.with_footer do
|
||||
render(Primer::Beta::Button.new(data: { "close-dialog-id": dialog_id })) { t(:button_cancel) } +
|
||||
render(
|
||||
Primer::Beta::Button.new(
|
||||
hidden: !another_type_at_first,
|
||||
scheme: :primary,
|
||||
tag: :button,
|
||||
type: :submit,
|
||||
form: "copy_form",
|
||||
formaction: workflow_copy_from_type_path(@source_type),
|
||||
data: {
|
||||
target_name: "mode",
|
||||
value: "from_type",
|
||||
"show-when-value-selected-target": "effect",
|
||||
turbo: true
|
||||
}
|
||||
)
|
||||
) do
|
||||
t(:button_copy)
|
||||
end +
|
||||
render(
|
||||
Primer::Beta::Button.new(
|
||||
hidden: another_type_at_first,
|
||||
scheme: :primary,
|
||||
tag: :button,
|
||||
type: :submit,
|
||||
form: "copy_form",
|
||||
formaction: workflow_copy_from_role_path(@source_type, source_role_id: @source_role&.id),
|
||||
data: {
|
||||
target_name: "mode",
|
||||
value: "from_role",
|
||||
"show-when-value-selected-target": "effect",
|
||||
turbo: true
|
||||
}
|
||||
)
|
||||
) do
|
||||
t(:button_copy)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
d.with_footer do
|
||||
render(Primer::Beta::Button.new(data: { "close-dialog-id": dialog_id })) { t(:button_cancel) } +
|
||||
|
||||
render(Primer::Beta::Button.new(
|
||||
hidden: !another_type_at_first,
|
||||
scheme: :primary,
|
||||
tag: :button,
|
||||
type: :submit,
|
||||
form: "copy_form",
|
||||
formaction: workflow_copy_from_type_path(@source_type),
|
||||
data: {
|
||||
target_name: "mode",
|
||||
value: "from_type",
|
||||
"show-when-value-selected-target": "effect",
|
||||
turbo: true
|
||||
}
|
||||
)) do
|
||||
t(:button_copy)
|
||||
end +
|
||||
|
||||
render(Primer::Beta::Button.new(
|
||||
hidden: another_type_at_first,
|
||||
scheme: :primary,
|
||||
tag: :button,
|
||||
type: :submit,
|
||||
form: "copy_form",
|
||||
formaction: workflow_copy_from_role_path(@source_type, source_role_id: @source_role&.id),
|
||||
data: {
|
||||
target_name: "mode",
|
||||
value: "from_role",
|
||||
"show-when-value-selected-target": "effect",
|
||||
turbo: true
|
||||
}
|
||||
)) do
|
||||
t(:button_copy)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
%>
|
||||
end %>
|
||||
|
||||
@@ -30,7 +30,9 @@
|
||||
|
||||
class ProjectIdentifiers::ConvertProjectToSemanticIdsJob < ApplicationJob
|
||||
queue_with_priority :above_normal
|
||||
retry_on StandardError, wait: :polynomially_longer, attempts: 8
|
||||
# Cap at ~16 min of cumulative backoff; this is deemed enough for transient infra issues, and longer wai
|
||||
# increases customer pain due to stuck conversion in the UI
|
||||
retry_on StandardError, wait: :polynomially_longer, attempts: 5
|
||||
discard_on ActiveRecord::RecordNotFound
|
||||
|
||||
def perform(project_id)
|
||||
|
||||
@@ -38,7 +38,9 @@ class ProjectIdentifiers::RevertInstanceToClassicIdsJob < ApplicationJob
|
||||
include GoodJob::ActiveJobExtensions::Concurrency
|
||||
|
||||
good_job_control_concurrency_with(total_limit: 1)
|
||||
retry_on StandardError, wait: :polynomially_longer, attempts: 8
|
||||
# Cap at ~16 min of cumulative backoff; this is deemed enough for transient infra issues, and longer wait
|
||||
# increases customer pain due to stuck conversion in the UI
|
||||
retry_on StandardError, wait: :polynomially_longer, attempts: 5
|
||||
|
||||
def perform
|
||||
raise "expected Setting.work_packages_identifier to be classic" unless Setting::WorkPackageIdentifier.classic?
|
||||
|
||||
@@ -57,7 +57,7 @@ af:
|
||||
col_identifier: Identifier
|
||||
col_project: Project
|
||||
col_reserved: Reserved
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in classic identifier mode.
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in numeric identifier mode.
|
||||
filter_label: Filter identifiers
|
||||
btn_release: Release
|
||||
released_notice: Identifier "%{identifier}" has been released.
|
||||
@@ -1719,6 +1719,7 @@ af:
|
||||
attachment:
|
||||
attachment_content: Attachment content
|
||||
attachment_file_name: Attachment file name
|
||||
charset: Character set
|
||||
content_type: Content-type
|
||||
downloads: Aflaaie
|
||||
file: Lêer
|
||||
@@ -1813,6 +1814,7 @@ af:
|
||||
title: Title
|
||||
description: Description
|
||||
member:
|
||||
blocked: Blocked
|
||||
roles: Rolle
|
||||
notification:
|
||||
read_ian: Read in-app
|
||||
@@ -3510,6 +3512,9 @@ af:
|
||||
additional:
|
||||
projects: Newest visible projects in this instance.
|
||||
no_visible_projects: There are no visible projects in this instance.
|
||||
favorite_projects:
|
||||
no_results: You have no favorite projects
|
||||
no_results_subtext: Add one or multiple projects as favorite through their overview or in a project list.
|
||||
users: Newest registered users in this instance.
|
||||
blocks:
|
||||
community: OpenProject gemeenskap
|
||||
@@ -5355,7 +5360,7 @@ af:
|
||||
setting_welcome_on_homescreen: Display welcome block on homescreen
|
||||
setting_work_packages_identifier_classic: Instance-wide numerical sequence (default)
|
||||
setting_work_packages_identifier_classic_caption: 'Every work package gets a sequential number starting with 1 (for example, #1234). The numbers are unique within the instance and remain the same even if work packages are moved between projects.'
|
||||
setting_work_packages_identifier_semantic: Project-based semantic identifiers
|
||||
setting_work_packages_identifier_semantic: Project-based semantic identifiers (Beta)
|
||||
setting_work_packages_identifier_semantic_caption: Every project has a unique project identifier prefixed to a number (for example, PROJ-11). The numbering of each project starts at 1. If a work package is moved to another project, a new identifier is generated but the old one will continue to function.
|
||||
setting_work_package_list_default_highlighting_mode: Default highlighting mode
|
||||
setting_work_package_list_default_highlighted_attributes: Default inline highlighted attributes
|
||||
@@ -5969,6 +5974,17 @@ af:
|
||||
warning: 'Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
|
||||
'
|
||||
dialog:
|
||||
title: Change working days
|
||||
description: 'Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
|
||||
'
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated.
|
||||
|
||||
'
|
||||
heading: Change the working days?
|
||||
confirm_button: Save and reschedule
|
||||
journal_note:
|
||||
changed: _**Working days** changed (%{changes})._
|
||||
days:
|
||||
|
||||
@@ -57,7 +57,7 @@ ar:
|
||||
col_identifier: Identifier
|
||||
col_project: Project
|
||||
col_reserved: Reserved
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in classic identifier mode.
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in numeric identifier mode.
|
||||
filter_label: Filter identifiers
|
||||
btn_release: Release
|
||||
released_notice: Identifier "%{identifier}" has been released.
|
||||
@@ -1803,6 +1803,7 @@ ar:
|
||||
attachment:
|
||||
attachment_content: Attachment content
|
||||
attachment_file_name: Attachment file name
|
||||
charset: Character set
|
||||
content_type: Content-type
|
||||
downloads: التحميلات
|
||||
file: ملف
|
||||
@@ -1897,6 +1898,7 @@ ar:
|
||||
title: Title
|
||||
description: Description
|
||||
member:
|
||||
blocked: Blocked
|
||||
roles: دور
|
||||
notification:
|
||||
read_ian: Read in-app
|
||||
@@ -3764,6 +3766,9 @@ ar:
|
||||
additional:
|
||||
projects: أحدث المشاريع المرئية في هذه الجلسة.
|
||||
no_visible_projects: There are no visible projects in this instance.
|
||||
favorite_projects:
|
||||
no_results: You have no favorite projects
|
||||
no_results_subtext: Add one or multiple projects as favorite through their overview or in a project list.
|
||||
users: أحدث المستخدمين المسجلين في هذه الجلسة.
|
||||
blocks:
|
||||
community: مجتمع أوبِن بروجِكت
|
||||
@@ -5621,7 +5626,7 @@ ar:
|
||||
setting_welcome_on_homescreen: كتلة الترحيب عرض على الشاشة الرئيسية
|
||||
setting_work_packages_identifier_classic: Instance-wide numerical sequence (default)
|
||||
setting_work_packages_identifier_classic_caption: 'Every work package gets a sequential number starting with 1 (for example, #1234). The numbers are unique within the instance and remain the same even if work packages are moved between projects.'
|
||||
setting_work_packages_identifier_semantic: Project-based semantic identifiers
|
||||
setting_work_packages_identifier_semantic: Project-based semantic identifiers (Beta)
|
||||
setting_work_packages_identifier_semantic_caption: Every project has a unique project identifier prefixed to a number (for example, PROJ-11). The numbering of each project starts at 1. If a work package is moved to another project, a new identifier is generated but the old one will continue to function.
|
||||
setting_work_package_list_default_highlighting_mode: Default highlighting mode
|
||||
setting_work_package_list_default_highlighted_attributes: Default inline highlighted attributes
|
||||
@@ -6247,6 +6252,17 @@ ar:
|
||||
warning: 'Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
|
||||
'
|
||||
dialog:
|
||||
title: Change working days
|
||||
description: 'Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
|
||||
'
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated.
|
||||
|
||||
'
|
||||
heading: Change the working days?
|
||||
confirm_button: Save and reschedule
|
||||
journal_note:
|
||||
changed: _**Working days** changed (%{changes})._
|
||||
days:
|
||||
|
||||
@@ -57,7 +57,7 @@ az:
|
||||
col_identifier: Identifier
|
||||
col_project: Project
|
||||
col_reserved: Reserved
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in classic identifier mode.
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in numeric identifier mode.
|
||||
filter_label: Filter identifiers
|
||||
btn_release: Release
|
||||
released_notice: Identifier "%{identifier}" has been released.
|
||||
@@ -1719,6 +1719,7 @@ az:
|
||||
attachment:
|
||||
attachment_content: Attachment content
|
||||
attachment_file_name: Attachment file name
|
||||
charset: Character set
|
||||
content_type: Content-type
|
||||
downloads: Downloads
|
||||
file: File
|
||||
@@ -1813,6 +1814,7 @@ az:
|
||||
title: Title
|
||||
description: Description
|
||||
member:
|
||||
blocked: Blocked
|
||||
roles: Roles
|
||||
notification:
|
||||
read_ian: Read in-app
|
||||
@@ -3510,6 +3512,9 @@ az:
|
||||
additional:
|
||||
projects: Newest visible projects in this instance.
|
||||
no_visible_projects: There are no visible projects in this instance.
|
||||
favorite_projects:
|
||||
no_results: You have no favorite projects
|
||||
no_results_subtext: Add one or multiple projects as favorite through their overview or in a project list.
|
||||
users: Newest registered users in this instance.
|
||||
blocks:
|
||||
community: OpenProject community
|
||||
@@ -5355,7 +5360,7 @@ az:
|
||||
setting_welcome_on_homescreen: Display welcome block on homescreen
|
||||
setting_work_packages_identifier_classic: Instance-wide numerical sequence (default)
|
||||
setting_work_packages_identifier_classic_caption: 'Every work package gets a sequential number starting with 1 (for example, #1234). The numbers are unique within the instance and remain the same even if work packages are moved between projects.'
|
||||
setting_work_packages_identifier_semantic: Project-based semantic identifiers
|
||||
setting_work_packages_identifier_semantic: Project-based semantic identifiers (Beta)
|
||||
setting_work_packages_identifier_semantic_caption: Every project has a unique project identifier prefixed to a number (for example, PROJ-11). The numbering of each project starts at 1. If a work package is moved to another project, a new identifier is generated but the old one will continue to function.
|
||||
setting_work_package_list_default_highlighting_mode: Default highlighting mode
|
||||
setting_work_package_list_default_highlighted_attributes: Default inline highlighted attributes
|
||||
@@ -5969,6 +5974,17 @@ az:
|
||||
warning: 'Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
|
||||
'
|
||||
dialog:
|
||||
title: Change working days
|
||||
description: 'Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
|
||||
'
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated.
|
||||
|
||||
'
|
||||
heading: Change the working days?
|
||||
confirm_button: Save and reschedule
|
||||
journal_note:
|
||||
changed: _**Working days** changed (%{changes})._
|
||||
days:
|
||||
|
||||
@@ -57,7 +57,7 @@ be:
|
||||
col_identifier: Identifier
|
||||
col_project: Project
|
||||
col_reserved: Reserved
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in classic identifier mode.
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in numeric identifier mode.
|
||||
filter_label: Filter identifiers
|
||||
btn_release: Release
|
||||
released_notice: Identifier "%{identifier}" has been released.
|
||||
@@ -1761,6 +1761,7 @@ be:
|
||||
attachment:
|
||||
attachment_content: Attachment content
|
||||
attachment_file_name: Attachment file name
|
||||
charset: Character set
|
||||
content_type: Content-type
|
||||
downloads: Downloads
|
||||
file: File
|
||||
@@ -1855,6 +1856,7 @@ be:
|
||||
title: Title
|
||||
description: Description
|
||||
member:
|
||||
blocked: Blocked
|
||||
roles: Roles
|
||||
notification:
|
||||
read_ian: Read in-app
|
||||
@@ -3638,6 +3640,9 @@ be:
|
||||
additional:
|
||||
projects: Newest visible projects in this instance.
|
||||
no_visible_projects: There are no visible projects in this instance.
|
||||
favorite_projects:
|
||||
no_results: You have no favorite projects
|
||||
no_results_subtext: Add one or multiple projects as favorite through their overview or in a project list.
|
||||
users: Newest registered users in this instance.
|
||||
blocks:
|
||||
community: OpenProject community
|
||||
@@ -5493,7 +5498,7 @@ be:
|
||||
setting_welcome_on_homescreen: Display welcome block on homescreen
|
||||
setting_work_packages_identifier_classic: Instance-wide numerical sequence (default)
|
||||
setting_work_packages_identifier_classic_caption: 'Every work package gets a sequential number starting with 1 (for example, #1234). The numbers are unique within the instance and remain the same even if work packages are moved between projects.'
|
||||
setting_work_packages_identifier_semantic: Project-based semantic identifiers
|
||||
setting_work_packages_identifier_semantic: Project-based semantic identifiers (Beta)
|
||||
setting_work_packages_identifier_semantic_caption: Every project has a unique project identifier prefixed to a number (for example, PROJ-11). The numbering of each project starts at 1. If a work package is moved to another project, a new identifier is generated but the old one will continue to function.
|
||||
setting_work_package_list_default_highlighting_mode: Default highlighting mode
|
||||
setting_work_package_list_default_highlighted_attributes: Default inline highlighted attributes
|
||||
@@ -6109,6 +6114,17 @@ be:
|
||||
warning: 'Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
|
||||
'
|
||||
dialog:
|
||||
title: Change working days
|
||||
description: 'Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
|
||||
'
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated.
|
||||
|
||||
'
|
||||
heading: Change the working days?
|
||||
confirm_button: Save and reschedule
|
||||
journal_note:
|
||||
changed: _**Working days** changed (%{changes})._
|
||||
days:
|
||||
|
||||
@@ -57,7 +57,7 @@ bg:
|
||||
col_identifier: Identifier
|
||||
col_project: Project
|
||||
col_reserved: Reserved
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in classic identifier mode.
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in numeric identifier mode.
|
||||
filter_label: Filter identifiers
|
||||
btn_release: Release
|
||||
released_notice: Identifier "%{identifier}" has been released.
|
||||
@@ -1719,6 +1719,7 @@ bg:
|
||||
attachment:
|
||||
attachment_content: Attachment content
|
||||
attachment_file_name: Attachment file name
|
||||
charset: Character set
|
||||
content_type: Content-type
|
||||
downloads: Файлове за изтегляне
|
||||
file: Файл
|
||||
@@ -1813,6 +1814,7 @@ bg:
|
||||
title: Title
|
||||
description: Description
|
||||
member:
|
||||
blocked: Blocked
|
||||
roles: Роли
|
||||
notification:
|
||||
read_ian: Read in-app
|
||||
@@ -3508,6 +3510,9 @@ bg:
|
||||
additional:
|
||||
projects: Най-новите проекти, видими в този случай.
|
||||
no_visible_projects: There are no visible projects in this instance.
|
||||
favorite_projects:
|
||||
no_results: You have no favorite projects
|
||||
no_results_subtext: Add one or multiple projects as favorite through their overview or in a project list.
|
||||
users: Най-новите регистрирани потребители в този случай.
|
||||
blocks:
|
||||
community: OpenProject Общността
|
||||
@@ -5349,7 +5354,7 @@ bg:
|
||||
setting_welcome_on_homescreen: Display welcome block on homescreen
|
||||
setting_work_packages_identifier_classic: Instance-wide numerical sequence (default)
|
||||
setting_work_packages_identifier_classic_caption: 'Every work package gets a sequential number starting with 1 (for example, #1234). The numbers are unique within the instance and remain the same even if work packages are moved between projects.'
|
||||
setting_work_packages_identifier_semantic: Project-based semantic identifiers
|
||||
setting_work_packages_identifier_semantic: Project-based semantic identifiers (Beta)
|
||||
setting_work_packages_identifier_semantic_caption: Every project has a unique project identifier prefixed to a number (for example, PROJ-11). The numbering of each project starts at 1. If a work package is moved to another project, a new identifier is generated but the old one will continue to function.
|
||||
setting_work_package_list_default_highlighting_mode: Default highlighting mode
|
||||
setting_work_package_list_default_highlighted_attributes: Default inline highlighted attributes
|
||||
@@ -5963,6 +5968,17 @@ bg:
|
||||
warning: 'Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
|
||||
'
|
||||
dialog:
|
||||
title: Change working days
|
||||
description: 'Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
|
||||
'
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated.
|
||||
|
||||
'
|
||||
heading: Change the working days?
|
||||
confirm_button: Save and reschedule
|
||||
journal_note:
|
||||
changed: _**Working days** changed (%{changes})._
|
||||
days:
|
||||
|
||||
@@ -57,7 +57,7 @@ ca:
|
||||
col_identifier: Identifier
|
||||
col_project: Project
|
||||
col_reserved: Reserved
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in classic identifier mode.
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in numeric identifier mode.
|
||||
filter_label: Filter identifiers
|
||||
btn_release: Release
|
||||
released_notice: Identifier "%{identifier}" has been released.
|
||||
@@ -1718,6 +1718,7 @@ ca:
|
||||
attachment:
|
||||
attachment_content: Adjunta contingut
|
||||
attachment_file_name: Nom de fitxer de l'adjunció
|
||||
charset: Character set
|
||||
content_type: Content-type
|
||||
downloads: Descàrregues
|
||||
file: Fitxer
|
||||
@@ -1812,6 +1813,7 @@ ca:
|
||||
title: Title
|
||||
description: Description
|
||||
member:
|
||||
blocked: Blocked
|
||||
roles: Rol
|
||||
notification:
|
||||
read_ian: Read in-app
|
||||
@@ -3507,6 +3509,9 @@ ca:
|
||||
additional:
|
||||
projects: Els projectes més visibles en aquesta instància.
|
||||
no_visible_projects: No hi ha projectes visibles en aquesta instància.
|
||||
favorite_projects:
|
||||
no_results: You have no favorite projects
|
||||
no_results_subtext: Add one or multiple projects as favorite through their overview or in a project list.
|
||||
users: Els usuaris més nous registrats en aquesta instància.
|
||||
blocks:
|
||||
community: Comunitat OpenProject
|
||||
@@ -5342,7 +5347,7 @@ ca:
|
||||
setting_welcome_on_homescreen: Mostrar el bloc de benvinguda a la pàgina d'inici
|
||||
setting_work_packages_identifier_classic: Instance-wide numerical sequence (default)
|
||||
setting_work_packages_identifier_classic_caption: 'Every work package gets a sequential number starting with 1 (for example, #1234). The numbers are unique within the instance and remain the same even if work packages are moved between projects.'
|
||||
setting_work_packages_identifier_semantic: Project-based semantic identifiers
|
||||
setting_work_packages_identifier_semantic: Project-based semantic identifiers (Beta)
|
||||
setting_work_packages_identifier_semantic_caption: Every project has a unique project identifier prefixed to a number (for example, PROJ-11). The numbering of each project starts at 1. If a work package is moved to another project, a new identifier is generated but the old one will continue to function.
|
||||
setting_work_package_list_default_highlighting_mode: Mètode de destacament per defecte
|
||||
setting_work_package_list_default_highlighted_attributes: Atributs de destacament en línia per defecte
|
||||
@@ -5956,6 +5961,17 @@ ca:
|
||||
warning: 'Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
|
||||
'
|
||||
dialog:
|
||||
title: Change working days
|
||||
description: 'Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
|
||||
'
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated.
|
||||
|
||||
'
|
||||
heading: Change the working days?
|
||||
confirm_button: Save and reschedule
|
||||
journal_note:
|
||||
changed: _**Dies laborals"" han canviat (%{changes})._
|
||||
days:
|
||||
|
||||
@@ -57,7 +57,7 @@ ckb-IR:
|
||||
col_identifier: Identifier
|
||||
col_project: Project
|
||||
col_reserved: Reserved
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in classic identifier mode.
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in numeric identifier mode.
|
||||
filter_label: Filter identifiers
|
||||
btn_release: Release
|
||||
released_notice: Identifier "%{identifier}" has been released.
|
||||
@@ -1719,6 +1719,7 @@ ckb-IR:
|
||||
attachment:
|
||||
attachment_content: Attachment content
|
||||
attachment_file_name: Attachment file name
|
||||
charset: Character set
|
||||
content_type: Content-type
|
||||
downloads: Downloads
|
||||
file: File
|
||||
@@ -1813,6 +1814,7 @@ ckb-IR:
|
||||
title: Title
|
||||
description: Description
|
||||
member:
|
||||
blocked: Blocked
|
||||
roles: Roles
|
||||
notification:
|
||||
read_ian: Read in-app
|
||||
@@ -3510,6 +3512,9 @@ ckb-IR:
|
||||
additional:
|
||||
projects: Newest visible projects in this instance.
|
||||
no_visible_projects: There are no visible projects in this instance.
|
||||
favorite_projects:
|
||||
no_results: You have no favorite projects
|
||||
no_results_subtext: Add one or multiple projects as favorite through their overview or in a project list.
|
||||
users: Newest registered users in this instance.
|
||||
blocks:
|
||||
community: OpenProject community
|
||||
@@ -5355,7 +5360,7 @@ ckb-IR:
|
||||
setting_welcome_on_homescreen: Display welcome block on homescreen
|
||||
setting_work_packages_identifier_classic: Instance-wide numerical sequence (default)
|
||||
setting_work_packages_identifier_classic_caption: 'Every work package gets a sequential number starting with 1 (for example, #1234). The numbers are unique within the instance and remain the same even if work packages are moved between projects.'
|
||||
setting_work_packages_identifier_semantic: Project-based semantic identifiers
|
||||
setting_work_packages_identifier_semantic: Project-based semantic identifiers (Beta)
|
||||
setting_work_packages_identifier_semantic_caption: Every project has a unique project identifier prefixed to a number (for example, PROJ-11). The numbering of each project starts at 1. If a work package is moved to another project, a new identifier is generated but the old one will continue to function.
|
||||
setting_work_package_list_default_highlighting_mode: Default highlighting mode
|
||||
setting_work_package_list_default_highlighted_attributes: Default inline highlighted attributes
|
||||
@@ -5969,6 +5974,17 @@ ckb-IR:
|
||||
warning: 'Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
|
||||
'
|
||||
dialog:
|
||||
title: Change working days
|
||||
description: 'Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
|
||||
'
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated.
|
||||
|
||||
'
|
||||
heading: Change the working days?
|
||||
confirm_button: Save and reschedule
|
||||
journal_note:
|
||||
changed: _**Working days** changed (%{changes})._
|
||||
days:
|
||||
|
||||
@@ -57,7 +57,7 @@ cs:
|
||||
col_identifier: Identifier
|
||||
col_project: Project
|
||||
col_reserved: Reserved
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in classic identifier mode.
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in numeric identifier mode.
|
||||
filter_label: Filter identifiers
|
||||
btn_release: Release
|
||||
released_notice: Identifier "%{identifier}" has been released.
|
||||
@@ -1761,6 +1761,7 @@ cs:
|
||||
attachment:
|
||||
attachment_content: Obsah přílohy
|
||||
attachment_file_name: Název souboru přílohy
|
||||
charset: Character set
|
||||
content_type: Content-type
|
||||
downloads: Ke stažení
|
||||
file: Soubor
|
||||
@@ -1857,6 +1858,7 @@ cs:
|
||||
title: Title
|
||||
description: Description
|
||||
member:
|
||||
blocked: Blocked
|
||||
roles: Role
|
||||
notification:
|
||||
read_ian: Read in-app
|
||||
@@ -3640,6 +3642,9 @@ cs:
|
||||
additional:
|
||||
projects: Nejnovější projekty v systému
|
||||
no_visible_projects: V této instanci nejsou žádné viditelné projekty.
|
||||
favorite_projects:
|
||||
no_results: You have no favorite projects
|
||||
no_results_subtext: Add one or multiple projects as favorite through their overview or in a project list.
|
||||
users: Poslední registrovaní uživatelé v této instalaci.
|
||||
blocks:
|
||||
community: OpenProject komunita
|
||||
@@ -5495,7 +5500,7 @@ cs:
|
||||
setting_welcome_on_homescreen: Zobrazit uvítací blok na domovské obrazovce
|
||||
setting_work_packages_identifier_classic: Instance-wide numerical sequence (default)
|
||||
setting_work_packages_identifier_classic_caption: 'Every work package gets a sequential number starting with 1 (for example, #1234). The numbers are unique within the instance and remain the same even if work packages are moved between projects.'
|
||||
setting_work_packages_identifier_semantic: Project-based semantic identifiers
|
||||
setting_work_packages_identifier_semantic: Project-based semantic identifiers (Beta)
|
||||
setting_work_packages_identifier_semantic_caption: Every project has a unique project identifier prefixed to a number (for example, PROJ-11). The numbering of each project starts at 1. If a work package is moved to another project, a new identifier is generated but the old one will continue to function.
|
||||
setting_work_package_list_default_highlighting_mode: Výchozí režim zvýraznění
|
||||
setting_work_package_list_default_highlighted_attributes: Výchozí inline zvýrazněné atributy
|
||||
@@ -6111,6 +6116,17 @@ cs:
|
||||
warning: 'Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
|
||||
'
|
||||
dialog:
|
||||
title: Change working days
|
||||
description: 'Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
|
||||
'
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated.
|
||||
|
||||
'
|
||||
heading: Change the working days?
|
||||
confirm_button: Save and reschedule
|
||||
journal_note:
|
||||
changed: _**Pracovní dny** změněny (%{changes})._
|
||||
days:
|
||||
|
||||
@@ -57,7 +57,7 @@ da:
|
||||
col_identifier: Identifier
|
||||
col_project: Project
|
||||
col_reserved: Reserved
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in classic identifier mode.
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in numeric identifier mode.
|
||||
filter_label: Filter identifiers
|
||||
btn_release: Release
|
||||
released_notice: Identifier "%{identifier}" has been released.
|
||||
@@ -1718,6 +1718,7 @@ da:
|
||||
attachment:
|
||||
attachment_content: Attachment content
|
||||
attachment_file_name: Attachment file name
|
||||
charset: Character set
|
||||
content_type: Content-type
|
||||
downloads: Hentninger
|
||||
file: Fil
|
||||
@@ -1812,6 +1813,7 @@ da:
|
||||
title: Title
|
||||
description: Description
|
||||
member:
|
||||
blocked: Blocked
|
||||
roles: Rollee
|
||||
notification:
|
||||
read_ian: Read in-app
|
||||
@@ -3509,6 +3511,9 @@ da:
|
||||
additional:
|
||||
projects: Nyeste synlige projekter i denne omgang.
|
||||
no_visible_projects: There are no visible projects in this instance.
|
||||
favorite_projects:
|
||||
no_results: You have no favorite projects
|
||||
no_results_subtext: Add one or multiple projects as favorite through their overview or in a project list.
|
||||
users: Nyeste registrerede brugere i denne omgang.
|
||||
blocks:
|
||||
community: OpenProject community
|
||||
@@ -5348,7 +5353,7 @@ da:
|
||||
setting_welcome_on_homescreen: Vis velkomstblok på hjemmeskærm
|
||||
setting_work_packages_identifier_classic: Instance-wide numerical sequence (default)
|
||||
setting_work_packages_identifier_classic_caption: 'Every work package gets a sequential number starting with 1 (for example, #1234). The numbers are unique within the instance and remain the same even if work packages are moved between projects.'
|
||||
setting_work_packages_identifier_semantic: Project-based semantic identifiers
|
||||
setting_work_packages_identifier_semantic: Project-based semantic identifiers (Beta)
|
||||
setting_work_packages_identifier_semantic_caption: Every project has a unique project identifier prefixed to a number (for example, PROJ-11). The numbering of each project starts at 1. If a work package is moved to another project, a new identifier is generated but the old one will continue to function.
|
||||
setting_work_package_list_default_highlighting_mode: Default highlighting mode
|
||||
setting_work_package_list_default_highlighted_attributes: Default inline highlighted attributes
|
||||
@@ -5960,6 +5965,17 @@ da:
|
||||
warning: 'Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
|
||||
'
|
||||
dialog:
|
||||
title: Change working days
|
||||
description: 'Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
|
||||
'
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated.
|
||||
|
||||
'
|
||||
heading: Change the working days?
|
||||
confirm_button: Save and reschedule
|
||||
journal_note:
|
||||
changed: _**Working days** changed (%{changes})._
|
||||
days:
|
||||
|
||||
@@ -57,7 +57,7 @@ de:
|
||||
col_identifier: Kennung
|
||||
col_project: Projekt
|
||||
col_reserved: Reserved
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in classic identifier mode.
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in numeric identifier mode.
|
||||
filter_label: Filter identifiers
|
||||
btn_release: Release
|
||||
released_notice: Identifier "%{identifier}" has been released.
|
||||
@@ -1715,6 +1715,7 @@ de:
|
||||
attachment:
|
||||
attachment_content: Inhalt des Anhangs
|
||||
attachment_file_name: Dateiname des Anhangs
|
||||
charset: Character set
|
||||
content_type: Medien-Typ
|
||||
downloads: Downloads
|
||||
file: Datei
|
||||
@@ -1809,6 +1810,7 @@ de:
|
||||
title: Titel
|
||||
description: Beschreibung
|
||||
member:
|
||||
blocked: Blocked
|
||||
roles: Rollen
|
||||
notification:
|
||||
read_ian: In-App lesen
|
||||
@@ -3504,6 +3506,9 @@ de:
|
||||
additional:
|
||||
projects: Neueste sichtbare Projekte in dieser Instanz.
|
||||
no_visible_projects: Es gibt keine sichtbaren Projekte in dieser OpenProject-Umgebung.
|
||||
favorite_projects:
|
||||
no_results: You have no favorite projects
|
||||
no_results_subtext: Add one or multiple projects as favorite through their overview or in a project list.
|
||||
users: Neueste registrierte Benutzer in dieser Instanz.
|
||||
blocks:
|
||||
community: OpenProject Community
|
||||
@@ -5351,7 +5356,7 @@ de:
|
||||
setting_welcome_on_homescreen: Willkommens-Block auf Startseite anzeigen
|
||||
setting_work_packages_identifier_classic: Instanzweite numerische Sequenz (Standard)
|
||||
setting_work_packages_identifier_classic_caption: 'Every work package gets a sequential number starting with 1 (for example, #1234). The numbers are unique within the instance and remain the same even if work packages are moved between projects.'
|
||||
setting_work_packages_identifier_semantic: Projektspezifische semantische Kennungen
|
||||
setting_work_packages_identifier_semantic: Project-based semantic identifiers (Beta)
|
||||
setting_work_packages_identifier_semantic_caption: Every project has a unique project identifier prefixed to a number (for example, PROJ-11). The numbering of each project starts at 1. If a work package is moved to another project, a new identifier is generated but the old one will continue to function.
|
||||
setting_work_package_list_default_highlighting_mode: Standard Hervorhebung
|
||||
setting_work_package_list_default_highlighted_attributes: Voreinstellung Inline Hervorherbung
|
||||
@@ -5963,6 +5968,17 @@ de:
|
||||
warning: 'Die Änderung der Wochentage, die als Arbeitstage oder arbeitsfreie Tage gelten, kann sich auf die Start- und Endtage aller Arbeitspakete und Projektphasen in allen Projekten auswirken.
|
||||
|
||||
'
|
||||
dialog:
|
||||
title: Change working days
|
||||
description: 'Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
|
||||
'
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated.
|
||||
|
||||
'
|
||||
heading: Change the working days?
|
||||
confirm_button: Save and reschedule
|
||||
journal_note:
|
||||
changed: _**Arbeitstage** geändert (%{changes})._
|
||||
days:
|
||||
|
||||
@@ -57,7 +57,7 @@ el:
|
||||
col_identifier: Identifier
|
||||
col_project: Project
|
||||
col_reserved: Reserved
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in classic identifier mode.
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in numeric identifier mode.
|
||||
filter_label: Filter identifiers
|
||||
btn_release: Release
|
||||
released_notice: Identifier "%{identifier}" has been released.
|
||||
@@ -1718,6 +1718,7 @@ el:
|
||||
attachment:
|
||||
attachment_content: Περιεχόμενο συνημμένου
|
||||
attachment_file_name: Όνομα συνημμένου αρχείου
|
||||
charset: Character set
|
||||
content_type: Content-type
|
||||
downloads: Λήψεις
|
||||
file: Aρχείο
|
||||
@@ -1812,6 +1813,7 @@ el:
|
||||
title: Title
|
||||
description: Description
|
||||
member:
|
||||
blocked: Blocked
|
||||
roles: Ρόλοι
|
||||
notification:
|
||||
read_ian: Read in-app
|
||||
@@ -3509,6 +3511,9 @@ el:
|
||||
additional:
|
||||
projects: Νεότερα ορατά έργα σε αυτό το στιγμιότυπο της εφαρμογής.
|
||||
no_visible_projects: Δεν υπάρχουν ορατά έργα σε αυτό το στιγμιότυπο της εφαρμογής.
|
||||
favorite_projects:
|
||||
no_results: You have no favorite projects
|
||||
no_results_subtext: Add one or multiple projects as favorite through their overview or in a project list.
|
||||
users: Νεότεροι εγγεγραμμένοι χρήστες αυτού του στιγμιότυπου της εφαρμογής.
|
||||
blocks:
|
||||
community: Κοινότητα OpenProject
|
||||
@@ -5350,7 +5355,7 @@ el:
|
||||
setting_welcome_on_homescreen: Εμφάνιση μπλοκ καλωσορίσματος στην αρχική σελίδα
|
||||
setting_work_packages_identifier_classic: Instance-wide numerical sequence (default)
|
||||
setting_work_packages_identifier_classic_caption: 'Every work package gets a sequential number starting with 1 (for example, #1234). The numbers are unique within the instance and remain the same even if work packages are moved between projects.'
|
||||
setting_work_packages_identifier_semantic: Project-based semantic identifiers
|
||||
setting_work_packages_identifier_semantic: Project-based semantic identifiers (Beta)
|
||||
setting_work_packages_identifier_semantic_caption: Every project has a unique project identifier prefixed to a number (for example, PROJ-11). The numbering of each project starts at 1. If a work package is moved to another project, a new identifier is generated but the old one will continue to function.
|
||||
setting_work_package_list_default_highlighting_mode: Προεπιλεγμένη λειτουργία επισήμανσης
|
||||
setting_work_package_list_default_highlighted_attributes: Προεπιλεγμένα inline χαρακτηριστικά με επισήμανση
|
||||
@@ -5964,6 +5969,17 @@ el:
|
||||
warning: 'Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
|
||||
'
|
||||
dialog:
|
||||
title: Change working days
|
||||
description: 'Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
|
||||
'
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated.
|
||||
|
||||
'
|
||||
heading: Change the working days?
|
||||
confirm_button: Save and reschedule
|
||||
journal_note:
|
||||
changed: _**Working days** changed (%{changes})._
|
||||
days:
|
||||
|
||||
@@ -57,7 +57,7 @@ eo:
|
||||
col_identifier: Identifier
|
||||
col_project: Project
|
||||
col_reserved: Reserved
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in classic identifier mode.
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in numeric identifier mode.
|
||||
filter_label: Filter identifiers
|
||||
btn_release: Release
|
||||
released_notice: Identifier "%{identifier}" has been released.
|
||||
@@ -1719,6 +1719,7 @@ eo:
|
||||
attachment:
|
||||
attachment_content: Enhavo de la aldonaĵo
|
||||
attachment_file_name: Nomo de la aldonaĵo
|
||||
charset: Character set
|
||||
content_type: Content-type
|
||||
downloads: Elŝutoj
|
||||
file: Dosiero
|
||||
@@ -1813,6 +1814,7 @@ eo:
|
||||
title: Title
|
||||
description: Description
|
||||
member:
|
||||
blocked: Blocked
|
||||
roles: Roloj
|
||||
notification:
|
||||
read_ian: Read in-app
|
||||
@@ -3510,6 +3512,9 @@ eo:
|
||||
additional:
|
||||
projects: Pli novaj videblaj projektoj en tiu ĉi loko.
|
||||
no_visible_projects: Ne estas videblaj projektoj en tiu ĉi loko.
|
||||
favorite_projects:
|
||||
no_results: You have no favorite projects
|
||||
no_results_subtext: Add one or multiple projects as favorite through their overview or in a project list.
|
||||
users: Pli novaj registritaj uzantoj en tiu ĉi loko.
|
||||
blocks:
|
||||
community: OpenProject komunumo
|
||||
@@ -5355,7 +5360,7 @@ eo:
|
||||
setting_welcome_on_homescreen: Display welcome block on homescreen
|
||||
setting_work_packages_identifier_classic: Instance-wide numerical sequence (default)
|
||||
setting_work_packages_identifier_classic_caption: 'Every work package gets a sequential number starting with 1 (for example, #1234). The numbers are unique within the instance and remain the same even if work packages are moved between projects.'
|
||||
setting_work_packages_identifier_semantic: Project-based semantic identifiers
|
||||
setting_work_packages_identifier_semantic: Project-based semantic identifiers (Beta)
|
||||
setting_work_packages_identifier_semantic_caption: Every project has a unique project identifier prefixed to a number (for example, PROJ-11). The numbering of each project starts at 1. If a work package is moved to another project, a new identifier is generated but the old one will continue to function.
|
||||
setting_work_package_list_default_highlighting_mode: Default highlighting mode
|
||||
setting_work_package_list_default_highlighted_attributes: Default inline highlighted attributes
|
||||
@@ -5969,6 +5974,17 @@ eo:
|
||||
warning: 'Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
|
||||
'
|
||||
dialog:
|
||||
title: Change working days
|
||||
description: 'Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
|
||||
'
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated.
|
||||
|
||||
'
|
||||
heading: Change the working days?
|
||||
confirm_button: Save and reschedule
|
||||
journal_note:
|
||||
changed: _**Working days** changed (%{changes})._
|
||||
days:
|
||||
|
||||
@@ -57,7 +57,7 @@ es:
|
||||
col_identifier: Identificador
|
||||
col_project: Proyecto
|
||||
col_reserved: Reservado
|
||||
not_available_in_semantic_mode: Los identificadores reservados sólo están disponibles en el modo de identificador clásico.
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in numeric identifier mode.
|
||||
filter_label: Identificadores de filtro
|
||||
btn_release: Lanzamiento
|
||||
released_notice: El identificador "%{identifier}" ha sido liberado.
|
||||
@@ -1714,6 +1714,7 @@ es:
|
||||
attachment:
|
||||
attachment_content: Contenido del archivo adjunto
|
||||
attachment_file_name: Nombre de archivo adjunto
|
||||
charset: Character set
|
||||
content_type: Tipo de contenido
|
||||
downloads: Descargas
|
||||
file: Archivo
|
||||
@@ -1808,6 +1809,7 @@ es:
|
||||
title: Título
|
||||
description: Descripción
|
||||
member:
|
||||
blocked: Blocked
|
||||
roles: Perfiles
|
||||
notification:
|
||||
read_ian: Leer dentro de la aplicación
|
||||
@@ -3501,6 +3503,9 @@ es:
|
||||
additional:
|
||||
projects: Projectos visibles mas recientes en esta instancia.
|
||||
no_visible_projects: No hay ningún proyecto visible en esta instancia.
|
||||
favorite_projects:
|
||||
no_results: You have no favorite projects
|
||||
no_results_subtext: Add one or multiple projects as favorite through their overview or in a project list.
|
||||
users: Usuarios registrados mas recientes en esta instancia.
|
||||
blocks:
|
||||
community: OpenProject Community
|
||||
@@ -5340,7 +5345,7 @@ es:
|
||||
setting_welcome_on_homescreen: Mostrar bloque de bienvenida en la pagina de inicio
|
||||
setting_work_packages_identifier_classic: Secuencia numérica para toda la instancia (predeterminada)
|
||||
setting_work_packages_identifier_classic_caption: 'Every work package gets a sequential number starting with 1 (for example, #1234). The numbers are unique within the instance and remain the same even if work packages are moved between projects.'
|
||||
setting_work_packages_identifier_semantic: Identificadores semánticos basados en proyectos
|
||||
setting_work_packages_identifier_semantic: Project-based semantic identifiers (Beta)
|
||||
setting_work_packages_identifier_semantic_caption: Every project has a unique project identifier prefixed to a number (for example, PROJ-11). The numbering of each project starts at 1. If a work package is moved to another project, a new identifier is generated but the old one will continue to function.
|
||||
setting_work_package_list_default_highlighting_mode: Modo de resaltado predeterminado
|
||||
setting_work_package_list_default_highlighted_attributes: Atributos resaltados en línea predeterminados
|
||||
@@ -5950,6 +5955,17 @@ es:
|
||||
warning: 'Cambiar qué días de la semana se consideran laborables y cuáles no, puede afectar a las fechas de inicio y fin de todos los paquetes de trabajo y ciclos de vida en todos los proyectos de esta instancia.
|
||||
|
||||
'
|
||||
dialog:
|
||||
title: Change working days
|
||||
description: 'Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
|
||||
'
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated.
|
||||
|
||||
'
|
||||
heading: Change the working days?
|
||||
confirm_button: Save and reschedule
|
||||
journal_note:
|
||||
changed: _**Días laborales** cambiados (%{changes})._
|
||||
days:
|
||||
|
||||
@@ -57,7 +57,7 @@ et:
|
||||
col_identifier: Identifier
|
||||
col_project: Project
|
||||
col_reserved: Reserved
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in classic identifier mode.
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in numeric identifier mode.
|
||||
filter_label: Filter identifiers
|
||||
btn_release: Release
|
||||
released_notice: Identifier "%{identifier}" has been released.
|
||||
@@ -1719,6 +1719,7 @@ et:
|
||||
attachment:
|
||||
attachment_content: Attachment content
|
||||
attachment_file_name: Attachment file name
|
||||
charset: Character set
|
||||
content_type: Content-type
|
||||
downloads: Allalaaditud failid
|
||||
file: Manus
|
||||
@@ -1813,6 +1814,7 @@ et:
|
||||
title: Title
|
||||
description: Description
|
||||
member:
|
||||
blocked: Blocked
|
||||
roles: Rollid
|
||||
notification:
|
||||
read_ian: Read in-app
|
||||
@@ -3510,6 +3512,9 @@ et:
|
||||
additional:
|
||||
projects: Newest visible projects in this instance.
|
||||
no_visible_projects: There are no visible projects in this instance.
|
||||
favorite_projects:
|
||||
no_results: You have no favorite projects
|
||||
no_results_subtext: Add one or multiple projects as favorite through their overview or in a project list.
|
||||
users: Newest registered users in this instance.
|
||||
blocks:
|
||||
community: OpenProject community
|
||||
@@ -5353,7 +5358,7 @@ et:
|
||||
setting_welcome_on_homescreen: Display welcome block on homescreen
|
||||
setting_work_packages_identifier_classic: Instance-wide numerical sequence (default)
|
||||
setting_work_packages_identifier_classic_caption: 'Every work package gets a sequential number starting with 1 (for example, #1234). The numbers are unique within the instance and remain the same even if work packages are moved between projects.'
|
||||
setting_work_packages_identifier_semantic: Project-based semantic identifiers
|
||||
setting_work_packages_identifier_semantic: Project-based semantic identifiers (Beta)
|
||||
setting_work_packages_identifier_semantic_caption: Every project has a unique project identifier prefixed to a number (for example, PROJ-11). The numbering of each project starts at 1. If a work package is moved to another project, a new identifier is generated but the old one will continue to function.
|
||||
setting_work_package_list_default_highlighting_mode: Default highlighting mode
|
||||
setting_work_package_list_default_highlighted_attributes: Default inline highlighted attributes
|
||||
@@ -5963,6 +5968,17 @@ et:
|
||||
warning: 'Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
|
||||
'
|
||||
dialog:
|
||||
title: Change working days
|
||||
description: 'Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
|
||||
'
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated.
|
||||
|
||||
'
|
||||
heading: Change the working days?
|
||||
confirm_button: Save and reschedule
|
||||
journal_note:
|
||||
changed: _**Working days** changed (%{changes})._
|
||||
days:
|
||||
|
||||
@@ -57,7 +57,7 @@ eu:
|
||||
col_identifier: Identifier
|
||||
col_project: Project
|
||||
col_reserved: Reserved
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in classic identifier mode.
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in numeric identifier mode.
|
||||
filter_label: Filter identifiers
|
||||
btn_release: Release
|
||||
released_notice: Identifier "%{identifier}" has been released.
|
||||
@@ -1719,6 +1719,7 @@ eu:
|
||||
attachment:
|
||||
attachment_content: Attachment content
|
||||
attachment_file_name: Attachment file name
|
||||
charset: Character set
|
||||
content_type: Content-type
|
||||
downloads: Downloads
|
||||
file: File
|
||||
@@ -1813,6 +1814,7 @@ eu:
|
||||
title: Title
|
||||
description: Description
|
||||
member:
|
||||
blocked: Blocked
|
||||
roles: Roles
|
||||
notification:
|
||||
read_ian: Read in-app
|
||||
@@ -3510,6 +3512,9 @@ eu:
|
||||
additional:
|
||||
projects: Newest visible projects in this instance.
|
||||
no_visible_projects: There are no visible projects in this instance.
|
||||
favorite_projects:
|
||||
no_results: You have no favorite projects
|
||||
no_results_subtext: Add one or multiple projects as favorite through their overview or in a project list.
|
||||
users: Newest registered users in this instance.
|
||||
blocks:
|
||||
community: OpenProject community
|
||||
@@ -5355,7 +5360,7 @@ eu:
|
||||
setting_welcome_on_homescreen: Display welcome block on homescreen
|
||||
setting_work_packages_identifier_classic: Instance-wide numerical sequence (default)
|
||||
setting_work_packages_identifier_classic_caption: 'Every work package gets a sequential number starting with 1 (for example, #1234). The numbers are unique within the instance and remain the same even if work packages are moved between projects.'
|
||||
setting_work_packages_identifier_semantic: Project-based semantic identifiers
|
||||
setting_work_packages_identifier_semantic: Project-based semantic identifiers (Beta)
|
||||
setting_work_packages_identifier_semantic_caption: Every project has a unique project identifier prefixed to a number (for example, PROJ-11). The numbering of each project starts at 1. If a work package is moved to another project, a new identifier is generated but the old one will continue to function.
|
||||
setting_work_package_list_default_highlighting_mode: Default highlighting mode
|
||||
setting_work_package_list_default_highlighted_attributes: Default inline highlighted attributes
|
||||
@@ -5969,6 +5974,17 @@ eu:
|
||||
warning: 'Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
|
||||
'
|
||||
dialog:
|
||||
title: Change working days
|
||||
description: 'Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
|
||||
'
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated.
|
||||
|
||||
'
|
||||
heading: Change the working days?
|
||||
confirm_button: Save and reschedule
|
||||
journal_note:
|
||||
changed: _**Working days** changed (%{changes})._
|
||||
days:
|
||||
|
||||
@@ -57,7 +57,7 @@ fa:
|
||||
col_identifier: Identifier
|
||||
col_project: Project
|
||||
col_reserved: Reserved
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in classic identifier mode.
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in numeric identifier mode.
|
||||
filter_label: Filter identifiers
|
||||
btn_release: Release
|
||||
released_notice: Identifier "%{identifier}" has been released.
|
||||
@@ -1719,6 +1719,7 @@ fa:
|
||||
attachment:
|
||||
attachment_content: محتوای پیوست
|
||||
attachment_file_name: Attachment file name
|
||||
charset: Character set
|
||||
content_type: Content-type
|
||||
downloads: دانلود ها
|
||||
file: فایل
|
||||
@@ -1813,6 +1814,7 @@ fa:
|
||||
title: Title
|
||||
description: Description
|
||||
member:
|
||||
blocked: Blocked
|
||||
roles: نقشها
|
||||
notification:
|
||||
read_ian: Read in-app
|
||||
@@ -3510,6 +3512,9 @@ fa:
|
||||
additional:
|
||||
projects: Newest visible projects in this instance.
|
||||
no_visible_projects: There are no visible projects in this instance.
|
||||
favorite_projects:
|
||||
no_results: You have no favorite projects
|
||||
no_results_subtext: Add one or multiple projects as favorite through their overview or in a project list.
|
||||
users: Newest registered users in this instance.
|
||||
blocks:
|
||||
community: OpenProject community
|
||||
@@ -5355,7 +5360,7 @@ fa:
|
||||
setting_welcome_on_homescreen: Display welcome block on homescreen
|
||||
setting_work_packages_identifier_classic: Instance-wide numerical sequence (default)
|
||||
setting_work_packages_identifier_classic_caption: 'Every work package gets a sequential number starting with 1 (for example, #1234). The numbers are unique within the instance and remain the same even if work packages are moved between projects.'
|
||||
setting_work_packages_identifier_semantic: Project-based semantic identifiers
|
||||
setting_work_packages_identifier_semantic: Project-based semantic identifiers (Beta)
|
||||
setting_work_packages_identifier_semantic_caption: Every project has a unique project identifier prefixed to a number (for example, PROJ-11). The numbering of each project starts at 1. If a work package is moved to another project, a new identifier is generated but the old one will continue to function.
|
||||
setting_work_package_list_default_highlighting_mode: Default highlighting mode
|
||||
setting_work_package_list_default_highlighted_attributes: Default inline highlighted attributes
|
||||
@@ -5969,6 +5974,17 @@ fa:
|
||||
warning: 'Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
|
||||
'
|
||||
dialog:
|
||||
title: Change working days
|
||||
description: 'Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
|
||||
'
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated.
|
||||
|
||||
'
|
||||
heading: Change the working days?
|
||||
confirm_button: Save and reschedule
|
||||
journal_note:
|
||||
changed: _**Working days** changed (%{changes})._
|
||||
days:
|
||||
|
||||
@@ -57,7 +57,7 @@ fi:
|
||||
col_identifier: Identifier
|
||||
col_project: Project
|
||||
col_reserved: Reserved
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in classic identifier mode.
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in numeric identifier mode.
|
||||
filter_label: Filter identifiers
|
||||
btn_release: Release
|
||||
released_notice: Identifier "%{identifier}" has been released.
|
||||
@@ -1719,6 +1719,7 @@ fi:
|
||||
attachment:
|
||||
attachment_content: Liitteen sisältö
|
||||
attachment_file_name: Liitteen tiedoston nimi
|
||||
charset: Character set
|
||||
content_type: Content-type
|
||||
downloads: Lataukset
|
||||
file: Tiedosto
|
||||
@@ -1813,6 +1814,7 @@ fi:
|
||||
title: Title
|
||||
description: Description
|
||||
member:
|
||||
blocked: Blocked
|
||||
roles: Roolit
|
||||
notification:
|
||||
read_ian: Read in-app
|
||||
@@ -3508,6 +3510,9 @@ fi:
|
||||
additional:
|
||||
projects: Uusimmat projektit.
|
||||
no_visible_projects: Ei nähtävissä olevia projekteja.
|
||||
favorite_projects:
|
||||
no_results: You have no favorite projects
|
||||
no_results_subtext: Add one or multiple projects as favorite through their overview or in a project list.
|
||||
users: Uusimmat rekisteröityneet käyttäjät.
|
||||
blocks:
|
||||
community: OpenProject yhteisö
|
||||
@@ -5353,7 +5358,7 @@ fi:
|
||||
setting_welcome_on_homescreen: Näytä tervehdyspalkki kotinäkymässä
|
||||
setting_work_packages_identifier_classic: Instance-wide numerical sequence (default)
|
||||
setting_work_packages_identifier_classic_caption: 'Every work package gets a sequential number starting with 1 (for example, #1234). The numbers are unique within the instance and remain the same even if work packages are moved between projects.'
|
||||
setting_work_packages_identifier_semantic: Project-based semantic identifiers
|
||||
setting_work_packages_identifier_semantic: Project-based semantic identifiers (Beta)
|
||||
setting_work_packages_identifier_semantic_caption: Every project has a unique project identifier prefixed to a number (for example, PROJ-11). The numbering of each project starts at 1. If a work package is moved to another project, a new identifier is generated but the old one will continue to function.
|
||||
setting_work_package_list_default_highlighting_mode: Default highlighting mode
|
||||
setting_work_package_list_default_highlighted_attributes: Default inline highlighted attributes
|
||||
@@ -5965,6 +5970,17 @@ fi:
|
||||
warning: 'Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
|
||||
'
|
||||
dialog:
|
||||
title: Change working days
|
||||
description: 'Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
|
||||
'
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated.
|
||||
|
||||
'
|
||||
heading: Change the working days?
|
||||
confirm_button: Save and reschedule
|
||||
journal_note:
|
||||
changed: _**Working days** changed (%{changes})._
|
||||
days:
|
||||
|
||||
@@ -57,7 +57,7 @@ fil:
|
||||
col_identifier: Identifier
|
||||
col_project: Project
|
||||
col_reserved: Reserved
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in classic identifier mode.
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in numeric identifier mode.
|
||||
filter_label: Filter identifiers
|
||||
btn_release: Release
|
||||
released_notice: Identifier "%{identifier}" has been released.
|
||||
@@ -1719,6 +1719,7 @@ fil:
|
||||
attachment:
|
||||
attachment_content: Nilalaman ng nakalakip
|
||||
attachment_file_name: Pangalan ng nakalakip na file
|
||||
charset: Character set
|
||||
content_type: Content-type
|
||||
downloads: Ang mga na-download
|
||||
file: File
|
||||
@@ -1813,6 +1814,7 @@ fil:
|
||||
title: Title
|
||||
description: Description
|
||||
member:
|
||||
blocked: Blocked
|
||||
roles: Ang mga tungkulin
|
||||
notification:
|
||||
read_ian: Read in-app
|
||||
@@ -3510,6 +3512,9 @@ fil:
|
||||
additional:
|
||||
projects: Pinakamabagong makikitang proyekto sa pagkakataong ito.
|
||||
no_visible_projects: There are no visible projects in this instance.
|
||||
favorite_projects:
|
||||
no_results: You have no favorite projects
|
||||
no_results_subtext: Add one or multiple projects as favorite through their overview or in a project list.
|
||||
users: Pinakamabagong rehistrong gumagamit sa panahong ito.
|
||||
blocks:
|
||||
community: Komunidad ng OpenProject
|
||||
@@ -5351,7 +5356,7 @@ fil:
|
||||
setting_welcome_on_homescreen: I-display ang welcome block sa homescreen
|
||||
setting_work_packages_identifier_classic: Instance-wide numerical sequence (default)
|
||||
setting_work_packages_identifier_classic_caption: 'Every work package gets a sequential number starting with 1 (for example, #1234). The numbers are unique within the instance and remain the same even if work packages are moved between projects.'
|
||||
setting_work_packages_identifier_semantic: Project-based semantic identifiers
|
||||
setting_work_packages_identifier_semantic: Project-based semantic identifiers (Beta)
|
||||
setting_work_packages_identifier_semantic_caption: Every project has a unique project identifier prefixed to a number (for example, PROJ-11). The numbering of each project starts at 1. If a work package is moved to another project, a new identifier is generated but the old one will continue to function.
|
||||
setting_work_package_list_default_highlighting_mode: Default highlighting mode
|
||||
setting_work_package_list_default_highlighted_attributes: Default inline highlighted attributes
|
||||
@@ -5965,6 +5970,17 @@ fil:
|
||||
warning: 'Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
|
||||
'
|
||||
dialog:
|
||||
title: Change working days
|
||||
description: 'Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
|
||||
'
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated.
|
||||
|
||||
'
|
||||
heading: Change the working days?
|
||||
confirm_button: Save and reschedule
|
||||
journal_note:
|
||||
changed: _**Working days** changed (%{changes})._
|
||||
days:
|
||||
|
||||
@@ -57,7 +57,7 @@ fr:
|
||||
col_identifier: Identifier
|
||||
col_project: Project
|
||||
col_reserved: Reserved
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in classic identifier mode.
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in numeric identifier mode.
|
||||
filter_label: Filter identifiers
|
||||
btn_release: Release
|
||||
released_notice: Identifier "%{identifier}" has been released.
|
||||
@@ -1712,6 +1712,7 @@ fr:
|
||||
attachment:
|
||||
attachment_content: Pièces jointes
|
||||
attachment_file_name: Nom de la pièce jointe
|
||||
charset: Character set
|
||||
content_type: Type de contenu
|
||||
downloads: Téléchargements
|
||||
file: Fichier
|
||||
@@ -1806,6 +1807,7 @@ fr:
|
||||
title: Titre
|
||||
description: Description
|
||||
member:
|
||||
blocked: Blocked
|
||||
roles: Rôles
|
||||
notification:
|
||||
read_ian: Lire dans l'application
|
||||
@@ -3503,6 +3505,9 @@ fr:
|
||||
additional:
|
||||
projects: Les projets visibles les plus récents de cette instance.
|
||||
no_visible_projects: Il n'y a aucun projet visible dans cette instance.
|
||||
favorite_projects:
|
||||
no_results: You have no favorite projects
|
||||
no_results_subtext: Add one or multiple projects as favorite through their overview or in a project list.
|
||||
users: Les utilisateurs enregistrés les plus récents de cette instance.
|
||||
blocks:
|
||||
community: Communauté OpenProject
|
||||
@@ -5346,7 +5351,7 @@ fr:
|
||||
setting_welcome_on_homescreen: Afficher le bloc de bienvenue sur l'écran d'accueil
|
||||
setting_work_packages_identifier_classic: Séquence numérique à l'échelle de l'instance (par défaut)
|
||||
setting_work_packages_identifier_classic_caption: 'Every work package gets a sequential number starting with 1 (for example, #1234). The numbers are unique within the instance and remain the same even if work packages are moved between projects.'
|
||||
setting_work_packages_identifier_semantic: Identifiants sémantiques basés sur le projet
|
||||
setting_work_packages_identifier_semantic: Project-based semantic identifiers (Beta)
|
||||
setting_work_packages_identifier_semantic_caption: Every project has a unique project identifier prefixed to a number (for example, PROJ-11). The numbering of each project starts at 1. If a work package is moved to another project, a new identifier is generated but the old one will continue to function.
|
||||
setting_work_package_list_default_highlighting_mode: Mode de surbrillance par défaut
|
||||
setting_work_package_list_default_highlighted_attributes: Attributs en ligne mis en surbrillance par défaut
|
||||
@@ -5960,6 +5965,17 @@ fr:
|
||||
warning: 'La modification des jours de la semaine considérés comme des jours ouvrables ou des jours non ouvrables peut affecter les jours de début et de fin de tous les lots de travaux et les cycles de vie de tous les projets dans ce cas.
|
||||
|
||||
'
|
||||
dialog:
|
||||
title: Change working days
|
||||
description: 'Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
|
||||
'
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated.
|
||||
|
||||
'
|
||||
heading: Change the working days?
|
||||
confirm_button: Save and reschedule
|
||||
journal_note:
|
||||
changed: _**Jours ouvrables** modifiés (%{changes})._
|
||||
days:
|
||||
|
||||
@@ -57,7 +57,7 @@ he:
|
||||
col_identifier: Identifier
|
||||
col_project: Project
|
||||
col_reserved: Reserved
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in classic identifier mode.
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in numeric identifier mode.
|
||||
filter_label: Filter identifiers
|
||||
btn_release: Release
|
||||
released_notice: Identifier "%{identifier}" has been released.
|
||||
@@ -1761,6 +1761,7 @@ he:
|
||||
attachment:
|
||||
attachment_content: Attachment content
|
||||
attachment_file_name: Attachment file name
|
||||
charset: Character set
|
||||
content_type: Content-type
|
||||
downloads: הורדות
|
||||
file: קובץ
|
||||
@@ -1855,6 +1856,7 @@ he:
|
||||
title: Title
|
||||
description: Description
|
||||
member:
|
||||
blocked: Blocked
|
||||
roles: תפקידים
|
||||
notification:
|
||||
read_ian: Read in-app
|
||||
@@ -3638,6 +3640,9 @@ he:
|
||||
additional:
|
||||
projects: Newest visible projects in this instance.
|
||||
no_visible_projects: There are no visible projects in this instance.
|
||||
favorite_projects:
|
||||
no_results: You have no favorite projects
|
||||
no_results_subtext: Add one or multiple projects as favorite through their overview or in a project list.
|
||||
users: Newest registered users in this instance.
|
||||
blocks:
|
||||
community: OpenProject community
|
||||
@@ -5493,7 +5498,7 @@ he:
|
||||
setting_welcome_on_homescreen: Display welcome block on homescreen
|
||||
setting_work_packages_identifier_classic: Instance-wide numerical sequence (default)
|
||||
setting_work_packages_identifier_classic_caption: 'Every work package gets a sequential number starting with 1 (for example, #1234). The numbers are unique within the instance and remain the same even if work packages are moved between projects.'
|
||||
setting_work_packages_identifier_semantic: Project-based semantic identifiers
|
||||
setting_work_packages_identifier_semantic: Project-based semantic identifiers (Beta)
|
||||
setting_work_packages_identifier_semantic_caption: Every project has a unique project identifier prefixed to a number (for example, PROJ-11). The numbering of each project starts at 1. If a work package is moved to another project, a new identifier is generated but the old one will continue to function.
|
||||
setting_work_package_list_default_highlighting_mode: Default highlighting mode
|
||||
setting_work_package_list_default_highlighted_attributes: Default inline highlighted attributes
|
||||
@@ -6109,6 +6114,17 @@ he:
|
||||
warning: 'Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
|
||||
'
|
||||
dialog:
|
||||
title: Change working days
|
||||
description: 'Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
|
||||
'
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated.
|
||||
|
||||
'
|
||||
heading: Change the working days?
|
||||
confirm_button: Save and reschedule
|
||||
journal_note:
|
||||
changed: _**Working days** changed (%{changes})._
|
||||
days:
|
||||
|
||||
@@ -57,7 +57,7 @@ hi:
|
||||
col_identifier: Identifier
|
||||
col_project: Project
|
||||
col_reserved: Reserved
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in classic identifier mode.
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in numeric identifier mode.
|
||||
filter_label: Filter identifiers
|
||||
btn_release: Release
|
||||
released_notice: Identifier "%{identifier}" has been released.
|
||||
@@ -1719,6 +1719,7 @@ hi:
|
||||
attachment:
|
||||
attachment_content: अनुलग्नक सामग्री
|
||||
attachment_file_name: अनुलग्नक फ़ाइल नाम
|
||||
charset: Character set
|
||||
content_type: Content-type
|
||||
downloads: डाउनलोड
|
||||
file: फ़ाइल
|
||||
@@ -1813,6 +1814,7 @@ hi:
|
||||
title: Title
|
||||
description: Description
|
||||
member:
|
||||
blocked: Blocked
|
||||
roles: भूमिकाएं
|
||||
notification:
|
||||
read_ian: Read in-app
|
||||
@@ -3510,6 +3512,9 @@ hi:
|
||||
additional:
|
||||
projects: Newest visible projects in this instance.
|
||||
no_visible_projects: इस उदाहरण में कोई दृश्यमान प्रोजेक्ट नहीं हैं ।
|
||||
favorite_projects:
|
||||
no_results: You have no favorite projects
|
||||
no_results_subtext: Add one or multiple projects as favorite through their overview or in a project list.
|
||||
users: Newest registered users in this instance.
|
||||
blocks:
|
||||
community: OpenProject community
|
||||
@@ -5355,7 +5360,7 @@ hi:
|
||||
setting_welcome_on_homescreen: Display welcome block on homescreen
|
||||
setting_work_packages_identifier_classic: Instance-wide numerical sequence (default)
|
||||
setting_work_packages_identifier_classic_caption: 'Every work package gets a sequential number starting with 1 (for example, #1234). The numbers are unique within the instance and remain the same even if work packages are moved between projects.'
|
||||
setting_work_packages_identifier_semantic: Project-based semantic identifiers
|
||||
setting_work_packages_identifier_semantic: Project-based semantic identifiers (Beta)
|
||||
setting_work_packages_identifier_semantic_caption: Every project has a unique project identifier prefixed to a number (for example, PROJ-11). The numbering of each project starts at 1. If a work package is moved to another project, a new identifier is generated but the old one will continue to function.
|
||||
setting_work_package_list_default_highlighting_mode: डिफ़ॉल्ट हाइलाइटिंग तरीका
|
||||
setting_work_package_list_default_highlighted_attributes: डिफ़ॉल्ट पंक्ति ही में हाइलाइट किए गए गुण
|
||||
@@ -5969,6 +5974,17 @@ hi:
|
||||
warning: 'Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
|
||||
'
|
||||
dialog:
|
||||
title: Change working days
|
||||
description: 'Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
|
||||
'
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated.
|
||||
|
||||
'
|
||||
heading: Change the working days?
|
||||
confirm_button: Save and reschedule
|
||||
journal_note:
|
||||
changed: _**Working days** changed (%{changes})._
|
||||
days:
|
||||
|
||||
@@ -57,7 +57,7 @@ hr:
|
||||
col_identifier: Identifier
|
||||
col_project: Project
|
||||
col_reserved: Reserved
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in classic identifier mode.
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in numeric identifier mode.
|
||||
filter_label: Filter identifiers
|
||||
btn_release: Release
|
||||
released_notice: Identifier "%{identifier}" has been released.
|
||||
@@ -1740,6 +1740,7 @@ hr:
|
||||
attachment:
|
||||
attachment_content: Attachment content
|
||||
attachment_file_name: Attachment file name
|
||||
charset: Character set
|
||||
content_type: Content-type
|
||||
downloads: Preuzimanja
|
||||
file: Datoteka
|
||||
@@ -1834,6 +1835,7 @@ hr:
|
||||
title: Title
|
||||
description: Description
|
||||
member:
|
||||
blocked: Blocked
|
||||
roles: Role
|
||||
notification:
|
||||
read_ian: Read in-app
|
||||
@@ -3572,6 +3574,9 @@ hr:
|
||||
additional:
|
||||
projects: Najnoviji vidljivi projekti unutar ove instance.
|
||||
no_visible_projects: There are no visible projects in this instance.
|
||||
favorite_projects:
|
||||
no_results: You have no favorite projects
|
||||
no_results_subtext: Add one or multiple projects as favorite through their overview or in a project list.
|
||||
users: Najnoviji registrirani korisnik unutar ove instance.
|
||||
blocks:
|
||||
community: OpenProject Zajednica
|
||||
@@ -5420,7 +5425,7 @@ hr:
|
||||
setting_welcome_on_homescreen: Prikaži tekst dobrodošlice na početnoj stranici
|
||||
setting_work_packages_identifier_classic: Instance-wide numerical sequence (default)
|
||||
setting_work_packages_identifier_classic_caption: 'Every work package gets a sequential number starting with 1 (for example, #1234). The numbers are unique within the instance and remain the same even if work packages are moved between projects.'
|
||||
setting_work_packages_identifier_semantic: Project-based semantic identifiers
|
||||
setting_work_packages_identifier_semantic: Project-based semantic identifiers (Beta)
|
||||
setting_work_packages_identifier_semantic_caption: Every project has a unique project identifier prefixed to a number (for example, PROJ-11). The numbering of each project starts at 1. If a work package is moved to another project, a new identifier is generated but the old one will continue to function.
|
||||
setting_work_package_list_default_highlighting_mode: Default highlighting mode
|
||||
setting_work_package_list_default_highlighted_attributes: Default inline highlighted attributes
|
||||
@@ -6033,6 +6038,17 @@ hr:
|
||||
warning: 'Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
|
||||
'
|
||||
dialog:
|
||||
title: Change working days
|
||||
description: 'Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
|
||||
'
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated.
|
||||
|
||||
'
|
||||
heading: Change the working days?
|
||||
confirm_button: Save and reschedule
|
||||
journal_note:
|
||||
changed: _**Working days** changed (%{changes})._
|
||||
days:
|
||||
|
||||
@@ -57,7 +57,7 @@ hu:
|
||||
col_identifier: Identifier
|
||||
col_project: Project
|
||||
col_reserved: Reserved
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in classic identifier mode.
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in numeric identifier mode.
|
||||
filter_label: Filter identifiers
|
||||
btn_release: Release
|
||||
released_notice: Identifier "%{identifier}" has been released.
|
||||
@@ -1739,6 +1739,7 @@ hu:
|
||||
attachment:
|
||||
attachment_content: Melléklet tartalma
|
||||
attachment_file_name: Melléklet fájl neve
|
||||
charset: Character set
|
||||
content_type: Content-type
|
||||
downloads: Letöltés
|
||||
file: Fájl
|
||||
@@ -1835,6 +1836,7 @@ hu:
|
||||
title: Title
|
||||
description: Description
|
||||
member:
|
||||
blocked: Blocked
|
||||
roles: Szerepkörök
|
||||
notification:
|
||||
read_ian: Read in-app
|
||||
@@ -3572,6 +3574,9 @@ hu:
|
||||
additional:
|
||||
projects: Legújabb projektek ebben az esetben.
|
||||
no_visible_projects: Ebben a példányban nincsenek látható projektek.
|
||||
favorite_projects:
|
||||
no_results: You have no favorite projects
|
||||
no_results_subtext: Add one or multiple projects as favorite through their overview or in a project list.
|
||||
users: Legújabb regisztrált felhasználók ebben az esetben.
|
||||
blocks:
|
||||
community: OpenProject Közösség
|
||||
@@ -5445,7 +5450,7 @@ hu:
|
||||
setting_welcome_on_homescreen: Üdvözlő blokk megjelenítése a kezdőképernyőn
|
||||
setting_work_packages_identifier_classic: Instance-wide numerical sequence (default)
|
||||
setting_work_packages_identifier_classic_caption: 'Every work package gets a sequential number starting with 1 (for example, #1234). The numbers are unique within the instance and remain the same even if work packages are moved between projects.'
|
||||
setting_work_packages_identifier_semantic: Project-based semantic identifiers
|
||||
setting_work_packages_identifier_semantic: Project-based semantic identifiers (Beta)
|
||||
setting_work_packages_identifier_semantic_caption: Every project has a unique project identifier prefixed to a number (for example, PROJ-11). The numbering of each project starts at 1. If a work package is moved to another project, a new identifier is generated but the old one will continue to function.
|
||||
setting_work_package_list_default_highlighting_mode: Alapértelmezett kiemelési mód
|
||||
setting_work_package_list_default_highlighted_attributes: Alapértelmezett kiemelt attribútumok sorai
|
||||
@@ -6057,6 +6062,17 @@ hu:
|
||||
warning: 'Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
|
||||
'
|
||||
dialog:
|
||||
title: Change working days
|
||||
description: 'Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
|
||||
'
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated.
|
||||
|
||||
'
|
||||
heading: Change the working days?
|
||||
confirm_button: Save and reschedule
|
||||
journal_note:
|
||||
changed: _**Working days** changed (%{changes})._
|
||||
days:
|
||||
|
||||
@@ -57,7 +57,7 @@ hy:
|
||||
col_identifier: Identifier
|
||||
col_project: Project
|
||||
col_reserved: Reserved
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in classic identifier mode.
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in numeric identifier mode.
|
||||
filter_label: Filter identifiers
|
||||
btn_release: Release
|
||||
released_notice: Identifier "%{identifier}" has been released.
|
||||
@@ -1719,6 +1719,7 @@ hy:
|
||||
attachment:
|
||||
attachment_content: Attachment content
|
||||
attachment_file_name: Attachment file name
|
||||
charset: Character set
|
||||
content_type: Content-type
|
||||
downloads: Downloads
|
||||
file: File
|
||||
@@ -1813,6 +1814,7 @@ hy:
|
||||
title: Title
|
||||
description: Description
|
||||
member:
|
||||
blocked: Blocked
|
||||
roles: Roles
|
||||
notification:
|
||||
read_ian: Read in-app
|
||||
@@ -3510,6 +3512,9 @@ hy:
|
||||
additional:
|
||||
projects: Newest visible projects in this instance.
|
||||
no_visible_projects: There are no visible projects in this instance.
|
||||
favorite_projects:
|
||||
no_results: You have no favorite projects
|
||||
no_results_subtext: Add one or multiple projects as favorite through their overview or in a project list.
|
||||
users: Newest registered users in this instance.
|
||||
blocks:
|
||||
community: OpenProject community
|
||||
@@ -5355,7 +5360,7 @@ hy:
|
||||
setting_welcome_on_homescreen: Display welcome block on homescreen
|
||||
setting_work_packages_identifier_classic: Instance-wide numerical sequence (default)
|
||||
setting_work_packages_identifier_classic_caption: 'Every work package gets a sequential number starting with 1 (for example, #1234). The numbers are unique within the instance and remain the same even if work packages are moved between projects.'
|
||||
setting_work_packages_identifier_semantic: Project-based semantic identifiers
|
||||
setting_work_packages_identifier_semantic: Project-based semantic identifiers (Beta)
|
||||
setting_work_packages_identifier_semantic_caption: Every project has a unique project identifier prefixed to a number (for example, PROJ-11). The numbering of each project starts at 1. If a work package is moved to another project, a new identifier is generated but the old one will continue to function.
|
||||
setting_work_package_list_default_highlighting_mode: Default highlighting mode
|
||||
setting_work_package_list_default_highlighted_attributes: Default inline highlighted attributes
|
||||
@@ -5969,6 +5974,17 @@ hy:
|
||||
warning: 'Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
|
||||
'
|
||||
dialog:
|
||||
title: Change working days
|
||||
description: 'Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
|
||||
'
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated.
|
||||
|
||||
'
|
||||
heading: Change the working days?
|
||||
confirm_button: Save and reschedule
|
||||
journal_note:
|
||||
changed: _**Working days** changed (%{changes})._
|
||||
days:
|
||||
|
||||
@@ -57,7 +57,7 @@ id:
|
||||
col_identifier: Identifier
|
||||
col_project: Project
|
||||
col_reserved: Reserved
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in classic identifier mode.
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in numeric identifier mode.
|
||||
filter_label: Filter identifiers
|
||||
btn_release: Release
|
||||
released_notice: Identifier "%{identifier}" has been released.
|
||||
@@ -1702,6 +1702,7 @@ id:
|
||||
attachment:
|
||||
attachment_content: Isi dari lampiran
|
||||
attachment_file_name: Nama file dari lampiran
|
||||
charset: Character set
|
||||
content_type: Content-type
|
||||
downloads: Download
|
||||
file: File
|
||||
@@ -1796,6 +1797,7 @@ id:
|
||||
title: Title
|
||||
description: Description
|
||||
member:
|
||||
blocked: Blocked
|
||||
roles: Roles
|
||||
notification:
|
||||
read_ian: Read in-app
|
||||
@@ -3457,6 +3459,9 @@ id:
|
||||
additional:
|
||||
projects: Newest visible projects in this instance.
|
||||
no_visible_projects: Tidak ada proyek yang terlihat dalam contoh ini.
|
||||
favorite_projects:
|
||||
no_results: You have no favorite projects
|
||||
no_results_subtext: Add one or multiple projects as favorite through their overview or in a project list.
|
||||
users: Newest registered users in this instance.
|
||||
blocks:
|
||||
community: OpenProject community
|
||||
@@ -5287,7 +5292,7 @@ id:
|
||||
setting_welcome_on_homescreen: Display welcome block on homescreen
|
||||
setting_work_packages_identifier_classic: Instance-wide numerical sequence (default)
|
||||
setting_work_packages_identifier_classic_caption: 'Every work package gets a sequential number starting with 1 (for example, #1234). The numbers are unique within the instance and remain the same even if work packages are moved between projects.'
|
||||
setting_work_packages_identifier_semantic: Project-based semantic identifiers
|
||||
setting_work_packages_identifier_semantic: Project-based semantic identifiers (Beta)
|
||||
setting_work_packages_identifier_semantic_caption: Every project has a unique project identifier prefixed to a number (for example, PROJ-11). The numbering of each project starts at 1. If a work package is moved to another project, a new identifier is generated but the old one will continue to function.
|
||||
setting_work_package_list_default_highlighting_mode: Default highlighting mode
|
||||
setting_work_package_list_default_highlighted_attributes: Default inline highlighted attributes
|
||||
@@ -5894,6 +5899,17 @@ id:
|
||||
warning: 'Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
|
||||
'
|
||||
dialog:
|
||||
title: Change working days
|
||||
description: 'Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
|
||||
'
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated.
|
||||
|
||||
'
|
||||
heading: Change the working days?
|
||||
confirm_button: Save and reschedule
|
||||
journal_note:
|
||||
changed: _**Hari kerja** berubah (%{changes})._
|
||||
days:
|
||||
|
||||
@@ -57,7 +57,7 @@ it:
|
||||
col_identifier: Identifier
|
||||
col_project: Project
|
||||
col_reserved: Reserved
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in classic identifier mode.
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in numeric identifier mode.
|
||||
filter_label: Filter identifiers
|
||||
btn_release: Release
|
||||
released_notice: Identifier "%{identifier}" has been released.
|
||||
@@ -1717,6 +1717,7 @@ it:
|
||||
attachment:
|
||||
attachment_content: Contenuto allegato
|
||||
attachment_file_name: Nome del file allegato
|
||||
charset: Character set
|
||||
content_type: Tipo di contenuto
|
||||
downloads: Scaricati
|
||||
file: File
|
||||
@@ -1811,6 +1812,7 @@ it:
|
||||
title: Titolo
|
||||
description: Descrizione
|
||||
member:
|
||||
blocked: Blocked
|
||||
roles: Ruoli
|
||||
notification:
|
||||
read_ian: Leggi in app
|
||||
@@ -3510,6 +3512,9 @@ it:
|
||||
additional:
|
||||
projects: Progetti visibili più recenti in questa istanza.
|
||||
no_visible_projects: Non ci sono progetti visibili in questa istanza.
|
||||
favorite_projects:
|
||||
no_results: You have no favorite projects
|
||||
no_results_subtext: Add one or multiple projects as favorite through their overview or in a project list.
|
||||
users: Utenti registrati più recenti in questa istanza.
|
||||
blocks:
|
||||
community: Comunità di OpenProject
|
||||
@@ -5353,7 +5358,7 @@ it:
|
||||
setting_welcome_on_homescreen: Mostra il blocco testo di benvenuto nella pagina home
|
||||
setting_work_packages_identifier_classic: Sequenza numerica a livello di istanza (predefinita)
|
||||
setting_work_packages_identifier_classic_caption: 'Every work package gets a sequential number starting with 1 (for example, #1234). The numbers are unique within the instance and remain the same even if work packages are moved between projects.'
|
||||
setting_work_packages_identifier_semantic: Identificatori semantici basati su progetti
|
||||
setting_work_packages_identifier_semantic: Project-based semantic identifiers (Beta)
|
||||
setting_work_packages_identifier_semantic_caption: Every project has a unique project identifier prefixed to a number (for example, PROJ-11). The numbering of each project starts at 1. If a work package is moved to another project, a new identifier is generated but the old one will continue to function.
|
||||
setting_work_package_list_default_highlighting_mode: Modalità evidenziazione predefinita
|
||||
setting_work_package_list_default_highlighted_attributes: Attributi evidenziati in linea predefiniti
|
||||
@@ -5963,6 +5968,17 @@ it:
|
||||
warning: 'Cambiare quali giorni della settimana sono considerati giorni lavorativi o giorni non lavorativi può influenzare l''inizio e la fine di tutte le macro-attività e i cicli di vita in tutti i progetti in questo caso.
|
||||
|
||||
'
|
||||
dialog:
|
||||
title: Change working days
|
||||
description: 'Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
|
||||
'
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated.
|
||||
|
||||
'
|
||||
heading: Change the working days?
|
||||
confirm_button: Save and reschedule
|
||||
journal_note:
|
||||
changed: _**Giorni lavorativi** cambiati (%{changes})._
|
||||
days:
|
||||
|
||||
@@ -57,7 +57,7 @@ ja:
|
||||
col_identifier: Identifier
|
||||
col_project: Project
|
||||
col_reserved: Reserved
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in classic identifier mode.
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in numeric identifier mode.
|
||||
filter_label: Filter identifiers
|
||||
btn_release: Release
|
||||
released_notice: Identifier "%{identifier}" has been released.
|
||||
@@ -1699,6 +1699,7 @@ ja:
|
||||
attachment:
|
||||
attachment_content: 添付ファイルのコンテンツ
|
||||
attachment_file_name: 添付ファイル名
|
||||
charset: Character set
|
||||
content_type: コンテンツタイプ
|
||||
downloads: ダウンロード数
|
||||
file: ファイル
|
||||
@@ -1793,6 +1794,7 @@ ja:
|
||||
title: Title
|
||||
description: 説明
|
||||
member:
|
||||
blocked: Blocked
|
||||
roles: ロール
|
||||
notification:
|
||||
read_ian: アプリ内の読み取り
|
||||
@@ -3449,6 +3451,9 @@ ja:
|
||||
additional:
|
||||
projects: このサイトの最新の可視化プロジェクト。
|
||||
no_visible_projects: このサイトに表示されているプロジェクトはありません。
|
||||
favorite_projects:
|
||||
no_results: You have no favorite projects
|
||||
no_results_subtext: Add one or multiple projects as favorite through their overview or in a project list.
|
||||
users: このサイトの最新の登録ユーザー。
|
||||
blocks:
|
||||
community: OpenProject コミュニティ
|
||||
@@ -5283,7 +5288,7 @@ ja:
|
||||
setting_welcome_on_homescreen: ホーム画面にようこそブロックを表示
|
||||
setting_work_packages_identifier_classic: Instance-wide numerical sequence (default)
|
||||
setting_work_packages_identifier_classic_caption: 'Every work package gets a sequential number starting with 1 (for example, #1234). The numbers are unique within the instance and remain the same even if work packages are moved between projects.'
|
||||
setting_work_packages_identifier_semantic: Project-based semantic identifiers
|
||||
setting_work_packages_identifier_semantic: Project-based semantic identifiers (Beta)
|
||||
setting_work_packages_identifier_semantic_caption: Every project has a unique project identifier prefixed to a number (for example, PROJ-11). The numbering of each project starts at 1. If a work package is moved to another project, a new identifier is generated but the old one will continue to function.
|
||||
setting_work_package_list_default_highlighting_mode: デフォルトの強調表示モード
|
||||
setting_work_package_list_default_highlighted_attributes: デフォルトのインライン強調表示属性
|
||||
@@ -5896,6 +5901,17 @@ ja:
|
||||
warning: '営業日とみなす曜日を変更すると、このサイト内のすべてのプロジェクトのすべてのワークパッケージの開始日と終了日に影響を与える可能性があります。
|
||||
|
||||
'
|
||||
dialog:
|
||||
title: Change working days
|
||||
description: 'Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
|
||||
'
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated.
|
||||
|
||||
'
|
||||
heading: Change the working days?
|
||||
confirm_button: Save and reschedule
|
||||
journal_note:
|
||||
changed: _**営業日**変更(%{changes})_
|
||||
days:
|
||||
|
||||
@@ -210,13 +210,6 @@ af:
|
||||
new_date: "(new)"
|
||||
add_non_working_day: Non-working day
|
||||
already_added_error: A non-working day for this date exists already. There can only be one non-working day created for each unique date.
|
||||
change_button: Save and reschedule
|
||||
change_title: Change working days
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
change_description: Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated. Are you sure you want to continue?
|
||||
|
||||
'
|
||||
work_packages_settings:
|
||||
warning_progress_calculation_mode_change_from_status_to_field_html: Changing progress calculation mode from status-based to work-based will make 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>.
|
||||
warning_progress_calculation_mode_change_from_field_to_status_html: Changing progress calculation mode from work-based to status-based will result in all existing <i>% Complete</i> values to be lost and replaced with values associated with each status. Existing values for <i>Remaining work</i> may also be recalculated to reflect this change. This action is not reversible.
|
||||
|
||||
@@ -210,13 +210,6 @@ ar:
|
||||
new_date: "(new)"
|
||||
add_non_working_day: Non-working day
|
||||
already_added_error: A non-working day for this date exists already. There can only be one non-working day created for each unique date.
|
||||
change_button: Save and reschedule
|
||||
change_title: Change working days
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
change_description: Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated. Are you sure you want to continue?
|
||||
|
||||
'
|
||||
work_packages_settings:
|
||||
warning_progress_calculation_mode_change_from_status_to_field_html: Changing progress calculation mode from status-based to work-based will make 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>.
|
||||
warning_progress_calculation_mode_change_from_field_to_status_html: Changing progress calculation mode from work-based to status-based will result in all existing <i>% Complete</i> values to be lost and replaced with values associated with each status. Existing values for <i>Remaining work</i> may also be recalculated to reflect this change. This action is not reversible.
|
||||
|
||||
@@ -210,13 +210,6 @@ az:
|
||||
new_date: "(new)"
|
||||
add_non_working_day: Non-working day
|
||||
already_added_error: A non-working day for this date exists already. There can only be one non-working day created for each unique date.
|
||||
change_button: Save and reschedule
|
||||
change_title: Change working days
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
change_description: Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated. Are you sure you want to continue?
|
||||
|
||||
'
|
||||
work_packages_settings:
|
||||
warning_progress_calculation_mode_change_from_status_to_field_html: Changing progress calculation mode from status-based to work-based will make 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>.
|
||||
warning_progress_calculation_mode_change_from_field_to_status_html: Changing progress calculation mode from work-based to status-based will result in all existing <i>% Complete</i> values to be lost and replaced with values associated with each status. Existing values for <i>Remaining work</i> may also be recalculated to reflect this change. This action is not reversible.
|
||||
|
||||
@@ -210,13 +210,6 @@ be:
|
||||
new_date: "(new)"
|
||||
add_non_working_day: Non-working day
|
||||
already_added_error: A non-working day for this date exists already. There can only be one non-working day created for each unique date.
|
||||
change_button: Save and reschedule
|
||||
change_title: Change working days
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
change_description: Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated. Are you sure you want to continue?
|
||||
|
||||
'
|
||||
work_packages_settings:
|
||||
warning_progress_calculation_mode_change_from_status_to_field_html: Changing progress calculation mode from status-based to work-based will make 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>.
|
||||
warning_progress_calculation_mode_change_from_field_to_status_html: Changing progress calculation mode from work-based to status-based will result in all existing <i>% Complete</i> values to be lost and replaced with values associated with each status. Existing values for <i>Remaining work</i> may also be recalculated to reflect this change. This action is not reversible.
|
||||
|
||||
@@ -210,13 +210,6 @@ bg:
|
||||
new_date: "(new)"
|
||||
add_non_working_day: Non-working day
|
||||
already_added_error: A non-working day for this date exists already. There can only be one non-working day created for each unique date.
|
||||
change_button: Save and reschedule
|
||||
change_title: Change working days
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
change_description: Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated. Are you sure you want to continue?
|
||||
|
||||
'
|
||||
work_packages_settings:
|
||||
warning_progress_calculation_mode_change_from_status_to_field_html: Changing progress calculation mode from status-based to work-based will make 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>.
|
||||
warning_progress_calculation_mode_change_from_field_to_status_html: Changing progress calculation mode from work-based to status-based will result in all existing <i>% Complete</i> values to be lost and replaced with values associated with each status. Existing values for <i>Remaining work</i> may also be recalculated to reflect this change. This action is not reversible.
|
||||
|
||||
@@ -210,13 +210,6 @@ ca:
|
||||
new_date: "(nou)"
|
||||
add_non_working_day: Dia no laborable
|
||||
already_added_error: Ja existeix un dia no laborable per aquesta data. Només hi pot haver un dia no laborable creat per a cada data.
|
||||
change_button: Guarda i reprograma
|
||||
change_title: Canvia els dies laborals
|
||||
removed_title: 'Eliminaràs els següents dies de la llista de dies no laborals:'
|
||||
change_description: Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated. Are you sure you want to continue?
|
||||
|
||||
'
|
||||
work_packages_settings:
|
||||
warning_progress_calculation_mode_change_from_status_to_field_html: Changing progress calculation mode from status-based to work-based will make 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>.
|
||||
warning_progress_calculation_mode_change_from_field_to_status_html: Changing progress calculation mode from work-based to status-based will result in all existing <i>% Complete</i> values to be lost and replaced with values associated with each status. Existing values for <i>Remaining work</i> may also be recalculated to reflect this change. This action is not reversible.
|
||||
|
||||
@@ -210,13 +210,6 @@ ckb-IR:
|
||||
new_date: "(new)"
|
||||
add_non_working_day: Non-working day
|
||||
already_added_error: A non-working day for this date exists already. There can only be one non-working day created for each unique date.
|
||||
change_button: Save and reschedule
|
||||
change_title: Change working days
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
change_description: Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated. Are you sure you want to continue?
|
||||
|
||||
'
|
||||
work_packages_settings:
|
||||
warning_progress_calculation_mode_change_from_status_to_field_html: Changing progress calculation mode from status-based to work-based will make 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>.
|
||||
warning_progress_calculation_mode_change_from_field_to_status_html: Changing progress calculation mode from work-based to status-based will result in all existing <i>% Complete</i> values to be lost and replaced with values associated with each status. Existing values for <i>Remaining work</i> may also be recalculated to reflect this change. This action is not reversible.
|
||||
|
||||
@@ -210,13 +210,6 @@ cs:
|
||||
new_date: "(nové)"
|
||||
add_non_working_day: Nepracovní den
|
||||
already_added_error: Nepracovní den pro toto datum již existuje. Pro každý jedinečný datum může být vytvořen pouze jeden nepracovní den.
|
||||
change_button: Uložit a přeplánovat
|
||||
change_title: Změnit pracovní dny
|
||||
removed_title: 'Následující dny odeberete ze seznamu nepracovních dnů:'
|
||||
change_description: Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
warning: 'Změny se mohou projevit až po určité době. Po aktualizaci všech příslušných pracovních balíčků a životních cyklů projektu budete informováni. Jste si jisti, že chcete pokračovat?
|
||||
|
||||
'
|
||||
work_packages_settings:
|
||||
warning_progress_calculation_mode_change_from_status_to_field_html: Changing progress calculation mode from status-based to work-based will make 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>.
|
||||
warning_progress_calculation_mode_change_from_field_to_status_html: Changing progress calculation mode from work-based to status-based will result in all existing <i>% Complete</i> values to be lost and replaced with values associated with each status. Existing values for <i>Remaining work</i> may also be recalculated to reflect this change. This action is not reversible.
|
||||
|
||||
@@ -210,13 +210,6 @@ da:
|
||||
new_date: "(new)"
|
||||
add_non_working_day: Non-working day
|
||||
already_added_error: A non-working day for this date exists already. There can only be one non-working day created for each unique date.
|
||||
change_button: Save and reschedule
|
||||
change_title: Change working days
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
change_description: Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated. Are you sure you want to continue?
|
||||
|
||||
'
|
||||
work_packages_settings:
|
||||
warning_progress_calculation_mode_change_from_status_to_field_html: Changing progress calculation mode from status-based to work-based will make 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>.
|
||||
warning_progress_calculation_mode_change_from_field_to_status_html: Changing progress calculation mode from work-based to status-based will result in all existing <i>% Complete</i> values to be lost and replaced with values associated with each status. Existing values for <i>Remaining work</i> may also be recalculated to reflect this change. This action is not reversible.
|
||||
|
||||
@@ -210,13 +210,6 @@ de:
|
||||
new_date: "(neu)"
|
||||
add_non_working_day: Arbeitsfreier Tag
|
||||
already_added_error: Für dieses Datum existiert bereits ein arbeitsfreier Tag. Für jedes einzelne Datum kann nur ein arbeitsfreier Tag erstellt werden.
|
||||
change_button: Speichern und neu planen
|
||||
change_title: Arbeitstage ändern
|
||||
removed_title: 'Sie werden die folgenden Tage aus der Liste der arbeitsfreien Tage entfernen:'
|
||||
change_description: Die Änderung der Wochentage, die als Arbeitstage oder arbeitsfreie Tage gelten, kann sich auf die Start- und Endtage aller Arbeitspakete und Projektphasen in allen Projekten auswirken.
|
||||
warning: 'Es kann einige Zeit dauern, bis die Änderungen wirksam werden. Sie werden benachrichtigt, wenn alle relevanten Arbeitspakete und Projektphasen aktualisiert worden sind. Sind Sie sicher, dass Sie fortfahren möchten?
|
||||
|
||||
'
|
||||
work_packages_settings:
|
||||
warning_progress_calculation_mode_change_from_status_to_field_html: Wenn Sie den Modus der Fortschrittsberechnung von statusbasiert auf arbeitsbasiert ändern, ist das Feld <i>% abgeschlossen</i> frei editierbar. Wenn Sie optional Werte für <i>Aufwand</i> oder <i>Verbleibenden Aufwand</i> eingeben, werden diese auch mit <i>% abgeschlossen</i> verknüpft. Eine Änderung des <i>verbleibenden Aufwands</i> aktualisiert dann <i>% abgschlossen</i>.
|
||||
warning_progress_calculation_mode_change_from_field_to_status_html: Wenn Sie den Modus der Fortschrittsberechnung von aufwandsbezogen auf statusbezogen ändern, gehen alle bestehenden Werte für <i>% Fertigstellung</i> verloren und werden durch Werte ersetzt, die mit dem jeweiligen Status verbunden sind. Bestehende Werte für <i>Verbleibender Aufwand</i> können ebenfalls neu berechnet werden, um diese Änderung widerzuspiegeln. Diese Aktion ist nicht umkehrbar.
|
||||
|
||||
@@ -210,13 +210,6 @@ el:
|
||||
new_date: "(new)"
|
||||
add_non_working_day: Non-working day
|
||||
already_added_error: A non-working day for this date exists already. There can only be one non-working day created for each unique date.
|
||||
change_button: Save and reschedule
|
||||
change_title: Change working days
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
change_description: Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated. Are you sure you want to continue?
|
||||
|
||||
'
|
||||
work_packages_settings:
|
||||
warning_progress_calculation_mode_change_from_status_to_field_html: Changing progress calculation mode from status-based to work-based will make 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>.
|
||||
warning_progress_calculation_mode_change_from_field_to_status_html: Changing progress calculation mode from work-based to status-based will result in all existing <i>% Complete</i> values to be lost and replaced with values associated with each status. Existing values for <i>Remaining work</i> may also be recalculated to reflect this change. This action is not reversible.
|
||||
|
||||
@@ -210,13 +210,6 @@ eo:
|
||||
new_date: "(new)"
|
||||
add_non_working_day: Non-working day
|
||||
already_added_error: A non-working day for this date exists already. There can only be one non-working day created for each unique date.
|
||||
change_button: Save and reschedule
|
||||
change_title: Change working days
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
change_description: Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated. Are you sure you want to continue?
|
||||
|
||||
'
|
||||
work_packages_settings:
|
||||
warning_progress_calculation_mode_change_from_status_to_field_html: Changing progress calculation mode from status-based to work-based will make 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>.
|
||||
warning_progress_calculation_mode_change_from_field_to_status_html: Changing progress calculation mode from work-based to status-based will result in all existing <i>% Complete</i> values to be lost and replaced with values associated with each status. Existing values for <i>Remaining work</i> may also be recalculated to reflect this change. This action is not reversible.
|
||||
|
||||
@@ -208,13 +208,6 @@ es:
|
||||
new_date: "(nuevo)"
|
||||
add_non_working_day: Día no laborable
|
||||
already_added_error: Ya existe un día no laborable para esta fecha. Solo puede haber un día no laborable creado para cada fecha.
|
||||
change_button: Guardar y reprogramar
|
||||
change_title: Cambiar los días laborables
|
||||
removed_title: 'Eliminará los siguientes días de la lista de días no laborables:'
|
||||
change_description: Cambiar qué días de la semana se consideran laborables y cuáles no, puede afectar a las fechas de inicio y fin de todos los paquetes de trabajo y ciclos de vida en todos los proyectos de esta instancia.
|
||||
warning: 'Los cambios pueden tardar algún tiempo en surtir efecto. Se le notificará cuando todos los paquetes de trabajo pertinentes se hayan actualizado. ¿Seguro que desea continuar?
|
||||
|
||||
'
|
||||
work_packages_settings:
|
||||
warning_progress_calculation_mode_change_from_status_to_field_html: Cambiar el modo de cálculo del progreso de basado en el estado a basado en el trabajo hará que el campo <i>% completado</i> se pueda editar libremente. Si introduce opcionalmente valores para <i>Trabajo</i> o <i>Trabajo restante</i>, también se vincularán a <i>% completado</i>. Cambiar <i>Trabajo restante</i> puede entonces actualizar <i>% completado</i>.
|
||||
warning_progress_calculation_mode_change_from_field_to_status_html: El cambio del modo de cálculo del progreso de basado en el trabajo a basado en el estado hará que todos los valores existentes de <i>% completado</i> se pierdan y se sustituyan por valores asociados a cada estado. Los valores existentes para <i>Trabajo restante</i> también pueden recalcularse para reflejar este cambio. Esta acción no es reversible.
|
||||
|
||||
@@ -210,13 +210,6 @@ et:
|
||||
new_date: "(new)"
|
||||
add_non_working_day: Non-working day
|
||||
already_added_error: A non-working day for this date exists already. There can only be one non-working day created for each unique date.
|
||||
change_button: Save and reschedule
|
||||
change_title: Change working days
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
change_description: Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated. Are you sure you want to continue?
|
||||
|
||||
'
|
||||
work_packages_settings:
|
||||
warning_progress_calculation_mode_change_from_status_to_field_html: Changing progress calculation mode from status-based to work-based will make 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>.
|
||||
warning_progress_calculation_mode_change_from_field_to_status_html: Changing progress calculation mode from work-based to status-based will result in all existing <i>% Complete</i> values to be lost and replaced with values associated with each status. Existing values for <i>Remaining work</i> may also be recalculated to reflect this change. This action is not reversible.
|
||||
|
||||
@@ -210,13 +210,6 @@ eu:
|
||||
new_date: "(new)"
|
||||
add_non_working_day: Non-working day
|
||||
already_added_error: A non-working day for this date exists already. There can only be one non-working day created for each unique date.
|
||||
change_button: Save and reschedule
|
||||
change_title: Change working days
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
change_description: Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated. Are you sure you want to continue?
|
||||
|
||||
'
|
||||
work_packages_settings:
|
||||
warning_progress_calculation_mode_change_from_status_to_field_html: Changing progress calculation mode from status-based to work-based will make 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>.
|
||||
warning_progress_calculation_mode_change_from_field_to_status_html: Changing progress calculation mode from work-based to status-based will result in all existing <i>% Complete</i> values to be lost and replaced with values associated with each status. Existing values for <i>Remaining work</i> may also be recalculated to reflect this change. This action is not reversible.
|
||||
|
||||
@@ -210,13 +210,6 @@ fa:
|
||||
new_date: "(new)"
|
||||
add_non_working_day: Non-working day
|
||||
already_added_error: A non-working day for this date exists already. There can only be one non-working day created for each unique date.
|
||||
change_button: Save and reschedule
|
||||
change_title: Change working days
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
change_description: Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated. Are you sure you want to continue?
|
||||
|
||||
'
|
||||
work_packages_settings:
|
||||
warning_progress_calculation_mode_change_from_status_to_field_html: Changing progress calculation mode from status-based to work-based will make 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>.
|
||||
warning_progress_calculation_mode_change_from_field_to_status_html: Changing progress calculation mode from work-based to status-based will result in all existing <i>% Complete</i> values to be lost and replaced with values associated with each status. Existing values for <i>Remaining work</i> may also be recalculated to reflect this change. This action is not reversible.
|
||||
|
||||
@@ -210,13 +210,6 @@ fi:
|
||||
new_date: "(new)"
|
||||
add_non_working_day: Non-working day
|
||||
already_added_error: A non-working day for this date exists already. There can only be one non-working day created for each unique date.
|
||||
change_button: Save and reschedule
|
||||
change_title: Change working days
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
change_description: Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated. Are you sure you want to continue?
|
||||
|
||||
'
|
||||
work_packages_settings:
|
||||
warning_progress_calculation_mode_change_from_status_to_field_html: Changing progress calculation mode from status-based to work-based will make 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>.
|
||||
warning_progress_calculation_mode_change_from_field_to_status_html: Changing progress calculation mode from work-based to status-based will result in all existing <i>% Complete</i> values to be lost and replaced with values associated with each status. Existing values for <i>Remaining work</i> may also be recalculated to reflect this change. This action is not reversible.
|
||||
|
||||
@@ -210,13 +210,6 @@ fil:
|
||||
new_date: "(new)"
|
||||
add_non_working_day: Non-working day
|
||||
already_added_error: A non-working day for this date exists already. There can only be one non-working day created for each unique date.
|
||||
change_button: Save and reschedule
|
||||
change_title: Change working days
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
change_description: Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated. Are you sure you want to continue?
|
||||
|
||||
'
|
||||
work_packages_settings:
|
||||
warning_progress_calculation_mode_change_from_status_to_field_html: Changing progress calculation mode from status-based to work-based will make 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>.
|
||||
warning_progress_calculation_mode_change_from_field_to_status_html: Changing progress calculation mode from work-based to status-based will result in all existing <i>% Complete</i> values to be lost and replaced with values associated with each status. Existing values for <i>Remaining work</i> may also be recalculated to reflect this change. This action is not reversible.
|
||||
|
||||
@@ -210,13 +210,6 @@ fr:
|
||||
new_date: "(nouveau)"
|
||||
add_non_working_day: Jour non travaillé
|
||||
already_added_error: Un jour non travaillé pour cette date existe déjà. Il ne peut y avoir qu'un seul jour non travaillé créé pour chaque date unique.
|
||||
change_button: Enregistrer et reprogrammer
|
||||
change_title: Changer les jours travaillés
|
||||
removed_title: 'Vous supprimerez les jours suivants de la liste des jours non travaillés :'
|
||||
change_description: La modification des jours de la semaine considérés comme des jours ouvrables ou des jours non ouvrables peut affecter les jours de début et de fin de tous les lots de travaux et les cycles de vie de tous les projets dans ce cas.
|
||||
warning: 'Les modifications peuvent prendre un certain temps avant de prendre effet. Vous serez informé(e) lorsque tous les lots de travaux et cycles de vie des projets concernés auront été mis à jour. Voulez-vous continuer ?
|
||||
|
||||
'
|
||||
work_packages_settings:
|
||||
warning_progress_calculation_mode_change_from_status_to_field_html: Passer du mode de calcul de la progression basé sur le statut au mode basé sur le travail transformera <i>% réalisé</i> en champ librement modifiable. Si vous complétez les champs <i>Travail</i> et <i>Travail restant</i>, ils seront également liés à <i>% réalisé</i>. Changer le champ <i>Travail restant</i> peut alors changer le <i>% réalisé</i>.
|
||||
warning_progress_calculation_mode_change_from_field_to_status_html: Passer du mode de calcul de la progression basé sur le travail au mode basé sur le statut entraînera la perte de toutes les valeurs de <i>% réalisé</i> existantes et leur remplacement par les valeurs associées à chaque statut. Les valeurs existantes pour <i>Travail restant</i> peuvent également être recalculées pour refléter ce changement. Cette action est irréversible.
|
||||
|
||||
@@ -210,13 +210,6 @@ he:
|
||||
new_date: "(new)"
|
||||
add_non_working_day: Non-working day
|
||||
already_added_error: A non-working day for this date exists already. There can only be one non-working day created for each unique date.
|
||||
change_button: Save and reschedule
|
||||
change_title: Change working days
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
change_description: Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated. Are you sure you want to continue?
|
||||
|
||||
'
|
||||
work_packages_settings:
|
||||
warning_progress_calculation_mode_change_from_status_to_field_html: Changing progress calculation mode from status-based to work-based will make 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>.
|
||||
warning_progress_calculation_mode_change_from_field_to_status_html: Changing progress calculation mode from work-based to status-based will result in all existing <i>% Complete</i> values to be lost and replaced with values associated with each status. Existing values for <i>Remaining work</i> may also be recalculated to reflect this change. This action is not reversible.
|
||||
|
||||
@@ -210,13 +210,6 @@ hi:
|
||||
new_date: "(new)"
|
||||
add_non_working_day: Non-working day
|
||||
already_added_error: A non-working day for this date exists already. There can only be one non-working day created for each unique date.
|
||||
change_button: Save and reschedule
|
||||
change_title: Change working days
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
change_description: Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated. Are you sure you want to continue?
|
||||
|
||||
'
|
||||
work_packages_settings:
|
||||
warning_progress_calculation_mode_change_from_status_to_field_html: Changing progress calculation mode from status-based to work-based will make 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>.
|
||||
warning_progress_calculation_mode_change_from_field_to_status_html: Changing progress calculation mode from work-based to status-based will result in all existing <i>% Complete</i> values to be lost and replaced with values associated with each status. Existing values for <i>Remaining work</i> may also be recalculated to reflect this change. This action is not reversible.
|
||||
|
||||
@@ -210,13 +210,6 @@ hr:
|
||||
new_date: "(new)"
|
||||
add_non_working_day: Non-working day
|
||||
already_added_error: A non-working day for this date exists already. There can only be one non-working day created for each unique date.
|
||||
change_button: Save and reschedule
|
||||
change_title: Change working days
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
change_description: Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated. Are you sure you want to continue?
|
||||
|
||||
'
|
||||
work_packages_settings:
|
||||
warning_progress_calculation_mode_change_from_status_to_field_html: Changing progress calculation mode from status-based to work-based will make 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>.
|
||||
warning_progress_calculation_mode_change_from_field_to_status_html: Changing progress calculation mode from work-based to status-based will result in all existing <i>% Complete</i> values to be lost and replaced with values associated with each status. Existing values for <i>Remaining work</i> may also be recalculated to reflect this change. This action is not reversible.
|
||||
|
||||
@@ -222,13 +222,6 @@ hu:
|
||||
new_date: "(new)"
|
||||
add_non_working_day: Non-working day
|
||||
already_added_error: A non-working day for this date exists already. There can only be one non-working day created for each unique date.
|
||||
change_button: Save and reschedule
|
||||
change_title: Change working days
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
change_description: Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated. Are you sure you want to continue?
|
||||
|
||||
'
|
||||
work_packages_settings:
|
||||
warning_progress_calculation_mode_change_from_status_to_field_html: Changing progress calculation mode from status-based to work-based will make 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>.
|
||||
warning_progress_calculation_mode_change_from_field_to_status_html: Changing progress calculation mode from work-based to status-based will result in all existing <i>% Complete</i> values to be lost and replaced with values associated with each status. Existing values for <i>Remaining work</i> may also be recalculated to reflect this change. This action is not reversible.
|
||||
|
||||
@@ -210,13 +210,6 @@ hy:
|
||||
new_date: "(new)"
|
||||
add_non_working_day: Non-working day
|
||||
already_added_error: A non-working day for this date exists already. There can only be one non-working day created for each unique date.
|
||||
change_button: Save and reschedule
|
||||
change_title: Change working days
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
change_description: Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated. Are you sure you want to continue?
|
||||
|
||||
'
|
||||
work_packages_settings:
|
||||
warning_progress_calculation_mode_change_from_status_to_field_html: Changing progress calculation mode from status-based to work-based will make 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>.
|
||||
warning_progress_calculation_mode_change_from_field_to_status_html: Changing progress calculation mode from work-based to status-based will result in all existing <i>% Complete</i> values to be lost and replaced with values associated with each status. Existing values for <i>Remaining work</i> may also be recalculated to reflect this change. This action is not reversible.
|
||||
|
||||
@@ -210,13 +210,6 @@ id:
|
||||
new_date: "(new)"
|
||||
add_non_working_day: Non-working day
|
||||
already_added_error: A non-working day for this date exists already. There can only be one non-working day created for each unique date.
|
||||
change_button: Save and reschedule
|
||||
change_title: Ubah hari kerja
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
change_description: Perubahan hari dalam seminggu yang dianggap sebagai hari kerja atau hari libur dapat memengaruhi tanggal mulai dan selesai dari semua paket kerja dan siklus hidup dalam semua proyek pada kasus ini.
|
||||
warning: 'Perubahan tersebut mungkin memerlukan waktu untuk berlaku. Anda akan diberitahu ketika semua paket kerja yang relevan dan siklus hidup proyek telah diperbarui. Apakah Anda yakin ingin melanjutkan?
|
||||
|
||||
'
|
||||
work_packages_settings:
|
||||
warning_progress_calculation_mode_change_from_status_to_field_html: Changing progress calculation mode from status-based to work-based will make 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>.
|
||||
warning_progress_calculation_mode_change_from_field_to_status_html: Changing progress calculation mode from work-based to status-based will result in all existing <i>% Complete</i> values to be lost and replaced with values associated with each status. Existing values for <i>Remaining work</i> may also be recalculated to reflect this change. This action is not reversible.
|
||||
|
||||
@@ -210,13 +210,6 @@ it:
|
||||
new_date: "(nuovo)"
|
||||
add_non_working_day: Giorno non lavorativo
|
||||
already_added_error: Esiste già un giorno non lavorativo per questa data. Può essere creato un solo giorno non lavorativo per ogni data univoca.
|
||||
change_button: Salva e riprogramma
|
||||
change_title: Cambia giorni lavorativi
|
||||
removed_title: 'Rimuoverai i seguenti giorni dall''elenco dei giorni non lavorativi:'
|
||||
change_description: Cambiare quali giorni della settimana sono considerati giorni lavorativi o giorni non lavorativi può influenzare l'inizio e la fine di tutte le macro-attività e i cicli di vita in tutti i progetti in questo caso.
|
||||
warning: 'L''applicazione delle modifiche potrebbe richiedere del tempo. Riceverai una notifica quando tutte le macro-attività e i cicli di vita dei progetti pertinenti saranno aggiornati. Vuoi davvero continuare?
|
||||
|
||||
'
|
||||
work_packages_settings:
|
||||
warning_progress_calculation_mode_change_from_status_to_field_html: 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.
|
||||
|
||||
@@ -210,13 +210,6 @@ ja:
|
||||
new_date: "(新)"
|
||||
add_non_working_day: 休業日を追加
|
||||
already_added_error: この日付の非営業日はすでに存在します。一意の日付に対して作成できる非営業日は1つだけです。
|
||||
change_button: 保存して再スケジュール
|
||||
change_title: 営業日を変更する
|
||||
removed_title: 以下の日を非稼働日リストから削除します:
|
||||
change_description: 営業日とみなす曜日を変更すると、このサイト内のすべてのプロジェクトのすべてのワークパッケージの開始日と終了日に影響を与える可能性があります。
|
||||
warning: '変更の反映には時間がかかる場合があります。関連するすべてのワークパッケージとプロジェクトライフサイクルが更新されたら、通知されます。 本当に続けますか?
|
||||
|
||||
'
|
||||
work_packages_settings:
|
||||
warning_progress_calculation_mode_change_from_status_to_field_html: 進捗計算モードをステータスベースからワークベースに変更すると、「<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>」の既存の値も再計算される場合があります。この操作は元に戻すことはできません。
|
||||
|
||||
@@ -210,13 +210,6 @@ ka:
|
||||
new_date: "(ახალი)"
|
||||
add_non_working_day: Non-working day
|
||||
already_added_error: A non-working day for this date exists already. There can only be one non-working day created for each unique date.
|
||||
change_button: Save and reschedule
|
||||
change_title: Change working days
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
change_description: Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated. Are you sure you want to continue?
|
||||
|
||||
'
|
||||
work_packages_settings:
|
||||
warning_progress_calculation_mode_change_from_status_to_field_html: Changing progress calculation mode from status-based to work-based will make 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>.
|
||||
warning_progress_calculation_mode_change_from_field_to_status_html: Changing progress calculation mode from work-based to status-based will result in all existing <i>% Complete</i> values to be lost and replaced with values associated with each status. Existing values for <i>Remaining work</i> may also be recalculated to reflect this change. This action is not reversible.
|
||||
|
||||
@@ -210,13 +210,6 @@ kk:
|
||||
new_date: "(new)"
|
||||
add_non_working_day: Non-working day
|
||||
already_added_error: A non-working day for this date exists already. There can only be one non-working day created for each unique date.
|
||||
change_button: Save and reschedule
|
||||
change_title: Change working days
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
change_description: Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated. Are you sure you want to continue?
|
||||
|
||||
'
|
||||
work_packages_settings:
|
||||
warning_progress_calculation_mode_change_from_status_to_field_html: Changing progress calculation mode from status-based to work-based will make 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>.
|
||||
warning_progress_calculation_mode_change_from_field_to_status_html: Changing progress calculation mode from work-based to status-based will result in all existing <i>% Complete</i> values to be lost and replaced with values associated with each status. Existing values for <i>Remaining work</i> may also be recalculated to reflect this change. This action is not reversible.
|
||||
|
||||
@@ -210,13 +210,6 @@ ko:
|
||||
new_date: "(신규)"
|
||||
add_non_working_day: 휴무일
|
||||
already_added_error: 이 날짜의 휴무일이 이미 존재합니다. 고유한 날짜 각각에 대해 하나의 휴무일만 생성할 수 있습니다.
|
||||
change_button: 저장하고 다시 예약
|
||||
change_title: 근무일 변경
|
||||
removed_title: 휴무일 목록에서 다음 날짜를 제거합니다.
|
||||
change_description: 근무일 또는 휴무일로 간주되는 요일을 변경하면 이 인스턴스의 모든 프로젝트에 있는 모든 작업 패키지와 수명 주기의 시작 날짜 및 완료 날짜에 영향을 미칠 수 있습니다.
|
||||
warning: '변경 사항이 적용되는 데 시간이 걸릴 수 있습니다. 모든 관련 작업 패키지와 프로젝트 수명 주기가 업데이트되면 알림이 전송됩니다. 계속하시겠습니까?
|
||||
|
||||
'
|
||||
work_packages_settings:
|
||||
warning_progress_calculation_mode_change_from_status_to_field_html: 진행률 계산 모드를 상태 기반에서 작업 기반으로 변경하면 <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>의 기존 값도 이 변경 사항을 반영하기 위해 다시 계산될 수 있습니다. 이 작업은 되돌릴 수 없습니다.
|
||||
|
||||
@@ -210,13 +210,6 @@ lt:
|
||||
new_date: "(nauja)"
|
||||
add_non_working_day: Nedarbo diena
|
||||
already_added_error: Nedarbo diena šiai datai jau yra. Kiekvienai unikaliai datai galima sukurti tik vieną nedarbo dieną.
|
||||
change_button: Įrašyti ir perplanuoti
|
||||
change_title: Keisti darbo dienas
|
||||
removed_title: 'Jūs išimsite šias dienas iš nedarbo dienų sąrašo:'
|
||||
change_description: Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated. Are you sure you want to continue?
|
||||
|
||||
'
|
||||
work_packages_settings:
|
||||
warning_progress_calculation_mode_change_from_status_to_field_html: Changing progress calculation mode from status-based to work-based will make 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>.
|
||||
warning_progress_calculation_mode_change_from_field_to_status_html: Changing progress calculation mode from work-based to status-based will result in all existing <i>% Complete</i> values to be lost and replaced with values associated with each status. Existing values for <i>Remaining work</i> may also be recalculated to reflect this change. This action is not reversible.
|
||||
|
||||
@@ -210,13 +210,6 @@ lv:
|
||||
new_date: "(new)"
|
||||
add_non_working_day: Non-working day
|
||||
already_added_error: A non-working day for this date exists already. There can only be one non-working day created for each unique date.
|
||||
change_button: Save and reschedule
|
||||
change_title: Change working days
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
change_description: Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated. Are you sure you want to continue?
|
||||
|
||||
'
|
||||
work_packages_settings:
|
||||
warning_progress_calculation_mode_change_from_status_to_field_html: Changing progress calculation mode from status-based to work-based will make 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>.
|
||||
warning_progress_calculation_mode_change_from_field_to_status_html: Changing progress calculation mode from work-based to status-based will result in all existing <i>% Complete</i> values to be lost and replaced with values associated with each status. Existing values for <i>Remaining work</i> may also be recalculated to reflect this change. This action is not reversible.
|
||||
|
||||
@@ -210,13 +210,6 @@ mn:
|
||||
new_date: "(new)"
|
||||
add_non_working_day: Non-working day
|
||||
already_added_error: A non-working day for this date exists already. There can only be one non-working day created for each unique date.
|
||||
change_button: Save and reschedule
|
||||
change_title: Change working days
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
change_description: Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated. Are you sure you want to continue?
|
||||
|
||||
'
|
||||
work_packages_settings:
|
||||
warning_progress_calculation_mode_change_from_status_to_field_html: Changing progress calculation mode from status-based to work-based will make 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>.
|
||||
warning_progress_calculation_mode_change_from_field_to_status_html: Changing progress calculation mode from work-based to status-based will result in all existing <i>% Complete</i> values to be lost and replaced with values associated with each status. Existing values for <i>Remaining work</i> may also be recalculated to reflect this change. This action is not reversible.
|
||||
|
||||
@@ -210,13 +210,6 @@ ms:
|
||||
new_date: "(baharu)"
|
||||
add_non_working_day: Hari tidak bekerja
|
||||
already_added_error: Hari tidak bekerja untuk tarikh ini sudah ada. Hanya boleh mempunyai satu hari tidak bekerja dicipta untuk setiap tarikh yang unik.
|
||||
change_button: Simpan dan jadualkan semula
|
||||
change_title: Tukar hari bekerja
|
||||
removed_title: 'Anda akan mengeluarkan hari berikut dari senarai hari tidak bekerja:'
|
||||
change_description: Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated. Are you sure you want to continue?
|
||||
|
||||
'
|
||||
work_packages_settings:
|
||||
warning_progress_calculation_mode_change_from_status_to_field_html: Menukar mod pengiraan kemajuan daripada berasaskan status kepada berasaskan kerja akan menjadikan medan <i>% Selesai</i> boleh diedit secara bebas. Jika anda secara pilihan memasukkan nilai untuk <i>Kerja</i> atau <i>Kerja yang tinggal</i>, nilai tersebut juga akan dipautkan kepada <i>% Selesai</i>. Menukar <i>Baki kerja</i> kemudian boleh mengemas kini <i>% Selesai</i>.
|
||||
warning_progress_calculation_mode_change_from_field_to_status_html: Mengubah mod pengiraan perkembangan daripada berasaskan-kerja kepada berasaskan-status akan menjadikan semua nilai <i>% Selesai</i> yang sedia ada hilang dan digantikan dengan nilai yang berkaitan dengan setiap status. Nilai sedia ada bagi <i>Kerja yang berbaki</i> juga akan dikira semula untuk menggambarkan perubahan ini. Tindakan ini tidak boleh dipulihkan.
|
||||
|
||||
@@ -210,13 +210,6 @@ ne:
|
||||
new_date: "(new)"
|
||||
add_non_working_day: Non-working day
|
||||
already_added_error: A non-working day for this date exists already. There can only be one non-working day created for each unique date.
|
||||
change_button: Save and reschedule
|
||||
change_title: Change working days
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
change_description: Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated. Are you sure you want to continue?
|
||||
|
||||
'
|
||||
work_packages_settings:
|
||||
warning_progress_calculation_mode_change_from_status_to_field_html: Changing progress calculation mode from status-based to work-based will make 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>.
|
||||
warning_progress_calculation_mode_change_from_field_to_status_html: Changing progress calculation mode from work-based to status-based will result in all existing <i>% Complete</i> values to be lost and replaced with values associated with each status. Existing values for <i>Remaining work</i> may also be recalculated to reflect this change. This action is not reversible.
|
||||
|
||||
@@ -210,13 +210,6 @@ nl:
|
||||
new_date: "(nieuw)"
|
||||
add_non_working_day: Vrije dagen
|
||||
already_added_error: A non-working day for this date exists already. There can only be one non-working day created for each unique date.
|
||||
change_button: Opslaan en opnieuw plannen
|
||||
change_title: Wijzig werkdagen
|
||||
removed_title: 'Je verwijdert de volgende dagen uit de lijst van niet-werkdagen:'
|
||||
change_description: Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated. Are you sure you want to continue?
|
||||
|
||||
'
|
||||
work_packages_settings:
|
||||
warning_progress_calculation_mode_change_from_status_to_field_html: Changing progress calculation mode from status-based to work-based will make 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>.
|
||||
warning_progress_calculation_mode_change_from_field_to_status_html: Changing progress calculation mode from work-based to status-based will result in all existing <i>% Complete</i> values to be lost and replaced with values associated with each status. Existing values for <i>Remaining work</i> may also be recalculated to reflect this change. This action is not reversible.
|
||||
|
||||
@@ -210,13 +210,6 @@
|
||||
new_date: "(ny)"
|
||||
add_non_working_day: Arbeidsfri dag
|
||||
already_added_error: En arbeidsfri dag for denne datoen finnes allerede. Det kan bare være en arbeidsfri dag som er opprettet for hver unike dato.
|
||||
change_button: Lagre og endre
|
||||
change_title: Endre arbeidsdager
|
||||
removed_title: 'Du fjerner de følgende dagene fra listen over arbeidsfrie dager:'
|
||||
change_description: Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated. Are you sure you want to continue?
|
||||
|
||||
'
|
||||
work_packages_settings:
|
||||
warning_progress_calculation_mode_change_from_status_to_field_html: Changing progress calculation mode from status-based to work-based will make 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>.
|
||||
warning_progress_calculation_mode_change_from_field_to_status_html: Changing progress calculation mode from work-based to status-based will result in all existing <i>% Complete</i> values to be lost and replaced with values associated with each status. Existing values for <i>Remaining work</i> may also be recalculated to reflect this change. This action is not reversible.
|
||||
|
||||
@@ -210,13 +210,6 @@ pl:
|
||||
new_date: "(nowe)"
|
||||
add_non_working_day: Dzień nieroboczy
|
||||
already_added_error: Dzień nieroboczy dla tej daty już istnieje. Można utworzyć tylko jeden dzień nieroboczy dla każdej unikalnej daty.
|
||||
change_button: Zapisz i zmień harmonogram
|
||||
change_title: Zmień dni robocze
|
||||
removed_title: 'Z listy dni nieroboczych usuniesz następujące dni:'
|
||||
change_description: Zmiana dni tygodnia, które są uważane za dni robocze lub nierobocze, może wpłynąć na dni rozpoczęcia i zakończenia wszystkich pakietów roboczych i cykli życia we wszystkich projektach w tym wystąpieniu.
|
||||
warning: 'Zmiany mogą wejść w życie po pewnym czasie. Gdy wszystkie odpowiednie pakiety robocze i cykle życia projektów zostaną zaktualizowane, otrzymasz powiadomienie. Czy na pewno chcesz kontynuować?
|
||||
|
||||
'
|
||||
work_packages_settings:
|
||||
warning_progress_calculation_mode_change_from_status_to_field_html: 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.
|
||||
|
||||
@@ -210,13 +210,6 @@ pt-BR:
|
||||
new_date: "(novo)"
|
||||
add_non_working_day: Dia não útil
|
||||
already_added_error: Já existe um dia não útil para esta data. Só pode haver um dia não útil criado para cada data única.
|
||||
change_button: Salvar e reagendar
|
||||
change_title: Alterar dias úteis
|
||||
removed_title: 'Você removerá os seguintes dias da lista de dias não úteis:'
|
||||
change_description: Alterar quais dias da semana são considerados dias úteis ou não úteis pode afetar as datas de início e término de todos os pacotes de trabalho e ciclos de vida em todos os projetos desta instância.
|
||||
warning: 'As alterações podem levar algum tempo para entrar em vigor. Você será notificado quando todos os pacotes de trabalho e ciclos de vida dos projetos relevantes forem atualizados. Tem certeza de que deseja continuar?
|
||||
|
||||
'
|
||||
work_packages_settings:
|
||||
warning_progress_calculation_mode_change_from_status_to_field_html: 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.
|
||||
|
||||
@@ -210,13 +210,6 @@ pt-PT:
|
||||
new_date: "(novo)"
|
||||
add_non_working_day: Dia não-útil
|
||||
already_added_error: Já existe um dia não-útil para esta data. Só pode haver um dia não útil criado para cada data única.
|
||||
change_button: Guardar e reagendar
|
||||
change_title: Alterar dias úteis
|
||||
removed_title: 'Removerá os seguintes dias da lista de dias não-úteis:'
|
||||
change_description: Mudar quais dias da semana considerados dias úteis ou não úteis pode afetar os dias de início e de término de todos os pacotes de trabalho em todos os projetos nesta instância.
|
||||
warning: 'As alterações podem demorar algum tempo a entrar em vigor. Receberá uma notificação quando todos os pacotes de trabalho relevantes forem atualizados. Tem a certeza que quer continuar?
|
||||
|
||||
'
|
||||
work_packages_settings:
|
||||
warning_progress_calculation_mode_change_from_status_to_field_html: 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.
|
||||
|
||||
@@ -210,13 +210,6 @@ ro:
|
||||
new_date: "(nou)"
|
||||
add_non_working_day: Zi nelucrătoare
|
||||
already_added_error: O zi nelucrătoare pentru această dată există deja. Poate fi doar o zi nelucrătoare creată pentru fiecare dată unică.
|
||||
change_button: Salvează și reprogramează
|
||||
change_title: Modifică zilelor lucrătoare
|
||||
removed_title: 'Veţi elimina următoarele zile din lista de zile nelucrătoare:'
|
||||
change_description: Schimbarea zilelor din săptămână care sunt considerate zile lucrătoare sau zile nelucrătoare poate afecta zilele de începere și de încheiere a tuturor pachetelor de lucru și ciclurilor de viață în toate proiectele, în acest caz.
|
||||
warning: 'Modificările ar putea dura ceva timp pentru a produce efecte. Vei fi notificat când toate pachetele de lucru relevante și ciclurile de viață ale proiectului au fost actualizate. Ești sigur că vrei să continui?
|
||||
|
||||
'
|
||||
work_packages_settings:
|
||||
warning_progress_calculation_mode_change_from_status_to_field_html: Changing progress calculation mode from status-based to work-based will make 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>.
|
||||
warning_progress_calculation_mode_change_from_field_to_status_html: Changing progress calculation mode from work-based to status-based will result in all existing <i>% Complete</i> values to be lost and replaced with values associated with each status. Existing values for <i>Remaining work</i> may also be recalculated to reflect this change. This action is not reversible.
|
||||
|
||||
@@ -210,13 +210,6 @@ ru:
|
||||
new_date: "(новый)"
|
||||
add_non_working_day: Нерабочий день
|
||||
already_added_error: Нерабочий день для этой даты уже существует. Может быть только один нерабочий день для каждой уникальной даты.
|
||||
change_button: Сохранить и перенести
|
||||
change_title: Изменить рабочие дни
|
||||
removed_title: 'Следующие дни будут удалены из списка нерабочих дней:'
|
||||
change_description: Изменение дней недели, считающихся рабочими или нерабочими днями, может повлиять на начало и завершение всех пакетов работ и жизненных циклов во всех проектах.
|
||||
warning: 'Для вступления изменений в силу может потребоваться некоторое время. Вы будете уведомлены, когда все соответствующие пакеты работ и жизненные циклы проектов будут обновлены. Хотите продолжить?
|
||||
|
||||
'
|
||||
work_packages_settings:
|
||||
warning_progress_calculation_mode_change_from_status_to_field_html: При изменении расчета прогресса с режима "На основе статуса" на режим "На основе трудозатрат" поле <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> также могут быть пересчитаны с учетом этого изменения. Это действие необратимо.
|
||||
|
||||
@@ -210,13 +210,6 @@ rw:
|
||||
new_date: "(new)"
|
||||
add_non_working_day: Non-working day
|
||||
already_added_error: A non-working day for this date exists already. There can only be one non-working day created for each unique date.
|
||||
change_button: Save and reschedule
|
||||
change_title: Change working days
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
change_description: Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated. Are you sure you want to continue?
|
||||
|
||||
'
|
||||
work_packages_settings:
|
||||
warning_progress_calculation_mode_change_from_status_to_field_html: Changing progress calculation mode from status-based to work-based will make 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>.
|
||||
warning_progress_calculation_mode_change_from_field_to_status_html: Changing progress calculation mode from work-based to status-based will result in all existing <i>% Complete</i> values to be lost and replaced with values associated with each status. Existing values for <i>Remaining work</i> may also be recalculated to reflect this change. This action is not reversible.
|
||||
|
||||
@@ -210,13 +210,6 @@ si:
|
||||
new_date: "(new)"
|
||||
add_non_working_day: Non-working day
|
||||
already_added_error: A non-working day for this date exists already. There can only be one non-working day created for each unique date.
|
||||
change_button: Save and reschedule
|
||||
change_title: Change working days
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
change_description: Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated. Are you sure you want to continue?
|
||||
|
||||
'
|
||||
work_packages_settings:
|
||||
warning_progress_calculation_mode_change_from_status_to_field_html: Changing progress calculation mode from status-based to work-based will make 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>.
|
||||
warning_progress_calculation_mode_change_from_field_to_status_html: Changing progress calculation mode from work-based to status-based will result in all existing <i>% Complete</i> values to be lost and replaced with values associated with each status. Existing values for <i>Remaining work</i> may also be recalculated to reflect this change. This action is not reversible.
|
||||
|
||||
@@ -210,13 +210,6 @@ sk:
|
||||
new_date: "(new)"
|
||||
add_non_working_day: Non-working day
|
||||
already_added_error: A non-working day for this date exists already. There can only be one non-working day created for each unique date.
|
||||
change_button: Save and reschedule
|
||||
change_title: Change working days
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
change_description: Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated. Are you sure you want to continue?
|
||||
|
||||
'
|
||||
work_packages_settings:
|
||||
warning_progress_calculation_mode_change_from_status_to_field_html: Changing progress calculation mode from status-based to work-based will make 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>.
|
||||
warning_progress_calculation_mode_change_from_field_to_status_html: Changing progress calculation mode from work-based to status-based will result in all existing <i>% Complete</i> values to be lost and replaced with values associated with each status. Existing values for <i>Remaining work</i> may also be recalculated to reflect this change. This action is not reversible.
|
||||
|
||||
@@ -210,13 +210,6 @@ sl:
|
||||
new_date: "(new)"
|
||||
add_non_working_day: Non-working day
|
||||
already_added_error: A non-working day for this date exists already. There can only be one non-working day created for each unique date.
|
||||
change_button: Save and reschedule
|
||||
change_title: Change working days
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
change_description: Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated. Are you sure you want to continue?
|
||||
|
||||
'
|
||||
work_packages_settings:
|
||||
warning_progress_calculation_mode_change_from_status_to_field_html: Changing progress calculation mode from status-based to work-based will make 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>.
|
||||
warning_progress_calculation_mode_change_from_field_to_status_html: Changing progress calculation mode from work-based to status-based will result in all existing <i>% Complete</i> values to be lost and replaced with values associated with each status. Existing values for <i>Remaining work</i> may also be recalculated to reflect this change. This action is not reversible.
|
||||
|
||||
@@ -210,13 +210,6 @@ sr:
|
||||
new_date: "(new)"
|
||||
add_non_working_day: Non-working day
|
||||
already_added_error: A non-working day for this date exists already. There can only be one non-working day created for each unique date.
|
||||
change_button: Save and reschedule
|
||||
change_title: Change working days
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
change_description: Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated. Are you sure you want to continue?
|
||||
|
||||
'
|
||||
work_packages_settings:
|
||||
warning_progress_calculation_mode_change_from_status_to_field_html: Changing progress calculation mode from status-based to work-based will make 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>.
|
||||
warning_progress_calculation_mode_change_from_field_to_status_html: Changing progress calculation mode from work-based to status-based will result in all existing <i>% Complete</i> values to be lost and replaced with values associated with each status. Existing values for <i>Remaining work</i> may also be recalculated to reflect this change. This action is not reversible.
|
||||
|
||||
@@ -210,13 +210,6 @@ sv:
|
||||
new_date: "(ny)"
|
||||
add_non_working_day: Arbetsfri dag
|
||||
already_added_error: Det finns redan en arbetsfri dag för detta datum. Det kan bara skapas en arbetsfri dag för varje unikt datum.
|
||||
change_button: Spara och boka om
|
||||
change_title: Ändra arbetsdagar
|
||||
removed_title: 'Du kommer att ta bort följande dagar från listan över arbetsfria dagar:'
|
||||
change_description: Att ändra vilka veckodagar som anses vara arbetsdagar eller icke-arbetsdagar kan påverka start- och slutdagar för alla arbetspaket och livscykler i alla projekt i detta fall.
|
||||
warning: 'Förändringarna kan ta lite tid att träda i kraft. Du kommer att meddelas när alla relevanta arbetspaket och projektlivscykler har uppdaterats. Är du säker på att du vill fortsätta?
|
||||
|
||||
'
|
||||
work_packages_settings:
|
||||
warning_progress_calculation_mode_change_from_status_to_field_html: Om du ändrar läget för beräkning av framsteg från statusbaserat till arbetsbaserat blir fältet <i>% Complete</i> fritt redigerbart. Om du anger värden för <i>arbete</i> eller <i>återstående</i> arbete kommer de också att kopplas till <i>% Complete</i>. Om du ändrar <i>Återstående arbete</i> kan du uppdatera <i>% Fullständigt</i>.
|
||||
warning_progress_calculation_mode_change_from_field_to_status_html: Att ändra lägesberäkning från arbetsbaserad till status-baserad kommer att resultera i alla befintliga <i>% Slutför</i> värden som ska förloras och ersättas med värden som är associerade med varje status. Befintliga värden för <i>Återstående arbete</i> kan också räknas om för att återspegla denna förändring. Denna åtgärd är inte reversibel.
|
||||
|
||||
@@ -210,13 +210,6 @@ th:
|
||||
new_date: "(new)"
|
||||
add_non_working_day: Non-working day
|
||||
already_added_error: A non-working day for this date exists already. There can only be one non-working day created for each unique date.
|
||||
change_button: Save and reschedule
|
||||
change_title: Change working days
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
change_description: Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated. Are you sure you want to continue?
|
||||
|
||||
'
|
||||
work_packages_settings:
|
||||
warning_progress_calculation_mode_change_from_status_to_field_html: Changing progress calculation mode from status-based to work-based will make 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>.
|
||||
warning_progress_calculation_mode_change_from_field_to_status_html: Changing progress calculation mode from work-based to status-based will result in all existing <i>% Complete</i> values to be lost and replaced with values associated with each status. Existing values for <i>Remaining work</i> may also be recalculated to reflect this change. This action is not reversible.
|
||||
|
||||
@@ -210,13 +210,6 @@ tr:
|
||||
new_date: "(yeni)"
|
||||
add_non_working_day: Çalışılmayan günler
|
||||
already_added_error: Bu tarih için çalışılmayan bir gün zaten var. Her benzersiz tarih için yalnızca bir çalışılmayan gün oluşturulabilir.
|
||||
change_button: Kaydet ve yeniden planla
|
||||
change_title: İş günlerini değiştir
|
||||
removed_title: 'Aşağıdaki günleri çalışılmayan günler listesinden çıkaracaksınız:'
|
||||
change_description: Haftanın hangi günlerinin iş günü veya iş günü olmayan günler olarak kabul edileceğinin değiştirilmesi, bu sistemdeki tüm projelerdeki tüm iş paketlerinin ve yaşam döngülerinin başlangıç ve bitiş günlerini etkileyebilir.
|
||||
warning: 'Değişikliklerin yürürlüğe girmesi biraz zaman alabilir. İlgili tüm iş paketleri ve proje yaşam döngüleri güncellendiğinde size bildirilecektir. Devam etmek istediğinizden emin misiniz?
|
||||
|
||||
'
|
||||
work_packages_settings:
|
||||
warning_progress_calculation_mode_change_from_status_to_field_html: İlerleme hesaplama modunu durum bazlıdan iş bazlıya değiştirmek <i>% Tamamlandı</i> alanını serbestçe düzenlenebilir hale getirecektir. <i>İş</i> veya <i>Kalan iş</i> için isteğe bağlı olarak değerler girerseniz, bunlar da <i>%</i> Tamamlandı ile bağlantılı olacaktır. <i>Kalan işin</i> değiştirilmesi <i>%</i> Tamamlanan'ı güncelleyebilir.
|
||||
warning_progress_calculation_mode_change_from_field_to_status_html: İlerleme hesaplama modunun iş bazlıdan durum bazlıya değiştirilmesi, mevcut tüm <i>% Tamamlandı</i> değerlerinin kaybolmasına ve her bir durumla ilişkili değerlerle değiştirilmesine neden olacaktır. <i>Kalan iş</i> için mevcut değerler de bu değişikliği yansıtacak şekilde yeniden hesaplanabilir. Bu eylem geri döndürülemez.
|
||||
|
||||
@@ -210,13 +210,6 @@ uk:
|
||||
new_date: "(нова)"
|
||||
add_non_working_day: Неробочий день
|
||||
already_added_error: Неробочий день із цією датою вже існує. Для кожної унікальної дати можна створити лише один неробочий день.
|
||||
change_button: Зберегти й перепланувати
|
||||
change_title: Змінення робочих днів
|
||||
removed_title: 'Ви вилучите ці дні зі списку неробочих:'
|
||||
change_description: Якщо змінити дні тижня, які вважаються робочими чи неробочими, це може вплинути на дати початку й завершення всіх пакетів робіт і життєвих циклів проєктів в усіх проєктах цього екземпляра.
|
||||
warning: 'Застосування змін може тривати деякий час. Ви отримаєте сповіщення, коли всі відповідні пакети робіт і життєві цикли проєктів буде оновлено. Продовжити?
|
||||
|
||||
'
|
||||
work_packages_settings:
|
||||
warning_progress_calculation_mode_change_from_status_to_field_html: Якщо перейти з режиму обчислення прогресу на основі статусу на режим на основі роботи, атрибут <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> може бути також переобчислено з урахуванням цієї зміни. Цю дію не можна скасувати.
|
||||
|
||||
@@ -210,13 +210,6 @@ uz:
|
||||
new_date: "(new)"
|
||||
add_non_working_day: Non-working day
|
||||
already_added_error: A non-working day for this date exists already. There can only be one non-working day created for each unique date.
|
||||
change_button: Save and reschedule
|
||||
change_title: Change working days
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
change_description: Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated. Are you sure you want to continue?
|
||||
|
||||
'
|
||||
work_packages_settings:
|
||||
warning_progress_calculation_mode_change_from_status_to_field_html: Changing progress calculation mode from status-based to work-based will make 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>.
|
||||
warning_progress_calculation_mode_change_from_field_to_status_html: Changing progress calculation mode from work-based to status-based will result in all existing <i>% Complete</i> values to be lost and replaced with values associated with each status. Existing values for <i>Remaining work</i> may also be recalculated to reflect this change. This action is not reversible.
|
||||
|
||||
@@ -210,13 +210,6 @@ vi:
|
||||
new_date: "(mới)"
|
||||
add_non_working_day: Ngày không làm việc
|
||||
already_added_error: Ngày không làm việc cho ngày này đã tồn tại. Chỉ có thể có một ngày không làm việc được tạo cho mỗi ngày duy nhất.
|
||||
change_button: Lưu và lên lịch lại
|
||||
change_title: Thay đổi ngày làm việc
|
||||
removed_title: 'Bạn sẽ xóa những ngày sau khỏi danh sách những ngày không làm việc:'
|
||||
change_description: Việc thay đổi ngày trong tuần được coi là ngày làm việc hay ngày không làm việc có thể ảnh hưởng đến ngày bắt đầu và ngày kết thúc của tất cả các gói công việc và vòng đời trong tất cả các dự án trong trường hợp này.
|
||||
warning: 'Những thay đổi có thể mất một thời gian để có hiệu lực. Bạn sẽ được thông báo khi tất cả các gói công việc có liên quan và vòng đời dự án đã được cập nhật. Bạn có chắc chắn muốn tiếp tục không?
|
||||
|
||||
'
|
||||
work_packages_settings:
|
||||
warning_progress_calculation_mode_change_from_status_to_field_html: Việc thay đổi chế độ tính toán tiến độ từ dựa trên trạng thái sang dựa trên công việc sẽ làm cho trường <i>% Hoàn thành</i> có thể chỉnh sửa tự do. Nếu bạn tùy ý nhập các giá trị cho <i>Work</i> hoặc <i>Công việc còn lại</i>, thì chúng cũng sẽ được liên kết với <i>% Hoàn thành</i>. Việc thay đổi <i>Công việc còn lại</i> sau đó có thể cập nhật <i>% Hoàn thành</i>.
|
||||
warning_progress_calculation_mode_change_from_field_to_status_html: Việc thay đổi chế độ tính toán tiến độ từ dựa trên công việc sang dựa trên trạng thái sẽ khiến tất cả các giá trị <i>% Hoàn thành</i> hiện có bị mất và được thay thế bằng các giá trị được liên kết với từng trạng thái. Các giá trị hiện tại cho <i>Công việc còn lại</i> cũng có thể được tính toán lại để phản ánh sự thay đổi này. Hành động này không thể đảo ngược.
|
||||
|
||||
@@ -210,13 +210,6 @@ zh-CN:
|
||||
new_date: "(新)"
|
||||
add_non_working_day: 非工作日
|
||||
already_added_error: 该日期已存在非工作日。每个唯一日期只能创建一个非工作日。
|
||||
change_button: 保存并重新安排
|
||||
change_title: 更改工作日
|
||||
removed_title: 您将从非工作日列表中删除以下日期:
|
||||
change_description: 在这种情况下,更改一周中哪几天被视为工作日或非工作日会影响所有项目中所有工作包和生命周期的开始日期和结束日期。
|
||||
warning: '更改可能需要一些时间才能生效。在所有相关工作包和项目生命周期更新后,您将收到通知。 确定要继续吗?
|
||||
|
||||
'
|
||||
work_packages_settings:
|
||||
warning_progress_calculation_mode_change_from_status_to_field_html: 将进度计算模式从基于状态改为基于工时,将使<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> 的现有值也可能被重新计算,以反映这种变化。此操作不可逆转。
|
||||
|
||||
@@ -210,13 +210,6 @@ zh-TW:
|
||||
new_date: "(新)"
|
||||
add_non_working_day: 非工作日
|
||||
already_added_error: 該日期已存在非工作日。每個唯一日期只能創建一個非工作日。
|
||||
change_button: 儲存後重新編排
|
||||
change_title: 修改工作日
|
||||
removed_title: 您將從非工作日列表中刪除以下日期:
|
||||
change_description: 變更一週中哪些天為工作日或非工作日,可能會影響此實例中所有專案的所有工作套件與生命週期的開始和結束日期。
|
||||
warning: '變更可能需要一些時間才能生效。當所有相關的工作套件與專案生命週期更新完成後,您將會收到通知。 您確定要繼續嗎?
|
||||
|
||||
'
|
||||
work_packages_settings:
|
||||
warning_progress_calculation_mode_change_from_status_to_field_html: 將進度計算模式從基於狀態變更為基於工作將使<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> 的現有值也可能被重新計算,以反映這種變化。此操作不可逆轉。
|
||||
|
||||
@@ -57,7 +57,7 @@ ka:
|
||||
col_identifier: Identifier
|
||||
col_project: Project
|
||||
col_reserved: Reserved
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in classic identifier mode.
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in numeric identifier mode.
|
||||
filter_label: Filter identifiers
|
||||
btn_release: Release
|
||||
released_notice: Identifier "%{identifier}" has been released.
|
||||
@@ -1719,6 +1719,7 @@ ka:
|
||||
attachment:
|
||||
attachment_content: Attachment content
|
||||
attachment_file_name: Attachment file name
|
||||
charset: Character set
|
||||
content_type: Content-type
|
||||
downloads: გადმოწერები
|
||||
file: ფაილი
|
||||
@@ -1813,6 +1814,7 @@ ka:
|
||||
title: Title
|
||||
description: Description
|
||||
member:
|
||||
blocked: Blocked
|
||||
roles: როლები
|
||||
notification:
|
||||
read_ian: Read in-app
|
||||
@@ -3510,6 +3512,9 @@ ka:
|
||||
additional:
|
||||
projects: Newest visible projects in this instance.
|
||||
no_visible_projects: There are no visible projects in this instance.
|
||||
favorite_projects:
|
||||
no_results: You have no favorite projects
|
||||
no_results_subtext: Add one or multiple projects as favorite through their overview or in a project list.
|
||||
users: Newest registered users in this instance.
|
||||
blocks:
|
||||
community: OpenProject community
|
||||
@@ -5355,7 +5360,7 @@ ka:
|
||||
setting_welcome_on_homescreen: Display welcome block on homescreen
|
||||
setting_work_packages_identifier_classic: Instance-wide numerical sequence (default)
|
||||
setting_work_packages_identifier_classic_caption: 'Every work package gets a sequential number starting with 1 (for example, #1234). The numbers are unique within the instance and remain the same even if work packages are moved between projects.'
|
||||
setting_work_packages_identifier_semantic: Project-based semantic identifiers
|
||||
setting_work_packages_identifier_semantic: Project-based semantic identifiers (Beta)
|
||||
setting_work_packages_identifier_semantic_caption: Every project has a unique project identifier prefixed to a number (for example, PROJ-11). The numbering of each project starts at 1. If a work package is moved to another project, a new identifier is generated but the old one will continue to function.
|
||||
setting_work_package_list_default_highlighting_mode: Default highlighting mode
|
||||
setting_work_package_list_default_highlighted_attributes: Default inline highlighted attributes
|
||||
@@ -5969,6 +5974,17 @@ ka:
|
||||
warning: 'Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
|
||||
'
|
||||
dialog:
|
||||
title: Change working days
|
||||
description: 'Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
|
||||
'
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated.
|
||||
|
||||
'
|
||||
heading: Change the working days?
|
||||
confirm_button: Save and reschedule
|
||||
journal_note:
|
||||
changed: _**Working days** changed (%{changes})._
|
||||
days:
|
||||
|
||||
@@ -57,7 +57,7 @@ kk:
|
||||
col_identifier: Identifier
|
||||
col_project: Project
|
||||
col_reserved: Reserved
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in classic identifier mode.
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in numeric identifier mode.
|
||||
filter_label: Filter identifiers
|
||||
btn_release: Release
|
||||
released_notice: Identifier "%{identifier}" has been released.
|
||||
@@ -1719,6 +1719,7 @@ kk:
|
||||
attachment:
|
||||
attachment_content: Attachment content
|
||||
attachment_file_name: Attachment file name
|
||||
charset: Character set
|
||||
content_type: Content-type
|
||||
downloads: Downloads
|
||||
file: File
|
||||
@@ -1813,6 +1814,7 @@ kk:
|
||||
title: Title
|
||||
description: Description
|
||||
member:
|
||||
blocked: Blocked
|
||||
roles: Roles
|
||||
notification:
|
||||
read_ian: Read in-app
|
||||
@@ -3510,6 +3512,9 @@ kk:
|
||||
additional:
|
||||
projects: Newest visible projects in this instance.
|
||||
no_visible_projects: There are no visible projects in this instance.
|
||||
favorite_projects:
|
||||
no_results: You have no favorite projects
|
||||
no_results_subtext: Add one or multiple projects as favorite through their overview or in a project list.
|
||||
users: Newest registered users in this instance.
|
||||
blocks:
|
||||
community: OpenProject community
|
||||
@@ -5355,7 +5360,7 @@ kk:
|
||||
setting_welcome_on_homescreen: Display welcome block on homescreen
|
||||
setting_work_packages_identifier_classic: Instance-wide numerical sequence (default)
|
||||
setting_work_packages_identifier_classic_caption: 'Every work package gets a sequential number starting with 1 (for example, #1234). The numbers are unique within the instance and remain the same even if work packages are moved between projects.'
|
||||
setting_work_packages_identifier_semantic: Project-based semantic identifiers
|
||||
setting_work_packages_identifier_semantic: Project-based semantic identifiers (Beta)
|
||||
setting_work_packages_identifier_semantic_caption: Every project has a unique project identifier prefixed to a number (for example, PROJ-11). The numbering of each project starts at 1. If a work package is moved to another project, a new identifier is generated but the old one will continue to function.
|
||||
setting_work_package_list_default_highlighting_mode: Default highlighting mode
|
||||
setting_work_package_list_default_highlighted_attributes: Default inline highlighted attributes
|
||||
@@ -5969,6 +5974,17 @@ kk:
|
||||
warning: 'Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
|
||||
'
|
||||
dialog:
|
||||
title: Change working days
|
||||
description: 'Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
|
||||
'
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated.
|
||||
|
||||
'
|
||||
heading: Change the working days?
|
||||
confirm_button: Save and reschedule
|
||||
journal_note:
|
||||
changed: _**Working days** changed (%{changes})._
|
||||
days:
|
||||
|
||||
@@ -57,7 +57,7 @@ ko:
|
||||
col_identifier: Identifier
|
||||
col_project: Project
|
||||
col_reserved: Reserved
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in classic identifier mode.
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in numeric identifier mode.
|
||||
filter_label: Filter identifiers
|
||||
btn_release: Release
|
||||
released_notice: Identifier "%{identifier}" has been released.
|
||||
@@ -1698,6 +1698,7 @@ ko:
|
||||
attachment:
|
||||
attachment_content: 첨부 파일 콘텐츠
|
||||
attachment_file_name: 첨부 파일 이름
|
||||
charset: Character set
|
||||
content_type: 콘텐츠 유형
|
||||
downloads: 다운로드
|
||||
file: 파일
|
||||
@@ -1792,6 +1793,7 @@ ko:
|
||||
title: 제목
|
||||
description: 설명
|
||||
member:
|
||||
blocked: Blocked
|
||||
roles: 역할
|
||||
notification:
|
||||
read_ian: 인앱 읽기
|
||||
@@ -3464,6 +3466,9 @@ ko:
|
||||
additional:
|
||||
projects: 이 경우 최신 표시 프로젝트입니다.
|
||||
no_visible_projects: 이 경우 표시되는 프로젝트가 없습니다.
|
||||
favorite_projects:
|
||||
no_results: You have no favorite projects
|
||||
no_results_subtext: Add one or multiple projects as favorite through their overview or in a project list.
|
||||
users: 이 경우 최신 등록 된 사용자입니다.
|
||||
blocks:
|
||||
community: OpenProject 커뮤니티
|
||||
@@ -5299,7 +5304,7 @@ ko:
|
||||
setting_welcome_on_homescreen: 홈 화면에 환영 블록 표시
|
||||
setting_work_packages_identifier_classic: 인스턴스 전체의 숫자 시퀀스(기본값)
|
||||
setting_work_packages_identifier_classic_caption: 'Every work package gets a sequential number starting with 1 (for example, #1234). The numbers are unique within the instance and remain the same even if work packages are moved between projects.'
|
||||
setting_work_packages_identifier_semantic: 프로젝트 기반 시맨틱 식별자
|
||||
setting_work_packages_identifier_semantic: Project-based semantic identifiers (Beta)
|
||||
setting_work_packages_identifier_semantic_caption: Every project has a unique project identifier prefixed to a number (for example, PROJ-11). The numbering of each project starts at 1. If a work package is moved to another project, a new identifier is generated but the old one will continue to function.
|
||||
setting_work_package_list_default_highlighting_mode: 기본 강조 표시 모드
|
||||
setting_work_package_list_default_highlighted_attributes: 기본 인라인 강조 표시 특성
|
||||
@@ -5912,6 +5917,17 @@ ko:
|
||||
warning: '근무일 또는 휴무일로 간주되는 요일을 변경하면 이 인스턴스의 모든 프로젝트에 있는 모든 작업 패키지와 수명 주기의 시작 날짜 및 완료 날짜에 영향을 미칠 수 있습니다.
|
||||
|
||||
'
|
||||
dialog:
|
||||
title: Change working days
|
||||
description: 'Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
|
||||
'
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated.
|
||||
|
||||
'
|
||||
heading: Change the working days?
|
||||
confirm_button: Save and reschedule
|
||||
journal_note:
|
||||
changed: _**근무일**이 변경되었습니다(%{changes})._
|
||||
days:
|
||||
|
||||
@@ -57,7 +57,7 @@ lt:
|
||||
col_identifier: Identifier
|
||||
col_project: Project
|
||||
col_reserved: Reserved
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in classic identifier mode.
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in numeric identifier mode.
|
||||
filter_label: Filter identifiers
|
||||
btn_release: Release
|
||||
released_notice: Identifier "%{identifier}" has been released.
|
||||
@@ -1760,6 +1760,7 @@ lt:
|
||||
attachment:
|
||||
attachment_content: Prisegto failo turinys
|
||||
attachment_file_name: Prisegto failo vardas
|
||||
charset: Character set
|
||||
content_type: Content-type
|
||||
downloads: Atsisiuntimai
|
||||
file: Failas
|
||||
@@ -1854,6 +1855,7 @@ lt:
|
||||
title: Title
|
||||
description: Description
|
||||
member:
|
||||
blocked: Blocked
|
||||
roles: Vaidmenys
|
||||
notification:
|
||||
read_ian: Read in-app
|
||||
@@ -3637,6 +3639,9 @@ lt:
|
||||
additional:
|
||||
projects: Naujausi matomi projektai.
|
||||
no_visible_projects: Šiame egzemplioriuje nėra matomų projektų.
|
||||
favorite_projects:
|
||||
no_results: You have no favorite projects
|
||||
no_results_subtext: Add one or multiple projects as favorite through their overview or in a project list.
|
||||
users: Naujausi registruoti naudotojai.
|
||||
blocks:
|
||||
community: OpenProject community
|
||||
@@ -5488,7 +5493,7 @@ lt:
|
||||
setting_welcome_on_homescreen: Rodyti pasisveikinimo bloką namų lange
|
||||
setting_work_packages_identifier_classic: Instance-wide numerical sequence (default)
|
||||
setting_work_packages_identifier_classic_caption: 'Every work package gets a sequential number starting with 1 (for example, #1234). The numbers are unique within the instance and remain the same even if work packages are moved between projects.'
|
||||
setting_work_packages_identifier_semantic: Project-based semantic identifiers
|
||||
setting_work_packages_identifier_semantic: Project-based semantic identifiers (Beta)
|
||||
setting_work_packages_identifier_semantic_caption: Every project has a unique project identifier prefixed to a number (for example, PROJ-11). The numbering of each project starts at 1. If a work package is moved to another project, a new identifier is generated but the old one will continue to function.
|
||||
setting_work_package_list_default_highlighting_mode: Numatytasis paryškinimo būdas
|
||||
setting_work_package_list_default_highlighted_attributes: Atributai, kuriuos numatyta paryškinti
|
||||
@@ -6102,6 +6107,17 @@ lt:
|
||||
warning: 'Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
|
||||
'
|
||||
dialog:
|
||||
title: Change working days
|
||||
description: 'Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
|
||||
'
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated.
|
||||
|
||||
'
|
||||
heading: Change the working days?
|
||||
confirm_button: Save and reschedule
|
||||
journal_note:
|
||||
changed: _**Darbo dienos** pakeistos (%{changes})._
|
||||
days:
|
||||
|
||||
@@ -57,7 +57,7 @@ lv:
|
||||
col_identifier: Identifier
|
||||
col_project: Project
|
||||
col_reserved: Reserved
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in classic identifier mode.
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in numeric identifier mode.
|
||||
filter_label: Filter identifiers
|
||||
btn_release: Release
|
||||
released_notice: Identifier "%{identifier}" has been released.
|
||||
@@ -1740,6 +1740,7 @@ lv:
|
||||
attachment:
|
||||
attachment_content: Attachment content
|
||||
attachment_file_name: Attachment file name
|
||||
charset: Character set
|
||||
content_type: Content-type
|
||||
downloads: Lejupielādes
|
||||
file: Fails
|
||||
@@ -1834,6 +1835,7 @@ lv:
|
||||
title: Title
|
||||
description: Description
|
||||
member:
|
||||
blocked: Blocked
|
||||
roles: Lomas
|
||||
notification:
|
||||
read_ian: Read in-app
|
||||
@@ -3574,6 +3576,9 @@ lv:
|
||||
additional:
|
||||
projects: Jaunākie redzamie projekti šajā instancē.
|
||||
no_visible_projects: There are no visible projects in this instance.
|
||||
favorite_projects:
|
||||
no_results: You have no favorite projects
|
||||
no_results_subtext: Add one or multiple projects as favorite through their overview or in a project list.
|
||||
users: Jaunākās reģistrētie lietotāji šajā instancē.
|
||||
blocks:
|
||||
community: OpenProject community
|
||||
@@ -5424,7 +5429,7 @@ lv:
|
||||
setting_welcome_on_homescreen: Display welcome block on homescreen
|
||||
setting_work_packages_identifier_classic: Instance-wide numerical sequence (default)
|
||||
setting_work_packages_identifier_classic_caption: 'Every work package gets a sequential number starting with 1 (for example, #1234). The numbers are unique within the instance and remain the same even if work packages are moved between projects.'
|
||||
setting_work_packages_identifier_semantic: Project-based semantic identifiers
|
||||
setting_work_packages_identifier_semantic: Project-based semantic identifiers (Beta)
|
||||
setting_work_packages_identifier_semantic_caption: Every project has a unique project identifier prefixed to a number (for example, PROJ-11). The numbering of each project starts at 1. If a work package is moved to another project, a new identifier is generated but the old one will continue to function.
|
||||
setting_work_package_list_default_highlighting_mode: Default highlighting mode
|
||||
setting_work_package_list_default_highlighted_attributes: Default inline highlighted attributes
|
||||
@@ -6039,6 +6044,17 @@ lv:
|
||||
warning: 'Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
|
||||
'
|
||||
dialog:
|
||||
title: Change working days
|
||||
description: 'Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
|
||||
'
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated.
|
||||
|
||||
'
|
||||
heading: Change the working days?
|
||||
confirm_button: Save and reschedule
|
||||
journal_note:
|
||||
changed: _**Working days** changed (%{changes})._
|
||||
days:
|
||||
|
||||
@@ -57,7 +57,7 @@ mn:
|
||||
col_identifier: Identifier
|
||||
col_project: Project
|
||||
col_reserved: Reserved
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in classic identifier mode.
|
||||
not_available_in_semantic_mode: Reserved identifiers are only available in numeric identifier mode.
|
||||
filter_label: Filter identifiers
|
||||
btn_release: Release
|
||||
released_notice: Identifier "%{identifier}" has been released.
|
||||
@@ -1719,6 +1719,7 @@ mn:
|
||||
attachment:
|
||||
attachment_content: Attachment content
|
||||
attachment_file_name: Attachment file name
|
||||
charset: Character set
|
||||
content_type: Content-type
|
||||
downloads: Downloads
|
||||
file: File
|
||||
@@ -1813,6 +1814,7 @@ mn:
|
||||
title: Title
|
||||
description: Description
|
||||
member:
|
||||
blocked: Blocked
|
||||
roles: Roles
|
||||
notification:
|
||||
read_ian: Read in-app
|
||||
@@ -3510,6 +3512,9 @@ mn:
|
||||
additional:
|
||||
projects: Newest visible projects in this instance.
|
||||
no_visible_projects: There are no visible projects in this instance.
|
||||
favorite_projects:
|
||||
no_results: You have no favorite projects
|
||||
no_results_subtext: Add one or multiple projects as favorite through their overview or in a project list.
|
||||
users: Newest registered users in this instance.
|
||||
blocks:
|
||||
community: OpenProject community
|
||||
@@ -5355,7 +5360,7 @@ mn:
|
||||
setting_welcome_on_homescreen: Display welcome block on homescreen
|
||||
setting_work_packages_identifier_classic: Instance-wide numerical sequence (default)
|
||||
setting_work_packages_identifier_classic_caption: 'Every work package gets a sequential number starting with 1 (for example, #1234). The numbers are unique within the instance and remain the same even if work packages are moved between projects.'
|
||||
setting_work_packages_identifier_semantic: Project-based semantic identifiers
|
||||
setting_work_packages_identifier_semantic: Project-based semantic identifiers (Beta)
|
||||
setting_work_packages_identifier_semantic_caption: Every project has a unique project identifier prefixed to a number (for example, PROJ-11). The numbering of each project starts at 1. If a work package is moved to another project, a new identifier is generated but the old one will continue to function.
|
||||
setting_work_package_list_default_highlighting_mode: Default highlighting mode
|
||||
setting_work_package_list_default_highlighted_attributes: Default inline highlighted attributes
|
||||
@@ -5969,6 +5974,17 @@ mn:
|
||||
warning: 'Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
|
||||
'
|
||||
dialog:
|
||||
title: Change working days
|
||||
description: 'Changing which days of the week are considered working days or non-working days can affect the start and finish days of all work packages and life cycles in all projects in this instance.
|
||||
|
||||
'
|
||||
removed_title: 'You will remove the following days from the non-working days list:'
|
||||
warning: 'The changes might take some time to take effect. You will be notified when all relevant work packages and project life cycles have been updated.
|
||||
|
||||
'
|
||||
heading: Change the working days?
|
||||
confirm_button: Save and reschedule
|
||||
journal_note:
|
||||
changed: _**Working days** changed (%{changes})._
|
||||
days:
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user