mirror of
https://github.com/opf/openproject.git
synced 2026-06-14 03:30:14 +00:00
Merge branch 'dev' into merge-release/17.0-20251224035028
This commit is contained in:
@@ -103,7 +103,7 @@ jobs:
|
||||
./docker/prod/setup/precompile-assets.sh
|
||||
# public/assets will be saved as artifact, so temporarily copying config file there as well
|
||||
cp config/frontend_assets.manifest.json public/assets/frontend_assets.manifest.json
|
||||
- uses: actions/upload-artifact@v5
|
||||
- uses: actions/upload-artifact@v6
|
||||
with:
|
||||
path: public/
|
||||
name: public-assets-${{ inputs.tag }}-${{ github.sha }}
|
||||
@@ -163,7 +163,7 @@ jobs:
|
||||
run: |
|
||||
cp ./docker/prod/Dockerfile ./Dockerfile
|
||||
- name: Download precompiled public assets
|
||||
uses: actions/download-artifact@v6
|
||||
uses: actions/download-artifact@v7
|
||||
with:
|
||||
name: public-assets-${{ inputs.tag }}-${{ github.sha }}
|
||||
path: public/
|
||||
@@ -208,7 +208,7 @@ jobs:
|
||||
${{ needs.setup.outputs.registry_image }}
|
||||
- name: Restore vendor/bundle
|
||||
id: restore-vendor-bundle
|
||||
uses: actions/cache/restore@v4
|
||||
uses: actions/cache/restore@v5
|
||||
with:
|
||||
path: |
|
||||
vendor/bundle
|
||||
@@ -243,7 +243,7 @@ jobs:
|
||||
docker rm bundle
|
||||
- name: Save vendor/bundle
|
||||
id: save-vendor-bundle
|
||||
uses: actions/cache/save@v4
|
||||
uses: actions/cache/save@v5
|
||||
with:
|
||||
path: |
|
||||
vendor/bundle
|
||||
@@ -292,7 +292,7 @@ jobs:
|
||||
digest="${{ steps.push.outputs.digest }}"
|
||||
touch "/tmp/digests/${digest#sha256:}"
|
||||
- name: Upload digest
|
||||
uses: actions/upload-artifact@v5
|
||||
uses: actions/upload-artifact@v6
|
||||
with:
|
||||
name: digests-${{ inputs.tag }}-${{ matrix.target }}-${{ matrix.digest }}
|
||||
path: /tmp/digests/*
|
||||
@@ -308,13 +308,13 @@ jobs:
|
||||
- build
|
||||
steps:
|
||||
- name: Merge digests
|
||||
uses: actions/upload-artifact/merge@v5
|
||||
uses: actions/upload-artifact/merge@v6
|
||||
with:
|
||||
pattern: "digests-${{ inputs.tag }}-${{ matrix.target }}-${{ matrix.digest }}*"
|
||||
overwrite: true
|
||||
name: "merged-digests-${{ inputs.tag }}-${{ matrix.target }}-${{ github.run_number }}-${{ github.run_attempt }}"
|
||||
- name: Download digests
|
||||
uses: actions/download-artifact@v6
|
||||
uses: actions/download-artifact@v7
|
||||
with:
|
||||
name: "merged-digests-${{ inputs.tag }}-${{ matrix.target }}-${{ github.run_number }}-${{ github.run_attempt }}"
|
||||
path: /tmp/digests
|
||||
|
||||
+139
-135
@@ -59,6 +59,9 @@ Layout/MultilineMethodCallIndentation:
|
||||
Layout/MultilineOperationIndentation:
|
||||
Enabled: false
|
||||
|
||||
Lint/AmbiguousBlockAssociation:
|
||||
AllowedMethods: [change]
|
||||
|
||||
Lint/AmbiguousOperator:
|
||||
Enabled: false
|
||||
|
||||
@@ -98,14 +101,11 @@ Lint/UnderscorePrefixedVariableName:
|
||||
Lint/Void:
|
||||
Enabled: false
|
||||
|
||||
Lint/AmbiguousBlockAssociation:
|
||||
AllowedMethods: [change]
|
||||
|
||||
Metrics/ClassLength:
|
||||
Enabled: false
|
||||
|
||||
Metrics/CyclomaticComplexity:
|
||||
Enabled: false
|
||||
Metrics/AbcSize:
|
||||
Enabled: true
|
||||
Exclude:
|
||||
- "spec/**/*.rb"
|
||||
- "modules/*/spec/**/*.rb"
|
||||
|
||||
Metrics/BlockLength:
|
||||
Enabled: false
|
||||
@@ -113,6 +113,12 @@ Metrics/BlockLength:
|
||||
Metrics/BlockNesting:
|
||||
Enabled: false
|
||||
|
||||
Metrics/ClassLength:
|
||||
Enabled: false
|
||||
|
||||
Metrics/CyclomaticComplexity:
|
||||
Enabled: false
|
||||
|
||||
Metrics/MethodLength:
|
||||
Enabled: false
|
||||
|
||||
@@ -122,12 +128,6 @@ Metrics/ModuleLength:
|
||||
Metrics/ParameterLists:
|
||||
Enabled: false
|
||||
|
||||
Metrics/AbcSize:
|
||||
Enabled: true
|
||||
Exclude:
|
||||
- "spec/**/*.rb"
|
||||
- "modules/*/spec/**/*.rb"
|
||||
|
||||
Naming/AccessorMethodName:
|
||||
Enabled: false
|
||||
|
||||
@@ -150,10 +150,15 @@ Naming/VariableNumber:
|
||||
- '\w_20\d\d' # allow dates like christmas_2022 or date_2034_04_12
|
||||
- '\w\d++(_\d++)+' # allow hierarchical data like child1_2_5 (second + in regex is possessive qualifier)
|
||||
- 'custom_field_\d+' # allow custom field method names to be called with send :custom_field_1001
|
||||
# There are valid cases in which to use methods like:
|
||||
# * update_all
|
||||
# * touch_all
|
||||
Rails/SkipsModelValidations:
|
||||
|
||||
OpenProject/AddPreviewForViewComponent:
|
||||
Include:
|
||||
- app/components/op_turbo/**.rb
|
||||
- app/components/op_primer/**.rb
|
||||
- app/components/open_project/**.rb
|
||||
- app/components/concerns/**.rb
|
||||
|
||||
Performance/Casecmp:
|
||||
Enabled: false
|
||||
|
||||
# Don't force us to use tag instead of content_tag
|
||||
@@ -161,55 +166,6 @@ Rails/SkipsModelValidations:
|
||||
Rails/ContentTag:
|
||||
Enabled: false
|
||||
|
||||
# Disable I18n.locale = in specs, where it is reset
|
||||
# by us explicitly
|
||||
Rails/I18nLocaleAssignment:
|
||||
Enabled: true
|
||||
Exclude:
|
||||
- "spec/**/*.rb"
|
||||
|
||||
# Do not bother if `let` statements use an index in their name
|
||||
RSpec/IndexedLet:
|
||||
Enabled: false
|
||||
|
||||
# The http verbs in Rack::Test do not accept named parameters (params: params)
|
||||
Rails/HttpPositionalArguments:
|
||||
Enabled: false
|
||||
|
||||
# require_dependency is an obsolete method for Rails applications running in Zeitwerk mode.
|
||||
Rails/RequireDependency:
|
||||
Enabled: true
|
||||
|
||||
# For feature specs, we tend to have longer specs that cover a larger part of the functionality.
|
||||
# This is done for multiple reasons:
|
||||
# * performance, as setting up integration tests is costly
|
||||
# * following a scenario that is closer to how a user interacts
|
||||
RSpec/ExampleLength:
|
||||
Max: 25
|
||||
Enabled: true
|
||||
Exclude:
|
||||
- "spec/features/**/*.rb"
|
||||
- "modules/*/spec/features/**/*.rb"
|
||||
|
||||
# We have specs that have no expect(..) syntax,
|
||||
# but only helper classes that expect themselves
|
||||
RSpec/NoExpectationExample:
|
||||
Enabled: false
|
||||
|
||||
RSpec/DescribeClass:
|
||||
Enabled: true
|
||||
Exclude:
|
||||
- "spec/features/**/*.rb"
|
||||
- "modules/*/spec/features/**/*.rb"
|
||||
|
||||
# Nothing wrong with `include_examples` when used properly.
|
||||
RSpec/IncludeExamples:
|
||||
Enabled: false
|
||||
|
||||
# Allow number HTTP status codes in specs
|
||||
RSpecRails/HttpStatus:
|
||||
Enabled: false
|
||||
|
||||
# dynamic finders cop clashes with capybara ID cop
|
||||
Rails/DynamicFindBy:
|
||||
Enabled: true
|
||||
@@ -230,53 +186,38 @@ Rails/FindEach:
|
||||
- select
|
||||
- lock
|
||||
|
||||
# The http verbs in Rack::Test do not accept named parameters (params: params)
|
||||
Rails/HttpPositionalArguments:
|
||||
Enabled: false
|
||||
|
||||
# Disable I18n.locale = in specs, where it is reset
|
||||
# by us explicitly
|
||||
Rails/I18nLocaleAssignment:
|
||||
Enabled: true
|
||||
Exclude:
|
||||
- "spec/**/*.rb"
|
||||
|
||||
# We have config.active_record.belongs_to_required_by_default = false ,
|
||||
# which means, we do have to declare presence validators on belongs_to relations.
|
||||
Rails/RedundantPresenceValidationOnBelongsTo:
|
||||
Enabled: false
|
||||
|
||||
# See RSpec/ExampleLength for why feature specs are excluded
|
||||
RSpec/MultipleExpectations:
|
||||
Max: 15
|
||||
Enabled: true
|
||||
Exclude:
|
||||
- "spec/features/**/*.rb"
|
||||
- "modules/*/spec/features/**/*.rb"
|
||||
|
||||
RSpec/MultipleMemoizedHelpers:
|
||||
Enabled: false
|
||||
|
||||
RSpec/NestedGroups:
|
||||
Enabled: false
|
||||
|
||||
# Don't force the second argument of describe
|
||||
# to be .class_method or #instance_method
|
||||
RSpec/DescribeMethod:
|
||||
Enabled: false
|
||||
|
||||
# Don't force the second argument of describe
|
||||
# to match the exact file name
|
||||
RSpec/SpecFilePathFormat:
|
||||
CustomTransform:
|
||||
OpenIDConnect: openid_connect
|
||||
OAuthClients: oauth_clients
|
||||
OAuth: oauth
|
||||
ICal: ical
|
||||
IgnoreMethods: true
|
||||
|
||||
# Prevent "fit" or similar to be committed
|
||||
RSpec/Focus:
|
||||
# require_dependency is an obsolete method for Rails applications running in Zeitwerk mode.
|
||||
Rails/RequireDependency:
|
||||
Enabled: true
|
||||
|
||||
# We use let!() to ensure dependencies are created
|
||||
# instead of let() and referencing them explicitly
|
||||
RSpec/LetSetup:
|
||||
# Require save! to prevent saving without validation when saving outside of a condition.
|
||||
Rails/SaveBang:
|
||||
Enabled: true
|
||||
|
||||
# There are valid cases in which to use methods like:
|
||||
# * update_all
|
||||
# * touch_all
|
||||
Rails/SkipsModelValidations:
|
||||
Enabled: false
|
||||
|
||||
RSpec/LeadingSubject:
|
||||
Enabled: false
|
||||
|
||||
RSpec/NamedSubject:
|
||||
# Allow number HTTP status codes in specs
|
||||
RSpecRails/HttpStatus:
|
||||
Enabled: false
|
||||
|
||||
# expect not_to change is not working as expected
|
||||
@@ -303,6 +244,79 @@ RSpec/ContextWording:
|
||||
- within
|
||||
- without
|
||||
|
||||
RSpec/DescribeClass:
|
||||
Enabled: true
|
||||
Exclude:
|
||||
- "spec/features/**/*.rb"
|
||||
- "modules/*/spec/features/**/*.rb"
|
||||
|
||||
# Don't force the second argument of describe
|
||||
# to be .class_method or #instance_method
|
||||
RSpec/DescribeMethod:
|
||||
Enabled: false
|
||||
|
||||
# For feature specs, we tend to have longer specs that cover a larger part of the functionality.
|
||||
# This is done for multiple reasons:
|
||||
# * performance, as setting up integration tests is costly
|
||||
# * following a scenario that is closer to how a user interacts
|
||||
RSpec/ExampleLength:
|
||||
Max: 25
|
||||
Enabled: true
|
||||
Exclude:
|
||||
- "spec/features/**/*.rb"
|
||||
- "modules/*/spec/features/**/*.rb"
|
||||
|
||||
# Prevent "fit" or similar to be committed
|
||||
RSpec/Focus:
|
||||
Enabled: true
|
||||
|
||||
# Nothing wrong with `include_examples` when used properly.
|
||||
RSpec/IncludeExamples:
|
||||
Enabled: false
|
||||
|
||||
# Do not bother if `let` statements use an index in their name
|
||||
RSpec/IndexedLet:
|
||||
Enabled: false
|
||||
|
||||
RSpec/LeadingSubject:
|
||||
Enabled: false
|
||||
|
||||
# We use let!() to ensure dependencies are created
|
||||
# instead of let() and referencing them explicitly
|
||||
RSpec/LetSetup:
|
||||
Enabled: false
|
||||
|
||||
# We have specs that have no expect(..) syntax,
|
||||
# but only helper classes that expect themselves
|
||||
RSpec/NoExpectationExample:
|
||||
Enabled: false
|
||||
|
||||
# See RSpec/ExampleLength for why feature specs are excluded
|
||||
RSpec/MultipleExpectations:
|
||||
Max: 15
|
||||
Enabled: true
|
||||
Exclude:
|
||||
- "spec/features/**/*.rb"
|
||||
- "modules/*/spec/features/**/*.rb"
|
||||
|
||||
RSpec/MultipleMemoizedHelpers:
|
||||
Enabled: false
|
||||
|
||||
RSpec/NestedGroups:
|
||||
Enabled: false
|
||||
|
||||
# Don't force the second argument of describe
|
||||
# to match the exact file name
|
||||
RSpec/SpecFilePathFormat:
|
||||
CustomTransform:
|
||||
OpenIDConnect: openid_connect
|
||||
OAuthClients: oauth_clients
|
||||
EnforcedInflector: active_support
|
||||
IgnoreMethods: true
|
||||
|
||||
RSpec/NamedSubject:
|
||||
Enabled: false
|
||||
|
||||
Style/Alias:
|
||||
Enabled: false
|
||||
|
||||
@@ -367,6 +381,19 @@ Style/FormatString:
|
||||
Style/FormatStringToken:
|
||||
AllowedMethods: [redirect]
|
||||
|
||||
Style/FrozenStringLiteralComment:
|
||||
Enabled: true
|
||||
EnforcedStyle: always_true
|
||||
|
||||
Style/HashEachMethods:
|
||||
Enabled: true
|
||||
|
||||
Style/HashTransformKeys:
|
||||
Enabled: true
|
||||
|
||||
Style/HashTransformValues:
|
||||
Enabled: true
|
||||
|
||||
Style/GlobalVars:
|
||||
Enabled: false
|
||||
|
||||
@@ -409,6 +436,13 @@ Style/NilComparison:
|
||||
Style/Not:
|
||||
Enabled: false
|
||||
|
||||
Style/NumericLiterals:
|
||||
Enabled: false
|
||||
|
||||
# Avoid enforcing "positive?"
|
||||
Style/NumericPredicate:
|
||||
Enabled: false
|
||||
|
||||
Style/OneLineConditional:
|
||||
Enabled: false
|
||||
|
||||
@@ -471,33 +505,3 @@ Style/WhileUntilModifier:
|
||||
|
||||
Style/WordArray:
|
||||
Enabled: false
|
||||
|
||||
Style/FrozenStringLiteralComment:
|
||||
Enabled: true
|
||||
EnforcedStyle: always_true
|
||||
|
||||
Style/NumericLiterals:
|
||||
Enabled: false
|
||||
|
||||
# Avoid enforcing "positive?"
|
||||
Style/NumericPredicate:
|
||||
Enabled: false
|
||||
|
||||
Style/HashEachMethods:
|
||||
Enabled: true
|
||||
|
||||
Style/HashTransformKeys:
|
||||
Enabled: true
|
||||
|
||||
Style/HashTransformValues:
|
||||
Enabled: true
|
||||
|
||||
Performance/Casecmp:
|
||||
Enabled: false
|
||||
|
||||
OpenProject/AddPreviewForViewComponent:
|
||||
Include:
|
||||
- app/components/op_turbo/**.rb
|
||||
- app/components/op_primer/**.rb
|
||||
- app/components/open_project/**.rb
|
||||
- app/components/concerns/**.rb
|
||||
|
||||
@@ -46,6 +46,8 @@ gem "responders", "~> 3.2"
|
||||
|
||||
gem "ffi", "~> 1.15"
|
||||
|
||||
gem "connection_pool", "~> 2.5.5"
|
||||
|
||||
gem "rdoc", ">= 2.4.2"
|
||||
|
||||
gem "doorkeeper", "~> 5.8.0"
|
||||
@@ -109,7 +111,7 @@ gem "svg-graph", "~> 2.2.0"
|
||||
|
||||
gem "date_validator", "~> 0.12.0"
|
||||
gem "email_validator", "~> 2.2.3"
|
||||
gem "json_schemer", "~> 2.4.0"
|
||||
gem "json_schemer", "~> 2.5.0"
|
||||
gem "ruby-duration", "~> 3.2.0"
|
||||
|
||||
gem "mail", "2.9.0"
|
||||
@@ -139,7 +141,7 @@ gem "rack-attack", "~> 6.8.0"
|
||||
gem "browser", "~> 6.2.0"
|
||||
|
||||
# Providing health checks
|
||||
gem "okcomputer", "~> 1.19.0"
|
||||
gem "okcomputer", "~> 1.19.1"
|
||||
|
||||
# Lograge to provide sane and non-verbose logging
|
||||
gem "lograge", "~> 0.14.0"
|
||||
@@ -151,7 +153,7 @@ gem "structured_warnings", "~> 0.5.0"
|
||||
# don't require by default, instead load on-demand when actually configured
|
||||
gem "airbrake", "~> 13.0.0", require: false
|
||||
|
||||
gem "markly", "~> 0.14" # another Markdown parser like commonmarker, but with AST support used in PDF export
|
||||
gem "markly", "~> 0.15" # another markdown parser like commonmarker, but with AST support used in PDF export
|
||||
gem "md_to_pdf", git: "https://github.com/opf/md-to-pdf", ref: "6c565541bfa390c58d90d49aa9b487777704fc66"
|
||||
gem "prawn", "~> 2.4"
|
||||
gem "ttfunk", "~> 1.7.0" # remove after https://github.com/prawnpdf/prawn/issues/1346 resolved.
|
||||
@@ -179,7 +181,7 @@ group :production do
|
||||
end
|
||||
|
||||
gem "i18n-js", "~> 4.2.4"
|
||||
gem "rails-i18n", "~> 8.0.0"
|
||||
gem "rails-i18n", "~> 8.1.0"
|
||||
|
||||
gem "sprockets", "~> 3.7.2" # lock sprockets below 4.0
|
||||
gem "sprockets-rails", "~> 3.5.1"
|
||||
@@ -196,11 +198,11 @@ gem "fog-aws"
|
||||
|
||||
gem "aws-sdk-core", "~> 3.239"
|
||||
# File upload via fog + screenshots on travis
|
||||
gem "aws-sdk-s3", "~> 1.205"
|
||||
gem "aws-sdk-s3", "~> 1.208"
|
||||
|
||||
gem "openproject-token", "~> 8.3.0"
|
||||
|
||||
gem "plaintext", "~> 0.3.2"
|
||||
gem "plaintext", "~> 0.3.7"
|
||||
|
||||
gem "ruby-progressbar", "~> 1.13.0", require: false
|
||||
|
||||
@@ -358,7 +360,7 @@ group :development, :test do
|
||||
gem "rubocop-factory_bot", require: false
|
||||
gem "rubocop-openproject", require: false
|
||||
gem "rubocop-performance", require: false
|
||||
gem "rubocop-rails", "= 2.33.3", require: false # 2.33.4 has issues with Rails/ActionControllerFlashBeforeRender
|
||||
gem "rubocop-rails", "2.34.2", require: false # 2.33.4 has issues with Rails/ActionControllerFlashBeforeRender
|
||||
gem "rubocop-rspec", require: false
|
||||
gem "rubocop-rspec_rails", require: false
|
||||
|
||||
|
||||
+52
-50
@@ -36,10 +36,10 @@ GIT
|
||||
|
||||
GIT
|
||||
remote: https://github.com/opf/omniauth-openid-connect.git
|
||||
revision: f0c1ecdb26e39017a9e929af75a166c772d960bb
|
||||
ref: f0c1ecdb26e39017a9e929af75a166c772d960bb
|
||||
revision: 825d06235b64f6bc872bba709f1c2d48fd5cede4
|
||||
ref: 825d06235b64f6bc872bba709f1c2d48fd5cede4
|
||||
specs:
|
||||
omniauth-openid-connect (0.4.2)
|
||||
omniauth-openid-connect (0.5.0)
|
||||
addressable (~> 2.5)
|
||||
omniauth (~> 1.6)
|
||||
openid_connect (~> 2.2.0)
|
||||
@@ -339,7 +339,7 @@ GEM
|
||||
awesome_nested_set (3.8.0)
|
||||
activerecord (>= 4.0.0, < 8.1)
|
||||
aws-eventstream (1.4.0)
|
||||
aws-partitions (1.1188.0)
|
||||
aws-partitions (1.1196.0)
|
||||
aws-sdk-core (3.239.2)
|
||||
aws-eventstream (~> 1, >= 1.3.0)
|
||||
aws-partitions (~> 1, >= 1.992.0)
|
||||
@@ -351,7 +351,7 @@ GEM
|
||||
aws-sdk-kms (1.118.0)
|
||||
aws-sdk-core (~> 3, >= 3.239.1)
|
||||
aws-sigv4 (~> 1.5)
|
||||
aws-sdk-s3 (1.205.0)
|
||||
aws-sdk-s3 (1.208.0)
|
||||
aws-sdk-core (~> 3, >= 3.234.0)
|
||||
aws-sdk-kms (~> 1)
|
||||
aws-sigv4 (~> 1.5)
|
||||
@@ -437,7 +437,7 @@ GEM
|
||||
compare-xml (0.66)
|
||||
nokogiri (~> 1.8)
|
||||
concurrent-ruby (1.3.5)
|
||||
connection_pool (2.5.4)
|
||||
connection_pool (2.5.5)
|
||||
cookiejar (0.3.4)
|
||||
cose (1.3.1)
|
||||
cbor (~> 0.5.9)
|
||||
@@ -457,7 +457,7 @@ GEM
|
||||
ferrum (~> 0.17.0)
|
||||
daemons (1.4.1)
|
||||
dalli (3.2.8)
|
||||
date (3.5.0)
|
||||
date (3.5.1)
|
||||
date_validator (0.12.0)
|
||||
activemodel (>= 3)
|
||||
activesupport (>= 3)
|
||||
@@ -631,7 +631,7 @@ GEM
|
||||
mini_mime (~> 1.1)
|
||||
representable (~> 3.0)
|
||||
retriable (~> 3.1)
|
||||
google-apis-gmail_v1 (0.46.0)
|
||||
google-apis-gmail_v1 (0.47.0)
|
||||
google-apis-core (>= 0.15.0, < 2.a)
|
||||
google-cloud-env (2.3.1)
|
||||
base64 (~> 0.2)
|
||||
@@ -666,7 +666,7 @@ GEM
|
||||
rake (>= 13)
|
||||
googleapis-common-protos-types (1.22.0)
|
||||
google-protobuf (~> 4.26)
|
||||
googleauth (1.15.1)
|
||||
googleauth (1.16.0)
|
||||
faraday (>= 1.0, < 3.a)
|
||||
google-cloud-env (~> 2.2)
|
||||
google-logging-utils (~> 0.1)
|
||||
@@ -735,7 +735,7 @@ GEM
|
||||
reline (>= 0.4.2)
|
||||
iso8601 (0.13.0)
|
||||
jmespath (1.6.2)
|
||||
json (2.16.0)
|
||||
json (2.18.0)
|
||||
json-jwt (1.17.0)
|
||||
activesupport (>= 4.2)
|
||||
aes_key_wrap
|
||||
@@ -745,7 +745,7 @@ GEM
|
||||
faraday-follow_redirects
|
||||
json-schema (4.3.1)
|
||||
addressable (>= 2.8)
|
||||
json_schemer (2.4.0)
|
||||
json_schemer (2.5.0)
|
||||
bigdecimal
|
||||
hana (~> 1.3)
|
||||
regexp_parser (~> 2.0)
|
||||
@@ -806,7 +806,7 @@ GEM
|
||||
net-pop
|
||||
net-smtp
|
||||
marcel (1.1.0)
|
||||
markly (0.14.1)
|
||||
markly (0.15.0)
|
||||
matrix (0.4.3)
|
||||
messagebird-rest (5.0.0)
|
||||
jwt (< 4)
|
||||
@@ -865,7 +865,8 @@ GEM
|
||||
oj (3.16.12)
|
||||
bigdecimal (>= 3.0)
|
||||
ostruct (>= 0.2)
|
||||
okcomputer (1.19.0)
|
||||
okcomputer (1.19.1)
|
||||
benchmark
|
||||
omniauth-saml (1.10.6)
|
||||
omniauth (~> 1.3, >= 1.3.2)
|
||||
ruby-saml (~> 1.18)
|
||||
@@ -1075,7 +1076,7 @@ GEM
|
||||
ostruct (0.6.3)
|
||||
ox (2.14.23)
|
||||
bigdecimal (>= 3.0)
|
||||
pagy (43.1.5)
|
||||
pagy (43.1.8)
|
||||
json
|
||||
yaml
|
||||
paper_trail (17.0.0)
|
||||
@@ -1103,7 +1104,7 @@ GEM
|
||||
pg (1.6.2-x86_64-darwin)
|
||||
pg (1.6.2-x86_64-linux)
|
||||
pg (1.6.2-x86_64-linux-musl)
|
||||
plaintext (0.3.6)
|
||||
plaintext (0.3.7)
|
||||
activesupport (> 2.2.1)
|
||||
nokogiri (~> 1.10, >= 1.10.4)
|
||||
rubyzip (>= 1.2.0)
|
||||
@@ -1162,7 +1163,7 @@ GEM
|
||||
pry-rescue (1.6.0)
|
||||
interception (>= 0.5)
|
||||
pry (>= 0.12.0)
|
||||
psych (5.2.6)
|
||||
psych (5.3.0)
|
||||
date
|
||||
stringio
|
||||
public_suffix (6.0.2)
|
||||
@@ -1233,7 +1234,7 @@ GEM
|
||||
rails-html-sanitizer (1.6.2)
|
||||
loofah (~> 2.21)
|
||||
nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0)
|
||||
rails-i18n (8.0.2)
|
||||
rails-i18n (8.1.0)
|
||||
i18n (>= 0.7, < 2)
|
||||
railties (>= 8.0.0, < 9)
|
||||
railties (8.0.4)
|
||||
@@ -1247,12 +1248,12 @@ GEM
|
||||
zeitwerk (~> 2.6)
|
||||
rainbow (3.1.1)
|
||||
rake (13.3.1)
|
||||
rake-compiler-dock (1.9.1)
|
||||
rake-compiler-dock (1.10.0)
|
||||
rb-fsevent (0.11.2)
|
||||
rb-inotify (0.11.1)
|
||||
ffi (~> 1.0)
|
||||
rb_sys (0.9.117)
|
||||
rake-compiler-dock (= 1.9.1)
|
||||
rb_sys (0.9.119)
|
||||
rake-compiler-dock (= 1.10.0)
|
||||
rbtrace (0.5.2)
|
||||
ffi (>= 1.0.6)
|
||||
msgpack (>= 0.4.3)
|
||||
@@ -1338,7 +1339,7 @@ GEM
|
||||
lint_roller (~> 1.1)
|
||||
rubocop (>= 1.75.0, < 2.0)
|
||||
rubocop-ast (>= 1.47.1, < 2.0)
|
||||
rubocop-rails (2.33.3)
|
||||
rubocop-rails (2.34.2)
|
||||
activesupport (>= 4.2.0)
|
||||
lint_roller (~> 1.1)
|
||||
rack (>= 1.1)
|
||||
@@ -1417,7 +1418,7 @@ GEM
|
||||
store_attribute (2.0.1)
|
||||
activerecord (>= 6.1)
|
||||
stringex (2.8.6)
|
||||
stringio (3.1.8)
|
||||
stringio (3.1.9)
|
||||
structured_warnings (0.5.0)
|
||||
svg-graph (2.2.2)
|
||||
swd (2.0.3)
|
||||
@@ -1495,7 +1496,7 @@ GEM
|
||||
addressable (>= 2.8.0)
|
||||
crack (>= 0.3.2)
|
||||
hashdiff (>= 0.4.0, < 2.0.0)
|
||||
webrick (1.9.1)
|
||||
webrick (1.9.2)
|
||||
websocket (1.2.11)
|
||||
websocket-driver (0.8.0)
|
||||
base64
|
||||
@@ -1561,7 +1562,7 @@ DEPENDENCIES
|
||||
auto_strip_attributes (~> 2.5)
|
||||
awesome_nested_set (~> 3.8.0)
|
||||
aws-sdk-core (~> 3.239)
|
||||
aws-sdk-s3 (~> 1.205)
|
||||
aws-sdk-s3 (~> 1.208)
|
||||
axe-core-rspec
|
||||
bcrypt (~> 3.1.6)
|
||||
bootsnap (~> 1.19.0)
|
||||
@@ -1579,6 +1580,7 @@ DEPENDENCIES
|
||||
colored2
|
||||
commonmarker (~> 2.6.0)
|
||||
compare-xml (~> 0.66)
|
||||
connection_pool (~> 2.5.5)
|
||||
costs!
|
||||
counter_culture (~> 3.11)
|
||||
csv (~> 3.3)
|
||||
@@ -1621,7 +1623,7 @@ DEPENDENCIES
|
||||
ice_cube (~> 0.17.0)
|
||||
ice_nine
|
||||
inline_svg (~> 1.10.0)
|
||||
json_schemer (~> 2.4.0)
|
||||
json_schemer (~> 2.5.0)
|
||||
json_spec (~> 1.1.4)
|
||||
ladle
|
||||
launchy (~> 3.1.0)
|
||||
@@ -1631,7 +1633,7 @@ DEPENDENCIES
|
||||
lograge (~> 0.14.0)
|
||||
lookbook (= 2.3.13)
|
||||
mail (= 2.9.0)
|
||||
markly (~> 0.14)
|
||||
markly (~> 0.15)
|
||||
matrix (~> 0.4.3)
|
||||
md_to_pdf!
|
||||
meta-tags (~> 2.22.2)
|
||||
@@ -1641,7 +1643,7 @@ DEPENDENCIES
|
||||
net-ldap (~> 0.20.0)
|
||||
nokogiri (~> 1.18.10)
|
||||
oj (~> 3.16.12)
|
||||
okcomputer (~> 1.19.0)
|
||||
okcomputer (~> 1.19.1)
|
||||
omniauth!
|
||||
omniauth-openid-connect!
|
||||
omniauth-openid_connect-providers!
|
||||
@@ -1682,7 +1684,7 @@ DEPENDENCIES
|
||||
parallel_tests (~> 4.0)
|
||||
pdf-inspector (~> 1.2)
|
||||
pg (~> 1.6.2)
|
||||
plaintext (~> 0.3.2)
|
||||
plaintext (~> 0.3.7)
|
||||
prawn (~> 2.4)
|
||||
pry-byebug (~> 3.11.0)
|
||||
pry-rails (~> 0.3.6)
|
||||
@@ -1699,7 +1701,7 @@ DEPENDENCIES
|
||||
rack_session_access
|
||||
rails (~> 8.0.4)
|
||||
rails-controller-testing (~> 1.0.2)
|
||||
rails-i18n (~> 8.0.0)
|
||||
rails-i18n (~> 8.1.0)
|
||||
rbtrace
|
||||
rdoc (>= 2.4.2)
|
||||
redis (~> 5.4.0)
|
||||
@@ -1718,7 +1720,7 @@ DEPENDENCIES
|
||||
rubocop-factory_bot
|
||||
rubocop-openproject
|
||||
rubocop-performance
|
||||
rubocop-rails (= 2.33.3)
|
||||
rubocop-rails (= 2.34.2)
|
||||
rubocop-rspec
|
||||
rubocop-rspec_rails
|
||||
ruby-duration (~> 3.2.0)
|
||||
@@ -1799,10 +1801,10 @@ CHECKSUMS
|
||||
auto_strip_attributes (2.6.0) sha256=a7e2e0cf744de2bcd947fd68014220702bcc88c81274c1cd9ce6f7316aae39b0
|
||||
awesome_nested_set (3.8.0) sha256=469daff411d80291dbb80d1973133e498048a7afc2519c545f62d2cdebc60eda
|
||||
aws-eventstream (1.4.0) sha256=116bf85c436200d1060811e6f5d2d40c88f65448f2125bc77ffce5121e6e183b
|
||||
aws-partitions (1.1188.0) sha256=dff035be9381b37a71295f88608640323de6d0e25c83a1b1932390b03a08af9a
|
||||
aws-partitions (1.1196.0) sha256=1a62cf7f1298f785bf9fca59ab77f3ceb49dd73bcc547c877236905887c35564
|
||||
aws-sdk-core (3.239.2) sha256=a6801845ee0bdb061a3f9fb488136f3a585d51ff05b77063a9e228c9539cf239
|
||||
aws-sdk-kms (1.118.0) sha256=c9c751596d4f1502adac857c90010f00a9a52370b78e170acb198af7fa716fbd
|
||||
aws-sdk-s3 (1.205.0) sha256=dcffbd495dfd2d6ba5bc86e7b0c58facb982aae298b328e5f199ece38dea2ee9
|
||||
aws-sdk-s3 (1.208.0) sha256=3fce13500171bae425ffb0fd30f4caef081c5e9780714ac3484b48e0a1797d6d
|
||||
aws-sdk-sns (1.109.0) sha256=71bb33691a8a88a485cefe4fba30dfef352104d82c14c665396534dcde39b811
|
||||
aws-sigv4 (1.12.1) sha256=6973ff95cb0fd0dc58ba26e90e9510a2219525d07620c8babeb70ef831826c00
|
||||
axe-core-api (4.11.0) sha256=3d9c94e3c8f8f9b8f154a3ce036b3dec2dabf7bb7de5e51d663b18bd8a0d691b
|
||||
@@ -1843,7 +1845,7 @@ CHECKSUMS
|
||||
commonmarker (2.6.0-x86_64-linux-musl) sha256=10159e84446362daa92380f0f68fd3818affa86527f0f098d0d08ac49941538e
|
||||
compare-xml (0.66) sha256=e21aa5c0f69ef1177eced997c688fd4df989084e74a1b612257af32e1dd05319
|
||||
concurrent-ruby (1.3.5) sha256=813b3e37aca6df2a21a3b9f1d497f8cbab24a2b94cab325bffe65ee0f6cbebc6
|
||||
connection_pool (2.5.4) sha256=e9e1922327416091f3f6542f5f4446c2a20745276b9aa796dd0bb2fd0ea1e70a
|
||||
connection_pool (2.5.5) sha256=e54ff92855753df1fd7c59fa04a398833355f27dd14c074f8c83a05f72a716ad
|
||||
cookiejar (0.3.4) sha256=11b16acfc4baf7a0f463c21a6212005e04e25f5554d4d9f24d97f3492dfda0df
|
||||
cose (1.3.1) sha256=d5d4dbcd6b035d513edc4e1ab9bc10e9ce13b4011c96e3d1b8fe5e6413fd6de5
|
||||
costs (1.0.0)
|
||||
@@ -1855,7 +1857,7 @@ CHECKSUMS
|
||||
cuprite (0.17) sha256=b140d5dc70d08b97ad54bcf45cd95d0bd430e291e9dffe76fff851fddd57c12b
|
||||
daemons (1.4.1) sha256=8fc76d76faec669feb5e455d72f35bd4c46dc6735e28c420afb822fac1fa9a1d
|
||||
dalli (3.2.8) sha256=2e63595084d91fae2655514a02c5d4fc0f16c0799893794abe23bf628bebaaa5
|
||||
date (3.5.0) sha256=5e74fd6c04b0e65d97ad4f3bb5cb2d8efb37f386cc848f46310b4593ffc46ee5
|
||||
date (3.5.1) sha256=750d06384d7b9c15d562c76291407d89e368dda4d4fff957eb94962d325a0dc0
|
||||
date_validator (0.12.0) sha256=68c9834da240347b9c17441c553a183572508617ebfbe8c020020f3192ce3058
|
||||
deckar01-task_list (2.3.4) sha256=66abdc7e009ea759732bb53867e1ea42de550e2aa03ac30a015cbf42a04c1667
|
||||
declarative (0.0.20) sha256=8021dd6cb17ab2b61233c56903d3f5a259c5cf43c80ff332d447d395b17d9ff9
|
||||
@@ -1924,7 +1926,7 @@ CHECKSUMS
|
||||
globalid (1.3.0) sha256=05c639ad6eb4594522a0b07983022f04aa7254626ab69445a0e493aa3786ff11
|
||||
good_job (4.12.1) sha256=a8a981baf2ac9c40a85412d92ce2bf7a5e6d35d9dadb0900db57780583eafebb
|
||||
google-apis-core (1.0.2) sha256=ba4579aaadc902d6cc7bc8db88f566ab00f5e31ea87ab41e9f9a032c470f2629
|
||||
google-apis-gmail_v1 (0.46.0) sha256=9586b8398400e8a49b43728cab94737c102ac95ebe96bde5b52ac229eeea7196
|
||||
google-apis-gmail_v1 (0.47.0) sha256=3064434b6da55b85e2828ce4bb0f4d04e8cfd187a4ab262ceb1dcb01f98e49ef
|
||||
google-cloud-env (2.3.1) sha256=0faac01eb27be78c2591d64433663b1a114f8f7af55a4f819755426cac9178e7
|
||||
google-logging-utils (0.2.0) sha256=675462b4ea5affa825a3442694ca2d75d0069455a1d0956127207498fca3df7b
|
||||
google-protobuf (4.32.1) sha256=d9ec3f52a283802055647af5d824dcdfe0a791c6ecbad6a514442f40759015e7
|
||||
@@ -1937,7 +1939,7 @@ CHECKSUMS
|
||||
google-protobuf (4.32.1-x86_64-linux-gnu) sha256=2d209c1980dbdeb4114c7d839a3305fb78dc90bde42fb9a22974c8a4841e0263
|
||||
google-protobuf (4.32.1-x86_64-linux-musl) sha256=d5314aea8817bd372177205667b4f4442a5884212bcaccb1ba569ec8a1a06ec4
|
||||
googleapis-common-protos-types (1.22.0) sha256=f97492b77bd6da0018c860d5004f512fe7cd165554d7019a8f4df6a56fbfc4c7
|
||||
googleauth (1.15.1) sha256=d61960893d0d573601d94a38889613b991f40a59ab755b5beed87bf2c3d3cb24
|
||||
googleauth (1.16.0) sha256=1e7b5c2ee7edc6a0f5a4a4312c579b3822dc0be2679d6d09ca19d8c7ca5bd5f1
|
||||
grape (2.4.0) sha256=3d59673e80f11d49ba86270b78344e5348dc057b318c2bbc1c01f3532f9b6aec
|
||||
grape_logging (3.0.0) sha256=7b62d984ce96df15d120508668debe307e6a59ac1c511f1d9b5f3b4bea793e13
|
||||
gravatar_image_tag (1.2.0) sha256=eb5630fea846b711e713b934a0178fb9785f02f4eb9ced8d6faa4d537c40fdcf
|
||||
@@ -1966,10 +1968,10 @@ CHECKSUMS
|
||||
irb (1.15.3) sha256=4349edff1efa7ff7bfd34cb9df74a133a588ba88c2718098b3b4468b81184aaa
|
||||
iso8601 (0.13.0) sha256=298c2b15b7be5fa95a1372813d36a2257656cd8e906dfbc1f5cb409851425aa2
|
||||
jmespath (1.6.2) sha256=238d774a58723d6c090494c8879b5e9918c19485f7e840f2c1c7532cf84ebcb1
|
||||
json (2.16.0) sha256=ca5630320bb5ca23ebfd0bac84532fab56eb357575653b815b9df42c051e1525
|
||||
json (2.18.0) sha256=b10506aee4183f5cf49e0efc48073d7b75843ce3782c68dbeb763351c08fd505
|
||||
json-jwt (1.17.0) sha256=6ff99026b4c54281a9431179f76ceb81faa14772d710ef6169785199caadc4cc
|
||||
json-schema (4.3.1) sha256=d5e68dc32b94408d0b06ad04f9382ccbb6fe5a44910e066f8547f56c471a7825
|
||||
json_schemer (2.4.0) sha256=56cb6117bb5748d925b33ad3f415b513d41d25d0bbf57fe63c0a78ff05597c24
|
||||
json_schemer (2.5.0) sha256=2f01fb4cce721a4e08dd068fc2030cffd0702a7f333f1ea2be6e8991f00ae396
|
||||
json_spec (1.1.5) sha256=7a77b97a92c787e2aa3fbc4a1239afc3342c781151dc98cfb81461b3b7cad10f
|
||||
jwt (3.1.2) sha256=af6991f19a6bb4060d618d9add7a66f0eeb005ac0bc017cd01f63b42e122d535
|
||||
ladle (1.0.1) sha256=e8586964108c798d48bf57d2a65bd5602e8e5223a176b6602a0fb36c0bda90dc
|
||||
@@ -1987,7 +1989,7 @@ CHECKSUMS
|
||||
lookbook (2.3.13) sha256=acfa04a1ba7a87b057c222d78a2d72763546f52549e97590993344c8373f6d21
|
||||
mail (2.9.0) sha256=6fa6673ecd71c60c2d996260f9ee3dd387d4673b8169b502134659ece6d34941
|
||||
marcel (1.1.0) sha256=fdcfcfa33cc52e93c4308d40e4090a5d4ea279e160a7f6af988260fa970e0bee
|
||||
markly (0.14.1) sha256=911970dcf1d077461ab39d46a6e7b68f3e8acbb3a7a9fec41393bad46dceab4f
|
||||
markly (0.15.0) sha256=63328dac2f7c14d8fd4b9f9ed4c50f02f63a2b3e43ddeb8516aae528086f47ec
|
||||
matrix (0.4.3) sha256=a0d5ab7ddcc1973ff690ab361b67f359acbb16958d1dc072b8b956a286564c5b
|
||||
md_to_pdf (0.2.5)
|
||||
messagebird-rest (5.0.0) sha256=da4cc1efba3d5e4aa021fad07426c2cb6b326ce5670da5104bb8f6056a39d59c
|
||||
@@ -2021,9 +2023,9 @@ CHECKSUMS
|
||||
nokogiri (1.18.10-x86_64-linux-gnu) sha256=ff5ba26ba2dbce5c04b9ea200777fd225061d7a3930548806f31db907e500f72
|
||||
nokogiri (1.18.10-x86_64-linux-musl) sha256=0651fccf8c2ebbc2475c8b1dfd7ccac3a0a6d09f8a41b72db8c21808cb483385
|
||||
oj (3.16.12) sha256=ad9fad6a06dabcf4cfe6a420690a4375377685c16eee0ae88e8d38a43ed7b556
|
||||
okcomputer (1.19.0) sha256=8548935a82f725bdd8f2c329925a9f1a1bb2ce19ce26b47d7515665ee363b458
|
||||
okcomputer (1.19.1) sha256=7df770e768434816d228407f0786563827cbf34cb379933578829720cb4f1e77
|
||||
omniauth (1.9.2)
|
||||
omniauth-openid-connect (0.4.2)
|
||||
omniauth-openid-connect (0.5.0)
|
||||
omniauth-openid_connect-providers (0.2.0)
|
||||
omniauth-saml (1.10.6) sha256=13dde22f4fd1beff0ef2d6dae576f7b68594f159990e8e886d8a02b32397afbd
|
||||
op-clamav-client (3.4.2) sha256=f28d697d11758a2ba3dc530cfdf4871a00ecd517631e8bac30dee30cd6012964
|
||||
@@ -2117,7 +2119,7 @@ CHECKSUMS
|
||||
ostruct (0.6.3) sha256=95a2ed4a4bd1d190784e666b47b2d3f078e4a9efda2fccf18f84ddc6538ed912
|
||||
overviews (1.0.0)
|
||||
ox (2.14.23) sha256=4a9aedb4d6c78c5ebac1d7287dc7cc6808e14a8831d7adb727438f6a1b461b66
|
||||
pagy (43.1.5) sha256=b4b8a12a6edd6d66fa8501989903238a5f767605ca306a90745c82b00f8cb543
|
||||
pagy (43.1.8) sha256=06d89d0924ef74d239e2410f5e7baedcd73ebcd0a020bbe582af71c79dd9e38a
|
||||
paper_trail (17.0.0) sha256=1c2842061d3874ca7015908e821e2aa14f9b982af2acb2a7974713bf79021c85
|
||||
parallel (1.27.0) sha256=4ac151e1806b755fb4e2dc2332cbf0e54f2e24ba821ff2d3dcf86bf6dc4ae130
|
||||
parallel_tests (4.10.1) sha256=df05458c691462b210f7a41fc2651d4e4e8a881e8190e6d1e122c92c07735d70
|
||||
@@ -2132,7 +2134,7 @@ CHECKSUMS
|
||||
pg (1.6.2-x86_64-darwin) sha256=c441a55723584e2ae41749bf26024d7ffdfe1841b442308ed50cd6b7fda04115
|
||||
pg (1.6.2-x86_64-linux) sha256=525f438137f2d1411a1ebcc4208ec35cb526b5a3b285a629355c73208506a8ea
|
||||
pg (1.6.2-x86_64-linux-musl) sha256=e5c8668ffeaf7a9c3458a3dcb002dffa6d8ee1fca9ae534ffef861d2b15644ca
|
||||
plaintext (0.3.6) sha256=6ae13dce9f94e26bde4069109455a1d4948ae161e89350db1a9b37667b61f385
|
||||
plaintext (0.3.7) sha256=3b923152ee84d98898d459e9442ec9cca84d2acdbb8d232e2bcf41c5723e70d5
|
||||
pp (0.6.3) sha256=2951d514450b93ccfeb1df7d021cae0da16e0a7f95ee1e2273719669d0ab9df6
|
||||
prawn (2.4.0) sha256=82062744f7126c2d77501da253a154271790254dfa8c309b8e52e79bc5de2abd
|
||||
prawn-table (0.2.2) sha256=336d46e39e003f77bf973337a958af6a68300b941c85cb22288872dc2b36addb
|
||||
@@ -2149,7 +2151,7 @@ CHECKSUMS
|
||||
pry-byebug (3.11.0) sha256=0b0abb7d309bc7f00044d512a3c8567274f7012b944b38becc8440439a1cea72
|
||||
pry-rails (0.3.11) sha256=a69e28e24a34d75d1f60bcf241192a54253f8f7ef8a62cba1e75750a9653593d
|
||||
pry-rescue (1.6.0) sha256=985bfd506d9866b587fd86790cf8445266a41b7f92c627fc5b21ec7d92aba6db
|
||||
psych (5.2.6) sha256=814328aa5dcb6d604d32126a20bc1cbcf05521a5b49dbb1a8b30a07e580f316e
|
||||
psych (5.3.0) sha256=8976a41ae29ea38c88356e862629345290347e3bfe27caf654f7c5a920e95eeb
|
||||
public_suffix (6.0.2) sha256=bfa7cd5108066f8c9602e0d6d4114999a5df5839a63149d3e8b0f9c1d3558394
|
||||
puffing-billy (4.0.2) sha256=c983610f737e3847301f64cf41dccd9dcedcac9219af54d6eaf8178cbe48b3cc
|
||||
puma (7.1.0) sha256=e45c10cb124f224d448c98db653a75499794edbecadc440ad616cf50f2fd49dd
|
||||
@@ -2171,14 +2173,14 @@ CHECKSUMS
|
||||
rails-controller-testing (1.0.5) sha256=741448db59366073e86fc965ba403f881c636b79a2c39a48d0486f2607182e94
|
||||
rails-dom-testing (2.3.0) sha256=8acc7953a7b911ca44588bf08737bc16719f431a1cc3091a292bca7317925c1d
|
||||
rails-html-sanitizer (1.6.2) sha256=35fce2ca8242da8775c83b6ba9c1bcaad6751d9eb73c1abaa8403475ab89a560
|
||||
rails-i18n (8.0.2) sha256=624f31f652f85fd28024a521fea786223c4653cc83a468fbe3d410cb40f738af
|
||||
rails-i18n (8.1.0) sha256=52d5fd6c0abef28d84223cc05647f6ae0fd552637a1ede92deee9545755b6cf3
|
||||
railties (8.0.4) sha256=8203d853dcffab4abcdd05c193f101676a92068075464694790f6d8f72d5cb47
|
||||
rainbow (3.1.1) sha256=039491aa3a89f42efa1d6dec2fc4e62ede96eb6acd95e52f1ad581182b79bc6a
|
||||
rake (13.3.1) sha256=8c9e89d09f66a26a01264e7e3480ec0607f0c497a861ef16063604b1b08eb19c
|
||||
rake-compiler-dock (1.9.1) sha256=e73720a29aba9c114728ce39cc0d8eef69ba61d88e7978c57bac171724cd4d53
|
||||
rake-compiler-dock (1.10.0) sha256=dd62ee19df2a185a3315697e560cfa8cc9129901332152851e023fab0e94bf11
|
||||
rb-fsevent (0.11.2) sha256=43900b972e7301d6570f64b850a5aa67833ee7d87b458ee92805d56b7318aefe
|
||||
rb-inotify (0.11.1) sha256=a0a700441239b0ff18eb65e3866236cd78613d6b9f78fea1f9ac47a85e47be6e
|
||||
rb_sys (0.9.117) sha256=755feaf6c640baceca7a9362dfb0ae87ff4ff16e3566d9ef86533896eb85cb59
|
||||
rb_sys (0.9.119) sha256=64393fa148e402e1b79b64496d2aabfc7df79da6b822b8bb48dc1141eaf40b4b
|
||||
rbtrace (0.5.2) sha256=a2d7d222ab81363aaa0e91337ddbf70df834885d401a80ea0339d86c71f31895
|
||||
rbtree3 (0.7.1) sha256=ab60ead728a5491b70df4f4065e180b18dbab5319f817ce1dbf5dd906f26d8ba
|
||||
rdoc (6.15.1) sha256=28bfac73cd8b226a8079f53a564ceaccdb5b4480e34335100001570ddb1a481a
|
||||
@@ -2211,7 +2213,7 @@ CHECKSUMS
|
||||
rubocop-factory_bot (2.28.0) sha256=4b17fc02124444173317e131759d195b0d762844a71a29fe8139c1105d92f0cb
|
||||
rubocop-openproject (0.3.0) sha256=9554496e7ef0a2cf65dc2b32bee1bfa223b4f9ae058a5c603489d34e9001a828
|
||||
rubocop-performance (1.26.1) sha256=cd19b936ff196df85829d264b522fd4f98b6c89ad271fa52744a8c11b8f71834
|
||||
rubocop-rails (2.33.3) sha256=848c011b58c1292f3066246c9eb18abf6ffcfbce28bc57c4ab888bbec79af74b
|
||||
rubocop-rails (2.34.2) sha256=10ff246ee48b25ffeabddc5fee86d159d690bb3c7b9105755a9c7508a11d6e22
|
||||
rubocop-rspec (3.8.0) sha256=28440dccb3f223a9938ca1f946bd3438275b8c6c156dab909e2cb8bc424cab33
|
||||
rubocop-rspec_rails (2.32.0) sha256=4a0d641c72f6ebb957534f539d9d0a62c47abd8ce0d0aeee1ef4701e892a9100
|
||||
ruby-duration (3.2.3) sha256=eb3d13b1df85067a015a8fb2ed8f1eec842a3b721e47c9b6fd74d2f356069784
|
||||
@@ -2246,7 +2248,7 @@ CHECKSUMS
|
||||
stackprof (0.2.27) sha256=aff6d28656c852e74cf632cc2046f849033dc1dedffe7cb8c030d61b5745e80c
|
||||
store_attribute (2.0.1) sha256=643655e4800655b58379e8b01bd524f5586093a9d88698483ac8762cda25b5ab
|
||||
stringex (2.8.6) sha256=c7b382d2b2a47a1e1646f256df201c48d487d6296fbb289d76802f67f5e929c4
|
||||
stringio (3.1.8) sha256=99c43c3a9302843cca223fd985bfc503dd50a4b1723d3e4a9eb1d9c37d99e4ec
|
||||
stringio (3.1.9) sha256=c111af13d3a73eab96a3bc2655ecf93788d13d28cb8e25c1dcbff89ace885121
|
||||
structured_warnings (0.5.0) sha256=864aca5a4d6b63cd3a948f9dcd7f5498af1cf42bcf4fd75e2c315b7d77a30583
|
||||
svg-graph (2.2.2) sha256=f928866403055e6539afdfdab5f6268d108b2abc9f002e0fc51b16511809513a
|
||||
swd (2.0.3) sha256=4cdbe2a4246c19f093fce22e967ec3ebdd4657d37673672e621bf0c7eb770655
|
||||
@@ -2284,7 +2286,7 @@ CHECKSUMS
|
||||
webauthn (3.4.3) sha256=9be6f5f838f3405b0226e560aa40b67cc8c15ec9154509b997caa7ec9a05e1fc
|
||||
webfinger (2.1.3) sha256=567a52bde77fb38ca6b67e55db755f988766ec4651c1d24916a65aa70540695c
|
||||
webmock (3.26.1) sha256=4f696fb57c90a827c20aadb2d4f9058bbff10f7f043bd0d4c3f58791143b1cd7
|
||||
webrick (1.9.1) sha256=b42d3c94f166f3fb73d87e9b359def9b5836c426fc8beacf38f2184a21b2a989
|
||||
webrick (1.9.2) sha256=beb4a15fc474defed24a3bda4ffd88a490d517c9e4e6118c3edce59e45864131
|
||||
websocket (1.2.11) sha256=b7e7a74e2410b5e85c25858b26b3322f29161e300935f70a0e0d3c35e0462737
|
||||
websocket-driver (0.8.0) sha256=ed0dba4b943c22f17f9a734817e808bc84cdce6a7e22045f5315aa57676d4962
|
||||
websocket-extensions (0.1.5) sha256=1c6ba63092cda343eb53fc657110c71c754c56484aad42578495227d717a8241
|
||||
|
||||
+1
-1
@@ -8,7 +8,7 @@ gem 'omniauth-openid_connect-providers',
|
||||
|
||||
gem 'omniauth-openid-connect',
|
||||
git: 'https://github.com/opf/omniauth-openid-connect.git',
|
||||
ref: 'f0c1ecdb26e39017a9e929af75a166c772d960bb'
|
||||
ref: '825d06235b64f6bc872bba709f1c2d48fd5cede4'
|
||||
|
||||
group :opf_plugins do
|
||||
# included so that engines can reference OpenProject::Version
|
||||
|
||||
+4
-1
@@ -46,12 +46,15 @@ See COPYRIGHT and LICENSE files for more details.
|
||||
) do |tree_view|
|
||||
parent = @hierarchy_item.parent
|
||||
descendants = hierarchy_service.get_descendants(item: @hierarchy_item).value!
|
||||
item_formatter = standard_tree_view_item_formatter
|
||||
label_fn = lambda { |item| item_formatter.format(item:) }
|
||||
|
||||
item_options = {
|
||||
select_variant: :single,
|
||||
expanded: [parent],
|
||||
current: @hierarchy_item,
|
||||
disabled: [parent] + descendants
|
||||
disabled: [parent] + descendants,
|
||||
label_fn:
|
||||
}
|
||||
|
||||
populate_tree_view(tree_view, @custom_field, show_root: true, item_options:)
|
||||
|
||||
@@ -49,6 +49,7 @@ See COPYRIGHT and LICENSE files for more details.
|
||||
end
|
||||
end
|
||||
|
||||
label_addition = secondary_text
|
||||
if label_addition.present?
|
||||
item_information.with_column(mr: 2) do
|
||||
render(Primer::Beta::Text.new(color: :subtle)) { label_addition }
|
||||
|
||||
@@ -55,6 +55,15 @@ module Admin
|
||||
self.class.menu_id(item: model)
|
||||
end
|
||||
|
||||
def secondary_text
|
||||
::CustomFields::Hierarchy::HierarchicalItemFormatter
|
||||
.new(label: false,
|
||||
number_length_limit: 42,
|
||||
number_integer_digit_limit: 40,
|
||||
number_precision: 40)
|
||||
.format(item: model)
|
||||
end
|
||||
|
||||
def item_link
|
||||
if project_custom_field_context?
|
||||
admin_settings_project_custom_field_item_path(custom_field_id, model)
|
||||
|
||||
@@ -30,10 +30,12 @@ See COPYRIGHT and LICENSE files for more details.
|
||||
|
||||
<%=
|
||||
render(Primer::Alpha::TreeView.new(node_variant: :anchor)) do |tree_view|
|
||||
item_formatter = standard_tree_view_item_formatter
|
||||
item_options = {
|
||||
href_fn: lambda { |item| href_for(item) },
|
||||
expanded: [@active_item, @active_item.parent],
|
||||
current: @active_item
|
||||
current: @active_item,
|
||||
label_fn: lambda { |item| item_formatter.format(item:) }
|
||||
}
|
||||
|
||||
populate_tree_view(tree_view, @custom_field, item_options:)
|
||||
|
||||
@@ -38,7 +38,8 @@ module Users
|
||||
}
|
||||
attribute :firstname
|
||||
attribute :lastname
|
||||
attribute :mail
|
||||
attribute :mail,
|
||||
writable: ->(*) { model.new_record? || model.id == user.id || user.admin? }
|
||||
attribute :admin,
|
||||
writable: ->(*) { user.admin? && model.id != user.id }
|
||||
attribute :language
|
||||
|
||||
@@ -29,12 +29,19 @@
|
||||
#++
|
||||
|
||||
class APIDocsController < ApplicationController
|
||||
before_action :require_login
|
||||
before_action :require_login,
|
||||
:check_if_api_docs_enabled
|
||||
no_authorization_required! :index
|
||||
|
||||
helper API::APIDocsHelper
|
||||
|
||||
def index
|
||||
render locals: { turbo_opt_out: true }
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def check_if_api_docs_enabled
|
||||
render_404 unless Setting.apiv3_docs_enabled?
|
||||
end
|
||||
end
|
||||
|
||||
@@ -0,0 +1,86 @@
|
||||
# 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 OAuthMetadataController < ApplicationController
|
||||
no_authorization_required! :authorization_server, :protected_resource
|
||||
|
||||
skip_before_action :check_if_login_required
|
||||
|
||||
def authorization_server
|
||||
grant_types = Doorkeeper.configuration.grant_flows
|
||||
grant_types += ["refresh_token"] if Doorkeeper.configuration.refresh_token_enabled?
|
||||
render json: {
|
||||
issuer: local_issuer,
|
||||
authorization_endpoint: oauth_authorization_url,
|
||||
token_endpoint: oauth_token_url,
|
||||
introspection_endpoint: oauth_introspect_url,
|
||||
scopes_supported: Doorkeeper.configuration.scopes.to_a,
|
||||
response_types_supported: response_types(Doorkeeper.configuration.grant_flows),
|
||||
grant_types_supported: grant_types,
|
||||
service_documentation: OpenProject::Static::Links.url_for(:oauth_applications)
|
||||
}
|
||||
end
|
||||
|
||||
def protected_resource
|
||||
render json: {
|
||||
resource: resource_url,
|
||||
resource_name: Setting.app_title,
|
||||
authorization_servers:,
|
||||
scopes_supported: OpenProject::Authentication::Scope.values,
|
||||
bearer_methods_supported: ["header"],
|
||||
resource_documentation: OpenProject::Static::Links.url_for(:api_docs)
|
||||
}
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def response_types(grant_types)
|
||||
grant_types.filter_map do |grant|
|
||||
case grant
|
||||
when "authorization_code"
|
||||
"code"
|
||||
when "implicit"
|
||||
"token"
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
def authorization_servers
|
||||
OpenIDConnect::Provider.where(available: true).map(&:issuer) + [local_issuer]
|
||||
end
|
||||
|
||||
def instance_base_url
|
||||
"http#{'s' if request.ssl?}://#{Setting.host_name}"
|
||||
end
|
||||
|
||||
alias resource_url instance_base_url
|
||||
|
||||
alias local_issuer instance_base_url
|
||||
end
|
||||
@@ -37,6 +37,7 @@ class LoginForm < ApplicationForm
|
||||
|
||||
f.text_field(
|
||||
name: :username,
|
||||
id: "username#{@id_suffix}",
|
||||
value: @username,
|
||||
autofocus: @username.blank?,
|
||||
label: User.human_attribute_name(:login),
|
||||
@@ -46,6 +47,7 @@ class LoginForm < ApplicationForm
|
||||
|
||||
f.text_field(
|
||||
name: :password,
|
||||
id: "password#{@id_suffix}",
|
||||
type: :password,
|
||||
autofocus: @username.present?,
|
||||
label: User.human_attribute_name(:password),
|
||||
@@ -55,6 +57,7 @@ class LoginForm < ApplicationForm
|
||||
|
||||
if Setting::Autologin.enabled?
|
||||
f.check_box name: "autologin",
|
||||
id: "autologin#{@id_suffix}",
|
||||
checked: false,
|
||||
value: 1,
|
||||
label: I18n.t("users.autologins.prompt",
|
||||
@@ -85,9 +88,10 @@ class LoginForm < ApplicationForm
|
||||
end
|
||||
end
|
||||
|
||||
def initialize(back_url: nil, username: nil)
|
||||
def initialize(back_url: nil, username: nil, id_suffix: nil)
|
||||
super()
|
||||
@back_url = back_url
|
||||
@username = username
|
||||
@id_suffix = id_suffix
|
||||
end
|
||||
end
|
||||
|
||||
@@ -43,6 +43,12 @@ module CustomFieldHierarchyTreeViewHelper
|
||||
add_sub_tree(tree_view, hierarchy_hash, item_options)
|
||||
end
|
||||
|
||||
def standard_tree_view_item_formatter
|
||||
::CustomFields::Hierarchy::HierarchicalItemFormatter.new(number_integer_digit_limit: 8,
|
||||
number_length_limit: 9,
|
||||
number_precision: 4)
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def add_sub_tree(tree, hierarchy_hash, item_options)
|
||||
|
||||
@@ -29,6 +29,8 @@
|
||||
#++
|
||||
|
||||
module NumberFormatHelper
|
||||
include ActionView::Helpers::NumberHelper
|
||||
|
||||
def number_with_limit(number, opts = {})
|
||||
init_formatting_options(opts) => { digits:, precision:, length_limit: }
|
||||
|
||||
|
||||
@@ -37,8 +37,9 @@ class CustomField::Hierarchy::Item < ApplicationRecord
|
||||
|
||||
scope :including_children, -> { includes(children: :children) }
|
||||
|
||||
def to_s = suffix.empty? ? label : "#{label} #{suffix}"
|
||||
def to_s = formatter.format(item: self)
|
||||
|
||||
# @deprecated Use [CustomFields::Hierarchy::HierarchicalItemFormatter] instead.
|
||||
def ancestry_path(include_shorts_and_weights: false)
|
||||
path = self_and_ancestors.filter_map(&:label).reverse.join(" / ")
|
||||
|
||||
@@ -47,9 +48,16 @@ class CustomField::Hierarchy::Item < ApplicationRecord
|
||||
suffix.empty? ? path : "#{path} #{suffix}"
|
||||
end
|
||||
|
||||
# @deprecated Use [CustomFields::Hierarchy::HierarchicalItemFormatter] instead.
|
||||
def suffix
|
||||
return "" if short.nil? && weight.nil?
|
||||
|
||||
"(#{short || weight})"
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def formatter
|
||||
CustomFields::Hierarchy::HierarchicalItemFormatter.default
|
||||
end
|
||||
end
|
||||
|
||||
@@ -62,8 +62,11 @@ module Exports::PDF::Common::Common
|
||||
mime_type: "application/pdf"
|
||||
end
|
||||
|
||||
def error(message)
|
||||
raise ::Exports::ExportError.new message
|
||||
def error(pdf_error, custom_message = nil)
|
||||
message = custom_message || I18n.t(:error_pdf_failed_to_export, error: pdf_error.message)
|
||||
result = ::Exports::ExportError.new message
|
||||
result.set_backtrace pdf_error.backtrace
|
||||
raise result
|
||||
end
|
||||
|
||||
def with_padding(opts, &)
|
||||
|
||||
@@ -59,15 +59,27 @@ class Exports::PDF::Common::View
|
||||
end
|
||||
|
||||
def self.valid_custom_font?
|
||||
CustomStyle.current.present? &&
|
||||
CustomStyle.current.export_font_regular.present? &&
|
||||
CustomStyle.current.export_font_regular.local_file.present?
|
||||
cs = CustomStyle.current
|
||||
return false if cs.blank?
|
||||
|
||||
valid_custom_font_cut?(cs.export_font_regular) &&
|
||||
valid_optional_custom_font_cut?(cs.export_font_bold) &&
|
||||
valid_optional_custom_font_cut?(cs.export_font_italic) &&
|
||||
valid_optional_custom_font_cut?(cs.export_font_bold_italic)
|
||||
# Something in the remote storage failed. Log, but do not stop PDF generation
|
||||
rescue StandardError => e
|
||||
Rails.logger.error "Failed to apply custom PDF font to export: #{e.message}:\n#{e.backtrace.join("\n")}"
|
||||
false
|
||||
end
|
||||
|
||||
def self.valid_custom_font_cut?(cut)
|
||||
cut.present? && cut.local_file.present?
|
||||
end
|
||||
|
||||
def self.valid_optional_custom_font_cut?(cut)
|
||||
cut.blank? || cut.local_file.present?
|
||||
end
|
||||
|
||||
def options
|
||||
@options ||= {}
|
||||
end
|
||||
|
||||
@@ -65,8 +65,7 @@ module Exports::PDF
|
||||
render_demo
|
||||
success(pdf.render)
|
||||
rescue StandardError => e
|
||||
Rails.logger.error "Failed to generate demo PDF: #{e.message}:\n#{e.backtrace.join("\n")}"
|
||||
error(I18n.t(:error_pdf_failed_to_export, error: e.message))
|
||||
error(e)
|
||||
ensure
|
||||
delete_all_resized_images
|
||||
end
|
||||
|
||||
@@ -68,8 +68,7 @@ class Project::PDFExport::ProjectInitiation < Exports::Exporter
|
||||
render_doc
|
||||
success(pdf.render)
|
||||
rescue StandardError => e
|
||||
Rails.logger.error "Failed to generate project creation PDF: #{e.message}:\n#{e.backtrace.join("\n")}"
|
||||
error(I18n.t(:error_pdf_failed_to_export, error: e.message))
|
||||
error(e)
|
||||
ensure
|
||||
delete_all_resized_images
|
||||
end
|
||||
|
||||
@@ -60,8 +60,7 @@ module Projects::Exports
|
||||
file = render_pdf(all_projects)
|
||||
success(file)
|
||||
rescue StandardError => e
|
||||
Rails.logger.error "Failed to generate PDF export: #{e.message}:\n#{e.backtrace.join("\n")}"
|
||||
error(I18n.t(:error_pdf_failed_to_export, error: e.message))
|
||||
error(e)
|
||||
end
|
||||
|
||||
def title
|
||||
|
||||
+5
-1
@@ -90,6 +90,10 @@ class User < Principal
|
||||
inverse_of: :user,
|
||||
dependent: :destroy
|
||||
|
||||
has_many :recurring_meeting_interim_responses,
|
||||
inverse_of: :user,
|
||||
dependent: :destroy
|
||||
|
||||
has_many :notification_settings,
|
||||
dependent: :destroy
|
||||
|
||||
@@ -739,7 +743,7 @@ class User < Principal
|
||||
|
||||
def self.register_failed_login_attempt_if_user_exists_for(login)
|
||||
user = User.find_by_login(login)
|
||||
user.log_failed_login if user.present?
|
||||
user.presence&.log_failed_login
|
||||
nil
|
||||
end
|
||||
|
||||
|
||||
@@ -59,8 +59,7 @@ class WorkPackage::PDFExport::DocumentGenerator < Exports::Exporter
|
||||
render_doc
|
||||
success(pdf.render)
|
||||
rescue StandardError => e
|
||||
Rails.logger.error "Failed to generate PDF export: #{e.message}:\n#{e.backtrace.join("\n")}"
|
||||
error(I18n.t(:error_pdf_failed_to_export, error: e.message))
|
||||
error(e)
|
||||
ensure
|
||||
delete_all_resized_images
|
||||
end
|
||||
|
||||
@@ -83,24 +83,17 @@ class WorkPackage::PDFExport::WorkPackageListToPdf < WorkPackage::Exports::Query
|
||||
end
|
||||
|
||||
def export!
|
||||
handle_export_errors do
|
||||
success(render_work_packages(query.results.work_packages))
|
||||
end
|
||||
success(render_work_packages(query.results.work_packages))
|
||||
rescue Prawn::Errors::CannotFit => e
|
||||
error(e, I18n.t(:error_pdf_export_too_many_columns))
|
||||
rescue Exports::PDF::Components::Gantt::InvalidDateRangeError => e
|
||||
error(e, e.message)
|
||||
rescue StandardError => e
|
||||
error(e)
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def handle_export_errors
|
||||
yield
|
||||
rescue Prawn::Errors::CannotFit
|
||||
error(I18n.t(:error_pdf_export_too_many_columns))
|
||||
rescue Exports::PDF::Components::Gantt::InvalidDateRangeError => e
|
||||
error(e.message)
|
||||
rescue StandardError => e
|
||||
Rails.logger.error "Failed to generate PDF export: #{e.message}:\n#{e.backtrace.join("\n")}"
|
||||
error(I18n.t(:error_pdf_failed_to_export, error: e.message))
|
||||
end
|
||||
|
||||
def setup_page!
|
||||
self.pdf = get_pdf
|
||||
|
||||
|
||||
@@ -59,8 +59,7 @@ class WorkPackage::PDFExport::WorkPackageToPdf < Exports::Exporter
|
||||
render_work_package
|
||||
success(pdf.render)
|
||||
rescue StandardError => e
|
||||
Rails.logger.error "Failed to generate PDF export: #{e.message}:\n#{e.backtrace.join("\n")}"
|
||||
error(I18n.t(:error_pdf_failed_to_export, error: e.message))
|
||||
error(e)
|
||||
ensure
|
||||
delete_all_resized_images
|
||||
end
|
||||
|
||||
@@ -33,7 +33,7 @@ module WorkPackageTypes
|
||||
class TokenPropertyMapper
|
||||
STRING_OR_NIL = ->(v) { v&.to_s }
|
||||
ARRAY = ->(v) { v.compact.presence&.join(", ") }
|
||||
DATE = ->(v) { v&.strftime("%Y-%m-%d") }
|
||||
DATE = ->(v) { v&.strftime(Setting.date_format || "%Y-%m-%d") }
|
||||
DURATION = ->(v) { DurationConverter.output(v) }
|
||||
|
||||
class << self
|
||||
@@ -120,11 +120,13 @@ module WorkPackageTypes
|
||||
end
|
||||
|
||||
def tokenize(custom_field_scope, prefix = nil)
|
||||
custom_field_scope.pluck(:name, :id, :multi_value).map do |name, id, multiple|
|
||||
custom_field_scope.pluck(:name, :id, :field_format, :multi_value).map do |name, id, format, multiple|
|
||||
formatter = if multiple
|
||||
ARRAY
|
||||
elsif format == "date"
|
||||
DATE
|
||||
else
|
||||
->(v) { v.is_a?(Symbol) ? v : v&.to_s }
|
||||
->(v) { v.is_a?(Symbol) ? v : STRING_OR_NIL.call(v) }
|
||||
end
|
||||
AttributeToken.new(
|
||||
:"#{prefix}custom_field_#{id}",
|
||||
|
||||
@@ -0,0 +1,106 @@
|
||||
# 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.
|
||||
#++
|
||||
|
||||
module CustomFields
|
||||
module Hierarchy
|
||||
class HierarchicalItemFormatter
|
||||
include NumberFormatHelper
|
||||
|
||||
class << self
|
||||
def default
|
||||
@default ||= new
|
||||
end
|
||||
end
|
||||
|
||||
# @param [Boolean] path Show the full item ancestor path if true
|
||||
# @param [Boolean] label Show the item label if true
|
||||
# @param [Boolean] suffix Show the item short or weight if true
|
||||
# @param [Boolean] suffix_parentheses Wrap suffix in parentheses.
|
||||
# @param [Integer] number_length_limit If formatting numbers, restrict the whole length of the number to the
|
||||
# given limit before falling back to scientific notation.
|
||||
# @param [Integer] number_integer_digit_limit If formatting numbers, restrict the integer part of the number to
|
||||
# the given limit before falling back to scientific notation.
|
||||
# @param [Integer] number_precision If formatting numbers, round to the given precision.
|
||||
def initialize(path: false,
|
||||
label: true,
|
||||
suffix: true,
|
||||
suffix_parentheses: true,
|
||||
number_length_limit: 9,
|
||||
number_integer_digit_limit: 8,
|
||||
number_precision: 4)
|
||||
@path = path
|
||||
@label = label
|
||||
@suffix = suffix
|
||||
@suffix_parentheses = suffix_parentheses
|
||||
@number_length_limit = number_length_limit
|
||||
@number_integer_digit_limit = number_integer_digit_limit
|
||||
@number_precision = number_precision
|
||||
end
|
||||
|
||||
def format(item:)
|
||||
path = []
|
||||
path << ancestors(item) if @path
|
||||
path << item.label if @label
|
||||
|
||||
str_parts = []
|
||||
str_parts << path.join(" / ") if path.present?
|
||||
|
||||
if @suffix
|
||||
suffix = format_suffix(item)
|
||||
str_parts << suffix if suffix.present?
|
||||
end
|
||||
|
||||
str_parts.join(" ")
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def ancestors(item) = persistence_service.get_ancestors(item:).value!.filter_map(&:label)
|
||||
|
||||
def format_suffix(item)
|
||||
return "" if item.short.nil? && item.weight.nil?
|
||||
|
||||
opts = {
|
||||
length_limit: @number_length_limit,
|
||||
digits: @number_integer_digit_limit,
|
||||
precision: @number_precision
|
||||
}
|
||||
|
||||
str = item.short.presence || number_with_limit(item.weight, opts)
|
||||
|
||||
@suffix_parentheses ? "(#{str})" : str
|
||||
end
|
||||
|
||||
def persistence_service
|
||||
@persistence_service ||= HierarchicalItemService.new
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
@@ -115,6 +115,14 @@ module CustomFields
|
||||
Success(item.self_and_ancestors.reverse)
|
||||
end
|
||||
|
||||
# Gets all nodes in a tree from the item/node back to the root without the item/node itself.
|
||||
# Ordered from root to leaf
|
||||
# @param item [CustomField::Hierarchy::Item] the parent of the node
|
||||
# @return [Success(Array<CustomField::Hierarchy::Item>)]
|
||||
def get_ancestors(item:)
|
||||
Success(item.ancestors.reverse)
|
||||
end
|
||||
|
||||
# Gets all descendant nodes in a tree starting from the item/node.
|
||||
# @param item [CustomField::Hierarchy::Item] the node
|
||||
# @param include_self [Boolean] flag
|
||||
|
||||
@@ -41,6 +41,7 @@ module IncomingEmails
|
||||
# Registry for mail handlers
|
||||
def self.handlers
|
||||
@handlers ||= [
|
||||
IncomingEmails::Handlers::MeetingResponse,
|
||||
IncomingEmails::Handlers::MessageReply,
|
||||
IncomingEmails::Handlers::WorkPackage
|
||||
]
|
||||
@@ -202,7 +203,7 @@ module IncomingEmails
|
||||
end
|
||||
|
||||
def ignore_mail?
|
||||
mail_from_system? || ignored_by_header? || ignored_user? || mail_with_ics_attachment?
|
||||
mail_from_system? || ignored_by_header? || ignored_user?
|
||||
end
|
||||
|
||||
def mail_from_system?
|
||||
@@ -250,16 +251,6 @@ module IncomingEmails
|
||||
end
|
||||
end
|
||||
|
||||
def mail_with_ics_attachment?
|
||||
if email.attachments.any? { |a| a.content_type.start_with?("text/calendar") } ||
|
||||
(email.multipart? && email.parts.any? { |part| part.content_type.start_with?("text/calendar") })
|
||||
log "ignoring email with calendar attachment from [#{sender_email}]"
|
||||
true
|
||||
else
|
||||
false
|
||||
end
|
||||
end
|
||||
|
||||
# Find a matching object reference in the mail's references header.
|
||||
# We set this header in outgoing emails to include an encoded reference to the object
|
||||
def object_reference_from_header
|
||||
|
||||
@@ -0,0 +1,60 @@
|
||||
# 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.
|
||||
#++
|
||||
module IncomingEmails::Handlers
|
||||
class MeetingResponse < Base
|
||||
# Override in subclasses to determine if this handler can process the email
|
||||
def self.handles?(email, **)
|
||||
email.attachments.any? { |a| a.content_type.start_with?("text/calendar") } ||
|
||||
(email.multipart? && email.parts.any? { |part| part.content_type.start_with?("text/calendar") })
|
||||
end
|
||||
|
||||
# Override in subclasses to process the email
|
||||
def process
|
||||
ical_string = extract_ical_string
|
||||
if ical_string.blank?
|
||||
return ServiceResult.failure(message: "No iCalendar data found in email from [#{user.mail}]")
|
||||
end
|
||||
|
||||
AllMeetings::HandleICalResponseService.new(user: user).call(ical_string: ical_string)
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def extract_ical_string
|
||||
attachment = email.attachments.find { |a| a.content_type.start_with?("text/calendar") }
|
||||
return attachment.decoded if attachment
|
||||
|
||||
calendar_part = email.parts.find { |part| part.content_type.start_with?("text/calendar") }
|
||||
if calendar_part
|
||||
Redmine::CodesetUtil.to_utf8(calendar_part.body.decoded, calendar_part.charset)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
@@ -0,0 +1,73 @@
|
||||
# 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 JsonSchemaLoader
|
||||
def initialize(base_path: "docs/api/apiv3/components/schemas")
|
||||
@base_path = base_path
|
||||
end
|
||||
|
||||
def load(schema_name)
|
||||
load_file("#{@base_path}/#{schema_name}.yml")
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def load_file(file_name)
|
||||
return schema_cache.fetch(file_name) if schema_cache.key?(file_name)
|
||||
|
||||
schema = YAML.load_file(file_name).deep_symbolize_keys
|
||||
schema = resolve_references(schema, file_name)
|
||||
schema_cache[file_name] = schema
|
||||
end
|
||||
|
||||
def resolve_references(schema, file_name)
|
||||
if schema.key?(:$ref)
|
||||
ref_file = File.join(File.dirname(file_name), schema.fetch(:$ref))
|
||||
return load_file(ref_file)
|
||||
end
|
||||
|
||||
schema.to_h do |key, value|
|
||||
next [key, resolve_references(value, file_name)] if value.is_a?(Hash)
|
||||
|
||||
if value.is_a?(Array)
|
||||
next [
|
||||
key,
|
||||
value.map { |v| v.is_a?(Hash) ? resolve_references(v, file_name) : v }
|
||||
]
|
||||
end
|
||||
|
||||
[key, value]
|
||||
end
|
||||
end
|
||||
|
||||
def schema_cache
|
||||
@schema_cache ||= {}
|
||||
end
|
||||
end
|
||||
@@ -33,7 +33,14 @@ See COPYRIGHT and LICENSE files for more details.
|
||||
url: { controller: "/account", action: "login" },
|
||||
method: :post
|
||||
) do |form_builder|
|
||||
render(LoginForm.new(form_builder, back_url: back_url_to_current_page, username: params[:username]))
|
||||
render(
|
||||
LoginForm.new(
|
||||
form_builder,
|
||||
back_url: back_url_to_current_page,
|
||||
username: params[:username],
|
||||
id_suffix: "-pulldown"
|
||||
)
|
||||
)
|
||||
end
|
||||
%>
|
||||
|
||||
|
||||
@@ -1,9 +1,24 @@
|
||||
<%= nonced_javascript_include_tag "openapi-explorer.min.js" %>
|
||||
<%= nonced_javascript_include_tag variable_asset_path("openapi-explorer.js"), skip_pipeline: true %>
|
||||
|
||||
<%= content_tag(
|
||||
"openapi-explorer",
|
||||
"",
|
||||
"spec-url": api_v3_paths.api_spec,
|
||||
"server-url": api_v3_paths.root_path,
|
||||
"nav-bg-color": color_by_variable("main-menu-bg-color")
|
||||
) %>
|
||||
<%= nonced_javascript_tag do %>
|
||||
(function() {
|
||||
// set openapi-explorer parent width and height explicitly to prevent them being set to 100vw/100vh by the script
|
||||
// which leads to double scroll bars
|
||||
// https://github.com/Authress-Engineering/openapi-explorer/blob/49d4d32de6fd7b14a8f5f95fbfefa8cd72e72587/src/openapi-explorer.js#L191-L196
|
||||
const contentBody = document.getElementById('content-body');
|
||||
if (contentBody) {
|
||||
contentBody.style.width = 'auto';
|
||||
contentBody.style.height = 'auto';
|
||||
}
|
||||
})();
|
||||
<% end %>
|
||||
|
||||
<%=
|
||||
content_tag(
|
||||
"openapi-explorer",
|
||||
"",
|
||||
"spec-url": api_v3_paths.api_spec,
|
||||
"server-url": api_v3_paths.root_path,
|
||||
"nav-bg-color": color_by_variable("main-menu-bg-color")
|
||||
)
|
||||
%>
|
||||
|
||||
@@ -22,6 +22,7 @@
|
||||
<div class="form--field -required">
|
||||
<%= f.text_field :mail,
|
||||
required: true,
|
||||
disabled: !(@user.new_record? || User.current.admin?),
|
||||
container_class: "-middle" %>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -49,14 +49,6 @@ OpenProject::FeatureDecisions.add :calculated_value_project_attribute,
|
||||
description: "Allows the use of calculated values as a project attribute.",
|
||||
force_active: true
|
||||
|
||||
OpenProject::FeatureDecisions.add :oidc_group_sync,
|
||||
description: "Allows to synchronize groups from OpenID Connect providers",
|
||||
force_active: true
|
||||
|
||||
OpenProject::FeatureDecisions.add :scim_api,
|
||||
description: "Enables SCIM API.",
|
||||
force_active: true
|
||||
|
||||
OpenProject::FeatureDecisions.add :beta_widgets,
|
||||
description: "Enables BETA versions of widgets."
|
||||
|
||||
|
||||
@@ -588,7 +588,7 @@ Redmine::MenuManager.map :admin_menu do |menu|
|
||||
|
||||
menu.push :scim_clients,
|
||||
{ controller: "/admin/scim_clients", action: "index" },
|
||||
if: ->(_) { User.current.admin? && OpenProject::FeatureDecisions.scim_api_active? },
|
||||
if: ->(_) { User.current.admin? },
|
||||
parent: :authentication,
|
||||
caption: ScimClient.model_name.human(count: 2),
|
||||
enterprise_feature: "scim_api"
|
||||
|
||||
@@ -43,9 +43,6 @@ Rails.application.config.to_prepare do
|
||||
)
|
||||
return handle_scim_error(error)
|
||||
end
|
||||
if !OpenProject::FeatureDecisions.scim_api_active?
|
||||
return handle_scim_error(Scimitar::AuthenticationError.new)
|
||||
end
|
||||
|
||||
warden = request.env["warden"]
|
||||
user = warden.authenticate(scope: :scim_v2)
|
||||
|
||||
@@ -1512,7 +1512,8 @@ af:
|
||||
not_a_datetime: "is not a valid date time."
|
||||
not_a_number: "is not a number."
|
||||
not_allowed: "is invalid because of missing permissions."
|
||||
not_json: "is not a valid JSON object."
|
||||
not_json: "is not parseable as JSON."
|
||||
not_json_object: "is not a JSON object."
|
||||
not_an_integer: "is not an integer."
|
||||
not_an_iso_date: "is not a valid date. Required format: YYYY-MM-DD."
|
||||
not_same_project: "doesn't belong to the same project."
|
||||
@@ -2169,6 +2170,7 @@ af:
|
||||
button_print: "Print"
|
||||
button_quote: "Haal aan"
|
||||
button_remove: Remove
|
||||
button_remove_permanently: "Remove permanently"
|
||||
button_remove_reminder: "Remove reminder"
|
||||
button_rename: "Hernoem"
|
||||
button_replace: "Replace"
|
||||
@@ -4723,6 +4725,7 @@ af:
|
||||
Note: if enabled, this will display a badge with your installation status in the <a href="%{information_panel_path}">%{information_panel_label}</a> administration panel, and on the home page. It is displayed to administrators only. <br/> The badge will check your current OpenProject version against the official OpenProject release database to alert you of any updates or known vulnerabilities. For more information on what the check provides, what data is needed to provide available updates, and how to disable this check, please visit <a href="%{more_info_url}">the configuration documentation</a>.
|
||||
text_own_membership_delete_confirmation: "You are about to remove some or all of your permissions and may no longer be able to edit this project after that.\nAre you sure you want to continue?"
|
||||
text_permanent_delete_confirmation_checkbox_label: "I understand that this deletion cannot be reversed"
|
||||
text_permanent_remove_confirmation_checkbox_label: "I understand that this removal cannot be reversed"
|
||||
text_plugin_assets_writable: "Plugin assets directory writable"
|
||||
text_powered_by: "Powered by %{link}"
|
||||
text_project_identifier_info: "Only lower case letters (a-z), numbers, dashes and underscores are allowed, must start with a lower case letter."
|
||||
|
||||
@@ -1548,7 +1548,8 @@ ar:
|
||||
not_a_datetime: "is not a valid date time."
|
||||
not_a_number: "ليس رقماً."
|
||||
not_allowed: "is invalid because of missing permissions."
|
||||
not_json: "is not a valid JSON object."
|
||||
not_json: "is not parseable as JSON."
|
||||
not_json_object: "is not a JSON object."
|
||||
not_an_integer: "ليس عدداً صحيحاً."
|
||||
not_an_iso_date: "ليس تاريخًا صالحًا. الشكل المطلوب: YYYY-MM-DD."
|
||||
not_same_project: "لا ينتمي إلى نفس المشروع."
|
||||
@@ -2273,6 +2274,7 @@ ar:
|
||||
button_print: "طباعة"
|
||||
button_quote: "اقتباس"
|
||||
button_remove: إزالة
|
||||
button_remove_permanently: "Remove permanently"
|
||||
button_remove_reminder: "Remove reminder"
|
||||
button_rename: "اعادة التّسمية"
|
||||
button_replace: "Replace"
|
||||
@@ -4917,6 +4919,7 @@ ar:
|
||||
Note: if enabled, this will display a badge with your installation status in the <a href="%{information_panel_path}">%{information_panel_label}</a> administration panel, and on the home page. It is displayed to administrators only. <br/> The badge will check your current OpenProject version against the official OpenProject release database to alert you of any updates or known vulnerabilities. For more information on what the check provides, what data is needed to provide available updates, and how to disable this check, please visit <a href="%{more_info_url}">the configuration documentation</a>.
|
||||
text_own_membership_delete_confirmation: "أنت على وشك إزالة بعض أو كافة الأذونات الخاصة بك، وقد لن تكون قادراً على تحرير هذا المشروع بعد ذلك. هل أنت متأكد من أنك تريد المتابعة؟"
|
||||
text_permanent_delete_confirmation_checkbox_label: "I understand that this deletion cannot be reversed"
|
||||
text_permanent_remove_confirmation_checkbox_label: "I understand that this removal cannot be reversed"
|
||||
text_plugin_assets_writable: "دليل أصول البرنامج المساعدة القابل للكتابة"
|
||||
text_powered_by: "بواسطة %{link}"
|
||||
text_project_identifier_info: "يتم السماح فقط رسائل الحالة الأدنى (أ-ي) وأرقام، والشرطات وتسطير، يجب أن تبدأ بحرف حالة الأدنى."
|
||||
|
||||
@@ -1512,7 +1512,8 @@ az:
|
||||
not_a_datetime: "is not a valid date time."
|
||||
not_a_number: "is not a number."
|
||||
not_allowed: "is invalid because of missing permissions."
|
||||
not_json: "is not a valid JSON object."
|
||||
not_json: "is not parseable as JSON."
|
||||
not_json_object: "is not a JSON object."
|
||||
not_an_integer: "is not an integer."
|
||||
not_an_iso_date: "is not a valid date. Required format: YYYY-MM-DD."
|
||||
not_same_project: "doesn't belong to the same project."
|
||||
@@ -2169,6 +2170,7 @@ az:
|
||||
button_print: "Print"
|
||||
button_quote: "Sitat"
|
||||
button_remove: Remove
|
||||
button_remove_permanently: "Remove permanently"
|
||||
button_remove_reminder: "Remove reminder"
|
||||
button_rename: "Rename"
|
||||
button_replace: "Replace"
|
||||
@@ -4723,6 +4725,7 @@ az:
|
||||
Note: if enabled, this will display a badge with your installation status in the <a href="%{information_panel_path}">%{information_panel_label}</a> administration panel, and on the home page. It is displayed to administrators only. <br/> The badge will check your current OpenProject version against the official OpenProject release database to alert you of any updates or known vulnerabilities. For more information on what the check provides, what data is needed to provide available updates, and how to disable this check, please visit <a href="%{more_info_url}">the configuration documentation</a>.
|
||||
text_own_membership_delete_confirmation: "You are about to remove some or all of your permissions and may no longer be able to edit this project after that.\nAre you sure you want to continue?"
|
||||
text_permanent_delete_confirmation_checkbox_label: "I understand that this deletion cannot be reversed"
|
||||
text_permanent_remove_confirmation_checkbox_label: "I understand that this removal cannot be reversed"
|
||||
text_plugin_assets_writable: "Plugin assets directory writable"
|
||||
text_powered_by: "Powered by %{link}"
|
||||
text_project_identifier_info: "Only lower case letters (a-z), numbers, dashes and underscores are allowed, must start with a lower case letter."
|
||||
|
||||
@@ -1530,7 +1530,8 @@ be:
|
||||
not_a_datetime: "is not a valid date time."
|
||||
not_a_number: "is not a number."
|
||||
not_allowed: "is invalid because of missing permissions."
|
||||
not_json: "is not a valid JSON object."
|
||||
not_json: "is not parseable as JSON."
|
||||
not_json_object: "is not a JSON object."
|
||||
not_an_integer: "is not an integer."
|
||||
not_an_iso_date: "is not a valid date. Required format: YYYY-MM-DD."
|
||||
not_same_project: "doesn't belong to the same project."
|
||||
@@ -2221,6 +2222,7 @@ be:
|
||||
button_print: "Print"
|
||||
button_quote: "Quote"
|
||||
button_remove: Remove
|
||||
button_remove_permanently: "Remove permanently"
|
||||
button_remove_reminder: "Remove reminder"
|
||||
button_rename: "Rename"
|
||||
button_replace: "Replace"
|
||||
@@ -4821,6 +4823,7 @@ be:
|
||||
Note: if enabled, this will display a badge with your installation status in the <a href="%{information_panel_path}">%{information_panel_label}</a> administration panel, and on the home page. It is displayed to administrators only. <br/> The badge will check your current OpenProject version against the official OpenProject release database to alert you of any updates or known vulnerabilities. For more information on what the check provides, what data is needed to provide available updates, and how to disable this check, please visit <a href="%{more_info_url}">the configuration documentation</a>.
|
||||
text_own_membership_delete_confirmation: "You are about to remove some or all of your permissions and may no longer be able to edit this project after that.\nAre you sure you want to continue?"
|
||||
text_permanent_delete_confirmation_checkbox_label: "I understand that this deletion cannot be reversed"
|
||||
text_permanent_remove_confirmation_checkbox_label: "I understand that this removal cannot be reversed"
|
||||
text_plugin_assets_writable: "Plugin assets directory writable"
|
||||
text_powered_by: "Powered by %{link}"
|
||||
text_project_identifier_info: "Only lower case letters (a-z), numbers, dashes and underscores are allowed, must start with a lower case letter."
|
||||
|
||||
@@ -1512,7 +1512,8 @@ bg:
|
||||
not_a_datetime: "не е валидна дата и час."
|
||||
not_a_number: "не е число."
|
||||
not_allowed: "е невалиден поради липса на достъп."
|
||||
not_json: "is not a valid JSON object."
|
||||
not_json: "is not parseable as JSON."
|
||||
not_json_object: "is not a JSON object."
|
||||
not_an_integer: "не е цяло число."
|
||||
not_an_iso_date: "не е валидна дата. Изискван формат: ГГГГ-ММ-ДД."
|
||||
not_same_project: "не принадлежат към един и същ проект."
|
||||
@@ -2169,6 +2170,7 @@ bg:
|
||||
button_print: "Отпечатване"
|
||||
button_quote: "Цитат"
|
||||
button_remove: Премахване
|
||||
button_remove_permanently: "Remove permanently"
|
||||
button_remove_reminder: "Remove reminder"
|
||||
button_rename: "Преименуване"
|
||||
button_replace: "Замени"
|
||||
@@ -4723,6 +4725,7 @@ bg:
|
||||
Note: if enabled, this will display a badge with your installation status in the <a href="%{information_panel_path}">%{information_panel_label}</a> administration panel, and on the home page. It is displayed to administrators only. <br/> The badge will check your current OpenProject version against the official OpenProject release database to alert you of any updates or known vulnerabilities. For more information on what the check provides, what data is needed to provide available updates, and how to disable this check, please visit <a href="%{more_info_url}">the configuration documentation</a>.
|
||||
text_own_membership_delete_confirmation: "You are about to remove some or all of your permissions and may no longer be able to edit this project after that.\nAre you sure you want to continue?"
|
||||
text_permanent_delete_confirmation_checkbox_label: "I understand that this deletion cannot be reversed"
|
||||
text_permanent_remove_confirmation_checkbox_label: "I understand that this removal cannot be reversed"
|
||||
text_plugin_assets_writable: "Plugin assets directory writable"
|
||||
text_powered_by: "Powered by %{link}"
|
||||
text_project_identifier_info: "Only lower case letters (a-z), numbers, dashes and underscores are allowed, must start with a lower case letter."
|
||||
|
||||
@@ -1509,7 +1509,8 @@ ca:
|
||||
not_a_datetime: "no és una data-i-hora vàlida."
|
||||
not_a_number: "no és un número."
|
||||
not_allowed: "és invàlid perquè falten permisos."
|
||||
not_json: "is not a valid JSON object."
|
||||
not_json: "is not parseable as JSON."
|
||||
not_json_object: "is not a JSON object."
|
||||
not_an_integer: "no és un enter."
|
||||
not_an_iso_date: "no és una data vàlida. Format requerit: AAAA-MM-DD."
|
||||
not_same_project: "no pertany al mateix projecte."
|
||||
@@ -2166,6 +2167,7 @@ ca:
|
||||
button_print: "Imprimir"
|
||||
button_quote: "Citar"
|
||||
button_remove: Suprimir
|
||||
button_remove_permanently: "Remove permanently"
|
||||
button_remove_reminder: "Remove reminder"
|
||||
button_rename: "Renombrar"
|
||||
button_replace: "Substitueix"
|
||||
@@ -4714,6 +4716,7 @@ ca:
|
||||
Nota: si està activat, es mostra un indicador amb l'estat de la teva instal·lació <a href="%{information_panel_path}">%{information_panel_label}</a> en el panell d'administració i a la pàgina inicial. Només es mostra als administradors. <br/> L'indicador comprova la teva versió d'OpenProject actual amb la versió oficial i t'avisa si hi ha actualitzacions o qualsevol vulnerabilitat. Per a més informació en quina informació es proveïx, quines dades són necessàries per actualitzacions i com desactivar aquesta funció, si us plau, visita <a href="%{more_info_url}">la documentació de configuració</a>.
|
||||
text_own_membership_delete_confirmation: "Estàs a punt d'eliminar algun o tots els teus permisos i potser no podreu editar més aquest projecte.\nEstàs segur que vols continuar?"
|
||||
text_permanent_delete_confirmation_checkbox_label: "I understand that this deletion cannot be reversed"
|
||||
text_permanent_remove_confirmation_checkbox_label: "I understand that this removal cannot be reversed"
|
||||
text_plugin_assets_writable: "Es pot escriure als complements actius"
|
||||
text_powered_by: "Desenvolupat per %{link}"
|
||||
text_project_identifier_info: "Només es permeten lletres minúscules (a-z), números, guions i guions baixos, i ha de començar amb una lletra minúscula."
|
||||
|
||||
@@ -1512,7 +1512,8 @@ ckb-IR:
|
||||
not_a_datetime: "is not a valid date time."
|
||||
not_a_number: "is not a number."
|
||||
not_allowed: "is invalid because of missing permissions."
|
||||
not_json: "is not a valid JSON object."
|
||||
not_json: "is not parseable as JSON."
|
||||
not_json_object: "is not a JSON object."
|
||||
not_an_integer: "is not an integer."
|
||||
not_an_iso_date: "is not a valid date. Required format: YYYY-MM-DD."
|
||||
not_same_project: "doesn't belong to the same project."
|
||||
@@ -2169,6 +2170,7 @@ ckb-IR:
|
||||
button_print: "Print"
|
||||
button_quote: "Quote"
|
||||
button_remove: Remove
|
||||
button_remove_permanently: "Remove permanently"
|
||||
button_remove_reminder: "Remove reminder"
|
||||
button_rename: "Rename"
|
||||
button_replace: "Replace"
|
||||
@@ -4723,6 +4725,7 @@ ckb-IR:
|
||||
Note: if enabled, this will display a badge with your installation status in the <a href="%{information_panel_path}">%{information_panel_label}</a> administration panel, and on the home page. It is displayed to administrators only. <br/> The badge will check your current OpenProject version against the official OpenProject release database to alert you of any updates or known vulnerabilities. For more information on what the check provides, what data is needed to provide available updates, and how to disable this check, please visit <a href="%{more_info_url}">the configuration documentation</a>.
|
||||
text_own_membership_delete_confirmation: "You are about to remove some or all of your permissions and may no longer be able to edit this project after that.\nAre you sure you want to continue?"
|
||||
text_permanent_delete_confirmation_checkbox_label: "I understand that this deletion cannot be reversed"
|
||||
text_permanent_remove_confirmation_checkbox_label: "I understand that this removal cannot be reversed"
|
||||
text_plugin_assets_writable: "Plugin assets directory writable"
|
||||
text_powered_by: "Powered by %{link}"
|
||||
text_project_identifier_info: "Only lower case letters (a-z), numbers, dashes and underscores are allowed, must start with a lower case letter."
|
||||
|
||||
@@ -1265,7 +1265,7 @@ cs:
|
||||
enabled_modules: "Povolené moduly"
|
||||
identifier: "Identifikátor"
|
||||
latest_activity_at: "Poslední aktivita"
|
||||
parent: "Nadřazený projekt"
|
||||
parent: "Podprojekt"
|
||||
project_creation_wizard_enabled: "Project initiation request"
|
||||
public_value:
|
||||
title: "Viditelnost"
|
||||
@@ -1530,7 +1530,8 @@ cs:
|
||||
not_a_datetime: "není platný čas."
|
||||
not_a_number: "není číslo."
|
||||
not_allowed: "je neplatný z důvodu chybějících oprávnění."
|
||||
not_json: "není platný objekt JSON."
|
||||
not_json: "is not parseable as JSON."
|
||||
not_json_object: "is not a JSON object."
|
||||
not_an_integer: "není celé číslo."
|
||||
not_an_iso_date: "není platné datum. Požadovaný formát: RRRR-MM-DD."
|
||||
not_same_project: "nepatří do stejného projektu."
|
||||
@@ -1633,7 +1634,7 @@ cs:
|
||||
meeting:
|
||||
error_conflict: "Nelze uložit, protože schůzku mezitím aktualizoval někdo jiný. Znovu načtěte stránku."
|
||||
notifications:
|
||||
at_least_one_channel: "Pro odesílání notifikací musí být specifikován alespoň jeden kanál"
|
||||
at_least_one_channel: "Alespoň jeden kanál pro odesílání oznámení musí být specifikován."
|
||||
attributes:
|
||||
read_ian:
|
||||
read_on_creation: "nelze nastavit na pravdivé při vytváření oznámení "
|
||||
@@ -1931,11 +1932,11 @@ cs:
|
||||
member: "Člen"
|
||||
news: "Novinky"
|
||||
notification:
|
||||
one: "Notifikace"
|
||||
few: "Notifikací"
|
||||
many: "Notifikací"
|
||||
other: "Notifikace"
|
||||
placeholder_user: "Placeholder uživatel"
|
||||
one: "Oznámení"
|
||||
few: "Oznámení"
|
||||
many: "Oznámení"
|
||||
other: "Oznámení"
|
||||
placeholder_user: "placeholder uživatel"
|
||||
project:
|
||||
one: "Projekt"
|
||||
few: "Projekty"
|
||||
@@ -2221,6 +2222,7 @@ cs:
|
||||
button_print: "Tisk"
|
||||
button_quote: "Citovat"
|
||||
button_remove: Odstranit
|
||||
button_remove_permanently: "Remove permanently"
|
||||
button_remove_reminder: "Odstranit připomenutí"
|
||||
button_rename: "Přejmenovat"
|
||||
button_replace: "Nahradit"
|
||||
@@ -2987,7 +2989,7 @@ cs:
|
||||
instructions_after_error: "Zkuste se znovu přihlásit kliknutím na %{signin}. Pokud chyba přetrvává, požádejte správce o pomoc."
|
||||
menus:
|
||||
admin:
|
||||
mail_notification: "E-mailové notifikace"
|
||||
mail_notification: "E-mailová upozornění"
|
||||
mails_and_notifications: "E-maily a oznámení"
|
||||
aggregation: "Agregace"
|
||||
api_and_webhooks: "API & Webhooky"
|
||||
@@ -3051,7 +3053,7 @@ cs:
|
||||
by_project: "Nepřečteno dle projektu"
|
||||
by_reason: "Důvod"
|
||||
inbox: "Doručená pošta"
|
||||
send_notifications: "Pro tuto akci odeslat notifikaci"
|
||||
send_notifications: "Odeslat oznámení pro tuto akci"
|
||||
work_packages:
|
||||
subject:
|
||||
created: "Pracovní balíček byl vytvořen."
|
||||
@@ -3492,9 +3494,9 @@ cs:
|
||||
label_permissions: "Práva"
|
||||
label_permissions_report: "Přehled oprávnění"
|
||||
label_personalize_page: "Přizpůsobit tuto stránku"
|
||||
label_placeholder_user: "Placeholder uživatel"
|
||||
label_placeholder_user: "placeholder uživatel"
|
||||
label_placeholder_user_new: ""
|
||||
label_placeholder_user_plural: "Placeholder uživatelé"
|
||||
label_placeholder_user_plural: "placeholder uživatelé"
|
||||
label_planning: "Plánování"
|
||||
label_please_login: "Přihlaste se prosím"
|
||||
label_plugins: "Pluginy"
|
||||
@@ -3518,7 +3520,7 @@ cs:
|
||||
label_project_attribute_plural: "Atributy projektu"
|
||||
label_project_attribute_manage_link: "Správa atributů produktu"
|
||||
label_project_count: "Celkový počet projektů"
|
||||
label_project_copy_notifications: "Během kopírování projektu odeslat notifikace e-mailem"
|
||||
label_project_copy_notifications: "Během kopie projektu odeslat oznámení e-mailem"
|
||||
label_project_initiation_export_pdf: "Export PDF for %{project_creation_name}"
|
||||
label_project_latest: "Nejnovější projekty"
|
||||
label_project_default_type: "Povolit prázdný typ"
|
||||
@@ -3686,7 +3688,7 @@ cs:
|
||||
label_version_new: "Nová verze"
|
||||
label_version_edit: "Upravit verzi"
|
||||
label_version_plural: "Verze"
|
||||
label_version_sharing_descendants: "S podprojekty"
|
||||
label_version_sharing_descendants: "S Podprojekty"
|
||||
label_version_sharing_hierarchy: "S hierarchií projektu"
|
||||
label_version_sharing_none: "Není sdíleno"
|
||||
label_version_sharing_system: "Se všemi projekty"
|
||||
@@ -3794,28 +3796,28 @@ cs:
|
||||
digests:
|
||||
including_mention_singular: "včetně zmínky"
|
||||
including_mention_plural: "včetně %{number_mentioned} zmínění"
|
||||
unread_notification_singular: "1 nepřečtená notifikace"
|
||||
unread_notification_plural: "%{number_unread} nepřečtených notifikací"
|
||||
unread_notification_singular: "1 nepřečtené oznámení"
|
||||
unread_notification_plural: "%{number_unread} nepřečtených oznámení"
|
||||
you_have: "Máte"
|
||||
logo_alt_text: "Logo"
|
||||
mention:
|
||||
subject: "%{user_name} vás zmínil v #%{id} - %{subject}"
|
||||
notification:
|
||||
center: "Centrum notifikací"
|
||||
center: "Centrum oznámení"
|
||||
see_in_center: "Zobrazit komentář v oznamovacím centru"
|
||||
settings: "Změnit nastavení e-mailu"
|
||||
salutation: "Ahoj %{user}!"
|
||||
salutation_full_name: "Jméno a příjmení"
|
||||
work_packages:
|
||||
created_at: "Vytvořeno v %{timestamp} uživatelem %{user} "
|
||||
login_to_see_all: "Přihlaste se pro zobrazení všech notifikací."
|
||||
login_to_see_all: "Přihlaste se pro zobrazení všech oznámení."
|
||||
mentioned: "Byli jste <b>zmíněni v komentáři</b>"
|
||||
mentioned_by: "%{user} vás zmínil v komentáři OpenProject"
|
||||
more_to_see:
|
||||
one: "Existuje ještě 1 pracovní balíček s notifikací."
|
||||
few: "Existuje ještě %{count} pracovních balíčků s notifikacema."
|
||||
many: "Existuje ještě %{count} pracovních balíčků s notifikacema."
|
||||
other: "Existuje ještě %{count} pracovních balíčků s notifikacema."
|
||||
one: "Máte ještě 1 pracovní balíček s notifikací."
|
||||
few: "Existuje ještě %{count} pracovních balíčků s oznámeními."
|
||||
many: "Máte ještě %{count} pracovních balíčků s notifikacemi."
|
||||
other: "Existuje ještě %{count} pracovních balíčků s oznámeními."
|
||||
open_in_browser: "Otevřít v prohlížeči"
|
||||
reason:
|
||||
watched: "Sledováno"
|
||||
@@ -3824,7 +3826,7 @@ cs:
|
||||
mentioned: "Zmíněné"
|
||||
shared: "Sdílené"
|
||||
subscribed: "vše"
|
||||
prefix: "Obdrženo z důvodu nastavení notifikací: %{reason}"
|
||||
prefix: "Obdrženo z důvodu nastavení oznámení: %{reason}"
|
||||
date_alert_start_date: "Upozornění na datum"
|
||||
date_alert_due_date: "Upozornění na datum"
|
||||
reminder: "Připomínka"
|
||||
@@ -4123,7 +4125,7 @@ cs:
|
||||
permission_move_work_packages: "Přesun pracovních balíčků"
|
||||
permission_protect_wiki_pages: "Ochrana stránky wiki"
|
||||
permission_rename_wiki_pages: "Přejmenovat stránky wiki"
|
||||
permission_save_queries: "Uložit zobrazení"
|
||||
permission_save_queries: "Uložit pohled"
|
||||
permission_search_project: "Hledat projekt"
|
||||
permission_select_custom_fields: "Vybrat vlastní pole"
|
||||
permission_select_project_custom_fields: "Vyberte atributy projektu"
|
||||
@@ -4593,7 +4595,7 @@ cs:
|
||||
enable_subscriptions_text_html: Umožňuje uživatelům s nezbytnými oprávněními přihlásit se do OpenProject kalendářů a získat přístup k informacím o pracovním balíčku prostřednictvím externího klienta kalendáře. <strong>Poznámka:</strong> Před povolením si prosím přečtěte <a href="%{link}" target="_blank">podrobnosti o odběru</a>.
|
||||
language_name_being_default: "%{language_name} (výchozí)"
|
||||
notifications:
|
||||
events_explanation: "Určuje, pro kterou událost je odeslán e-mail. Pracovní balíčky jsou z tohoto seznamu vyloučeny, protože notifikace pro ně mohou být nastavena speciálně pro každého uživatele."
|
||||
events_explanation: "Určuje, pro kterou událost je odeslán e-mail. Pracovní balíčky jsou z tohoto seznamu vyloučeny, protože oznámení pro ně mohou být nastavena speciálně pro každého uživatele."
|
||||
delay_minutes_explanation: "Odesílání e-mailu může být pozdrženo, aby bylo uživatelům s nakonfigurovaným v oznámení aplikace před odesláním pošty potvrzeno oznámení. Uživatelé, kteří si přečtou oznámení v aplikaci, nedostanou e-mail pro již přečtené oznámení."
|
||||
other: "Ostatní"
|
||||
passwords: "Hesla"
|
||||
@@ -4774,7 +4776,7 @@ cs:
|
||||
text_destroy_with_associated: "Existují další objekty, které jsou přiřazeny k pracovním balíčkům a které mají být odstraněny. Tyto objekty jsou následující typy:"
|
||||
text_destroy_what_to_do: "Co chcete udělat?"
|
||||
text_diff_truncated: "... Toto rozlišení bylo zkráceno, protože přesahuje maximální velikost, kterou lze zobrazit."
|
||||
text_email_delivery_not_configured: "Doručení e-mailu není nakonfigurováno a notifikace jsou zakázány.\nNakonfigurujte váš SMTP server pro jejich povolení."
|
||||
text_email_delivery_not_configured: "Doručení e-mailu není nakonfigurováno a oznámení jsou zakázána.\nNakonfigurujte váš SMTP server pro jejich povolení."
|
||||
text_enumeration_category_reassign_to: "Přiřadit je k této hodnotě:"
|
||||
text_enumeration_destroy_question: "%{count} objektů je přiřazeno k této hodnotě."
|
||||
text_file_repository_writable: "Do adresáře příloh lze zapisovat"
|
||||
@@ -4820,6 +4822,7 @@ cs:
|
||||
Poznámka: Pokud je povoleno, bude zobrazen odznak se stavem instalace v <a href="%{information_panel_path}">%{information_panel_label}</a> administrativním panelu, a na domovské stránce. Zobrazuje se pouze administrátorům. <br/> Odznak zkontroluje vaši aktuální verzi OpenProject proti oficiální databázi OpenProject release, aby vás upozornil na jakékoliv aktualizace nebo známá slabá místa. Pro více informací o tom, co kontrola stanoví, jaké údaje jsou potřebné k poskytnutí dostupných aktualizací, a jak tuto kontrolu zakázat, navštivte <a href="%{more_info_url}">konfigurační dokumentaci</a>.
|
||||
text_own_membership_delete_confirmation: "Chystáte se odebrat si některá nebo všechna svá oprávnění, potom již nemusíte být schopni upravit tento projekt.\nOpravdu chcete pokračovat?"
|
||||
text_permanent_delete_confirmation_checkbox_label: "Beru na vědomí, že toto vymazání nelze vzít zpět."
|
||||
text_permanent_remove_confirmation_checkbox_label: "I understand that this removal cannot be reversed"
|
||||
text_plugin_assets_writable: "Zapisovatelný adresář aktiv pluginu"
|
||||
text_powered_by: "Běží na %{link}"
|
||||
text_project_identifier_info: "Jsou povolena pouze malá písmena (a-z), číslice, pomlčky a podtržítka. Musí začínat malým písmenem."
|
||||
|
||||
@@ -1510,7 +1510,8 @@ da:
|
||||
not_a_datetime: "is not a valid date time."
|
||||
not_a_number: "er ikke et tal."
|
||||
not_allowed: "is invalid because of missing permissions."
|
||||
not_json: "is not a valid JSON object."
|
||||
not_json: "is not parseable as JSON."
|
||||
not_json_object: "is not a JSON object."
|
||||
not_an_integer: "er ikke et heltal."
|
||||
not_an_iso_date: "is not a valid date. Required format: YYYY-MM-DD."
|
||||
not_same_project: "hører ikke til samme projekt."
|
||||
@@ -2167,6 +2168,7 @@ da:
|
||||
button_print: "Print"
|
||||
button_quote: "Citer"
|
||||
button_remove: Fjern
|
||||
button_remove_permanently: "Remove permanently"
|
||||
button_remove_reminder: "Remove reminder"
|
||||
button_rename: "Omdøb"
|
||||
button_replace: "Replace"
|
||||
@@ -4719,6 +4721,7 @@ da:
|
||||
Note: if enabled, this will display a badge with your installation status in the <a href="%{information_panel_path}">%{information_panel_label}</a> administration panel, and on the home page. It is displayed to administrators only. <br/> The badge will check your current OpenProject version against the official OpenProject release database to alert you of any updates or known vulnerabilities. For more information on what the check provides, what data is needed to provide available updates, and how to disable this check, please visit <a href="%{more_info_url}">the configuration documentation</a>.
|
||||
text_own_membership_delete_confirmation: "Du er ved at fjerne nogle af, eller alle dine tilladelser og vil muligvis ikke kunne redigere projektet herefter.\nEr du sikker på, du vil fortsætte?"
|
||||
text_permanent_delete_confirmation_checkbox_label: "I understand that this deletion cannot be reversed"
|
||||
text_permanent_remove_confirmation_checkbox_label: "I understand that this removal cannot be reversed"
|
||||
text_plugin_assets_writable: "Brug af plugin forudsætter at dette arkiv er skrivbart"
|
||||
text_powered_by: "Drevet af %{link}"
|
||||
text_project_identifier_info: "Kun små bogstaver (a-z), tal, - og _ er tilladt; først tegn skal være et bogstav."
|
||||
|
||||
@@ -85,11 +85,11 @@ de:
|
||||
title: "Enterprise-Token hinzufügen"
|
||||
type_token_text: "Enterprise-Token Text"
|
||||
token_placeholder: "Enterprise-Token Text hier einfügen"
|
||||
add_token: "Enterprise-Edition Support Token hochladen"
|
||||
add_token: "Enterprise edition Support Token hochladen"
|
||||
replace_token: "Aktuellen Enterprise edition Support Token ersetzen"
|
||||
order: "Enterprise on-premises bestellen"
|
||||
paste: "Enterprise-Edition Support Token hier einfügen"
|
||||
required_for_feature: "Dieses Add-on ist nur mit einem aktiven Enterprise-Edition Support-Token verfügbar."
|
||||
paste: "Enterprise edition Support Token hier einfügen"
|
||||
required_for_feature: "Dieses Add-on ist nur mit einem aktiven Enterprise edition Support-Token verfügbar."
|
||||
enterprise_link: "Klicken Sie hier für weitere Informationen."
|
||||
start_trial: "Kostenlose Testversion starten"
|
||||
book_now: "Jetzt buchen"
|
||||
@@ -894,10 +894,10 @@ de:
|
||||
tab: "Titel konfigurieren"
|
||||
manually_editable_subjects:
|
||||
label: "Manuell bearbeitbare Titel"
|
||||
caption: "Nutzer:innen können die Titel der Arbeitspakete ohne Einschränkungen manuell eingeben und bearbeiten."
|
||||
caption: "Benutzer können die Titel der Arbeitspakete ohne Einschränkungen manuell eingeben und bearbeiten."
|
||||
automatically_generated_subjects:
|
||||
label: "Automatisch generierte Titel"
|
||||
caption: "Definieren Sie ein Schema aus referenzierten Attributen und Freitext für die automatische Generierung von Arbeitspakettiteln. Nutzer:innen können diese nicht manuell editieren."
|
||||
caption: "Definieren Sie ein Schema aus referenzierten Attributen und Freitext für die automatische Generierung von Arbeitspakettiteln. Nutzer können diese nicht manuell editieren."
|
||||
token:
|
||||
label_with_context: "%{attribute_context}: %{attribute_label}"
|
||||
context:
|
||||
@@ -951,7 +951,7 @@ de:
|
||||
manual_with_children: "Hat Unteraufgaben aber ihre Startdaten werden ignoriert."
|
||||
title:
|
||||
automatic_mobile: "Automatisch geplant."
|
||||
automatic_with_children: "Unteraufgaben bestimmen Termine."
|
||||
automatic_with_children: "Die Termine sind durch untergeordnete Arbeitspakete bestimmt."
|
||||
automatic_with_predecessor: "Der Anfangstermin wird von einem Vorgänger festgelegt."
|
||||
manual_mobile: "Manuell geplant."
|
||||
manually_scheduled: "Manuell geplant – Daten unabhängig von Beziehungen."
|
||||
@@ -1054,7 +1054,7 @@ de:
|
||||
label_child_plural: "Unteraufgaben"
|
||||
new_child: "Neue Unteraufgabe"
|
||||
new_child_description: "Erstellt ein zugehöriges Arbeitspaket als Unteraufgabe des aktuellen (übergeordneten) Arbeitspakets"
|
||||
child: "Unteraufgabe"
|
||||
child: "Kind"
|
||||
child_description: "Macht das zugehörige Arbeitspaket zu einer Unteraufgabe des aktuellen (übergeordneten) Arbeitspakets"
|
||||
parent: "Übergeordnetes Arbeitspaket"
|
||||
parent_description: "Wandelt das verknüpfte in ein übergeordnetes Arbeitspaket dieses Arbeitspakets um"
|
||||
@@ -1295,7 +1295,7 @@ de:
|
||||
column_names: "Spalten"
|
||||
relations_to_type_column: "Beziehungen zu %{type}"
|
||||
relations_of_type_column: "Beziehungen der Art: %{type}"
|
||||
child_work_packages: "Unteraufgaben"
|
||||
child_work_packages: "Kinder"
|
||||
group_by: "Gruppiere Ergebnisse nach"
|
||||
sort_by: "Ergebnisse sortieren nach"
|
||||
filters: "Filter"
|
||||
@@ -1504,7 +1504,8 @@ de:
|
||||
not_a_datetime: "ist kein gültiges Datum."
|
||||
not_a_number: "ist keine Zahl."
|
||||
not_allowed: "ist ungültig aufgrund fehlender Berechtigungen."
|
||||
not_json: "ist kein gültiges JSON-Objekt."
|
||||
not_json: "konnte nicht als JSON gelsen werden."
|
||||
not_json_object: "ist kein gültiges JSON-Objekt."
|
||||
not_an_integer: "ist keine ganzzahlige Zahl."
|
||||
not_an_iso_date: "ist kein gültiges Datum - Erwartetes Format: YYY-MM-DD."
|
||||
not_same_project: "gehört nicht zum selben Projekt."
|
||||
@@ -1790,7 +1791,7 @@ de:
|
||||
status_transition_invalid: "ist ungültig, da kein valider Übergang vom alten zum neuen Status für die aktuelle Rolle des Nutzers existiert."
|
||||
status_invalid_in_type: "ist ungültig, da der aktuelle Status nicht in diesem Typ vorhanden ist."
|
||||
type:
|
||||
cannot_be_milestone_due_to_children: "kann kein Meilenstein werden, da dieses Arbeitspaket Unteraufgaben besitzt."
|
||||
cannot_be_milestone_due_to_children: "kann kein Meilenstein werden, da dieses Arbeitspaket Unterelemente besitzt."
|
||||
priority_id:
|
||||
only_active_priorities_allowed: "muss aktiv sein."
|
||||
category:
|
||||
@@ -2161,6 +2162,7 @@ de:
|
||||
button_print: "Drucken"
|
||||
button_quote: "Zitieren"
|
||||
button_remove: Entfernen
|
||||
button_remove_permanently: "Endgültig löschen"
|
||||
button_remove_reminder: "Erinnerung entfernen"
|
||||
button_rename: "Umbenennen"
|
||||
button_replace: "Ersetzen"
|
||||
@@ -2581,7 +2583,7 @@ de:
|
||||
error_custom_option_not_found: "Option ist nicht vorhanden."
|
||||
error_enterprise_plan_needed: "Sie benötigen den Enterprise-Plan %{plan}, um diese Aktion durchzuführen."
|
||||
error_enterprise_activation_user_limit: "Ihr Konto konnte nicht aktiviert werden (Nutzerlimit erreicht). Bitte kontaktieren Sie Ihren Administrator um Zugriff zu erhalten."
|
||||
error_enterprise_token_invalid_domain: "Die Enterprise-Edition ist nicht aktiv. Die aktuelle Domain (%{actual}) entspricht nicht dem erwarteten Hostnamen (%{expected})."
|
||||
error_enterprise_token_invalid_domain: "Die Enterprise edition ist nicht aktiv. Die aktuelle Domain (%{actual}) entspricht nicht dem erwarteten Hostnamen (%{expected})."
|
||||
error_failed_to_delete_entry: "Fehler beim Löschen dieses Eintrags."
|
||||
error_in_dependent: "Fehler beim Versuch, abhängiges Objekt zu ändern: %{dependent_class} #%{related_id} - %{related_subject}: %{error}"
|
||||
error_in_new_dependent: "Fehler beim Versuch, abhängiges Objekt zu erstellen: %{dependent_class} - %{related_subject}: %{error}"
|
||||
@@ -2858,7 +2860,7 @@ de:
|
||||
dates:
|
||||
working: "%{date} ist jetzt ein Arbeitstag"
|
||||
non_working: "%{date} ist jetzt ein arbeitsfreier Tag"
|
||||
progress_mode_changed_to_status_based: Fortschrittberechnung wurde auf Status-bezogen gesetzt
|
||||
progress_mode_changed_to_status_based: Fortschrittberechnung wurde auf Status-basiert gesetzt
|
||||
status_excluded_from_totals_set_to_false_message: jetzt in den Gesamtwerten der Hierarchie enthalten
|
||||
status_excluded_from_totals_set_to_true_message: jetzt von den Hierarchie-Gesamtwerten ausgeschlossen
|
||||
status_percent_complete_changed: "% abgeschlossen von %{old_value}% auf %{new_value} % geändert"
|
||||
@@ -3156,7 +3158,7 @@ de:
|
||||
label_enumerations: "Aufzählungen"
|
||||
label_enterprise: "Enterprise"
|
||||
label_enterprise_active_users: "%{current}/%{limit} gebuchte aktive Nutzer"
|
||||
label_enterprise_edition: "Enterprise Edition"
|
||||
label_enterprise_edition: "Enterprise edition"
|
||||
label_enterprise_support: "Enterprise Support"
|
||||
label_environment: "Umgebung"
|
||||
label_estimates_and_progress: "Schätzungen und Fortschritt"
|
||||
@@ -4214,7 +4216,7 @@ de:
|
||||
update_timeout: "Speichere die Informationen bzgl. des genutzten Festplattenspeichers eines Projektarchivs für N Minuten.\nErhöhen Sie diesen Wert zur Verbesserung der Performance, da die Erfassung des genutzten Festplattenspeichers Ressourcen-intensiv ist."
|
||||
oauth_application_details: "Der Client Geheimcode wird nach dem Schließen dieses Fensters nicht mehr zugänglich sein. Bitte kopieren Sie diese Werte in die Nextcloud OpenProject Integrationseinstellungen:"
|
||||
oauth_application_details_link_text: "Zu den Einstellungen gehen"
|
||||
setup_documentation_details: "Wenn Sie Hilfe bei der Konfiguration eines neuen Dateispeichers benötigen, konsultieren Sie bitte die Dokumentation: "
|
||||
setup_documentation_details: "Wenn Sie Hilfe bei der Konfiguration eines neuen Datei-Speichers benötigen, konsultieren Sie bitte die Dokumentation: "
|
||||
setup_documentation_details_link_text: "Dateispeicher einrichten"
|
||||
show_warning_details: "Um diesen Dateispeicher nutzen zu können, müssen Sie das Modul und den spezifischen Speicher in den Projekteinstellungen jedes gewünschten Projekts aktivieren."
|
||||
subversion:
|
||||
@@ -4717,6 +4719,7 @@ de:
|
||||
Hinweis: Wenn aktiviert, wird dies eine Plakette mit dem Status Ihrer Installation in der <a href="%{information_panel_path}">%{information_panel_label}</a> unter Administration und auf der Startseite anzeigen. Es wird nur Administratoren gezeigt. <br/> Die Plakette überprüft Ihre aktuelle OpenProject-Version gegen die offizielle Release Datenbank, um Sie über Updates oder bekannten Sicherheitslücken zu informieren. Für die Überprüfung der Version werden Daten benötigt, um verfügbare Updates für Ihre Umgebung zurückzugeben. Für mehr Informationen über die Plakette, welche Daten sie benötigt und wie Sie diese Überprüfung deaktivieren können, besuchen Sie bitte <a href="%{more_info_url}">die Konfigurationsdokumentation</a>.
|
||||
text_own_membership_delete_confirmation: "Sie sind dabei, einige oder alle Ihre Berechtigungen zu entfernen. Es ist möglich, dass Sie danach das Projekt nicht mehr ansehen oder bearbeiten dürfen.\nSind Sie sicher, dass Sie dies tun möchten?"
|
||||
text_permanent_delete_confirmation_checkbox_label: "Ich verstehe, dass diese Löschung nicht rückgängig gemacht werden kann"
|
||||
text_permanent_remove_confirmation_checkbox_label: "Ich verstehe, dass diese Löschung nicht rückgängig gemacht werden kann"
|
||||
text_plugin_assets_writable: "Verzeichnis für Plugin-Assets beschreibbar"
|
||||
text_powered_by: "Powered by %{link}"
|
||||
text_project_identifier_info: "Kleinbuchstaben (a-z), Ziffern, Binde- und Unterstriche erlaubt. Muss mit einem Kleinbuchstaben beginnen."
|
||||
@@ -4838,7 +4841,7 @@ de:
|
||||
warning_user_limit_reached_admin: >
|
||||
Das Hinzufügen zusätzlicher Benutzer überschreitet das aktuelle Benutzerlimit. Bitte <a href="%{upgrade_url}">aktualisieren Sie Ihr Abonnement</a> um sicherzustellen, dass externe Benutzer auf diese Instanz zugreifen können.
|
||||
warning_user_limit_reached_instructions: >
|
||||
Du hast dein Nutzerlimit erreicht (%{current}/%{max} active users). Bitte kontaktiere sales@openproject.com um deinen Enterprise Edition Plan upzugraden und weitere Nutzer hinzuzufügen.
|
||||
Du hast dein Nutzerlimit erreicht (%{current}/%{max} active users). Bitte kontaktiere sales@openproject.com um deinen Enterprise edition Plan upzugraden und weitere Nutzer hinzuzufügen.
|
||||
warning_protocol_mismatch_html: >
|
||||
|
||||
warning_bar:
|
||||
|
||||
@@ -1508,7 +1508,8 @@ el:
|
||||
not_a_datetime: "δεν είναι έγκυρη ημερομηνία και ώρα."
|
||||
not_a_number: "δεν είναι αριθμός."
|
||||
not_allowed: "δεν είναι έγκυρο επειδή λείπουν δικαιώματα."
|
||||
not_json: "is not a valid JSON object."
|
||||
not_json: "is not parseable as JSON."
|
||||
not_json_object: "is not a JSON object."
|
||||
not_an_integer: "δεν είναι ακέραιος αριθμός."
|
||||
not_an_iso_date: "δεν είναι έγκυρη ημερομηνία. Απαιτούμενη μορφοποίηση: ΕΕΕΕ-ΜΜ-ΗΗ."
|
||||
not_same_project: "δεν ανήκει στο ίδιο έργο."
|
||||
@@ -2165,6 +2166,7 @@ el:
|
||||
button_print: "Εκτύπωση"
|
||||
button_quote: "Παράθεση"
|
||||
button_remove: Αφαίρεση
|
||||
button_remove_permanently: "Remove permanently"
|
||||
button_remove_reminder: "Remove reminder"
|
||||
button_rename: "Μετονομασία"
|
||||
button_replace: "Αντικατάσταση"
|
||||
@@ -4718,6 +4720,7 @@ el:
|
||||
Σημείωση: Εάν ενεργοποιηθεί, θα εμφανιστεί ένα σήμα με την κατάσταση της εγκατάστασής σας στον <a href="%{information_panel_path}">%{information_panel_label}</a> πίνακα διαχείρισης, καθώς και στην αρχική σελίδα. Εμφανίζεται μόνο στους διαχειριστές. <br/> Το σήμα θα ελέγξει την τρέχουσα έκδοση του OpenProject σε σύγκριση με την επίσημη βάση δεδομένων εκδόσεων OpenProject για να σας ειδοποιήσει ενημερώσεις ή γνωστές ευπάθειες. Για περισσότερες πληροφορίες στο τι παρέχει αυτός ο έλεγχος, τι δεδομένα χρειάζονται για να παρέχονται οι διαθέσιμες ενημερώσεις και πως να απενεργοποιήσετε αυτό τον έλεγχο, παρακαλούμε επισκεφθείτε την <a href="%{more_info_url}"> τεκμηρίωση διαμόρφωσης</a>.
|
||||
text_own_membership_delete_confirmation: "Πρόκειται να αφαιρέσετε μερικά ή όλα τα δικαιώματα και ενδέχεται να μην μπορείτε να επεξεργαστείτε πλέον το έργο μετά από αυτό.\nΕίστε βέβαιοι ότι θέλετε να συνεχίσετε;"
|
||||
text_permanent_delete_confirmation_checkbox_label: "I understand that this deletion cannot be reversed"
|
||||
text_permanent_remove_confirmation_checkbox_label: "I understand that this removal cannot be reversed"
|
||||
text_plugin_assets_writable: "Εγγράψιμος κατάλογος plugin assets"
|
||||
text_powered_by: "Υποστηρίζεται από %{link}"
|
||||
text_project_identifier_info: "Επιτρέπονται μόνο πεζά γράμματα (α-ω), αριθμοί, παύλες και κάτω παύλες, πρέπει να αρχίζουν με πεζό γράμμα."
|
||||
|
||||
@@ -1512,7 +1512,8 @@ eo:
|
||||
not_a_datetime: "Ĝi ne estas valida dato/horo."
|
||||
not_a_number: "Ĝi ne estas numero."
|
||||
not_allowed: "nevalida pro manko de permesoj."
|
||||
not_json: "is not a valid JSON object."
|
||||
not_json: "is not parseable as JSON."
|
||||
not_json_object: "is not a JSON object."
|
||||
not_an_integer: "ĝi ne estas entjero."
|
||||
not_an_iso_date: "Ĝi ne estas valida dato. Deviga datumo estas: JJJJ-MM-TT."
|
||||
not_same_project: "doesn't belong to the same project."
|
||||
@@ -2169,6 +2170,7 @@ eo:
|
||||
button_print: "Printi"
|
||||
button_quote: "Citi"
|
||||
button_remove: Forigi
|
||||
button_remove_permanently: "Remove permanently"
|
||||
button_remove_reminder: "Remove reminder"
|
||||
button_rename: "Alinomi"
|
||||
button_replace: "Anstataŭigi"
|
||||
@@ -4723,6 +4725,7 @@ eo:
|
||||
Note: if enabled, this will display a badge with your installation status in the <a href="%{information_panel_path}">%{information_panel_label}</a> administration panel, and on the home page. It is displayed to administrators only. <br/> The badge will check your current OpenProject version against the official OpenProject release database to alert you of any updates or known vulnerabilities. For more information on what the check provides, what data is needed to provide available updates, and how to disable this check, please visit <a href="%{more_info_url}">the configuration documentation</a>.
|
||||
text_own_membership_delete_confirmation: "You are about to remove some or all of your permissions and may no longer be able to edit this project after that.\nAre you sure you want to continue?"
|
||||
text_permanent_delete_confirmation_checkbox_label: "I understand that this deletion cannot be reversed"
|
||||
text_permanent_remove_confirmation_checkbox_label: "I understand that this removal cannot be reversed"
|
||||
text_plugin_assets_writable: "Plugin assets directory writable"
|
||||
text_powered_by: "Powered by %{link}"
|
||||
text_project_identifier_info: "Only lower case letters (a-z), numbers, dashes and underscores are allowed, must start with a lower case letter."
|
||||
|
||||
@@ -959,7 +959,7 @@ es:
|
||||
automatic_with_children: "Fechas determinadas por paquetes de trabajo secundarios."
|
||||
automatic_with_predecessor: "La fecha de inicio la fija un predecesor."
|
||||
manual_mobile: "Programado manualmente."
|
||||
manually_scheduled: "Programado manualmente. No afectadas por relaciones."
|
||||
manually_scheduled: "Programado manualmente. Fechas no afectadas por relaciones."
|
||||
blankslate:
|
||||
title: "Sin predecesores"
|
||||
description: "Para activar la programación automática, este paquete de trabajo debe tener al menos un predecesor. Entonces se programará automáticamente para que comience después del predecesor más cercano."
|
||||
@@ -1509,7 +1509,8 @@ es:
|
||||
not_a_datetime: "no es una fecha/hora válida."
|
||||
not_a_number: "No es un número."
|
||||
not_allowed: "no es válido porque faltan permisos."
|
||||
not_json: "no es un objeto JSON válido."
|
||||
not_json: "is not parseable as JSON."
|
||||
not_json_object: "is not a JSON object."
|
||||
not_an_integer: "No es un entero."
|
||||
not_an_iso_date: "no es una fecha válida. Requiere formato: AAAA-MM-DD."
|
||||
not_same_project: "no pertenecen a un mismo proyecto."
|
||||
@@ -2166,6 +2167,7 @@ es:
|
||||
button_print: "Imprimir"
|
||||
button_quote: "Comentario"
|
||||
button_remove: Eliminar
|
||||
button_remove_permanently: "Remove permanently"
|
||||
button_remove_reminder: "Eliminar recordatorio"
|
||||
button_rename: "Cambiar el nombre"
|
||||
button_replace: "Sustituir"
|
||||
@@ -4719,6 +4721,7 @@ es:
|
||||
Nota: al activarse, se mostrará una insignia con el estado de instalación en el <a href="%{information_panel_path}">%{information_panel_label}</a> panel de administración, y en la página principal. Solamente será visible para administradores. <br/> La insignia comprobará tu versión actual de OpenProject comparada con la base de datos oficial de OpenProject para alertarte de cualquier actualización o vulnerabilidad. Para más información sobre las funciones de la comprobación, los datos necesarios para conseguir actualizaciones disponibles, o para desactivar esta comprobación, por favor visita <a href="%{more_info_url}">la documentación de configuración</a>.
|
||||
text_own_membership_delete_confirmation: "Estás a punto de eliminar algunos o todos tus permisos, y podrías no poder volver a editar este proyecto.\n¿Estás seguro/a de que quieres continuar?"
|
||||
text_permanent_delete_confirmation_checkbox_label: "Entiendo que esta eliminación no se puede revertir"
|
||||
text_permanent_remove_confirmation_checkbox_label: "I understand that this removal cannot be reversed"
|
||||
text_plugin_assets_writable: "Directorio de extensiones activos escribible"
|
||||
text_powered_by: "Con tecnología de %{link}"
|
||||
text_project_identifier_info: "Se permiten sólo letras minúsculas (a-z), números, guiones y guiones bajos, debe comenzar con una letra minúscula."
|
||||
|
||||
@@ -1512,7 +1512,8 @@ et:
|
||||
not_a_datetime: "is not a valid date time."
|
||||
not_a_number: "pole arv."
|
||||
not_allowed: "is invalid because of missing permissions."
|
||||
not_json: "is not a valid JSON object."
|
||||
not_json: "is not parseable as JSON."
|
||||
not_json_object: "is not a JSON object."
|
||||
not_an_integer: "pole täisarv."
|
||||
not_an_iso_date: "is not a valid date. Required format: YYYY-MM-DD."
|
||||
not_same_project: "doesn't belong to the same project."
|
||||
@@ -2169,6 +2170,7 @@ et:
|
||||
button_print: "Prindi"
|
||||
button_quote: "Tsiteeri"
|
||||
button_remove: Eemalda
|
||||
button_remove_permanently: "Remove permanently"
|
||||
button_remove_reminder: "Eemalda meeldetuletus"
|
||||
button_rename: "Nimeta ümber"
|
||||
button_replace: "Asenda"
|
||||
@@ -4723,6 +4725,7 @@ et:
|
||||
Note: if enabled, this will display a badge with your installation status in the <a href="%{information_panel_path}">%{information_panel_label}</a> administration panel, and on the home page. It is displayed to administrators only. <br/> The badge will check your current OpenProject version against the official OpenProject release database to alert you of any updates or known vulnerabilities. For more information on what the check provides, what data is needed to provide available updates, and how to disable this check, please visit <a href="%{more_info_url}">the configuration documentation</a>.
|
||||
text_own_membership_delete_confirmation: "Sa võtad endalt ära osa või kõik õigused ega saa edaspidi seda projekti võib-olla enam muuta.\nOled sa jätkamises kindel?"
|
||||
text_permanent_delete_confirmation_checkbox_label: "I understand that this deletion cannot be reversed"
|
||||
text_permanent_remove_confirmation_checkbox_label: "I understand that this removal cannot be reversed"
|
||||
text_plugin_assets_writable: "Lisamoodulite abifailide kataloog on kirjutatav"
|
||||
text_powered_by: "Jooksutab %{link}"
|
||||
text_project_identifier_info: "Lubatud on ainult väikesed tähed (a-z), numbrid ja kriipsud. Peab algama väikse tähega."
|
||||
|
||||
@@ -1512,7 +1512,8 @@ eu:
|
||||
not_a_datetime: "is not a valid date time."
|
||||
not_a_number: "is not a number."
|
||||
not_allowed: "is invalid because of missing permissions."
|
||||
not_json: "is not a valid JSON object."
|
||||
not_json: "is not parseable as JSON."
|
||||
not_json_object: "is not a JSON object."
|
||||
not_an_integer: "is not an integer."
|
||||
not_an_iso_date: "is not a valid date. Required format: YYYY-MM-DD."
|
||||
not_same_project: "doesn't belong to the same project."
|
||||
@@ -2169,6 +2170,7 @@ eu:
|
||||
button_print: "Print"
|
||||
button_quote: "Quote"
|
||||
button_remove: Remove
|
||||
button_remove_permanently: "Remove permanently"
|
||||
button_remove_reminder: "Remove reminder"
|
||||
button_rename: "Rename"
|
||||
button_replace: "Replace"
|
||||
@@ -4723,6 +4725,7 @@ eu:
|
||||
Note: if enabled, this will display a badge with your installation status in the <a href="%{information_panel_path}">%{information_panel_label}</a> administration panel, and on the home page. It is displayed to administrators only. <br/> The badge will check your current OpenProject version against the official OpenProject release database to alert you of any updates or known vulnerabilities. For more information on what the check provides, what data is needed to provide available updates, and how to disable this check, please visit <a href="%{more_info_url}">the configuration documentation</a>.
|
||||
text_own_membership_delete_confirmation: "You are about to remove some or all of your permissions and may no longer be able to edit this project after that.\nAre you sure you want to continue?"
|
||||
text_permanent_delete_confirmation_checkbox_label: "I understand that this deletion cannot be reversed"
|
||||
text_permanent_remove_confirmation_checkbox_label: "I understand that this removal cannot be reversed"
|
||||
text_plugin_assets_writable: "Plugin assets directory writable"
|
||||
text_powered_by: "Powered by %{link}"
|
||||
text_project_identifier_info: "Only lower case letters (a-z), numbers, dashes and underscores are allowed, must start with a lower case letter."
|
||||
|
||||
@@ -1512,7 +1512,8 @@ fa:
|
||||
not_a_datetime: "is not a valid date time."
|
||||
not_a_number: "is not a number."
|
||||
not_allowed: "is invalid because of missing permissions."
|
||||
not_json: "is not a valid JSON object."
|
||||
not_json: "is not parseable as JSON."
|
||||
not_json_object: "is not a JSON object."
|
||||
not_an_integer: "is not an integer."
|
||||
not_an_iso_date: "is not a valid date. Required format: YYYY-MM-DD."
|
||||
not_same_project: "doesn't belong to the same project."
|
||||
@@ -2169,6 +2170,7 @@ fa:
|
||||
button_print: "چاپ کردن"
|
||||
button_quote: "نقل قول"
|
||||
button_remove: Remove
|
||||
button_remove_permanently: "Remove permanently"
|
||||
button_remove_reminder: "Remove reminder"
|
||||
button_rename: "تغییر نام"
|
||||
button_replace: "Replace"
|
||||
@@ -4723,6 +4725,7 @@ fa:
|
||||
Note: if enabled, this will display a badge with your installation status in the <a href="%{information_panel_path}">%{information_panel_label}</a> administration panel, and on the home page. It is displayed to administrators only. <br/> The badge will check your current OpenProject version against the official OpenProject release database to alert you of any updates or known vulnerabilities. For more information on what the check provides, what data is needed to provide available updates, and how to disable this check, please visit <a href="%{more_info_url}">the configuration documentation</a>.
|
||||
text_own_membership_delete_confirmation: "You are about to remove some or all of your permissions and may no longer be able to edit this project after that.\nAre you sure you want to continue?"
|
||||
text_permanent_delete_confirmation_checkbox_label: "I understand that this deletion cannot be reversed"
|
||||
text_permanent_remove_confirmation_checkbox_label: "I understand that this removal cannot be reversed"
|
||||
text_plugin_assets_writable: "Plugin assets directory writable"
|
||||
text_powered_by: "Powered by %{link}"
|
||||
text_project_identifier_info: "Only lower case letters (a-z), numbers, dashes and underscores are allowed, must start with a lower case letter."
|
||||
|
||||
@@ -1512,7 +1512,8 @@ fi:
|
||||
not_a_datetime: "ei ole kelvollinen aika."
|
||||
not_a_number: "ei ole numero."
|
||||
not_allowed: "is invalid because of missing permissions."
|
||||
not_json: "is not a valid JSON object."
|
||||
not_json: "is not parseable as JSON."
|
||||
not_json_object: "is not a JSON object."
|
||||
not_an_integer: "ei ole kokonaisluku."
|
||||
not_an_iso_date: "ei ole kelvollinen päivämäärä. Vaadittava muoto: VVVV-KK-PP."
|
||||
not_same_project: "ei kuulu samaan projektiin."
|
||||
@@ -2169,6 +2170,7 @@ fi:
|
||||
button_print: "Tulosta"
|
||||
button_quote: "Siteeraa"
|
||||
button_remove: Poista
|
||||
button_remove_permanently: "Remove permanently"
|
||||
button_remove_reminder: "Remove reminder"
|
||||
button_rename: "Nimeä uudelleen"
|
||||
button_replace: "Korvaa"
|
||||
@@ -4723,6 +4725,7 @@ fi:
|
||||
Note: if enabled, this will display a badge with your installation status in the <a href="%{information_panel_path}">%{information_panel_label}</a> administration panel, and on the home page. It is displayed to administrators only. <br/> The badge will check your current OpenProject version against the official OpenProject release database to alert you of any updates or known vulnerabilities. For more information on what the check provides, what data is needed to provide available updates, and how to disable this check, please visit <a href="%{more_info_url}">the configuration documentation</a>.
|
||||
text_own_membership_delete_confirmation: "Olet aikeissa poistaa yhden tai useamman käyttöoikeuden ja et ehkä voi enää muokata tätä projektia sen jälkeen. Haluatko varmasti jatkaa?"
|
||||
text_permanent_delete_confirmation_checkbox_label: "I understand that this deletion cannot be reversed"
|
||||
text_permanent_remove_confirmation_checkbox_label: "I understand that this removal cannot be reversed"
|
||||
text_plugin_assets_writable: "Plugin varat hakemisto kirjoitettavissa"
|
||||
text_powered_by: "Powered by %{link}"
|
||||
text_project_identifier_info: "Vain pienet kirjaimet (a-z), numerot, väliviivat ja alaviivat ovat sallittuja. Ensimmäisenä tulee olla pieni kirjain."
|
||||
|
||||
@@ -1512,7 +1512,8 @@ fil:
|
||||
not_a_datetime: "ay hindi balido ang petsa ng oras."
|
||||
not_a_number: "ay hindi numero."
|
||||
not_allowed: "is invalid because of missing permissions."
|
||||
not_json: "is not a valid JSON object."
|
||||
not_json: "is not parseable as JSON."
|
||||
not_json_object: "is not a JSON object."
|
||||
not_an_integer: "ay hindi integer."
|
||||
not_an_iso_date: "ay hindi balido ang petsa. Ang kinakailangan format: YYYY-MM-DD."
|
||||
not_same_project: "ay hindi nabibilang sa parehong proyekto."
|
||||
@@ -2169,6 +2170,7 @@ fil:
|
||||
button_print: "I-print"
|
||||
button_quote: "Quote"
|
||||
button_remove: Tanggalin
|
||||
button_remove_permanently: "Remove permanently"
|
||||
button_remove_reminder: "Remove reminder"
|
||||
button_rename: "Baguhin ang pangalan"
|
||||
button_replace: "Palitan"
|
||||
@@ -4721,6 +4723,7 @@ fil:
|
||||
Note: if enabled, this will display a badge with your installation status in the <a href="%{information_panel_path}">%{information_panel_label}</a> administration panel, and on the home page. It is displayed to administrators only. <br/> The badge will check your current OpenProject version against the official OpenProject release database to alert you of any updates or known vulnerabilities. For more information on what the check provides, what data is needed to provide available updates, and how to disable this check, please visit <a href="%{more_info_url}">the configuration documentation</a>.
|
||||
text_own_membership_delete_confirmation: "Kinakailangan mong alisin ang ilan o lahat ng iyong perniso at hindi na maaring magagawa na i-edit ang itong proyekto pagkatapos na iyan.\nSigurado ka ba gusto mong magpatuloy?"
|
||||
text_permanent_delete_confirmation_checkbox_label: "I understand that this deletion cannot be reversed"
|
||||
text_permanent_remove_confirmation_checkbox_label: "I understand that this removal cannot be reversed"
|
||||
text_plugin_assets_writable: "Plugin asstes directory writable"
|
||||
text_powered_by: "Pinalatakbo ng %{link}"
|
||||
text_project_identifier_info: "Maliit na titik lamang (a-z), mga numero, mga dash at underscore ang pinahintulutan, dapat magsimula sa maliit na titik."
|
||||
|
||||
@@ -1510,7 +1510,8 @@ fr:
|
||||
not_a_datetime: "n'est pas une heure valide."
|
||||
not_a_number: "n'est pas un nombre."
|
||||
not_allowed: "est invalide en raison d’autorisations insuffisantes."
|
||||
not_json: "n'est pas un objet JSON valide."
|
||||
not_json: "is not parseable as JSON."
|
||||
not_json_object: "is not a JSON object."
|
||||
not_an_integer: "n'est pas un entier."
|
||||
not_an_iso_date: "n’est pas une date valide. Format requis : AAAA-MM-JJ."
|
||||
not_same_project: "n'appartient pas au même projet."
|
||||
@@ -2167,6 +2168,7 @@ fr:
|
||||
button_print: "Imprimer"
|
||||
button_quote: "Citer"
|
||||
button_remove: Supprimer
|
||||
button_remove_permanently: "Supprimer définitivement"
|
||||
button_remove_reminder: "Supprimer le rappel"
|
||||
button_rename: "Renommer"
|
||||
button_replace: "Remplacer"
|
||||
@@ -4721,6 +4723,7 @@ fr:
|
||||
Remarque : si cette option est activée, un badge indiquant l'état de votre installation s'affichera dans le panneau <a href="%{information_panel_path}">%{information_panel_label}</a> administration et sur la page d'accueil. Il n'est affiché que pour les administrateurs. <br/>Le badge vérifiera votre version actuelle d'OpenProject par rapport à la base de données officielle d'OpenProject pour vous avertir de toute mise à jour ou vulnérabilité connue. Pour plus d'informations sur ce que la vérification fournit, quelles données sont nécessaires pour fournir les mises à jour disponibles, et comment désactiver cette vérification, veuillez visiter <a href="%{more_info_url}">la documentation de configuration</a>.
|
||||
text_own_membership_delete_confirmation: "Vous êtes sur le point de retirer tout ou partie de vos permissions et ne pourrez peut-être plus modifier le projet par la suite.\nÊtes vous sûr de vouloir continuer?"
|
||||
text_permanent_delete_confirmation_checkbox_label: "Je comprends que cette suppression ne peut pas être annulée"
|
||||
text_permanent_remove_confirmation_checkbox_label: "I understand that this removal cannot be reversed"
|
||||
text_plugin_assets_writable: "Répertoire des « plugin assets » est accessible en écriture"
|
||||
text_powered_by: "Propulsé par %{link}"
|
||||
text_project_identifier_info: "Seulement les lettres en minuscule (a-z), les nombres, les tirets et les underscores sont autorisés, il est obligatoire de commencer avec une lettre en minuscule."
|
||||
|
||||
@@ -1530,7 +1530,8 @@ he:
|
||||
not_a_datetime: "is not a valid date time."
|
||||
not_a_number: "is not a number."
|
||||
not_allowed: "is invalid because of missing permissions."
|
||||
not_json: "is not a valid JSON object."
|
||||
not_json: "is not parseable as JSON."
|
||||
not_json_object: "is not a JSON object."
|
||||
not_an_integer: "is not an integer."
|
||||
not_an_iso_date: "is not a valid date. Required format: YYYY-MM-DD."
|
||||
not_same_project: "doesn't belong to the same project."
|
||||
@@ -2221,6 +2222,7 @@ he:
|
||||
button_print: "Print"
|
||||
button_quote: "צטט"
|
||||
button_remove: Remove
|
||||
button_remove_permanently: "Remove permanently"
|
||||
button_remove_reminder: "Remove reminder"
|
||||
button_rename: "שינוי שם"
|
||||
button_replace: "Replace"
|
||||
@@ -4821,6 +4823,7 @@ he:
|
||||
Note: if enabled, this will display a badge with your installation status in the <a href="%{information_panel_path}">%{information_panel_label}</a> administration panel, and on the home page. It is displayed to administrators only. <br/> The badge will check your current OpenProject version against the official OpenProject release database to alert you of any updates or known vulnerabilities. For more information on what the check provides, what data is needed to provide available updates, and how to disable this check, please visit <a href="%{more_info_url}">the configuration documentation</a>.
|
||||
text_own_membership_delete_confirmation: "You are about to remove some or all of your permissions and may no longer be able to edit this project after that.\nAre you sure you want to continue?"
|
||||
text_permanent_delete_confirmation_checkbox_label: "I understand that this deletion cannot be reversed"
|
||||
text_permanent_remove_confirmation_checkbox_label: "I understand that this removal cannot be reversed"
|
||||
text_plugin_assets_writable: "Plugin assets directory writable"
|
||||
text_powered_by: "Powered by %{link}"
|
||||
text_project_identifier_info: "Only lower case letters (a-z), numbers, dashes and underscores are allowed, must start with a lower case letter."
|
||||
|
||||
@@ -1510,7 +1510,8 @@ hi:
|
||||
not_a_datetime: "is not a valid date time."
|
||||
not_a_number: "is not a number."
|
||||
not_allowed: "अनुपलब्ध अनुमतियों के कारण अमांय है ।"
|
||||
not_json: "is not a valid JSON object."
|
||||
not_json: "is not parseable as JSON."
|
||||
not_json_object: "is not a JSON object."
|
||||
not_an_integer: "is not an integer."
|
||||
not_an_iso_date: "is not a valid date. Required format: YYYY-MM-DD."
|
||||
not_same_project: "doesn't belong to the same project."
|
||||
@@ -2167,6 +2168,7 @@ hi:
|
||||
button_print: "Print"
|
||||
button_quote: "उद्धरण"
|
||||
button_remove: Remove
|
||||
button_remove_permanently: "Remove permanently"
|
||||
button_remove_reminder: "Remove reminder"
|
||||
button_rename: "नाम बदलें"
|
||||
button_replace: "Replace"
|
||||
@@ -4721,6 +4723,7 @@ hi:
|
||||
Note: if enabled, this will display a badge with your installation status in the <a href="%{information_panel_path}">%{information_panel_label}</a> administration panel, and on the home page. It is displayed to administrators only. <br/> The badge will check your current OpenProject version against the official OpenProject release database to alert you of any updates or known vulnerabilities. For more information on what the check provides, what data is needed to provide available updates, and how to disable this check, please visit <a href="%{more_info_url}">the configuration documentation</a>.
|
||||
text_own_membership_delete_confirmation: "You are about to remove some or all of your permissions and may no longer be able to edit this project after that.\nAre you sure you want to continue?"
|
||||
text_permanent_delete_confirmation_checkbox_label: "I understand that this deletion cannot be reversed"
|
||||
text_permanent_remove_confirmation_checkbox_label: "I understand that this removal cannot be reversed"
|
||||
text_plugin_assets_writable: "Plugin assets directory writable"
|
||||
text_powered_by: "Powered by %{link}"
|
||||
text_project_identifier_info: "Only lower case letters (a-z), numbers, dashes and underscores are allowed, must start with a lower case letter."
|
||||
|
||||
@@ -1521,7 +1521,8 @@ hr:
|
||||
not_a_datetime: "is not a valid date time."
|
||||
not_a_number: "nije tip podataka number."
|
||||
not_allowed: "is invalid because of missing permissions."
|
||||
not_json: "is not a valid JSON object."
|
||||
not_json: "is not parseable as JSON."
|
||||
not_json_object: "is not a JSON object."
|
||||
not_an_integer: "nije tip podatka integer."
|
||||
not_an_iso_date: "is not a valid date. Required format: YYYY-MM-DD."
|
||||
not_same_project: "ne pripada istom projektu."
|
||||
@@ -2195,6 +2196,7 @@ hr:
|
||||
button_print: "Ispis"
|
||||
button_quote: "Citiraj"
|
||||
button_remove: Ukloni
|
||||
button_remove_permanently: "Remove permanently"
|
||||
button_remove_reminder: "Remove reminder"
|
||||
button_rename: "Preimenuj"
|
||||
button_replace: "Zamijeni"
|
||||
@@ -4772,6 +4774,7 @@ hr:
|
||||
Note: if enabled, this will display a badge with your installation status in the <a href="%{information_panel_path}">%{information_panel_label}</a> administration panel, and on the home page. It is displayed to administrators only. <br/> The badge will check your current OpenProject version against the official OpenProject release database to alert you of any updates or known vulnerabilities. For more information on what the check provides, what data is needed to provide available updates, and how to disable this check, please visit <a href="%{more_info_url}">the configuration documentation</a>.
|
||||
text_own_membership_delete_confirmation: "You are about to remove some or all of your permissions and may no longer be able to edit this project after that.\nAre you sure you want to continue?"
|
||||
text_permanent_delete_confirmation_checkbox_label: "I understand that this deletion cannot be reversed"
|
||||
text_permanent_remove_confirmation_checkbox_label: "I understand that this removal cannot be reversed"
|
||||
text_plugin_assets_writable: "Plugin assets directory writable"
|
||||
text_powered_by: "Powered by %{link}"
|
||||
text_project_identifier_info: "Only lower case letters (a-z), numbers, dashes and underscores are allowed, must start with a lower case letter."
|
||||
|
||||
@@ -1511,7 +1511,8 @@ hu:
|
||||
not_a_datetime: "ez nem érvényes dátum."
|
||||
not_a_number: "ez nem egy szám."
|
||||
not_allowed: "hiányzó engedélyek miatt érvénytelen."
|
||||
not_json: "is not a valid JSON object."
|
||||
not_json: "is not parseable as JSON."
|
||||
not_json_object: "is not a JSON object."
|
||||
not_an_integer: "ez nem egy szám."
|
||||
not_an_iso_date: "nem érvényes dátum. A szükséges formátum ÉÉÉÉ-HH-NN."
|
||||
not_same_project: "nem azonos projekthez tartozik."
|
||||
@@ -2168,6 +2169,7 @@ hu:
|
||||
button_print: "Nyomtatás"
|
||||
button_quote: "Idéz"
|
||||
button_remove: Eltávolítás
|
||||
button_remove_permanently: "Remove permanently"
|
||||
button_remove_reminder: "Remove reminder"
|
||||
button_rename: "Átnevezés"
|
||||
button_replace: "Csere"
|
||||
@@ -4721,6 +4723,7 @@ hu:
|
||||
Megjegyzés: ha engedélyezve van, akkor a telepítési állapotot jelző jelvény jelenik meg a <a href="%{information_panel_path}">%{information_panel_label} </a> adminisztrációs panelen és a kezdőlapon. Csak a rendszergazdák számára jelenik meg. <br/> A jelvény ellenőrzi az aktuális OpenProject verziót a hivatalos OpenProject kiadási adatbázishoz képest, hogy figyelmeztesse Önt minden frissítésre vagy ismert biztonsági résre. Ha többet szeretne megtudni arról, hogy mit tartalmaz az ellenőrzés, milyen adatokra van szükség az elérhető frissítésekhez, és hogyan tilthatja le ezt az ellenőrzést, keresse fel a <a href="%{more_info_url}"> konfigurációs dokumentációt </a>.
|
||||
text_own_membership_delete_confirmation: "Értesítem arról, hogy eltávolít néhány vagy az összes jogosultságot, és ezt követően már nem lehet szerkeszteni ezt a projektet. Biztosan folytatni kívánja?"
|
||||
text_permanent_delete_confirmation_checkbox_label: "I understand that this deletion cannot be reversed"
|
||||
text_permanent_remove_confirmation_checkbox_label: "I understand that this removal cannot be reversed"
|
||||
text_plugin_assets_writable: "Plugin eszközök könyvtára írható"
|
||||
text_powered_by: "Készítette %{link}"
|
||||
text_project_identifier_info: "Csak kisbetű (a-z), számok, kötőjelek és aláhúzásjelek van engedélyezve, és kisbetűvel kell kezdődnie."
|
||||
|
||||
@@ -1499,7 +1499,8 @@ id:
|
||||
not_a_datetime: "bukan tanggal waktu yang valid."
|
||||
not_a_number: "harus diisi angka."
|
||||
not_allowed: "tidak valid karena tidak ada izin."
|
||||
not_json: "is not a valid JSON object."
|
||||
not_json: "is not parseable as JSON."
|
||||
not_json_object: "is not a JSON object."
|
||||
not_an_integer: "harus bilangan bulat."
|
||||
not_an_iso_date: "is not a valid date. Required format: YYYY-MM-DD."
|
||||
not_same_project: "harus berasal dari proyek yang sama."
|
||||
@@ -2139,6 +2140,7 @@ id:
|
||||
button_print: "Cetak"
|
||||
button_quote: "Kutipan"
|
||||
button_remove: Remove
|
||||
button_remove_permanently: "Remove permanently"
|
||||
button_remove_reminder: "Remove reminder"
|
||||
button_rename: "Ubah nama"
|
||||
button_replace: "Ganti"
|
||||
@@ -4667,6 +4669,7 @@ id:
|
||||
Catatan: jika diaktifkan, ini akan menampilkan lencana dengan status pemasangan Anda di panel administrasi <a href="%{information_panel_path}">%{information_panel_label}</a>, dan di beranda. Ini hanya ditampilkan kepada administrator. <br/> Lencana akan memeriksa versi OpenProject Anda saat ini dengan database rilis OpenProject resmi untuk memberi tahu Anda tentang pembaruan atau kerentanan yang diketahui. Untuk informasi lebih lanjut tentang apa yang diberikan pemeriksaan, data apa yang diperlukan untuk menyediakan pembaruan yang tersedia, dan cara menonaktifkan pemeriksaan ini, silakan kunjungi <a href="%{more_info_url}">dokumentasi konfigurasi</a>.
|
||||
text_own_membership_delete_confirmation: "Anda akan menghapus hak akses Anda dan mungkin Anda tidak dapat lagi mengedit Project ini. Apakah Anda yakin Anda ingin melanjutkan?"
|
||||
text_permanent_delete_confirmation_checkbox_label: "I understand that this deletion cannot be reversed"
|
||||
text_permanent_remove_confirmation_checkbox_label: "I understand that this removal cannot be reversed"
|
||||
text_plugin_assets_writable: "Plugin aset direktori, bisa ditulisi"
|
||||
text_powered_by: "Didukung oleh %{link}"
|
||||
text_project_identifier_info: "Hanya huruf kecil (a-z), angka, garis dan garis bawah yang diperbolehkan, harus diawali dengan huruf kecil."
|
||||
|
||||
@@ -1509,7 +1509,8 @@ it:
|
||||
not_a_datetime: "non è un'orario valido."
|
||||
not_a_number: "non è un numero."
|
||||
not_allowed: "non è valido a causa di autorizzazioni assenti."
|
||||
not_json: "non è un oggetto JSON valido."
|
||||
not_json: "is not parseable as JSON."
|
||||
not_json_object: "is not a JSON object."
|
||||
not_an_integer: "non è un numero intero."
|
||||
not_an_iso_date: "non è una data valida. Formato richiesto: AAAA-MM-GG."
|
||||
not_same_project: "non appartiene allo stesso progetto."
|
||||
@@ -2166,6 +2167,7 @@ it:
|
||||
button_print: "Stampa"
|
||||
button_quote: "Cita"
|
||||
button_remove: Rimuovi
|
||||
button_remove_permanently: "Remove permanently"
|
||||
button_remove_reminder: "Rimuovi promemoria"
|
||||
button_rename: "Rinomina"
|
||||
button_replace: "Sostituisci"
|
||||
@@ -4720,6 +4722,7 @@ it:
|
||||
Nota: se abilitata questa opzione visualizzerà un badge con lo stato dell'installazione nel pannello di amministrazione di <a href="%{information_panel_path}">%{information_panel_label}</a> e sulla home page. Verrà visualizzata solo agli amministratori. <br/> il badge controllerà la tua attuale versione di OpenProject con l'ultima versione rilasciata per avvisarti di eventuali aggiornamenti o risoluzioni di vulnerabilità note. Per ulteriori informazioni sulle funzionalità offerte dal controllo, su quali dati è necessario fornire per ottenere gli aggiornamenti disponibili e su come disabilitare questo controllo, visita <a href="%{more_info_url}">la documentazione sulla configurazione</a>.
|
||||
text_own_membership_delete_confirmation: "Stai per rimuovere qualcuno o tutti i tuoi permessi e potresti non essere più in grado di modificare questo progetto dopo questo passo.\nSei sicuro di voler continuare?"
|
||||
text_permanent_delete_confirmation_checkbox_label: "Sono consapevole che questa cancellazione non può essere annullata"
|
||||
text_permanent_remove_confirmation_checkbox_label: "I understand that this removal cannot be reversed"
|
||||
text_plugin_assets_writable: "Cartella del pool di plugin installati scrivibile"
|
||||
text_powered_by: "Offerto da %{link}"
|
||||
text_project_identifier_info: "Solo le lettere minuscole (a-z), numeri, trattini e trattini bassi sono consentiti, devi iniziare con una lettera maiuscola."
|
||||
|
||||
@@ -107,17 +107,17 @@ ja:
|
||||
jemalloc_allocator: Jemalloc メモリアロケータ
|
||||
journal_aggregation:
|
||||
explanation:
|
||||
text: "ユーザーの個々のアクション(例えば、ワークパッケージを2回更新する)は、それらの年齢差が指定されたタイムスパン未満である場合、単一のアクションに集約されます。これらはアプリケーション内で1つのアクションとして表示されます。これはまた、送信されるメールの数を減らし、 %{webhook_link} の遅延にも影響します。"
|
||||
text: "ユーザーの個々のアクション (例:ワークパッケージを2回更新する)は、指定された時間範囲よりも時間差が小さい場合、単一のアクションに集約されます。 これらはアプリケーション内で単一のアクションとして表示されます。 これにより、送信されるメールの数が減少し、 %{webhook_link} の遅延にも影響します。"
|
||||
link: "webhook"
|
||||
scim_clients:
|
||||
authentication_methods:
|
||||
sso: "IDプロバイダーからのJWT"
|
||||
oauth2_client: "OAuth 2.0クライアント認証情報"
|
||||
sso: "アイデンティティプロバイダからのJWT"
|
||||
oauth2_client: "OAuth 2.0 クライアント資格情報"
|
||||
oauth2_token: "静的アクセストークン"
|
||||
created_client_credentials_dialog_component:
|
||||
title: "クライアント認証情報の作成"
|
||||
heading: "クライアント認証情報が生成されました"
|
||||
one_time_hint: "クライアント・シークレットが表示されるのはこの時だけです。必ずコピーしてください。"
|
||||
title: "クライアントの資格情報が作成されました"
|
||||
heading: "クライアントの資格情報が生成されました"
|
||||
one_time_hint: "クライアントのシークレットが表示される唯一の時間です。今すぐコピーしてください。"
|
||||
created_token_dialog_component:
|
||||
title: "トークンを作成しました"
|
||||
heading: "トークンが生成されました"
|
||||
@@ -130,21 +130,21 @@ ja:
|
||||
edit:
|
||||
label_delete_scim_client: "SCIM クライアントを削除"
|
||||
form:
|
||||
auth_provider_description: "これは、SCIM プロバイダによって追加されたユーザが OpenProject で認証するために使用するサービスです。"
|
||||
authentication_method_description_html: "これは SCIM クライアントが OpenProject で認証する方法です。OAuth トークンに<code>scim_v2</code>スコープが含まれていることを確認してください。"
|
||||
description: "これらの設定オプションの詳細については、[SCIMクライアントの設定に関する文書](docs_url)を参照してください。"
|
||||
auth_provider_description: "これは、SCIMプロバイダが追加したユーザーがOpenProjectでの認証に使用するサービスです。"
|
||||
authentication_method_description_html: "これは SCIM クライアントが OpenProject で認証する方法です。OAuth トークンに <code>scim_v2</code> スコープが含まれていることを確認してください。"
|
||||
description: "設定オプションの詳細については、[SCIM クライアントの設定に関するドキュメント](docs_url)を参照してください。"
|
||||
jwt_sub_description: "例えば、Keycloakの場合、これはSCIMクライアントに関連付けられたサービスアカウントのUUIDです。あなたのユースケースにあった Subject claim を見つける方法については [ドキュメント](docs_url) を参照してください。"
|
||||
name_description: "このクライアントが設定された理由を他の管理者が理解しやすい名前を選んでください。"
|
||||
name_description: "他の管理者がこのクライアントが設定された理由を理解するのに役立つ名前を選択してください。"
|
||||
index:
|
||||
description: "ここで設定された SCIM クライアントは、OpenProject SCIM サーバ API と対話し、ユーザアカウントやグループのプロビジョニング、更新、デプロビジョニングを行うことができます。"
|
||||
label_create_button: "SCIMクライアントの追加"
|
||||
description: "ここで設定されたSCIMクライアントは、OpenProjectのSCIMサーバー APIと相互作用して、ユーザーアカウントとグループのプロビジョニング、更新、およびデプロビジョニングを行うことができます。"
|
||||
label_create_button: "SCIMクライアントを追加"
|
||||
new:
|
||||
title: "新しいSCIMクライアント"
|
||||
revoke_static_token_dialog_component:
|
||||
confirm_button: "取り消す"
|
||||
title: "静的トークンの失効"
|
||||
heading: "このトークンを本当に取り消しますか?"
|
||||
description: "このトークンを使っている SCIM クライアントは、OpenProject の SCIM サーバ API にアクセスできなくなります。"
|
||||
title: "静的トークンを取り消す"
|
||||
heading: "このトークンを取り消してもよろしいですか?"
|
||||
description: "このトークンを使用する SCIM クライアントは、OpenProject の SCIM サーバ API にアクセスできなくなります。"
|
||||
table_component:
|
||||
blank_slate:
|
||||
title: "SCIMクライアントがまだ設定されていません"
|
||||
@@ -674,26 +674,26 @@ ja:
|
||||
other: "また、 %{shared_work_packages_link} はこのユーザーと共有されています。"
|
||||
remove_project_membership_or_work_package_shares_too: "直接のメンバーとしてのユーザーだけを削除したい(および共有を維持したい)、またはワークパッケージの共有も削除しますか?"
|
||||
will_remove_all_user_access_priveleges: "このメンバーを削除すると、プロジェクトへのユーザーのすべてのアクセス権が削除されます。ユーザーはまだサイトの一部として存在します。"
|
||||
will_remove_all_group_access_priveleges: "このメンバを削除すると、プロジェクトに対するグループのすべてのアクセス権が削除されます。グループはサイトの一部としてまだ存在します。"
|
||||
cannot_delete_inherited_membership: "このプロジェクトのメンバーであるグループに所属しているため、このメンバーを削除することはできません。"
|
||||
cannot_delete_inherited_membership_note_admin_html: "%{administration_settings_link}で、プロジェクトのメンバーとしてグループを削除することも、特定のメンバーをグループから削除することもできます。"
|
||||
cannot_delete_inherited_membership_note_non_admin: "プロジェクトのメンバーとしてグループを削除するか、管理者に連絡してこの特定のメンバーをグループから削除することができます。"
|
||||
will_remove_all_group_access_priveleges: "このメンバーを削除すると、グループのすべてのアクセス権がプロジェクトに削除されます。グループはサイトの一部として存在します。"
|
||||
cannot_delete_inherited_membership: "このメンバーはこのプロジェクトのメンバーであるグループに属しているため、削除できません。"
|
||||
cannot_delete_inherited_membership_note_admin_html: "プロジェクトのメンバーとしてグループを削除するか、 %{administration_settings_link} のグループからこの特定のメンバーを削除することができます。"
|
||||
cannot_delete_inherited_membership_note_non_admin: "プロジェクトのメンバーとしてグループを削除するか、管理者に問い合わせてグループから特定のメンバーを削除することができます。"
|
||||
delete_work_package_shares_dialog:
|
||||
title: "ワーク・パッケージ・シェアの破棄"
|
||||
title: "ワークパッケージの共有の取り消し"
|
||||
shared_with_this_user_html:
|
||||
other: "%{all_shared_work_packages_link} はこのユーザーと共有されています。"
|
||||
shared_with_this_group_html:
|
||||
other: "%{all_shared_work_packages_link} はこのグループと共有されています。"
|
||||
shared_with_permission_html:
|
||||
other: "%{shared_work_packages_link} のみが %{shared_role_name} 権限と共有されています。"
|
||||
revoke_all_or_with_role: "すべての共有ワークパッケージ、または %{shared_role_name} 権限を持つワークパッケージのみへのアクセス権を剥奪しますか?"
|
||||
will_not_affect_inherited_shares: "(これは、そのグループと共有しているワークパッケージには影響しません)。"
|
||||
cannot_remove_inherited: "グループで共有されたワークパッケージの共有は削除できません。"
|
||||
cannot_remove_inherited_with_role: "ロール %{shared_role_name} で共有されるワークパッケージは、グループを介して共有され、削除することはできません。"
|
||||
cannot_remove_inherited_note_admin_html: "%{administration_settings_link}、グループへの共有を取り消すか、グループからこの特定のメンバーを削除することができます。"
|
||||
cannot_remove_inherited_note_non_admin: "グループへの共有を取り消すか、管理者に連絡して特定のメンバーをグループから削除することができます。"
|
||||
will_revoke_directly_granted_access: "このアクションは、グループと共有されているワークパッケージ以外の、すべてのワークパッケージへのアクセス権を剥奪する。"
|
||||
will_revoke_access_to_all: "このアクションは、すべてのアクセス権を剥奪する。"
|
||||
revoke_all_or_with_role: "共有されたワークパッケージ、または %{shared_role_name} 権限を持つワークパッケージのみへのアクセスを取り消しますか?"
|
||||
will_not_affect_inherited_shares: "(これはグループと共有されているワークパッケージには影響しません)。"
|
||||
cannot_remove_inherited: "グループ間で共有されるワークパッケージは削除できません。"
|
||||
cannot_remove_inherited_with_role: "ワークパッケージとロール %{shared_role_name} が共有されているため、削除できません。"
|
||||
cannot_remove_inherited_note_admin_html: "あなたは、グループへの共有を取り消すか、 %{administration_settings_link} のグループからこの特定のメンバーを削除することができます。"
|
||||
cannot_remove_inherited_note_non_admin: "共有をグループに取り消すか、管理者に問い合わせてグループから特定のメンバーを削除することができます。"
|
||||
will_revoke_directly_granted_access: "このアクションは、すべてのユーザーへのアクセスを取り消しますが、グループと共有されているワークパッケージです。"
|
||||
will_revoke_access_to_all: "このアクションは、すべてのユーザーへのアクセスを取り消します。"
|
||||
my:
|
||||
access_token:
|
||||
dialog:
|
||||
@@ -715,7 +715,7 @@ ja:
|
||||
no_results_title_text: "現在、有効なアクセス トークンはありません。"
|
||||
notice_api_token_revoked: "APIトークンが削除されました。新しいトークンを作成するには、APIセクションの作成ボタンを使用してください。"
|
||||
notice_rss_token_revoked: "RSSトークンが削除されました。新しいトークンを作成するには、RSSセクションのリンクを使用してください。"
|
||||
notice_ical_token_revoked: 'プロジェクト "%{project_name}" のカレンダー "%{calendar_name}" の iCalendar トークン "%{token_name}" が失効しました。このトークンを持つiCalendar URLは無効になりました。'
|
||||
notice_ical_token_revoked: 'プロジェクト "%{token_name}" のカレンダー "%{calendar_name}" の iCalendar トークン "%{project_name}" が取り消されました。 このトークンのiCalendar URLは無効です。'
|
||||
news:
|
||||
index:
|
||||
no_results_title_text: 現在、報告するニュースはありません。
|
||||
@@ -733,7 +733,7 @@ ja:
|
||||
matrix_check_uncheck_all_in_col_label_html: "Toggle all %{module} permissions for <em>%{role}</em> role"
|
||||
users:
|
||||
autologins:
|
||||
prompt: "ログインしたまま %{num_days}"
|
||||
prompt: "%{num_days} のログインを維持"
|
||||
sessions:
|
||||
session_name: "%{browser_name} %{browser_version} の %{os_name}"
|
||||
browser: "ブラウザ"
|
||||
@@ -747,17 +747,17 @@ ja:
|
||||
current: "Current (this device)"
|
||||
title: "セッション管理"
|
||||
instructions: "You are logged in to your account through the following devices. Revoke sessions that you do not recognise or from devices you do not control."
|
||||
may_not_delete_current: "現在のセッションを削除することはできません。"
|
||||
may_not_delete_current: "現在のセッションは削除できません。"
|
||||
deletion_warning: "Are you sure you want to revoke this session? You will be logged out on this device."
|
||||
groups:
|
||||
member_in_these_groups: "このユーザーは現在以下のグループのメンバーです:"
|
||||
no_results_title_text: このユーザーは現在どのグループのメンバーでもありません。
|
||||
summary_with_more: '%{names} と %{count_link}のメンバー。'
|
||||
more: "%{count} もっと見る"
|
||||
summary: '%{names}のメンバー。'
|
||||
summary_with_more: '%{names} と %{count_link} のメンバー。'
|
||||
more: "%{count} 以上"
|
||||
summary: '%{names} のメンバー .'
|
||||
memberships:
|
||||
no_results_title_text: このユーザは現在プロジェクトのメンバーではありません。
|
||||
open_profile: "プロフィール"
|
||||
open_profile: "プロファイルを開く"
|
||||
invite_user_modal:
|
||||
invite: "招待"
|
||||
title:
|
||||
@@ -814,7 +814,7 @@ ja:
|
||||
placeholder_users:
|
||||
right_to_manage_members_missing: >
|
||||
プレースホルダーユーザを削除する権限がありません。 プレースホルダー ユーザーがメンバーであるすべてのプロジェクトのメンバーを管理する権利はありません。
|
||||
delete_tooltip: "プレースホルダー・ユーザーの削除"
|
||||
delete_tooltip: "プレースホルダー ユーザーを削除"
|
||||
deletion_info:
|
||||
heading: "プレースホルダー ユーザー %{name} を削除"
|
||||
data_consequences: >
|
||||
@@ -832,11 +832,11 @@ ja:
|
||||
reactions:
|
||||
action_title: "リアクト"
|
||||
add_reaction: "リアクションを追加"
|
||||
react_with: "%{reaction} と リアクト"
|
||||
and_user: "および %{user}"
|
||||
react_with: "%{reaction} で反応する"
|
||||
and_user: "と %{user}"
|
||||
and_others:
|
||||
other: と %{count} その他
|
||||
reaction_by: "%{reaction} によって"
|
||||
reaction_by: "%{reaction} による"
|
||||
reportings:
|
||||
index:
|
||||
no_results_title_text: 現在、ステータス報告はありません。
|
||||
@@ -847,19 +847,20 @@ ja:
|
||||
このステータスの色を割り当てたり変更する場合にクリックします。
|
||||
ステータスボタンに表示され、テーブル内のワークパッケージを強調表示するために使用できます。
|
||||
status_default_text: |-
|
||||
新しいワークパッケージは、デフォルトでこのタイプに設定される。読み取り専用にはできない。
|
||||
新しいワークパッケージはデフォルトでこのタイプに設定されています。読み取り専用にすることはできません。
|
||||
status_excluded_from_totals_text: |-
|
||||
このステータスを持つワークパッケージを、階層内の「作業」、「
|
||||
残作業」、「完了率」の合計から除外するには、このオプションをオンにします。
|
||||
このオプションをオンにすると、このステータスのワークパッケージを合計作業量、
|
||||
残作業量、および階層構造で完了させることができます。
|
||||
status_percent_complete_text: |-
|
||||
<a href="%{href}">ステータスベースの進捗計算モードでは</a>、このステータスが選択されると、作業
|
||||
パッケージの「完了%」が自動的にこの値に設定される。
|
||||
ワークベースモードでは無視される。
|
||||
status_readonly_html: |
|
||||
このステータスを持つワークパッケージを読み取り専用としてマークするには、このオプションをチェックする。
|
||||
ステータス以外の属性は変更できません。
|
||||
ワークパッケージを読み取り専用としてマークするには、このオプションをオンにしてください。
|
||||
ステータスを除いて変更することはできません。
|
||||
|
||||
<br>
|
||||
<strong>注意</strong>: 継承された値 (子やリレーションなど) は適用されます。
|
||||
<strong>メモ</strong>: 継承された値 (例えば、子や関連) が適用されます。
|
||||
index:
|
||||
no_results_title_text: 現在、ワークパッケージのステータスはありません。
|
||||
no_results_content_text: 新しいステータスを追加
|
||||
@@ -869,7 +870,7 @@ ja:
|
||||
is_readonly: "読み取り専用"
|
||||
excluded_from_totals: "合計から除外"
|
||||
themes:
|
||||
dark: "暗い"
|
||||
dark: "ダーク"
|
||||
light: "ライト"
|
||||
sync_with_os: "自動(OSのテーマ設定に追従)"
|
||||
types:
|
||||
@@ -987,15 +988,15 @@ ja:
|
||||
could_not_be_saved: "次のワークパッケージを保存できませんでした:"
|
||||
none_could_be_saved: "%{total} 作業パッケージのどれも更新できませんでした。"
|
||||
x_out_of_y_could_be_saved: "%{failing} の %{total} ワークパッケージのうち、 %{success} を更新できませんでした。"
|
||||
selected_because_descendants: "%{selected} のワークパッケージが選択されたが、合計 %{total} のワークパッケージが影響を受け、その中には子孫も含まれる。"
|
||||
descendant: "選択された子孫"
|
||||
selected_because_descendants: "%{selected} ワークパッケージが選択されている間、合計で %{total} ワークパッケージが子孫を含む影響を受けます。"
|
||||
descendant: "選択された子孫です"
|
||||
move:
|
||||
no_common_statuses_exists: "選択されたすべてのワークパッケージに利用できるステータスはありません。 それらの状態は変更できません。"
|
||||
unsupported_for_multiple_projects: "複数のプロジェクトからのワークパッケージの一括移動 / コピーはサポートされていません"
|
||||
current_type_not_available_in_target_project: >
|
||||
ワークパッケージの現在のタイプがターゲットプロジェクトで有効になっていません。変更しない場合は、ターゲットプロジェクトでタイプを有効にしてください。そうでない場合は、リストからターゲットプロジェクトで使用可能なタイプを選択してください。
|
||||
ターゲット プロジェクトで現在のワークパッケージのタイプが有効になっていません。 変更を行わないようにしたい場合は、対象プロジェクトのタイプを有効にしてください。 それ以外の場合は、リストからターゲット プロジェクトで使用可能なタイプを選択します。
|
||||
bulk_current_type_not_available_in_target_project: >
|
||||
ワークパッケージの現在のタイプがターゲットプロジェクトで有効になっていません。変更しない場合は、ターゲットプロジェクトでタイプを有効にしてください。そうでない場合は、リストからターゲットプロジェクトで使用可能なタイプを選択してください。
|
||||
現在のタイプのワークパッケージはターゲット プロジェクトで有効になっていません。 変更を行わないようにしたい場合は、対象プロジェクトのタイプを有効にしてください。 それ以外の場合は、リストからターゲット プロジェクトで使用可能なタイプを選択します。
|
||||
sharing:
|
||||
missing_workflow_warning:
|
||||
title: "ワークパッケージの共有のためのワークフローがありません"
|
||||
@@ -1020,9 +1021,9 @@ ja:
|
||||
no_results_title_text: 現在、有効なバージョンはありません。
|
||||
work_package_relations_tab:
|
||||
index:
|
||||
action_bar_title: "他のワークパッケージとのリレーションを追加して、それらの間にリンクを作成する。"
|
||||
no_results_title_text: 現在、利用可能な関係はない。
|
||||
blankslate_heading: "関係なし"
|
||||
action_bar_title: "他のワークパッケージにリレーションを追加して、その間にリンクを作成します。"
|
||||
no_results_title_text: 現在利用可能なリレーションはありません。
|
||||
blankslate_heading: "リレーションなし"
|
||||
blankslate_description: "このワークパッケージにはまだリレーションがありません。"
|
||||
label_add_child_button: "子要素"
|
||||
label_add_x: "%{x} を追加"
|
||||
@@ -1501,7 +1502,8 @@ ja:
|
||||
not_a_datetime: "は有効な日時ではありません。"
|
||||
not_a_number: "は数値にしてください。"
|
||||
not_allowed: "権限がないため無効です。"
|
||||
not_json: "は有効な JSON オブジェクトではありません。"
|
||||
not_json: "is not parseable as JSON."
|
||||
not_json_object: "is not a JSON object."
|
||||
not_an_integer: "は整数にしてください。"
|
||||
not_an_iso_date: "は有効な日付ではありません。必要な形式: YYYY-MM-dd。"
|
||||
not_same_project: "は同じプロジェクトに属していません。"
|
||||
@@ -2141,6 +2143,7 @@ ja:
|
||||
button_print: "印刷"
|
||||
button_quote: "引用"
|
||||
button_remove: 削除
|
||||
button_remove_permanently: "Remove permanently"
|
||||
button_remove_reminder: "リマインダーを削除"
|
||||
button_rename: "名称変更"
|
||||
button_replace: "置き換え"
|
||||
@@ -4672,6 +4675,7 @@ ja:
|
||||
602/5000 注:有効にすると、<a href="%{information_panel_path}">%{information_panel_label}</a>管理パネルとホームページに、インストールステータスのバッジが表示されます。 管理者のみに表示されます。 <br/>バッジは、最新のOpenProjectバージョンを公式のOpenProjectリリースデータベースと照合して、アップデートや既知の脆弱性について警告します。 チェックの内容、利用可能なアップデートを提供するために必要なデータ、およびこのチェックを無効にする方法の詳細については、<a href="%{more_info_url}">設定ドキュメント</a>をご覧ください。
|
||||
text_own_membership_delete_confirmation: "一部またはすべての権限を自分自身から剥奪しようとしているため、このプロジェクトを編集できなくなる可能性があります。\n本当に続けますか?"
|
||||
text_permanent_delete_confirmation_checkbox_label: "私は、この削除は取り消すことができないことを理解しています。"
|
||||
text_permanent_remove_confirmation_checkbox_label: "I understand that this removal cannot be reversed"
|
||||
text_plugin_assets_writable: "プラグインの「assets」ディレクトリが書き込み可能"
|
||||
text_powered_by: "Powered by %{link}"
|
||||
text_project_identifier_info: "アルファベット小文字(a-z)・数字・ハイフン・アンダースコアが使えます。アルファベット小文字で始まる必要があります。"
|
||||
|
||||
@@ -104,7 +104,7 @@ ca:
|
||||
button_save: "Desa"
|
||||
button_settings: "Configuració"
|
||||
button_uncheck_all: "Desmarca-ho tot"
|
||||
button_update: "Actualitzar"
|
||||
button_update: "Actualitza"
|
||||
button_export-atom: "Descarregar Atom"
|
||||
button_generate_pdf: "Generate PDF"
|
||||
button_create: "Crear"
|
||||
|
||||
@@ -138,7 +138,7 @@ de:
|
||||
description_available_columns: "Verfügbare Spalten"
|
||||
description_current_position: "Sie sind hier: "
|
||||
description_select_work_package: "Arbeitspaket #%{id} auswählen"
|
||||
description_subwork_package: "Unteraufgabe von Arbeitspaket #%{id}"
|
||||
description_subwork_package: "Kind von Arbeitspaket #%{id}"
|
||||
editor:
|
||||
revisions: "Lokale Änderungen anzeigen"
|
||||
no_revisions: "Keine lokalen Änderungen gefunden"
|
||||
@@ -454,7 +454,7 @@ de:
|
||||
label_total_progress: "%{percent}% Gesamtfortschritt"
|
||||
label_total_amount: "Gesamt: %{amount}"
|
||||
label_updated_on: "aktualisiert am"
|
||||
label_value_derived_from_children: "(aggregierter Wert von Unteraufgaben)"
|
||||
label_value_derived_from_children: "(aggregierter Wert von Kindelementen)"
|
||||
label_children_derived_duration: "Aggregierte Dauer der Unteraufgaben"
|
||||
label_warning: "Warnung"
|
||||
label_work_package: "Arbeitspaket"
|
||||
@@ -866,7 +866,7 @@ de:
|
||||
title: "Neues Arbeitspaket"
|
||||
header: "Neu: %{type}"
|
||||
header_no_type: "Neues Arbeitspaket (Typ noch nicht gesetzt)"
|
||||
header_with_parent: "Neu: %{type} (Unteraufgabe von %{parent_type} #%{id})"
|
||||
header_with_parent: "Neu: %{type} (Kind von %{parent_type} #%{id})"
|
||||
button: "Erstellen"
|
||||
duplicate:
|
||||
title: "Arbeitspaket duplizieren"
|
||||
@@ -1063,7 +1063,7 @@ de:
|
||||
single_text: "Sind Sie sicher, dass Sie das Arbeitspaket löschen möchten?"
|
||||
bulk_text: "Sind Sie sicher, dass Sie die folgenden %{label} löschen möchten?"
|
||||
has_children: "Dieses Arbeitspaket hat %{childUnits}:"
|
||||
confirm_deletion_children: "Ich bestätige, dass alle Unteraufgaben der hier aufgeführten Arbeitspakete rekursiv entfernt werden."
|
||||
confirm_deletion_children: "Ich bestätige, dass alle untergordneten Elemente der hier aufgeführten Arbeitspakete rekursiv entfernt werden."
|
||||
deletes_children: "Alle Unteraufgaben und deren Nachkommen werden auch rekursiv gelöscht."
|
||||
destroy_time_entry:
|
||||
title: "Löschen der Zeitbuchung bestätigen"
|
||||
|
||||
@@ -32,12 +32,12 @@ ja:
|
||||
draggable_hint: |
|
||||
埋め込み画像または添付ファイルをエディタにドラッグします。
|
||||
ドラッグしつづけると閉じているエディタ領域が開きます。
|
||||
quarantined_hint: "ウイルスが発見されたように、ファイルは隔離されています。ダウンロードできません。"
|
||||
quarantined_hint: "ウイルスが発見されたため,ファイルは隔離されています。ダウンロードできません。"
|
||||
autocomplete_ng_select:
|
||||
add_tag: "アイテムを追加"
|
||||
add_tag: "項目を追加"
|
||||
clear_all: "すべてクリア"
|
||||
loading: "読み込み中..."
|
||||
not_found: "アイテムが見つかりません"
|
||||
not_found: "見つかりませんでした"
|
||||
type_to_search: "検索キーワードを入力"
|
||||
autocomplete_select:
|
||||
placeholder:
|
||||
@@ -67,7 +67,7 @@ ja:
|
||||
button_back_to_list_view: "リスト表示に戻る"
|
||||
button_cancel: "キャンセル"
|
||||
button_close: "閉じる"
|
||||
button_change_project: "別のプロジェクトに移動"
|
||||
button_change_project: "他のプロジェクトに移る"
|
||||
button_check_all: "全てを選択"
|
||||
button_configure-form: "フォームを設定"
|
||||
button_confirm: "確認"
|
||||
@@ -75,7 +75,7 @@ ja:
|
||||
button_copy: "コピー"
|
||||
button_copy_to_clipboard: "クリップボードにコピー"
|
||||
button_copy_link_to_clipboard: "クリップボードにリンクをコピー"
|
||||
button_copy_to_other_project: "別のプロジェクトで複製"
|
||||
button_copy_to_other_project: "別のプロジェクトで複製する"
|
||||
button_custom-fields: "カスタムフィールド"
|
||||
button_delete: "削除"
|
||||
button_delete_watcher: "ウォッチャーを削除"
|
||||
@@ -97,7 +97,7 @@ ja:
|
||||
button_open_fullscreen: "全画面表示を開く"
|
||||
button_show_cards: "カードビュー表示"
|
||||
button_show_list: "リストビュー表示"
|
||||
button_show_table: "テーブルビューを表示"
|
||||
button_show_table: "テーブル表示"
|
||||
button_show_gantt: "ガントビューを表示"
|
||||
button_show_fullscreen: "全画面表示"
|
||||
button_more_actions: "その他の操作"
|
||||
@@ -107,7 +107,7 @@ ja:
|
||||
button_uncheck_all: "全てを選択解除"
|
||||
button_update: "更新"
|
||||
button_export-atom: "Atomをダウンロード"
|
||||
button_generate_pdf: "PDFを生成"
|
||||
button_generate_pdf: "PDF作成"
|
||||
button_create: "作成"
|
||||
card:
|
||||
add_new: "新規カード追加"
|
||||
@@ -141,8 +141,8 @@ ja:
|
||||
description_select_work_package: "ワークパッケージを選択 #%{id}"
|
||||
description_subwork_package: "ワークパッケージの子 #%{id}"
|
||||
editor:
|
||||
revisions: "ローカルの変更を表示"
|
||||
no_revisions: "ローカルの変更は見つかりませんでした"
|
||||
revisions: "ローカルの修正を表示"
|
||||
no_revisions: "ローカルでの修正は見つからず"
|
||||
preview: "プレビューモードの切り替え"
|
||||
source_code: "Markdown ソースモードの切り替え"
|
||||
error_saving_failed: "次のエラーで文書を保存するのに失敗しました: %{error}"
|
||||
@@ -155,7 +155,7 @@ ja:
|
||||
attribute_reference:
|
||||
macro_help_tooltip: "このテキストセグメントはマクロによって動的にレンダリングされています。"
|
||||
not_found: "要求されたリソースが見つかりませんでした"
|
||||
nested_macro: "このマクロは %{model} %{id} を再帰的に参照しています。"
|
||||
nested_macro: "このマクロは %{model} %{id}を再帰的に参照している。"
|
||||
invalid_attribute: "選択した属性 '%{name}' は存在しません。"
|
||||
child_pages:
|
||||
button: "子ページへのリンク"
|
||||
@@ -209,10 +209,10 @@ ja:
|
||||
calendar:
|
||||
empty_state_header: "休業日"
|
||||
empty_state_description: '休業日が定義されていません。「休業日を追加」ボタンをクリックして日付を追加してください。'
|
||||
new_date: "(新規)"
|
||||
new_date: "(新)"
|
||||
add_non_working_day: "休業日を追加"
|
||||
already_added_error: "この日付の非作業日はすでに存在します。それぞれの日付に1つの非作業日が作成されます。"
|
||||
change_button: "保存してスケジュールを変更"
|
||||
already_added_error: "この日付の非営業日はすでに存在します。一意の日付に対して作成できる非営業日は1つだけです。"
|
||||
change_button: "保存して再スケジュール"
|
||||
change_title: "営業日を変更する"
|
||||
removed_title: "以下の日を非稼働日リストから削除します:"
|
||||
change_description: "営業日とみなす曜日を変更すると、このサイト内のすべてのプロジェクトのすべてのワークパッケージの開始日と終了日に影響を与える可能性があります。"
|
||||
@@ -294,14 +294,14 @@ ja:
|
||||
ical_sharing_modal:
|
||||
title: "カレンダーを購読する"
|
||||
inital_setup_error_message: "データ取得中にエラーが発生しました。"
|
||||
description: "URL(iCalendar)を使って外部クライアントでこのカレンダーを購読し、そこから最新のワークパッケージ情報を見ることができます。"
|
||||
warning: "このURLを他のユーザーと共有しないでください。このリンクがあれば、誰でもアカウントやパスワードなしでワークパッケージの詳細を見ることができます。"
|
||||
token_name_label: "どこで使うのですか?"
|
||||
description: "URL(iCalendar)を使用して、外部クライアントでこのカレンダーを購読し、そこから最新の作業パッケージ情報を表示することができます。"
|
||||
warning: "このURLを他のユーザーと共有しないでください。このリンクを持つ誰でもアカウントやパスワードなしでワークパッケージの詳細を表示することができます。"
|
||||
token_name_label: "どこで使うのですか??"
|
||||
token_name_placeholder: '名前を入力してください。例:"電話"'
|
||||
token_name_description_text: 'If you subscribe to this calendar from multiple devices, this name will help you distinguish between them in your <a href="%{myAccessTokensUrl}" target="_blank">access tokens</a> list.'
|
||||
copy_url_label: "URLをコピー"
|
||||
ical_generation_error_text: "カレンダー URL の生成中にエラーが発生しました。"
|
||||
success_message: 'URL "%{name}" は正常にクリップボードにコピーされました。サブスクリプションを完了するためにカレンダークライアントに貼り付けてください。'
|
||||
ical_generation_error_text: "カレンダーのURL生成時にエラーが発生しました。"
|
||||
success_message: 'URL "%{name}" がクリップボードにコピーされました。カレンダークライアントに貼り付けて購読を完了してください。'
|
||||
label_activate: "有効にする"
|
||||
label_assignee: "担当者"
|
||||
label_assignee_alt_text: "This work package is assigned to %{name}"
|
||||
@@ -314,7 +314,7 @@ ja:
|
||||
label_add_row_before: "前に行を追加"
|
||||
label_add_selected_columns: "選択した列を追加"
|
||||
label_added_by: "追加した人"
|
||||
label_added_time_by: '<a href="%{authorLink}">%{author}</a> が %{age} に追加しました'
|
||||
label_added_time_by: '追加 <a href="%{authorLink}">%{author}</a> %{age}'
|
||||
label_ago: "○日前"
|
||||
label_all: "全て"
|
||||
label_all_projects: "すべてのプロジェクト"
|
||||
@@ -428,7 +428,7 @@ ja:
|
||||
label_report: "レポート"
|
||||
label_repository_plural: "リポジトリ"
|
||||
label_save_as: "名前をつけて保存"
|
||||
label_search_columns: "列を検索"
|
||||
label_search_columns: "列を検索する"
|
||||
label_select_watcher: "ウォッチャーを選択..."
|
||||
label_selected_filter_list: "選択されたフィルタ"
|
||||
label_show_attributes: "すべての属性を表示"
|
||||
@@ -466,8 +466,8 @@ ja:
|
||||
label_watch_work_package: "ワークパッケージをウォッチ"
|
||||
label_watcher_added_successfully: "ウォッチャーが正常に追加されました !"
|
||||
label_watcher_deleted_successfully: "ウォッチャーが正常に削除されました !"
|
||||
label_work_package_details_you_are_here: "あなたは %{tab} %{type} %{subject} のタブにいます。"
|
||||
label_work_package_context_menu: "ワークパッケージのコンテキスト メニュー"
|
||||
label_work_package_details_you_are_here: "あなたは %{type} %{subject}の %{tab} タブを表示しています。"
|
||||
label_work_package_context_menu: "作業パッケージのコンテキストメニュー"
|
||||
label_unwatch: "ウォッチしない"
|
||||
label_unwatch_work_package: "ワークパッケージのウォッチを削除"
|
||||
label_uploaded_by: "アップロードした人"
|
||||
@@ -498,7 +498,7 @@ ja:
|
||||
label_version_plural: "バージョン"
|
||||
label_view_has_changed: "このビューには未保存の変更があります。 クリックすると保存します。"
|
||||
help_texts:
|
||||
show_modal: "ヘルプテキストを表示"
|
||||
show_modal: "ヘルプテキストを表示する"
|
||||
onboarding:
|
||||
buttons:
|
||||
skip: "スキップ"
|
||||
@@ -506,7 +506,7 @@ ja:
|
||||
got_it: "了承"
|
||||
steps:
|
||||
help_menu: "ヘルプ(?)メニューは、<b>その他のヘルプリソースを</b>提供します。ここでは、ユーザーガイド、役立つハウツービデオなどを見つけることができます。 <br> OpenProjectでの作業をお楽しみください!"
|
||||
members: "新しい <b>メンバー</b> をプロジェクトに招待します。"
|
||||
members: "新しい<b>メンバーを</b>プロジェクトに招待する。"
|
||||
quick_add_button: "ヘッダーナビゲーションにあるプラス(+)アイコンをクリックして、<b>新規プロジェクトを作成</b>したり、<b>同僚を招待</b>したりできます。"
|
||||
sidebar_arrow: "プロジェクトの<b>メインメニューに</b>戻るには、左上の矢印を使います。"
|
||||
welcome: "3分間のイントロダクションツアーで、最も<b>重要な</b>機能を学びましょう。 <br> 最後までステップを完了することをお勧めします。ツアーはいつでも再開できます。"
|
||||
@@ -613,36 +613,36 @@ ja:
|
||||
work_package_commented: "すべての新着コメント"
|
||||
work_package_created: "新しいワークパッケージ"
|
||||
work_package_processed: "すべてのステータス変更"
|
||||
work_package_prioritized: "すべての優先度の変更"
|
||||
work_package_scheduled: "すべての日付の変更"
|
||||
work_package_prioritized: "すべての優先順位の変更"
|
||||
work_package_scheduled: "すべての日付変更"
|
||||
global:
|
||||
immediately:
|
||||
title: "参加"
|
||||
description: "自分が関与しているワークパッケージのすべてのアクティビティに関する通知(アサイニー、アカウンタブル、ウォッチャー)。"
|
||||
description: "自分が関与しているワークパッケージのすべてのアクティビティに関する通知(担当、責任、ウォッチャー)。"
|
||||
delayed:
|
||||
title: "不参加"
|
||||
description: "すべてのプロジェクトでのアクティビティの追加通知。"
|
||||
description: "全プロジェクトにおける活動の追加通知。"
|
||||
date_alerts:
|
||||
title: "日付アラート"
|
||||
description: "あなたが関与している(アサイニー、アカウンタブル、ウォッチャー)オープンワークパッケージの重要な日付が近づくと自動通知。"
|
||||
description: "あなたが関与している(担当、責任、ウォッチャー)オープンワークパッケージの重要な日付が近づくと自動通知。"
|
||||
overdue: 期限を過ぎた場合
|
||||
project_specific:
|
||||
title: "プロジェクト固有の通知設定"
|
||||
description: "これらのプロジェクト固有の設定は、上記のデフォルト設定を上書きする。"
|
||||
description: "これらのプロジェクト固有の設定は、上記のデフォルト設定を上書きします。"
|
||||
add: "プロジェクトの設定を追加する"
|
||||
already_selected: "このプロジェクトは既に選択されています"
|
||||
already_selected: "このプロジェクトはすでに選ばれている"
|
||||
remove: "プロジェクトの設定を削除する"
|
||||
password_confirmation:
|
||||
field_description: "この変更を確認するには、アカウントのパスワードを入力する必要があります。"
|
||||
title: "続行するにはパスワードを確認してください"
|
||||
pagination:
|
||||
no_other_page: "このページだけです。"
|
||||
pages_skipped: "ページがスキップされました。"
|
||||
pages_skipped: "ページスキップ。"
|
||||
page_navigation: "ページネーション・ナビゲーション"
|
||||
per_page_navigation: 'ページ毎のアイテム選択'
|
||||
pages:
|
||||
page_number: ページ %{number}
|
||||
show_per_page: ページあたり %{number} を表示
|
||||
show_per_page: ページごとに %{number}
|
||||
placeholders:
|
||||
default: "-"
|
||||
subject: "ここにタイトルを入力します"
|
||||
@@ -652,7 +652,7 @@ ja:
|
||||
project:
|
||||
autocompleter:
|
||||
label: "プロジェクト名の入力補完"
|
||||
click_to_switch_to_project: "プロジェクト: %{projectname}"
|
||||
click_to_switch_to_project: "プロジェクト: %{projectname}"
|
||||
context: "プロジェクトのコンテキスト"
|
||||
not_available: "プロジェクトなし"
|
||||
required_outside_context: >
|
||||
@@ -660,30 +660,30 @@ ja:
|
||||
reminders:
|
||||
settings:
|
||||
daily:
|
||||
add_time: "時間を追加"
|
||||
add_time: "時間を追加する"
|
||||
enable: "毎日のEメールリマインダーを有効にする"
|
||||
explanation: "このリマインダーは、未読の通知に対してのみ、指定した時間帯にのみ届きます。 %{no_time_zone}"
|
||||
no_time_zone: "アカウントにタイムゾーンを設定するまでは、時間はUTCで解釈されます。"
|
||||
time_label: "時間 %{counter}:"
|
||||
title: "未読の通知を毎日メールで通知する"
|
||||
title: "未読通知メールのリマインダーを毎日送信する"
|
||||
workdays:
|
||||
title: "これらの日にリマインダーメールを受け取る"
|
||||
immediate:
|
||||
title: "電子メールのリマインダーを送信"
|
||||
mentioned: "@mentionするとすぐに"
|
||||
personal_reminder: "個人的なリマインダーを受け取ったら直ちに"
|
||||
personal_reminder: "個人的なリマインダーを受け取ったとき"
|
||||
alerts:
|
||||
title: "その他の項目(ワークパッケージではないもの)に対する電子メールアラート"
|
||||
explanation: >
|
||||
本日の通知はワークパッケージに限定されています。これらのイベントが通知に含まれるようになるまで、Eメールアラートを受信し続けることを選択できます:
|
||||
news_added: "ニュースが追加されました。"
|
||||
news_commented: "ニュースへのコメント"
|
||||
document_added: "追加された書類"
|
||||
document_added: "ドキュメントの追加"
|
||||
forum_messages: "新しいフォーラムメッセージ"
|
||||
wiki_page_added: "Wikiページが追加されました。"
|
||||
wiki_page_updated: "Wikiページが更新されました。"
|
||||
membership_added: "メンバーシップが追加されました"
|
||||
membership_updated: "メンバーシップ更新"
|
||||
membership_added: "メンバーシップの追加"
|
||||
membership_updated: "メンバーシップの更新"
|
||||
title: "電子メールによるリマインダー"
|
||||
pause:
|
||||
label: "毎日のEメールリマインダーを一時停止する"
|
||||
@@ -1172,7 +1172,7 @@ ja:
|
||||
toggle_title: "ベースライン"
|
||||
clear: "クリア"
|
||||
apply: "適用"
|
||||
header_description: "過去のいずれかの時点からこのリストに加えられた変更を強調する。"
|
||||
header_description: "過去の選択した時点からこのリストに加えられた変更をハイライト"
|
||||
show_changes_since: "以降の変更を表示する"
|
||||
help_description: "ベースラインの基準タイムゾーン。"
|
||||
time_description: "現地時間: %{datetime}"
|
||||
|
||||
@@ -104,7 +104,7 @@
|
||||
button_save: "Lagre"
|
||||
button_settings: "Innstillinger"
|
||||
button_uncheck_all: "Avmerk alle"
|
||||
button_update: "Oppdater"
|
||||
button_update: "Oppdatèr"
|
||||
button_export-atom: "Last ned Atom"
|
||||
button_generate_pdf: "Generate PDF"
|
||||
button_create: "Opprett"
|
||||
|
||||
@@ -104,7 +104,7 @@ ro:
|
||||
button_save: "Salvează"
|
||||
button_settings: "Setări"
|
||||
button_uncheck_all: "Deselectează tot"
|
||||
button_update: "Actualizează"
|
||||
button_update: "Actualizare"
|
||||
button_export-atom: "Descarcă Atom"
|
||||
button_generate_pdf: "Generează PDF"
|
||||
button_create: "Creează"
|
||||
|
||||
@@ -104,7 +104,7 @@ ru:
|
||||
button_save: "Сохранить"
|
||||
button_settings: "Настройки"
|
||||
button_uncheck_all: "Снять все отметки"
|
||||
button_update: "Обновить"
|
||||
button_update: "Обновление"
|
||||
button_export-atom: "Скачать Atom"
|
||||
button_generate_pdf: "Создать PDF"
|
||||
button_create: "Создать"
|
||||
|
||||
@@ -1512,7 +1512,8 @@ ka:
|
||||
not_a_datetime: "is not a valid date time."
|
||||
not_a_number: "is not a number."
|
||||
not_allowed: "is invalid because of missing permissions."
|
||||
not_json: "is not a valid JSON object."
|
||||
not_json: "is not parseable as JSON."
|
||||
not_json_object: "is not a JSON object."
|
||||
not_an_integer: "is not an integer."
|
||||
not_an_iso_date: "is not a valid date. Required format: YYYY-MM-DD."
|
||||
not_same_project: "doesn't belong to the same project."
|
||||
@@ -2169,6 +2170,7 @@ ka:
|
||||
button_print: "ბეჭდვა"
|
||||
button_quote: "ციტატა"
|
||||
button_remove: წაშლა
|
||||
button_remove_permanently: "Remove permanently"
|
||||
button_remove_reminder: "Remove reminder"
|
||||
button_rename: "გადარქმევა"
|
||||
button_replace: "ჩანაცვლება"
|
||||
@@ -4723,6 +4725,7 @@ ka:
|
||||
Note: if enabled, this will display a badge with your installation status in the <a href="%{information_panel_path}">%{information_panel_label}</a> administration panel, and on the home page. It is displayed to administrators only. <br/> The badge will check your current OpenProject version against the official OpenProject release database to alert you of any updates or known vulnerabilities. For more information on what the check provides, what data is needed to provide available updates, and how to disable this check, please visit <a href="%{more_info_url}">the configuration documentation</a>.
|
||||
text_own_membership_delete_confirmation: "You are about to remove some or all of your permissions and may no longer be able to edit this project after that.\nAre you sure you want to continue?"
|
||||
text_permanent_delete_confirmation_checkbox_label: "I understand that this deletion cannot be reversed"
|
||||
text_permanent_remove_confirmation_checkbox_label: "I understand that this removal cannot be reversed"
|
||||
text_plugin_assets_writable: "Plugin assets directory writable"
|
||||
text_powered_by: "Powered by %{link}"
|
||||
text_project_identifier_info: "Only lower case letters (a-z), numbers, dashes and underscores are allowed, must start with a lower case letter."
|
||||
|
||||
@@ -1512,7 +1512,8 @@ kk:
|
||||
not_a_datetime: "is not a valid date time."
|
||||
not_a_number: "is not a number."
|
||||
not_allowed: "is invalid because of missing permissions."
|
||||
not_json: "is not a valid JSON object."
|
||||
not_json: "is not parseable as JSON."
|
||||
not_json_object: "is not a JSON object."
|
||||
not_an_integer: "is not an integer."
|
||||
not_an_iso_date: "is not a valid date. Required format: YYYY-MM-DD."
|
||||
not_same_project: "doesn't belong to the same project."
|
||||
@@ -2169,6 +2170,7 @@ kk:
|
||||
button_print: "Print"
|
||||
button_quote: "Quote"
|
||||
button_remove: Remove
|
||||
button_remove_permanently: "Remove permanently"
|
||||
button_remove_reminder: "Remove reminder"
|
||||
button_rename: "Rename"
|
||||
button_replace: "Replace"
|
||||
@@ -4723,6 +4725,7 @@ kk:
|
||||
Note: if enabled, this will display a badge with your installation status in the <a href="%{information_panel_path}">%{information_panel_label}</a> administration panel, and on the home page. It is displayed to administrators only. <br/> The badge will check your current OpenProject version against the official OpenProject release database to alert you of any updates or known vulnerabilities. For more information on what the check provides, what data is needed to provide available updates, and how to disable this check, please visit <a href="%{more_info_url}">the configuration documentation</a>.
|
||||
text_own_membership_delete_confirmation: "You are about to remove some or all of your permissions and may no longer be able to edit this project after that.\nAre you sure you want to continue?"
|
||||
text_permanent_delete_confirmation_checkbox_label: "I understand that this deletion cannot be reversed"
|
||||
text_permanent_remove_confirmation_checkbox_label: "I understand that this removal cannot be reversed"
|
||||
text_plugin_assets_writable: "Plugin assets directory writable"
|
||||
text_powered_by: "Powered by %{link}"
|
||||
text_project_identifier_info: "Only lower case letters (a-z), numbers, dashes and underscores are allowed, must start with a lower case letter."
|
||||
|
||||
@@ -1503,7 +1503,8 @@ ko:
|
||||
not_a_datetime: "은(는) 유효한 날짜가 아닙니다."
|
||||
not_a_number: "은(는) 숫자가 아닙니다."
|
||||
not_allowed: "- 사용 권한이 없어 유효하지 않습니다."
|
||||
not_json: "- 유효한 JSON 개체가 아닙니다."
|
||||
not_json: "is not parseable as JSON."
|
||||
not_json_object: "is not a JSON object."
|
||||
not_an_integer: "은(는) 정수가 아닙니다."
|
||||
not_an_iso_date: "은(는) 유효한 날짜가 아닙니다. 필요한 형식: YYYY-MM-DD."
|
||||
not_same_project: "은(는) 동일한 프로젝트에 속하지 않습니다."
|
||||
@@ -2143,6 +2144,7 @@ ko:
|
||||
button_print: "인쇄"
|
||||
button_quote: "인용"
|
||||
button_remove: 제거
|
||||
button_remove_permanently: "Remove permanently"
|
||||
button_remove_reminder: "미리 알림 제거"
|
||||
button_rename: "이름 바꾸기"
|
||||
button_replace: "교체하기"
|
||||
@@ -4671,6 +4673,7 @@ ko:
|
||||
참고: 활성화하는 경우, <a href="%{information_panel_path}">%{information_panel_label}</a> 관리 패널 및 홈페이지에서 설치 상태가 나오는 배지가 표시됩니다. 배지는 관리자에게만 표시됩니다. <br/> 배지는 공식 OpenProject 릴리스 데이터베이스와 비교하여 현재 OpenProject 버전을 확인하고 업데이트 또는 알려진 취약성에 대해 알려줍니다. 이 검사에서 제공하는 사항, 사용 가능한 업데이트를 제공하기 위해 필요한 데이터 및 이 검사를 비활성화하는 방법에 대한 자세한 내용은 <a href="%{more_info_url}">구성 문서</a>를 참조하십시오.
|
||||
text_own_membership_delete_confirmation: "권한의 일부 또는 전부를 삭제하려고 합니다. 이렇게 한 후에는 이 프로젝트를 더 이상 편집하지 못할 수 있습니다.\n계속하시겠습니까?"
|
||||
text_permanent_delete_confirmation_checkbox_label: "이 삭제는 되돌릴 수 없음을 이해합니다."
|
||||
text_permanent_remove_confirmation_checkbox_label: "I understand that this removal cannot be reversed"
|
||||
text_plugin_assets_writable: "플러그인 자산 디렉터리 쓰기 가능"
|
||||
text_powered_by: "%{link} 제공"
|
||||
text_project_identifier_info: "소문자(a-z), 숫자, 대시(-) 및 밑줄(_)만 허용됩니다. 소문자로 시작해야 합니다."
|
||||
|
||||
@@ -1527,7 +1527,8 @@ lt:
|
||||
not_a_datetime: "nėra tinkama data ir laikas."
|
||||
not_a_number: "nėra skaičius."
|
||||
not_allowed: "netinkamas dėl trūkstamų teisių."
|
||||
not_json: "is not a valid JSON object."
|
||||
not_json: "is not parseable as JSON."
|
||||
not_json_object: "is not a JSON object."
|
||||
not_an_integer: "nėra sveikasis skaičius."
|
||||
not_an_iso_date: "nėra tinkama data. Reikalingas formatas: YYYY-MM-DD."
|
||||
not_same_project: "nepriklauso tam pačiam projektui."
|
||||
@@ -2218,6 +2219,7 @@ lt:
|
||||
button_print: "Spausdinti"
|
||||
button_quote: "Cituoti"
|
||||
button_remove: Pašalinti
|
||||
button_remove_permanently: "Remove permanently"
|
||||
button_remove_reminder: "Remove reminder"
|
||||
button_rename: "Pervardinti"
|
||||
button_replace: "Pakeisti"
|
||||
@@ -4815,6 +4817,7 @@ lt:
|
||||
Pastaba: įjungus bus rodomas ženkliukas su jūsų diegimo būsena <a href="%{information_panel_path}">%{information_panel_label}</a> administravimo skydelyje. Rodoma tik administratoriams. <br/> Ženkliukas palygins jūsų OpenProject versiją su oficialia OpenProject laidų duomenų baze ir praneš, jei yra atnaujinimų dėl žinomų saugumo problemų. Daugiau informacijos, ką daro šis tikrinimas, kokią reikia pateikti informaciją ir kaip šį tikrinimą išjungti, rasite <a href="%{more_info_url}">konfigūravimo dokumentacijoje</a>.
|
||||
text_own_membership_delete_confirmation: "Jūs ketinate pašalinti keletą ar visus leidimus ir gali būti, kad nebegalėsite redaguoti šio projekto po to.\nAr jūs tikrai norite tęsti?"
|
||||
text_permanent_delete_confirmation_checkbox_label: "I understand that this deletion cannot be reversed"
|
||||
text_permanent_remove_confirmation_checkbox_label: "I understand that this removal cannot be reversed"
|
||||
text_plugin_assets_writable: "Į papildinių katalogą galima rašyti"
|
||||
text_powered_by: "Parengta pagal %{link}"
|
||||
text_project_identifier_info: "Leidžiamos tik mažosios raidės (a-z), skaitmenys, paprasti (-) ir žemi brūkšneliai (_). Taip pat privalo prasidėti mažąja raide."
|
||||
|
||||
@@ -1521,7 +1521,8 @@ lv:
|
||||
not_a_datetime: "is not a valid date time."
|
||||
not_a_number: "nav skaitlis."
|
||||
not_allowed: "is invalid because of missing permissions."
|
||||
not_json: "is not a valid JSON object."
|
||||
not_json: "is not parseable as JSON."
|
||||
not_json_object: "is not a JSON object."
|
||||
not_an_integer: "nav vesels skaitlis."
|
||||
not_an_iso_date: "is not a valid date. Required format: YYYY-MM-DD."
|
||||
not_same_project: "neietilpst vienā un tai pašā projektā."
|
||||
@@ -2195,6 +2196,7 @@ lv:
|
||||
button_print: "Drukāt"
|
||||
button_quote: "Citēt"
|
||||
button_remove: Noņemt
|
||||
button_remove_permanently: "Remove permanently"
|
||||
button_remove_reminder: "Remove reminder"
|
||||
button_rename: "Rename"
|
||||
button_replace: "Replace"
|
||||
@@ -4772,6 +4774,7 @@ lv:
|
||||
Note: if enabled, this will display a badge with your installation status in the <a href="%{information_panel_path}">%{information_panel_label}</a> administration panel, and on the home page. It is displayed to administrators only. <br/> The badge will check your current OpenProject version against the official OpenProject release database to alert you of any updates or known vulnerabilities. For more information on what the check provides, what data is needed to provide available updates, and how to disable this check, please visit <a href="%{more_info_url}">the configuration documentation</a>.
|
||||
text_own_membership_delete_confirmation: "You are about to remove some or all of your permissions and may no longer be able to edit this project after that.\nAre you sure you want to continue?"
|
||||
text_permanent_delete_confirmation_checkbox_label: "I understand that this deletion cannot be reversed"
|
||||
text_permanent_remove_confirmation_checkbox_label: "I understand that this removal cannot be reversed"
|
||||
text_plugin_assets_writable: "Plugin assets directory writable"
|
||||
text_powered_by: "Darbojas uz %{link}"
|
||||
text_project_identifier_info: "Only lower case letters (a-z), numbers, dashes and underscores are allowed, must start with a lower case letter."
|
||||
|
||||
@@ -1512,7 +1512,8 @@ mn:
|
||||
not_a_datetime: "is not a valid date time."
|
||||
not_a_number: "is not a number."
|
||||
not_allowed: "is invalid because of missing permissions."
|
||||
not_json: "is not a valid JSON object."
|
||||
not_json: "is not parseable as JSON."
|
||||
not_json_object: "is not a JSON object."
|
||||
not_an_integer: "is not an integer."
|
||||
not_an_iso_date: "is not a valid date. Required format: YYYY-MM-DD."
|
||||
not_same_project: "doesn't belong to the same project."
|
||||
@@ -2169,6 +2170,7 @@ mn:
|
||||
button_print: "Print"
|
||||
button_quote: "Quote"
|
||||
button_remove: Remove
|
||||
button_remove_permanently: "Remove permanently"
|
||||
button_remove_reminder: "Remove reminder"
|
||||
button_rename: "Rename"
|
||||
button_replace: "Replace"
|
||||
@@ -4723,6 +4725,7 @@ mn:
|
||||
Note: if enabled, this will display a badge with your installation status in the <a href="%{information_panel_path}">%{information_panel_label}</a> administration panel, and on the home page. It is displayed to administrators only. <br/> The badge will check your current OpenProject version against the official OpenProject release database to alert you of any updates or known vulnerabilities. For more information on what the check provides, what data is needed to provide available updates, and how to disable this check, please visit <a href="%{more_info_url}">the configuration documentation</a>.
|
||||
text_own_membership_delete_confirmation: "You are about to remove some or all of your permissions and may no longer be able to edit this project after that.\nAre you sure you want to continue?"
|
||||
text_permanent_delete_confirmation_checkbox_label: "I understand that this deletion cannot be reversed"
|
||||
text_permanent_remove_confirmation_checkbox_label: "I understand that this removal cannot be reversed"
|
||||
text_plugin_assets_writable: "Plugin assets directory writable"
|
||||
text_powered_by: "Powered by %{link}"
|
||||
text_project_identifier_info: "Only lower case letters (a-z), numbers, dashes and underscores are allowed, must start with a lower case letter."
|
||||
|
||||
@@ -1501,7 +1501,8 @@ ms:
|
||||
not_a_datetime: "bukan tarikh masa yang sah."
|
||||
not_a_number: "bukan nombor."
|
||||
not_allowed: "adalah tidak sah kerana kekurangan kebenaran."
|
||||
not_json: "bukan objek JSON yang sah."
|
||||
not_json: "is not parseable as JSON."
|
||||
not_json_object: "is not a JSON object."
|
||||
not_an_integer: "bukan sebuah integer."
|
||||
not_an_iso_date: "bukan tarikh yang sah. Format yang diperlukan: TTTT-BB-HH."
|
||||
not_same_project: "tidak tergolong dalam projek yang sama."
|
||||
@@ -2141,6 +2142,7 @@ ms:
|
||||
button_print: "Cetak"
|
||||
button_quote: "Petikan"
|
||||
button_remove: Keluarkan
|
||||
button_remove_permanently: "Remove permanently"
|
||||
button_remove_reminder: "Buang peringatan"
|
||||
button_rename: "Namakan semula"
|
||||
button_replace: "Gantikan"
|
||||
@@ -4671,6 +4673,7 @@ ms:
|
||||
Perhatian: jika dibenarkan, ini akan paparkan lambang bersertaan status pemasangan di <a href="%{information_panel_path}">%{information_panel_label}</a> panel pentadbiran, dan di halaman utama. Ia hanya akan dipaparkan ke para pentadbir sahaja. <br/> Lambang tersebut akan menyemak versi OpenProject terkini anda terhadap pangkalan data keluaran rasmi OpenProject untuk memaklumkan anda tentang sebarang kemas kini atau kelemahan yang diketahui. Untuk maklumat lanjut bagi penyediaan semakan, data apa yang diperlukan untuk menyediakan kemas kini tersedia, dan bagaimana untuk menyahaktifkan semakan ini, sila kunjungi <a href="%{more_info_url}">dokumentasi konfigurasi</a>.
|
||||
text_own_membership_delete_confirmation: "Anda akan mengeluarkan beberapa atau semua kebenaran anda dan mungkin tidak lagi dapat mengedit projek ini selepas itu.\nAdakah anda pasti anda ingin teruskan?"
|
||||
text_permanent_delete_confirmation_checkbox_label: "I understand that this deletion cannot be reversed"
|
||||
text_permanent_remove_confirmation_checkbox_label: "I understand that this removal cannot be reversed"
|
||||
text_plugin_assets_writable: "Aset plugin direktori yang boleh ditulis"
|
||||
text_powered_by: "Dikuasakan oleh %{link}"
|
||||
text_project_identifier_info: "Hanya huruf kecil (a-z), nombor, sengkang dan tanda garis bawah adalah dibenarkan, mesti mula dengan huruf kecil."
|
||||
|
||||
@@ -1512,7 +1512,8 @@ ne:
|
||||
not_a_datetime: "is not a valid date time."
|
||||
not_a_number: "is not a number."
|
||||
not_allowed: "is invalid because of missing permissions."
|
||||
not_json: "is not a valid JSON object."
|
||||
not_json: "is not parseable as JSON."
|
||||
not_json_object: "is not a JSON object."
|
||||
not_an_integer: "is not an integer."
|
||||
not_an_iso_date: "is not a valid date. Required format: YYYY-MM-DD."
|
||||
not_same_project: "doesn't belong to the same project."
|
||||
@@ -2169,6 +2170,7 @@ ne:
|
||||
button_print: "Print"
|
||||
button_quote: "Quote"
|
||||
button_remove: Remove
|
||||
button_remove_permanently: "Remove permanently"
|
||||
button_remove_reminder: "Remove reminder"
|
||||
button_rename: "Rename"
|
||||
button_replace: "Replace"
|
||||
@@ -4723,6 +4725,7 @@ ne:
|
||||
Note: if enabled, this will display a badge with your installation status in the <a href="%{information_panel_path}">%{information_panel_label}</a> administration panel, and on the home page. It is displayed to administrators only. <br/> The badge will check your current OpenProject version against the official OpenProject release database to alert you of any updates or known vulnerabilities. For more information on what the check provides, what data is needed to provide available updates, and how to disable this check, please visit <a href="%{more_info_url}">the configuration documentation</a>.
|
||||
text_own_membership_delete_confirmation: "You are about to remove some or all of your permissions and may no longer be able to edit this project after that.\nAre you sure you want to continue?"
|
||||
text_permanent_delete_confirmation_checkbox_label: "I understand that this deletion cannot be reversed"
|
||||
text_permanent_remove_confirmation_checkbox_label: "I understand that this removal cannot be reversed"
|
||||
text_plugin_assets_writable: "Plugin assets directory writable"
|
||||
text_powered_by: "Powered by %{link}"
|
||||
text_project_identifier_info: "Only lower case letters (a-z), numbers, dashes and underscores are allowed, must start with a lower case letter."
|
||||
|
||||
@@ -1508,7 +1508,8 @@ nl:
|
||||
not_a_datetime: "is geen geldige datum tijd."
|
||||
not_a_number: "is geen getal."
|
||||
not_allowed: "is ongeldig vanwege ontbrekende machtigingen."
|
||||
not_json: "is not a valid JSON object."
|
||||
not_json: "is not parseable as JSON."
|
||||
not_json_object: "is not a JSON object."
|
||||
not_an_integer: "is niet een geheel getal."
|
||||
not_an_iso_date: "is geen geldige datum. Vereist formaat: JJJJ-MM-DD."
|
||||
not_same_project: "hoort niet bij hetzelfde project."
|
||||
@@ -2165,6 +2166,7 @@ nl:
|
||||
button_print: "Afdrukken"
|
||||
button_quote: "Citeer"
|
||||
button_remove: Verwijder
|
||||
button_remove_permanently: "Remove permanently"
|
||||
button_remove_reminder: "Remove reminder"
|
||||
button_rename: "Naam wijzigen"
|
||||
button_replace: "Vervang"
|
||||
@@ -4718,6 +4720,7 @@ nl:
|
||||
Opmerking: indien ingeschakeld zal dit een badge weergeven met uw installatiestatus in de <a href="%{information_panel_path}">%{information_panel_label}</a> administratie paneel, en op de homepage. Deze wordt alleen getoond aan beheerders. <br/> De badge zal uw huidige OpenProject versie controleren tegen de officiële OpenProject-database om u te waarschuwen voor updates of bekende kwetsbaarheden. Voor meer informatie over wat de controle biedt, welke gegevens nodig zijn om beschikbare updates te verstrekken en hoe deze controle kan worden uitgeschakeld, bezoek <a href="%{more_info_url}">de configuratiedocumentatie</a>.
|
||||
text_own_membership_delete_confirmation: "U staat op het punt om enkele of alle van uw machtigingen te verwijderen en kan dit project daarna mogelijk niet meer bewerken.\nWeet u zeker dat u wilt doorgaan?"
|
||||
text_permanent_delete_confirmation_checkbox_label: "I understand that this deletion cannot be reversed"
|
||||
text_permanent_remove_confirmation_checkbox_label: "I understand that this removal cannot be reversed"
|
||||
text_plugin_assets_writable: "Plugin directory schrijfbaar"
|
||||
text_powered_by: "Powered by %{link}"
|
||||
text_project_identifier_info: "Alleen kleine letters (a-z), cijfers, streepjes en underscores (_) zijn toegestaan, moet beginnen met een kleine letter."
|
||||
|
||||
@@ -1511,7 +1511,8 @@
|
||||
not_a_datetime: "er ikke et gyldig tidspunkt for datoen."
|
||||
not_a_number: "er ikke et tall."
|
||||
not_allowed: "er ugyldig på grunn av manglende tillatelser."
|
||||
not_json: "is not a valid JSON object."
|
||||
not_json: "is not parseable as JSON."
|
||||
not_json_object: "is not a JSON object."
|
||||
not_an_integer: "er ikke et heltall."
|
||||
not_an_iso_date: "er ikke en gyldig dato. Påkrevd format: ÅÅÅÅ-MM-DD."
|
||||
not_same_project: "hører ikke til samme prosjekt."
|
||||
@@ -2168,6 +2169,7 @@
|
||||
button_print: "Skriv ut"
|
||||
button_quote: "Sitèr"
|
||||
button_remove: Fjern
|
||||
button_remove_permanently: "Remove permanently"
|
||||
button_remove_reminder: "Remove reminder"
|
||||
button_rename: "Endre navn"
|
||||
button_replace: "Erstatt"
|
||||
@@ -4722,6 +4724,7 @@
|
||||
Merk: Hvis aktivert, vil dette vise et merke med din installasjonsstatus i <a href="%{information_panel_path}">%{information_panel_label}</a> administrasjonspanel, og på hjemmesiden. Det er kun vist til administratorer. <br/> Merket sjekker din nåværende OpenProject versjon mot den offisielle OpenProject utgivelsesdatabasen for å varsle deg om oppdateringer og kjente sårbarheter. For mer informasjon om hva som finnes av kontrollen, hvilke data som er nødvendig for å framskaffe tilgjengelige oppdateringer, og hvordan denne sjekken kan deaktiveres, besøk <a href="%{more_info_url}">konfigurasjonsdokumentasjonen</a>.
|
||||
text_own_membership_delete_confirmation: "Du er i ferd med å fjerne noen eller alle dine egne rettigheter og du vil kanskje ikke kunne redigere dette prosjektet etterpå.\nEr du sikker på at du vil fortsette?"
|
||||
text_permanent_delete_confirmation_checkbox_label: "I understand that this deletion cannot be reversed"
|
||||
text_permanent_remove_confirmation_checkbox_label: "I understand that this removal cannot be reversed"
|
||||
text_plugin_assets_writable: "Mappen for programtillegg er skrivbar"
|
||||
text_powered_by: "Driftes med %{link}"
|
||||
text_project_identifier_info: "Kun små bokstaver (a-z), tall, bindestrek og understrek er tillatt. Første tegn må være liten bokstav."
|
||||
|
||||
@@ -1526,7 +1526,8 @@ pl:
|
||||
not_a_datetime: "nie jest poprawną datą i czasem."
|
||||
not_a_number: "nie jest liczbą."
|
||||
not_allowed: "jest nieprawidłowy ze względu na brak uprawnień."
|
||||
not_json: "nie jest prawidłowym obiektem JSON."
|
||||
not_json: "is not parseable as JSON."
|
||||
not_json_object: "is not a JSON object."
|
||||
not_an_integer: "nie jest liczbą całkowitą."
|
||||
not_an_iso_date: "wprowadzono nieprawidłową datę. Wymagany format: RRRR-MM-DD."
|
||||
not_same_project: "nie należy do tego samego projektu."
|
||||
@@ -2217,6 +2218,7 @@ pl:
|
||||
button_print: "Drukuj"
|
||||
button_quote: "Cytat"
|
||||
button_remove: Usuń
|
||||
button_remove_permanently: "Remove permanently"
|
||||
button_remove_reminder: "Usuń przypomnienie"
|
||||
button_rename: "Zmień nazwę"
|
||||
button_replace: "Zastąp"
|
||||
@@ -4814,6 +4816,7 @@ pl:
|
||||
Uwaga: jeśli opcja jest włączona, w panelu administracyjnym <a href="%{information_panel_path}">%{information_panel_label}</a> oraz na stronie głównej wyświetlona zostanie plakietka ze statusem instalacji. Jest ona wyświetlana tylko administratorom. <br/> Plakietka uruchomi kontrolę bieżącej wersji OpenProject w porównaniu do oficjalnej bazy danych wersji OpenProject, aby ostrzec o wszelkich aktualizacjach lub znanych lukach. Więcej informacji na temat tego, co zapewnia kontrola, jakie dane są potrzebne do podania dostępnych aktualizacji i jak wyłączyć tę kontrolę zawiera <a href="%{more_info_url}">dokumentacja konfiguracji</a>.
|
||||
text_own_membership_delete_confirmation: "Chcesz usunąć niektóre lub wszystkie swoje uprawnienia, przez które możesz nie być w stanie edytować tego projektu.\nCzy na pewno chcesz kontynuować?"
|
||||
text_permanent_delete_confirmation_checkbox_label: "Rozumiem, że tego usunięcia nie można cofnąć"
|
||||
text_permanent_remove_confirmation_checkbox_label: "I understand that this removal cannot be reversed"
|
||||
text_plugin_assets_writable: "Plugin assets directory writable"
|
||||
text_powered_by: "Napędzany przez %{link}"
|
||||
text_project_identifier_info: "Tylko małe litery (a-z), cyfry, myślniki i podkreślenia są dozwolone, oraz musi zaczynać się małą literą."
|
||||
|
||||
@@ -1509,7 +1509,8 @@ pt-BR:
|
||||
not_a_datetime: "não é uma data/hora válida."
|
||||
not_a_number: "não é um número."
|
||||
not_allowed: "é inválido devido à falta de permissões."
|
||||
not_json: "não é um objeto JSON válido."
|
||||
not_json: "is not parseable as JSON."
|
||||
not_json_object: "is not a JSON object."
|
||||
not_an_integer: "não é um número inteiro."
|
||||
not_an_iso_date: "não é uma data válida. Formato exigido: AAAA-MM-DD."
|
||||
not_same_project: "não pertence ao mesmo projeto."
|
||||
@@ -2166,6 +2167,7 @@ pt-BR:
|
||||
button_print: "Imprimir"
|
||||
button_quote: "Citar"
|
||||
button_remove: Remover
|
||||
button_remove_permanently: "Remove permanently"
|
||||
button_remove_reminder: "Remover lembrete"
|
||||
button_rename: "Renomear"
|
||||
button_replace: "Substituir"
|
||||
@@ -4719,6 +4721,7 @@ pt-BR:
|
||||
Nota: se habilitado, isto irá exibir um distintivo com o seu status de instalação no <a href="%{information_panel_path}">%{information_panel_label}</a>painel de administração e na página inicial. Ele é exibido apenas para administradores. <br/> O distintivo verificará sua versão do OpenProject contra o banco de dados oficial de versões do OpenProject para alertá-lo de quaisquer atualizações ou vulnerabilidades conhecidas. Para obter mais informações sobre o que fornece este distintivo, quais dados necessários para fornecer atualizações disponíveis e como desativar este distintivo, por favor verifique <a href="%{more_info_url}">a documentação de configuração</a>.
|
||||
text_own_membership_delete_confirmation: "Você está prestes a remover algumas ou todas as permissões e você pode não ser capaz de editar este projeto depois disso. Tem certeza que deseja continuar?"
|
||||
text_permanent_delete_confirmation_checkbox_label: "Compreendo que esta exclusão é irreversível"
|
||||
text_permanent_remove_confirmation_checkbox_label: "I understand that this removal cannot be reversed"
|
||||
text_plugin_assets_writable: "Diretório de plugins ativos é gravável"
|
||||
text_powered_by: "Desenvolvido por %{link}"
|
||||
text_project_identifier_info: "Apenas letras minúsculas (a-z), números, hífens e sublinhados são permitidos, deve-se começar com uma letra minúscula."
|
||||
|
||||
@@ -1509,7 +1509,8 @@ pt-PT:
|
||||
not_a_datetime: "não é uma data/hora válida."
|
||||
not_a_number: "não é um número."
|
||||
not_allowed: "é inválido devido a permissões em falta."
|
||||
not_json: "não é um objeto JSON válido."
|
||||
not_json: "is not parseable as JSON."
|
||||
not_json_object: "is not a JSON object."
|
||||
not_an_integer: "não é um número inteiro."
|
||||
not_an_iso_date: "não é uma data válida. Formato exigido: AAAA-MM-DD."
|
||||
not_same_project: "não pertence ao mesmo projeto."
|
||||
@@ -2166,6 +2167,7 @@ pt-PT:
|
||||
button_print: "Imprimir"
|
||||
button_quote: "Citar"
|
||||
button_remove: Remover
|
||||
button_remove_permanently: "Remove permanently"
|
||||
button_remove_reminder: "Remover lembrete"
|
||||
button_rename: "Alterar o nome"
|
||||
button_replace: "Substituir"
|
||||
@@ -4717,6 +4719,7 @@ pt-PT:
|
||||
Nota: se ativo, irá mostrar um emblema com o estado da sua instalação no painel de administração <a href="%{information_panel_path}">%{information_panel_label}</a> e na página inicial. Só é mostrado a administradores. <br/> O emblema verificará a sua versão atual do OpenProject em relação à base de dados oficial da versão do OpenProject para o alertar sobre quaisquer atualizações ou vulnerabilidades conhecidas. Para obter mais informações sobre o que a verificação fornece, quais os dados que são necessários para fornecer atualizações disponíveis e como desativar esta verificação, visite <a href="%{more_info_url}">the configuration documentation</a>.
|
||||
text_own_membership_delete_confirmation: "Está prestes a eliminar parcial ou totalmente as suas permissões. É possível que não possa editar o projeto após esta acção.\nTem a certeza de que deseja continuar?"
|
||||
text_permanent_delete_confirmation_checkbox_label: "Compreendo que esta eliminação não pode ser anulada"
|
||||
text_permanent_remove_confirmation_checkbox_label: "I understand that this removal cannot be reversed"
|
||||
text_plugin_assets_writable: "É possíver escrever na pasta de ativos dos módulos de extensão"
|
||||
text_powered_by: "Desenvolvido por %{link}"
|
||||
text_project_identifier_info: "Apenas letras minúsculas (a-z), números, traços e underscores são permitidos, deve começar com uma letra minúscula."
|
||||
|
||||
@@ -1521,7 +1521,8 @@ ro:
|
||||
not_a_datetime: "nu este o dată-ora validă."
|
||||
not_a_number: "nu este un număr."
|
||||
not_allowed: "nu este valabilă din cauza lipsei de permisiuni."
|
||||
not_json: "is not a valid JSON object."
|
||||
not_json: "is not parseable as JSON."
|
||||
not_json_object: "is not a JSON object."
|
||||
not_an_integer: "nu este un întreg."
|
||||
not_an_iso_date: "nu este o dată validă. Formatul necesar: AAAA-MM-ZZ."
|
||||
not_same_project: "nu aparține aceluiași proiect."
|
||||
@@ -2195,6 +2196,7 @@ ro:
|
||||
button_print: "Tipărește"
|
||||
button_quote: "Citare"
|
||||
button_remove: Eliminare
|
||||
button_remove_permanently: "Remove permanently"
|
||||
button_remove_reminder: "Remove reminder"
|
||||
button_rename: "Redenumește"
|
||||
button_replace: "Înlocuiește"
|
||||
@@ -3197,7 +3199,7 @@ ro:
|
||||
label_duplicated_by: "dublat de"
|
||||
label_duplicate: "duplicat"
|
||||
label_duplicates: "dublează"
|
||||
label_edit: "Editează"
|
||||
label_edit: "Editare"
|
||||
label_edit_attribute: "Edit attribute"
|
||||
label_edit_x: "Editare: %{x}"
|
||||
label_enable_multi_select: "Comutare selecție multiplă"
|
||||
@@ -3255,7 +3257,7 @@ ro:
|
||||
label_global_roles: "Roluri globale"
|
||||
label_git_path: "Calea catre directorul .git"
|
||||
label_greater_or_equal: ">="
|
||||
label_group_by: "Grupează după"
|
||||
label_group_by: "Grupare după"
|
||||
label_group_new: "Grupare nouă"
|
||||
label_group: "Grup"
|
||||
label_group_named: "Grup %{name}"
|
||||
@@ -4771,6 +4773,7 @@ ro:
|
||||
Notă: dacă este activată, aceasta va afișa o insignă cu starea instalării în fereastra <a href="%{information_panel_path}">%{information_panel_label}</a> panoul de administrare și pe pagina principală. Aceasta este afișată numai pentru administratori. <br/> Insigna va verifica versiunea curentă a OpenProject în raport cu baza de date oficială a versiunilor OpenProject pentru a alerta cu privire la orice actualizări sau vulnerabilități cunoscute. Pentru mai multe informații despre ce oferă verificarea, ce date sunt necesare pentru a furniza actualizările disponibile și cum să dezactivezi această verificare, te rog să vizitezi <a href="%{more_info_url}">documentația de configurare</a>.
|
||||
text_own_membership_delete_confirmation: "Sunteţi cale de a elimina unele sau toate permisiunile şi e posibil să nu mai puteți edita acest proiect după aceea. \nSunteţi sigur că doriţi să continuaţi?"
|
||||
text_permanent_delete_confirmation_checkbox_label: "I understand that this deletion cannot be reversed"
|
||||
text_permanent_remove_confirmation_checkbox_label: "I understand that this removal cannot be reversed"
|
||||
text_plugin_assets_writable: "Se poate scrie în directorul de resurse pentru module"
|
||||
text_powered_by: "Propulsat de %{link}"
|
||||
text_project_identifier_info: "Doar litere mici (a-z), numere, cratime şi linii de subliniere sunt permise, trebuie să înceapă cu o literă mică."
|
||||
|
||||
@@ -1528,7 +1528,8 @@ ru:
|
||||
not_a_datetime: "дата и время не являются допустимыми."
|
||||
not_a_number: "не является числом."
|
||||
not_allowed: "неверно, ввиду отсутствия прав."
|
||||
not_json: "не является допустимым объектом JSON."
|
||||
not_json: "не может быть разобран как JSON."
|
||||
not_json_object: "не является объектом JSON."
|
||||
not_an_integer: "не является целым числом."
|
||||
not_an_iso_date: "недопустимая дата. Требуемый формат: гггг-мм-дд."
|
||||
not_same_project: "не принадлежит тому же проекту."
|
||||
@@ -2219,6 +2220,7 @@ ru:
|
||||
button_print: "Печать"
|
||||
button_quote: "Цитата"
|
||||
button_remove: Удалить
|
||||
button_remove_permanently: "Удалить навсегда"
|
||||
button_remove_reminder: "Удалить напоминание"
|
||||
button_rename: "Переименовать"
|
||||
button_replace: "Заменить"
|
||||
@@ -4816,6 +4818,7 @@ ru:
|
||||
Примечание: Если этот параметр включен, значок с вашим статусом установки будет отображен в панели администрирования <a href="%{information_panel_path}">%{information_panel_label}</a> и на домашней странице. Он отображается только администраторам. <br/> Знак будет проверять текущую версию OpenProject в официальной базе данных релизов OpenProject для оповещения вас о каких-либо обновлениях или известных уязвимостях. Для дополнительной информации, необходимой для проверки доступных обновлений, и о том как отключить эту проверку, пожалуйста, посетите <a href="%{more_info_url}">конфигурации документации</a>.
|
||||
text_own_membership_delete_confirmation: "Вы собираетесь удалить все или некоторые разрешения, доступные Вам. Вы не сможете редактировать проект после этого действия. Вы уверены?"
|
||||
text_permanent_delete_confirmation_checkbox_label: "Я понимаю, что это удаление невозможно отменить"
|
||||
text_permanent_remove_confirmation_checkbox_label: "Я понимаю, что это удаление не может быть отменено"
|
||||
text_plugin_assets_writable: "Папка активов дополнения(plugin) доступна для записи"
|
||||
text_powered_by: "С использованием %{link}"
|
||||
text_project_identifier_info: "Разрешены только строчные буквы (a-z), цифры, тире и знаки подчеркивания, начинать с буквы нижнего регистра."
|
||||
|
||||
@@ -1512,7 +1512,8 @@ rw:
|
||||
not_a_datetime: "is not a valid date time."
|
||||
not_a_number: "is not a number."
|
||||
not_allowed: "is invalid because of missing permissions."
|
||||
not_json: "is not a valid JSON object."
|
||||
not_json: "is not parseable as JSON."
|
||||
not_json_object: "is not a JSON object."
|
||||
not_an_integer: "is not an integer."
|
||||
not_an_iso_date: "is not a valid date. Required format: YYYY-MM-DD."
|
||||
not_same_project: "doesn't belong to the same project."
|
||||
@@ -2169,6 +2170,7 @@ rw:
|
||||
button_print: "Print"
|
||||
button_quote: "Quote"
|
||||
button_remove: Remove
|
||||
button_remove_permanently: "Remove permanently"
|
||||
button_remove_reminder: "Remove reminder"
|
||||
button_rename: "Rename"
|
||||
button_replace: "Replace"
|
||||
@@ -4723,6 +4725,7 @@ rw:
|
||||
Note: if enabled, this will display a badge with your installation status in the <a href="%{information_panel_path}">%{information_panel_label}</a> administration panel, and on the home page. It is displayed to administrators only. <br/> The badge will check your current OpenProject version against the official OpenProject release database to alert you of any updates or known vulnerabilities. For more information on what the check provides, what data is needed to provide available updates, and how to disable this check, please visit <a href="%{more_info_url}">the configuration documentation</a>.
|
||||
text_own_membership_delete_confirmation: "You are about to remove some or all of your permissions and may no longer be able to edit this project after that.\nAre you sure you want to continue?"
|
||||
text_permanent_delete_confirmation_checkbox_label: "I understand that this deletion cannot be reversed"
|
||||
text_permanent_remove_confirmation_checkbox_label: "I understand that this removal cannot be reversed"
|
||||
text_plugin_assets_writable: "Plugin assets directory writable"
|
||||
text_powered_by: "Powered by %{link}"
|
||||
text_project_identifier_info: "Only lower case letters (a-z), numbers, dashes and underscores are allowed, must start with a lower case letter."
|
||||
|
||||
@@ -1512,7 +1512,8 @@ si:
|
||||
not_a_datetime: "වලංගු දිනය කාලය නොවේ."
|
||||
not_a_number: "අංකයක් නොවේ."
|
||||
not_allowed: "අතුරුදහන් අවසරයන් නිසා අවලංගු වේ."
|
||||
not_json: "is not a valid JSON object."
|
||||
not_json: "is not parseable as JSON."
|
||||
not_json_object: "is not a JSON object."
|
||||
not_an_integer: "පූර්ණ සංඛ්යාලයක් නොවේ."
|
||||
not_an_iso_date: "වලංගු දිනයක් නොවේ. අවශ්ය ආකෘතිය: YYY-MM-DD."
|
||||
not_same_project: "එකම ව්යාපෘතියට අයත් නොවේ."
|
||||
@@ -2169,6 +2170,7 @@ si:
|
||||
button_print: "මුද්රණය"
|
||||
button_quote: "උපුටා"
|
||||
button_remove: ඉවත් කරන්න
|
||||
button_remove_permanently: "Remove permanently"
|
||||
button_remove_reminder: "Remove reminder"
|
||||
button_rename: "නැවත නම් කරන්න"
|
||||
button_replace: "ප්රතිස්ථාපනය කරන්න"
|
||||
@@ -4723,6 +4725,7 @@ si:
|
||||
සටහන: සක්රීය කර ඇත්නම්, මෙය <a href="%{information_panel_path}">%{information_panel_label}</a> පරිපාලන පැනලයේ ඔබේ ස්ථාපන තත්ත්වය සහිත ලාංඡනයක් සහ මුල් පිටුවේ පෙන්වනු ඇත. එය පරිපාලකයින්ට පමණක් පෙන්වනු ලැබේ. <br/> මෙම ලාංඡනය මඟින් ඔබගේ වර්තමාන OpenProject අනුවාදය නිල OpenProject නිකුතු දත්ත ගබඩාවට එරෙහිව පරීක්ෂා කරනු ඇත. චෙක්පත සපයන දේ පිළිබඳ වැඩි විස්තර සඳහා, ලබා ගත හැකි යාවත්කාලීන ලබා දීමට අවශ්ය දත්ත මොනවාද, සහ මෙම චෙක්පත අක්රිය කරන්නේ කෙසේද, කරුණාකර <a href="%{more_info_url}">මානකරන ලියකියවිලි</a>වෙත පිවිසෙන්න.
|
||||
text_own_membership_delete_confirmation: "ඔබ ඔබේ අවසර කිහිපයක් හෝ සියල්ල ඉවත් කිරීමට ආසන්නව සිටින අතර ඉන් පසුව මෙම ව්යාපෘතිය සංස්කරණය කිරීමට තවදුරටත් නොහැකි වනු ඇත.\nඔබට දිගටම කරගෙන යාමට අවශ්ය බව ඔබට විශ්වාසද?"
|
||||
text_permanent_delete_confirmation_checkbox_label: "I understand that this deletion cannot be reversed"
|
||||
text_permanent_remove_confirmation_checkbox_label: "I understand that this removal cannot be reversed"
|
||||
text_plugin_assets_writable: "ප්ලගිනය වත්කම් නාමාවලිය ලිවිය හැකි"
|
||||
text_powered_by: "%{link}විසින් තල්ලු"
|
||||
text_project_identifier_info: "අඩු සිද්ධි අකුරු (a-z), අංක, ඩෂ් සහ යටි ඉරි වලට පමණක් අවසර ඇත, අඩු සිද්ධි අකුරකින් ආරම්භ කළ යුතුය."
|
||||
|
||||
@@ -1530,7 +1530,8 @@ sk:
|
||||
not_a_datetime: "nie je platný dátum a čas."
|
||||
not_a_number: "nie je číslo."
|
||||
not_allowed: "je neplatné kvôli chýbajúcim oprávneniam."
|
||||
not_json: "is not a valid JSON object."
|
||||
not_json: "is not parseable as JSON."
|
||||
not_json_object: "is not a JSON object."
|
||||
not_an_integer: "nie je celé číslo."
|
||||
not_an_iso_date: "nie je platný dátum. Požadovaný formát: RRRR-MM-DD."
|
||||
not_same_project: "nepodlieha rovnakému projektu."
|
||||
@@ -2221,6 +2222,7 @@ sk:
|
||||
button_print: "Tlač"
|
||||
button_quote: "Citovať"
|
||||
button_remove: Vymazať
|
||||
button_remove_permanently: "Remove permanently"
|
||||
button_remove_reminder: "Remove reminder"
|
||||
button_rename: "Premenovať"
|
||||
button_replace: "Nahradiť"
|
||||
@@ -4820,6 +4822,7 @@ sk:
|
||||
Poznámka: Ak je táto možnosť povolená, zobrazí sa v štýle <a href="%{information_panel_path}">%{information_panel_label}</a> na panely správcu, a na domovskej stránke. Zobrazuje sa iba administrátorom. <br/> Znak skontroluje vašu aktuálnu verziu OpenProject s oficiálnou verziu databázy OpenProject, ktorá vás upozorní na akékoľvek aktualizácie alebo známe chyby. Ďalšie informácie o tom, čo daná kontrola poskytuje, aké údaje sú potrebné na poskytovanie dostupných aktualizácií a ako zakázať túto kontrolu, prosím navštívte <a href="%{more_info_url}">dokumentáciu konfigurácie</a>.
|
||||
text_own_membership_delete_confirmation: "Chystáte sa odstrániť jedno respektíve viac vašich povolení, pričom po aplikovaní zmien môžte stratiť možnosť naďalej upravovať nastavenia projektu. Naozaj chcete pokračovať?"
|
||||
text_permanent_delete_confirmation_checkbox_label: "I understand that this deletion cannot be reversed"
|
||||
text_permanent_remove_confirmation_checkbox_label: "I understand that this removal cannot be reversed"
|
||||
text_plugin_assets_writable: "Povolený zápis do priečinka pre pluginy"
|
||||
text_powered_by: "Powered by %{link}"
|
||||
text_project_identifier_info: "Sú povolené len malé písmená (a-z), čísla, pomlčky a podčiarkovníky, hodnota musí začínať malým písmenom."
|
||||
|
||||
@@ -1529,7 +1529,8 @@ sl:
|
||||
not_a_datetime: "ni veljaven datum."
|
||||
not_a_number: "ni število."
|
||||
not_allowed: "ni veljavno, saj manjka dovoljenje. "
|
||||
not_json: "is not a valid JSON object."
|
||||
not_json: "is not parseable as JSON."
|
||||
not_json_object: "is not a JSON object."
|
||||
not_an_integer: "ni celo število. "
|
||||
not_an_iso_date: "neveljaven čas. Potreben format: YYYY-MM-DD."
|
||||
not_same_project: "ne pripada istemu projektu"
|
||||
@@ -2220,6 +2221,7 @@ sl:
|
||||
button_print: "Natisni"
|
||||
button_quote: "Citiraj"
|
||||
button_remove: Odstrani
|
||||
button_remove_permanently: "Remove permanently"
|
||||
button_remove_reminder: "Remove reminder"
|
||||
button_rename: "Preimenuj"
|
||||
button_replace: "Zamenjaj"
|
||||
@@ -2365,8 +2367,8 @@ sl:
|
||||
- "avgust"
|
||||
- "september"
|
||||
- "oktober"
|
||||
- "november"
|
||||
- "december"
|
||||
- "November"
|
||||
- "December"
|
||||
order:
|
||||
- :leto
|
||||
- :mesec
|
||||
@@ -4819,6 +4821,7 @@ sl:
|
||||
Note: if enabled, this will display a badge with your installation status in the <a href="%{information_panel_path}">%{information_panel_label}</a> administration panel, and on the home page. It is displayed to administrators only. <br/> The badge will check your current OpenProject version against the official OpenProject release database to alert you of any updates or known vulnerabilities. For more information on what the check provides, what data is needed to provide available updates, and how to disable this check, please visit <a href="%{more_info_url}">the configuration documentation</a>.
|
||||
text_own_membership_delete_confirmation: "Odstranili boste nekaj ali vsa dovoljenja in po tem morda ne boste mogli več urejati tega projekta.\nAli ste prepričani, da želite nadaljevati?"
|
||||
text_permanent_delete_confirmation_checkbox_label: "I understand that this deletion cannot be reversed"
|
||||
text_permanent_remove_confirmation_checkbox_label: "I understand that this removal cannot be reversed"
|
||||
text_plugin_assets_writable: "Imenik vtičnikov se lahko zapiše"
|
||||
text_powered_by: "Powered by %{link}"
|
||||
text_project_identifier_info: "Dovoljene so samo male črke (a-z), številke, črtice in podčrtaji, ki se začnejo z malo začetnico."
|
||||
|
||||
@@ -1521,7 +1521,8 @@ sr:
|
||||
not_a_datetime: "is not a valid date time."
|
||||
not_a_number: "is not a number."
|
||||
not_allowed: "is invalid because of missing permissions."
|
||||
not_json: "is not a valid JSON object."
|
||||
not_json: "is not parseable as JSON."
|
||||
not_json_object: "is not a JSON object."
|
||||
not_an_integer: "is not an integer."
|
||||
not_an_iso_date: "is not a valid date. Required format: YYYY-MM-DD."
|
||||
not_same_project: "doesn't belong to the same project."
|
||||
@@ -2195,6 +2196,7 @@ sr:
|
||||
button_print: "Print"
|
||||
button_quote: "Quote"
|
||||
button_remove: Remove
|
||||
button_remove_permanently: "Remove permanently"
|
||||
button_remove_reminder: "Remove reminder"
|
||||
button_rename: "Rename"
|
||||
button_replace: "Replace"
|
||||
@@ -4772,6 +4774,7 @@ sr:
|
||||
Note: if enabled, this will display a badge with your installation status in the <a href="%{information_panel_path}">%{information_panel_label}</a> administration panel, and on the home page. It is displayed to administrators only. <br/> The badge will check your current OpenProject version against the official OpenProject release database to alert you of any updates or known vulnerabilities. For more information on what the check provides, what data is needed to provide available updates, and how to disable this check, please visit <a href="%{more_info_url}">the configuration documentation</a>.
|
||||
text_own_membership_delete_confirmation: "You are about to remove some or all of your permissions and may no longer be able to edit this project after that.\nAre you sure you want to continue?"
|
||||
text_permanent_delete_confirmation_checkbox_label: "I understand that this deletion cannot be reversed"
|
||||
text_permanent_remove_confirmation_checkbox_label: "I understand that this removal cannot be reversed"
|
||||
text_plugin_assets_writable: "Plugin assets directory writable"
|
||||
text_powered_by: "Powered by %{link}"
|
||||
text_project_identifier_info: "Only lower case letters (a-z), numbers, dashes and underscores are allowed, must start with a lower case letter."
|
||||
|
||||
@@ -1512,7 +1512,8 @@ sv:
|
||||
not_a_datetime: "är inte en giltig datumtid."
|
||||
not_a_number: "är inte ett nummer."
|
||||
not_allowed: "är inte tillåtet på grund av saknade behörigheter."
|
||||
not_json: "is not a valid JSON object."
|
||||
not_json: "is not parseable as JSON."
|
||||
not_json_object: "is not a JSON object."
|
||||
not_an_integer: "är inte ett heltal."
|
||||
not_an_iso_date: "är inte ett giltigt datum. Använd formatet ÅÅÅÅ-MM-DD."
|
||||
not_same_project: "tillhör inte samma projekt."
|
||||
@@ -2169,6 +2170,7 @@ sv:
|
||||
button_print: "Skriv ut"
|
||||
button_quote: "Citat"
|
||||
button_remove: Ta bort
|
||||
button_remove_permanently: "Remove permanently"
|
||||
button_remove_reminder: "Ta bort påminnelse"
|
||||
button_rename: "Ändra namn"
|
||||
button_replace: "Ersätt"
|
||||
@@ -4721,6 +4723,7 @@ sv:
|
||||
Obs: om aktiverad, kommer detta att visa ett märke med din installationsstatus i administrationspanelen <a href="%{information_panel_path}">%{information_panel_label}</a> och på startsidan. Det visas endast för administratörer. <br/> Emblemet kommer att kontrollera din nuvarande OpenProject-version mot den officiella OpenProject-utgåvans databas för att varna dig om eventuella uppdateringar eller kända sårbarheter. För mer information om vad kontrollen ger, vilka uppgifter som behövs för att tillhandahålla tillgängliga uppdateringar, och hur du inaktiverar denna kontroll, besök <a href="%{more_info_url}">konfigurationsdokumentationen</a>.
|
||||
text_own_membership_delete_confirmation: "Du håller på att ta bort några eller alla av dina behörigheter och kommer därefter inte längre att kunna redigera detta projekt. Är du säker på att du vill fortsätta?"
|
||||
text_permanent_delete_confirmation_checkbox_label: "I understand that this deletion cannot be reversed"
|
||||
text_permanent_remove_confirmation_checkbox_label: "I understand that this removal cannot be reversed"
|
||||
text_plugin_assets_writable: "Katalogen \"Plugin assets\" skrivbar"
|
||||
text_powered_by: "Drivs av %{link}"
|
||||
text_project_identifier_info: "Bara gemena bokstäver (a-z), siffror, bindestreck och understreck tillåts och måste dessutom börja med en gemen bokstav."
|
||||
|
||||
@@ -1503,7 +1503,8 @@ th:
|
||||
not_a_datetime: "is not a valid date time."
|
||||
not_a_number: "is not a number."
|
||||
not_allowed: "is invalid because of missing permissions."
|
||||
not_json: "is not a valid JSON object."
|
||||
not_json: "is not parseable as JSON."
|
||||
not_json_object: "is not a JSON object."
|
||||
not_an_integer: "is not an integer."
|
||||
not_an_iso_date: "is not a valid date. Required format: YYYY-MM-DD."
|
||||
not_same_project: "doesn't belong to the same project."
|
||||
@@ -2143,6 +2144,7 @@ th:
|
||||
button_print: "Print"
|
||||
button_quote: "อ้างถึง"
|
||||
button_remove: Remove
|
||||
button_remove_permanently: "Remove permanently"
|
||||
button_remove_reminder: "Remove reminder"
|
||||
button_rename: "เปลี่ยนชื่อ"
|
||||
button_replace: "Replace"
|
||||
@@ -4674,6 +4676,7 @@ th:
|
||||
Note: if enabled, this will display a badge with your installation status in the <a href="%{information_panel_path}">%{information_panel_label}</a> administration panel, and on the home page. It is displayed to administrators only. <br/> The badge will check your current OpenProject version against the official OpenProject release database to alert you of any updates or known vulnerabilities. For more information on what the check provides, what data is needed to provide available updates, and how to disable this check, please visit <a href="%{more_info_url}">the configuration documentation</a>.
|
||||
text_own_membership_delete_confirmation: "You are about to remove some or all of your permissions and may no longer be able to edit this project after that.\nAre you sure you want to continue?"
|
||||
text_permanent_delete_confirmation_checkbox_label: "I understand that this deletion cannot be reversed"
|
||||
text_permanent_remove_confirmation_checkbox_label: "I understand that this removal cannot be reversed"
|
||||
text_plugin_assets_writable: "สามารถบันทึก ไดเรคทอรี่ของ Plugin asset ได้"
|
||||
text_powered_by: "ดำเนินการโดย %{link}"
|
||||
text_project_identifier_info: "ใช้ได้เฉพาะตัวพิมพ์เล็ก (a-z), ตัวเลข เส้นประ และขีดใต้ โดย ต้องเริ่มต้น ด้วยตัวอักษรพิมพ์เล็กเท่านั้น"
|
||||
|
||||
@@ -1512,7 +1512,8 @@ tr:
|
||||
not_a_datetime: "geçerli bir zaman değil."
|
||||
not_a_number: "bir sayı değil."
|
||||
not_allowed: "Eksik izinler nedeniyle geçersiz."
|
||||
not_json: "geçerli bir JSON nesnesi değildir."
|
||||
not_json: "is not parseable as JSON."
|
||||
not_json_object: "is not a JSON object."
|
||||
not_an_integer: "bir tamsayı değil."
|
||||
not_an_iso_date: "geçerli bir tarih değil. Gerekli biçim:: YYYY-AA-GG."
|
||||
not_same_project: "aynı projeye ait değil."
|
||||
@@ -2169,6 +2170,7 @@ tr:
|
||||
button_print: "Yazdır"
|
||||
button_quote: "Alıntı"
|
||||
button_remove: Kaldır
|
||||
button_remove_permanently: "Remove permanently"
|
||||
button_remove_reminder: "Hatırlatmayı kaldır"
|
||||
button_rename: "Yeniden adlandır"
|
||||
button_replace: "Değiştir"
|
||||
@@ -4721,6 +4723,7 @@ tr:
|
||||
Not: Etkinleştirildiğinde, bu, <a href="%{information_panel_path}">%{information_panel_label}</a> yönetim panelinde ve giriş sayfasında yükleme durumunuzla birlikte bir rozet görüntüler. Sadece yöneticilere gösterilir. <br/> Rozet, mevcut OpenProject sürümünüzü resmi OpenProject sürüm veritabanına karşı kontrol eder ve sizi herhangi bir güncelleme veya bilinen güvenlik açığı hakkında uyarır. Çekin sağladığı, mevcut güncellemeleri sağlamak için hangi verilerin gerekli olduğu ve bu kontrolün nasıl devre dışı bırakılacağı hakkında daha fazla bilgi için lütfen <a href="%{more_info_url}">yapılandırma belgelerini</a> ziyaret edin.
|
||||
text_own_membership_delete_confirmation: "İzinlerinizden bazılarını veya tümünü kaldırmak üzeresiniz ve bundan sonra bu projeyi düzenleyemeyebilirsiniz. Devam etmek istediğine emin misin?"
|
||||
text_permanent_delete_confirmation_checkbox_label: "Bu silme işleminin geri alınamayacağını anlıyorum"
|
||||
text_permanent_remove_confirmation_checkbox_label: "I understand that this removal cannot be reversed"
|
||||
text_plugin_assets_writable: "Plugin assets dizini yazılabilir"
|
||||
text_powered_by: "%{link} tarafından destekleniyor"
|
||||
text_project_identifier_info: "Yalnızca küçük harfler (a-z), sayılar, tire ve alt tire kullanılabilir ve mutlaka küçük harfle başlamalıdır."
|
||||
|
||||
@@ -1524,7 +1524,8 @@ uk:
|
||||
not_a_datetime: "не є дійсним датою."
|
||||
not_a_number: "не є числом"
|
||||
not_allowed: "недійсний через відсутність дозволів."
|
||||
not_json: "не є припустимим об’єктом JSON."
|
||||
not_json: "is not parseable as JSON."
|
||||
not_json_object: "is not a JSON object."
|
||||
not_an_integer: "не є цілим числом"
|
||||
not_an_iso_date: "не є дійсною датою. Необхідний формат: YYYY-MM-DD."
|
||||
not_same_project: "не належить до одного проекту."
|
||||
@@ -2215,6 +2216,7 @@ uk:
|
||||
button_print: "Друкувати"
|
||||
button_quote: "Цитата"
|
||||
button_remove: Видалити
|
||||
button_remove_permanently: "Remove permanently"
|
||||
button_remove_reminder: "Вилучити нагадування"
|
||||
button_rename: "Перейменувати"
|
||||
button_replace: "Замінити"
|
||||
@@ -3323,7 +3325,7 @@ uk:
|
||||
label_index_by_title: "Індекс за назвою"
|
||||
label_information: "Інформація"
|
||||
label_information_plural: "Інформація"
|
||||
label_installation_guides: "Інструкції із встановлення"
|
||||
label_installation_guides: "Інструкції зі встановлення"
|
||||
label_integer: "Ціле число"
|
||||
label_interface: "Інтерфейс"
|
||||
label_internal: "Власне"
|
||||
@@ -4813,6 +4815,7 @@ uk:
|
||||
Примітка: якщо цей параметр увімкнено, на екрані з'явиться значок із статусом інсталяції <a href="%{information_panel_path}">%{information_panel_label}</a> панелі адміністрування та на головній сторінці. Він відображається лише адміністраторам. <br/> Значок перевірить поточну версію OpenProject на основі офіційної бази даних випуску OpenProject, щоб сповістити вас про будь-які оновлення або відомі уразливості. Щоб отримати додаткові відомості про те, що надає перевірка, які дані потрібні для надання доступних оновлень, та про те, як вимкнути цю перевірку, відвідайте сторінку <a href="%{more_info_url}">конфігураційна документація</a>.
|
||||
text_own_membership_delete_confirmation: "Ви збираєтесь видалити деякі або всі права, через що можуть зникнути права на редагування цього проекту.\nВи впевнені що хочете продовжити?"
|
||||
text_permanent_delete_confirmation_checkbox_label: "Я розумію, що це видалення не можна відмінити"
|
||||
text_permanent_remove_confirmation_checkbox_label: "I understand that this removal cannot be reversed"
|
||||
text_plugin_assets_writable: "Каталог ресурсів модулів доступний для запису"
|
||||
text_powered_by: "Працює на %{link}"
|
||||
text_project_identifier_info: "Допускаються тільки рядкові малі букви (a-z), цифри, тире та нижнє підкреслення. Початок має бути з малої літери."
|
||||
|
||||
@@ -1512,7 +1512,8 @@ uz:
|
||||
not_a_datetime: "is not a valid date time."
|
||||
not_a_number: "is not a number."
|
||||
not_allowed: "is invalid because of missing permissions."
|
||||
not_json: "is not a valid JSON object."
|
||||
not_json: "is not parseable as JSON."
|
||||
not_json_object: "is not a JSON object."
|
||||
not_an_integer: "is not an integer."
|
||||
not_an_iso_date: "is not a valid date. Required format: YYYY-MM-DD."
|
||||
not_same_project: "doesn't belong to the same project."
|
||||
@@ -2169,6 +2170,7 @@ uz:
|
||||
button_print: "Print"
|
||||
button_quote: "Quote"
|
||||
button_remove: Remove
|
||||
button_remove_permanently: "Remove permanently"
|
||||
button_remove_reminder: "Remove reminder"
|
||||
button_rename: "Rename"
|
||||
button_replace: "Replace"
|
||||
@@ -4723,6 +4725,7 @@ uz:
|
||||
Note: if enabled, this will display a badge with your installation status in the <a href="%{information_panel_path}">%{information_panel_label}</a> administration panel, and on the home page. It is displayed to administrators only. <br/> The badge will check your current OpenProject version against the official OpenProject release database to alert you of any updates or known vulnerabilities. For more information on what the check provides, what data is needed to provide available updates, and how to disable this check, please visit <a href="%{more_info_url}">the configuration documentation</a>.
|
||||
text_own_membership_delete_confirmation: "You are about to remove some or all of your permissions and may no longer be able to edit this project after that.\nAre you sure you want to continue?"
|
||||
text_permanent_delete_confirmation_checkbox_label: "I understand that this deletion cannot be reversed"
|
||||
text_permanent_remove_confirmation_checkbox_label: "I understand that this removal cannot be reversed"
|
||||
text_plugin_assets_writable: "Plugin assets directory writable"
|
||||
text_powered_by: "Powered by %{link}"
|
||||
text_project_identifier_info: "Only lower case letters (a-z), numbers, dashes and underscores are allowed, must start with a lower case letter."
|
||||
|
||||
@@ -1503,7 +1503,8 @@ vi:
|
||||
not_a_datetime: "không phải là thời gian hợp lệ"
|
||||
not_a_number: "không phải là số"
|
||||
not_allowed: "không hợp lệ vì thiếu quyền."
|
||||
not_json: "is not a valid JSON object."
|
||||
not_json: "is not parseable as JSON."
|
||||
not_json_object: "is not a JSON object."
|
||||
not_an_integer: "không phải là một số nguyên"
|
||||
not_an_iso_date: "không phải là một ngày hợp lệ. Yêu cầu định dạng: YYYY-MM-DD."
|
||||
not_same_project: "không thuộc cùng dự án."
|
||||
@@ -2143,6 +2144,7 @@ vi:
|
||||
button_print: "In"
|
||||
button_quote: "Trích dẫn"
|
||||
button_remove: Xoá
|
||||
button_remove_permanently: "Remove permanently"
|
||||
button_remove_reminder: "Remove reminder"
|
||||
button_rename: "Đổi tên"
|
||||
button_replace: "Thay thế"
|
||||
@@ -4674,6 +4676,7 @@ vi:
|
||||
Lưu ý: nếu được kích hoạt, một bảng thông báo về tình trạng của phần mềm sẽ được hiển thị tại trang quản trị <a href="%{information_panel_path}">%{information_panel_label}</a>, và tại trang chủ. Thông tin này chỉ được thấy bởi Quản trị viên. <br/> Bảng thông báo sẽ kiểm tra các thông tin cập nhật từ OpenProject và thông báo về các cập nhật mới hay các lỗi được phát hiện. Để biết thêm chi tiết, vui lòng tham khảo <a href="%{more_info_url}">tài liệu cấu hình</a>.
|
||||
text_own_membership_delete_confirmation: "Bạn sắp xóa một số hoặc tất cả quyền của mình và có thể không còn khả năng chỉnh sửa dự án này sau đó.\nBạn có chắc chắn muốn tiếp tục không?"
|
||||
text_permanent_delete_confirmation_checkbox_label: "I understand that this deletion cannot be reversed"
|
||||
text_permanent_remove_confirmation_checkbox_label: "I understand that this removal cannot be reversed"
|
||||
text_plugin_assets_writable: "Thư mục tài sản plugin có thể ghi được"
|
||||
text_powered_by: "Được cung cấp bởi %{link}"
|
||||
text_project_identifier_info: "Chỉ cho phép chữ cái viết thường (a-z), số, dấu gạch ngang và gạch dưới, phải bắt đầu bằng chữ cái viết thường."
|
||||
|
||||
@@ -97,7 +97,7 @@ zh-CN:
|
||||
demo-project:
|
||||
name: 演示项目
|
||||
status_explanation: 所有任务都按计划进行。相关人员均知晓各自任务。系统已完全建立。
|
||||
description: 这是对此演示 Scrum 项目目标的简短摘要。
|
||||
description: 这是对此演示项目目标的简短摘要。
|
||||
news:
|
||||
item_0:
|
||||
title: 欢迎来到您的演示项目
|
||||
@@ -216,7 +216,7 @@ zh-CN:
|
||||
scrum-project:
|
||||
name: Scrum 项目
|
||||
status_explanation: 所有任务都按计划进行。相关人员均知晓各自任务。系统已完全建立。
|
||||
description: 这是对此演示 Scrum 项目目标的简短摘要。
|
||||
description: 这是对此演示Scrum项目目标的简短摘要。
|
||||
news:
|
||||
item_0:
|
||||
title: 欢迎来到您的 Scrum 演示项目
|
||||
|
||||
@@ -87,7 +87,7 @@ zh-CN:
|
||||
token_placeholder: "在此处粘贴您的企业版支持令牌"
|
||||
add_token: "上传企业版支持令牌"
|
||||
replace_token: "替换您当前的支持令牌"
|
||||
order: "订购本地部署版的 Enterprise edition"
|
||||
order: "订购本地部署的 Enterprise edition"
|
||||
paste: "粘贴您企业版的支持令牌"
|
||||
required_for_feature: "此功能仅限具激活的企业版支持令牌的订阅者使用。"
|
||||
enterprise_link: "如需了解详细信息,请单击此处。"
|
||||
@@ -1201,7 +1201,7 @@ zh-CN:
|
||||
page: "页"
|
||||
row_count: "行数"
|
||||
column_count: "列数"
|
||||
widgets: "微件"
|
||||
widgets: "小部件"
|
||||
journal:
|
||||
notes: "备注"
|
||||
cause_type: "Cause 类型"
|
||||
@@ -1499,7 +1499,8 @@ zh-CN:
|
||||
not_a_datetime: "不是有效的日期时间。"
|
||||
not_a_number: "不是一个数字。"
|
||||
not_allowed: "没有权限使用。"
|
||||
not_json: "不是一个有效的 JSON 对象。"
|
||||
not_json: "is not parseable as JSON."
|
||||
not_json_object: "is not a JSON object."
|
||||
not_an_integer: "不是一个整数。"
|
||||
not_an_iso_date: "不是有效日期。所需格式:YYYY-MM-DD。"
|
||||
not_same_project: "不属于同一个项目。"
|
||||
@@ -2139,6 +2140,7 @@ zh-CN:
|
||||
button_print: "打印"
|
||||
button_quote: "引用"
|
||||
button_remove: 移除
|
||||
button_remove_permanently: "Remove permanently"
|
||||
button_remove_reminder: "删除提醒"
|
||||
button_rename: "重命名"
|
||||
button_replace: "替换"
|
||||
@@ -3440,7 +3442,7 @@ zh-CN:
|
||||
label_revision_id: "修订版本 %{value}"
|
||||
label_revision_plural: "修订"
|
||||
label_roadmap: "路线图"
|
||||
label_roadmap_edit: "编辑路线图%{name}"
|
||||
label_roadmap_edit: "编辑路线图 %{name}"
|
||||
label_roadmap_due_in: "%{value} 到期"
|
||||
label_roadmap_no_work_packages: "该版本没有工作包。"
|
||||
label_roadmap_overdue: "%{value} 超时"
|
||||
@@ -4161,7 +4163,7 @@ zh-CN:
|
||||
managed: "在 OpenProject 中创建新的存储库"
|
||||
storage:
|
||||
not_available: "磁盘存储开销不可用于此存储库。"
|
||||
update_timeout: "在 N 分钟内保留存储库最后所需的磁盘空间信息。由于计算存储库所需的磁盘空间可能增加系统开销,增加该值可以减少性能影响。"
|
||||
update_timeout: "在 N 分钟内保留存储库最后所需磁盘空间的信息。由于计算存储库所需的磁盘空间可能增加系统开销,增加该值可以减少性能影响。"
|
||||
oauth_application_details: "关闭此窗口后,将无法再次访问客户端密钥值。请将这些值复制到 Nextcloud OpenProject 集成设置中:"
|
||||
oauth_application_details_link_text: "转到设置页面"
|
||||
setup_documentation_details: "如果您在配置新文件存储方面需要帮助,请查看文档:"
|
||||
@@ -4359,7 +4361,7 @@ zh-CN:
|
||||
setting_session_ttl_hint: "当设置的值低于5时,其作用类似于禁用。"
|
||||
setting_session_ttl_enabled: "会话过期"
|
||||
setting_start_of_week: "一周起始日"
|
||||
setting_sys_api_enabled: "启用存储库管理网页服务"
|
||||
setting_sys_api_enabled: "启用版本库管理 web 服务"
|
||||
setting_sys_api_description: "存储库管理网页服务提供了集成的,用户授权的存储库访问。"
|
||||
setting_time_format: "时间"
|
||||
setting_total_percent_complete_mode: "计算 完成% 层次结构总数"
|
||||
@@ -4665,6 +4667,7 @@ zh-CN:
|
||||
注:如果启用,这会在 <a href="%{information_panel_path}">%{information_panel_label}</a> 管理面板中和首页上显示一个包含您的安装状态的徽章。徽章仅向管理员显示。<br/>徽章将根据官方的 OpenProject 版本数据库检查您当前的 OpenProject 版本,提醒您是否存在任何更新或已知漏洞。如需详细了解检查可以提供哪些信息,需要哪些数据来提供可用更新,以及如何禁用此检查,请访问<a href="%{more_info_url}">配置文档</a>。
|
||||
text_own_membership_delete_confirmation: "您要移除部分或全部权限,并且可能无法在此后编辑这个项目。\n您确定要继续吗?"
|
||||
text_permanent_delete_confirmation_checkbox_label: "我理解这种删除不可逆转"
|
||||
text_permanent_remove_confirmation_checkbox_label: "I understand that this removal cannot be reversed"
|
||||
text_plugin_assets_writable: "插件资产目录可写"
|
||||
text_powered_by: "Powered by %{link}"
|
||||
text_project_identifier_info: "只有小写字母 (a-z)、 数字、 短划线和下划线被允许,必须以小写字母开头。"
|
||||
@@ -4785,7 +4788,7 @@ zh-CN:
|
||||
warning_user_limit_reached_admin: >
|
||||
添加额外的用户将超出当前限制。请<a href="%{upgrade_url}">升级您的计划</a>,以确保外部用户能够访问此实例。
|
||||
warning_user_limit_reached_instructions: >
|
||||
您已达到用户限制(%{current}/%{max} 活跃用户)。请联系 sales@openproject.com 升级您的企业版计划以添加额外用户。
|
||||
您达到了用户限制(%{current}/%{max}活跃用户)。 请联系sales@openproject.com以升级您的Enterprise edition计划并添加其他用户。
|
||||
warning_protocol_mismatch_html: >
|
||||
|
||||
warning_bar:
|
||||
|
||||
@@ -1499,7 +1499,8 @@ zh-TW:
|
||||
not_a_datetime: "不是有效的日期時間。"
|
||||
not_a_number: "不是數字"
|
||||
not_allowed: "是無效的因為缺少權限"
|
||||
not_json: "不是有效的 JSON 物件。"
|
||||
not_json: "無法解析為 JSON。"
|
||||
not_json_object: "不是 JSON 物件。"
|
||||
not_an_integer: "不是整數"
|
||||
not_an_iso_date: "不是有效日期。所需格式:YYYY-MM-DD。"
|
||||
not_same_project: "不屬於相同的專案"
|
||||
@@ -2139,6 +2140,7 @@ zh-TW:
|
||||
button_print: "列印"
|
||||
button_quote: "引言"
|
||||
button_remove: 刪除
|
||||
button_remove_permanently: "永久移除"
|
||||
button_remove_reminder: "移除提醒"
|
||||
button_rename: "重新命名"
|
||||
button_replace: "取代"
|
||||
@@ -3141,7 +3143,7 @@ zh-TW:
|
||||
label_filter_add: "新增條件"
|
||||
label_filter_by: "篩選條件:"
|
||||
label_filter_any_name_attribute: "名稱屬性"
|
||||
label_filter_plural: "篩選條件"
|
||||
label_filter_plural: "篩選器"
|
||||
label_filters_toggle: "顯示/隱藏篩選條件"
|
||||
label_float: "浮點數"
|
||||
label_folder: "資料夾"
|
||||
@@ -3156,8 +3158,8 @@ zh-TW:
|
||||
label_global_modules: "全域模組"
|
||||
label_global_roles: "全域角色"
|
||||
label_git_path: ".git 目錄的路徑"
|
||||
label_greater_or_equal: "之前"
|
||||
label_group_by: "分類"
|
||||
label_greater_or_equal: ">="
|
||||
label_group_by: "分組依據"
|
||||
label_group_new: "新增群組"
|
||||
label_group: "群組"
|
||||
label_group_named: "群組名稱 %{name}"
|
||||
@@ -3169,7 +3171,7 @@ zh-TW:
|
||||
label_hierarchy: "階層"
|
||||
label_hierarchy_leaf: "頁面結構頁"
|
||||
label_home: "Home"
|
||||
label_subject_or_id: "名稱或 id"
|
||||
label_subject_or_id: "主旨或 id"
|
||||
label_calendar_subscriptions: "訂閱行事曆"
|
||||
label_identifier: "識別碼"
|
||||
label_in: "在"
|
||||
@@ -3218,7 +3220,7 @@ zh-TW:
|
||||
label_latest_revision_plural: "最新版本"
|
||||
label_ldap_authentication: "LDAP 認證"
|
||||
label_learn_more: "了解更多"
|
||||
label_less_or_equal: "之後"
|
||||
label_less_or_equal: "<="
|
||||
label_less_than_ago: "幾天內"
|
||||
label_link_url: "連結(URL)"
|
||||
label_list: "清單"
|
||||
@@ -4668,6 +4670,7 @@ zh-TW:
|
||||
注:如果啓用,這會在 <a href="%{information_panel_path}">%{information_panel_label}</a> 管理面板中和首頁上顯示一個包含您的安裝狀態的徽章。徽章僅向管理員顯示。<br/>徽章將根據官方的 OpenProject 版本數據庫檢查您當前的 OpenProject 版本,提醒您是否存在任何更新或已知漏洞。如需詳細瞭解檢查可以提供哪些信息,需要哪些數據來提供可用更新,以及如何禁用此檢查,請訪問<a href="%{more_info_url}">配置文檔</a>。
|
||||
text_own_membership_delete_confirmation: "您將要刪除部分或全部權限, 之後可能無法再編輯此專案。\n是否要繼續?"
|
||||
text_permanent_delete_confirmation_checkbox_label: "我了解此刪除無法逆轉"
|
||||
text_permanent_remove_confirmation_checkbox_label: "我了解此移除無法逆轉"
|
||||
text_plugin_assets_writable: "Plugin 資產目錄可寫"
|
||||
text_powered_by: "由 %{link} 提供"
|
||||
text_project_identifier_info: "僅允許小寫字母(a-z)、數字、破折號(-) 及底線(_),且必須以小寫字母開頭。"
|
||||
|
||||
@@ -1608,7 +1608,8 @@ en:
|
||||
not_a_datetime: "is not a valid date time."
|
||||
not_a_number: "is not a number."
|
||||
not_allowed: "is invalid because of missing permissions."
|
||||
not_json: "is not a valid JSON object."
|
||||
not_json: "is not parseable as JSON."
|
||||
not_json_object: "is not a JSON object."
|
||||
not_an_integer: "is not an integer."
|
||||
not_an_iso_date: "is not a valid date. Required format: YYYY-MM-DD."
|
||||
not_same_project: "doesn't belong to the same project."
|
||||
@@ -2278,6 +2279,7 @@ en:
|
||||
button_print: "Print"
|
||||
button_quote: "Quote"
|
||||
button_remove: Remove
|
||||
button_remove_permanently: "Remove permanently"
|
||||
button_remove_reminder: "Remove reminder"
|
||||
button_rename: "Rename"
|
||||
button_replace: "Replace"
|
||||
@@ -5003,6 +5005,7 @@ en:
|
||||
For more information on what the check provides, what data is needed to provide available updates, and how to disable this check, please visit <a href="%{more_info_url}">the configuration documentation</a>.
|
||||
text_own_membership_delete_confirmation: "You are about to remove some or all of your permissions and may no longer be able to edit this project after that.\nAre you sure you want to continue?"
|
||||
text_permanent_delete_confirmation_checkbox_label: "I understand that this deletion cannot be reversed"
|
||||
text_permanent_remove_confirmation_checkbox_label: "I understand that this removal cannot be reversed"
|
||||
text_plugin_assets_writable: "Plugin assets directory writable"
|
||||
text_powered_by: "Powered by %{link}"
|
||||
text_project_identifier_info: "Only lower case letters (a-z), numbers, dashes and underscores are allowed, must start with a lower case letter."
|
||||
|
||||
@@ -73,6 +73,9 @@ Rails.application.routes.draw do
|
||||
get "/auth/:provider", to: proc { [404, {}, [""]] }, as: "omni_auth_start"
|
||||
match "/auth/:provider/callback", to: "omni_auth_login#callback", as: "omni_auth_callback", via: %i[get post]
|
||||
|
||||
get "/.well-known/oauth-authorization-server", to: "oauth_metadata#authorization_server", as: :authorization_server_metadata
|
||||
get "/.well-known/oauth-protected-resource", to: "oauth_metadata#protected_resource", as: :protected_resource_metadata
|
||||
|
||||
# In case assets are actually delivered by a node server (e.g. in test env)
|
||||
# forward requests to the proxy
|
||||
if FrontendAssetHelper.assets_proxied?
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user