diff --git a/.hgignore b/.hgignore deleted file mode 100644 index 386a213..0000000 --- a/.hgignore +++ /dev/null @@ -1,43 +0,0 @@ -syntax: glob - -.project -.idea -.loadpath -.powrc -.rvmrc -.ruby-version -config/additional_environment.rb -config/configuration.yml -config/database.yml -config/email.yml -config/secrets.yml -config/initializers/session_store.rb -config/initializers/secret_token.rb -coverage -db/*.db -db/*.sqlite3 -db/schema.rb -files/* -lib/redmine/scm/adapters/mercurial/redminehelper.pyc -lib/redmine/scm/adapters/mercurial/redminehelper.pyo -log/*.log* -log/mongrel_debug -public/dispatch.* -public/plugin_assets/* -tmp/* -tmp/cache/* -tmp/pdf/* -tmp/sessions/* -tmp/sockets/* -tmp/test/* -tmp/thumbnails/* -vendor/cache -*.rbc - -.svn/ -.git/ - -.bundle -Gemfile.lock -Gemfile.local - diff --git a/.rubocop.yml b/.rubocop.yml deleted file mode 100644 index a893304..0000000 --- a/.rubocop.yml +++ /dev/null @@ -1,103 +0,0 @@ -inherit_from: .rubocop_todo.yml - -AllCops: - TargetRubyVersion: 2.3 - TargetRailsVersion: 5.2 - - Exclude: - - '**/vendor/**/*' - - '**/tmp/**/*' - - '**/bin/**/*' - - '**/plugins/**/*' - - '**/extra/**/*' - - '**/lib/generators/**/templates/*' - - '**/lib/tasks/**/*' - - '**/files/**/*' - - 'db/schema.rb' - -# Enable extensions - -require: - - rubocop-performance - - rubocop-rails - -# Rules for Redmine - -Bundler/OrderedGems: - Enabled: false - -Layout/EmptyLineBetweenDefs: - AllowAdjacentOneLineDefs: true - -Layout/SpaceBeforeBlockBraces: - # "space" is used more than "no_space". - # But "no_space" is more natural in one liner. - # str = path.to_s.split(%r{[/\\]}).select{|p| !p.blank?}.join("/") - Enabled: false - -# You can see results by "rubocop --only Layout/SpaceInsideBlockBraces" -Layout/SpaceInsideBlockBraces: - EnforcedStyle: no_space - SpaceBeforeBlockParameters: false - -# You can see results by "rubocop --only Layout/SpaceInsideHashLiteralBraces" -Layout/SpaceInsideHashLiteralBraces: - EnforcedStyle: no_space - -Layout/TrailingWhitespace: - AllowInHeredoc: true - -Lint/HandleExceptions: - AllowComments: true - -Metrics: - Enabled: false - -Naming/AccessorMethodName: - Enabled: false - -Naming/BinaryOperatorParameterName: - Enabled: false - -Naming/PredicateName: - Enabled: false - -Rails/BulkChangeTable: - Exclude: - - 'db/migrate/20120714122200_add_workflows_rule_fields.rb' - - 'db/migrate/20131214094309_remove_custom_fields_min_max_length_default_values.rb' - -Rails/HelperInstanceVariable: - Enabled: false - -# Configuration parameters: AllowedChars. -Style/AsciiComments: - Exclude: - # Copyright credit has non ascii character. - # We can not change nor remove it. - - 'app/models/repository/git.rb' - -Style/FormatStringToken: - Enabled: false - -Style/FrozenStringLiteralComment: - Enabled: true - EnforcedStyle: always - Exclude: - - 'db/**/*.rb' - - 'Gemfile' - - 'Rakefile' - - 'config.ru' - - 'config/additional_environment.rb' - -Style/HashSyntax: - Enabled: true - EnforcedStyle: no_mixed_keys - -Style/IdenticalConditionalBranches: - Exclude: - - 'config/initializers/10-patches.rb' - - 'lib/redmine/wiki_formatting/textile/redcloth3.rb' - -Style/TrailingCommaInArrayLiteral: - Enabled: false diff --git a/.rubocop_todo.yml b/.rubocop_todo.yml deleted file mode 100644 index 39fd8a0..0000000 --- a/.rubocop_todo.yml +++ /dev/null @@ -1,1637 +0,0 @@ -# This configuration was generated by -# `rubocop --auto-gen-config --exclude-limit 20 --no-offense-counts --no-auto-gen-timestamp` -# using RuboCop version 0.76.0. -# The point is for the user to remove these configuration records -# one by one as the offenses are removed from the code base. -# Note that changes in the inspected code, or installation of new -# versions of RuboCop, may require this file to be generated again. - -# Cop supports --auto-correct. -# Configuration parameters: EnforcedStyle, IndentationWidth. -# SupportedStyles: with_first_argument, with_fixed_indentation -Layout/AlignArguments: - Exclude: - - 'config/application.rb' - - 'lib/redmine/scm/adapters/bazaar_adapter.rb' - - 'lib/redmine/scm/adapters/subversion_adapter.rb' - - 'test/functional/journals_controller_test.rb' - - 'test/functional/my_controller_test.rb' - - 'test/functional/roles_controller_test.rb' - - 'test/integration/api_test/attachments_test.rb' - - 'test/integration/api_test/groups_test.rb' - - 'test/integration/api_test/issue_relations_test.rb' - - 'test/integration/api_test/memberships_test.rb' - - 'test/integration/api_test/projects_test.rb' - - 'test/integration/api_test/wiki_pages_test.rb' - - 'test/test_helper.rb' - - 'test/unit/changeset_test.rb' - - 'test/unit/lib/redmine/field_format/version_field_format_test.rb' - - 'test/unit/lib/redmine/wiki_formatting/html_parser_test.rb' - - 'test/unit/lib/redmine/wiki_formatting/markdown_formatter_test.rb' - - 'test/unit/lib/redmine/wiki_formatting/markdown_html_parser_test.rb' - - 'test/unit/lib/redmine/wiki_formatting/textile_formatter_test.rb' - - 'test/unit/lib/redmine/wiki_formatting/textile_html_parser_test.rb' - -# Cop supports --auto-correct. -# Configuration parameters: AllowMultipleStyles, EnforcedHashRocketStyle, EnforcedColonStyle, EnforcedLastArgumentHashStyle. -# SupportedHashRocketStyles: key, separator, table -# SupportedColonStyles: key, separator, table -# SupportedLastArgumentHashStyles: always_inspect, always_ignore, ignore_implicit, ignore_explicit -Layout/AlignHash: - Enabled: false - -# Cop supports --auto-correct. -# Configuration parameters: EnforcedStyle, IndentOneStep, IndentationWidth. -# SupportedStyles: case, end -Layout/CaseIndentation: - Exclude: - - 'config/initializers/10-patches.rb' - -# Cop supports --auto-correct. -Layout/ClosingHeredocIndentation: - Exclude: - - 'test/unit/lib/redmine/wiki_formatting/textile_formatter_test.rb' - - 'test/unit/lib/redmine/wiki_formatting_test.rb' - -# Cop supports --auto-correct. -Layout/ClosingParenthesisIndentation: - Enabled: false - -# Cop supports --auto-correct. -# Configuration parameters: EnforcedStyle. -# SupportedStyles: leading, trailing -Layout/DotPosition: - Enabled: false - -# Cop supports --auto-correct. -Layout/EmptyLineAfterGuardClause: - Enabled: false - -# Cop supports --auto-correct. -Layout/EmptyLines: - Exclude: - - 'config/routes.rb' - - 'db/migrate/001_setup.rb' - - 'lib/redmine/sudo_mode.rb' - - 'test/helpers/application_helper_test.rb' - -# Cop supports --auto-correct. -# Configuration parameters: EnforcedStyle. -# SupportedStyles: around, only_before -Layout/EmptyLinesAroundAccessModifier: - Exclude: - - 'config/initializers/10-patches.rb' - -# Cop supports --auto-correct. -# Configuration parameters: EnforcedStyle. -# SupportedStyles: empty_lines, empty_lines_except_namespace, empty_lines_special, no_empty_lines, beginning_only, ending_only -Layout/EmptyLinesAroundClassBody: - Enabled: false - -# Cop supports --auto-correct. -Layout/EmptyLinesAroundExceptionHandlingKeywords: - Exclude: - - 'app/controllers/activities_controller.rb' - - 'app/controllers/imports_controller.rb' - - 'app/controllers/wiki_controller.rb' - - 'test/functional/settings_controller_test.rb' - -# Cop supports --auto-correct. -Layout/EmptyLinesAroundMethodBody: - Exclude: - - 'app/models/query.rb' - - 'db/migrate/001_setup.rb' - - 'db/migrate/20111201201315_add_unique_index_to_issue_relations.rb' - - 'test/functional/journals_controller_test.rb' - - 'test/functional/users_controller_test.rb' - - 'test/integration/account_test.rb' - - 'test/unit/attachment_test.rb' - - 'test/unit/lib/redmine/menu_manager/mapper_test.rb' - - 'test/unit/lib/redmine/menu_manager/menu_helper_test.rb' - - 'test/unit/lib/redmine/unified_diff_test.rb' - -# Cop supports --auto-correct. -# Configuration parameters: EnforcedStyle. -# SupportedStyles: empty_lines, empty_lines_except_namespace, empty_lines_special, no_empty_lines -Layout/EmptyLinesAroundModuleBody: - Enabled: false - -# Cop supports --auto-correct. -# Configuration parameters: AllowForAlignment, AllowBeforeTrailingComments, ForceEqualSignAlignment. -Layout/ExtraSpacing: - Enabled: false - -# Cop supports --auto-correct. -# Configuration parameters: EnforcedStyle, IndentationWidth. -# SupportedStyles: consistent, consistent_relative_to_receiver, special_for_inner_method_call, special_for_inner_method_call_in_parentheses -Layout/IndentFirstArgument: - Enabled: false - -# Cop supports --auto-correct. -# Configuration parameters: EnforcedStyle, IndentationWidth. -# SupportedStyles: special_inside_parentheses, consistent, align_brackets -Layout/IndentFirstArrayElement: - Exclude: - - 'app/models/setting.rb' - - 'lib/redmine/nested_set/issue_nested_set.rb' - - 'lib/redmine/nested_set/project_nested_set.rb' - - 'lib/redmine/wiki_formatting/textile/redcloth3.rb' - - 'test/functional/auth_sources_controller_test.rb' - - 'test/functional/repositories_mercurial_controller_test.rb' - - 'test/functional/settings_controller_test.rb' - - 'test/helpers/activities_helper_test.rb' - - 'test/helpers/issues_helper_test.rb' - - 'test/unit/issue_test.rb' - - 'test/unit/lib/redmine/scm/adapters/git_adapter_test.rb' - - 'test/unit/lib/redmine/scm/adapters/mercurial_adapter_test.rb' - - 'test/unit/project_test.rb' - - 'test/unit/repository_git_test.rb' - - 'test/unit/version_test.rb' - -# Cop supports --auto-correct. -# Configuration parameters: EnforcedStyle, IndentationWidth. -# SupportedStyles: special_inside_parentheses, consistent, align_braces -Layout/IndentFirstHashElement: - Enabled: false - -# Cop supports --auto-correct. -# Configuration parameters: EnforcedStyle. -# SupportedStyles: squiggly, active_support, powerpack, unindent -Layout/IndentHeredoc: - Exclude: - - 'test/unit/lib/redmine/wiki_formatting/textile_formatter_test.rb' - - 'test/unit/lib/redmine/wiki_formatting_test.rb' - -# Cop supports --auto-correct. -# Configuration parameters: EnforcedStyle. -# SupportedStyles: normal, indented_internal_methods -Layout/IndentationConsistency: - Exclude: - - 'test/mocks/open_id_authentication_mock.rb' - -# Cop supports --auto-correct. -# Configuration parameters: Width, IgnoredPatterns. -Layout/IndentationWidth: - Enabled: false - -# Cop supports --auto-correct. -# Configuration parameters: EnforcedStyle. -# SupportedStyles: symmetrical, new_line, same_line -Layout/MultilineArrayBraceLayout: - Exclude: - - 'app/helpers/settings_helper.rb' - - 'app/helpers/users_helper.rb' - -# Cop supports --auto-correct. -# Configuration parameters: EnforcedStyle. -# SupportedStyles: symmetrical, new_line, same_line -Layout/MultilineHashBraceLayout: - Enabled: false - -# Cop supports --auto-correct. -# Configuration parameters: EnforcedStyle. -# SupportedStyles: symmetrical, new_line, same_line -Layout/MultilineMethodCallBraceLayout: - Enabled: false - -# Cop supports --auto-correct. -# Configuration parameters: EnforcedStyle, IndentationWidth. -# SupportedStyles: aligned, indented, indented_relative_to_receiver -Layout/MultilineMethodCallIndentation: - Enabled: false - -# Cop supports --auto-correct. -# Configuration parameters: EnforcedStyle, IndentationWidth. -# SupportedStyles: aligned, indented -Layout/MultilineOperationIndentation: - Enabled: false - -# Cop supports --auto-correct. -Layout/RescueEnsureAlignment: - Exclude: - - 'db/migrate/085_add_role_tracker_old_status_index_to_workflows.rb' - -# Cop supports --auto-correct. -Layout/SpaceAfterComma: - Enabled: false - -# Cop supports --auto-correct. -Layout/SpaceAfterNot: - Exclude: - - 'app/controllers/application_controller.rb' - - 'app/models/repository/cvs.rb' - - 'app/models/repository/git.rb' - - 'lib/redmine/codeset_util.rb' - - 'test/functional/account_controller_test.rb' - - 'test/functional/documents_controller_test.rb' - - 'test/functional/issues_controller_test.rb' - - 'test/functional/repositories_git_controller_test.rb' - - 'test/functional/timelog_controller_test.rb' - - 'test/functional/workflows_controller_test.rb' - - 'test/helpers/application_helper_test.rb' - - 'test/unit/attachment_test.rb' - - 'test/unit/lib/redmine/export/pdf_test.rb' - - 'test/unit/project_copy_test.rb' - - 'test/unit/project_test.rb' - - 'test/unit/query_test.rb' - - 'test/unit/role_test.rb' - - 'test/unit/user_test.rb' - -# Cop supports --auto-correct. -# Configuration parameters: EnforcedStyle. -# SupportedStyles: space, no_space -Layout/SpaceAroundEqualsInParameterDefault: - Enabled: false - -# Cop supports --auto-correct. -# Configuration parameters: AllowForAlignment. -Layout/SpaceAroundOperators: - Enabled: false - -# Cop supports --auto-correct. -Layout/SpaceBeforeComma: - Exclude: - - 'test/mocks/open_id_authentication_mock.rb' - -# Cop supports --auto-correct. -# Configuration parameters: AllowForAlignment. -Layout/SpaceBeforeFirstArg: - Exclude: - - 'test/helpers/issues_helper_test.rb' - - 'test/helpers/search_helper_test.rb' - - 'test/unit/lib/redmine/menu_manager_test.rb' - -# Cop supports --auto-correct. -Layout/SpaceBeforeSemicolon: - Exclude: - - 'app/models/user_preference.rb' - - 'config/initializers/10-patches.rb' - -# Cop supports --auto-correct. -# Configuration parameters: EnforcedStyle. -# SupportedStyles: require_no_space, require_space -Layout/SpaceInLambdaLiteral: - Exclude: - - 'app/helpers/application_helper.rb' - -# Cop supports --auto-correct. -# Configuration parameters: EnforcedStyle, EnforcedStyleForEmptyBrackets. -# SupportedStyles: space, no_space, compact -# SupportedStylesForEmptyBrackets: space, no_space -Layout/SpaceInsideArrayLiteralBrackets: - Exclude: - - 'app/controllers/projects_controller.rb' - - 'app/helpers/timelog_helper.rb' - - 'app/models/query.rb' - - 'lib/diff.rb' - - 'lib/redmine/i18n.rb' - - 'test/mocks/open_id_authentication_mock.rb' - - 'test/unit/mailer_localisation_test.rb' - - 'test/unit/mailer_test.rb' - - 'test/unit/search_test.rb' - -# Cop supports --auto-correct. -# Configuration parameters: EnforcedStyle, EnforcedStyleForEmptyBraces, SpaceBeforeBlockParameters. -# SupportedStyles: space, no_space -# SupportedStylesForEmptyBraces: space, no_space -Layout/SpaceInsideBlockBraces: - Enabled: false - -# Cop supports --auto-correct. -# Configuration parameters: EnforcedStyle, EnforcedStyleForEmptyBraces. -# SupportedStyles: space, no_space, compact -# SupportedStylesForEmptyBraces: space, no_space -Layout/SpaceInsideHashLiteralBraces: - Enabled: false - -# Cop supports --auto-correct. -# Configuration parameters: EnforcedStyle. -# SupportedStyles: space, no_space -Layout/SpaceInsideParens: - Exclude: - - 'app/controllers/application_controller.rb' - - 'app/helpers/issues_helper.rb' - - 'app/models/auth_source_ldap.rb' - - 'app/models/repository/cvs.rb' - - 'lib/redmine/scm/adapters/abstract_adapter.rb' - - 'lib/redmine/scm/adapters/cvs_adapter.rb' - - 'lib/redmine/scm/adapters/git_adapter.rb' - - 'lib/redmine/sudo_mode.rb' - - 'lib/redmine/wiki_formatting/textile/formatter.rb' - - 'lib/redmine/wiki_formatting/textile/redcloth3.rb' - - 'test/helpers/application_helper_test.rb' - - 'test/unit/changeset_test.rb' - - 'test/unit/issue_subtasking_test.rb' - - 'test/unit/lib/redmine/export/pdf_test.rb' - - 'test/unit/lib/redmine/wiki_formatting/textile_formatter_test.rb' - - 'test/unit/query_test.rb' - - 'test/unit/repository_test.rb' - - 'test/unit/user_test.rb' - -# Cop supports --auto-correct. -Layout/SpaceInsidePercentLiteralDelimiters: - Exclude: - - 'app/models/project.rb' - -# Cop supports --auto-correct. -# Configuration parameters: EnforcedStyle. -# SupportedStyles: space, no_space -Layout/SpaceInsideStringInterpolation: - Exclude: - - 'app/helpers/application_helper.rb' - - 'app/helpers/workflows_helper.rb' - - 'app/models/issue_query.rb' - - 'app/models/mail_handler.rb' - - 'lib/redmine/core_ext/string/inflections.rb' - - 'test/integration/admin_test.rb' - -Lint/AmbiguousBlockAssociation: - Enabled: false - -Lint/AmbiguousOperator: - Exclude: - - 'app/controllers/application_controller.rb' - - 'app/helpers/application_helper.rb' - - 'test/unit/custom_field_test.rb' - - 'test/unit/member_test.rb' - -Lint/AmbiguousRegexpLiteral: - Enabled: false - -# Configuration parameters: AllowSafeAssignment. -Lint/AssignmentInCondition: - Enabled: false - -# Cop supports --auto-correct. -Lint/DeprecatedClassMethods: - Exclude: - - 'Gemfile' - - 'app/models/import.rb' - - 'config/application.rb' - - 'config/boot.rb' - - 'config/routes.rb' - - 'lib/redmine/scm/adapters/abstract_adapter.rb' - - 'lib/redmine/thumbnail.rb' - - 'lib/redmine/utils.rb' - - 'test/functional/issues_controller_test.rb' - - 'test/unit/attachment_test.rb' - - 'test/unit/issue_import_test.rb' - -Lint/EmptyWhen: - Exclude: - - 'app/controllers/issues_controller.rb' - - 'app/controllers/wiki_controller.rb' - -# Configuration parameters: AllowComments. -Lint/HandleExceptions: - Exclude: - - 'app/controllers/activities_controller.rb' - - 'app/models/import.rb' - - 'db/migrate/085_add_role_tracker_old_status_index_to_workflows.rb' - - 'lib/redmine/scm/adapters/cvs_adapter.rb' - - 'lib/redmine/scm/adapters/subversion_adapter.rb' - -Lint/IneffectiveAccessModifier: - Exclude: - - 'app/models/auth_source_ldap.rb' - -Lint/InterpolationCheck: - Exclude: - - 'app/models/user.rb' - -# Cop supports --auto-correct. -Lint/LiteralInInterpolation: - Exclude: - - 'test/unit/mail_handler_test.rb' - -Lint/Loop: - Exclude: - - 'lib/redmine/helpers/gantt.rb' - -Lint/ParenthesesAsGroupedExpression: - Exclude: - - 'lib/redmine/field_format.rb' - - 'test/functional/account_controller_test.rb' - - 'test/functional/email_addresses_controller_test.rb' - - 'test/functional/my_controller_test.rb' - - 'test/functional/settings_controller_test.rb' - - 'test/functional/users_controller_test.rb' - - 'test/helpers/application_helper_test.rb' - - 'test/unit/attachment_test.rb' - - 'test/unit/lib/redmine/export/pdf_test.rb' - -# Cop supports --auto-correct. -Lint/SendWithMixinArgument: - Exclude: - - 'lib/redmine/acts/positioned.rb' - - 'test/object_helpers.rb' - -Lint/ShadowingOuterLocalVariable: - Enabled: false - -# Cop supports --auto-correct. -Lint/StringConversionInInterpolation: - Exclude: - - 'lib/redmine/export/pdf/issues_pdf_helper.rb' - - 'test/functional/repositories_filesystem_controller_test.rb' - - 'test/functional/repositories_git_controller_test.rb' - - 'test/functional/repositories_mercurial_controller_test.rb' - -# Cop supports --auto-correct. -Lint/UnifiedInteger: - Exclude: - - 'test/unit/query_test.rb' - -# Cop supports --auto-correct. -# Configuration parameters: IgnoreEmptyBlocks, AllowUnusedKeywordArguments. -Lint/UnusedBlockArgument: - Enabled: false - -# Cop supports --auto-correct. -# Configuration parameters: AllowUnusedKeywordArguments, IgnoreEmptyMethods. -Lint/UnusedMethodArgument: - Enabled: false - -Lint/UriEscapeUnescape: - Exclude: - - 'lib/redmine/field_format.rb' - - 'lib/redmine/scm/adapters/subversion_adapter.rb' - - 'test/functional/wiki_controller_test.rb' - -Lint/UselessAssignment: - Enabled: false - -# Configuration parameters: CheckForMethodsWithNoSideEffects. -Lint/Void: - Exclude: - - 'app/models/query.rb' - - 'app/models/time_entry.rb' - - 'app/models/wiki_content_version.rb' - - 'lib/redmine/unified_diff.rb' - -Naming/ConstantName: - Exclude: - - 'app/models/document_category.rb' - - 'app/models/issue_priority.rb' - - 'app/models/time_entry_activity.rb' - - 'lib/redmine/helpers/gantt.rb' - -# Configuration parameters: ExpectMatchingDefinition, Regex, IgnoreExecutableScripts, AllowedAcronyms. -# AllowedAcronyms: CLI, DSL, ACL, API, ASCII, CPU, CSS, DNS, EOF, GUID, HTML, HTTP, HTTPS, ID, IP, JSON, LHS, QPS, RAM, RHS, RPC, SLA, SMTP, SQL, SSH, TCP, TLS, TTL, UDP, UI, UID, UUID, URI, URL, UTF8, VM, XML, XMPP, XSRF, XSS -Naming/FileName: - Exclude: - - 'config/initializers/00-core_plugins.rb' - - 'config/initializers/10-patches.rb' - - 'config/initializers/20-mime_types.rb' - - 'config/initializers/30-redmine.rb' - -# Configuration parameters: EnforcedStyleForLeadingUnderscores. -# SupportedStylesForLeadingUnderscores: disallowed, required, optional -Naming/MemoizedInstanceVariableName: - Exclude: - - 'app/controllers/email_addresses_controller.rb' - - 'app/controllers/users_controller.rb' - - 'app/controllers/workflows_controller.rb' - - 'app/models/issue.rb' - - 'app/models/project.rb' - - 'app/models/query.rb' - - 'app/models/role.rb' - - 'lib/redmine/field_format.rb' - - 'lib/redmine/helpers/calendar.rb' - - 'lib/redmine/search.rb' - -# Configuration parameters: EnforcedStyle, IgnoredPatterns. -# SupportedStyles: snake_case, camelCase -Naming/MethodName: - Exclude: - - 'lib/redmine/export/pdf.rb' - - 'lib/redmine/scm/adapters/cvs_adapter.rb' - - 'lib/redmine/wiki_formatting/textile/redcloth3.rb' - - 'test/helpers/application_helper_test.rb' - -# Cop supports --auto-correct. -# Configuration parameters: PreferredName. -Naming/RescuedExceptionsVariableName: - Exclude: - - 'app/models/user.rb' - - 'lib/redmine/scm/adapters/abstract_adapter.rb' - - 'lib/redmine/scm/adapters/filesystem_adapter.rb' - -# Configuration parameters: MinNameLength, AllowNamesEndingInNumbers, AllowedNames, ForbiddenNames. -# AllowedNames: io, id, to, by, on, in, at, ip, db, os -Naming/UncommunicativeMethodParamName: - Enabled: false - -# Configuration parameters: EnforcedStyle. -# SupportedStyles: snake_case, camelCase -Naming/VariableName: - Exclude: - - 'lib/redmine/scm/adapters/cvs_adapter.rb' - - 'lib/redmine/wiki_formatting/textile/redcloth3.rb' - -# Configuration parameters: EnforcedStyle. -# SupportedStyles: snake_case, normalcase, non_integer -Naming/VariableNumber: - Exclude: - - 'test/functional/versions_controller_test.rb' - - 'test/helpers/application_helper_test.rb' - - 'test/unit/lib/redmine/export/pdf_test.rb' - - 'test/unit/lib/redmine/scm/adapters/git_adapter_test.rb' - - 'test/unit/lib/redmine/scm/adapters/mercurial_adapter_test.rb' - - 'test/unit/project_test.rb' - -Performance/FixedSize: - Exclude: - - 'test/integration/api_test/issues_test.rb' - - 'test/integration/attachments_test.rb' - -# Cop supports --auto-correct. -Performance/RedundantMatch: - Exclude: - - 'app/models/issue_relation.rb' - - 'lib/redmine/wiki_formatting/textile/formatter.rb' - - 'lib/redmine/wiki_formatting/textile/redcloth3.rb' - -# Cop supports --auto-correct. -# Configuration parameters: MaxKeyValuePairs. -Performance/RedundantMerge: - Exclude: - - 'app/controllers/issues_controller.rb' - - 'app/helpers/application_helper.rb' - - 'app/helpers/avatars_helper.rb' - - 'app/helpers/custom_fields_helper.rb' - - 'app/helpers/workflows_helper.rb' - - 'app/models/auth_source_ldap.rb' - - 'app/models/principal.rb' - - 'lib/redmine/access_control.rb' - - 'test/functional/imports_controller_test.rb' - - 'test/unit/issue_import_test.rb' - - 'test/unit/time_entry_import_test.rb' - -# Cop supports --auto-correct. -Performance/StringReplacement: - Exclude: - - 'app/helpers/application_helper.rb' - - 'app/helpers/imports_helper.rb' - - 'app/helpers/settings_helper.rb' - - 'lib/redmine/core_ext/string/conversions.rb' - - 'lib/redmine/wiki_formatting/textile/redcloth3.rb' - - 'test/functional/repositories_cvs_controller_test.rb' - - 'test/functional/repositories_git_controller_test.rb' - - 'test/helpers/application_helper_test.rb' - - 'test/integration/repositories_git_test.rb' - - 'test/unit/lib/redmine/scm/adapters/cvs_adapter_test.rb' - - 'test/unit/lib/redmine/scm/adapters/mercurial_adapter_test.rb' - - 'test/unit/repository_cvs_test.rb' - - 'test/unit/repository_git_test.rb' - -# Configuration parameters: Include. -# Include: app/models/**/*.rb -Rails/ActiveRecordOverride: - Exclude: - - 'app/models/email_address.rb' - - 'app/models/issue.rb' - - 'app/models/journal.rb' - - 'app/models/member.rb' - -# Cop supports --auto-correct. -Rails/ApplicationRecord: - Enabled: false - -# Cop supports --auto-correct. -# Configuration parameters: Include. -# Include: **/test/**/* -Rails/AssertNot: - Enabled: false - -# Cop supports --auto-correct. -# Configuration parameters: NilOrEmpty, NotPresent, UnlessPresent. -Rails/Blank: - Exclude: - - 'app/controllers/application_controller.rb' - - 'app/controllers/context_menus_controller.rb' - - 'app/controllers/repositories_controller.rb' - - 'app/controllers/watchers_controller.rb' - - 'app/helpers/queries_helper.rb' - - 'app/helpers/repositories_helper.rb' - - 'app/models/mailer.rb' - - 'app/models/query.rb' - - 'app/models/repository/git.rb' - - 'app/models/role.rb' - - 'lib/redmine/field_format.rb' - - 'lib/redmine/wiki_formatting/macros.rb' - -# Configuration parameters: Include. -# Include: db/migrate/*.rb -Rails/CreateTableWithTimestamps: - Enabled: false - -# Configuration parameters: EnforcedStyle. -# SupportedStyles: strict, flexible -Rails/Date: - Enabled: false - -# Cop supports --auto-correct. -# Configuration parameters: EnforceForPrefixed. -Rails/Delegate: - Exclude: - - 'app/models/changeset.rb' - - 'app/models/custom_field.rb' - - 'app/models/custom_field_enumeration.rb' - - 'app/models/custom_field_value.rb' - - 'app/models/custom_value.rb' - - 'app/models/group.rb' - - 'app/models/message.rb' - - 'app/models/repository.rb' - - 'app/models/repository/git.rb' - - 'app/models/time_entry_activity.rb' - - 'app/models/wiki_content.rb' - - 'app/models/wiki_content_version.rb' - - 'lib/redmine/menu_manager.rb' - -# Cop supports --auto-correct. -# Configuration parameters: Whitelist. -# Whitelist: find_by_sql -Rails/DynamicFindBy: - Enabled: false - -# Configuration parameters: Include. -# Include: app/**/*.rb, config/**/*.rb, lib/**/*.rb -Rails/Exit: - Exclude: - - 'lib/**/*.rake' - - 'config/environment.rb' - - 'config/initializers/10-patches.rb' - - 'config/routes.rb' - -# Configuration parameters: EnforcedStyle. -# SupportedStyles: slashes, arguments -Rails/FilePath: - Enabled: false - -# Cop supports --auto-correct. -# Configuration parameters: Include. -# Include: app/models/**/*.rb -Rails/FindBy: - Exclude: - - 'app/models/attachment.rb' - - 'app/models/enumeration.rb' - - 'app/models/issue_import.rb' - - 'app/models/repository.rb' - - 'app/models/repository/cvs.rb' - - 'app/models/repository/git.rb' - - 'app/models/repository/mercurial.rb' - - 'app/models/time_entry_query.rb' - - 'app/models/user.rb' - - 'app/models/wiki.rb' - - 'app/models/wiki_content_version.rb' - -# Cop supports --auto-correct. -# Configuration parameters: Include. -# Include: app/models/**/*.rb -Rails/FindEach: - Exclude: - - 'app/models/auth_source.rb' - - 'app/models/group.rb' - - 'app/models/issue.rb' - - 'app/models/issue_status.rb' - - 'app/models/project.rb' - - 'app/models/query.rb' - - 'app/models/repository.rb' - - 'app/models/setting.rb' - - 'app/models/watcher.rb' - - 'app/models/wiki_page.rb' - -# Configuration parameters: Include. -# Include: app/models/**/*.rb -Rails/HasAndBelongsToMany: - Exclude: - - 'app/models/changeset.rb' - - 'app/models/custom_field.rb' - - 'app/models/group.rb' - - 'app/models/issue.rb' - - 'app/models/issue_custom_field.rb' - - 'app/models/project.rb' - - 'app/models/query.rb' - - 'app/models/role.rb' - - 'app/models/tracker.rb' - - 'app/models/user.rb' - -# Configuration parameters: Include. -# Include: app/models/**/*.rb -Rails/HasManyOrHasOneDependent: - Exclude: - - 'app/models/auth_source.rb' - - 'app/models/document_category.rb' - - 'app/models/issue_priority.rb' - - 'app/models/issue_status.rb' - - 'app/models/project.rb' - - 'app/models/time_entry_activity.rb' - - 'app/models/tracker.rb' - - 'app/models/wiki.rb' - -# Cop supports --auto-correct. -# Configuration parameters: EnforcedStyle. -# SupportedStyles: numeric, symbolic -Rails/HttpStatus: - Exclude: - - 'app/controllers/mail_handler_controller.rb' - - 'app/controllers/sys_controller.rb' - - 'app/controllers/watchers_controller.rb' - -# Configuration parameters: Include. -# Include: app/models/**/*.rb -Rails/InverseOf: - Exclude: - - 'app/models/board.rb' - - 'app/models/custom_field.rb' - - 'app/models/document_category.rb' - - 'app/models/issue.rb' - - 'app/models/issue_category.rb' - - 'app/models/issue_priority.rb' - - 'app/models/issue_status.rb' - - 'app/models/journal.rb' - - 'app/models/member.rb' - - 'app/models/news.rb' - - 'app/models/principal.rb' - - 'app/models/project.rb' - - 'app/models/repository.rb' - - 'app/models/repository/mercurial.rb' - - 'app/models/time_entry_activity.rb' - - 'app/models/user.rb' - - 'app/models/version.rb' - - 'app/models/wiki.rb' - - 'app/models/wiki_page.rb' - -# Configuration parameters: Include. -# Include: app/controllers/**/*.rb -Rails/LexicallyScopedActionFilter: - Exclude: - - 'app/controllers/projects_controller.rb' - -# Cop supports --auto-correct. -Rails/LinkToBlank: - Exclude: - - 'app/helpers/avatars_helper.rb' - -# Configuration parameters: Include. -# Include: app/**/*.rb, config/**/*.rb, db/**/*.rb, lib/**/*.rb -Rails/Output: - Exclude: - - 'app/models/mail_handler.rb' - - 'config/routes.rb' - - 'lib/redmine/unified_diff.rb' - -Rails/OutputSafety: - Enabled: false - -# Cop supports --auto-correct. -Rails/PluralizationGrammar: - Exclude: - - 'lib/redmine/helpers/time_report.rb' - - 'test/functional/gantts_controller_test.rb' - - 'test/unit/mailer_test.rb' - - 'test/unit/query_test.rb' - -# Cop supports --auto-correct. -Rails/Presence: - Exclude: - - 'app/controllers/activities_controller.rb' - - 'app/helpers/application_helper.rb' - - 'app/models/repository.rb' - - 'lib/redmine/codeset_util.rb' - - 'lib/redmine/i18n.rb' - - 'lib/redmine/scm/adapters/abstract_adapter.rb' - - 'lib/redmine/scm/adapters/filesystem_adapter.rb' - - 'lib/redmine/scm/adapters/git_adapter.rb' - - 'lib/redmine/scm/adapters/mercurial_adapter.rb' - - 'lib/redmine/sort_criteria.rb' - -# Cop supports --auto-correct. -# Configuration parameters: NotNilAndNotEmpty, NotBlank, UnlessBlank. -Rails/Present: - Enabled: false - -# Cop supports --auto-correct. -# Configuration parameters: Include. -# Include: app/models/**/*.rb -Rails/ReadWriteAttribute: - Exclude: - - 'app/models/attachment.rb' - - 'app/models/auth_source_ldap.rb' - - 'app/models/changeset.rb' - - 'app/models/custom_field.rb' - - 'app/models/email_address.rb' - - 'app/models/issue.rb' - - 'app/models/journal_detail.rb' - - 'app/models/message.rb' - - 'app/models/query.rb' - - 'app/models/repository.rb' - - 'app/models/repository/git.rb' - - 'app/models/role.rb' - - 'app/models/setting.rb' - - 'app/models/time_entry.rb' - - 'app/models/user.rb' - - 'app/models/user_preference.rb' - - 'app/models/wiki_page.rb' - -Rails/ReflectionClassName: - Exclude: - - 'lib/redmine/nested_set/issue_nested_set.rb' - - 'lib/redmine/nested_set/project_nested_set.rb' - -# Cop supports --auto-correct. -# Configuration parameters: Include. -# Include: **/test/**/* -Rails/RefuteMethods: - Exclude: - - 'test/functional/projects_controller_test.rb' - - 'test/functional/wiki_controller_test.rb' - - 'test/integration/account_test.rb' - - 'test/integration/api_test/my_test.rb' - - 'test/unit/attachment_test.rb' - - 'test/unit/custom_field_test.rb' - - 'test/unit/lib/redmine/project_jump_box_test.rb' - - 'test/unit/mail_handler_test.rb' - -# Configuration parameters: Blacklist, Whitelist. -# Blacklist: decrement!, decrement_counter, increment!, increment_counter, toggle!, touch, update_all, update_attribute, update_column, update_columns, update_counters -Rails/SkipsModelValidations: - Enabled: false - -# Cop supports --auto-correct. -# Configuration parameters: EnforcedStyle. -# SupportedStyles: strict, flexible -Rails/TimeZone: - Enabled: false - -# Cop supports --auto-correct. -# Configuration parameters: Include. -# Include: app/models/**/*.rb -Rails/Validation: - Enabled: false - -Security/Eval: - Exclude: - - 'app/helpers/attachments_helper.rb' - - 'app/models/user.rb' - - 'config/initializers/00-core_plugins.rb' - -Security/Open: - Exclude: - - 'app/models/version.rb' - -# Cop supports --auto-correct. -Security/YAMLLoad: - Exclude: - - 'Gemfile' - - 'app/models/setting.rb' - - 'lib/redmine/configuration.rb' - -# Configuration parameters: EnforcedStyle. -# SupportedStyles: inline, group -Style/AccessModifierDeclarations: - Enabled: false - -# Cop supports --auto-correct. -# Configuration parameters: EnforcedStyle. -# SupportedStyles: prefer_alias, prefer_alias_method -Style/Alias: - Exclude: - - 'app/controllers/repositories_controller.rb' - - 'app/models/custom_field_enumeration.rb' - - 'app/models/enumeration.rb' - - 'app/models/issue.rb' - - 'app/models/issue_category.rb' - - 'app/models/issue_query.rb' - - 'app/models/issue_status.rb' - - 'app/models/member.rb' - - 'app/models/project.rb' - - 'app/models/user.rb' - - 'app/models/version.rb' - - 'config/initializers/10-patches.rb' - - 'lib/redmine/export/pdf.rb' - - 'lib/redmine/menu_manager.rb' - - 'lib/redmine/plugin.rb' - - 'lib/redmine/wiki_formatting/markdown/formatter.rb' - - 'lib/redmine/wiki_formatting/textile/formatter.rb' - -# Cop supports --auto-correct. -# Configuration parameters: EnforcedStyle. -# SupportedStyles: always, conditionals -Style/AndOr: - Exclude: - - 'app/controllers/account_controller.rb' - - 'app/controllers/application_controller.rb' - - 'app/controllers/calendars_controller.rb' - - 'app/helpers/repositories_helper.rb' - - 'app/models/query.rb' - - 'db/migrate/022_serialize_possibles_values.rb' - - 'lib/redmine/export/pdf.rb' - - 'lib/redmine/field_format.rb' - - 'lib/redmine/helpers/gantt.rb' - - 'lib/redmine/scm/adapters/abstract_adapter.rb' - - 'lib/redmine/scm/adapters/bazaar_adapter.rb' - - 'lib/redmine/scm/adapters/filesystem_adapter.rb' - - 'lib/redmine/scm/adapters/git_adapter.rb' - - 'lib/redmine/scm/adapters/subversion_adapter.rb' - - 'lib/redmine/wiki_formatting.rb' - - 'lib/redmine/wiki_formatting/textile/redcloth3.rb' - -# Cop supports --auto-correct. -# Configuration parameters: EnforcedStyle. -# SupportedStyles: percent_q, bare_percent -Style/BarePercentLiterals: - Exclude: - - 'test/integration/api_test/api_test.rb' - -# Cop supports --auto-correct. -Style/BlockComments: - Exclude: - - 'lib/diff.rb' - -# Cop supports --auto-correct. -# Configuration parameters: EnforcedStyle, ProceduralMethods, FunctionalMethods, IgnoredMethods, AllowBracesOnProceduralOneLiners. -# SupportedStyles: line_count_based, semantic, braces_for_chaining, always_braces -# ProceduralMethods: benchmark, bm, bmbm, create, each_with_object, measure, new, realtime, tap, with_object -# FunctionalMethods: let, let!, subject, watch -# IgnoredMethods: lambda, proc, it -Style/BlockDelimiters: - Enabled: false - -# Cop supports --auto-correct. -# Configuration parameters: EnforcedStyle. -# SupportedStyles: braces, no_braces, context_dependent -Style/BracesAroundHashParameters: - Enabled: false - -# Cop supports --auto-correct. -# Configuration parameters: AutoCorrect, EnforcedStyle. -# SupportedStyles: nested, compact -Style/ClassAndModuleChildren: - Enabled: false - -# Cop supports --auto-correct. -Style/ClassMethods: - Exclude: - - 'lib/diff.rb' - -Style/ClassVars: - Exclude: - - 'app/models/attachment.rb' - - 'config/initializers/10-patches.rb' - - 'lib/redmine/activity.rb' - - 'lib/redmine/export/pdf.rb' - - 'lib/redmine/hook.rb' - - 'lib/redmine/i18n.rb' - - 'lib/redmine/menu_manager.rb' - - 'lib/redmine/my_page.rb' - - 'lib/redmine/scm/adapters/bazaar_adapter.rb' - - 'lib/redmine/scm/adapters/cvs_adapter.rb' - - 'lib/redmine/scm/adapters/git_adapter.rb' - - 'lib/redmine/scm/adapters/mercurial_adapter.rb' - - 'lib/redmine/scm/adapters/subversion_adapter.rb' - - 'lib/redmine/search.rb' - - 'lib/redmine/themes.rb' - - 'lib/redmine/wiki_formatting.rb' - - 'lib/redmine/wiki_formatting/macros.rb' - - 'lib/redmine/wiki_formatting/markdown/formatter.rb' - - 'test/helpers/activities_helper_test.rb' - -# Cop supports --auto-correct. -Style/ColonMethodCall: - Exclude: - - 'Gemfile' - - 'app/controllers/admin_controller.rb' - - 'app/models/setting.rb' - - 'lib/redmine/configuration.rb' - - 'lib/redmine/export/pdf.rb' - - 'lib/redmine/wiki_formatting.rb' - - 'lib/redmine/wiki_formatting/textile/redcloth3.rb' - - 'test/test_helper.rb' - - 'test/unit/default_data_test.rb' - - 'test/unit/lib/redmine/export/pdf_test.rb' - -# Cop supports --auto-correct. -# Configuration parameters: EnforcedStyle, SingleLineConditionsOnly, IncludeTernaryExpressions. -# SupportedStyles: assign_to_condition, assign_inside_condition -Style/ConditionalAssignment: - Enabled: false - -Style/Documentation: - Enabled: false - -Style/DoubleNegation: - Exclude: - - 'app/controllers/application_controller.rb' - - 'app/helpers/application_helper.rb' - - 'app/models/attachment.rb' - - 'app/models/issue_import.rb' - - 'app/models/mailer.rb' - - 'app/models/query.rb' - - 'app/models/user.rb' - - 'lib/redmine/sudo_mode.rb' - -# Cop supports --auto-correct. -Style/EachWithObject: - Exclude: - - 'app/controllers/repositories_controller.rb' - - 'app/helpers/queries_helper.rb' - - 'app/models/issue.rb' - - 'app/models/issue_import.rb' - - 'app/models/journal.rb' - - 'app/models/mail_handler.rb' - - 'app/models/project.rb' - - 'app/models/query.rb' - - 'app/models/repository.rb' - - 'app/models/setting.rb' - - 'app/models/time_entry_import.rb' - - 'app/models/workflow_permission.rb' - - 'config/initializers/10-patches.rb' - - 'lib/redmine/acts/positioned.rb' - - 'lib/redmine/configuration.rb' - - 'lib/redmine/i18n.rb' - - 'lib/redmine/mime_type.rb' - - 'lib/redmine/my_page.rb' - - 'lib/redmine/sort_criteria.rb' - - 'test/test_helper.rb' - -# Cop supports --auto-correct. -Style/EmptyCaseCondition: - Exclude: - - 'app/models/auth_source_ldap.rb' - - 'app/models/issue_priority.rb' - -# Cop supports --auto-correct. -# Configuration parameters: EnforcedStyle. -# SupportedStyles: empty, nil, both -Style/EmptyElse: - Exclude: - - 'app/helpers/avatars_helper.rb' - - 'app/models/import.rb' - - 'app/models/mail_handler.rb' - - 'app/models/query.rb' - -# Cop supports --auto-correct. -# Configuration parameters: EnforcedStyle. -# SupportedStyles: compact, expanded -Style/EmptyMethod: - Enabled: false - -Style/EvalWithLocation: - Exclude: - - 'app/helpers/attachments_helper.rb' - -# Cop supports --auto-correct. -Style/ExpandPathArguments: - Enabled: false - -# Cop supports --auto-correct. -# Configuration parameters: EnforcedStyle. -# SupportedStyles: each, for -Style/For: - Exclude: - - 'lib/redmine/export/pdf/issues_pdf_helper.rb' - - 'lib/redmine/export/pdf/wiki_pdf_helper.rb' - -# Cop supports --auto-correct. -# Configuration parameters: EnforcedStyle. -# SupportedStyles: format, sprintf, percent -Style/FormatString: - Exclude: - - 'app/helpers/application_helper.rb' - - 'app/helpers/queries_helper.rb' - - 'app/models/query.rb' - - 'config/initializers/10-patches.rb' - - 'lib/generators/redmine_plugin_model/redmine_plugin_model_generator.rb' - - 'lib/redmine/export/csv.rb' - - 'lib/redmine/export/pdf/issues_pdf_helper.rb' - - 'lib/redmine/helpers/gantt.rb' - - 'lib/redmine/i18n.rb' - - 'lib/redmine/info.rb' - -# Configuration parameters: AllowedVariables. -Style/GlobalVars: - Exclude: - - 'test/test_helper.rb' - -# Configuration parameters: MinBodyLength. -Style/GuardClause: - Enabled: false - -# Configuration parameters: AllowIfModifier. -Style/IfInsideElse: - Exclude: - - 'app/controllers/account_controller.rb' - - 'app/controllers/activities_controller.rb' - - 'app/controllers/application_controller.rb' - - 'app/helpers/application_helper.rb' - - 'app/helpers/issues_helper.rb' - - 'app/models/custom_field.rb' - - 'app/models/issue.rb' - - 'app/models/project.rb' - - 'app/models/query.rb' - - 'app/models/version.rb' - - 'config/initializers/10-patches.rb' - - 'lib/redmine/field_format.rb' - - 'lib/redmine/helpers/gantt.rb' - - 'lib/redmine/menu_manager.rb' - - 'lib/redmine/pop3.rb' - - 'lib/redmine/scm/adapters/bazaar_adapter.rb' - - 'lib/redmine/views/builders/structure.rb' - -# Cop supports --auto-correct. -Style/IfUnlessModifier: - Enabled: false - -Style/IfUnlessModifierOfIfUnless: - Exclude: - - 'app/models/attachment.rb' - -# Cop supports --auto-correct. -# Configuration parameters: InverseMethods, InverseBlocks. -Style/InverseMethods: - Exclude: - - 'app/controllers/roles_controller.rb' - - 'app/helpers/application_helper.rb' - - 'app/helpers/issues_helper.rb' - - 'app/helpers/repositories_helper.rb' - - 'app/models/document.rb' - - 'app/models/issue.rb' - - 'app/models/member.rb' - - 'app/models/message.rb' - - 'app/models/project.rb' - - 'app/models/tracker.rb' - - 'app/models/version.rb' - - 'app/models/wiki_content.rb' - - 'db/migrate/096_add_commit_access_permission.rb' - - 'lib/redmine/default_data/loader.rb' - - 'lib/redmine/helpers/diff.rb' - - 'lib/redmine/scm/adapters/abstract_adapter.rb' - - 'lib/redmine/scm/adapters/git_adapter.rb' - - 'lib/redmine/wiki_formatting/textile/redcloth3.rb' - - 'test/unit/issue_test.rb' - - 'test/unit/query_test.rb' - -# Cop supports --auto-correct. -# Configuration parameters: EnforcedStyle. -# SupportedStyles: line_count_dependent, lambda, literal -Style/Lambda: - Enabled: false - -# Cop supports --auto-correct. -Style/LineEndConcatenation: - Enabled: false - -# Cop supports --auto-correct. -# Configuration parameters: IgnoredMethods. -Style/MethodCallWithoutArgsParentheses: - Exclude: - - 'lib/redmine/export/pdf.rb' - - 'lib/redmine/helpers/gantt.rb' - - 'lib/redmine/scm/adapters/cvs_adapter.rb' - - 'lib/redmine/scm/adapters/filesystem_adapter.rb' - -# Cop supports --auto-correct. -# Configuration parameters: EnforcedStyle. -# SupportedStyles: require_parentheses, require_no_parentheses, require_no_parentheses_except_multiline -Style/MethodDefParentheses: - Exclude: - - 'lib/redmine/menu_manager.rb' - -Style/MethodMissingSuper: - Exclude: - - 'lib/redmine/views/builders/structure.rb' - -Style/MissingRespondToMissing: - Exclude: - - 'lib/redmine/views/builders/structure.rb' - -Style/MixinUsage: - Exclude: - - 'test/test_helper.rb' - -# Cop supports --auto-correct. -Style/MultilineIfModifier: - Exclude: - - 'app/helpers/application_helper.rb' - - 'app/helpers/attachments_helper.rb' - - 'app/helpers/custom_fields_helper.rb' - - 'app/helpers/projects_helper.rb' - - 'app/helpers/reports_helper.rb' - - 'app/helpers/repositories_helper.rb' - - 'app/helpers/search_helper.rb' - - 'app/models/issue_query.rb' - - 'app/models/query.rb' - - 'app/models/repository/bazaar.rb' - - 'app/models/repository/subversion.rb' - - 'app/models/time_entry_query.rb' - - 'app/views/common/feed.atom.builder' - - 'lib/redmine/access_keys.rb' - - 'lib/redmine/helpers/gantt.rb' - - 'lib/redmine/scm/adapters/git_adapter.rb' - - 'lib/redmine/scm/adapters/subversion_adapter.rb' - - 'lib/redmine/wiki_formatting.rb' - - 'lib/redmine/wiki_formatting/textile/redcloth3.rb' - - 'test/mocks/open_id_authentication_mock.rb' - -Style/MultilineTernaryOperator: - Exclude: - - 'app/controllers/workflows_controller.rb' - - 'app/helpers/settings_helper.rb' - - 'app/models/issue_query.rb' - - 'lib/redmine/ciphering.rb' - - 'lib/redmine/scm/adapters/filesystem_adapter.rb' - - 'lib/redmine/scm/adapters/git_adapter.rb' - -Style/MultipleComparison: - Exclude: - - 'app/helpers/application_helper.rb' - - 'app/helpers/workflows_helper.rb' - - 'app/models/import.rb' - - 'app/models/version.rb' - - 'app/models/wiki_page.rb' - - 'app/models/workflow_transition.rb' - -# Cop supports --auto-correct. -# Configuration parameters: EnforcedStyle. -# SupportedStyles: literals, strict -Style/MutableConstant: - Enabled: false - -# Cop supports --auto-correct. -# Configuration parameters: EnforcedStyle. -# SupportedStyles: both, prefix, postfix -Style/NegatedIf: - Exclude: - - 'app/controllers/application_controller.rb' - - 'app/controllers/messages_controller.rb' - - 'app/helpers/repositories_helper.rb' - - 'app/models/attachment.rb' - - 'app/models/auth_source_ldap.rb' - - 'app/models/custom_field.rb' - - 'app/models/project.rb' - - 'app/models/repository/cvs.rb' - - 'lib/diff.rb' - - 'lib/redmine/codeset_util.rb' - - 'lib/redmine/thumbnail.rb' - -# Cop supports --auto-correct. -Style/NegatedWhile: - Exclude: - - 'app/helpers/application_helper.rb' - -# Cop supports --auto-correct. -# Configuration parameters: Whitelist. -# Whitelist: be, be_a, be_an, be_between, be_falsey, be_kind_of, be_instance_of, be_truthy, be_within, eq, eql, end_with, include, match, raise_error, respond_to, start_with -Style/NestedParenthesizedCalls: - Exclude: - - 'lib/redmine/views/labelled_form_builder.rb' - - 'test/unit/mail_handler_test.rb' - -Style/NestedTernaryOperator: - Exclude: - - 'app/helpers/queries_helper.rb' - - 'app/models/journal.rb' - -# Cop supports --auto-correct. -# Configuration parameters: EnforcedStyle, MinBodyLength. -# SupportedStyles: skip_modifier_ifs, always -Style/Next: - Enabled: false - -# Cop supports --auto-correct. -Style/Not: - Exclude: - - 'db/migrate/096_add_commit_access_permission.rb' - - 'lib/redmine/scm/adapters/filesystem_adapter.rb' - - 'lib/redmine/wiki_formatting/textile/redcloth3.rb' - -# Cop supports --auto-correct. -# Configuration parameters: EnforcedOctalStyle. -# SupportedOctalStyles: zero_with_o, zero_only -Style/NumericLiteralPrefix: - Exclude: - - 'test/unit/user_test.rb' - -# Cop supports --auto-correct. -# Configuration parameters: Strict. -Style/NumericLiterals: - MinDigits: 9 - -# Cop supports --auto-correct. -# Configuration parameters: AutoCorrect, EnforcedStyle, IgnoredMethods. -# SupportedStyles: predicate, comparison -Style/NumericPredicate: - Enabled: false - -# Cop supports --auto-correct. -Style/OrAssignment: - Exclude: - - 'app/helpers/sort_helper.rb' - - 'app/models/repository/cvs.rb' - - 'app/models/user.rb' - - 'lib/redmine/helpers/diff.rb' - -# Cop supports --auto-correct. -Style/ParallelAssignment: - Enabled: false - -# Cop supports --auto-correct. -# Configuration parameters: AllowSafeAssignment, AllowInMultilineConditions. -Style/ParenthesesAroundCondition: - Exclude: - - 'app/models/repository/subversion.rb' - - 'lib/redmine/scm/adapters/cvs_adapter.rb' - - 'lib/redmine/scm/adapters/git_adapter.rb' - -# Cop supports --auto-correct. -# Configuration parameters: PreferredDelimiters. -Style/PercentLiteralDelimiters: - Enabled: false - -# Cop supports --auto-correct. -Style/PerlBackrefs: - Enabled: false - -# Cop supports --auto-correct. -# Configuration parameters: EnforcedStyle. -# SupportedStyles: short, verbose -Style/PreferredHashMethods: - Enabled: false - -# Cop supports --auto-correct. -Style/Proc: - Enabled: false - -# Cop supports --auto-correct. -# Configuration parameters: EnforcedStyle. -# SupportedStyles: compact, exploded -Style/RaiseArgs: - Exclude: - - 'app/models/auth_source_ldap.rb' - - 'app/models/issue_query.rb' - - 'app/models/mailer.rb' - - 'app/models/query.rb' - - 'app/models/tracker.rb' - - 'app/models/user.rb' - - 'app/models/workflow_rule.rb' - - 'lib/redmine/access_control.rb' - - 'lib/redmine/default_data/loader.rb' - - 'lib/redmine/plugin.rb' - - 'lib/redmine/scm/adapters/abstract_adapter.rb' - - 'lib/redmine/scm/adapters/filesystem_adapter.rb' - - 'lib/redmine/sort_criteria.rb' - -# Cop supports --auto-correct. -Style/RedundantCondition: - Exclude: - - 'app/controllers/messages_controller.rb' - - 'app/controllers/previews_controller.rb' - - 'app/models/issue.rb' - -# Cop supports --auto-correct. -Style/RedundantConditional: - Exclude: - - 'app/controllers/workflows_controller.rb' - - 'app/helpers/application_helper.rb' - - 'app/models/enumeration.rb' - - 'lib/redmine/field_format.rb' - -# Cop supports --auto-correct. -Style/RedundantInterpolation: - Exclude: - - 'app/helpers/my_helper.rb' - - 'app/helpers/queries_helper.rb' - - 'app/models/query.rb' - - 'app/views/common/feed.atom.builder' - - 'app/views/journals/index.builder' - - 'lib/redmine/helpers/time_report.rb' - - 'lib/redmine/scm/adapters/subversion_adapter.rb' - - 'lib/redmine/wiki_formatting.rb' - - 'test/functional/versions_controller_test.rb' - - 'test/functional/watchers_controller_test.rb' - -# Cop supports --auto-correct. -Style/RedundantParentheses: - Exclude: - - 'app/controllers/search_controller.rb' - - 'app/helpers/users_helper.rb' - - 'app/models/enumeration.rb' - - 'app/models/principal.rb' - - 'app/models/query.rb' - - 'app/models/repository/cvs.rb' - - 'app/models/version.rb' - - 'lib/redmine/field_format.rb' - - 'lib/redmine/helpers/gantt.rb' - - 'lib/redmine/platform.rb' - - 'lib/redmine/scm/adapters/cvs_adapter.rb' - - 'lib/redmine/scm/adapters/filesystem_adapter.rb' - - 'test/helpers/application_helper_test.rb' - - 'test/unit/attachment_test.rb' - - 'test/unit/lib/redmine/export/pdf_test.rb' - - 'test/unit/project_test.rb' - - 'test/unit/user_test.rb' - - 'test/unit/version_test.rb' - -# Cop supports --auto-correct. -# Configuration parameters: AllowMultipleReturnValues. -Style/RedundantReturn: - Enabled: false - -# Cop supports --auto-correct. -Style/RedundantSelf: - Enabled: false - -# Cop supports --auto-correct. -Style/RedundantSort: - Exclude: - - 'app/models/import.rb' - - 'lib/redmine/scm/adapters/abstract_adapter.rb' - - 'test/functional/issues_controller_test.rb' - - 'test/unit/member_test.rb' - -# Cop supports --auto-correct. -# Configuration parameters: EnforcedStyle, AllowInnerSlashes. -# SupportedStyles: slashes, percent_r, mixed -Style/RegexpLiteral: - Enabled: false - -# Cop supports --auto-correct. -Style/RescueModifier: - Exclude: - - 'app/controllers/application_controller.rb' - - 'app/controllers/attachments_controller.rb' - - 'app/controllers/imports_controller.rb' - - 'app/controllers/watchers_controller.rb' - - 'app/helpers/avatars_helper.rb' - - 'app/models/custom_field.rb' - - 'app/models/import.rb' - - 'app/models/query.rb' - - 'app/models/repository.rb' - - 'lib/redmine/export/csv.rb' - - 'lib/redmine/field_format.rb' - - 'lib/redmine/search.rb' - - 'lib/redmine/wiki_formatting.rb' - - 'test/unit/lib/redmine/wiki_formatting/markdown_formatter_test.rb' - -# Cop supports --auto-correct. -# Configuration parameters: EnforcedStyle. -# SupportedStyles: implicit, explicit -Style/RescueStandardError: - Enabled: false - -# Cop supports --auto-correct. -# Configuration parameters: ConvertCodeThatCanStartToReturnNil, Whitelist. -# Whitelist: present?, blank?, presence, try, try! -Style/SafeNavigation: - Enabled: false - -# Cop supports --auto-correct. -Style/SelfAssignment: - Exclude: - - 'app/controllers/repositories_controller.rb' - - 'app/helpers/application_helper.rb' - - 'app/helpers/reports_helper.rb' - - 'app/models/auth_source_ldap.rb' - - 'app/models/project.rb' - - 'app/models/query.rb' - - 'app/models/repository/cvs.rb' - - 'lib/redmine/helpers/calendar.rb' - - 'lib/redmine/helpers/gantt.rb' - - 'lib/redmine/helpers/time_report.rb' - -# Cop supports --auto-correct. -# Configuration parameters: AllowAsExpressionSeparator. -Style/Semicolon: - Exclude: - - 'app/controllers/account_controller.rb' - - 'app/controllers/context_menus_controller.rb' - - 'app/controllers/journals_controller.rb' - - 'app/controllers/messages_controller.rb' - - 'app/controllers/repositories_controller.rb' - - 'app/controllers/search_controller.rb' - - 'app/models/issue.rb' - - 'app/models/issue_query.rb' - - 'app/models/journal.rb' - - 'app/models/mail_handler.rb' - - 'app/models/project.rb' - - 'app/models/query.rb' - - 'app/models/tracker.rb' - - 'lib/redmine/configuration.rb' - - 'lib/redmine/i18n.rb' - - 'lib/redmine/scm/adapters/git_adapter.rb' - - 'lib/redmine/sort_criteria.rb' - - 'lib/redmine/wiki_formatting/textile/redcloth3.rb' - -# Cop supports --auto-correct. -# Configuration parameters: AllowIfMethodIsEmpty. -Style/SingleLineMethods: - Enabled: false - -# Cop supports --auto-correct. -# Configuration parameters: . -# SupportedStyles: use_perl_names, use_english_names -Style/SpecialGlobalVars: - EnforcedStyle: use_perl_names - -# Cop supports --auto-correct. -Style/StderrPuts: - Exclude: - - 'config/environment.rb' - - 'config/initializers/10-patches.rb' - -# Cop supports --auto-correct. -# Configuration parameters: EnforcedStyle, ConsistentQuotesInMultiline. -# SupportedStyles: single_quotes, double_quotes -Style/StringLiterals: - Enabled: false - -# Cop supports --auto-correct. -# Configuration parameters: EnforcedStyle. -# SupportedStyles: single_quotes, double_quotes -Style/StringLiteralsInInterpolation: - Exclude: - - 'app/models/issue_query.rb' - - 'config/environment.rb' - - 'lib/redmine/scm/adapters/cvs_adapter.rb' - - 'lib/redmine/wiki_formatting.rb' - - 'lib/redmine/wiki_formatting/textile/redcloth3.rb' - - 'test/unit/member_test.rb' - -Style/StructInheritance: - Exclude: - - 'lib/redmine/notifiable.rb' - - 'lib/redmine/sudo_mode.rb' - -# Cop supports --auto-correct. -# Configuration parameters: MinSize. -# SupportedStyles: percent, brackets -Style/SymbolArray: - EnforcedStyle: brackets - -# Cop supports --auto-correct. -# Configuration parameters: IgnoredMethods. -# IgnoredMethods: respond_to, define_method -Style/SymbolProc: - Enabled: false - -# Cop supports --auto-correct. -# Configuration parameters: EnforcedStyle, AllowSafeAssignment. -# SupportedStyles: require_parentheses, require_no_parentheses, require_parentheses_when_complex -Style/TernaryParentheses: - Enabled: false - -# Cop supports --auto-correct. -# Configuration parameters: EnforcedStyleForMultiline. -# SupportedStylesForMultiline: comma, consistent_comma, no_comma -Style/TrailingCommaInHashLiteral: - Enabled: false - -# Cop supports --auto-correct. -# Configuration parameters: ExactNameMatch, AllowPredicates, AllowDSLWriters, IgnoreClassMethods, Whitelist. -# Whitelist: to_ary, to_a, to_c, to_enum, to_h, to_hash, to_i, to_int, to_io, to_open, to_path, to_proc, to_r, to_regexp, to_str, to_s, to_sym -Style/TrivialAccessors: - Exclude: - - 'app/models/issue.rb' - - 'app/models/journal.rb' - - 'app/models/query.rb' - - 'lib/redmine/access_control.rb' - - 'lib/redmine/scm/adapters/abstract_adapter.rb' - - 'lib/redmine/scm/adapters/cvs_adapter.rb' - - 'lib/redmine/scm/adapters/filesystem_adapter.rb' - - 'lib/redmine/scm/adapters/git_adapter.rb' - - 'lib/redmine/scm/adapters/mercurial_adapter.rb' - -# Cop supports --auto-correct. -Style/UnlessElse: - Exclude: - - 'app/controllers/auth_sources_controller.rb' - - 'app/controllers/trackers_controller.rb' - - 'lib/redmine/scm/adapters/abstract_adapter.rb' - - 'lib/redmine/unified_diff.rb' - -# Cop supports --auto-correct. -Style/VariableInterpolation: - Exclude: - - 'lib/redmine/configuration.rb' - -# Cop supports --auto-correct. -# Configuration parameters: EnforcedStyle, MinSize, WordRegex. -# SupportedStyles: percent, brackets -Style/WordArray: - Enabled: false - -# Cop supports --auto-correct. -Style/ZeroLengthPredicate: - Exclude: - - 'app/models/import.rb' - - 'app/models/mail_handler.rb' - - 'app/models/user.rb' - - 'lib/redmine/field_format.rb' - - 'lib/redmine/unified_diff.rb' - - 'lib/redmine/wiki_formatting/macros.rb' - - 'test/functional/custom_fields_controller_test.rb' - - 'test/object_helpers.rb' - - 'test/unit/activity_test.rb' - - 'test/unit/custom_field_test.rb' diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md deleted file mode 100644 index 94e13c5..0000000 --- a/CONTRIBUTING.md +++ /dev/null @@ -1,10 +0,0 @@ -Your contributions to Redmine are welcome! - -Please **open an issue on the [official website]** instead of sending pull requests. - -Since the development of Redmine is not conducted on GitHub but on the [official website] and core developers are not monitoring the GitHub repo, pull requests might not get reviewed. - -For more detail about how to contribute, please see the wiki page [Contribute] on the [official website]. - -[official website]: https://www.redmine.org/ -[Contribute]: https://www.redmine.org/projects/redmine/wiki/Contribute diff --git a/Gemfile b/Gemfile deleted file mode 100644 index 2de6914..0000000 --- a/Gemfile +++ /dev/null @@ -1,106 +0,0 @@ -source 'https://rubygems.org' - -ruby '>= 2.3.0', '< 2.8.0' if Bundler::VERSION >= '1.12.0' -gem "bundler", ">= 1.5.0" - -gem 'rails', '5.2.6.3' -gem 'sprockets', '~> 3.7.2' if RUBY_VERSION < '2.5' -gem 'globalid', '~> 0.4.2' if Gem.ruby_version < Gem::Version.new('2.6.0') -gem "rouge", "~> 3.12.0" -gem "request_store", "~> 1.4.1" -gem "mini_mime", "~> 1.0.1" -gem "actionpack-xml_parser" -gem "roadie-rails", (RUBY_VERSION < "2.5" ? "~> 1.3.0" : "~> 2.1.0") -gem 'marcel' -gem "mail", "~> 2.7.1" -gem 'csv', (RUBY_VERSION < '2.5' ? ['>= 3.1.1', '<= 3.1.5'] : '~> 3.1.1') -gem 'nokogiri', (RUBY_VERSION < '2.5' ? '~> 1.10.0' : '~> 1.11.5') -gem "i18n", "~> 1.6.0" -gem "rbpdf", "~> 1.20.0" - -gem "loofah", "~> 2.19.1" - -# Windows does not include zoneinfo files, so bundle the tzinfo-data gem -gem 'tzinfo-data', platforms: [:mingw, :x64_mingw, :mswin] - -# Optional gem for LDAP authentication -group :ldap do - gem "net-ldap", "~> 0.16.0" -end - -# Optional gem for OpenID authentication -group :openid do - gem "ruby-openid", "~> 2.9.2", :require => "openid" - gem "rack-openid" -end - -# Optional gem for exporting the gantt to a PNG file -group :minimagick do - gem "mini_magick", "~> 4.9.5" -end - -# Optional Markdown support, not for JRuby -group :markdown do - gem 'redcarpet', '~> 3.5.1' -end - -# Include database gems for the adapters found in the database -# configuration file -require 'erb' -require 'yaml' -database_file = File.join(File.dirname(__FILE__), "config/database.yml") -if File.exist?(database_file) - yaml_config = ERB.new(IO.read(database_file)).result - database_config = YAML.respond_to?(:unsafe_load) ? YAML.unsafe_load(yaml_config) : YAML.load(yaml_config) - adapters = database_config.values.map {|c| c['adapter']}.compact.uniq - if adapters.any? - adapters.each do |adapter| - case adapter - when 'mysql2' - gem "mysql2", "~> 0.5.0", :platforms => [:mri, :mingw, :x64_mingw] - when /postgresql/ - gem "pg", "~> 1.1.4", :platforms => [:mri, :mingw, :x64_mingw] - when /sqlite3/ - gem "sqlite3", "~> 1.4.0", :platforms => [:mri, :mingw, :x64_mingw] - when /sqlserver/ - gem "tiny_tds", "~> 2.1.2", :platforms => [:mri, :mingw, :x64_mingw] - gem "activerecord-sqlserver-adapter", "~> 5.2.1", :platforms => [:mri, :mingw, :x64_mingw] - else - warn("Unknown database adapter `#{adapter}` found in config/database.yml, use Gemfile.local to load your own database gems") - end - end - else - warn("No adapter found in config/database.yml, please configure it first") - end -else - warn("Please configure your config/database.yml first") -end - -group :development do - gem "yard" -end - -group :test do - gem "rails-dom-testing" - gem 'mocha', '>= 1.4.0' - gem "simplecov", "~> 0.17.0", :require => false - gem "ffi", platforms: [:mingw, :x64_mingw, :mswin] - # For running system tests - gem 'puma', '~> 5.6.8' - gem "capybara", (RUBY_VERSION < "2.4" ? "~> 3.15.1" : "~> 3.25.0") - gem "selenium-webdriver" - # RuboCop - gem 'rubocop', '~> 0.76.0' - gem 'rubocop-performance', '~> 1.5.0' - gem 'rubocop-rails', '~> 2.3.0' -end - -local_gemfile = File.join(File.dirname(__FILE__), "Gemfile.local") -if File.exists?(local_gemfile) - eval_gemfile local_gemfile -end - -# Load plugins' Gemfiles -Dir.glob File.expand_path("../plugins/*/{Gemfile,PluginGemfile}", __FILE__) do |file| - eval_gemfile file -end diff --git a/LICENSE b/LICENSE deleted file mode 100644 index d159169..0000000 --- a/LICENSE +++ /dev/null @@ -1,339 +0,0 @@ - GNU GENERAL PUBLIC LICENSE - Version 2, June 1991 - - Copyright (C) 1989, 1991 Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -License is intended to guarantee your freedom to share and change free -software--to make sure the software is free for all its users. This -General Public License applies to most of the Free Software -Foundation's software and to any other program whose authors commit to -using it. (Some other Free Software Foundation software is covered by -the GNU Lesser General Public License instead.) You can apply it to -your programs, too. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -this service if you wish), that you receive source code or can get it -if you want it, that you can change the software or use pieces of it -in new free programs; and that you know you can do these things. - - To protect your rights, we need to make restrictions that forbid -anyone to deny you these rights or to ask you to surrender the rights. -These restrictions translate to certain responsibilities for you if you -distribute copies of the software, or if you modify it. - - For example, if you distribute copies of such a program, whether -gratis or for a fee, you must give the recipients all the rights that -you have. You must make sure that they, too, receive or can get the -source code. And you must show them these terms so they know their -rights. - - We protect your rights with two steps: (1) copyright the software, and -(2) offer you this license which gives you legal permission to copy, -distribute and/or modify the software. - - Also, for each author's protection and ours, we want to make certain -that everyone understands that there is no warranty for this free -software. If the software is modified by someone else and passed on, we -want its recipients to know that what they have is not the original, so -that any problems introduced by others will not reflect on the original -authors' reputations. - - Finally, any free program is threatened constantly by software -patents. We wish to avoid the danger that redistributors of a free -program will individually obtain patent licenses, in effect making the -program proprietary. To prevent this, we have made it clear that any -patent must be licensed for everyone's free use or not licensed at all. - - The precise terms and conditions for copying, distribution and -modification follow. - - GNU GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License applies to any program or other work which contains -a notice placed by the copyright holder saying it may be distributed -under the terms of this General Public License. The "Program", below, -refers to any such program or work, and a "work based on the Program" -means either the Program or any derivative work under copyright law: -that is to say, a work containing the Program or a portion of it, -either verbatim or with modifications and/or translated into another -language. (Hereinafter, translation is included without limitation in -the term "modification".) Each licensee is addressed as "you". - -Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running the Program is not restricted, and the output from the Program -is covered only if its contents constitute a work based on the -Program (independent of having been made by running the Program). -Whether that is true depends on what the Program does. - - 1. You may copy and distribute verbatim copies of the Program's -source code as you receive it, in any medium, provided that you -conspicuously and appropriately publish on each copy an appropriate -copyright notice and disclaimer of warranty; keep intact all the -notices that refer to this License and to the absence of any warranty; -and give any other recipients of the Program a copy of this License -along with the Program. - -You may charge a fee for the physical act of transferring a copy, and -you may at your option offer warranty protection in exchange for a fee. - - 2. You may modify your copy or copies of the Program or any portion -of it, thus forming a work based on the Program, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: - - a) You must cause the modified files to carry prominent notices - stating that you changed the files and the date of any change. - - b) You must cause any work that you distribute or publish, that in - whole or in part contains or is derived from the Program or any - part thereof, to be licensed as a whole at no charge to all third - parties under the terms of this License. - - c) If the modified program normally reads commands interactively - when run, you must cause it, when started running for such - interactive use in the most ordinary way, to print or display an - announcement including an appropriate copyright notice and a - notice that there is no warranty (or else, saying that you provide - a warranty) and that users may redistribute the program under - these conditions, and telling the user how to view a copy of this - License. (Exception: if the Program itself is interactive but - does not normally print such an announcement, your work based on - the Program is not required to print an announcement.) - -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Program, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Program, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote it. - -Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Program. - -In addition, mere aggregation of another work not based on the Program -with the Program (or with a work based on the Program) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. - - 3. You may copy and distribute the Program (or a work based on it, -under Section 2) in object code or executable form under the terms of -Sections 1 and 2 above provided that you also do one of the following: - - a) Accompany it with the complete corresponding machine-readable - source code, which must be distributed under the terms of Sections - 1 and 2 above on a medium customarily used for software interchange; or, - - b) Accompany it with a written offer, valid for at least three - years, to give any third party, for a charge no more than your - cost of physically performing source distribution, a complete - machine-readable copy of the corresponding source code, to be - distributed under the terms of Sections 1 and 2 above on a medium - customarily used for software interchange; or, - - c) Accompany it with the information you received as to the offer - to distribute corresponding source code. (This alternative is - allowed only for noncommercial distribution and only if you - received the program in object code or executable form with such - an offer, in accord with Subsection b above.) - -The source code for a work means the preferred form of the work for -making modifications to it. For an executable work, complete source -code means all the source code for all modules it contains, plus any -associated interface definition files, plus the scripts used to -control compilation and installation of the executable. However, as a -special exception, the source code distributed need not include -anything that is normally distributed (in either source or binary -form) with the major components (compiler, kernel, and so on) of the -operating system on which the executable runs, unless that component -itself accompanies the executable. - -If distribution of executable or object code is made by offering -access to copy from a designated place, then offering equivalent -access to copy the source code from the same place counts as -distribution of the source code, even though third parties are not -compelled to copy the source along with the object code. - - 4. You may not copy, modify, sublicense, or distribute the Program -except as expressly provided under this License. Any attempt -otherwise to copy, modify, sublicense or distribute the Program is -void, and will automatically terminate your rights under this License. -However, parties who have received copies, or rights, from you under -this License will not have their licenses terminated so long as such -parties remain in full compliance. - - 5. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Program or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Program (or any work based on the -Program), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Program or works based on it. - - 6. Each time you redistribute the Program (or any work based on the -Program), the recipient automatically receives a license from the -original licensor to copy, distribute or modify the Program subject to -these terms and conditions. You may not impose any further -restrictions on the recipients' exercise of the rights granted herein. -You are not responsible for enforcing compliance by third parties to -this License. - - 7. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Program at all. For example, if a patent -license would not permit royalty-free redistribution of the Program by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Program. - -If any portion of this section is held invalid or unenforceable under -any particular circumstance, the balance of the section is intended to -apply and the section as a whole is intended to apply in other -circumstances. - -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system, which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. - -This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. - - 8. If the distribution and/or use of the Program is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Program under this License -may add an explicit geographical distribution limitation excluding -those countries, so that distribution is permitted only in or among -countries not thus excluded. In such case, this License incorporates -the limitation as if written in the body of this License. - - 9. The Free Software Foundation may publish revised and/or new versions -of the General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - -Each version is given a distinguishing version number. If the Program -specifies a version number of this License which applies to it and "any -later version", you have the option of following the terms and conditions -either of that version or of any later version published by the Free -Software Foundation. If the Program does not specify a version number of -this License, you may choose any version ever published by the Free Software -Foundation. - - 10. If you wish to incorporate parts of the Program into other free -programs whose distribution conditions are different, write to the author -to ask for permission. For software which is copyrighted by the Free -Software Foundation, write to the Free Software Foundation; we sometimes -make exceptions for this. Our decision will be guided by the two goals -of preserving the free status of all derivatives of our free software and -of promoting the sharing and reuse of software generally. - - NO WARRANTY - - 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY -FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN -OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES -PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED -OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS -TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE -PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, -REPAIR OR CORRECTION. - - 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR -REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, -INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING -OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED -TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY -YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER -PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE -POSSIBILITY OF SUCH DAMAGES. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -convey the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - 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. - -Also add information on how to contact you by electronic and paper mail. - -If the program is interactive, make it output a short notice like this -when it starts in an interactive mode: - - Gnomovision version 69, Copyright (C) year name of author - Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. - This is free software, and you are welcome to redistribute it - under certain conditions; type `show c' for details. - -The hypothetical commands `show w' and `show c' should show the appropriate -parts of the General Public License. Of course, the commands you use may -be called something other than `show w' and `show c'; they could even be -mouse-clicks or menu items--whatever suits your program. - -You should also get your employer (if you work as a programmer) or your -school, if any, to sign a "copyright disclaimer" for the program, if -necessary. Here is a sample; alter the names: - - Yoyodyne, Inc., hereby disclaims all copyright interest in the program - `Gnomovision' (which makes passes at compilers) written by James Hacker. - - , 1 April 1989 - Ty Coon, President of Vice - -This General Public License does not permit incorporating your program into -proprietary programs. If your program is a subroutine library, you may -consider it more useful to permit linking proprietary applications with the -library. If this is what you want to do, use the GNU Lesser General -Public License instead of this License. diff --git a/README.md b/README.md index 28495bc..efde0fe 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ License v2* (GPL). # Código fuente * Proyecto: https://suitepro.cillero.es/projects/suitepro - * Repositorio: https://github.com/manuelcillero/suitepro + * Repositorio: https://git.cillero.es/manuelcillero/suitepro ## Plugins incluidos diff --git a/Rakefile b/Rakefile deleted file mode 100755 index 5fbdf84..0000000 --- a/Rakefile +++ /dev/null @@ -1,7 +0,0 @@ -#!/usr/bin/env rake -# Add your own tasks in files placed in lib/tasks ending in .rake, -# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake. - -require File.expand_path('../config/application', __FILE__) - -RedmineApp::Application.load_tasks diff --git a/app/controllers/account_controller.rb b/app/controllers/account_controller.rb deleted file mode 100644 index 6ec75ea..0000000 --- a/app/controllers/account_controller.rb +++ /dev/null @@ -1,384 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class AccountController < ApplicationController - helper :custom_fields - include CustomFieldsHelper - - self.main_menu = false - - # prevents login action to be filtered by check_if_login_required application scope filter - skip_before_action :check_if_login_required, :check_password_change - - # Overrides ApplicationController#verify_authenticity_token to disable - # token verification on openid callbacks - def verify_authenticity_token - unless using_open_id? - super - end - end - - # Login request and validation - def login - if request.post? - authenticate_user - else - if User.current.logged? - redirect_back_or_default home_url, :referer => true - end - end - rescue AuthSourceException => e - logger.error "An error occurred when authenticating #{params[:username]}: #{e.message}" - render_error :message => e.message - end - - # Log out current user and redirect to welcome page - def logout - if User.current.anonymous? - redirect_to home_url - elsif request.post? - logout_user - redirect_to home_url - end - # display the logout form - end - - # Lets user choose a new password - def lost_password - (redirect_to(home_url); return) unless Setting.lost_password? - if prt = (params[:token] || session[:password_recovery_token]) - @token = Token.find_token("recovery", prt.to_s) - if @token.nil? - redirect_to home_url - return - elsif @token.expired? - # remove expired token from session and let user try again - session[:password_recovery_token] = nil - flash[:error] = l(:error_token_expired) - redirect_to lost_password_url - return - end - - # redirect to remove the token query parameter from the URL and add it to the session - if request.query_parameters[:token].present? - session[:password_recovery_token] = @token.value - redirect_to lost_password_url - return - end - - @user = @token.user - unless @user && @user.active? - redirect_to home_url - return - end - if request.post? - if @user.must_change_passwd? && @user.check_password?(params[:new_password]) - flash.now[:error] = l(:notice_new_password_must_be_different) - else - @user.password, @user.password_confirmation = params[:new_password], params[:new_password_confirmation] - @user.must_change_passwd = false - if @user.save - @token.destroy - Mailer.deliver_password_updated(@user, User.current) - flash[:notice] = l(:notice_account_password_updated) - redirect_to signin_path - return - end - end - end - render :template => "account/password_recovery" - return - else - if request.post? - email = params[:mail].to_s.strip - user = User.find_by_mail(email) - # user not found - unless user - flash.now[:error] = l(:notice_account_unknown_email) - return - end - unless user.active? - handle_inactive_user(user, lost_password_path) - return - end - # user cannot change its password - unless user.change_password_allowed? - flash.now[:error] = l(:notice_can_t_change_password) - return - end - # create a new token for password recovery - token = Token.new(:user => user, :action => "recovery") - if token.save - # Don't use the param to send the email - recipent = user.mails.detect {|e| email.casecmp(e) == 0} || user.mail - Mailer.deliver_lost_password(user, token, recipent) - flash[:notice] = l(:notice_account_lost_email_sent) - redirect_to signin_path - return - end - end - end - end - - # User self-registration - def register - (redirect_to(home_url); return) unless Setting.self_registration? || session[:auth_source_registration] - if !request.post? - session[:auth_source_registration] = nil - @user = User.new(:language => current_language.to_s) - else - user_params = params[:user] || {} - @user = User.new - @user.safe_attributes = user_params - @user.pref.safe_attributes = params[:pref] - @user.admin = false - @user.register - if session[:auth_source_registration] - @user.activate - @user.login = session[:auth_source_registration][:login] - @user.auth_source_id = session[:auth_source_registration][:auth_source_id] - if @user.save - session[:auth_source_registration] = nil - self.logged_user = @user - flash[:notice] = l(:notice_account_activated) - redirect_to my_account_path - end - else - unless user_params[:identity_url].present? && user_params[:password].blank? && user_params[:password_confirmation].blank? - @user.password, @user.password_confirmation = user_params[:password], user_params[:password_confirmation] - end - - case Setting.self_registration - when '1' - register_by_email_activation(@user) - when '3' - register_automatically(@user) - else - register_manually_by_administrator(@user) - end - end - end - end - - # Token based account activation - def activate - (redirect_to(home_url); return) unless Setting.self_registration? && params[:token].present? - token = Token.find_token('register', params[:token].to_s) - (redirect_to(home_url); return) unless token and !token.expired? - user = token.user - (redirect_to(home_url); return) unless user.registered? - user.activate - if user.save - token.destroy - flash[:notice] = l(:notice_account_activated) - end - redirect_to signin_path - end - - # Sends a new account activation email - def activation_email - if session[:registered_user_id] && Setting.self_registration == '1' - user_id = session.delete(:registered_user_id).to_i - user = User.find_by_id(user_id) - if user && user.registered? - register_by_email_activation(user) - return - end - end - redirect_to(home_url) - end - - private - - def authenticate_user - if Setting.openid? && using_open_id? - open_id_authenticate(params[:openid_url]) - else - password_authentication - end - end - - def password_authentication - user = User.try_to_login(params[:username], params[:password], false) - - if user.nil? - invalid_credentials - elsif user.new_record? - onthefly_creation_failed(user, {:login => user.login, :auth_source_id => user.auth_source_id }) - else - # Valid user - if user.active? - successful_authentication(user) - update_sudo_timestamp! # activate Sudo Mode - else - handle_inactive_user(user) - end - end - end - - def open_id_authenticate(openid_url) - back_url = signin_url(:autologin => params[:autologin]) - authenticate_with_open_id( - openid_url, :required => [:nickname, :fullname, :email], - :return_to => back_url, :method => :post - ) do |result, identity_url, registration| - if result.successful? - user = User.find_or_initialize_by_identity_url(identity_url) - if user.new_record? - # Self-registration off - (redirect_to(home_url); return) unless Setting.self_registration? - # Create on the fly - user.login = registration['nickname'] unless registration['nickname'].nil? - user.mail = registration['email'] unless registration['email'].nil? - user.firstname, user.lastname = registration['fullname'].split(' ') unless registration['fullname'].nil? - user.random_password - user.register - case Setting.self_registration - when '1' - register_by_email_activation(user) do - onthefly_creation_failed(user) - end - when '3' - register_automatically(user) do - onthefly_creation_failed(user) - end - else - register_manually_by_administrator(user) do - onthefly_creation_failed(user) - end - end - else - # Existing record - if user.active? - successful_authentication(user) - else - handle_inactive_user(user) - end - end - end - end - end - - def successful_authentication(user) - logger.info "Successful authentication for '#{user.login}' from #{request.remote_ip} at #{Time.now.utc}" - # Valid user - self.logged_user = user - # generate a key and set cookie if autologin - if params[:autologin] && Setting.autologin? - set_autologin_cookie(user) - end - call_hook(:controller_account_success_authentication_after, {:user => user }) - redirect_back_or_default my_page_path - end - - def set_autologin_cookie(user) - token = user.generate_autologin_token - secure = Redmine::Configuration['autologin_cookie_secure'] - if secure.nil? - secure = request.ssl? - end - cookie_options = { - :value => token, - :expires => 1.year.from_now, - :path => (Redmine::Configuration['autologin_cookie_path'] || RedmineApp::Application.config.relative_url_root || '/'), - :same_site => :lax, - :secure => secure, - :httponly => true - } - cookies[autologin_cookie_name] = cookie_options - end - - # Onthefly creation failed, display the registration form to fill/fix attributes - def onthefly_creation_failed(user, auth_source_options = { }) - @user = user - session[:auth_source_registration] = auth_source_options unless auth_source_options.empty? - render :action => 'register' - end - - def invalid_credentials - logger.warn "Failed login for '#{params[:username]}' from #{request.remote_ip} at #{Time.now.utc}" - flash.now[:error] = l(:notice_account_invalid_credentials) - end - - # Register a user for email activation. - # - # Pass a block for behavior when a user fails to save - def register_by_email_activation(user, &block) - token = Token.new(:user => user, :action => "register") - if user.save and token.save - Mailer.deliver_register(user, token) - flash[:notice] = l(:notice_account_register_done, :email => ERB::Util.h(user.mail)) - redirect_to signin_path - else - yield if block_given? - end - end - - # Automatically register a user - # - # Pass a block for behavior when a user fails to save - def register_automatically(user, &block) - # Automatic activation - user.activate - user.last_login_on = Time.now - if user.save - self.logged_user = user - flash[:notice] = l(:notice_account_activated) - redirect_to my_account_path - else - yield if block_given? - end - end - - # Manual activation by the administrator - # - # Pass a block for behavior when a user fails to save - def register_manually_by_administrator(user, &block) - if user.save - # Sends an email to the administrators - Mailer.deliver_account_activation_request(user) - account_pending(user) - else - yield if block_given? - end - end - - def handle_inactive_user(user, redirect_path=signin_path) - if user.registered? - account_pending(user, redirect_path) - else - account_locked(user, redirect_path) - end - end - - def account_pending(user, redirect_path=signin_path) - if Setting.self_registration == '1' - flash[:error] = l(:notice_account_not_activated_yet, :url => activation_email_path) - session[:registered_user_id] = user.id - else - flash[:error] = l(:notice_account_pending) - end - redirect_to redirect_path - end - - def account_locked(user, redirect_path=signin_path) - flash[:error] = l(:notice_account_locked) - redirect_to redirect_path - end -end diff --git a/app/controllers/activities_controller.rb b/app/controllers/activities_controller.rb deleted file mode 100644 index c45e467..0000000 --- a/app/controllers/activities_controller.rb +++ /dev/null @@ -1,86 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class ActivitiesController < ApplicationController - menu_item :activity - before_action :find_optional_project_by_id, :authorize_global - accept_rss_auth :index - - def index - @days = Setting.activity_days_default.to_i - - if params[:from] - begin; @date_to = params[:from].to_date + 1; rescue; end - end - - @date_to ||= User.current.today + 1 - @date_from = @date_to - @days - @with_subprojects = params[:with_subprojects].nil? ? Setting.display_subprojects_issues? : (params[:with_subprojects] == '1') - if params[:user_id].present? - @author = User.visible.active.find(params[:user_id]) - end - - @activity = Redmine::Activity::Fetcher.new(User.current, :project => @project, - :with_subprojects => @with_subprojects, - :author => @author) - pref = User.current.pref - @activity.scope_select {|t| !params["show_#{t}"].nil?} - if @activity.scope.present? - if params[:submit].present? - pref.activity_scope = @activity.scope - pref.save - end - else - if @author.nil? - scope = pref.activity_scope & @activity.event_types - @activity.scope = scope.present? ? scope : :default - else - @activity.scope = :all - end - end - - events = - if params[:format] == 'atom' - @activity.events(nil, nil, :limit => Setting.feeds_limit.to_i) - else - @activity.events(@date_from, @date_to) - end - - if events.empty? || stale?(:etag => [@activity.scope, @date_to, @date_from, @with_subprojects, @author, events.first, events.size, User.current, current_language]) - respond_to do |format| - format.html { - @events_by_day = events.group_by {|event| User.current.time_to_date(event.event_datetime)} - render :layout => false if request.xhr? - } - format.atom { - title = l(:label_activity) - if @author - title = @author.name - elsif @activity.scope.size == 1 - title = l("label_#{@activity.scope.first.singularize}_plural") - end - render_feed(events, :title => "#{@project || Setting.app_title}: #{title}") - } - end - end - - rescue ActiveRecord::RecordNotFound - render_404 - end -end diff --git a/app/controllers/admin_controller.rb b/app/controllers/admin_controller.rb deleted file mode 100644 index ac55133..0000000 --- a/app/controllers/admin_controller.rb +++ /dev/null @@ -1,84 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class AdminController < ApplicationController - layout 'admin' - self.main_menu = false - menu_item :projects, :only => :projects - menu_item :plugins, :only => :plugins - menu_item :info, :only => :info - - before_action :require_admin - - def index - @no_configuration_data = Redmine::DefaultData::Loader::no_data? - end - - def projects - @status = params[:status] || 1 - - scope = Project.status(@status).sorted - scope = scope.like(params[:name]) if params[:name].present? - - @project_count = scope.count - @project_pages = Paginator.new @project_count, per_page_option, params['page'] - @projects = scope.limit(@project_pages.per_page).offset(@project_pages.offset).to_a - - render :action => "projects", :layout => false if request.xhr? - end - - def plugins - @plugins = Redmine::Plugin.all - end - - # Loads the default configuration - # (roles, trackers, statuses, workflow, enumerations) - def default_configuration - if request.post? - begin - Redmine::DefaultData::Loader::load(params[:lang]) - flash[:notice] = l(:notice_default_data_loaded) - rescue => e - flash[:error] = l(:error_can_t_load_default_data, ERB::Util.h(e.message)) - end - end - redirect_to admin_path - end - - def test_email - begin - Mailer.deliver_test_email(User.current) - flash[:notice] = l(:notice_email_sent, ERB::Util.h(User.current.mail)) - rescue => e - flash[:error] = l(:notice_email_error, ERB::Util.h(Redmine::CodesetUtil.replace_invalid_utf8(e.message.dup))) - end - redirect_to settings_path(:tab => 'notifications') - end - - def info - @checklist = [ - [:text_default_administrator_account_changed, User.default_admin_account_changed?], - [:text_file_repository_writable, File.writable?(Attachment.storage_path)], - ["#{l :text_plugin_assets_writable} (./public/plugin_assets)", File.writable?(Redmine::Plugin.public_directory)], - [:text_minimagick_available, Object.const_defined?(:MiniMagick)], - [:text_convert_available, Redmine::Thumbnail.convert_available?], - [:text_gs_available, Redmine::Thumbnail.gs_available?] - ] - end -end diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb deleted file mode 100644 index f095ac7..0000000 --- a/app/controllers/application_controller.rb +++ /dev/null @@ -1,714 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -require 'uri' -require 'cgi' - -class Unauthorized < StandardError; end - -class ApplicationController < ActionController::Base - include Redmine::I18n - include Redmine::Pagination - include Redmine::Hook::Helper - include RoutesHelper - include AvatarsHelper - - helper :routes - helper :avatars - - class_attribute :accept_api_auth_actions - class_attribute :accept_rss_auth_actions - class_attribute :model_object - - layout 'base' - - protect_from_forgery - - def verify_authenticity_token - unless api_request? - super - end - end - - def handle_unverified_request - unless api_request? - super - cookies.delete(autologin_cookie_name) - self.logged_user = nil - set_localization - render_error :status => 422, :message => "Invalid form authenticity token." - end - end - - before_action :session_expiration, :user_setup, :check_if_login_required, :set_localization, :check_password_change - after_action :record_project_usage - - rescue_from ::Unauthorized, :with => :deny_access - rescue_from ::ActionView::MissingTemplate, :with => :missing_template - - include Redmine::Search::Controller - include Redmine::MenuManager::MenuController - helper Redmine::MenuManager::MenuHelper - - include Redmine::SudoMode::Controller - - def session_expiration - if session[:user_id] && Rails.application.config.redmine_verify_sessions != false - if session_expired? && !try_to_autologin - set_localization(User.active.find_by_id(session[:user_id])) - self.logged_user = nil - flash[:error] = l(:error_session_expired) - require_login - end - end - end - - def session_expired? - ! User.verify_session_token(session[:user_id], session[:tk]) - end - - def start_user_session(user) - session[:user_id] = user.id - session[:tk] = user.generate_session_token - if user.must_change_password? - session[:pwd] = '1' - end - end - - def user_setup - # Check the settings cache for each request - Setting.check_cache - # Find the current user - User.current = find_current_user - logger.info(" Current user: " + (User.current.logged? ? "#{User.current.login} (id=#{User.current.id})" : "anonymous")) if logger - end - - # Returns the current user or nil if no user is logged in - # and starts a session if needed - def find_current_user - user = nil - unless api_request? - if session[:user_id] - # existing session - user = (User.active.find(session[:user_id]) rescue nil) - elsif autologin_user = try_to_autologin - user = autologin_user - elsif params[:format] == 'atom' && params[:key] && request.get? && accept_rss_auth? - # RSS key authentication does not start a session - user = User.find_by_rss_key(params[:key]) - end - end - if user.nil? && Setting.rest_api_enabled? && accept_api_auth? - if (key = api_key_from_request) - # Use API key - user = User.find_by_api_key(key) - elsif /\ABasic /i.match?(request.authorization.to_s) - # HTTP Basic, either username/password or API key/random - authenticate_with_http_basic do |username, password| - user = User.try_to_login(username, password) || User.find_by_api_key(username) - end - if user && user.must_change_password? - render_error :message => 'You must change your password', :status => 403 - return - end - end - # Switch user if requested by an admin user - if user && user.admin? && (username = api_switch_user_from_request) - su = User.find_by_login(username) - if su && su.active? - logger.info(" User switched by: #{user.login} (id=#{user.id})") if logger - user = su - else - render_error :message => 'Invalid X-Redmine-Switch-User header', :status => 412 - end - end - end - # store current ip address in user object ephemerally - user.remote_ip = request.remote_ip if user - user - end - - def autologin_cookie_name - Redmine::Configuration['autologin_cookie_name'].presence || 'autologin' - end - - def try_to_autologin - if cookies[autologin_cookie_name] && Setting.autologin? - # auto-login feature starts a new session - user = User.try_to_autologin(cookies[autologin_cookie_name]) - if user - reset_session - start_user_session(user) - end - user - end - end - - # Sets the logged in user - def logged_user=(user) - reset_session - if user && user.is_a?(User) - User.current = user - start_user_session(user) - else - User.current = User.anonymous - end - end - - # Logs out current user - def logout_user - if User.current.logged? - if autologin = cookies.delete(autologin_cookie_name) - User.current.delete_autologin_token(autologin) - end - User.current.delete_session_token(session[:tk]) - self.logged_user = nil - end - end - - # check if login is globally required to access the application - def check_if_login_required - # no check needed if user is already logged in - return true if User.current.logged? - require_login if Setting.login_required? - end - - def check_password_change - if session[:pwd] - if User.current.must_change_password? - flash[:error] = l(:error_password_expired) - redirect_to my_password_path - else - session.delete(:pwd) - end - end - end - - def set_localization(user=User.current) - lang = nil - if user && user.logged? - lang = find_language(user.language) - end - if lang.nil? && !Setting.force_default_language_for_anonymous? && request.env['HTTP_ACCEPT_LANGUAGE'] - accept_lang = parse_qvalues(request.env['HTTP_ACCEPT_LANGUAGE']).first - if !accept_lang.blank? - accept_lang = accept_lang.downcase - lang = find_language(accept_lang) || find_language(accept_lang.split('-').first) - end - end - lang ||= Setting.default_language - set_language_if_valid(lang) - end - - def require_login - if !User.current.logged? - # Extract only the basic url parameters on non-GET requests - if request.get? - url = request.original_url - else - url = url_for(:controller => params[:controller], :action => params[:action], :id => params[:id], :project_id => params[:project_id]) - end - respond_to do |format| - format.html { - if request.xhr? - head :unauthorized - else - redirect_to signin_path(:back_url => url) - end - } - format.any(:atom, :pdf, :csv) { - redirect_to signin_path(:back_url => url) - } - format.api { - if Setting.rest_api_enabled? && accept_api_auth? - head(:unauthorized, 'WWW-Authenticate' => 'Basic realm="Redmine API"') - else - head(:forbidden) - end - } - format.js { head :unauthorized, 'WWW-Authenticate' => 'Basic realm="Redmine API"' } - format.any { head :unauthorized } - end - return false - end - true - end - - def require_admin - return unless require_login - if !User.current.admin? - render_403 - return false - end - true - end - - def deny_access - User.current.logged? ? render_403 : require_login - end - - # Authorize the user for the requested action - def authorize(ctrl = params[:controller], action = params[:action], global = false) - allowed = User.current.allowed_to?({:controller => ctrl, :action => action}, @project || @projects, :global => global) - if allowed - true - else - if @project && @project.archived? - @archived_project = @project - render_403 :message => :notice_not_authorized_archived_project - elsif @project && !@project.allows_to?(:controller => ctrl, :action => action) - # Project module is disabled - render_403 - else - deny_access - end - end - end - - # Authorize the user for the requested action outside a project - def authorize_global(ctrl = params[:controller], action = params[:action], global = true) - authorize(ctrl, action, global) - end - - # Find project of id params[:id] - def find_project(project_id=params[:id]) - @project = Project.find(project_id) - rescue ActiveRecord::RecordNotFound - render_404 - end - - # Find project of id params[:project_id] - def find_project_by_project_id - find_project(params[:project_id]) - end - - # Find project of id params[:id] if present - def find_optional_project_by_id - if params[:id].present? - find_project(params[:id]) - end - end - - # Find a project based on params[:project_id] - # and authorize the user for the requested action - def find_optional_project - if params[:project_id].present? - find_project(params[:project_id]) - end - authorize_global - end - - # Finds and sets @project based on @object.project - def find_project_from_association - render_404 unless @object.present? - - @project = @object.project - end - - def find_model_object - model = self.class.model_object - if model - @object = model.find(params[:id]) - self.instance_variable_set('@' + controller_name.singularize, @object) if @object - end - rescue ActiveRecord::RecordNotFound - render_404 - end - - def self.model_object(model) - self.model_object = model - end - - # Find the issue whose id is the :id parameter - # Raises a Unauthorized exception if the issue is not visible - def find_issue - # Issue.visible.find(...) can not be used to redirect user to the login form - # if the issue actually exists but requires authentication - @issue = Issue.find(params[:id]) - raise Unauthorized unless @issue.visible? - @project = @issue.project - rescue ActiveRecord::RecordNotFound - render_404 - end - - # Find issues with a single :id param or :ids array param - # Raises a Unauthorized exception if one of the issues is not visible - def find_issues - @issues = Issue. - where(:id => (params[:id] || params[:ids])). - preload(:project, :status, :tracker, :priority, :author, :assigned_to, :relations_to, {:custom_values => :custom_field}). - to_a - raise ActiveRecord::RecordNotFound if @issues.empty? - raise Unauthorized unless @issues.all?(&:visible?) - @projects = @issues.collect(&:project).compact.uniq - @project = @projects.first if @projects.size == 1 - rescue ActiveRecord::RecordNotFound - render_404 - end - - def find_attachments - if (attachments = params[:attachments]).present? - att = attachments.values.collect do |attachment| - Attachment.find_by_token( attachment[:token] ) if attachment[:token].present? - end - att.compact! - end - @attachments = att || [] - end - - def parse_params_for_bulk_update(params) - attributes = (params || {}).reject {|k,v| v.blank?} - attributes.keys.each {|k| attributes[k] = '' if attributes[k] == 'none'} - if custom = attributes[:custom_field_values] - custom.reject! {|k,v| v.blank?} - custom.keys.each do |k| - if custom[k].is_a?(Array) - custom[k] << '' if custom[k].delete('__none__') - else - custom[k] = '' if custom[k] == '__none__' - end - end - end - attributes - end - - # make sure that the user is a member of the project (or admin) if project is private - # used as a before_action for actions that do not require any particular permission on the project - def check_project_privacy - if @project && !@project.archived? - if @project.visible? - true - else - deny_access - end - else - @project = nil - render_404 - false - end - end - - def record_project_usage - if @project && @project.id && User.current.logged? && User.current.allowed_to?(:view_project, @project) - Redmine::ProjectJumpBox.new(User.current).project_used(@project) - end - true - end - - def back_url - url = params[:back_url] - if url.nil? && referer = request.env['HTTP_REFERER'] - url = CGI.unescape(referer.to_s) - # URLs that contains the utf8=[checkmark] parameter added by Rails are - # parsed as invalid by URI.parse so the redirect to the back URL would - # not be accepted (ApplicationController#validate_back_url would return - # false) - url.gsub!(/(\?|&)utf8=\u2713&?/, '\1') - end - url - end - helper_method :back_url - - def redirect_back_or_default(default, options={}) - if back_url = validate_back_url(params[:back_url].to_s) - redirect_to(back_url) - return - elsif options[:referer] - redirect_to_referer_or default - return - end - redirect_to default - false - end - - # Returns a validated URL string if back_url is a valid url for redirection, - # otherwise false - def validate_back_url(back_url) - return false if back_url.blank? - - if CGI.unescape(back_url).include?('..') - return false - end - - begin - uri = URI.parse(back_url) - rescue URI::InvalidURIError - return false - end - - [:scheme, :host, :port].each do |component| - if uri.send(component).present? && uri.send(component) != request.send(component) - return false - end - uri.send(:"#{component}=", nil) - end - # Always ignore basic user:password in the URL - uri.userinfo = nil - - path = uri.to_s - # Ensure that the remaining URL starts with a slash, followed by a - # non-slash character or the end - if !%r{\A/([^/]|\z)}.match?(path) - return false - end - - if %r{/(login|account/register|account/lost_password)}.match?(path) - return false - end - - if relative_url_root.present? && !path.starts_with?(relative_url_root) - return false - end - - return path - end - private :validate_back_url - helper_method :validate_back_url - - def valid_back_url?(back_url) - !!validate_back_url(back_url) - end - private :valid_back_url? - helper_method :valid_back_url? - - # Redirects to the request referer if present, redirects to args or call block otherwise. - def redirect_to_referer_or(*args, &block) - if referer = request.headers["Referer"] - redirect_to referer - else - if args.any? - redirect_to *args - elsif block_given? - yield - else - raise "#redirect_to_referer_or takes arguments or a block" - end - end - end - - def render_403(options={}) - @project = nil - render_error({:message => :notice_not_authorized, :status => 403}.merge(options)) - return false - end - - def render_404(options={}) - render_error({:message => :notice_file_not_found, :status => 404}.merge(options)) - return false - end - - # Renders an error response - def render_error(arg) - arg = {:message => arg} unless arg.is_a?(Hash) - - @message = arg[:message] - @message = l(@message) if @message.is_a?(Symbol) - @status = arg[:status] || 500 - - respond_to do |format| - format.html { - render :template => 'common/error', :layout => use_layout, :status => @status - } - format.any { head @status } - end - end - - # Handler for ActionView::MissingTemplate exception - def missing_template(exception) - logger.warn "Missing template, responding with 404: #{exception}" - @project = nil - render_404 - end - - # Filter for actions that provide an API response - # but have no HTML representation for non admin users - def require_admin_or_api_request - return true if api_request? - if User.current.admin? - true - elsif User.current.logged? - render_error(:status => 406) - else - deny_access - end - end - - # Picks which layout to use based on the request - # - # @return [boolean, string] name of the layout to use or false for no layout - def use_layout - request.xhr? ? false : 'base' - end - - def render_feed(items, options={}) - @items = (items || []).to_a - @items.sort! {|x,y| y.event_datetime <=> x.event_datetime } - @items = @items.slice(0, Setting.feeds_limit.to_i) - @title = options[:title] || Setting.app_title - render :template => "common/feed", :formats => [:atom], :layout => false, - :content_type => 'application/atom+xml' - end - - def self.accept_rss_auth(*actions) - if actions.any? - self.accept_rss_auth_actions = actions - else - self.accept_rss_auth_actions || [] - end - end - - def accept_rss_auth?(action=action_name) - self.class.accept_rss_auth.include?(action.to_sym) - end - - def self.accept_api_auth(*actions) - if actions.any? - self.accept_api_auth_actions = actions - else - self.accept_api_auth_actions || [] - end - end - - def accept_api_auth?(action=action_name) - self.class.accept_api_auth.include?(action.to_sym) - end - - # Returns the number of objects that should be displayed - # on the paginated list - def per_page_option - per_page = nil - if params[:per_page] && Setting.per_page_options_array.include?(params[:per_page].to_s.to_i) - per_page = params[:per_page].to_s.to_i - session[:per_page] = per_page - elsif session[:per_page] - per_page = session[:per_page] - else - per_page = Setting.per_page_options_array.first || 25 - end - per_page - end - - # Returns offset and limit used to retrieve objects - # for an API response based on offset, limit and page parameters - def api_offset_and_limit(options=params) - if options[:offset].present? - offset = options[:offset].to_i - if offset < 0 - offset = 0 - end - end - limit = options[:limit].to_i - if limit < 1 - limit = 25 - elsif limit > 100 - limit = 100 - end - if offset.nil? && options[:page].present? - offset = (options[:page].to_i - 1) * limit - offset = 0 if offset < 0 - end - offset ||= 0 - - [offset, limit] - end - - # qvalues http header parser - # code taken from webrick - def parse_qvalues(value) - tmp = [] - if value - parts = value.split(/,\s*/) - parts.each {|part| - if m = %r{^([^\s,]+?)(?:;\s*q=(\d+(?:\.\d+)?))?$}.match(part) - val = m[1] - q = (m[2] or 1).to_f - tmp.push([val, q]) - end - } - tmp = tmp.sort_by{|val, q| -q} - tmp.collect!{|val, q| val} - end - return tmp - rescue - nil - end - - # Returns a string that can be used as filename value in Content-Disposition header - def filename_for_content_disposition(name) - %r{(MSIE|Trident|Edge)}.match?(request.env['HTTP_USER_AGENT']) ? ERB::Util.url_encode(name) : name - end - - def api_request? - %w(xml json).include? params[:format] - end - - # Returns the API key present in the request - def api_key_from_request - if params[:key].present? - params[:key].to_s - elsif request.headers["X-Redmine-API-Key"].present? - request.headers["X-Redmine-API-Key"].to_s - end - end - - # Returns the API 'switch user' value if present - def api_switch_user_from_request - request.headers["X-Redmine-Switch-User"].to_s.presence - end - - # Renders a warning flash if obj has unsaved attachments - def render_attachment_warning_if_needed(obj) - flash[:warning] = l(:warning_attachments_not_saved, obj.unsaved_attachments.size) if obj.unsaved_attachments.present? - end - - # Rescues an invalid query statement. Just in case... - def query_statement_invalid(exception) - logger.error "Query::StatementInvalid: #{exception.message}" if logger - session.delete(:issue_query) - render_error "An error occurred while executing the query and has been logged. Please report this error to your Redmine administrator." - end - - # Renders a 204 response for successful updates or deletions via the API - def render_api_ok - render_api_head :no_content - end - - # Renders a head API response - def render_api_head(status) - head status - end - - # Renders API response on validation failure - # for an object or an array of objects - def render_validation_errors(objects) - messages = Array.wrap(objects).map {|object| object.errors.full_messages}.flatten - render_api_errors(messages) - end - - def render_api_errors(*messages) - @error_messages = messages.flatten - render :template => 'common/error_messages.api', :status => :unprocessable_entity, :layout => nil - end - - # Overrides #_include_layout? so that #render with no arguments - # doesn't use the layout for api requests - def _include_layout?(*args) - api_request? ? false : super - end -end diff --git a/app/controllers/attachments_controller.rb b/app/controllers/attachments_controller.rb deleted file mode 100644 index 366bad5..0000000 --- a/app/controllers/attachments_controller.rb +++ /dev/null @@ -1,278 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class AttachmentsController < ApplicationController - before_action :find_attachment, :only => [:show, :download, :thumbnail, :update, :destroy] - before_action :find_editable_attachments, :only => [:edit_all, :update_all] - before_action :file_readable, :read_authorize, :only => [:show, :download, :thumbnail] - before_action :update_authorize, :only => :update - before_action :delete_authorize, :only => :destroy - before_action :authorize_global, :only => :upload - - # Disable check for same origin requests for JS files, i.e. attachments with - # MIME type text/javascript. - skip_after_action :verify_same_origin_request, :only => :download - - accept_api_auth :show, :download, :thumbnail, :upload, :update, :destroy - - def show - respond_to do |format| - format.html { - if @attachment.container.respond_to?(:attachments) - @attachments = @attachment.container.attachments.to_a - if index = @attachments.index(@attachment) - @paginator = Redmine::Pagination::Paginator.new( - @attachments.size, 1, index+1 - ) - end - end - if @attachment.is_diff? - @diff = File.read(@attachment.diskfile, :mode => "rb") - @diff_type = params[:type] || User.current.pref[:diff_type] || 'inline' - @diff_type = 'inline' unless %w(inline sbs).include?(@diff_type) - # Save diff type as user preference - if User.current.logged? && @diff_type != User.current.pref[:diff_type] - User.current.pref[:diff_type] = @diff_type - User.current.preference.save - end - render :action => 'diff' - elsif @attachment.is_text? && @attachment.filesize <= Setting.file_max_size_displayed.to_i.kilobyte - @content = File.read(@attachment.diskfile, :mode => "rb") - render :action => 'file' - elsif @attachment.is_image? - render :action => 'image' - else - render :action => 'other' - end - } - format.api - end - end - - def download - if @attachment.container.is_a?(Version) || @attachment.container.is_a?(Project) - @attachment.increment_download - end - - if stale?(:etag => @attachment.digest, :template => false) - # images are sent inline - send_file @attachment.diskfile, :filename => filename_for_content_disposition(@attachment.filename), - :type => detect_content_type(@attachment), - :disposition => disposition(@attachment) - end - end - - def thumbnail - if @attachment.thumbnailable? && tbnail = @attachment.thumbnail(:size => params[:size]) - if stale?(:etag => tbnail, :template => false) - send_file( - tbnail, - :filename => filename_for_content_disposition(@attachment.filename), - :type => detect_content_type(@attachment, true), - :disposition => 'inline') - end - else - # No thumbnail for the attachment or thumbnail could not be created - head 404 - end - end - - def upload - # Make sure that API users get used to set this content type - # as it won't trigger Rails' automatic parsing of the request body for parameters - unless request.content_type == 'application/octet-stream' - head 406 - return - end - - @attachment = Attachment.new(:file => raw_request_body) - @attachment.author = User.current - @attachment.filename = params[:filename].presence || Redmine::Utils.random_hex(16) - @attachment.content_type = params[:content_type].presence - saved = @attachment.save - - respond_to do |format| - format.js - format.api { - if saved - render :action => 'upload', :status => :created - else - render_validation_errors(@attachment) - end - } - end - end - - # Edit all the attachments of a container - def edit_all - end - - # Update all the attachments of a container - def update_all - if Attachment.update_attachments(@attachments, update_all_params) - redirect_back_or_default home_path - return - end - render :action => 'edit_all' - end - - def update - @attachment.safe_attributes = params[:attachment] - saved = @attachment.save - - respond_to do |format| - format.api { - if saved - render_api_ok - else - render_validation_errors(@attachment) - end - } - end - end - - def destroy - if @attachment.container.respond_to?(:init_journal) - @attachment.container.init_journal(User.current) - end - if @attachment.container - # Make sure association callbacks are called - @attachment.container.attachments.delete(@attachment) - else - @attachment.destroy - end - - respond_to do |format| - format.html { redirect_to_referer_or project_path(@project) } - format.js - format.api { render_api_ok } - end - end - - # Returns the menu item that should be selected when viewing an attachment - def current_menu_item - container = @attachment.try(:container) || @container - - if container - case container - when WikiPage - :wiki - when Message - :boards - when Project, Version - :files - else - container.class.name.pluralize.downcase.to_sym - end - end - end - - private - - def find_attachment - @attachment = Attachment.find(params[:id]) - # Show 404 if the filename in the url is wrong - raise ActiveRecord::RecordNotFound if params[:filename] && params[:filename] != @attachment.filename - @project = @attachment.project - rescue ActiveRecord::RecordNotFound - render_404 - end - - def find_editable_attachments - klass = params[:object_type].to_s.singularize.classify.constantize rescue nil - unless klass && klass.reflect_on_association(:attachments) - render_404 - return - end - - @container = klass.find(params[:object_id]) - if @container.respond_to?(:visible?) && !@container.visible? - render_403 - return - end - @attachments = @container.attachments.select(&:editable?) - if @container.respond_to?(:project) - @project = @container.project - end - render_404 if @attachments.empty? - rescue ActiveRecord::RecordNotFound - render_404 - end - - # Checks that the file exists and is readable - def file_readable - if @attachment.readable? - true - else - logger.error "Cannot send attachment, #{@attachment.diskfile} does not exist or is unreadable." - render_404 - end - end - - def read_authorize - @attachment.visible? ? true : deny_access - end - - def update_authorize - @attachment.editable? ? true : deny_access - end - - def delete_authorize - @attachment.deletable? ? true : deny_access - end - - def detect_content_type(attachment, is_thumb = false) - content_type = attachment.content_type - if content_type.blank? || content_type == "application/octet-stream" - content_type = - Redmine::MimeType.of(attachment.filename).presence || - "application/octet-stream" - end - - if is_thumb && content_type == "application/pdf" - # PDF previews are stored in PNG format - content_type = "image/png" - end - - content_type - end - - def disposition(attachment) - if attachment.is_pdf? - 'inline' - else - 'attachment' - end - end - - # Returns attachments param for #update_all - def update_all_params - params.permit(:attachments => [:filename, :description]).require(:attachments) - end - - # Get an IO-like object for the request body which is usable to create a new - # attachment. We try to avoid having to read the whole body into memory. - def raw_request_body - if request.body.respond_to?(:size) - request.body - else - request.raw_post - end - end -end diff --git a/app/controllers/auth_sources_controller.rb b/app/controllers/auth_sources_controller.rb deleted file mode 100644 index 295dfd1..0000000 --- a/app/controllers/auth_sources_controller.rb +++ /dev/null @@ -1,110 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class AuthSourcesController < ApplicationController - layout 'admin' - self.main_menu = false - menu_item :ldap_authentication - - before_action :require_admin - before_action :build_new_auth_source, :only => [:new, :create] - before_action :find_auth_source, :only => [:edit, :update, :test_connection, :destroy] - require_sudo_mode :update, :destroy - - def index - @auth_source_pages, @auth_sources = paginate AuthSource, :per_page => 25 - end - - def new - end - - def create - if @auth_source.save - flash[:notice] = l(:notice_successful_create) - redirect_to auth_sources_path - else - render :action => 'new' - end - end - - def edit - end - - def update - @auth_source.safe_attributes = params[:auth_source] - if @auth_source.save - flash[:notice] = l(:notice_successful_update) - redirect_to auth_sources_path - else - render :action => 'edit' - end - end - - def test_connection - begin - @auth_source.test_connection - flash[:notice] = l(:notice_successful_connection) - rescue => e - flash[:error] = l(:error_unable_to_connect, e.message) - end - redirect_to auth_sources_path - end - - def destroy - unless @auth_source.users.exists? - @auth_source.destroy - flash[:notice] = l(:notice_successful_delete) - else - flash[:error] = l(:error_can_not_delete_auth_source) - end - redirect_to auth_sources_path - end - - def autocomplete_for_new_user - results = AuthSource.search(params[:term]) - render :json => results.map {|result| - { - 'value' => result[:login], - 'label' => "#{result[:login]} (#{result[:firstname]} #{result[:lastname]})", - 'login' => result[:login].to_s, - 'firstname' => result[:firstname].to_s, - 'lastname' => result[:lastname].to_s, - 'mail' => result[:mail].to_s, - 'auth_source_id' => result[:auth_source_id].to_s - } - } - end - - private - - def build_new_auth_source - @auth_source = AuthSource.new_subclass_instance(params[:type] || 'AuthSourceLdap') - if @auth_source - @auth_source.safe_attributes = params[:auth_source] - else - render_404 - end - end - - def find_auth_source - @auth_source = AuthSource.find(params[:id]) - rescue ActiveRecord::RecordNotFound - render_404 - end -end diff --git a/app/controllers/auto_completes_controller.rb b/app/controllers/auto_completes_controller.rb deleted file mode 100644 index d055476..0000000 --- a/app/controllers/auto_completes_controller.rb +++ /dev/null @@ -1,64 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class AutoCompletesController < ApplicationController - before_action :find_project - - def issues - issues = [] - q = (params[:q] || params[:term]).to_s.strip - status = params[:status].to_s - issue_id = params[:issue_id].to_s - - scope = Issue.cross_project_scope(@project, params[:scope]).visible - scope = scope.open(status == 'o') if status.present? - scope = scope.where.not(:id => issue_id.to_i) if issue_id.present? - if q.present? - if q =~ /\A#?(\d+)\z/ - issues << scope.find_by(:id => $1.to_i) - end - issues += scope.like(q).order(:id => :desc).limit(10).to_a - issues.compact! - else - issues += scope.order(:id => :desc).limit(10).to_a - end - - render :json => format_issues_json(issues) - end - - private - - def find_project - if params[:project_id].present? - @project = Project.find(params[:project_id]) - end - rescue ActiveRecord::RecordNotFound - render_404 - end - - def format_issues_json(issues) - issues.map {|issue| - { - 'id' => issue.id, - 'label' => "#{issue.tracker} ##{issue.id}: #{issue.subject.to_s.truncate(60)}", - 'value' => issue.id - } - } - end -end diff --git a/app/controllers/boards_controller.rb b/app/controllers/boards_controller.rb deleted file mode 100644 index bcafada..0000000 --- a/app/controllers/boards_controller.rb +++ /dev/null @@ -1,124 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class BoardsController < ApplicationController - default_search_scope :messages - before_action :find_project_by_project_id, :find_board_if_available, :authorize - accept_rss_auth :index, :show - - helper :sort - include SortHelper - helper :watchers - - def index - @boards = @project.boards.preload(:last_message => :author).to_a - # show the board if there is only one - if @boards.size == 1 - @board = @boards.first - show - end - end - - def show - respond_to do |format| - format.html { - sort_init 'updated_on', 'desc' - sort_update 'created_on' => "#{Message.table_name}.id", - 'replies' => "#{Message.table_name}.replies_count", - 'updated_on' => "COALESCE(#{Message.table_name}.last_reply_id, #{Message.table_name}.id)" - - @topic_count = @board.topics.count - @topic_pages = Paginator.new @topic_count, per_page_option, params['page'] - @topics = @board.topics. - reorder(:sticky => :desc). - limit(@topic_pages.per_page). - offset(@topic_pages.offset). - order(sort_clause). - preload(:author, {:last_reply => :author}). - to_a - @message = Message.new(:board => @board) - render :action => 'show', :layout => !request.xhr? - } - format.atom { - @messages = @board.messages. - reorder(:id => :desc). - includes(:author, :board). - limit(Setting.feeds_limit.to_i). - to_a - render_feed(@messages, :title => "#{@project}: #{@board}") - } - end - end - - def new - @board = @project.boards.build - @board.safe_attributes = params[:board] - end - - def create - @board = @project.boards.build - @board.safe_attributes = params[:board] - if @board.save - flash[:notice] = l(:notice_successful_create) - redirect_to_settings_in_projects - else - render :action => 'new' - end - end - - def edit - end - - def update - @board.safe_attributes = params[:board] - if @board.save - respond_to do |format| - format.html { - flash[:notice] = l(:notice_successful_update) - redirect_to_settings_in_projects - } - format.js { head 200 } - end - else - respond_to do |format| - format.html { render :action => 'edit' } - format.js { head 422 } - end - end - end - - def destroy - if @board.destroy - flash[:notice] = l(:notice_successful_delete) - end - redirect_to_settings_in_projects - end - - private - - def redirect_to_settings_in_projects - redirect_to settings_project_path(@project, :tab => 'boards') - end - - def find_board_if_available - @board = @project.boards.find(params[:id]) if params[:id] - rescue ActiveRecord::RecordNotFound - render_404 - end -end diff --git a/app/controllers/calendars_controller.rb b/app/controllers/calendars_controller.rb deleted file mode 100644 index 23e7488..0000000 --- a/app/controllers/calendars_controller.rb +++ /dev/null @@ -1,57 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class CalendarsController < ApplicationController - menu_item :calendar - before_action :find_optional_project - - rescue_from Query::StatementInvalid, :with => :query_statement_invalid - - helper :issues - helper :projects - helper :queries - include QueriesHelper - - def show - if params[:year] and params[:year].to_i > 1900 - @year = params[:year].to_i - if params[:month] and params[:month].to_i > 0 and params[:month].to_i < 13 - @month = params[:month].to_i - end - end - @year ||= User.current.today.year - @month ||= User.current.today.month - - @calendar = Redmine::Helpers::Calendar.new(Date.civil(@year, @month, 1), current_language, :month) - retrieve_query - @query.group_by = nil - @query.sort_criteria = nil - if @query.valid? - events = [] - events += @query.issues(:include => [:tracker, :assigned_to, :priority], - :conditions => ["((start_date BETWEEN ? AND ?) OR (due_date BETWEEN ? AND ?))", @calendar.startdt, @calendar.enddt, @calendar.startdt, @calendar.enddt] - ) - events += @query.versions(:conditions => ["effective_date BETWEEN ? AND ?", @calendar.startdt, @calendar.enddt]) - - @calendar.events = events - end - - render :action => 'show', :layout => false if request.xhr? - end -end diff --git a/app/controllers/comments_controller.rb b/app/controllers/comments_controller.rb deleted file mode 100644 index 5d7d664..0000000 --- a/app/controllers/comments_controller.rb +++ /dev/null @@ -1,55 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class CommentsController < ApplicationController - default_search_scope :news - model_object News - before_action :find_model_object - before_action :find_project_from_association - before_action :authorize - - def create - raise Unauthorized unless @news.commentable? - - @comment = Comment.new - @comment.safe_attributes = params[:comment] - @comment.author = User.current - if @news.comments << @comment - flash[:notice] = l(:label_comment_added) - end - - redirect_to news_path(@news) - end - - def destroy - @news.comments.find(params[:comment_id]).destroy - redirect_to news_path(@news) - end - - private - - # ApplicationController's find_model_object sets it based on the controller - # name so it needs to be overridden and set to @news instead - def find_model_object - super - @news = @object - @comment = nil - @news - end -end diff --git a/app/controllers/context_menus_controller.rb b/app/controllers/context_menus_controller.rb deleted file mode 100644 index 8622d15..0000000 --- a/app/controllers/context_menus_controller.rb +++ /dev/null @@ -1,96 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class ContextMenusController < ApplicationController - helper :watchers - helper :issues - - before_action :find_issues, :only => :issues - - def issues - if @issues.size == 1 - @issue = @issues.first - end - @issue_ids = @issues.map(&:id).sort - - @allowed_statuses = @issues.map(&:new_statuses_allowed_to).reduce(:&) - - @can = {:edit => @issues.all?(&:attributes_editable?), - :log_time => (@project && User.current.allowed_to?(:log_time, @project)), - :copy => User.current.allowed_to?(:copy_issues, @projects) && Issue.allowed_target_projects.any?, - :add_watchers => User.current.allowed_to?(:add_issue_watchers, @projects), - :delete => @issues.all?(&:deletable?) - } - - @assignables = @issues.map(&:assignable_users).reduce(:&) - @trackers = @projects.map {|p| Issue.allowed_target_trackers(p) }.reduce(:&) - @versions = @projects.map {|p| p.shared_versions.open}.reduce(:&) - - @priorities = IssuePriority.active.reverse - @back = back_url - - @columns = params[:c] - - @options_by_custom_field = {} - if @can[:edit] - custom_fields = @issues.map(&:editable_custom_fields).reduce(:&).reject(&:multiple?).select {|field| field.format.bulk_edit_supported} - custom_fields.each do |field| - values = field.possible_values_options(@projects) - if values.present? - @options_by_custom_field[field] = values - end - end - end - - @safe_attributes = @issues.map(&:safe_attribute_names).reduce(:&) - render :layout => false - end - - def time_entries - @time_entries = TimeEntry.where(:id => params[:ids]). - preload(:project => :time_entry_activities). - preload(:user).to_a - - (render_404; return) unless @time_entries.present? - if @time_entries.size == 1 - @time_entry = @time_entries.first - end - - @projects = @time_entries.collect(&:project).compact.uniq - @project = @projects.first if @projects.size == 1 - @activities = @projects.map(&:activities).reduce(:&) - - edit_allowed = @time_entries.all? {|t| t.editable_by?(User.current)} - @can = {:edit => edit_allowed, :delete => edit_allowed} - @back = back_url - - @options_by_custom_field = {} - if @can[:edit] - custom_fields = @time_entries.map(&:editable_custom_fields).reduce(:&).reject(&:multiple?).select {|field| field.format.bulk_edit_supported} - custom_fields.each do |field| - values = field.possible_values_options(@projects) - if values.present? - @options_by_custom_field[field] = values - end - end - end - - render :layout => false - end -end diff --git a/app/controllers/custom_field_enumerations_controller.rb b/app/controllers/custom_field_enumerations_controller.rb deleted file mode 100644 index 8c00edc..0000000 --- a/app/controllers/custom_field_enumerations_controller.rb +++ /dev/null @@ -1,86 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class CustomFieldEnumerationsController < ApplicationController - layout 'admin' - self.main_menu = false - - before_action :require_admin - before_action :find_custom_field - before_action :find_enumeration, :only => :destroy - - helper :custom_fields - - def index - @values = @custom_field.enumerations.order(:position) - end - - def create - @value = @custom_field.enumerations.build - @value.attributes = enumeration_params - @value.save - respond_to do |format| - format.html { redirect_to custom_field_enumerations_path(@custom_field) } - format.js - end - end - - def update_each - saved = CustomFieldEnumeration.update_each(@custom_field, update_each_params) - if saved - flash[:notice] = l(:notice_successful_update) - end - redirect_to :action => 'index' - end - - def destroy - reassign_to = @custom_field.enumerations.find_by_id(params[:reassign_to_id]) - if reassign_to.nil? && @value.in_use? - @enumerations = @custom_field.enumerations - [@value] - render :action => 'destroy' - return - end - @value.destroy(reassign_to) - redirect_to custom_field_enumerations_path(@custom_field) - end - - private - - def find_custom_field - @custom_field = CustomField.find(params[:custom_field_id]) - rescue ActiveRecord::RecordNotFound - render_404 - end - - def find_enumeration - @value = @custom_field.enumerations.find(params[:id]) - rescue ActiveRecord::RecordNotFound - render_404 - end - - def enumeration_params - params.require(:custom_field_enumeration).permit(:name, :active, :position) - end - - def update_each_params - # params.require(:custom_field_enumerations).permit(:name, :active, :position) does not work here with param like this: - # "custom_field_enumerations":{"0":{"name": ...}, "1":{"name...}} - params.permit(:custom_field_enumerations => [:name, :active, :position]).require(:custom_field_enumerations) - end -end diff --git a/app/controllers/custom_fields_controller.rb b/app/controllers/custom_fields_controller.rb deleted file mode 100644 index f979f8b..0000000 --- a/app/controllers/custom_fields_controller.rb +++ /dev/null @@ -1,110 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class CustomFieldsController < ApplicationController - layout 'admin' - self.main_menu = false - - before_action :require_admin - before_action :build_new_custom_field, :only => [:new, :create] - before_action :find_custom_field, :only => [:edit, :update, :destroy] - accept_api_auth :index - - def index - respond_to do |format| - format.html { - @custom_fields_by_type = CustomField.all.group_by {|f| f.class.name } - @custom_fields_projects_count = - IssueCustomField.where(is_for_all: false).joins(:projects).group(:custom_field_id).count - } - format.api { - @custom_fields = CustomField.all - } - end - end - - def new - @custom_field.field_format = 'string' if @custom_field.field_format.blank? - @custom_field.default_value = nil - end - - def create - if @custom_field.save - flash[:notice] = l(:notice_successful_create) - call_hook(:controller_custom_fields_new_after_save, :params => params, :custom_field => @custom_field) - if params[:continue] - redirect_to new_custom_field_path({:type => @custom_field.type}) - else - redirect_to edit_custom_field_path(@custom_field) - end - else - render :action => 'new' - end - end - - def edit - end - - def update - @custom_field.safe_attributes = params[:custom_field] - if @custom_field.save - call_hook(:controller_custom_fields_edit_after_save, :params => params, :custom_field => @custom_field) - respond_to do |format| - format.html { - flash[:notice] = l(:notice_successful_update) - redirect_back_or_default edit_custom_field_path(@custom_field) - } - format.js { head 200 } - end - else - respond_to do |format| - format.html { render :action => 'edit' } - format.js { head 422 } - end - end - end - - def destroy - begin - if @custom_field.destroy - flash[:notice] = l(:notice_successful_delete) - end - rescue - flash[:error] = l(:error_can_not_delete_custom_field) - end - redirect_to custom_fields_path(:tab => @custom_field.class.name) - end - - private - - def build_new_custom_field - @custom_field = CustomField.new_subclass_instance(params[:type]) - if @custom_field.nil? - render :action => 'select_type' - else - @custom_field.safe_attributes = params[:custom_field] - end - end - - def find_custom_field - @custom_field = CustomField.find(params[:id]) - rescue ActiveRecord::RecordNotFound - render_404 - end -end diff --git a/app/controllers/documents_controller.rb b/app/controllers/documents_controller.rb deleted file mode 100644 index 27cb1b2..0000000 --- a/app/controllers/documents_controller.rb +++ /dev/null @@ -1,98 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class DocumentsController < ApplicationController - default_search_scope :documents - model_object Document - before_action :find_project_by_project_id, :only => [:index, :new, :create] - before_action :find_model_object, :except => [:index, :new, :create] - before_action :find_project_from_association, :except => [:index, :new, :create] - before_action :authorize - - helper :attachments - helper :custom_fields - - def index - @sort_by = %w(category date title author).include?(params[:sort_by]) ? params[:sort_by] : 'category' - documents = @project.documents.includes(:attachments, :category).to_a - case @sort_by - when 'date' - documents.sort!{|a,b| b.updated_on <=> a.updated_on} - @grouped = documents.group_by {|d| d.updated_on.to_date} - when 'title' - @grouped = documents.group_by {|d| d.title.first.upcase} - when 'author' - @grouped = documents.select{|d| d.attachments.any?}.group_by {|d| d.attachments.last.author} - else - @grouped = documents.group_by(&:category) - end - @document = @project.documents.build - render :layout => false if request.xhr? - end - - def show - @attachments = @document.attachments.to_a - end - - def new - @document = @project.documents.build - @document.safe_attributes = params[:document] - end - - def create - @document = @project.documents.build - @document.safe_attributes = params[:document] - @document.save_attachments(params[:attachments]) - if @document.save - render_attachment_warning_if_needed(@document) - flash[:notice] = l(:notice_successful_create) - redirect_to project_documents_path(@project) - else - render :action => 'new' - end - end - - def edit - end - - def update - @document.safe_attributes = params[:document] - if @document.save - flash[:notice] = l(:notice_successful_update) - redirect_to document_path(@document) - else - render :action => 'edit' - end - end - - def destroy - @document.destroy if request.delete? - redirect_to project_documents_path(@project) - end - - def add_attachment - attachments = Attachment.attach_files(@document, params[:attachments]) - render_attachment_warning_if_needed(@document) - - if attachments.present? && attachments[:files].present? && Setting.notified_events.include?('document_added') - Mailer.deliver_attachments_added(attachments[:files]) - end - redirect_to document_path(@document) - end -end diff --git a/app/controllers/email_addresses_controller.rb b/app/controllers/email_addresses_controller.rb deleted file mode 100644 index 9af294b..0000000 --- a/app/controllers/email_addresses_controller.rb +++ /dev/null @@ -1,106 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class EmailAddressesController < ApplicationController - self.main_menu = false - before_action :find_user, :require_admin_or_current_user - before_action :find_email_address, :only => [:update, :destroy] - require_sudo_mode :create, :update, :destroy - - def index - @addresses = @user.email_addresses.order(:id).where(:is_default => false).to_a - @address ||= EmailAddress.new - end - - def create - saved = false - if @user.email_addresses.count <= Setting.max_additional_emails.to_i - @address = EmailAddress.new(:user => @user, :is_default => false) - @address.safe_attributes = params[:email_address] - saved = @address.save - end - - respond_to do |format| - format.html { - if saved - redirect_to user_email_addresses_path(@user) - else - index - render :action => 'index' - end - } - format.js { - @address = nil if saved - index - render :action => 'index' - } - end - end - - def update - if params[:notify].present? - @address.notify = params[:notify].to_s - end - @address.save - - respond_to do |format| - format.html { - redirect_to user_email_addresses_path(@user) - } - format.js { - @address = nil - index - render :action => 'index' - } - end - end - - def destroy - @address.destroy - - respond_to do |format| - format.html { - redirect_to user_email_addresses_path(@user) - } - format.js { - @address = nil - index - render :action => 'index' - } - end - end - - private - - def find_user - @user = User.find(params[:user_id]) - end - - def find_email_address - @address = @user.email_addresses.where(:is_default => false).find(params[:id]) - rescue ActiveRecord::RecordNotFound - render_404 - end - - def require_admin_or_current_user - unless @user == User.current - require_admin - end - end -end diff --git a/app/controllers/enumerations_controller.rb b/app/controllers/enumerations_controller.rb deleted file mode 100644 index a3d4e47..0000000 --- a/app/controllers/enumerations_controller.rb +++ /dev/null @@ -1,115 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class EnumerationsController < ApplicationController - layout 'admin' - self.main_menu = false - - before_action :require_admin, :except => :index - before_action :require_admin_or_api_request, :only => :index - before_action :build_new_enumeration, :only => [:new, :create] - before_action :find_enumeration, :only => [:edit, :update, :destroy] - accept_api_auth :index - - helper :custom_fields - - def index - respond_to do |format| - format.html - format.api { - @klass = Enumeration.get_subclass(params[:type]) - if @klass - @enumerations = @klass.shared.sorted.to_a - else - render_404 - end - } - end - end - - def new - end - - def create - if request.post? && @enumeration.save - flash[:notice] = l(:notice_successful_create) - redirect_to enumerations_path - else - render :action => 'new' - end - end - - def edit - end - - def update - if @enumeration.update(enumeration_params) - respond_to do |format| - format.html { - flash[:notice] = l(:notice_successful_update) - redirect_to enumerations_path - } - format.js { head 200 } - end - else - respond_to do |format| - format.html { render :action => 'edit' } - format.js { head 422 } - end - end - end - - def destroy - if !@enumeration.in_use? - # No associated objects - @enumeration.destroy - redirect_to enumerations_path - return - elsif params[:reassign_to_id].present? && (reassign_to = @enumeration.class.find_by_id(params[:reassign_to_id].to_i)) - @enumeration.destroy(reassign_to) - redirect_to enumerations_path - return - end - @enumerations = @enumeration.class.system.to_a - [@enumeration] - end - - private - - def build_new_enumeration - class_name = params[:enumeration] && params[:enumeration][:type] || params[:type] - @enumeration = Enumeration.new_subclass_instance(class_name) - if @enumeration - @enumeration.attributes = enumeration_params || {} - else - render_404 - end - end - - def find_enumeration - @enumeration = Enumeration.find(params[:id]) - rescue ActiveRecord::RecordNotFound - render_404 - end - - def enumeration_params - # can't require enumeration on #new action - cf_ids = @enumeration.available_custom_fields.map {|c| c.multiple? ? {c.id.to_s => []} : c.id.to_s} - params.permit(:enumeration => [:name, :active, :is_default, :position, :custom_field_values => cf_ids])[:enumeration] - end -end diff --git a/app/controllers/files_controller.rb b/app/controllers/files_controller.rb deleted file mode 100644 index 00b0dca..0000000 --- a/app/controllers/files_controller.rb +++ /dev/null @@ -1,80 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class FilesController < ApplicationController - menu_item :files - - before_action :find_project_by_project_id - before_action :authorize - accept_api_auth :index, :create - - helper :attachments - helper :sort - include SortHelper - - def index - sort_init 'filename', 'asc' - sort_update 'filename' => "#{Attachment.table_name}.filename", - 'created_on' => "#{Attachment.table_name}.created_on", - 'size' => "#{Attachment.table_name}.filesize", - 'downloads' => "#{Attachment.table_name}.downloads" - - @containers = [Project.includes(:attachments). - references(:attachments).reorder(sort_clause).find(@project.id)] - @containers += @project.versions.includes(:attachments). - references(:attachments).reorder(sort_clause).to_a.sort.reverse - respond_to do |format| - format.html { render :layout => !request.xhr? } - format.api - end - end - - def new - @versions = @project.versions.sorted - end - - def create - version_id = params[:version_id] || (params[:file] && params[:file][:version_id]) - container = version_id.blank? ? @project : @project.versions.find_by_id(version_id) - attachments = Attachment.attach_files(container, (params[:attachments] || (params[:file] && params[:file][:token] && params))) - render_attachment_warning_if_needed(container) - - if attachments[:files].present? - if Setting.notified_events.include?('file_added') - Mailer.deliver_attachments_added(attachments[:files]) - end - respond_to do |format| - format.html { - flash[:notice] = l(:label_file_added) - redirect_to project_files_path(@project) - } - format.api { render_api_ok } - end - else - respond_to do |format| - format.html { - flash.now[:error] = l(:label_attachment) + " " + l('activerecord.errors.messages.invalid') - new - render :action => 'new' - } - format.api { render :status => :bad_request } - end - end - end -end diff --git a/app/controllers/gantts_controller.rb b/app/controllers/gantts_controller.rb deleted file mode 100644 index 04a9e35..0000000 --- a/app/controllers/gantts_controller.rb +++ /dev/null @@ -1,48 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class GanttsController < ApplicationController - menu_item :gantt - before_action :find_optional_project - - rescue_from Query::StatementInvalid, :with => :query_statement_invalid - - helper :gantt - helper :issues - helper :projects - helper :queries - include QueriesHelper - include Redmine::Export::PDF - - def show - @gantt = Redmine::Helpers::Gantt.new(params) - @gantt.project = @project - retrieve_query - @query.group_by = nil - @gantt.query = @query if @query.valid? - - basename = (@project ? "#{@project.identifier}-" : '') + 'gantt' - - respond_to do |format| - format.html { render :action => "show", :layout => !request.xhr? } - format.png { send_data(@gantt.to_image, :disposition => 'inline', :type => 'image/png', :filename => "#{basename}.png") } if @gantt.respond_to?('to_image') - format.pdf { send_data(@gantt.to_pdf, :type => 'application/pdf', :filename => "#{basename}.pdf") } - end - end -end diff --git a/app/controllers/groups_controller.rb b/app/controllers/groups_controller.rb deleted file mode 100644 index 5cb80e2..0000000 --- a/app/controllers/groups_controller.rb +++ /dev/null @@ -1,157 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class GroupsController < ApplicationController - layout 'admin' - self.main_menu = false - - before_action :require_admin - before_action :find_group, :except => [:index, :new, :create] - accept_api_auth :index, :show, :create, :update, :destroy, :add_users, :remove_user - - require_sudo_mode :add_users, :remove_user, :create, :update, :destroy, :edit_membership, :destroy_membership - - helper :custom_fields - helper :principal_memberships - - def index - respond_to do |format| - format.html { - scope = Group.sorted - scope = scope.like(params[:name]) if params[:name].present? - - @group_count = scope.count - @group_pages = Paginator.new @group_count, per_page_option, params['page'] - @groups = scope.limit(@group_pages.per_page).offset(@group_pages.offset).to_a - @user_count_by_group_id = user_count_by_group_id - } - format.api { - scope = Group.sorted - scope = scope.givable unless params[:builtin] == '1' - @groups = scope.to_a - } - end - end - - def show - respond_to do |format| - format.html - format.api - end - end - - def new - @group = Group.new - end - - def create - @group = Group.new - @group.safe_attributes = params[:group] - - respond_to do |format| - if @group.save - format.html { - flash[:notice] = l(:notice_successful_create) - redirect_to(params[:continue] ? new_group_path : groups_path) - } - format.api { render :action => 'show', :status => :created, :location => group_url(@group) } - else - format.html { render :action => "new" } - format.api { render_validation_errors(@group) } - end - end - end - - def edit - end - - def update - @group.safe_attributes = params[:group] - - respond_to do |format| - if @group.save - flash[:notice] = l(:notice_successful_update) - format.html { redirect_to_referer_or(groups_path) } - format.api { render_api_ok } - else - format.html { render :action => "edit" } - format.api { render_validation_errors(@group) } - end - end - end - - def destroy - @group.destroy - - respond_to do |format| - format.html { redirect_to_referer_or(groups_path) } - format.api { render_api_ok } - end - end - - def new_users - end - - def add_users - @users = User.not_in_group(@group).where(:id => (params[:user_id] || params[:user_ids])).to_a - @group.users << @users - respond_to do |format| - format.html { redirect_to edit_group_path(@group, :tab => 'users') } - format.js - format.api { - if @users.any? - render_api_ok - else - render_api_errors "#{l(:label_user)} #{l('activerecord.errors.messages.invalid')}" - end - } - end - end - - def remove_user - @group.users.delete(User.find(params[:user_id])) if request.delete? - respond_to do |format| - format.html { redirect_to edit_group_path(@group, :tab => 'users') } - format.js - format.api { render_api_ok } - end - end - - def autocomplete_for_user - respond_to do |format| - format.js - end - end - - private - - def find_group - @group = Group.find(params[:id]) - rescue ActiveRecord::RecordNotFound - render_404 - end - - def user_count_by_group_id - h = User.joins(:groups).group('group_id').count - h.keys.each do |key| - h[key.to_i] = h.delete(key) - end - h - end -end diff --git a/app/controllers/imports_controller.rb b/app/controllers/imports_controller.rb deleted file mode 100644 index 633cc23..0000000 --- a/app/controllers/imports_controller.rb +++ /dev/null @@ -1,162 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -require 'csv' - -class ImportsController < ApplicationController - before_action :find_import, :only => [:show, :settings, :mapping, :run] - before_action :authorize_import - - layout :import_layout - - helper :issues - helper :queries - - def new - @import = import_type.new - end - - def create - @import = import_type.new - @import.user = User.current - @import.file = params[:file] - @import.set_default_settings(:project_id => params[:project_id]) - - if @import.save - redirect_to import_settings_path(@import) - else - render :action => 'new' - end - end - - def show - end - - def settings - if request.post? && @import.parse_file - redirect_to import_mapping_path(@import) - end - - rescue CSV::MalformedCSVError, EncodingError => e - if e.is_a?(CSV::MalformedCSVError) && e.message !~ /Invalid byte sequence/ - flash.now[:error] = l(:error_invalid_csv_file_or_settings) - else - flash.now[:error] = l(:error_invalid_file_encoding, :encoding => ERB::Util.h(@import.settings['encoding'])) - end - rescue SystemCallError => e - flash.now[:error] = l(:error_can_not_read_import_file) - end - - def mapping - @custom_fields = @import.mappable_custom_fields - - if request.post? - respond_to do |format| - format.html { - if params[:previous] - redirect_to import_settings_path(@import) - else - redirect_to import_run_path(@import) - end - } - format.js # updates mapping form on project or tracker change - end - end - end - - def run - if request.post? - @current = @import.run( - :max_items => max_items_per_request, - :max_time => 10.seconds - ) - respond_to do |format| - format.html { - if @import.finished? - redirect_to import_path(@import) - else - redirect_to import_run_path(@import) - end - } - format.js - end - end - end - - def current_menu(project) - if import_layout == 'admin' - nil - else - :application_menu - end - end - - private - - def find_import - @import = Import.where(:user_id => User.current.id, :filename => params[:id]).first - if @import.nil? - render_404 - return - elsif @import.finished? && action_name != 'show' - redirect_to import_path(@import) - return - end - update_from_params if request.post? - end - - def update_from_params - if params[:import_settings].present? - @import.settings ||= {} - @import.settings.merge!(params[:import_settings].to_unsafe_hash) - @import.save! - end - end - - def max_items_per_request - 5 - end - - def import_layout - import_type && import_type.layout || 'base' - end - - def menu_items - menu_item = import_type ? import_type.menu_item : nil - - { self.controller_name.to_sym => { :actions => {}, :default => menu_item } } - end - - def authorize_import - return render_404 unless import_type - return render_403 unless import_type.authorized?(User.current) - end - - def import_type - return @import_type if defined? @import_type - - @import_type = - if @import - @import.class - else - type = Object.const_get(params[:type]) rescue nil - type && type < Import ? type : nil - end - end -end diff --git a/app/controllers/issue_categories_controller.rb b/app/controllers/issue_categories_controller.rb deleted file mode 100644 index f5decdd..0000000 --- a/app/controllers/issue_categories_controller.rb +++ /dev/null @@ -1,124 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class IssueCategoriesController < ApplicationController - menu_item :settings - model_object IssueCategory - before_action :find_model_object, :except => [:index, :new, :create] - before_action :find_project_from_association, :except => [:index, :new, :create] - before_action :find_project_by_project_id, :only => [:index, :new, :create] - before_action :authorize - accept_api_auth :index, :show, :create, :update, :destroy - - def index - respond_to do |format| - format.html { redirect_to_settings_in_projects } - format.api { @categories = @project.issue_categories.to_a } - end - end - - def show - respond_to do |format| - format.html { redirect_to_settings_in_projects } - format.api - end - end - - def new - @category = @project.issue_categories.build - @category.safe_attributes = params[:issue_category] - - respond_to do |format| - format.html - format.js - end - end - - def create - @category = @project.issue_categories.build - @category.safe_attributes = params[:issue_category] - if @category.save - respond_to do |format| - format.html do - flash[:notice] = l(:notice_successful_create) - redirect_to_settings_in_projects - end - format.js - format.api { render :action => 'show', :status => :created, :location => issue_category_path(@category) } - end - else - respond_to do |format| - format.html { render :action => 'new'} - format.js { render :action => 'new'} - format.api { render_validation_errors(@category) } - end - end - end - - def edit - end - - def update - @category.safe_attributes = params[:issue_category] - if @category.save - respond_to do |format| - format.html { - flash[:notice] = l(:notice_successful_update) - redirect_to_settings_in_projects - } - format.api { render_api_ok } - end - else - respond_to do |format| - format.html { render :action => 'edit' } - format.api { render_validation_errors(@category) } - end - end - end - - def destroy - @issue_count = @category.issues.size - if @issue_count == 0 || params[:todo] || api_request? - reassign_to = nil - if params[:reassign_to_id] && (params[:todo] == 'reassign' || params[:todo].blank?) - reassign_to = @project.issue_categories.find_by_id(params[:reassign_to_id]) - end - @category.destroy(reassign_to) - respond_to do |format| - format.html { redirect_to_settings_in_projects } - format.api { render_api_ok } - end - return - end - @categories = @project.issue_categories - [@category] - end - - private - - def redirect_to_settings_in_projects - redirect_to settings_project_path(@project, :tab => 'categories') - end - - # Wrap ApplicationController's find_model_object method to set - # @category instead of just @issue_category - def find_model_object - super - @category = @object - end -end diff --git a/app/controllers/issue_relations_controller.rb b/app/controllers/issue_relations_controller.rb deleted file mode 100644 index ee197d0..0000000 --- a/app/controllers/issue_relations_controller.rb +++ /dev/null @@ -1,100 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class IssueRelationsController < ApplicationController - helper :issues - - before_action :find_issue, :authorize, :only => [:index, :create] - before_action :find_relation, :only => [:show, :destroy] - - accept_api_auth :index, :show, :create, :destroy - - def index - @relations = @issue.relations - - respond_to do |format| - format.html { head 200 } - format.api - end - end - - def show - raise Unauthorized unless @relation.visible? - - respond_to do |format| - format.html { head 200 } - format.api - end - end - - def create - @relation = IssueRelation.new - @relation.issue_from = @issue - @relation.safe_attributes = params[:relation] - @relation.init_journals(User.current) - - begin - saved = @relation.save - rescue ActiveRecord::RecordNotUnique - saved = false - @relation.errors.add :base, :taken - end - - respond_to do |format| - format.html { redirect_to issue_path(@issue) } - format.js { - @relations = @issue.reload.relations.select {|r| r.other_issue(@issue) && r.other_issue(@issue).visible? } - } - format.api { - if saved - render :action => 'show', :status => :created, :location => relation_url(@relation) - else - render_validation_errors(@relation) - end - } - end - end - - def destroy - raise Unauthorized unless @relation.deletable? - @relation.init_journals(User.current) - @relation.destroy - - respond_to do |format| - format.html { redirect_to issue_path(@relation.issue_from) } - format.js - format.api { render_api_ok } - end - end - - private - - def find_issue - @issue = Issue.find(params[:issue_id]) - @project = @issue.project - rescue ActiveRecord::RecordNotFound - render_404 - end - - def find_relation - @relation = IssueRelation.find(params[:id]) - rescue ActiveRecord::RecordNotFound - render_404 - end -end diff --git a/app/controllers/issue_statuses_controller.rb b/app/controllers/issue_statuses_controller.rb deleted file mode 100644 index f9d051a..0000000 --- a/app/controllers/issue_statuses_controller.rb +++ /dev/null @@ -1,90 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class IssueStatusesController < ApplicationController - layout 'admin' - self.main_menu = false - - before_action :require_admin, :except => :index - before_action :require_admin_or_api_request, :only => :index - accept_api_auth :index - - def index - @issue_statuses = IssueStatus.sorted.to_a - respond_to do |format| - format.html { render :layout => false if request.xhr? } - format.api - end - end - - def new - @issue_status = IssueStatus.new - end - - def create - @issue_status = IssueStatus.new - @issue_status.safe_attributes = params[:issue_status] - if @issue_status.save - flash[:notice] = l(:notice_successful_create) - redirect_to issue_statuses_path - else - render :action => 'new' - end - end - - def edit - @issue_status = IssueStatus.find(params[:id]) - end - - def update - @issue_status = IssueStatus.find(params[:id]) - @issue_status.safe_attributes = params[:issue_status] - if @issue_status.save - respond_to do |format| - format.html { - flash[:notice] = l(:notice_successful_update) - redirect_to issue_statuses_path(:page => params[:page]) - } - format.js { head 200 } - end - else - respond_to do |format| - format.html { render :action => 'edit' } - format.js { head 422 } - end - end - end - - def destroy - IssueStatus.find(params[:id]).destroy - redirect_to issue_statuses_path - rescue => e - flash[:error] = l(:error_unable_delete_issue_status, ERB::Util.h(e.message)) - redirect_to issue_statuses_path - end - - def update_issue_done_ratio - if request.post? && IssueStatus.update_issue_done_ratios - flash[:notice] = l(:notice_issue_done_ratios_updated) - else - flash[:error] = l(:error_issue_done_ratios_not_updated) - end - redirect_to issue_statuses_path - end -end diff --git a/app/controllers/issues_controller.rb b/app/controllers/issues_controller.rb deleted file mode 100644 index 65caee6..0000000 --- a/app/controllers/issues_controller.rb +++ /dev/null @@ -1,626 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class IssuesController < ApplicationController - default_search_scope :issues - - before_action :find_issue, :only => [:show, :edit, :update, :issue_tab] - before_action :find_issues, :only => [:bulk_edit, :bulk_update, :destroy] - before_action :authorize, :except => [:index, :new, :create] - before_action :find_optional_project, :only => [:index, :new, :create] - before_action :build_new_issue_from_params, :only => [:new, :create] - accept_rss_auth :index, :show - accept_api_auth :index, :show, :create, :update, :destroy - - rescue_from Query::StatementInvalid, :with => :query_statement_invalid - - helper :journals - helper :projects - helper :custom_fields - helper :issue_relations - helper :watchers - helper :attachments - helper :queries - include QueriesHelper - helper :repositories - helper :timelog - - def index - use_session = !request.format.csv? - retrieve_query(IssueQuery, use_session) - - if @query.valid? - respond_to do |format| - format.html { - @issue_count = @query.issue_count - @issue_pages = Paginator.new @issue_count, per_page_option, params['page'] - @issues = @query.issues(:offset => @issue_pages.offset, :limit => @issue_pages.per_page) - render :layout => !request.xhr? - } - format.api { - @offset, @limit = api_offset_and_limit - @query.column_names = %w(author) - @issue_count = @query.issue_count - @issues = @query.issues(:offset => @offset, :limit => @limit) - Issue.load_visible_relations(@issues) if include_in_api_response?('relations') - } - format.atom { - @issues = @query.issues(:limit => Setting.feeds_limit.to_i) - render_feed(@issues, :title => "#{@project || Setting.app_title}: #{l(:label_issue_plural)}") - } - format.csv { - @issues = @query.issues(:limit => Setting.issues_export_limit.to_i) - send_data(query_to_csv(@issues, @query, params[:csv]), :type => 'text/csv; header=present', :filename => 'issues.csv') - } - format.pdf { - @issues = @query.issues(:limit => Setting.issues_export_limit.to_i) - send_file_headers! :type => 'application/pdf', :filename => 'issues.pdf' - } - end - else - respond_to do |format| - format.html { render :layout => !request.xhr? } - format.any(:atom, :csv, :pdf) { head 422 } - format.api { render_validation_errors(@query) } - end - end - rescue ActiveRecord::RecordNotFound - render_404 - end - - def show - @journals = @issue.visible_journals_with_index - @has_changesets = @issue.changesets.visible.preload(:repository, :user).exists? - @relations = @issue.relations.select {|r| r.other_issue(@issue) && r.other_issue(@issue).visible? } - - @journals.reverse! if User.current.wants_comments_in_reverse_order? - - if User.current.allowed_to?(:view_time_entries, @project) - Issue.load_visible_spent_hours([@issue]) - Issue.load_visible_total_spent_hours([@issue]) - end - - respond_to do |format| - format.html { - @allowed_statuses = @issue.new_statuses_allowed_to(User.current) - @priorities = IssuePriority.active - @time_entry = TimeEntry.new(:issue => @issue, :project => @issue.project) - @time_entries = @issue.time_entries.visible.preload(:activity, :user) - @relation = IssueRelation.new - retrieve_previous_and_next_issue_ids - render :template => 'issues/show' - } - format.api { - @changesets = @issue.changesets.visible.preload(:repository, :user).to_a - @changesets.reverse! if User.current.wants_comments_in_reverse_order? - } - format.atom { render :template => 'journals/index', :layout => false, :content_type => 'application/atom+xml' } - format.pdf { - send_file_headers! :type => 'application/pdf', :filename => "#{@project.identifier}-#{@issue.id}.pdf" - } - end - end - - def new - respond_to do |format| - format.html { render :action => 'new', :layout => !request.xhr? } - format.js - end - end - - def create - unless User.current.allowed_to?(:add_issues, @issue.project, :global => true) - raise ::Unauthorized - end - call_hook(:controller_issues_new_before_save, { :params => params, :issue => @issue }) - @issue.save_attachments(params[:attachments] || (params[:issue] && params[:issue][:uploads])) - if @issue.save - call_hook(:controller_issues_new_after_save, { :params => params, :issue => @issue}) - respond_to do |format| - format.html { - render_attachment_warning_if_needed(@issue) - flash[:notice] = l(:notice_issue_successful_create, :id => view_context.link_to("##{@issue.id}", issue_path(@issue), :title => @issue.subject)) - redirect_after_create - } - format.api { render :action => 'show', :status => :created, :location => issue_url(@issue) } - end - return - else - respond_to do |format| - format.html { - if @issue.project.nil? - render_error :status => 422 - else - render :action => 'new' - end - } - format.api { render_validation_errors(@issue) } - end - end - end - - def edit - return unless update_issue_from_params - - respond_to do |format| - format.html { } - format.js - end - end - - def update - return unless update_issue_from_params - @issue.save_attachments(params[:attachments] || (params[:issue] && params[:issue][:uploads])) - saved = false - begin - saved = save_issue_with_child_records - rescue ActiveRecord::StaleObjectError - @conflict = true - if params[:last_journal_id] - @conflict_journals = @issue.journals_after(params[:last_journal_id]).to_a - @conflict_journals.reject!(&:private_notes?) unless User.current.allowed_to?(:view_private_notes, @issue.project) - end - end - - if saved - render_attachment_warning_if_needed(@issue) - flash[:notice] = l(:notice_successful_update) unless @issue.current_journal.new_record? || params[:no_flash] - - respond_to do |format| - format.html { redirect_back_or_default issue_path(@issue, previous_and_next_issue_ids_params) } - format.api { render_api_ok } - end - else - respond_to do |format| - format.html { render :action => 'edit' } - format.api { render_validation_errors(@issue) } - end - end - end - - def issue_tab - return render_error :status => 422 unless request.xhr? - tab = params[:name] - - case tab - when 'time_entries' - @time_entries = @issue.time_entries.visible.preload(:activity, :user).to_a - render :partial => 'issues/tabs/time_entries', :locals => {:time_entries => @time_entries} - when 'changesets' - @changesets = @issue.changesets.visible.preload(:repository, :user).to_a - @changesets.reverse! if User.current.wants_comments_in_reverse_order? - render :partial => 'issues/tabs/changesets', :locals => {:changesets => @changesets} - end - end - - # Bulk edit/copy a set of issues - def bulk_edit - @issues.sort! - @copy = params[:copy].present? - @notes = params[:notes] - - if @copy - unless User.current.allowed_to?(:copy_issues, @projects) - raise ::Unauthorized - end - else - unless @issues.all?(&:attributes_editable?) - raise ::Unauthorized - end - end - - edited_issues = Issue.where(:id => @issues.map(&:id)).to_a - - @values_by_custom_field = {} - edited_issues.each do |issue| - issue.custom_field_values.each do |c| - if c.value_present? - @values_by_custom_field[c.custom_field] ||= [] - @values_by_custom_field[c.custom_field] << issue.id - end - end - end - - @allowed_projects = Issue.allowed_target_projects - if params[:issue] - @target_project = @allowed_projects.detect {|p| p.id.to_s == params[:issue][:project_id].to_s} - if @target_project - target_projects = [@target_project] - edited_issues.each {|issue| issue.project = @target_project} - end - end - target_projects ||= @projects - - @trackers = target_projects.map {|p| Issue.allowed_target_trackers(p) }.reduce(:&) - if params[:issue] - @target_tracker = @trackers.detect {|t| t.id.to_s == params[:issue][:tracker_id].to_s} - if @target_tracker - edited_issues.each {|issue| issue.tracker = @target_tracker} - end - end - - if @copy - # Copied issues will get their default statuses - @available_statuses = [] - else - @available_statuses = edited_issues.map(&:new_statuses_allowed_to).reduce(:&) - end - if params[:issue] - @target_status = @available_statuses.detect {|t| t.id.to_s == params[:issue][:status_id].to_s} - if @target_status - edited_issues.each {|issue| issue.status = @target_status} - end - end - - edited_issues.each do |issue| - issue.custom_field_values.each do |c| - if c.value_present? && @values_by_custom_field[c.custom_field] - @values_by_custom_field[c.custom_field].delete(issue.id) - end - end - end - @values_by_custom_field.delete_if {|k,v| v.blank?} - - @custom_fields = edited_issues.map{|i| i.editable_custom_fields}.reduce(:&).select {|field| field.format.bulk_edit_supported} - @assignables = target_projects.map(&:assignable_users).reduce(:&) - @versions = target_projects.map {|p| p.shared_versions.open}.reduce(:&) - @categories = target_projects.map {|p| p.issue_categories}.reduce(:&) - if @copy - @attachments_present = @issues.detect {|i| i.attachments.any?}.present? - @subtasks_present = @issues.detect {|i| !i.leaf?}.present? - @watchers_present = User.current.allowed_to?(:add_issue_watchers, @projects) && - Watcher.where(:watchable_type => 'Issue', - :watchable_id => @issues.map(&:id)).exists? - end - - @safe_attributes = edited_issues.map(&:safe_attribute_names).reduce(:&) - - @issue_params = params[:issue] || {} - @issue_params[:custom_field_values] ||= {} - end - - def bulk_update - @issues.sort! - @copy = params[:copy].present? - - attributes = parse_params_for_bulk_update(params[:issue]) - copy_subtasks = (params[:copy_subtasks] == '1') - copy_attachments = (params[:copy_attachments] == '1') - copy_watchers = (params[:copy_watchers] == '1') - - if @copy - unless User.current.allowed_to?(:copy_issues, @projects) - raise ::Unauthorized - end - target_projects = @projects - if attributes['project_id'].present? - target_projects = Project.where(:id => attributes['project_id']).to_a - end - unless User.current.allowed_to?(:add_issues, target_projects) - raise ::Unauthorized - end - unless User.current.allowed_to?(:add_issue_watchers, @projects) - copy_watchers = false - end - else - unless @issues.all?(&:attributes_editable?) - raise ::Unauthorized - end - end - - unsaved_issues = [] - saved_issues = [] - - if @copy && copy_subtasks - # Descendant issues will be copied with the parent task - # Don't copy them twice - @issues.reject! {|issue| @issues.detect {|other| issue.is_descendant_of?(other)}} - end - - @issues.each do |orig_issue| - orig_issue.reload - if @copy - issue = orig_issue.copy( - {}, - :attachments => copy_attachments, - :subtasks => copy_subtasks, - :watchers => copy_watchers, - :link => link_copy?(params[:link_copy]) - ) - else - issue = orig_issue - end - journal = issue.init_journal(User.current, params[:notes]) - issue.safe_attributes = attributes - call_hook(:controller_issues_bulk_edit_before_save, { :params => params, :issue => issue }) - if issue.save - saved_issues << issue - else - unsaved_issues << orig_issue - end - end - - if unsaved_issues.empty? - flash[:notice] = l(:notice_successful_update) unless saved_issues.empty? - if params[:follow] - if @issues.size == 1 && saved_issues.size == 1 - redirect_to issue_path(saved_issues.first) - elsif saved_issues.map(&:project).uniq.size == 1 - redirect_to project_issues_path(saved_issues.map(&:project).first) - end - else - redirect_back_or_default _project_issues_path(@project) - end - else - @saved_issues = @issues - @unsaved_issues = unsaved_issues - @issues = Issue.visible.where(:id => @unsaved_issues.map(&:id)).to_a - bulk_edit - render :action => 'bulk_edit' - end - end - - def destroy - raise Unauthorized unless @issues.all?(&:deletable?) - - # all issues and their descendants are about to be deleted - issues_and_descendants_ids = Issue.self_and_descendants(@issues).pluck(:id) - time_entries = TimeEntry.where(:issue_id => issues_and_descendants_ids) - @hours = time_entries.sum(:hours).to_f - - if @hours > 0 - case params[:todo] - when 'destroy' - # nothing to do - when 'nullify' - if Setting.timelog_required_fields.include?('issue_id') - flash.now[:error] = l(:field_issue) + " " + ::I18n.t('activerecord.errors.messages.blank') - return - else - time_entries.update_all(:issue_id => nil) - end - when 'reassign' - reassign_to = @project && @project.issues.find_by_id(params[:reassign_to_id]) - if reassign_to.nil? - flash.now[:error] = l(:error_issue_not_found_in_project) - return - elsif issues_and_descendants_ids.include?(reassign_to.id) - flash.now[:error] = l(:error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted) - return - else - time_entries.update_all(:issue_id => reassign_to.id, :project_id => reassign_to.project_id) - end - else - # display the destroy form if it's a user request - return unless api_request? - end - end - @issues.each do |issue| - begin - issue.reload.destroy - rescue ::ActiveRecord::RecordNotFound # raised by #reload if issue no longer exists - # nothing to do, issue was already deleted (eg. by a parent) - end - end - respond_to do |format| - format.html { redirect_back_or_default _project_issues_path(@project) } - format.api { render_api_ok } - end - end - - # Overrides Redmine::MenuManager::MenuController::ClassMethods for - # when the "New issue" tab is enabled - def current_menu_item - if Setting.new_item_menu_tab == '1' && [:new, :create].include?(action_name.to_sym) - :new_issue - else - super - end - end - - private - - def retrieve_previous_and_next_issue_ids - if params[:prev_issue_id].present? || params[:next_issue_id].present? - @prev_issue_id = params[:prev_issue_id].presence.try(:to_i) - @next_issue_id = params[:next_issue_id].presence.try(:to_i) - @issue_position = params[:issue_position].presence.try(:to_i) - @issue_count = params[:issue_count].presence.try(:to_i) - else - retrieve_query_from_session - if @query - @per_page = per_page_option - limit = 500 - issue_ids = @query.issue_ids(:limit => (limit + 1)) - if (idx = issue_ids.index(@issue.id)) && idx < limit - if issue_ids.size < 500 - @issue_position = idx + 1 - @issue_count = issue_ids.size - end - @prev_issue_id = issue_ids[idx - 1] if idx > 0 - @next_issue_id = issue_ids[idx + 1] if idx < (issue_ids.size - 1) - end - query_params = @query.as_params - if @issue_position - query_params = query_params.merge(:page => (@issue_position / per_page_option) + 1, :per_page => per_page_option) - end - @query_path = _project_issues_path(@query.project, query_params) - end - end - end - - def previous_and_next_issue_ids_params - { - :prev_issue_id => params[:prev_issue_id], - :next_issue_id => params[:next_issue_id], - :issue_position => params[:issue_position], - :issue_count => params[:issue_count] - }.reject {|k,v| k.blank?} - end - - # Used by #edit and #update to set some common instance variables - # from the params - def update_issue_from_params - @time_entry = TimeEntry.new(:issue => @issue, :project => @issue.project) - if params[:time_entry] - @time_entry.safe_attributes = params[:time_entry] - end - - @issue.init_journal(User.current) - - issue_attributes = params[:issue] - issue_attributes[:assigned_to_id] = User.current.id if issue_attributes && issue_attributes[:assigned_to_id] == 'me' - if issue_attributes && params[:conflict_resolution] - case params[:conflict_resolution] - when 'overwrite' - issue_attributes = issue_attributes.dup - issue_attributes.delete(:lock_version) - when 'add_notes' - issue_attributes = issue_attributes.slice(:notes, :private_notes) - when 'cancel' - redirect_to issue_path(@issue) - return false - end - end - @issue.safe_attributes = issue_attributes - @priorities = IssuePriority.active - @allowed_statuses = @issue.new_statuses_allowed_to(User.current) - true - end - - # Used by #new and #create to build a new issue from the params - # The new issue will be copied from an existing one if copy_from parameter is given - def build_new_issue_from_params - @issue = Issue.new - if params[:copy_from] - begin - @issue.init_journal(User.current) - @copy_from = Issue.visible.find(params[:copy_from]) - unless User.current.allowed_to?(:copy_issues, @copy_from.project) - raise ::Unauthorized - end - @link_copy = link_copy?(params[:link_copy]) || request.get? - @copy_attachments = params[:copy_attachments].present? || request.get? - @copy_subtasks = params[:copy_subtasks].present? || request.get? - @copy_watchers = User.current.allowed_to?(:add_issue_watchers, @project) - @issue.copy_from(@copy_from, :attachments => @copy_attachments, :subtasks => @copy_subtasks, :watchers => @copy_watchers, :link => @link_copy) - @issue.parent_issue_id = @copy_from.parent_id - rescue ActiveRecord::RecordNotFound - render_404 - return - end - end - @issue.project = @project - if request.get? - @issue.project ||= @issue.allowed_target_projects.first - end - @issue.author ||= User.current - @issue.start_date ||= User.current.today if Setting.default_issue_start_date_to_creation_date? - - attrs = (params[:issue] || {}).deep_dup - if action_name == 'new' && params[:was_default_status] == attrs[:status_id] - attrs.delete(:status_id) - end - if action_name == 'new' && params[:form_update_triggered_by] == 'issue_project_id' - # Discard submitted version when changing the project on the issue form - # so we can use the default version for the new project - attrs.delete(:fixed_version_id) - end - attrs[:assigned_to_id] = User.current.id if attrs[:assigned_to_id] == 'me' - @issue.safe_attributes = attrs - - if @issue.project - @issue.tracker ||= @issue.allowed_target_trackers.first - if @issue.tracker.nil? - if @issue.project.trackers.any? - # None of the project trackers is allowed to the user - render_error :message => l(:error_no_tracker_allowed_for_new_issue_in_project), :status => 403 - else - # Project has no trackers - render_error l(:error_no_tracker_in_project) - end - return false - end - if @issue.status.nil? - render_error l(:error_no_default_issue_status) - return false - end - elsif request.get? - render_error :message => l(:error_no_projects_with_tracker_allowed_for_new_issue), :status => 403 - return false - end - - @priorities = IssuePriority.active - @allowed_statuses = @issue.new_statuses_allowed_to(User.current) - end - - # Saves @issue and a time_entry from the parameters - def save_issue_with_child_records - Issue.transaction do - if params[:time_entry] && (params[:time_entry][:hours].present? || params[:time_entry][:comments].present?) && User.current.allowed_to?(:log_time, @issue.project) - time_entry = @time_entry || TimeEntry.new - time_entry.project = @issue.project - time_entry.issue = @issue - time_entry.author = User.current - time_entry.user = User.current - time_entry.spent_on = User.current.today - time_entry.safe_attributes = params[:time_entry] - @issue.time_entries << time_entry - end - - call_hook(:controller_issues_edit_before_save, { :params => params, :issue => @issue, :time_entry => time_entry, :journal => @issue.current_journal}) - if @issue.save - call_hook(:controller_issues_edit_after_save, { :params => params, :issue => @issue, :time_entry => time_entry, :journal => @issue.current_journal}) - else - raise ActiveRecord::Rollback - end - end - end - - # Returns true if the issue copy should be linked - # to the original issue - def link_copy?(param) - case Setting.link_copied_issue - when 'yes' - true - when 'no' - false - when 'ask' - param == '1' - end - end - - # Redirects user after a successful issue creation - def redirect_after_create - if params[:continue] - url_params = {} - url_params[:issue] = {:tracker_id => @issue.tracker, :parent_issue_id => @issue.parent_issue_id}.reject {|k,v| v.nil?} - url_params[:back_url] = params[:back_url].presence - - if params[:project_id] - redirect_to new_project_issue_path(@issue.project, url_params) - else - url_params[:issue].merge! :project_id => @issue.project_id - redirect_to new_issue_path(url_params) - end - else - redirect_back_or_default issue_path(@issue) - end - end -end diff --git a/app/controllers/journals_controller.rb b/app/controllers/journals_controller.rb deleted file mode 100644 index 7a477a0..0000000 --- a/app/controllers/journals_controller.rb +++ /dev/null @@ -1,110 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class JournalsController < ApplicationController - before_action :find_journal, :only => [:edit, :update, :diff] - before_action :find_issue, :only => [:new] - before_action :find_optional_project, :only => [:index] - before_action :authorize, :only => [:new, :edit, :update, :diff] - accept_rss_auth :index - menu_item :issues - - helper :issues - helper :custom_fields - helper :queries - include QueriesHelper - - def index - retrieve_query - if @query.valid? - @journals = @query.journals(:order => "#{Journal.table_name}.created_on DESC", - :limit => 25) - end - @title = (@project ? @project.name : Setting.app_title) + ": " + (@query.new_record? ? l(:label_changes_details) : @query.name) - render :layout => false, :content_type => 'application/atom+xml' - rescue ActiveRecord::RecordNotFound - render_404 - end - - def diff - @issue = @journal.issue - if params[:detail_id].present? - @detail = @journal.details.find_by_id(params[:detail_id]) - else - @detail = @journal.details.detect {|d| d.property == 'attr' && d.prop_key == 'description'} - end - unless @issue && @detail - render_404 - return false - end - if @detail.property == 'cf' - unless @detail.custom_field && @detail.custom_field.visible_by?(@issue.project, User.current) - raise ::Unauthorized - end - end - @diff = Redmine::Helpers::Diff.new(@detail.value, @detail.old_value) - end - - def new - @journal = Journal.visible.find(params[:journal_id]) if params[:journal_id] - if @journal - user = @journal.user - text = @journal.notes - @content = +"#{ll(Setting.default_language, :text_user_wrote_in, {:value => user, :link => "#note-#{params[:journal_indice]}"})}\n> " - else - user = @issue.author - text = @issue.description - @content = +"#{ll(Setting.default_language, :text_user_wrote, user)}\n> " - end - # Replaces pre blocks with [...] - text = text.to_s.strip.gsub(%r{
(.*?)
}m, '[...]') - @content << text.gsub(/(\r?\n|\r\n?)/, "\n> ") + "\n\n" - rescue ActiveRecord::RecordNotFound - render_404 - end - - def edit - (render_403; return false) unless @journal.editable_by?(User.current) - respond_to do |format| - # TODO: implement non-JS journal update - format.js - end - end - - def update - (render_403; return false) unless @journal.editable_by?(User.current) - @journal.safe_attributes = params[:journal] - @journal.save - @journal.destroy if @journal.details.empty? && @journal.notes.blank? - call_hook(:controller_journals_edit_post, { :journal => @journal, :params => params}) - respond_to do |format| - format.html { redirect_to issue_path(@journal.journalized) } - format.js - end - end - - private - - def find_journal - @journal = Journal.visible.find(params[:id]) - @project = @journal.journalized.project - rescue ActiveRecord::RecordNotFound - render_404 - end -end diff --git a/app/controllers/mail_handler_controller.rb b/app/controllers/mail_handler_controller.rb deleted file mode 100644 index 9b96c79..0000000 --- a/app/controllers/mail_handler_controller.rb +++ /dev/null @@ -1,48 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class MailHandlerController < ActionController::Base - include ActiveSupport::SecurityUtils - - before_action :check_credential - - # Displays the email submission form - def new - end - - # Submits an incoming email to MailHandler - def index - options = params.dup - email = options.delete(:email) - if MailHandler.safe_receive(email, options) - head :created - else - head :unprocessable_entity - end - end - - private - - def check_credential - User.current = nil - unless Setting.mail_handler_api_enabled? && secure_compare(params[:key].to_s, Setting.mail_handler_api_key.to_s) - render :plain => 'Access denied. Incoming emails WS is disabled or key is invalid.', :status => 403 - end - end -end diff --git a/app/controllers/members_controller.rb b/app/controllers/members_controller.rb deleted file mode 100644 index 119bf8e..0000000 --- a/app/controllers/members_controller.rb +++ /dev/null @@ -1,135 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class MembersController < ApplicationController - model_object Member - before_action :find_model_object, :except => [:index, :new, :create, :autocomplete] - before_action :find_project_from_association, :except => [:index, :new, :create, :autocomplete] - before_action :find_project_by_project_id, :only => [:index, :new, :create, :autocomplete] - before_action :authorize - accept_api_auth :index, :show, :create, :update, :destroy - - require_sudo_mode :create, :update, :destroy - - def index - scope = @project.memberships - @offset, @limit = api_offset_and_limit - @member_count = scope.count - @member_pages = Paginator.new @member_count, @limit, params['page'] - @offset ||= @member_pages.offset - @members = scope.order(:id).limit(@limit).offset(@offset).to_a - - respond_to do |format| - format.html { head 406 } - format.api - end - end - - def show - respond_to do |format| - format.html { head 406 } - format.api - end - end - - def new - @member = Member.new - end - - def create - members = [] - if params[:membership] - user_ids = Array.wrap(params[:membership][:user_id] || params[:membership][:user_ids]) - user_ids << nil if user_ids.empty? - user_ids.each do |user_id| - member = Member.new(:project => @project, :user_id => user_id) - member.set_editable_role_ids(params[:membership][:role_ids]) - members << member - end - @project.members << members - end - - respond_to do |format| - format.html { redirect_to_settings_in_projects } - format.js { - @members = members - @member = Member.new - } - format.api { - @member = members.first - if @member.valid? - render :action => 'show', :status => :created, :location => membership_url(@member) - else - render_validation_errors(@member) - end - } - end - end - - def edit - @roles = Role.givable.to_a - end - - def update - if params[:membership] - @member.set_editable_role_ids(params[:membership][:role_ids]) - end - saved = @member.save - respond_to do |format| - format.html { redirect_to_settings_in_projects } - format.js - format.api { - if saved - render_api_ok - else - render_validation_errors(@member) - end - } - end - end - - def destroy - if @member.deletable? - @member.destroy - end - respond_to do |format| - format.html { redirect_to_settings_in_projects } - format.js - format.api { - if @member.destroyed? - render_api_ok - else - head :unprocessable_entity - end - } - end - end - - def autocomplete - respond_to do |format| - format.js - end - end - - private - - def redirect_to_settings_in_projects - redirect_to settings_project_path(@project, :tab => 'members') - end -end diff --git a/app/controllers/messages_controller.rb b/app/controllers/messages_controller.rb deleted file mode 100644 index bbc6a35..0000000 --- a/app/controllers/messages_controller.rb +++ /dev/null @@ -1,152 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class MessagesController < ApplicationController - menu_item :boards - default_search_scope :messages - before_action :find_board, :only => [:new, :preview] - before_action :find_attachments, :only => [:preview] - before_action :find_message, :except => [:new, :preview] - before_action :authorize, :except => [:preview, :edit, :destroy] - - helper :boards - helper :watchers - helper :attachments - include AttachmentsHelper - - REPLIES_PER_PAGE = 25 unless const_defined?(:REPLIES_PER_PAGE) - - # Show a topic and its replies - def show - page = params[:page] - # Find the page of the requested reply - if params[:r] && page.nil? - offset = @topic.children.where("#{Message.table_name}.id < ?", params[:r].to_i).count - page = 1 + offset / REPLIES_PER_PAGE - end - - @reply_count = @topic.children.count - @reply_pages = Paginator.new @reply_count, REPLIES_PER_PAGE, page - @replies = @topic.children. - includes(:author, :attachments, {:board => :project}). - reorder("#{Message.table_name}.created_on ASC, #{Message.table_name}.id ASC"). - limit(@reply_pages.per_page). - offset(@reply_pages.offset). - to_a - - @reply = Message.new(:subject => "RE: #{@message.subject}") - render :action => "show", :layout => false if request.xhr? - end - - # Create a new topic - def new - @message = Message.new - @message.author = User.current - @message.board = @board - @message.safe_attributes = params[:message] - if request.post? - @message.save_attachments(params[:attachments]) - if @message.save - call_hook(:controller_messages_new_after_save, { :params => params, :message => @message}) - render_attachment_warning_if_needed(@message) - flash[:notice] = l(:notice_successful_create) - redirect_to board_message_path(@board, @message) - end - end - end - - # Reply to a topic - def reply - @reply = Message.new - @reply.author = User.current - @reply.board = @board - @reply.safe_attributes = params[:reply] - @topic.children << @reply - if !@reply.new_record? - call_hook(:controller_messages_reply_after_save, { :params => params, :message => @reply}) - attachments = Attachment.attach_files(@reply, params[:attachments]) - render_attachment_warning_if_needed(@reply) - end - flash[:notice] = l(:notice_successful_update) - redirect_to board_message_path(@board, @topic, :r => @reply) - end - - # Edit a message - def edit - (render_403; return false) unless @message.editable_by?(User.current) - @message.safe_attributes = params[:message] - if request.post? && @message.save - attachments = Attachment.attach_files(@message, params[:attachments]) - render_attachment_warning_if_needed(@message) - flash[:notice] = l(:notice_successful_update) - @message.reload - redirect_to board_message_path(@message.board, @message.root, :r => (@message.parent_id && @message.id)) - end - end - - # Delete a messages - def destroy - (render_403; return false) unless @message.destroyable_by?(User.current) - r = @message.to_param - @message.destroy - flash[:notice] = l(:notice_successful_delete) - if @message.parent - redirect_to board_message_path(@board, @message.parent, :r => r) - else - redirect_to project_board_path(@project, @board) - end - end - - def quote - @subject = @message.subject - @subject = "RE: #{@subject}" unless @subject.starts_with?('RE:') - - if @message.root == @message - @content = +"#{ll(Setting.default_language, :text_user_wrote, @message.author)}\n> " - else - @content = +"#{ll(Setting.default_language, :text_user_wrote_in, {:value => @message.author, :link => "message##{@message.id}"})}\n> " - end - @content << @message.content.to_s.strip.gsub(%r{
(.*?)
}m, '[...]').gsub(/(\r?\n|\r\n?)/, "\n> ") + "\n\n" - end - - def preview - message = @board.messages.find_by_id(params[:id]) - @text = params[:text] ? params[:text] : nil - @previewed = message - render :partial => 'common/preview' - end - - private - - def find_message - return unless find_board - @message = @board.messages.includes(:parent).find(params[:id]) - @topic = @message.root - rescue ActiveRecord::RecordNotFound - render_404 - end - - def find_board - @board = Board.includes(:project).find(params[:board_id]) - @project = @board.project - rescue ActiveRecord::RecordNotFound - render_404 - nil - end -end diff --git a/app/controllers/my_controller.rb b/app/controllers/my_controller.rb deleted file mode 100644 index 606fd5c..0000000 --- a/app/controllers/my_controller.rb +++ /dev/null @@ -1,202 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class MyController < ApplicationController - self.main_menu = false - before_action :require_login - # let user change user's password when user has to - skip_before_action :check_password_change, :only => :password - - accept_api_auth :account - - require_sudo_mode :account, only: :put - require_sudo_mode :reset_rss_key, :reset_api_key, :show_api_key, :destroy - - helper :issues - helper :users - helper :custom_fields - helper :queries - helper :activities - helper :calendars - - def index - page - render :action => 'page' - end - - # Show user's page - def page - @user = User.current - @groups = @user.pref.my_page_groups - @blocks = @user.pref.my_page_layout - end - - # Edit user's account - def account - @user = User.current - @pref = @user.pref - if request.put? - @user.safe_attributes = params[:user] - @user.pref.safe_attributes = params[:pref] - if @user.save - @user.pref.save - set_language_if_valid @user.language - respond_to do |format| - format.html { - flash[:notice] = l(:notice_account_updated) - redirect_to my_account_path - } - format.api { render_api_ok } - end - return - else - respond_to do |format| - format.html { render :action => :account } - format.api { render_validation_errors(@user) } - end - end - end - end - - # Destroys user's account - def destroy - @user = User.current - unless @user.own_account_deletable? - redirect_to my_account_path - return - end - - if request.post? && params[:confirm] - @user.destroy - if @user.destroyed? - logout_user - flash[:notice] = l(:notice_account_deleted) - end - redirect_to home_path - end - end - - # Manage user's password - def password - @user = User.current - unless @user.change_password_allowed? - flash[:error] = l(:notice_can_t_change_password) - redirect_to my_account_path - return - end - if request.post? - if !@user.check_password?(params[:password]) - flash.now[:error] = l(:notice_account_wrong_password) - elsif params[:password] == params[:new_password] - flash.now[:error] = l(:notice_new_password_must_be_different) - else - @user.password, @user.password_confirmation = params[:new_password], params[:new_password_confirmation] - @user.must_change_passwd = false - if @user.save - # The session token was destroyed by the password change, generate a new one - session[:tk] = @user.generate_session_token - Mailer.deliver_password_updated(@user, User.current) - flash[:notice] = l(:notice_account_password_updated) - redirect_to my_account_path - end - end - end - end - - # Create a new feeds key - def reset_rss_key - if request.post? - if User.current.rss_token - User.current.rss_token.destroy - User.current.reload - end - User.current.rss_key - flash[:notice] = l(:notice_feeds_access_key_reseted) - end - redirect_to my_account_path - end - - def show_api_key - @user = User.current - end - - # Create a new API key - def reset_api_key - if request.post? - if User.current.api_token - User.current.api_token.destroy - User.current.reload - end - User.current.api_key - flash[:notice] = l(:notice_api_access_key_reseted) - end - redirect_to my_account_path - end - - def update_page - @user = User.current - block_settings = params[:settings] || {} - - block_settings.each do |block, settings| - @user.pref.update_block_settings(block, settings.to_unsafe_hash) - end - @user.pref.save - @updated_blocks = block_settings.keys - end - - # Add a block to user's page - # The block is added on top of the page - # params[:block] : id of the block to add - def add_block - @user = User.current - @block = params[:block] - if @user.pref.add_block @block - @user.pref.save - respond_to do |format| - format.html { redirect_to my_page_path } - format.js - end - else - render_error :status => 422 - end - end - - # Remove a block to user's page - # params[:block] : id of the block to remove - def remove_block - @user = User.current - @block = params[:block] - @user.pref.remove_block @block - @user.pref.save - respond_to do |format| - format.html { redirect_to my_page_path } - format.js - end - end - - # Change blocks order on user's page - # params[:group] : group to order (top, left or right) - # params[:blocks] : array of block ids of the group - def order_blocks - @user = User.current - @user.pref.order_blocks params[:group], params[:blocks] - @user.pref.save - head 200 - end -end diff --git a/app/controllers/news_controller.rb b/app/controllers/news_controller.rb deleted file mode 100644 index 5d63f44..0000000 --- a/app/controllers/news_controller.rb +++ /dev/null @@ -1,122 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class NewsController < ApplicationController - default_search_scope :news - model_object News - before_action :find_model_object, :except => [:new, :create, :index] - before_action :find_project_from_association, :except => [:new, :create, :index] - before_action :find_project_by_project_id, :only => [:new, :create] - before_action :authorize, :except => [:index] - before_action :find_optional_project, :only => :index - accept_rss_auth :index - accept_api_auth :index, :show, :create, :update, :destroy - - helper :watchers - helper :attachments - - def index - case params[:format] - when 'xml', 'json' - @offset, @limit = api_offset_and_limit - else - @limit = 10 - end - - scope = @project ? @project.news.visible : News.visible - - @news_count = scope.count - @news_pages = Paginator.new @news_count, @limit, params['page'] - @offset ||= @news_pages.offset - @newss = scope.includes([:author, :project]). - order("#{News.table_name}.created_on DESC"). - limit(@limit). - offset(@offset). - to_a - respond_to do |format| - format.html { - @news = News.new # for adding news inline - render :layout => false if request.xhr? - } - format.api - format.atom { render_feed(@newss, :title => (@project ? @project.name : Setting.app_title) + ": #{l(:label_news_plural)}") } - end - end - - def show - @comments = @news.comments.to_a - @comments.reverse! if User.current.wants_comments_in_reverse_order? - end - - def new - @news = News.new(:project => @project, :author => User.current) - end - - def create - @news = News.new(:project => @project, :author => User.current) - @news.safe_attributes = params[:news] - @news.save_attachments(params[:attachments] || (params[:news] && params[:news][:uploads])) - if @news.save - respond_to do |format| - format.html { - render_attachment_warning_if_needed(@news) - flash[:notice] = l(:notice_successful_create) - redirect_to project_news_index_path(@project) - } - format.api { render_api_ok } - end - else - respond_to do |format| - format.html { render :action => 'new' } - format.api { render_validation_errors(@news) } - end - end - end - - def edit - end - - def update - @news.safe_attributes = params[:news] - @news.save_attachments(params[:attachments] || (params[:news] && params[:news][:uploads])) - if @news.save - respond_to do |format| - format.html { - render_attachment_warning_if_needed(@news) - flash[:notice] = l(:notice_successful_update) - redirect_to news_path(@news) - } - format.api { render_api_ok } - end - else - respond_to do |format| - format.html { render :action => 'edit' } - format.api { render_validation_errors(@news) } - end - end - end - - def destroy - @news.destroy - respond_to do |format| - format.html { redirect_to project_news_index_path(@project) } - format.api { render_api_ok } - end - end -end diff --git a/app/controllers/previews_controller.rb b/app/controllers/previews_controller.rb deleted file mode 100644 index f1ef5fa..0000000 --- a/app/controllers/previews_controller.rb +++ /dev/null @@ -1,55 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class PreviewsController < ApplicationController - before_action :find_project, :except => :text - before_action :find_attachments - - def issue - @issue = Issue.visible.find_by_id(params[:issue_id]) unless params[:issue_id].blank? - if @issue - @previewed = @issue - end - @text = params[:text] ? params[:text] : nil - render :partial => 'common/preview' - end - - def news - if params[:id].present? && news = News.visible.find_by_id(params[:id]) - @previewed = news - end - @text = params[:text] ? params[:text] : nil - render :partial => 'common/preview' - end - - def text - @text = params[:text] ? params[:text] : nil - render :partial => 'common/preview' - end - - private - - def find_project - project_id = (params[:issue] && params[:issue][:project_id]) || params[:project_id] - @project = Project.find(project_id) - rescue ActiveRecord::RecordNotFound - render_404 - end - -end diff --git a/app/controllers/principal_memberships_controller.rb b/app/controllers/principal_memberships_controller.rb deleted file mode 100644 index fdbd8be..0000000 --- a/app/controllers/principal_memberships_controller.rb +++ /dev/null @@ -1,89 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class PrincipalMembershipsController < ApplicationController - layout 'admin' - self.main_menu = false - - helper :members - - before_action :require_admin - before_action :find_principal, :only => [:new, :create] - before_action :find_membership, :only => [:edit, :update, :destroy] - - def new - @projects = Project.active.all - @roles = Role.find_all_givable - respond_to do |format| - format.html - format.js - end - end - - def create - @members = Member.create_principal_memberships(@principal, params[:membership]) - respond_to do |format| - format.html { redirect_to_principal @principal } - format.js - end - end - - def edit - @roles = Role.givable.to_a - end - - def update - @membership.attributes = params.require(:membership).permit(:role_ids => []) - @membership.save - respond_to do |format| - format.html { redirect_to_principal @principal } - format.js - end - end - - def destroy - if @membership.deletable? - @membership.destroy - end - respond_to do |format| - format.html { redirect_to_principal @principal } - format.js - end - end - - private - - def find_principal - principal_id = params[:user_id] || params[:group_id] - @principal = Principal.find(principal_id) - rescue ActiveRecord::RecordNotFound - render_404 - end - - def find_membership - @membership = Member.find(params[:id]) - @principal = @membership.principal - rescue ActiveRecord::RecordNotFound - render_404 - end - - def redirect_to_principal(principal) - redirect_to edit_polymorphic_path(principal, :tab => 'memberships') - end -end diff --git a/app/controllers/project_enumerations_controller.rb b/app/controllers/project_enumerations_controller.rb deleted file mode 100644 index 8b2768e..0000000 --- a/app/controllers/project_enumerations_controller.rb +++ /dev/null @@ -1,47 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class ProjectEnumerationsController < ApplicationController - before_action :find_project_by_project_id - before_action :authorize - - def update - if @project.update_or_create_time_entry_activities(update_params) - flash[:notice] = l(:notice_successful_update) - end - - redirect_to settings_project_path(@project, :tab => 'activities') - end - - def destroy - @project.time_entry_activities.each do |time_entry_activity| - time_entry_activity.destroy(time_entry_activity.parent) - end - flash[:notice] = l(:notice_successful_update) - redirect_to settings_project_path(@project, :tab => 'activities') - end - - private - - def update_params - params. - permit(:enumerations => [:parent_id, :active, {:custom_field_values => {}}]). - require(:enumerations) - end -end diff --git a/app/controllers/projects_controller.rb b/app/controllers/projects_controller.rb deleted file mode 100644 index c5c98d6..0000000 --- a/app/controllers/projects_controller.rb +++ /dev/null @@ -1,284 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class ProjectsController < ApplicationController - menu_item :overview - menu_item :settings, :only => :settings - menu_item :projects, :only => [:index, :new, :copy, :create] - - before_action :find_project, :except => [ :index, :autocomplete, :list, :new, :create, :copy ] - before_action :authorize, :except => [ :index, :autocomplete, :list, :new, :create, :copy, :archive, :unarchive, :destroy] - before_action :authorize_global, :only => [:new, :create] - before_action :require_admin, :only => [ :copy, :archive, :unarchive, :destroy ] - accept_rss_auth :index - accept_api_auth :index, :show, :create, :update, :destroy - require_sudo_mode :destroy - - helper :custom_fields - helper :issues - helper :queries - include QueriesHelper - helper :projects_queries - include ProjectsQueriesHelper - helper :repositories - helper :members - helper :trackers - - # Lists visible projects - def index - # try to redirect to the requested menu item - if params[:jump] && redirect_to_menu_item(params[:jump]) - return - end - - retrieve_project_query - scope = project_scope - - respond_to do |format| - format.html { - # TODO: see what to do with the board view and pagination - if @query.display_type == 'board' - @entries = scope.to_a - else - @entry_count = scope.count - @entry_pages = Paginator.new @entry_count, per_page_option, params['page'] - @entries = scope.offset(@entry_pages.offset).limit(@entry_pages.per_page).to_a - end - } - format.api { - @offset, @limit = api_offset_and_limit - @project_count = scope.count - @projects = scope.offset(@offset).limit(@limit).to_a - } - format.atom { - projects = scope.reorder(:created_on => :desc).limit(Setting.feeds_limit.to_i).to_a - render_feed(projects, :title => "#{Setting.app_title}: #{l(:label_project_latest)}") - } - format.csv { - # Export all entries - @entries = scope.to_a - send_data(query_to_csv(@entries, @query, params), :type => 'text/csv; header=present', :filename => 'projects.csv') - } - end - end - - def autocomplete - respond_to do |format| - format.js { - if params[:q].present? - @projects = Project.visible.like(params[:q]).to_a - else - @projects = User.current.projects.to_a - end - } - end - end - - def new - @issue_custom_fields = IssueCustomField.sorted.to_a - @trackers = Tracker.sorted.to_a - @project = Project.new - @project.safe_attributes = params[:project] - end - - def create - @issue_custom_fields = IssueCustomField.sorted.to_a - @trackers = Tracker.sorted.to_a - @project = Project.new - @project.safe_attributes = params[:project] - - if @project.save - unless User.current.admin? - @project.add_default_member(User.current) - end - respond_to do |format| - format.html { - flash[:notice] = l(:notice_successful_create) - if params[:continue] - attrs = {:parent_id => @project.parent_id}.reject {|k,v| v.nil?} - redirect_to new_project_path(attrs) - else - redirect_to settings_project_path(@project) - end - } - format.api { render :action => 'show', :status => :created, :location => url_for(:controller => 'projects', :action => 'show', :id => @project.id) } - end - else - respond_to do |format| - format.html { render :action => 'new' } - format.api { render_validation_errors(@project) } - end - end - end - - def copy - @issue_custom_fields = IssueCustomField.sorted.to_a - @trackers = Tracker.sorted.to_a - @source_project = Project.find(params[:id]) - if request.get? - @project = Project.copy_from(@source_project) - @project.identifier = Project.next_identifier if Setting.sequential_project_identifiers? - else - Mailer.with_deliveries(params[:notifications] == '1') do - @project = Project.new - @project.safe_attributes = params[:project] - if @project.copy(@source_project, :only => params[:only]) - flash[:notice] = l(:notice_successful_create) - redirect_to settings_project_path(@project) - elsif !@project.new_record? - # Project was created - # But some objects were not copied due to validation failures - # (eg. issues from disabled trackers) - # TODO: inform about that - redirect_to settings_project_path(@project) - end - end - end - rescue ActiveRecord::RecordNotFound - # source_project not found - render_404 - end - - # Show @project - def show - # try to redirect to the requested menu item - if params[:jump] && redirect_to_project_menu_item(@project, params[:jump]) - return - end - - @users_by_role = @project.users_by_role - @subprojects = @project.children.visible.to_a - @news = @project.news.limit(5).includes(:author, :project).reorder("#{News.table_name}.created_on DESC").to_a - @trackers = @project.rolled_up_trackers.visible - - cond = @project.project_condition(Setting.display_subprojects_issues?) - - @open_issues_by_tracker = Issue.visible.open.where(cond).group(:tracker).count - @total_issues_by_tracker = Issue.visible.where(cond).group(:tracker).count - - if User.current.allowed_to_view_all_time_entries?(@project) - @total_hours = TimeEntry.visible.where(cond).sum(:hours).to_f - @total_estimated_hours = Issue.visible.where(cond).sum(:estimated_hours).to_f - end - - @key = User.current.rss_key - - respond_to do |format| - format.html - format.api - end - end - - def settings - @issue_custom_fields = IssueCustomField.sorted.to_a - @issue_category ||= IssueCategory.new - @member ||= @project.members.new - @trackers = Tracker.sorted.to_a - - @version_status = params[:version_status] || 'open' - @version_name = params[:version_name] - @versions = @project.shared_versions.status(@version_status).like(@version_name).sorted - end - - def edit - end - - def update - @project.safe_attributes = params[:project] - if @project.save - respond_to do |format| - format.html { - flash[:notice] = l(:notice_successful_update) - redirect_to settings_project_path(@project, params[:tab]) - } - format.api { render_api_ok } - end - else - respond_to do |format| - format.html { - settings - render :action => 'settings' - } - format.api { render_validation_errors(@project) } - end - end - end - - def archive - unless @project.archive - flash[:error] = l(:error_can_not_archive_project) - end - redirect_to_referer_or admin_projects_path(:status => params[:status]) - end - - def unarchive - unless @project.active? - @project.unarchive - end - redirect_to_referer_or admin_projects_path(:status => params[:status]) - end - - def bookmark - jump_box = Redmine::ProjectJumpBox.new User.current - if request.delete? - jump_box.delete_project_bookmark @project - elsif request.post? - jump_box.bookmark_project @project - end - respond_to do |format| - format.js - format.html { redirect_to project_path(@project) } - end - end - - def close - @project.close - redirect_to project_path(@project) - end - - def reopen - @project.reopen - redirect_to project_path(@project) - end - - # Delete @project - def destroy - @project_to_destroy = @project - if api_request? || params[:confirm] - @project_to_destroy.destroy - respond_to do |format| - format.html { redirect_to admin_projects_path } - format.api { render_api_ok } - end - end - # hide project in layout - @project = nil - end - - private - - # Returns the ProjectEntry scope for index - def project_scope(options={}) - @query.results_scope(options) - end - - def retrieve_project_query - retrieve_query(ProjectQuery, false, :defaults => @default_columns_names) - end -end diff --git a/app/controllers/queries_controller.rb b/app/controllers/queries_controller.rb deleted file mode 100644 index 56283dc..0000000 --- a/app/controllers/queries_controller.rb +++ /dev/null @@ -1,168 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class QueriesController < ApplicationController - menu_item :issues - before_action :find_query, :only => [:edit, :update, :destroy] - before_action :find_optional_project, :only => [:new, :create] - - accept_api_auth :index - - include QueriesHelper - - def index - case params[:format] - when 'xml', 'json' - @offset, @limit = api_offset_and_limit - else - @limit = per_page_option - end - scope = query_class.visible - @query_count = scope.count - @query_pages = Paginator.new @query_count, @limit, params['page'] - @queries = scope. - order("#{Query.table_name}.name"). - limit(@limit). - offset(@offset). - to_a - respond_to do |format| - format.html {render_error :status => 406} - format.api - end - end - - def new - @query = query_class.new - @query.user = User.current - @query.project = @project - @query.build_from_params(params) - end - - def create - @query = query_class.new - @query.user = User.current - @query.project = @project - update_query_from_params - - if @query.save - flash[:notice] = l(:notice_successful_create) - redirect_to_items(:query_id => @query) - else - render :action => 'new', :layout => !request.xhr? - end - end - - def edit - end - - def update - update_query_from_params - - if @query.save - flash[:notice] = l(:notice_successful_update) - redirect_to_items(:query_id => @query) - else - render :action => 'edit' - end - end - - def destroy - @query.destroy - redirect_to_items(:set_filter => 1) - end - - # Returns the values for a query filter - def filter - q = query_class.new - if params[:project_id].present? - q.project = Project.find(params[:project_id]) - end - - unless User.current.allowed_to?(q.class.view_permission, q.project, :global => true) - raise Unauthorized - end - - filter = q.available_filters[params[:name].to_s] - values = filter ? filter.values : [] - - render :json => values - rescue ActiveRecord::RecordNotFound - render_404 - end - - def current_menu_item - @query ? @query.queried_class.to_s.underscore.pluralize.to_sym : nil - end - - private - - def find_query - @query = Query.find(params[:id]) - @project = @query.project - render_403 unless @query.editable_by?(User.current) - rescue ActiveRecord::RecordNotFound - render_404 - end - - def update_query_from_params - @query.project = params[:query_is_for_all] ? nil : @project - @query.build_from_params(params) - @query.column_names = nil if params[:default_columns] - @query.sort_criteria = (params[:query] && params[:query][:sort_criteria]) || @query.sort_criteria - @query.name = params[:query] && params[:query][:name] - if User.current.allowed_to?(:manage_public_queries, @query.project) || User.current.admin? - @query.visibility = (params[:query] && params[:query][:visibility]) || Query::VISIBILITY_PRIVATE - @query.role_ids = params[:query] && params[:query][:role_ids] - else - @query.visibility = Query::VISIBILITY_PRIVATE - end - @query - end - - def redirect_to_items(options) - method = "redirect_to_#{@query.class.name.underscore}" - send method, options - end - - def redirect_to_issue_query(options) - if params[:gantt] - if @project - redirect_to project_gantt_path(@project, options) - else - redirect_to issues_gantt_path(options) - end - else - redirect_to _project_issues_path(@project, options) - end - end - - def redirect_to_time_entry_query(options) - redirect_to _time_entries_path(@project, nil, options) - end - - def redirect_to_project_query(options) - redirect_to projects_path(options) - end - - # Returns the Query subclass, IssueQuery by default - # for compatibility with previous behaviour - def query_class - Query.get_subclass(params[:type] || 'IssueQuery') - end -end diff --git a/app/controllers/reports_controller.rb b/app/controllers/reports_controller.rb deleted file mode 100644 index 6918cb3..0000000 --- a/app/controllers/reports_controller.rb +++ /dev/null @@ -1,92 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class ReportsController < ApplicationController - menu_item :issues - before_action :find_project, :authorize, :find_issue_statuses - - def issue_report - @trackers = @project.rolled_up_trackers(false).visible - @versions = @project.shared_versions.sorted - @priorities = IssuePriority.all.reverse - @categories = @project.issue_categories - @assignees = (Setting.issue_group_assignment? ? @project.principals : @project.users).sorted - @authors = @project.users.sorted - @subprojects = @project.descendants.visible - with_subprojects = Setting.display_subprojects_issues? - @issues_by_tracker = Issue.by_tracker(@project, with_subprojects) - @issues_by_version = Issue.by_version(@project, with_subprojects) - @issues_by_priority = Issue.by_priority(@project, with_subprojects) - @issues_by_category = Issue.by_category(@project, with_subprojects) - @issues_by_assigned_to = Issue.by_assigned_to(@project, with_subprojects) - @issues_by_author = Issue.by_author(@project, with_subprojects) - @issues_by_subproject = Issue.by_subproject(@project) || [] - - render :template => "reports/issue_report" - end - - def issue_report_details - with_subprojects = Setting.display_subprojects_issues? - case params[:detail] - when "tracker" - @field = "tracker_id" - @rows = @project.rolled_up_trackers(false).visible - @data = Issue.by_tracker(@project, with_subprojects) - @report_title = l(:field_tracker) - when "version" - @field = "fixed_version_id" - @rows = @project.shared_versions.sorted - @data = Issue.by_version(@project, with_subprojects) - @report_title = l(:field_version) - when "priority" - @field = "priority_id" - @rows = IssuePriority.all.reverse - @data = Issue.by_priority(@project, with_subprojects) - @report_title = l(:field_priority) - when "category" - @field = "category_id" - @rows = @project.issue_categories - @data = Issue.by_category(@project, with_subprojects) - @report_title = l(:field_category) - when "assigned_to" - @field = "assigned_to_id" - @rows = (Setting.issue_group_assignment? ? @project.principals : @project.users).sorted - @data = Issue.by_assigned_to(@project, with_subprojects) - @report_title = l(:field_assigned_to) - when "author" - @field = "author_id" - @rows = @project.users.sorted - @data = Issue.by_author(@project, with_subprojects) - @report_title = l(:field_author) - when "subproject" - @field = "project_id" - @rows = @project.descendants.visible - @data = Issue.by_subproject(@project) || [] - @report_title = l(:field_subproject) - else - render_404 - end - end - - private - - def find_issue_statuses - @statuses = @project.rolled_up_statuses.sorted.to_a - end -end diff --git a/app/controllers/repositories_controller.rb b/app/controllers/repositories_controller.rb deleted file mode 100644 index 69c3858..0000000 --- a/app/controllers/repositories_controller.rb +++ /dev/null @@ -1,418 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -require 'digest/sha1' -require 'redmine/scm/adapters' - -class ChangesetNotFound < StandardError; end -class InvalidRevisionParam < StandardError; end - -class RepositoriesController < ApplicationController - menu_item :repository - menu_item :settings, :only => [:new, :create, :edit, :update, :destroy, :committers] - default_search_scope :changesets - - before_action :find_project_by_project_id, :only => [:new, :create] - before_action :build_new_repository_from_params, :only => [:new, :create] - before_action :find_repository, :only => [:edit, :update, :destroy, :committers] - before_action :find_project_repository, :except => [:new, :create, :edit, :update, :destroy, :committers] - before_action :find_changeset, :only => [:revision, :add_related_issue, :remove_related_issue] - before_action :authorize - accept_rss_auth :revisions - - rescue_from Redmine::Scm::Adapters::CommandFailed, :with => :show_error_command_failed - - def new - @repository.is_default = @project.repository.nil? - end - - def create - if @repository.save - redirect_to settings_project_path(@project, :tab => 'repositories') - else - render :action => 'new' - end - end - - def edit - end - - def update - @repository.safe_attributes = params[:repository] - if @repository.save - redirect_to settings_project_path(@project, :tab => 'repositories') - else - render :action => 'edit' - end - end - - def committers - @committers = @repository.committers - @users = @project.users.to_a - additional_user_ids = @committers.collect(&:last).collect(&:to_i) - @users.collect(&:id) - @users += User.where(:id => additional_user_ids).to_a unless additional_user_ids.empty? - @users.compact! - @users.sort! - if request.post? && params[:committers].present? - # Build a hash with repository usernames as keys and corresponding user ids as values - @repository.committer_ids = params[:committers].values.inject({}) {|h, c| h[c.first] = c.last; h} - flash[:notice] = l(:notice_successful_update) - redirect_to settings_project_path(@project, :tab => 'repositories') - end - end - - def destroy - @repository.destroy if request.delete? - redirect_to settings_project_path(@project, :tab => 'repositories') - end - - def show - @repository.fetch_changesets if @project.active? && Setting.autofetch_changesets? && @path.empty? - - @entries = @repository.entries(@path, @rev) - @changeset = @repository.find_changeset_by_name(@rev) - if request.xhr? - @entries ? render(:partial => 'dir_list_content') : head(200) - else - (show_error_not_found; return) unless @entries - @changesets = @repository.latest_changesets(@path, @rev) - @properties = @repository.properties(@path, @rev) - @repositories = @project.repositories - render :action => 'show' - end - end - - alias_method :browse, :show - - def changes - @entry = @repository.entry(@path, @rev) - (show_error_not_found; return) unless @entry - @changesets = @repository.latest_changesets(@path, @rev, Setting.repository_log_display_limit.to_i) - @properties = @repository.properties(@path, @rev) - @changeset = @repository.find_changeset_by_name(@rev) - end - - def revisions - @changeset_count = @repository.changesets.count - @changeset_pages = Paginator.new @changeset_count, - per_page_option, - params['page'] - @changesets = @repository.changesets. - limit(@changeset_pages.per_page). - offset(@changeset_pages.offset). - includes(:user, :repository, :parents). - to_a - - respond_to do |format| - format.html { render :layout => false if request.xhr? } - format.atom { render_feed(@changesets, :title => "#{@project.name}: #{l(:label_revision_plural)}") } - end - end - - def raw - entry_and_raw(true) - end - - def entry - entry_and_raw(false) - end - - def entry_and_raw(is_raw) - @entry = @repository.entry(@path, @rev) - (show_error_not_found; return) unless @entry - - # If the entry is a dir, show the browser - (show; return) if @entry.is_dir? - - if is_raw - # Force the download - send_opt = { :filename => filename_for_content_disposition(@path.split('/').last) } - send_type = Redmine::MimeType.of(@path) - send_opt[:type] = send_type.to_s if send_type - send_opt[:disposition] = disposition(@path) - send_data @repository.cat(@path, @rev), send_opt - else - # set up pagination from entry to entry - parent_path = @path.split('/')[0...-1].join('/') - @entries = @repository.entries(parent_path, @rev).reject(&:is_dir?) - if index = @entries.index{|e| e.name == @entry.name} - @paginator = Redmine::Pagination::Paginator.new(@entries.size, 1, index+1) - end - - if !@entry.size || @entry.size <= Setting.file_max_size_displayed.to_i.kilobyte - content = @repository.cat(@path, @rev) - (show_error_not_found; return) unless content - - if content.size <= Setting.file_max_size_displayed.to_i.kilobyte && - is_entry_text_data?(content, @path) - # TODO: UTF-16 - # Prevent empty lines when displaying a file with Windows style eol - # Is this needed? AttachmentsController simply reads file. - @content = content.gsub("\r\n", "\n") - end - end - @changeset = @repository.find_changeset_by_name(@rev) - end - end - private :entry_and_raw - - def is_entry_text_data?(ent, path) - # UTF-16 contains "\x00". - # It is very strict that file contains less than 30% of ascii symbols - # in non Western Europe. - return true if Redmine::MimeType.is_type?('text', path) - # Ruby 1.8.6 has a bug of integer divisions. - # http://apidock.com/ruby/v1_8_6_287/String/is_binary_data%3F - return false if Redmine::Scm::Adapters::ScmData.binary?(ent) - true - end - private :is_entry_text_data? - - def annotate - @entry = @repository.entry(@path, @rev) - (show_error_not_found; return) unless @entry - - @annotate = @repository.scm.annotate(@path, @rev) - if @annotate.nil? || @annotate.empty? - @annotate = nil - @error_message = l(:error_scm_annotate) - else - ann_buf_size = 0 - @annotate.lines.each do |buf| - ann_buf_size += buf.size - end - if ann_buf_size > Setting.file_max_size_displayed.to_i.kilobyte - @annotate = nil - @error_message = l(:error_scm_annotate_big_text_file) - end - end - @changeset = @repository.find_changeset_by_name(@rev) - end - - def revision - respond_to do |format| - format.html - format.js {render :layout => false} - end - end - - # Adds a related issue to a changeset - # POST /projects/:project_id/repository/(:repository_id/)revisions/:rev/issues - def add_related_issue - issue_id = params[:issue_id].to_s.sub(/^#/,'') - @issue = @changeset.find_referenced_issue_by_id(issue_id) - if @issue && (!@issue.visible? || @changeset.issues.include?(@issue)) - @issue = nil - end - - if @issue - @changeset.issues << @issue - end - end - - # Removes a related issue from a changeset - # DELETE /projects/:project_id/repository/(:repository_id/)revisions/:rev/issues/:issue_id - def remove_related_issue - @issue = Issue.visible.find_by_id(params[:issue_id]) - if @issue - @changeset.issues.delete(@issue) - end - end - - def diff - if params[:format] == 'diff' - @diff = @repository.diff(@path, @rev, @rev_to) - (show_error_not_found; return) unless @diff - filename = +"changeset_r#{@rev}" - filename << "_r#{@rev_to}" if @rev_to - send_data @diff.join, :filename => "#{filename}.diff", - :type => 'text/x-patch', - :disposition => 'attachment' - else - @diff_type = params[:type] || User.current.pref[:diff_type] || 'inline' - @diff_type = 'inline' unless %w(inline sbs).include?(@diff_type) - - # Save diff type as user preference - if User.current.logged? && @diff_type != User.current.pref[:diff_type] - User.current.pref[:diff_type] = @diff_type - User.current.preference.save - end - @cache_key = "repositories/diff/#{@repository.id}/" + - Digest::MD5.hexdigest("#{@path}-#{@rev}-#{@rev_to}-#{@diff_type}-#{current_language}") - unless read_fragment(@cache_key) - @diff = @repository.diff(@path, @rev, @rev_to) - (show_error_not_found; return) unless @diff - end - - @changeset = @repository.find_changeset_by_name(@rev) - @changeset_to = @rev_to ? @repository.find_changeset_by_name(@rev_to) : nil - @diff_format_revisions = @repository.diff_format_revisions(@changeset, @changeset_to) - render :diff, :formats => :html, :layout => 'base.html.erb' - end - end - - def stats - end - - # Returns JSON data for repository graphs - def graph - data = nil - case params[:graph] - when "commits_per_month" - data = graph_commits_per_month(@repository) - when "commits_per_author" - data = graph_commits_per_author(@repository) - end - if data - render :json => data - else - render_404 - end - end - - private - - def build_new_repository_from_params - scm = params[:repository_scm] || (Redmine::Scm::Base.all & Setting.enabled_scm).first - unless @repository = Repository.factory(scm) - render_404 - return - end - - @repository.project = @project - @repository.safe_attributes = params[:repository] - @repository - end - - def find_repository - @repository = Repository.find(params[:id]) - @project = @repository.project - rescue ActiveRecord::RecordNotFound - render_404 - end - - REV_PARAM_RE = %r{\A[a-f0-9]*\z}i - - def find_project_repository - @project = Project.find(params[:id]) - if params[:repository_id].present? - @repository = @project.repositories.find_by_identifier_param(params[:repository_id]) - else - @repository = @project.repository - end - (render_404; return false) unless @repository - @path = params[:path].is_a?(Array) ? params[:path].join('/') : params[:path].to_s - - @rev = params[:rev].to_s.strip.presence || @repository.default_branch - raise InvalidRevisionParam unless valid_name?(@rev) - - @rev_to = params[:rev_to].to_s.strip.presence - raise InvalidRevisionParam unless valid_name?(@rev_to) - rescue ActiveRecord::RecordNotFound - render_404 - rescue InvalidRevisionParam - show_error_not_found - end - - def find_changeset - if @rev.present? - @changeset = @repository.find_changeset_by_name(@rev) - end - show_error_not_found unless @changeset - end - - def show_error_not_found - render_error :message => l(:error_scm_not_found), :status => 404 - end - - # Handler for Redmine::Scm::Adapters::CommandFailed exception - def show_error_command_failed(exception) - render_error l(:error_scm_command_failed, exception.message) - end - - def graph_commits_per_month(repository) - date_to = User.current.today - date_from = date_to << 11 - date_from = Date.civil(date_from.year, date_from.month, 1) - commits_by_day = Changeset. - where("repository_id = ? AND commit_date BETWEEN ? AND ?", repository.id, date_from, date_to). - group(:commit_date). - count - commits_by_month = [0] * 12 - commits_by_day.each {|c| commits_by_month[(date_to.month - c.first.to_date.month) % 12] += c.last } - - changes_by_day = Change. - joins(:changeset). - where("#{Changeset.table_name}.repository_id = ? AND #{Changeset.table_name}.commit_date BETWEEN ? AND ?", repository.id, date_from, date_to). - group(:commit_date). - count - changes_by_month = [0] * 12 - changes_by_day.each {|c| changes_by_month[(date_to.month - c.first.to_date.month) % 12] += c.last } - - fields = [] - today = User.current.today - 12.times {|m| fields << month_name(((today.month - 1 - m) % 12) + 1)} - - data = { - :labels => fields.reverse, - :commits => commits_by_month[0..11].reverse, - :changes => changes_by_month[0..11].reverse - } - end - - def graph_commits_per_author(repository) - # data - stats = repository.stats_by_author - fields, commits_data, changes_data = [], [], [] - stats.each do |name, hsh| - fields << name - commits_data << hsh[:commits_count] - changes_data << hsh[:changes_count] - end - - # expand to 10 values if needed - fields = fields + [""]*(10 - fields.length) if fields.length<10 - commits_data = commits_data + [0]*(10 - commits_data.length) if commits_data.length<10 - changes_data = changes_data + [0]*(10 - changes_data.length) if changes_data.length<10 - - # Remove email address in usernames - fields = fields.collect {|c| c.gsub(%r{<.+@.+>}, '') } - - data = { - :labels => fields.reverse, - :commits => commits_data.reverse, - :changes => changes_data.reverse - } - end - - def disposition(path) - if Redmine::MimeType.of(@path) == "application/pdf" - 'inline' - else - 'attachment' - end - end - - def valid_name?(rev) - return true if rev.nil? - return true if REV_PARAM_RE.match?(rev) - - @repository ? @repository.valid_name?(rev) : true - end -end diff --git a/app/controllers/roles_controller.rb b/app/controllers/roles_controller.rb deleted file mode 100644 index 0e29e8c..0000000 --- a/app/controllers/roles_controller.rb +++ /dev/null @@ -1,131 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class RolesController < ApplicationController - layout 'admin' - self.main_menu = false - - before_action :require_admin, :except => [:index, :show] - before_action :require_admin_or_api_request, :only => [:index, :show] - before_action :find_role, :only => [:show, :edit, :update, :destroy] - accept_api_auth :index, :show - - require_sudo_mode :create, :update, :destroy - - def index - respond_to do |format| - format.html { - @roles = Role.sorted.to_a - render :layout => false if request.xhr? - } - format.api { - @roles = Role.givable.to_a - } - end - end - - def show - respond_to do |format| - format.api - end - end - - def new - # Prefills the form with 'Non member' role permissions by default - @role = Role.new - @role.safe_attributes = params[:role] || {:permissions => Role.non_member.permissions} - if params[:copy].present? && @copy_from = Role.find_by_id(params[:copy]) - @role.copy_from(@copy_from) - end - @roles = Role.sorted.to_a - end - - def create - @role = Role.new - @role.safe_attributes = params[:role] - if request.post? && @role.save - # workflow copy - if !params[:copy_workflow_from].blank? && (copy_from = Role.find_by_id(params[:copy_workflow_from])) - @role.copy_workflow_rules(copy_from) - end - flash[:notice] = l(:notice_successful_create) - redirect_to roles_path - else - @roles = Role.sorted.to_a - render :action => 'new' - end - end - - def edit - end - - def update - @role.safe_attributes = params[:role] - if @role.save - respond_to do |format| - format.html { - flash[:notice] = l(:notice_successful_update) - redirect_to roles_path(:page => params[:page]) - } - format.js { head 200 } - end - else - respond_to do |format| - format.html { render :action => 'edit' } - format.js { head 422 } - end - end - end - - def destroy - begin - @role.destroy - rescue - flash[:error] = l(:error_can_not_remove_role) - end - redirect_to roles_path - end - - def permissions - scope = Role.sorted - if params[:ids].present? - scope = scope.where(:id => params[:ids]) - end - @roles = scope.to_a - @permissions = Redmine::AccessControl.permissions.select { |p| !p.public? } - end - - def update_permissions - @roles = Role.where(:id => params[:permissions].keys) - @roles.each do |role| - role.permissions = params[:permissions][role.id.to_s] - role.save - end - flash[:notice] = l(:notice_successful_update) - redirect_to roles_path - end - - private - - def find_role - @role = Role.find(params[:id]) - rescue ActiveRecord::RecordNotFound - render_404 - end -end diff --git a/app/controllers/search_controller.rb b/app/controllers/search_controller.rb deleted file mode 100644 index b200f2a..0000000 --- a/app/controllers/search_controller.rb +++ /dev/null @@ -1,91 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class SearchController < ApplicationController - before_action :find_optional_project_by_id, :authorize_global - accept_api_auth :index - - def index - @question = params[:q]&.strip || "" - @all_words = params[:all_words] ? params[:all_words].present? : true - @titles_only = params[:titles_only] ? params[:titles_only].present? : false - @search_attachments = params[:attachments].presence || '0' - @open_issues = params[:open_issues] ? params[:open_issues].present? : false - - case params[:format] - when 'xml', 'json' - @offset, @limit = api_offset_and_limit - else - @offset = nil - @limit = Setting.search_results_per_page.to_i - @limit = 10 if @limit == 0 - end - - # quick jump to an issue - if !api_request? && (m = @question.match(/^#?(\d+)$/)) && (issue = Issue.visible.find_by_id(m[1].to_i)) - redirect_to issue_path(issue) - return - end - - projects_to_search = - case params[:scope] - when 'all' - nil - when 'my_projects' - User.current.projects - when 'subprojects' - @project ? (@project.self_and_descendants.to_a) : nil - else - @project - end - - @object_types = Redmine::Search.available_search_types.dup - if projects_to_search.is_a? Project - # don't search projects - @object_types.delete('projects') - # only show what the user is allowed to view - @object_types = @object_types.select {|o| User.current.allowed_to?("view_#{o}".to_sym, projects_to_search)} - end - - @scope = @object_types.select {|t| params[t].present?} - @scope = @object_types if @scope.empty? - - fetcher = Redmine::Search::Fetcher.new( - @question, User.current, @scope, projects_to_search, - :all_words => @all_words, :titles_only => @titles_only, :attachments => @search_attachments, :open_issues => @open_issues, - :cache => params[:page].present?, :params => params.to_unsafe_hash - ) - - if fetcher.tokens.present? - @result_count = fetcher.result_count - @result_count_by_type = fetcher.result_count_by_type - @tokens = fetcher.tokens - - @result_pages = Paginator.new @result_count, @limit, params['page'] - @offset ||= @result_pages.offset - @results = fetcher.results(@offset, @result_pages.per_page) - else - @question = "" - end - respond_to do |format| - format.html { render :layout => false if request.xhr? } - format.api { @results ||= []; render :layout => false } - end - end -end diff --git a/app/controllers/settings_controller.rb b/app/controllers/settings_controller.rb deleted file mode 100644 index 4ff333b..0000000 --- a/app/controllers/settings_controller.rb +++ /dev/null @@ -1,83 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class SettingsController < ApplicationController - layout 'admin' - self.main_menu = false - menu_item :plugins, :only => :plugin - - helper :queries - - before_action :require_admin - - require_sudo_mode :index, :edit, :plugin - - def index - edit - render :action => 'edit' - end - - def edit - @notifiables = Redmine::Notifiable.all - if request.post? - errors = Setting.set_all_from_params(params[:settings].to_unsafe_hash) - if errors.blank? - flash[:notice] = l(:notice_successful_update) - redirect_to settings_path(:tab => params[:tab]) - return - else - @setting_errors = errors - # render the edit form with error messages - end - end - - @options = {} - user_format = User::USER_FORMATS.collect{|key, value| [key, value[:setting_order]]}.sort_by{|f| f[1]} - @options[:user_format] = user_format.collect{|f| [User.current.name(f[0]), f[0].to_s]} - @deliveries = ActionMailer::Base.perform_deliveries - - @guessed_host_and_path = request.host_with_port.dup - @guessed_host_and_path << ('/'+ Redmine::Utils.relative_url_root.gsub(%r{^\/}, '')) unless Redmine::Utils.relative_url_root.blank? - - @commit_update_keywords = Setting.commit_update_keywords.dup - @commit_update_keywords = [{}] unless @commit_update_keywords.is_a?(Array) && @commit_update_keywords.any? - - Redmine::Themes.rescan - end - - def plugin - @plugin = Redmine::Plugin.find(params[:id]) - unless @plugin.configurable? - render_404 - return - end - - if request.post? - setting = params[:settings] ? params[:settings].permit!.to_h : {} - Setting.send "plugin_#{@plugin.id}=", setting - flash[:notice] = l(:notice_successful_update) - redirect_to plugin_settings_path(@plugin) - else - @partial = @plugin.settings[:partial] - @settings = Setting.send "plugin_#{@plugin.id}" - end - rescue Redmine::PluginNotFound - render_404 - end -end diff --git a/app/controllers/sys_controller.rb b/app/controllers/sys_controller.rb deleted file mode 100644 index 2d3e748..0000000 --- a/app/controllers/sys_controller.rb +++ /dev/null @@ -1,86 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class SysController < ActionController::Base - include ActiveSupport::SecurityUtils - - before_action :check_enabled - - def projects - p = Project.active.has_module(:repository). - order("#{Project.table_name}.identifier").preload(:repository).to_a - # extra_info attribute from repository breaks activeresource client - render :json => p.to_json( - :only => [:id, :identifier, :name, :is_public, :status], - :include => {:repository => {:only => [:id, :url]}} - ) - end - - def create_project_repository - project = Project.find(params[:id]) - if project.repository - head 409 - else - logger.info "Repository for #{project.name} was reported to be created by #{request.remote_ip}." - repository = Repository.factory(params[:vendor]) - repository.safe_attributes = params[:repository] - repository.project = project - if repository.save - render :json => {repository.class.name.underscore.tr('/', '-') => {:id => repository.id, :url => repository.url}}, :status => 201 - else - head 422 - end - end - end - - def fetch_changesets - projects = [] - scope = Project.active.has_module(:repository) - if params[:id] - project = nil - if /^\d*$/.match?(params[:id].to_s) - project = scope.find(params[:id]) - else - project = scope.find_by_identifier(params[:id]) - end - raise ActiveRecord::RecordNotFound unless project - projects << project - else - projects = scope.to_a - end - projects.each do |project| - project.repositories.each do |repository| - repository.fetch_changesets - end - end - head 200 - rescue ActiveRecord::RecordNotFound - head 404 - end - - protected - - def check_enabled - User.current = nil - unless Setting.sys_api_enabled? && secure_compare(params[:key].to_s, Setting.sys_api_key.to_s) - render :plain => 'Access denied. Repository management WS is disabled or key is invalid.', :status => 403 - return false - end - end -end diff --git a/app/controllers/timelog_controller.rb b/app/controllers/timelog_controller.rb deleted file mode 100644 index 1d144b9..0000000 --- a/app/controllers/timelog_controller.rb +++ /dev/null @@ -1,290 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class TimelogController < ApplicationController - menu_item :time_entries - - before_action :find_time_entry, :only => [:show, :edit, :update] - before_action :check_editability, :only => [:edit, :update] - before_action :find_time_entries, :only => [:bulk_edit, :bulk_update, :destroy] - before_action :authorize, :only => [:show, :edit, :update, :bulk_edit, :bulk_update, :destroy] - - before_action :find_optional_issue, :only => [:new, :create] - before_action :find_optional_project, :only => [:index, :report] - - accept_rss_auth :index - accept_api_auth :index, :show, :create, :update, :destroy - - rescue_from Query::StatementInvalid, :with => :query_statement_invalid - - helper :issues - include TimelogHelper - helper :custom_fields - include CustomFieldsHelper - helper :queries - include QueriesHelper - - def index - retrieve_time_entry_query - scope = time_entry_scope. - preload(:issue => [:project, :tracker, :status, :assigned_to, :priority]). - preload(:project, :user) - - respond_to do |format| - format.html { - @entry_count = scope.count - @entry_pages = Paginator.new @entry_count, per_page_option, params['page'] - @entries = scope.offset(@entry_pages.offset).limit(@entry_pages.per_page).to_a - - render :layout => !request.xhr? - } - format.api { - @entry_count = scope.count - @offset, @limit = api_offset_and_limit - @entries = scope.offset(@offset).limit(@limit).preload(:custom_values => :custom_field).to_a - } - format.atom { - entries = scope.limit(Setting.feeds_limit.to_i).reorder("#{TimeEntry.table_name}.created_on DESC").to_a - render_feed(entries, :title => l(:label_spent_time)) - } - format.csv { - # Export all entries - @entries = scope.to_a - send_data(query_to_csv(@entries, @query, params), :type => 'text/csv; header=present', :filename => 'timelog.csv') - } - end - end - - def report - retrieve_time_entry_query - scope = time_entry_scope - - @report = Redmine::Helpers::TimeReport.new(@project, @issue, params[:criteria], params[:columns], scope) - - respond_to do |format| - format.html { render :layout => !request.xhr? } - format.csv { send_data(report_to_csv(@report), :type => 'text/csv; header=present', :filename => 'timelog.csv') } - end - end - - def show - respond_to do |format| - # TODO: Implement html response - format.html { head 406 } - format.api - end - end - - def new - @time_entry ||= TimeEntry.new(:project => @project, :issue => @issue, :author => User.current, :spent_on => User.current.today) - @time_entry.safe_attributes = params[:time_entry] - end - - def create - @time_entry ||= TimeEntry.new(:project => @project, :issue => @issue, :author => User.current, :user => User.current, :spent_on => User.current.today) - @time_entry.safe_attributes = params[:time_entry] - if @time_entry.project && !User.current.allowed_to?(:log_time, @time_entry.project) - render_403 - return - end - - call_hook(:controller_timelog_edit_before_save, { :params => params, :time_entry => @time_entry }) - - if @time_entry.save - respond_to do |format| - format.html { - flash[:notice] = l(:notice_successful_create) - if params[:continue] - options = { - :time_entry => { - :project_id => params[:time_entry][:project_id], - :issue_id => @time_entry.issue_id, - :spent_on => @time_entry.spent_on, - :activity_id => @time_entry.activity_id - }, - :back_url => params[:back_url] - } - if params[:project_id] && @time_entry.project - redirect_to new_project_time_entry_path(@time_entry.project, options) - elsif params[:issue_id] && @time_entry.issue - redirect_to new_issue_time_entry_path(@time_entry.issue, options) - else - redirect_to new_time_entry_path(options) - end - else - redirect_back_or_default project_time_entries_path(@time_entry.project) - end - } - format.api { render :action => 'show', :status => :created, :location => time_entry_url(@time_entry) } - end - else - respond_to do |format| - format.html { render :action => 'new' } - format.api { render_validation_errors(@time_entry) } - end - end - end - - def edit - @time_entry.safe_attributes = params[:time_entry] - end - - def update - @time_entry.safe_attributes = params[:time_entry] - call_hook(:controller_timelog_edit_before_save, { :params => params, :time_entry => @time_entry }) - - if @time_entry.save - respond_to do |format| - format.html { - flash[:notice] = l(:notice_successful_update) - redirect_back_or_default project_time_entries_path(@time_entry.project) - } - format.api { render_api_ok } - end - else - respond_to do |format| - format.html { render :action => 'edit' } - format.api { render_validation_errors(@time_entry) } - end - end - end - - def bulk_edit - @target_projects = Project.allowed_to(:log_time).to_a - @custom_fields = TimeEntry.first.available_custom_fields.select {|field| field.format.bulk_edit_supported} - if params[:time_entry] - @target_project = @target_projects.detect {|p| p.id.to_s == params[:time_entry][:project_id].to_s} - end - if @target_project - @available_activities = @target_project.activities - else - @available_activities = @projects.map(&:activities).reduce(:&) - end - @time_entry_params = params[:time_entry] || {} - @time_entry_params[:custom_field_values] ||= {} - end - - def bulk_update - attributes = parse_params_for_bulk_update(params[:time_entry]) - - unsaved_time_entries = [] - saved_time_entries = [] - - @time_entries.each do |time_entry| - time_entry.reload - time_entry.safe_attributes = attributes - call_hook(:controller_time_entries_bulk_edit_before_save, { :params => params, :time_entry => time_entry }) - if time_entry.save - saved_time_entries << time_entry - else - unsaved_time_entries << time_entry - end - end - - if unsaved_time_entries.empty? - flash[:notice] = l(:notice_successful_update) unless saved_time_entries.empty? - redirect_back_or_default project_time_entries_path(@projects.first) - else - @saved_time_entries = @time_entries - @unsaved_time_entries = unsaved_time_entries - @time_entries = TimeEntry.where(:id => unsaved_time_entries.map(&:id)). - preload(:project => :time_entry_activities). - preload(:user).to_a - - bulk_edit - render :action => 'bulk_edit' - end - end - - def destroy - destroyed = TimeEntry.transaction do - @time_entries.each do |t| - unless t.destroy && t.destroyed? - raise ActiveRecord::Rollback - end - end - end - - respond_to do |format| - format.html { - if destroyed - flash[:notice] = l(:notice_successful_delete) - else - flash[:error] = l(:notice_unable_delete_time_entry) - end - redirect_back_or_default project_time_entries_path(@projects.first), :referer => true - } - format.api { - if destroyed - render_api_ok - else - render_validation_errors(@time_entries) - end - } - end - end - - private - - def find_time_entry - @time_entry = TimeEntry.find(params[:id]) - @project = @time_entry.project - rescue ActiveRecord::RecordNotFound - render_404 - end - - def check_editability - unless @time_entry.editable_by?(User.current) - render_403 - return false - end - end - - def find_time_entries - @time_entries = TimeEntry.where(:id => params[:id] || params[:ids]). - preload(:project => :time_entry_activities). - preload(:user).to_a - - raise ActiveRecord::RecordNotFound if @time_entries.empty? - raise Unauthorized unless @time_entries.all? {|t| t.editable_by?(User.current)} - @projects = @time_entries.collect(&:project).compact.uniq - @project = @projects.first if @projects.size == 1 - rescue ActiveRecord::RecordNotFound - render_404 - end - - def find_optional_issue - if params[:issue_id].present? - @issue = Issue.find(params[:issue_id]) - @project = @issue.project - authorize - else - find_optional_project - end - end - - # Returns the TimeEntry scope for index and report actions - def time_entry_scope(options={}) - @query.results_scope(options) - end - - def retrieve_time_entry_query - retrieve_query(TimeEntryQuery, false, :defaults => @default_columns_names) - end -end diff --git a/app/controllers/trackers_controller.rb b/app/controllers/trackers_controller.rb deleted file mode 100644 index e219dea..0000000 --- a/app/controllers/trackers_controller.rb +++ /dev/null @@ -1,113 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class TrackersController < ApplicationController - layout 'admin' - self.main_menu = false - - before_action :require_admin, :except => :index - before_action :require_admin_or_api_request, :only => :index - accept_api_auth :index - - def index - @trackers = Tracker.sorted.to_a - respond_to do |format| - format.html { render :layout => false if request.xhr? } - format.api - end - end - - def new - @tracker ||= Tracker.new(:default_status => IssueStatus.sorted.first) - @tracker.safe_attributes = params[:tracker] - @trackers = Tracker.sorted.to_a - @projects = Project.all - end - - def create - @tracker = Tracker.new - @tracker.safe_attributes = params[:tracker] - if @tracker.save - # workflow copy - if !params[:copy_workflow_from].blank? && (copy_from = Tracker.find_by_id(params[:copy_workflow_from])) - @tracker.copy_workflow_rules(copy_from) - end - flash[:notice] = l(:notice_successful_create) - redirect_to trackers_path - return - end - new - render :action => 'new' - end - - def edit - @tracker ||= Tracker.find(params[:id]) - @projects = Project.all - end - - def update - @tracker = Tracker.find(params[:id]) - @tracker.safe_attributes = params[:tracker] - if @tracker.save - respond_to do |format| - format.html { - flash[:notice] = l(:notice_successful_update) - redirect_to trackers_path(:page => params[:page]) - } - format.js { head 200 } - end - else - respond_to do |format| - format.html { - edit - render :action => 'edit' - } - format.js { head 422 } - end - end - end - - def destroy - @tracker = Tracker.find(params[:id]) - unless @tracker.issues.empty? - flash[:error] = l(:error_can_not_delete_tracker) - else - @tracker.destroy - end - redirect_to trackers_path - end - - def fields - if request.post? && params[:trackers] - params[:trackers].each do |tracker_id, tracker_params| - tracker = Tracker.find_by_id(tracker_id) - if tracker - tracker.core_fields = tracker_params[:core_fields] - tracker.custom_field_ids = tracker_params[:custom_field_ids] - tracker.save - end - end - flash[:notice] = l(:notice_successful_update) - redirect_to fields_trackers_path - return - end - @trackers = Tracker.sorted.to_a - @custom_fields = IssueCustomField.sorted - end -end diff --git a/app/controllers/users_controller.rb b/app/controllers/users_controller.rb deleted file mode 100644 index ec9ecba..0000000 --- a/app/controllers/users_controller.rb +++ /dev/null @@ -1,208 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class UsersController < ApplicationController - layout 'admin' - self.main_menu = false - - before_action :require_admin, :except => :show - before_action ->{ find_user(false) }, :only => :show - before_action :find_user, :only => [:edit, :update, :destroy] - accept_api_auth :index, :show, :create, :update, :destroy - - helper :sort - include SortHelper - helper :custom_fields - include CustomFieldsHelper - include UsersHelper - helper :principal_memberships - helper :activities - include ActivitiesHelper - - require_sudo_mode :create, :update, :destroy - - def index - sort_init 'login', 'asc' - sort_update %w(login firstname lastname admin created_on last_login_on) - - case params[:format] - when 'xml', 'json' - @offset, @limit = api_offset_and_limit - else - @limit = per_page_option - end - - @status = params[:status] || 1 - - scope = User.logged.status(@status).preload(:email_address) - scope = scope.like(params[:name]) if params[:name].present? - scope = scope.in_group(params[:group_id]) if params[:group_id].present? - - @user_count = scope.count - @user_pages = Paginator.new @user_count, @limit, params['page'] - @offset ||= @user_pages.offset - @users = scope.order(sort_clause).limit(@limit).offset(@offset).to_a - - respond_to do |format| - format.html { - @groups = Group.givable.sort - render :layout => !request.xhr? - } - format.csv { - send_data(users_to_csv(scope.order(sort_clause)), :type => 'text/csv; header=present', :filename => 'users.csv') - } - format.api - end - end - - def show - unless @user.visible? - render_404 - return - end - - # show projects based on current user visibility - @memberships = @user.memberships.preload(:roles, :project).where(Project.visible_condition(User.current)).to_a - - @issue_counts = {} - @issue_counts[:assigned] = { - :total => Issue.visible.assigned_to(@user).count, - :open => Issue.visible.open.assigned_to(@user).count - } - @issue_counts[:reported] = { - :total => Issue.visible.where(:author_id => @user.id).count, - :open => Issue.visible.open.where(:author_id => @user.id).count - } - - respond_to do |format| - format.html { - events = Redmine::Activity::Fetcher.new(User.current, :author => @user).events(nil, nil, :limit => 10) - @events_by_day = events.group_by {|event| User.current.time_to_date(event.event_datetime)} - render :layout => 'base' - } - format.api - end - end - - def new - @user = User.new(:language => Setting.default_language, :mail_notification => Setting.default_notification_option) - @user.safe_attributes = params[:user] - @auth_sources = AuthSource.all - end - - def create - @user = User.new(:language => Setting.default_language, :mail_notification => Setting.default_notification_option, :admin => false) - @user.safe_attributes = params[:user] - @user.password, @user.password_confirmation = params[:user][:password], params[:user][:password_confirmation] unless @user.auth_source_id - @user.pref.safe_attributes = params[:pref] - - if @user.save - Mailer.deliver_account_information(@user, @user.password) if params[:send_information] - - respond_to do |format| - format.html { - flash[:notice] = l(:notice_user_successful_create, :id => view_context.link_to(@user.login, user_path(@user))) - if params[:continue] - attrs = {:generate_password => @user.generate_password } - redirect_to new_user_path(:user => attrs) - else - redirect_to edit_user_path(@user) - end - } - format.api { render :action => 'show', :status => :created, :location => user_url(@user) } - end - else - @auth_sources = AuthSource.all - # Clear password input - @user.password = @user.password_confirmation = nil - - respond_to do |format| - format.html { render :action => 'new' } - format.api { render_validation_errors(@user) } - end - end - end - - def edit - @auth_sources = AuthSource.all - @membership ||= Member.new - end - - def update - if params[:user][:password].present? && (@user.auth_source_id.nil? || params[:user][:auth_source_id].blank?) - @user.password, @user.password_confirmation = params[:user][:password], params[:user][:password_confirmation] - end - @user.safe_attributes = params[:user] - # Was the account actived ? (do it before User#save clears the change) - was_activated = (@user.status_change == [User::STATUS_REGISTERED, User::STATUS_ACTIVE]) - # TODO: Similar to My#account - @user.pref.safe_attributes = params[:pref] - - if @user.save - @user.pref.save - - if was_activated - Mailer.deliver_account_activated(@user) - elsif @user.active? && params[:send_information] && @user != User.current - Mailer.deliver_account_information(@user, @user.password) - end - - respond_to do |format| - format.html { - flash[:notice] = l(:notice_successful_update) - redirect_to_referer_or edit_user_path(@user) - } - format.api { render_api_ok } - end - else - @auth_sources = AuthSource.all - @membership ||= Member.new - # Clear password input - @user.password = @user.password_confirmation = nil - - respond_to do |format| - format.html { render :action => :edit } - format.api { render_validation_errors(@user) } - end - end - end - - def destroy - @user.destroy - respond_to do |format| - format.html { redirect_back_or_default(users_path) } - format.api { render_api_ok } - end - end - - private - - def find_user(logged = true) - if params[:id] == 'current' - require_login || return - @user = User.current - elsif logged - @user = User.logged.find(params[:id]) - else - @user = User.find(params[:id]) - end - rescue ActiveRecord::RecordNotFound - render_404 - end -end diff --git a/app/controllers/versions_controller.rb b/app/controllers/versions_controller.rb deleted file mode 100644 index 15c24a8..0000000 --- a/app/controllers/versions_controller.rb +++ /dev/null @@ -1,185 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class VersionsController < ApplicationController - menu_item :roadmap - model_object Version - before_action :find_model_object, :except => [:index, :new, :create, :close_completed] - before_action :find_project_from_association, :except => [:index, :new, :create, :close_completed] - before_action :find_project_by_project_id, :only => [:index, :new, :create, :close_completed] - before_action :authorize - - accept_api_auth :index, :show, :create, :update, :destroy - - helper :custom_fields - helper :projects - - def index - respond_to do |format| - format.html { - @trackers = @project.trackers.sorted.to_a - retrieve_selected_tracker_ids(@trackers, @trackers.select {|t| t.is_in_roadmap?}) - @with_subprojects = params[:with_subprojects].nil? ? Setting.display_subprojects_issues? : (params[:with_subprojects] == '1') - project_ids = @with_subprojects ? @project.self_and_descendants.pluck(:id) : [@project.id] - - @versions = @project.shared_versions.preload(:custom_values) - @versions += @project.rolled_up_versions.visible.preload(:custom_values) if @with_subprojects - @versions = @versions.to_a.uniq.sort - unless params[:completed] - @completed_versions = @versions.select(&:completed?).reverse - @versions -= @completed_versions - end - - @issues_by_version = {} - if @selected_tracker_ids.any? && @versions.any? - issues = Issue.visible. - includes(:project, :tracker). - preload(:status, :priority, :fixed_version). - where(:tracker_id => @selected_tracker_ids, :project_id => project_ids, :fixed_version_id => @versions.map(&:id)). - order("#{Project.table_name}.lft, #{Tracker.table_name}.position, #{Issue.table_name}.id") - @issues_by_version = issues.group_by(&:fixed_version) - end - @versions.reject! {|version| !project_ids.include?(version.project_id) && @issues_by_version[version].blank?} - } - format.api { - @versions = @project.shared_versions.to_a - } - end - end - - def show - respond_to do |format| - format.html { - @issues = @version.fixed_issues.visible. - includes(:status, :tracker, :priority). - preload(:project). - reorder("#{Tracker.table_name}.position, #{Issue.table_name}.id"). - to_a - } - format.api - end - end - - def new - @version = @project.versions.build - @version.safe_attributes = params[:version] - - respond_to do |format| - format.html - format.js - end - end - - def create - @version = @project.versions.build - if params[:version] - attributes = params[:version].dup - attributes.delete('sharing') unless attributes.nil? || @version.allowed_sharings.include?(attributes['sharing']) - @version.safe_attributes = attributes - end - - if request.post? - if @version.save - respond_to do |format| - format.html do - flash[:notice] = l(:notice_successful_create) - redirect_back_or_default settings_project_path(@project, :tab => 'versions') - end - format.js - format.api do - render :action => 'show', :status => :created, :location => version_url(@version) - end - end - else - respond_to do |format| - format.html { render :action => 'new' } - format.js { render :action => 'new' } - format.api { render_validation_errors(@version) } - end - end - end - end - - def edit - end - - def update - if params[:version] - attributes = params[:version].dup - attributes.delete('sharing') unless @version.allowed_sharings.include?(attributes['sharing']) - @version.safe_attributes = attributes - if @version.save - respond_to do |format| - format.html { - flash[:notice] = l(:notice_successful_update) - redirect_back_or_default settings_project_path(@project, :tab => 'versions') - } - format.api { render_api_ok } - end - else - respond_to do |format| - format.html { render :action => 'edit' } - format.api { render_validation_errors(@version) } - end - end - end - end - - def close_completed - if request.put? - @project.close_completed_versions - end - redirect_to settings_project_path(@project, :tab => 'versions') - end - - def destroy - if @version.deletable? - @version.destroy - respond_to do |format| - format.html { redirect_back_or_default settings_project_path(@project, :tab => 'versions') } - format.api { render_api_ok } - end - else - respond_to do |format| - format.html { - flash[:error] = l(:notice_unable_delete_version) - redirect_to settings_project_path(@project, :tab => 'versions') - } - format.api { head :unprocessable_entity } - end - end - end - - def status_by - respond_to do |format| - format.html { render :action => 'show' } - format.js - end - end - - private - - def retrieve_selected_tracker_ids(selectable_trackers, default_trackers=nil) - if ids = params[:tracker_ids] - @selected_tracker_ids = (ids.is_a? Array) ? ids.collect { |id| id.to_i.to_s } : ids.split('/').collect { |id| id.to_i.to_s } - else - @selected_tracker_ids = (default_trackers || selectable_trackers).collect {|t| t.id.to_s } - end - end -end diff --git a/app/controllers/watchers_controller.rb b/app/controllers/watchers_controller.rb deleted file mode 100644 index 023f7e4..0000000 --- a/app/controllers/watchers_controller.rb +++ /dev/null @@ -1,156 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class WatchersController < ApplicationController - before_action :require_login, :find_watchables, :only => [:watch, :unwatch] - - def watch - set_watcher(@watchables, User.current, true) - end - - def unwatch - set_watcher(@watchables, User.current, false) - end - - before_action :find_project, :authorize, :only => [:new, :create, :append, :destroy, :autocomplete_for_user] - accept_api_auth :create, :destroy - - def new - @users = users_for_new_watcher - end - - def create - user_ids = [] - if params[:watcher] - user_ids << (params[:watcher][:user_ids] || params[:watcher][:user_id]) - else - user_ids << params[:user_id] - end - users = User.active.visible.where(:id => user_ids.flatten.compact.uniq) - users.each do |user| - @watchables.each do |watchable| - Watcher.create(:watchable => watchable, :user => user) - end - end - respond_to do |format| - format.html { redirect_to_referer_or {render :html => 'Watcher added.', :status => 200, :layout => true}} - format.js { @users = users_for_new_watcher } - format.api { render_api_ok } - end - end - - def append - if params[:watcher] - user_ids = params[:watcher][:user_ids] || [params[:watcher][:user_id]] - @users = User.active.visible.where(:id => user_ids).to_a - end - if @users.blank? - head 200 - end - end - - def destroy - user = User.find(params[:user_id]) - @watchables.each do |watchable| - watchable.set_watcher(user, false) - end - respond_to do |format| - format.html { redirect_to_referer_or {render :html => 'Watcher removed.', :status => 200, :layout => true} } - format.js - format.api { render_api_ok } - end - rescue ActiveRecord::RecordNotFound - render_404 - end - - def autocomplete_for_user - @users = users_for_new_watcher - render :layout => false - end - - private - - def find_project - if params[:object_type] && params[:object_id] - @watchables = find_objets_from_params - @projects = @watchables.map(&:project).uniq - if @projects.size == 1 - @project = @projects.first - end - elsif params[:project_id] - @project = Project.visible.find_by_param(params[:project_id]) - end - end - - def find_watchables - @watchables = find_objets_from_params - unless @watchables.present? - render_404 - end - end - - def set_watcher(watchables, user, watching) - watchables.each do |watchable| - watchable.set_watcher(user, watching) - end - respond_to do |format| - format.html { - text = watching ? 'Watcher added.' : 'Watcher removed.' - redirect_to_referer_or {render :html => text, :status => 200, :layout => true} - } - format.js { render :partial => 'set_watcher', :locals => {:user => user, :watched => watchables} } - end - end - - def users_for_new_watcher - scope = nil - if params[:q].blank? && @project.present? - scope = @project.users - else - scope = User.all.limit(100) - end - users = scope.active.visible.sorted.like(params[:q]).to_a - if @watchables && @watchables.size == 1 - users -= @watchables.first.watcher_users - end - users - end - - def find_objets_from_params - klass = Object.const_get(params[:object_type].camelcase) rescue nil - return unless klass && Class === klass # rubocop:disable Style/CaseEquality - return unless klass < ActiveRecord::Base - return unless klass < Redmine::Acts::Watchable::InstanceMethods - - scope = klass.where(:id => Array.wrap(params[:object_id])) - if klass.reflect_on_association(:project) - scope = scope.preload(:project => :enabled_modules) - end - objects = scope.to_a - - raise Unauthorized if objects.any? do |w| - if w.respond_to?(:visible?) - !w.visible? - elsif w.respond_to?(:project) && w.project - !w.project.visible? - end - end - objects - end -end diff --git a/app/controllers/welcome_controller.rb b/app/controllers/welcome_controller.rb deleted file mode 100644 index 571e233..0000000 --- a/app/controllers/welcome_controller.rb +++ /dev/null @@ -1,31 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class WelcomeController < ApplicationController - self.main_menu = false - - def index - @news = News.latest User.current - end - - def robots - @projects = Project.all_public.active - render :layout => false, :content_type => 'text/plain' - end -end diff --git a/app/controllers/wikis_controller.rb b/app/controllers/wikis_controller.rb deleted file mode 100644 index 3c1637e..0000000 --- a/app/controllers/wikis_controller.rb +++ /dev/null @@ -1,31 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class WikisController < ApplicationController - menu_item :settings - before_action :find_project, :authorize - - # Delete a project's wiki - def destroy - if request.post? && params[:confirm] && @project.wiki - @project.wiki.destroy - redirect_to settings_project_path(@project, :tab => 'wiki') - end - end -end diff --git a/app/controllers/workflows_controller.rb b/app/controllers/workflows_controller.rb deleted file mode 100644 index 0c29b14..0000000 --- a/app/controllers/workflows_controller.rb +++ /dev/null @@ -1,151 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class WorkflowsController < ApplicationController - layout 'admin' - self.main_menu = false - - before_action :require_admin - - def index - @roles = Role.sorted.select(&:consider_workflow?) - @trackers = Tracker.sorted - @workflow_counts = WorkflowTransition.group(:tracker_id, :role_id).count - end - - def edit - find_trackers_roles_and_statuses_for_edit - - if request.post? && @roles && @trackers && params[:transitions] - transitions = params[:transitions].deep_dup - transitions.each do |old_status_id, transitions_by_new_status| - transitions_by_new_status.each do |new_status_id, transition_by_rule| - transition_by_rule.reject! {|rule, transition| transition == 'no_change'} - end - end - WorkflowTransition.replace_transitions(@trackers, @roles, transitions) - flash[:notice] = l(:notice_successful_update) - redirect_to_referer_or workflows_edit_path - return - end - - if @trackers && @roles && @statuses.any? - workflows = WorkflowTransition. - where(:role_id => @roles.map(&:id), :tracker_id => @trackers.map(&:id)). - preload(:old_status, :new_status) - @workflows = {} - @workflows['always'] = workflows.select {|w| !w.author && !w.assignee} - @workflows['author'] = workflows.select {|w| w.author} - @workflows['assignee'] = workflows.select {|w| w.assignee} - end - end - - def permissions - find_trackers_roles_and_statuses_for_edit - - if request.post? && @roles && @trackers && params[:permissions] - permissions = params[:permissions].deep_dup - permissions.each { |field, rule_by_status_id| - rule_by_status_id.reject! {|status_id, rule| rule == 'no_change'} - } - WorkflowPermission.replace_permissions(@trackers, @roles, permissions) - flash[:notice] = l(:notice_successful_update) - redirect_to_referer_or workflows_permissions_path - return - end - - if @roles && @trackers - @fields = (Tracker::CORE_FIELDS_ALL - @trackers.map(&:disabled_core_fields).reduce(:&)).map {|field| [field, l("field_"+field.sub(/_id$/, ''))]} - @custom_fields = @trackers.map(&:custom_fields).flatten.uniq.sort - @permissions = WorkflowPermission.rules_by_status_id(@trackers, @roles) - @statuses.each {|status| @permissions[status.id] ||= {}} - end - end - - def copy - @roles = Role.sorted.select(&:consider_workflow?) - @trackers = Tracker.sorted - - if params[:source_tracker_id].blank? || params[:source_tracker_id] == 'any' - @source_tracker = nil - else - @source_tracker = Tracker.find_by_id(params[:source_tracker_id].to_i) - end - if params[:source_role_id].blank? || params[:source_role_id] == 'any' - @source_role = nil - else - @source_role = Role.find_by_id(params[:source_role_id].to_i) - end - @target_trackers = params[:target_tracker_ids].blank? ? - nil : Tracker.where(:id => params[:target_tracker_ids]).to_a - @target_roles = params[:target_role_ids].blank? ? - nil : Role.where(:id => params[:target_role_ids]).to_a - if request.post? - if params[:source_tracker_id].blank? || params[:source_role_id].blank? || (@source_tracker.nil? && @source_role.nil?) - flash.now[:error] = l(:error_workflow_copy_source) - elsif @target_trackers.blank? || @target_roles.blank? - flash.now[:error] = l(:error_workflow_copy_target) - else - WorkflowRule.copy(@source_tracker, @source_role, @target_trackers, @target_roles) - flash[:notice] = l(:notice_successful_update) - redirect_to workflows_copy_path(:source_tracker_id => @source_tracker, :source_role_id => @source_role) - end - end - end - - private - - def find_trackers_roles_and_statuses_for_edit - find_roles - find_trackers - find_statuses - end - - def find_roles - ids = Array.wrap(params[:role_id]) - if ids == ['all'] - @roles = Role.sorted.select(&:consider_workflow?) - elsif ids.present? - @roles = Role.where(:id => ids).to_a - end - @roles = nil if @roles.blank? - end - - def find_trackers - ids = Array.wrap(params[:tracker_id]) - if ids == ['all'] - @trackers = Tracker.sorted.to_a - elsif ids.present? - @trackers = Tracker.where(:id => ids).to_a - end - @trackers = nil if @trackers.blank? - end - - def find_statuses - @used_statuses_only = (params[:used_statuses_only] == '0' ? false : true) - if @trackers && @used_statuses_only - role_ids = Role.all.select(&:consider_workflow?).map(&:id) - status_ids = WorkflowTransition.where( - :tracker_id => @trackers.map(&:id), :role_id => role_ids - ).distinct.pluck(:old_status_id, :new_status_id).flatten.uniq - @statuses = IssueStatus.where(:id => status_ids).sorted.to_a.presence - end - @statuses ||= IssueStatus.sorted.to_a - end -end diff --git a/app/helpers/account_helper.rb b/app/helpers/account_helper.rb deleted file mode 100644 index 1e8de67..0000000 --- a/app/helpers/account_helper.rb +++ /dev/null @@ -1,21 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -module AccountHelper -end diff --git a/app/helpers/activities_helper.rb b/app/helpers/activities_helper.rb deleted file mode 100644 index 573e432..0000000 --- a/app/helpers/activities_helper.rb +++ /dev/null @@ -1,33 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -module ActivitiesHelper - def sort_activity_events(events) - events_by_group = events.group_by(&:event_group) - sorted_events = [] - events.sort_by(&:event_datetime).reverse_each do |event| - if group_events = events_by_group.delete(event.event_group) - group_events.sort_by(&:event_datetime).reverse.each_with_index do |e, i| - sorted_events << [e, i > 0] - end - end - end - sorted_events - end -end diff --git a/app/helpers/admin_helper.rb b/app/helpers/admin_helper.rb deleted file mode 100644 index a06852b..0000000 --- a/app/helpers/admin_helper.rb +++ /dev/null @@ -1,35 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -module AdminHelper - def project_status_options_for_select(selected) - options_for_select([[l(:label_all), ''], - [l(:project_status_active), '1'], - [l(:project_status_closed), '5'], - [l(:project_status_archived), '9']], selected.to_s) - end - - def plugin_data_for_updates(plugins) - data = {"v" => Redmine::VERSION.to_s, "p" => {}} - plugins.each do |plugin| - data["p"].merge! plugin.id => {"v" => plugin.version, "n" => plugin.name, "a" => plugin.author} - end - data - end -end diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb deleted file mode 100644 index 8b5d48c..0000000 --- a/app/helpers/application_helper.rb +++ /dev/null @@ -1,1690 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -require 'forwardable' -require 'cgi' - -module ApplicationHelper - include Redmine::WikiFormatting::Macros::Definitions - include Redmine::I18n - include Redmine::Pagination::Helper - include Redmine::SudoMode::Helper - include Redmine::Themes::Helper - include Redmine::Hook::Helper - include Redmine::Helpers::URL - - extend Forwardable - def_delegators :wiki_helper, :wikitoolbar_for, :heads_for_wiki_formatter - - # Return true if user is authorized for controller/action, otherwise false - def authorize_for(controller, action) - User.current.allowed_to?({:controller => controller, :action => action}, @project) - end - - # Display a link if user is authorized - # - # @param [String] name Anchor text (passed to link_to) - # @param [Hash] options Hash params. This will checked by authorize_for to see if the user is authorized - # @param [optional, Hash] html_options Options passed to link_to - # @param [optional, Hash] parameters_for_method_reference Extra parameters for link_to - def link_to_if_authorized(name, options = {}, html_options = nil, *parameters_for_method_reference) - link_to(name, options, html_options, *parameters_for_method_reference) if authorize_for(options[:controller] || params[:controller], options[:action]) - end - - # Displays a link to user's account page if active - def link_to_user(user, options={}) - if user.is_a?(User) - name = h(user.name(options[:format])) - if user.active? || (User.current.admin? && user.logged?) - only_path = options[:only_path].nil? ? true : options[:only_path] - link_to name, user_url(user, :only_path => only_path), :class => user.css_classes - else - name - end - else - h(user.to_s) - end - end - - # Displays a link to edit group page if current user is admin - # Otherwise display only the group name - def link_to_group(group, options={}) - if group.is_a?(Group) - name = h(group.name) - if User.current.admin? - only_path = options[:only_path].nil? ? true : options[:only_path] - link_to name, edit_group_path(group, :only_path => only_path) - else - name - end - end - end - - # Displays a link to +issue+ with its subject. - # Examples: - # - # link_to_issue(issue) # => Defect #6: This is the subject - # link_to_issue(issue, :truncate => 6) # => Defect #6: This i... - # link_to_issue(issue, :subject => false) # => Defect #6 - # link_to_issue(issue, :project => true) # => Foo - Defect #6 - # link_to_issue(issue, :subject => false, :tracker => false) # => #6 - # - def link_to_issue(issue, options={}) - title = nil - subject = nil - text = options[:tracker] == false ? "##{issue.id}" : "#{issue.tracker} ##{issue.id}" - if options[:subject] == false - title = issue.subject.truncate(60) - else - subject = issue.subject - if truncate_length = options[:truncate] - subject = subject.truncate(truncate_length) - end - end - only_path = options[:only_path].nil? ? true : options[:only_path] - s = link_to(text, issue_url(issue, :only_path => only_path), - :class => issue.css_classes, :title => title) - s << h(": #{subject}") if subject - s = h("#{issue.project} - ") + s if options[:project] - s - end - - # Generates a link to an attachment. - # Options: - # * :text - Link text (default to attachment filename) - # * :download - Force download (default: false) - def link_to_attachment(attachment, options={}) - text = options.delete(:text) || attachment.filename - if options.delete(:download) - route_method = :download_named_attachment_url - options[:filename] = attachment.filename - else - route_method = :attachment_url - # make sure we don't have an extraneous :filename in the options - options.delete(:filename) - end - html_options = options.slice!(:only_path, :filename) - options[:only_path] = true unless options.key?(:only_path) - url = send(route_method, attachment, options) - link_to text, url, html_options - end - - # Generates a link to a SCM revision - # Options: - # * :text - Link text (default to the formatted revision) - def link_to_revision(revision, repository, options={}) - if repository.is_a?(Project) - repository = repository.repository - end - text = options.delete(:text) || format_revision(revision) - rev = revision.respond_to?(:identifier) ? revision.identifier : revision - link_to( - h(text), - {:controller => 'repositories', :action => 'revision', :id => repository.project, :repository_id => repository.identifier_param, :rev => rev}, - :title => l(:label_revision_id, format_revision(revision)), - :accesskey => options[:accesskey] - ) - end - - # Generates a link to a message - def link_to_message(message, options={}, html_options = nil) - link_to( - message.subject.truncate(60), - board_message_url(message.board_id, message.parent_id || message.id, { - :r => (message.parent_id && message.id), - :anchor => (message.parent_id ? "message-#{message.id}" : nil), - :only_path => true - }.merge(options)), - html_options - ) - end - - # Generates a link to a project if active - # Examples: - # - # link_to_project(project) # => link to the specified project overview - # link_to_project(project, {:only_path => false}, :class => "project") # => 3rd arg adds html options - # link_to_project(project, {}, :class => "project") # => html options with default url (project overview) - # - def link_to_project(project, options={}, html_options = nil) - if project.archived? - h(project.name) - else - link_to project.name, - project_url(project, {:only_path => true}.merge(options)), - html_options - end - end - - # Generates a link to a project settings if active - def link_to_project_settings(project, options={}, html_options=nil) - if project.active? - link_to project.name, settings_project_path(project, options), html_options - elsif project.archived? - h(project.name) - else - link_to project.name, project_path(project, options), html_options - end - end - - # Generates a link to a version - def link_to_version(version, options = {}) - return '' unless version && version.is_a?(Version) - options = {:title => format_date(version.effective_date)}.merge(options) - link_to_if version.visible?, format_version_name(version), version_path(version), options - end - - RECORD_LINK = { - 'CustomValue' => -> (custom_value) { link_to_record(custom_value.customized) }, - 'Document' => -> (document) { link_to(document.title, document_path(document)) }, - 'Group' => -> (group) { link_to(group.name, group_path(group)) }, - 'Issue' => -> (issue) { link_to_issue(issue, :subject => false) }, - 'Message' => -> (message) { link_to_message(message) }, - 'News' => -> (news) { link_to(news.title, news_path(news)) }, - 'Project' => -> (project) { link_to_project(project) }, - 'User' => -> (user) { link_to_user(user) }, - 'Version' => -> (version) { link_to_version(version) }, - 'WikiPage' => -> (wiki_page) { link_to(wiki_page.pretty_title, project_wiki_page_path(wiki_page.project, wiki_page.title)) } - } - - def link_to_record(record) - if link = RECORD_LINK[record.class.name] - self.instance_exec(record, &link) - end - end - - ATTACHMENT_CONTAINER_LINK = { - # Custom list, since project/version attachments are listed in the files - # view and not in the project/milestone view - 'Project' => -> (project) { link_to(l(:project_module_files), project_files_path(project)) }, - 'Version' => -> (version) { link_to(l(:project_module_files), project_files_path(version.project)) }, - } - - def link_to_attachment_container(attachment_container) - if link = ATTACHMENT_CONTAINER_LINK[attachment_container.class.name] || - RECORD_LINK[attachment_container.class.name] - self.instance_exec(attachment_container, &link) - end - end - - # Helper that formats object for html or text rendering - def format_object(object, html=true, &block) - if block_given? - object = yield object - end - case object.class.name - when 'Array' - formatted_objects = object.map {|o| format_object(o, html)} - html ? safe_join(formatted_objects, ', ') : formatted_objects.join(', ') - when 'Time' - format_time(object) - when 'Date' - format_date(object) - when 'Fixnum' - object.to_s - when 'Float' - sprintf "%.2f", object - when 'User' - html ? link_to_user(object) : object.to_s - when 'Project' - html ? link_to_project(object) : object.to_s - when 'Version' - html ? link_to_version(object) : object.to_s - when 'TrueClass' - l(:general_text_Yes) - when 'FalseClass' - l(:general_text_No) - when 'Issue' - object.visible? && html ? link_to_issue(object) : "##{object.id}" - when 'Attachment' - html ? link_to_attachment(object) : object.filename - when 'CustomValue', 'CustomFieldValue' - if object.custom_field - f = object.custom_field.format.formatted_custom_value(self, object, html) - if f.nil? || f.is_a?(String) - f - else - format_object(f, html, &block) - end - else - object.value.to_s - end - else - html ? h(object) : object.to_s - end - end - - def wiki_page_path(page, options={}) - url_for({:controller => 'wiki', :action => 'show', :project_id => page.project, :id => page.title}.merge(options)) - end - - def thumbnail_tag(attachment) - thumbnail_size = Setting.thumbnails_size.to_i - link_to( - image_tag( - thumbnail_path(attachment), - :srcset => "#{thumbnail_path(attachment, :size => thumbnail_size * 2)} 2x", - :style => "max-width: #{thumbnail_size}px; max-height: #{thumbnail_size}px;" - ), - attachment_path( - attachment - ), - :title => attachment.filename - ) - end - - def toggle_link(name, id, options={}) - onclick = +"$('##{id}').toggle(); " - onclick << (options[:focus] ? "$('##{options[:focus]}').focus(); " : "this.blur(); ") - onclick << "$(window).scrollTop($('##{options[:focus]}').position().top); " if options[:scroll] - onclick << "return false;" - link_to(name, "#", :onclick => onclick) - end - - def link_to_previous_month(year, month, options={}) - target_year, target_month = if month == 1 - [year - 1, 12] - else - [year, month - 1] - end - - name = if target_month == 12 - "#{month_name(target_month)} #{target_year}" - else - month_name(target_month) - end - - link_to_month(("« " + name), target_year, target_month, options) - end - - def link_to_next_month(year, month, options={}) - target_year, target_month = if month == 12 - [year + 1, 1] - else - [year, month + 1] - end - - name = if target_month == 1 - "#{month_name(target_month)} #{target_year}" - else - month_name(target_month) - end - - link_to_month((name + " »"), target_year, target_month, options) - end - - def link_to_month(link_name, year, month, options={}) - link_to(link_name, {:params => request.query_parameters.merge(:year => year, :month => month)}, options) - end - - # Used to format item titles on the activity view - def format_activity_title(text) - text - end - - def format_activity_day(date) - date == User.current.today ? l(:label_today).titleize : format_date(date) - end - - def format_activity_description(text) - h(text.to_s.truncate(120).gsub(%r{[\r\n]*<(pre|code)>.*$}m, '...') - ).gsub(/[\r\n]+/, "
").html_safe - end - - def format_version_name(version) - if version.project == @project - h(version) - else - h("#{version.project} - #{version}") - end - end - - def format_changeset_comments(changeset, options={}) - method = options[:short] ? :short_comments : :comments - textilizable changeset, method, :formatting => Setting.commit_logs_formatting? - end - - def due_date_distance_in_words(date) - if date - l((date < User.current.today ? :label_roadmap_overdue : :label_roadmap_due_in), distance_of_date_in_words(User.current.today, date)) - end - end - - # Renders a tree of projects as a nested set of unordered lists - # The given collection may be a subset of the whole project tree - # (eg. some intermediate nodes are private and can not be seen) - def render_project_nested_lists(projects, &block) - s = +'' - if projects.any? - ancestors = [] - original_project = @project - projects.sort_by(&:lft).each do |project| - # set the project environment to please macros. - @project = project - if ancestors.empty? || project.is_descendant_of?(ancestors.last) - s << "
    \n" - else - ancestors.pop - s << "" - while ancestors.any? && !project.is_descendant_of?(ancestors.last) - ancestors.pop - s << "
\n" - end - end - classes = (ancestors.empty? ? 'root' : 'child') - s << "
  • " - s << h(block_given? ? capture(project, &block) : project.name) - s << "
    \n" - ancestors << project - end - s << ("
  • \n" * ancestors.size) - @project = original_project - end - s.html_safe - end - - def render_page_hierarchy(pages, node=nil, options={}) - content = +'' - if pages[node] - content << "
      \n" - pages[node].each do |page| - content << "
    • " - if controller.controller_name == 'wiki' && controller.action_name == 'export' - href = "##{page.title}" - else - href = {:controller => 'wiki', :action => 'show', :project_id => page.project, :id => page.title, :version => nil} - end - content << link_to(h(page.pretty_title), href, - :title => (options[:timestamp] && page.updated_on ? l(:label_updated_time, distance_of_time_in_words(Time.now, page.updated_on)) : nil)) - content << "\n" + render_page_hierarchy(pages, page.id, options) if pages[page.id] - content << "
    • \n" - end - content << "
    \n" - end - content.html_safe - end - - # Renders flash messages - def render_flash_messages - s = +'' - flash.each do |k,v| - s << content_tag('div', v.html_safe, :class => "flash #{k}", :id => "flash_#{k}") - end - s.html_safe - end - - # Renders tabs and their content - def render_tabs(tabs, selected=params[:tab]) - if tabs.any? - unless tabs.detect {|tab| tab[:name] == selected} - selected = nil - end - selected ||= tabs.first[:name] - render :partial => 'common/tabs', :locals => {:tabs => tabs, :selected_tab => selected} - else - content_tag 'p', l(:label_no_data), :class => "nodata" - end - end - - # Returns the tab action depending on the tab properties - def get_tab_action(tab) - if tab[:onclick] - return tab[:onclick] - elsif tab[:partial] - return "showTab('#{tab[:name]}', this.href)" - else - return nil - end - end - - # Returns the default scope for the quick search form - # Could be 'all', 'my_projects', 'subprojects' or nil (current project) - def default_search_project_scope - if @project && !@project.leaf? - 'subprojects' - end - end - - # Returns an array of projects that are displayed in the quick-jump box - def projects_for_jump_box(user=User.current) - if user.logged? - user.projects.active.select(:id, :name, :identifier, :lft, :rgt).to_a - else - [] - end - end - - def render_projects_for_jump_box(projects, selected=nil) - jump_box = Redmine::ProjectJumpBox.new User.current - query = params[:q] if request.format.js? - bookmarked = jump_box.bookmarked_projects(query) - recents = jump_box.recently_used_projects(query) - projects = projects - (recents + bookmarked) - projects_label = (bookmarked.any? || recents.any?) ? :label_optgroup_others : :label_project_plural - jump = params[:jump].presence || current_menu_item - s = (+'').html_safe - build_project_link = ->(project, level = 0){ - padding = level * 16 - text = content_tag('span', project.name, :style => "padding-left:#{padding}px;") - s << link_to(text, project_path(project, :jump => jump), - :title => project.name, - :class => (project == selected ? 'selected' : nil)) - } - [ - [bookmarked, :label_optgroup_bookmarks, true], - [recents, :label_optgroup_recents, false], - [projects, projects_label, true] - ].each do |projects, label, is_tree| - next if projects.blank? - s << content_tag(:strong, l(label)) - if is_tree - project_tree(projects, &build_project_link) - else - # we do not want to render recently used projects as a tree, but in the - # order they were used (most recent first) - projects.each(&build_project_link) - end - end - s - end - - # Renders the project quick-jump box - def render_project_jump_box - projects = projects_for_jump_box(User.current) - if @project && @project.persisted? - text = @project.name_was - end - text ||= l(:label_jump_to_a_project) - url = autocomplete_projects_path(:format => 'js', :jump => current_menu_item) - trigger = content_tag('span', text, :class => 'drdn-trigger') - q = text_field_tag('q', '', :id => 'projects-quick-search', - :class => 'autocomplete', - :data => {:automcomplete_url => url}, - :autocomplete => 'off') - all = link_to(l(:label_project_all), projects_path(:jump => current_menu_item), - :class => (@project.nil? && controller.class.main_menu ? 'selected' : nil)) - content = - content_tag('div', - content_tag('div', q, :class => 'quick-search') + - content_tag('div', render_projects_for_jump_box(projects, @project), - :class => 'drdn-items projects selection') + - content_tag('div', all, :class => 'drdn-items all-projects selection'), - :class => 'drdn-content' - ) - content_tag('div', trigger + content, :id => "project-jump", :class => "drdn") - end - - def project_tree_options_for_select(projects, options = {}) - s = ''.html_safe - if blank_text = options[:include_blank] - if blank_text == true - blank_text = ' '.html_safe - end - s << content_tag('option', blank_text, :value => '') - end - project_tree(projects) do |project, level| - name_prefix = (level > 0 ? ' ' * 2 * level + '» ' : '').html_safe - tag_options = {:value => project.id} - if project == options[:selected] || (options[:selected].respond_to?(:include?) && options[:selected].include?(project)) - tag_options[:selected] = 'selected' - else - tag_options[:selected] = nil - end - tag_options.merge!(yield(project)) if block_given? - s << content_tag('option', name_prefix + h(project), tag_options) - end - s.html_safe - end - - # Yields the given block for each project with its level in the tree - # - # Wrapper for Project#project_tree - def project_tree(projects, options={}, &block) - Project.project_tree(projects, options, &block) - end - - def principals_check_box_tags(name, principals) - s = +'' - principals.each do |principal| - s << "\n" - end - s.html_safe - end - - # Returns a string for users/groups option tags - def principals_options_for_select(collection, selected=nil) - s = +'' - if collection.include?(User.current) - s << content_tag('option', "<< #{l(:label_me)} >>", :value => User.current.id) - end - groups = +'' - collection.sort.each do |element| - selected_attribute = ' selected="selected"' if option_value_selected?(element, selected) || element.id.to_s == selected - (element.is_a?(Group) ? groups : s) << %() - end - unless groups.empty? - s << %(#{groups}) - end - s.html_safe - end - - def option_tag(name, text, value, selected=nil, options={}) - content_tag 'option', value, options.merge(:value => value, :selected => (value == selected)) - end - - def truncate_single_line_raw(string, length) - string.to_s.truncate(length).gsub(%r{[\r\n]+}m, ' ') - end - - # Truncates at line break after 250 characters or options[:length] - def truncate_lines(string, options={}) - length = options[:length] || 250 - if string.to_s =~ /\A(.{#{length}}.*?)$/m - "#{$1}..." - else - string - end - end - - def anchor(text) - text.to_s.tr(' ', '_') - end - - def html_hours(text) - text.gsub(%r{(\d+)([\.:])(\d+)}, '\1\2\3').html_safe - end - - def authoring(created, author, options={}) - l(options[:label] || :label_added_time_by, :author => link_to_user(author), :age => time_tag(created)).html_safe - end - - def time_tag(time) - text = distance_of_time_in_words(Time.now, time) - if @project - link_to(text, project_activity_path(@project, :from => User.current.time_to_date(time)), :title => format_time(time)) - else - content_tag('abbr', text, :title => format_time(time)) - end - end - - def syntax_highlight_lines(name, content) - syntax_highlight(name, content).each_line.to_a - end - - def syntax_highlight(name, content) - Redmine::SyntaxHighlighting.highlight_by_filename(content, name) - end - - def to_path_param(path) - str = path.to_s.split(%r{[/\\]}).select{|p| !p.blank?}.join("/") - str.blank? ? nil : str - end - - def reorder_handle(object, options={}) - data = { - :reorder_url => options[:url] || url_for(object), - :reorder_param => options[:param] || object.class.name.underscore - } - content_tag('span', '', - :class => "icon-only icon-sort-handle sort-handle", - :data => data, - :title => l(:button_sort)) - end - - def breadcrumb(*args) - elements = args.flatten - elements.any? ? content_tag('p', (args.join(" \xc2\xbb ") + " \xc2\xbb ").html_safe, :class => 'breadcrumb') : nil - end - - def other_formats_links(&block) - concat('

    '.html_safe + l(:label_export_to)) - yield Redmine::Views::OtherFormatsBuilder.new(self) - concat('

    '.html_safe) - end - - def page_header_title - if @project.nil? || @project.new_record? - h(Setting.app_title) - else - b = [] - ancestors = (@project.root? ? [] : @project.ancestors.visible.to_a) - if ancestors.any? - root = ancestors.shift - b << link_to_project(root, {:jump => current_menu_item}, :class => 'root') - if ancestors.size > 2 - b << "\xe2\x80\xa6" - ancestors = ancestors[-2, 2] - end - b += ancestors.collect {|p| link_to_project(p, {:jump => current_menu_item}, :class => 'ancestor') } - end - b << content_tag(:span, h(@project), class: 'current-project') - if b.size > 1 - separator = content_tag(:span, ' » '.html_safe, class: 'separator') - path = safe_join(b[0..-2], separator) + separator - b = [content_tag(:span, path.html_safe, class: 'breadcrumbs'), b[-1]] - end - safe_join b - end - end - - # Returns a h2 tag and sets the html title with the given arguments - def title(*args) - strings = args.map do |arg| - if arg.is_a?(Array) && arg.size >= 2 - link_to(*arg) - else - h(arg.to_s) - end - end - html_title args.reverse.map {|s| (s.is_a?(Array) ? s.first : s).to_s} - content_tag('h2', strings.join(' » ').html_safe) - end - - # Sets the html title - # Returns the html title when called without arguments - # Current project name and app_title and automatically appended - # Exemples: - # html_title 'Foo', 'Bar' - # html_title # => 'Foo - Bar - My Project - Redmine' - def html_title(*args) - if args.empty? - title = @html_title || [] - title << @project.name if @project - title << Setting.app_title unless Setting.app_title == title.last - title.reject(&:blank?).join(' - ') - else - @html_title ||= [] - @html_title += args - end - end - - def actions_dropdown(&block) - content = capture(&block) - if content.present? - trigger = content_tag('span', l(:button_actions), :class => 'icon-only icon-actions', :title => l(:button_actions)) - trigger = content_tag('span', trigger, :class => 'drdn-trigger') - content = content_tag('div', content, :class => 'drdn-items') - content = content_tag('div', content, :class => 'drdn-content') - content_tag('span', trigger + content, :class => 'drdn') - end - end - - # Returns the theme, controller name, and action as css classes for the - # HTML body. - def body_css_classes - css = [] - if theme = Redmine::Themes.theme(Setting.ui_theme) - css << 'theme-' + theme.name - end - - css << 'project-' + @project.identifier if @project && @project.identifier.present? - css << 'has-main-menu' if display_main_menu?(@project) - css << 'controller-' + controller_name - css << 'action-' + action_name - css << 'avatars-' + (Setting.gravatar_enabled? ? 'on' : 'off') - if UserPreference::TEXTAREA_FONT_OPTIONS.include?(User.current.pref.textarea_font) - css << "textarea-#{User.current.pref.textarea_font}" - end - css.join(' ') - end - - def accesskey(s) - @used_accesskeys ||= [] - key = Redmine::AccessKeys.key_for(s) - return nil if @used_accesskeys.include?(key) - @used_accesskeys << key - key - end - - # Formats text according to system settings. - # 2 ways to call this method: - # * with a String: textilizable(text, options) - # * with an object and one of its attribute: textilizable(issue, :description, options) - def textilizable(*args) - options = args.last.is_a?(Hash) ? args.pop : {} - case args.size - when 1 - obj = options[:object] - text = args.shift - when 2 - obj = args.shift - attr = args.shift - text = obj.send(attr).to_s - else - raise ArgumentError, 'invalid arguments to textilizable' - end - return '' if text.blank? - project = options[:project] || @project || (obj && obj.respond_to?(:project) ? obj.project : nil) - @only_path = only_path = options.delete(:only_path) == false ? false : true - - text = text.dup - macros = catch_macros(text) - - if options[:formatting] == false - text = h(text) - else - formatting = Setting.text_formatting - text = Redmine::WikiFormatting.to_html(formatting, text, :object => obj, :attribute => attr) - end - - @parsed_headings = [] - @heading_anchors = {} - @current_section = 0 if options[:edit_section_links] - - parse_sections(text, project, obj, attr, only_path, options) - text = parse_non_pre_blocks(text, obj, macros, options) do |text| - [:parse_inline_attachments, :parse_hires_images, :parse_wiki_links, :parse_redmine_links].each do |method_name| - send method_name, text, project, obj, attr, only_path, options - end - end - parse_headings(text, project, obj, attr, only_path, options) - - if @parsed_headings.any? - replace_toc(text, @parsed_headings) - end - - text.html_safe - end - - def parse_non_pre_blocks(text, obj, macros, options={}) - s = StringScanner.new(text) - tags = [] - parsed = +'' - while !s.eos? - s.scan(/(.*?)(<(\/)?(pre|code)(.*?)>|\z)/im) - text, full_tag, closing, tag = s[1], s[2], s[3], s[4] - if tags.empty? - yield text - inject_macros(text, obj, macros, true, options) if macros.any? - else - inject_macros(text, obj, macros, false, options) if macros.any? - end - parsed << text - if tag - if closing - if tags.last && tags.last.casecmp(tag) == 0 - tags.pop - end - else - tags << tag.downcase - end - parsed << full_tag - end - end - # Close any non closing tags - while tag = tags.pop - parsed << "" - end - parsed - end - - # add srcset attribute to img tags if filename includes @2x, @3x, etc. - # to support hires displays - def parse_hires_images(text, project, obj, attr, only_path, options) - text.gsub!(/src="([^"]+@(\dx)\.(bmp|gif|jpg|jpe|jpeg|png))"/i) do |m| - filename, dpr = $1, $2 - m + " srcset=\"#{filename} #{dpr}\"" - end - end - - def parse_inline_attachments(text, project, obj, attr, only_path, options) - return if options[:inline_attachments] == false - - # when using an image link, try to use an attachment, if possible - attachments = options[:attachments] || [] - attachments += obj.attachments if obj.respond_to?(:attachments) - if attachments.present? - text.gsub!(/src="([^\/"]+\.(bmp|gif|jpg|jpe|jpeg|png))"(\s+alt="([^"]*)")?/i) do |m| - filename, ext, alt, alttext = $1, $2, $3, $4 - # search for the picture in attachments - if found = Attachment.latest_attach(attachments, CGI.unescape(filename)) - image_url = download_named_attachment_url(found, found.filename, :only_path => only_path) - desc = found.description.to_s.gsub('"', '') - if !desc.blank? && alttext.blank? - alt = " title=\"#{desc}\" alt=\"#{desc}\"" - end - "src=\"#{image_url}\"#{alt}" - else - m - end - end - end - end - - # Wiki links - # - # Examples: - # [[mypage]] - # [[mypage|mytext]] - # wiki links can refer other project wikis, using project name or identifier: - # [[project:]] -> wiki starting page - # [[project:|mytext]] - # [[project:mypage]] - # [[project:mypage|mytext]] - def parse_wiki_links(text, project, obj, attr, only_path, options) - text.gsub!(/(!)?(\[\[([^\n\|]+?)(\|([^\n\|]+?))?\]\])/) do |m| - link_project = project - esc, all, page, title = $1, $2, $3, $5 - if esc.nil? - page = CGI.unescapeHTML(page) - if page =~ /^\#(.+)$/ - anchor = sanitize_anchor_name($1) - url = "##{anchor}" - next link_to(title.present? ? title.html_safe : h(page), url, :class => 'wiki-page') - end - - if page =~ /^([^\:]+)\:(.*)$/ - identifier, page = $1, $2 - link_project = Project.find_by_identifier(identifier) || Project.find_by_name(identifier) - title ||= identifier if page.blank? - end - - if link_project && link_project.wiki && User.current.allowed_to?(:view_wiki_pages, link_project) - # extract anchor - anchor = nil - if page =~ /^(.+?)\#(.+)$/ - page, anchor = $1, $2 - end - anchor = sanitize_anchor_name(anchor) if anchor.present? - # check if page exists - wiki_page = link_project.wiki.find_page(page) - url = - if anchor.present? && wiki_page.present? && - (obj.is_a?(WikiContent) || obj.is_a?(WikiContent::Version)) && - obj.page == wiki_page - "##{anchor}" - else - case options[:wiki_links] - when :local - "#{page.present? ? Wiki.titleize(page) : ''}.html" + (anchor.present? ? "##{anchor}" : '') - when :anchor - # used for single-file wiki export - "##{page.present? ? Wiki.titleize(page) : title}" + (anchor.present? ? "_#{anchor}" : '') - else - wiki_page_id = page.present? ? Wiki.titleize(page) : nil - parent = wiki_page.nil? && obj.is_a?(WikiContent) && obj.page && project == link_project ? obj.page.title : nil - url_for(:only_path => only_path, :controller => 'wiki', - :action => 'show', :project_id => link_project, - :id => wiki_page_id, :version => nil, :anchor => anchor, - :parent => parent) - end - end - link_to(title.present? ? title.html_safe : h(page), url, :class => ('wiki-page' + (wiki_page ? '' : ' new'))) - else - # project or wiki doesn't exist - all - end - else - all - end - end - end - - # Redmine links - # - # Examples: - # Issues: - # #52 -> Link to issue #52 - # ##52 -> Link to issue #52, including the issue's subject - # Changesets: - # r52 -> Link to revision 52 - # commit:a85130f -> Link to scmid starting with a85130f - # Documents: - # document#17 -> Link to document with id 17 - # document:Greetings -> Link to the document with title "Greetings" - # document:"Some document" -> Link to the document with title "Some document" - # Versions: - # version#3 -> Link to version with id 3 - # version:1.0.0 -> Link to version named "1.0.0" - # version:"1.0 beta 2" -> Link to version named "1.0 beta 2" - # Attachments: - # attachment:file.zip -> Link to the attachment of the current object named file.zip - # Source files: - # source:some/file -> Link to the file located at /some/file in the project's repository - # source:some/file@52 -> Link to the file's revision 52 - # source:some/file#L120 -> Link to line 120 of the file - # source:some/file@52#L120 -> Link to line 120 of the file's revision 52 - # export:some/file -> Force the download of the file - # Forums: - # forum#1 -> Link to forum with id 1 - # forum:Support -> Link to forum named "Support" - # forum:"Technical Support" -> Link to forum named "Technical Support" - # Forum messages: - # message#1218 -> Link to message with id 1218 - # Projects: - # project:someproject -> Link to project named "someproject" - # project#3 -> Link to project with id 3 - # News: - # news#2 -> Link to news item with id 1 - # news:Greetings -> Link to news item named "Greetings" - # news:"First Release" -> Link to news item named "First Release" - # Users: - # user:jsmith -> Link to user with login jsmith - # @jsmith -> Link to user with login jsmith - # user#2 -> Link to user with id 2 - # - # Links can refer other objects from other projects, using project identifier: - # identifier:r52 - # identifier:document:"Some document" - # identifier:version:1.0.0 - # identifier:source:some/file - def parse_redmine_links(text, default_project, obj, attr, only_path, options) - text.gsub!(LINKS_RE) do |_| - tag_content = $~[:tag_content] - leading = $~[:leading] - esc = $~[:esc] - project_prefix = $~[:project_prefix] - project_identifier = $~[:project_identifier] - prefix = $~[:prefix] - repo_prefix = $~[:repo_prefix] - repo_identifier = $~[:repo_identifier] - sep = $~[:sep1] || $~[:sep2] || $~[:sep3] || $~[:sep4] - identifier = $~[:identifier1] || $~[:identifier2] || $~[:identifier3] - comment_suffix = $~[:comment_suffix] - comment_id = $~[:comment_id] - - if tag_content - $& - else - link = nil - project = default_project - if project_identifier - project = Project.visible.find_by_identifier(project_identifier) - end - if esc.nil? - if prefix.nil? && sep == 'r' - if project - repository = nil - if repo_identifier - repository = project.repositories.detect {|repo| repo.identifier == repo_identifier} - else - repository = project.repository - end - # project.changesets.visible raises an SQL error because of a double join on repositories - if repository && - (changeset = Changeset.visible. - find_by_repository_id_and_revision(repository.id, identifier)) - link = link_to(h("#{project_prefix}#{repo_prefix}r#{identifier}"), - {:only_path => only_path, :controller => 'repositories', - :action => 'revision', :id => project, - :repository_id => repository.identifier_param, - :rev => changeset.revision}, - :class => 'changeset', - :title => truncate_single_line_raw(changeset.comments, 100)) - end - end - elsif sep == '#' || sep == '##' - oid = identifier.to_i - case prefix - when nil - if oid.to_s == identifier && - issue = Issue.visible.find_by_id(oid) - anchor = comment_id ? "note-#{comment_id}" : nil - url = issue_url(issue, :only_path => only_path, :anchor => anchor) - link = - if sep == '##' - link_to("#{issue.tracker.name} ##{oid}#{comment_suffix}: #{issue.subject}", - url, - :class => issue.css_classes, - :title => "#{l(:field_status)}: #{issue.status.name}") - else - link_to("##{oid}#{comment_suffix}", - url, - :class => issue.css_classes, - :title => "#{issue.tracker.name}: #{issue.subject.truncate(100)} (#{issue.status.name})") - end - elsif identifier == 'note' - link = link_to("#note-#{comment_id}", "#note-#{comment_id}") - end - when 'document' - if document = Document.visible.find_by_id(oid) - link = link_to(document.title, document_url(document, :only_path => only_path), :class => 'document') - end - when 'version' - if version = Version.visible.find_by_id(oid) - link = link_to(version.name, version_url(version, :only_path => only_path), :class => 'version') - end - when 'message' - if message = Message.visible.find_by_id(oid) - link = link_to_message(message, {:only_path => only_path}, :class => 'message') - end - when 'forum' - if board = Board.visible.find_by_id(oid) - link = link_to(board.name, project_board_url(board.project, board, :only_path => only_path), :class => 'board') - end - when 'news' - if news = News.visible.find_by_id(oid) - link = link_to(news.title, news_url(news, :only_path => only_path), :class => 'news') - end - when 'project' - if p = Project.visible.find_by_id(oid) - link = link_to_project(p, {:only_path => only_path}, :class => 'project') - end - when 'user' - u = User.visible.find_by(:id => oid, :type => 'User') - link = link_to_user(u, :only_path => only_path) if u - end - elsif sep == ':' - name = remove_double_quotes(identifier) - case prefix - when 'document' - if project && document = project.documents.visible.find_by_title(name) - link = link_to(document.title, document_url(document, :only_path => only_path), :class => 'document') - end - when 'version' - if project && version = project.versions.visible.find_by_name(name) - link = link_to(version.name, version_url(version, :only_path => only_path), :class => 'version') - end - when 'forum' - if project && board = project.boards.visible.find_by_name(name) - link = link_to(board.name, project_board_url(board.project, board, :only_path => only_path), :class => 'board') - end - when 'news' - if project && news = project.news.visible.find_by_title(name) - link = link_to(news.title, news_url(news, :only_path => only_path), :class => 'news') - end - when 'commit', 'source', 'export' - if project - repository = nil - if name =~ %r{^(([a-z0-9\-_]+)\|)(.+)$} - repo_prefix, repo_identifier, name = $1, $2, $3 - repository = project.repositories.detect {|repo| repo.identifier == repo_identifier} - else - repository = project.repository - end - if prefix == 'commit' - if repository && (changeset = Changeset.visible.where("repository_id = ? AND scmid LIKE ?", repository.id, "#{name}%").first) - link = link_to( - h("#{project_prefix}#{repo_prefix}#{name}"), - {:only_path => only_path, :controller => 'repositories', - :action => 'revision', :id => project, - :repository_id => repository.identifier_param, - :rev => changeset.identifier}, - :class => 'changeset', - :title => truncate_single_line_raw(changeset.comments, 100)) - end - else - if repository && User.current.allowed_to?(:browse_repository, project) - name =~ %r{^[/\\]*(.*?)(@([^/\\@]+?))?(#(L\d+))?$} - path, rev, anchor = $1, $3, $5 - link = - link_to( - h("#{project_prefix}#{prefix}:#{repo_prefix}#{name}"), - {:only_path => only_path, :controller => 'repositories', - :action => (prefix == 'export' ? 'raw' : 'entry'), - :id => project, :repository_id => repository.identifier_param, - :path => to_path_param(path), - :rev => rev, - :anchor => anchor}, - :class => (prefix == 'export' ? 'source download' : 'source')) - end - end - repo_prefix = nil - end - when 'attachment' - attachments = options[:attachments] || [] - attachments += obj.attachments if obj.respond_to?(:attachments) - if attachments && attachment = Attachment.latest_attach(attachments, name) - link = link_to_attachment(attachment, :only_path => only_path, :class => 'attachment') - end - when 'project' - if p = Project.visible.where("identifier = :s OR LOWER(name) = :s", :s => name.downcase).first - link = link_to_project(p, {:only_path => only_path}, :class => 'project') - end - when 'user' - u = User.visible.find_by("LOWER(login) = :s AND type = 'User'", :s => name.downcase) - link = link_to_user(u, :only_path => only_path) if u - end - elsif sep == "@" - name = remove_double_quotes(identifier) - u = User.visible.find_by("LOWER(login) = :s AND type = 'User'", :s => name.downcase) - link = link_to_user(u, :only_path => only_path) if u - end - end - (leading + (link || "#{project_prefix}#{prefix}#{repo_prefix}#{sep}#{identifier}#{comment_suffix}")) - end - end - end - - LINKS_RE = - %r{ - ]+?)?>(?.*?)| - (?[\s\(,\-\[\>]|^) - (?!)? - (?(?[a-z0-9\-_]+):)? - (?attachment|document|version|forum|news|message|project|commit|source|export|user)? - ( - ( - (?\#\#?)| - ( - (?(?[a-z0-9\-_]+)\|)? - (?r) - ) - ) - ( - (?((\d)+|(note))) - (? - (\#note)? - -(?\d+) - )? - )| - ( - (?:) - (?[^"\s<>][^\s<>]*?|"[^"]+?") - )| - ( - (?@) - (?[A-Za-z0-9_\-@\.]*?) - ) - ) - (?= - (?=[[:punct:]][^A-Za-z0-9_/])| - ,| - \s| - \]| - <| - $) - }x - HEADING_RE = /(]+)?>(.+?)<\/h(\d)>)/i unless const_defined?(:HEADING_RE) - - def parse_sections(text, project, obj, attr, only_path, options) - return unless options[:edit_section_links] - text.gsub!(HEADING_RE) do - heading, level = $1, $2 - @current_section += 1 - if @current_section > 1 - content_tag( - 'div', - link_to( - l(:button_edit_section), - options[:edit_section_links].merge( - :section => @current_section), - :class => 'icon-only icon-edit'), - :class => "contextual heading-#{level}", - :title => l(:button_edit_section), - :id => "section-#{@current_section}") + heading.html_safe - else - heading - end - end - end - - # Headings and TOC - # Adds ids and links to headings unless options[:headings] is set to false - def parse_headings(text, project, obj, attr, only_path, options) - return if options[:headings] == false - - text.gsub!(HEADING_RE) do - level, attrs, content = $2.to_i, $3, $4 - item = strip_tags(content).strip - anchor = sanitize_anchor_name(item) - # used for single-file wiki export - anchor = "#{obj.page.title}_#{anchor}" if options[:wiki_links] == :anchor && (obj.is_a?(WikiContent) || obj.is_a?(WikiContent::Version)) - @heading_anchors[anchor] ||= 0 - idx = (@heading_anchors[anchor] += 1) - if idx > 1 - anchor = "#{anchor}-#{idx}" - end - @parsed_headings << [level, anchor, item] - "\n#{content}" - end - end - - MACROS_RE = /( - (!)? # escaping - ( - \{\{ # opening tag - ([\w]+) # macro name - (\(([^\n\r]*?)\))? # optional arguments - ([\n\r].*?[\n\r])? # optional block of text - \}\} # closing tag - ) - )/mx unless const_defined?(:MACROS_RE) - - MACRO_SUB_RE = /( - \{\{ - macro\((\d+)\) - \}\} - )/x unless const_defined?(:MACRO_SUB_RE) - - # Extracts macros from text - def catch_macros(text) - macros = {} - text.gsub!(MACROS_RE) do - all, macro = $1, $4.downcase - if macro_exists?(macro) || all =~ MACRO_SUB_RE - index = macros.size - macros[index] = all - "{{macro(#{index})}}" - else - all - end - end - macros - end - - # Executes and replaces macros in text - def inject_macros(text, obj, macros, execute=true, options={}) - text.gsub!(MACRO_SUB_RE) do - all, index = $1, $2.to_i - orig = macros.delete(index) - if execute && orig && orig =~ MACROS_RE - esc, all, macro, args, block = $2, $3, $4.downcase, $6.to_s, $7.try(:strip) - if esc.nil? - h(exec_macro(macro, obj, args, block, options) || all) - else - h(all) - end - elsif orig - h(orig) - else - h(all) - end - end - end - - TOC_RE = /

    \{\{((<|<)|(>|>))?toc\}\}<\/p>/i unless const_defined?(:TOC_RE) - - # Renders the TOC with given headings - def replace_toc(text, headings) - text.gsub!(TOC_RE) do - left_align, right_align = $2, $3 - # Keep only the 4 first levels - headings = headings.select{|level, anchor, item| level <= 4} - if headings.empty? - '' - else - div_class = +'toc' - div_class << ' right' if right_align - div_class << ' left' if left_align - out = +"

    • #{l :label_table_of_contents}
    • " - root = headings.map(&:first).min - current = root - started = false - headings.each do |level, anchor, item| - if level > current - out << '
      • ' * (level - current) - elsif level < current - out << "
      \n" * (current - level) + "
    • " - elsif started - out << '
    • ' - end - out << "#{item}" - current = level - started = true - end - out << '
    ' * (current - root) - out << '' - end - end - end - - # Same as Rails' simple_format helper without using paragraphs - def simple_format_without_paragraph(text) - text.to_s. - gsub(/\r\n?/, "\n"). # \r\n and \r -> \n - gsub(/\n\n+/, "

    "). # 2+ newline -> 2 br - gsub(/([^\n]\n)(?=[^\n])/, '\1
    '). # 1 newline -> br - html_safe - end - - def lang_options_for_select(blank=true) - (blank ? [["(auto)", ""]] : []) + languages_options - end - - def labelled_form_for(*args, &proc) - args << {} unless args.last.is_a?(Hash) - options = args.last - if args.first.is_a?(Symbol) - options.merge!(:as => args.shift) - end - options.merge!({:builder => Redmine::Views::LabelledFormBuilder}) - form_for(*args, &proc) - end - - def labelled_fields_for(*args, &proc) - args << {} unless args.last.is_a?(Hash) - options = args.last - options.merge!({:builder => Redmine::Views::LabelledFormBuilder}) - fields_for(*args, &proc) - end - - def form_tag_html(html_options) - # Set a randomized name attribute on all form fields by default - # as a workaround to https://bugzilla.mozilla.org/show_bug.cgi?id=1279253 - html_options['name'] ||= "#{html_options['id'] || 'form'}-#{SecureRandom.hex(4)}" - super - end - - # Render the error messages for the given objects - def error_messages_for(*objects) - objects = objects.map {|o| o.is_a?(String) ? instance_variable_get("@#{o}") : o}.compact - errors = objects.map {|o| o.errors.full_messages}.flatten - render_error_messages(errors) - end - - # Renders a list of error messages - def render_error_messages(errors) - html = +"" - if errors.present? - html << "
      \n" - errors.each do |error| - html << "
    • #{h error}
    • \n" - end - html << "
    \n" - end - html.html_safe - end - - def delete_link(url, options={}) - options = { - :method => :delete, - :data => {:confirm => l(:text_are_you_sure)}, - :class => 'icon icon-del' - }.merge(options) - - link_to l(:button_delete), url, options - end - - def link_to_function(name, function, html_options={}) - content_tag(:a, name, {:href => '#', :onclick => "#{function}; return false;"}.merge(html_options)) - end - - def link_to_context_menu - link_to l(:button_actions), '#', title: l(:button_actions), class: 'icon-only icon-actions js-contextmenu' - end - - # Helper to render JSON in views - def raw_json(arg) - arg.to_json.to_s.gsub('/', '\/').html_safe - end - - def back_url_hidden_field_tag - url = validate_back_url(back_url) - hidden_field_tag('back_url', url, :id => nil) unless url.blank? - end - - def cancel_button_tag(fallback_url) - url = validate_back_url(back_url) || fallback_url - link_to l(:button_cancel), url - end - - def check_all_links(form_name) - link_to_function(l(:button_check_all), "checkAll('#{form_name}', true)") + - " | ".html_safe + - link_to_function(l(:button_uncheck_all), "checkAll('#{form_name}', false)") - end - - def toggle_checkboxes_link(selector) - link_to_function '', - "toggleCheckboxesBySelector('#{selector}')", - :title => "#{l(:button_check_all)} / #{l(:button_uncheck_all)}", - :class => 'icon icon-checked' - end - - def progress_bar(pcts, options={}) - pcts = [pcts, pcts] unless pcts.is_a?(Array) - pcts = pcts.collect(&:floor) - pcts[1] = pcts[1] - pcts[0] - pcts << (100 - pcts[1] - pcts[0]) - titles = options[:titles].to_a - titles[0] = "#{pcts[0]}%" if titles[0].blank? - legend = options[:legend] || '' - content_tag( - 'table', - content_tag( - 'tr', - (if pcts[0] > 0 - content_tag('td', '', :style => "width: #{pcts[0]}%;", - :class => 'closed', :title => titles[0]) - else - ''.html_safe - end) + - (if pcts[1] > 0 - content_tag('td', '', :style => "width: #{pcts[1]}%;", - :class => 'done', :title => titles[1]) - else - ''.html_safe - end) + - (if pcts[2] > 0 - content_tag('td', '', :style => "width: #{pcts[2]}%;", - :class => 'todo', :title => titles[2]) - else - ''.html_safe - end) - ), :class => "progress progress-#{pcts[0]}").html_safe + - content_tag('p', legend, :class => 'percent').html_safe - end - - def checked_image(checked=true) - if checked - @checked_image_tag ||= content_tag(:span, nil, :class => 'icon-only icon-checked') - end - end - - def context_menu - unless @context_menu_included - content_for :header_tags do - javascript_include_tag('context_menu') + - stylesheet_link_tag('context_menu') - end - if l(:direction) == 'rtl' - content_for :header_tags do - stylesheet_link_tag('context_menu_rtl') - end - end - @context_menu_included = true - end - nil - end - - def calendar_for(field_id) - include_calendar_headers_tags - javascript_tag("$(function() { $('##{field_id}').addClass('date').datepickerFallback(datepickerOptions); });") - end - - def include_calendar_headers_tags - unless @calendar_headers_tags_included - tags = ''.html_safe - @calendar_headers_tags_included = true - content_for :header_tags do - start_of_week = Setting.start_of_week - start_of_week = l(:general_first_day_of_week, :default => '1') if start_of_week.blank? - # Redmine uses 1..7 (monday..sunday) in settings and locales - # JQuery uses 0..6 (sunday..saturday), 7 needs to be changed to 0 - start_of_week = start_of_week.to_i % 7 - tags << javascript_tag( - "var datepickerOptions={dateFormat: 'yy-mm-dd', firstDay: #{start_of_week}, " + - "showOn: 'button', buttonImageOnly: true, buttonImage: '" + - path_to_image('/images/calendar.png') + - "', showButtonPanel: true, showWeek: true, showOtherMonths: true, " + - "selectOtherMonths: true, changeMonth: true, changeYear: true, " + - "beforeShow: beforeShowDatePicker};") - jquery_locale = l('jquery.locale', :default => current_language.to_s) - unless jquery_locale == 'en' - tags << javascript_include_tag("i18n/datepicker-#{jquery_locale}.js") - end - tags - end - end - end - - # Overrides Rails' stylesheet_link_tag with themes and plugins support. - # Examples: - # stylesheet_link_tag('styles') # => picks styles.css from the current theme or defaults - # stylesheet_link_tag('styles', :plugin => 'foo) # => picks styles.css from plugin's assets - # - def stylesheet_link_tag(*sources) - options = sources.last.is_a?(Hash) ? sources.pop : {} - plugin = options.delete(:plugin) - sources = sources.map do |source| - if plugin - "/plugin_assets/#{plugin}/stylesheets/#{source}" - elsif current_theme && current_theme.stylesheets.include?(source) - current_theme.stylesheet_path(source) - else - source - end - end - super *sources, options - end - - # Overrides Rails' image_tag with themes and plugins support. - # Examples: - # image_tag('image.png') # => picks image.png from the current theme or defaults - # image_tag('image.png', :plugin => 'foo) # => picks image.png from plugin's assets - # - def image_tag(source, options={}) - if plugin = options.delete(:plugin) - source = "/plugin_assets/#{plugin}/images/#{source}" - elsif current_theme && current_theme.images.include?(source) - source = current_theme.image_path(source) - end - super source, options - end - - # Overrides Rails' javascript_include_tag with plugins support - # Examples: - # javascript_include_tag('scripts') # => picks scripts.js from defaults - # javascript_include_tag('scripts', :plugin => 'foo) # => picks scripts.js from plugin's assets - # - def javascript_include_tag(*sources) - options = sources.last.is_a?(Hash) ? sources.pop : {} - if plugin = options.delete(:plugin) - sources = sources.map do |source| - if plugin - "/plugin_assets/#{plugin}/javascripts/#{source}" - else - source - end - end - end - super *sources, options - end - - def sidebar_content? - content_for?(:sidebar) || view_layouts_base_sidebar_hook_response.present? - end - - def view_layouts_base_sidebar_hook_response - @view_layouts_base_sidebar_hook_response ||= call_hook(:view_layouts_base_sidebar) - end - - def email_delivery_enabled? - !!ActionMailer::Base.perform_deliveries - end - - def sanitize_anchor_name(anchor) - anchor.gsub(%r{[^\s\-\p{Word}]}, '').gsub(%r{\s+(\-+\s*)?}, '-') - end - - # Returns the javascript tags that are included in the html layout head - def javascript_heads - tags = javascript_include_tag('jquery-2.2.4-ui-1.11.0-ujs-5.2.4.5', 'tribute-3.7.3.min', 'application', 'responsive') - unless User.current.pref.warn_on_leaving_unsaved == '0' - tags << "\n".html_safe + javascript_tag("$(window).on('load', function(){ warnLeavingUnsaved('#{escape_javascript l(:text_warn_on_leaving_unsaved)}'); });") - end - tags - end - - def favicon - "".html_safe - end - - # Returns the path to the favicon - def favicon_path - icon = (current_theme && current_theme.favicon?) ? current_theme.favicon_path : '/favicon.ico' - image_path(icon) - end - - # Returns the full URL to the favicon - def favicon_url - # TODO: use #image_url introduced in Rails4 - path = favicon_path - base = url_for(:controller => 'welcome', :action => 'index', :only_path => false) - base.sub(%r{/+$},'') + '/' + path.sub(%r{^/+},'') - end - - def robot_exclusion_tag - ''.html_safe - end - - # Returns true if arg is expected in the API response - def include_in_api_response?(arg) - unless @included_in_api_response - param = params[:include] - @included_in_api_response = param.is_a?(Array) ? param.collect(&:to_s) : param.to_s.split(',') - @included_in_api_response.collect!(&:strip) - end - @included_in_api_response.include?(arg.to_s) - end - - # Returns options or nil if nometa param or X-Redmine-Nometa header - # was set in the request - def api_meta(options) - if params[:nometa].present? || request.headers['X-Redmine-Nometa'] - # compatibility mode for activeresource clients that raise - # an error when deserializing an array with attributes - nil - else - options - end - end - - def export_csv_encoding_select_tag - return if l(:general_csv_encoding).casecmp('UTF-8') == 0 - options = [l(:general_csv_encoding), 'UTF-8'] - content_tag(:p) do - concat( - content_tag(:label) do - concat l(:label_encoding) + ' ' - concat select_tag('encoding', options_for_select(options, l(:general_csv_encoding))) - end - ) - end - end - - # Returns an array of error messages for bulk edited items (issues, time entries) - def bulk_edit_error_messages(items) - messages = {} - items.each do |item| - item.errors.full_messages.each do |message| - messages[message] ||= [] - messages[message] << item - end - end - messages.map { |message, items| - "#{message}: " + items.map {|i| "##{i.id}"}.join(', ') - } - end - - private - - def wiki_helper - helper = Redmine::WikiFormatting.helper_for(Setting.text_formatting) - extend helper - return self - end - - # remove double quotes if any - def remove_double_quotes(identifier) - name = identifier.gsub(%r{^"(.*)"$}, "\\1") - return CGI.unescapeHTML(name) - end -end diff --git a/app/helpers/attachments_helper.rb b/app/helpers/attachments_helper.rb deleted file mode 100644 index d03997c..0000000 --- a/app/helpers/attachments_helper.rb +++ /dev/null @@ -1,98 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -module AttachmentsHelper - - def container_attachments_edit_path(container) - object_attachments_edit_path container.class.name.underscore.pluralize, container.id - end - - def container_attachments_path(container) - object_attachments_path container.class.name.underscore.pluralize, container.id - end - - # Displays view/delete links to the attachments of the given object - # Options: - # :author -- author names are not displayed if set to false - # :thumbails -- display thumbnails if enabled in settings - def link_to_attachments(container, options = {}) - options.assert_valid_keys(:author, :thumbnails) - attachments = - if container.attachments.loaded? - container.attachments - else - container.attachments.preload(:author).to_a - end - if attachments.any? - options = { - :editable => container.attachments_editable?, - :deletable => container.attachments_deletable?, - :author => true - }.merge(options) - render :partial => 'attachments/links', - :locals => { - :container => container, - :attachments => attachments, - :options => options, - :thumbnails => (options[:thumbnails] && Setting.thumbnails_enabled?) - } - end - end - - def render_pagination - pagination_links_each @paginator do |text, parameters, options| - if att = @attachments[parameters[:page] - 1] - link_to text, named_attachment_path(att, att.filename) - end - end if @paginator - end - - def render_api_attachment(attachment, api, options={}) - api.attachment do - render_api_attachment_attributes(attachment, api) - options.each { |key, value| eval("api.#{key} value") } - end - end - - def render_api_attachment_attributes(attachment, api) - api.id attachment.id - api.filename attachment.filename - api.filesize attachment.filesize - api.content_type attachment.content_type - api.description attachment.description - api.content_url download_named_attachment_url(attachment, attachment.filename) - if attachment.thumbnailable? - api.thumbnail_url thumbnail_url(attachment) - end - if attachment.author - api.author(:id => attachment.author.id, :name => attachment.author.name) - end - api.created_on attachment.created_on - end - - def render_file_content(attachment, content) - if attachment.is_markdown? - render :partial => 'common/markup', :locals => {:markup_text_formatting => 'markdown', :markup_text => content} - elsif attachment.is_textile? - render :partial => 'common/markup', :locals => {:markup_text_formatting => 'textile', :markup_text => content} - else - render :partial => 'common/file', :locals => {:content => content, :filename => attachment.filename} - end - end -end diff --git a/app/helpers/auth_sources_helper.rb b/app/helpers/auth_sources_helper.rb deleted file mode 100644 index d18040b..0000000 --- a/app/helpers/auth_sources_helper.rb +++ /dev/null @@ -1,24 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -module AuthSourcesHelper - def auth_source_partial_name(auth_source) - "form_#{auth_source.class.name.underscore}" - end -end diff --git a/app/helpers/avatars_helper.rb b/app/helpers/avatars_helper.rb deleted file mode 100644 index 7e2a1ff..0000000 --- a/app/helpers/avatars_helper.rb +++ /dev/null @@ -1,75 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -module AvatarsHelper - include GravatarHelper::PublicMethods - - def assignee_avatar(user, options={}) - return '' unless user - - options.merge!(:title => l(:field_assigned_to) + ": " + user.name) - avatar(user, options).to_s.html_safe - end - - def author_avatar(user, options={}) - return '' unless user - - options.merge!(:title => l(:field_author) + ": " + user.name) - avatar(user, options).to_s.html_safe - end - - # Returns the avatar image tag for the given +user+ if avatars are enabled - # +user+ can be a User or a string that will be scanned for an email address (eg. 'joe ') - def avatar(user, options = { }) - if Setting.gravatar_enabled? - options.merge!(:default => Setting.gravatar_default) - options[:class] = GravatarHelper::DEFAULT_OPTIONS[:class] + " " + options[:class] if options[:class] - email = nil - if user.respond_to?(:mail) - email = user.mail - options[:title] = user.name unless options[:title] - elsif user.to_s =~ %r{<(.+?)>} - email = $1 - end - if email.present? - gravatar(email.to_s.downcase, options) rescue nil - elsif user.is_a?(AnonymousUser) - anonymous_avatar(options) - else - nil - end - else - '' - end - end - - # Returns a link to edit user's avatar if avatars are enabled - def avatar_edit_link(user, options={}) - if Setting.gravatar_enabled? - url = Redmine::Configuration['avatar_server_url'] - link_to avatar(user, {:title => l(:button_edit)}.merge(options)), url, :target => '_blank' - end - end - - private - - def anonymous_avatar(options={}) - image_tag 'anonymous.png', GravatarHelper::DEFAULT_OPTIONS.except(:default, :rating, :ssl).merge(options) - end -end diff --git a/app/helpers/boards_helper.rb b/app/helpers/boards_helper.rb deleted file mode 100644 index 49dae4c..0000000 --- a/app/helpers/boards_helper.rb +++ /dev/null @@ -1,41 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -module BoardsHelper - def board_breadcrumb(item) - board = item.is_a?(Message) ? item.board : item - links = [link_to(l(:label_board_plural), project_boards_path(item.project))] - boards = board.ancestors.reverse - if item.is_a?(Message) - boards << board - end - links += boards.map {|ancestor| link_to(h(ancestor.name), project_board_path(ancestor.project, ancestor))} - breadcrumb links - end - - def boards_options_for_select(boards) - options = [] - Board.board_tree(boards) do |board, level| - label = (level > 0 ? ' ' * 2 * level + '» ' : '').html_safe - label << board.name - options << [label, board.id] - end - options - end -end diff --git a/app/helpers/calendars_helper.rb b/app/helpers/calendars_helper.rb deleted file mode 100644 index a248eab..0000000 --- a/app/helpers/calendars_helper.rb +++ /dev/null @@ -1,29 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -module CalendarsHelper - include Redmine::Utils::DateCalculation - - def calendar_day_css_classes(calendar, day) - css = day.month==calendar.month ? +'even' : +'odd' - css << " today" if User.current.today == day - css << " nwday" if non_working_week_days.include?(day.cwday) - css - end -end diff --git a/app/helpers/context_menus_helper.rb b/app/helpers/context_menus_helper.rb deleted file mode 100644 index 8b509a5..0000000 --- a/app/helpers/context_menus_helper.rb +++ /dev/null @@ -1,58 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -module ContextMenusHelper - def context_menu_link(name, url, options={}) - options[:class] ||= '' - if options.delete(:selected) - options[:class] += ' icon-checked disabled' - options[:disabled] = true - end - if options.delete(:disabled) - options.delete(:method) - options.delete(:data) - options[:onclick] = 'return false;' - options[:class] += ' disabled' - url = '#' - end - link_to h(name), url, options - end - - def bulk_update_custom_field_context_menu_link(field, text, value) - context_menu_link( - h(text), - bulk_update_issues_path(:ids => @issue_ids, - :issue => {'custom_field_values' => {field.id => value}}, - :back_url => @back), - :method => :post, - :selected => (@issue && @issue.custom_field_value(field) == value) - ) - end - - def bulk_update_time_entry_custom_field_context_menu_link(field, text, value) - context_menu_link( - h(text), - bulk_update_time_entries_path(:ids => @time_entries.map(&:id).sort, - :time_entry => {'custom_field_values' => {field.id => value}}, - :back_url => @back), - :method => :post, - :selected => (@time_entry && @time_entry.custom_field_value(field) == value) - ) - end -end diff --git a/app/helpers/custom_fields_helper.rb b/app/helpers/custom_fields_helper.rb deleted file mode 100644 index 9aa1fa4..0000000 --- a/app/helpers/custom_fields_helper.rb +++ /dev/null @@ -1,217 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -module CustomFieldsHelper - - CUSTOM_FIELDS_TABS = [ - {:name => 'IssueCustomField', :partial => 'custom_fields/index', - :label => :label_issue_plural}, - {:name => 'TimeEntryCustomField', :partial => 'custom_fields/index', - :label => :label_spent_time}, - {:name => 'ProjectCustomField', :partial => 'custom_fields/index', - :label => :label_project_plural}, - {:name => 'VersionCustomField', :partial => 'custom_fields/index', - :label => :label_version_plural}, - {:name => 'DocumentCustomField', :partial => 'custom_fields/index', - :label => :label_document_plural}, - {:name => 'UserCustomField', :partial => 'custom_fields/index', - :label => :label_user_plural}, - {:name => 'GroupCustomField', :partial => 'custom_fields/index', - :label => :label_group_plural}, - {:name => 'TimeEntryActivityCustomField', :partial => 'custom_fields/index', - :label => TimeEntryActivity::OptionName}, - {:name => 'IssuePriorityCustomField', :partial => 'custom_fields/index', - :label => IssuePriority::OptionName}, - {:name => 'DocumentCategoryCustomField', :partial => 'custom_fields/index', - :label => DocumentCategory::OptionName} - ] - - def render_custom_fields_tabs(types) - tabs = CUSTOM_FIELDS_TABS.select {|h| types.include?(h[:name]) } - render_tabs tabs - end - - def custom_field_type_options - CUSTOM_FIELDS_TABS.map {|h| [l(h[:label]), h[:name]]} - end - - def custom_field_title(custom_field) - items = [] - items << [l(:label_custom_field_plural), custom_fields_path] - items << [l(custom_field.type_name), custom_fields_path(:tab => custom_field.class.name)] if custom_field - items << (custom_field.nil? || custom_field.new_record? ? l(:label_custom_field_new) : custom_field.name) - - title(*items) - end - - def render_custom_field_format_partial(form, custom_field) - partial = custom_field.format.form_partial - if partial - render :partial => custom_field.format.form_partial, :locals => {:f => form, :custom_field => custom_field} - end - end - - def custom_field_tag_name(prefix, custom_field) - name = "#{prefix}[custom_field_values][#{custom_field.id}]" - name += "[]" if custom_field.multiple? - name - end - - def custom_field_tag_id(prefix, custom_field) - "#{prefix}_custom_field_values_#{custom_field.id}" - end - - # Return custom field html tag corresponding to its format - def custom_field_tag(prefix, custom_value) - css = "#{custom_value.custom_field.field_format}_cf" - data = nil - if custom_value.custom_field.full_text_formatting? - css += ' wiki-edit' - data = { - :auto_complete => true, - :issues_url => auto_complete_issues_path(:project_id => custom_value.customized.project, :q => '') - } if custom_value.customized&.try(:project) - end - custom_value.custom_field.format.edit_tag( - self, - custom_field_tag_id(prefix, custom_value.custom_field), - custom_field_tag_name(prefix, custom_value.custom_field), - custom_value, - :class => css, - :data => data) - end - - # Return custom field name tag - def custom_field_name_tag(custom_field) - title = custom_field.description.presence - css = title ? "field-description" : nil - content_tag 'span', custom_field.name, :title => title, :class => css - end - - # Return custom field label tag - def custom_field_label_tag(name, custom_value, options={}) - required = options[:required] || custom_value.custom_field.is_required? - for_tag_id = options.fetch(:for_tag_id, "#{name}_custom_field_values_#{custom_value.custom_field.id}") - content = custom_field_name_tag custom_value.custom_field - content_tag( - "label", content + - (required ? " *".html_safe : ""), - :for => for_tag_id) - end - - # Return custom field tag with its label tag - def custom_field_tag_with_label(name, custom_value, options={}) - tag = custom_field_tag(name, custom_value) - tag_id = nil - ids = tag.scan(/ id="(.+?)"/) - if ids.size == 1 - tag_id = ids.first.first - end - custom_field_label_tag(name, custom_value, options.merge(:for_tag_id => tag_id)) + tag - end - - # Returns the custom field tag for when bulk editing objects - def custom_field_tag_for_bulk_edit(prefix, custom_field, objects=nil, value='') - custom_field.format.bulk_edit_tag( - self, - custom_field_tag_id(prefix, custom_field), - custom_field_tag_name(prefix, custom_field), - custom_field, - objects, - value, - :class => "#{custom_field.field_format}_cf") - end - - # Returns custom field value tag - def custom_field_value_tag(value) - attr_value = show_value(value) - - if !attr_value.blank? && value.custom_field.full_text_formatting? - content_tag('div', attr_value, :class => 'wiki') - else - attr_value - end - end - - # Return a string used to display a custom value - def show_value(custom_value, html=true) - format_object(custom_value, html) - end - - # Return a string used to display a custom value - def format_value(value, custom_field) - format_object(custom_field.format.formatted_value(self, custom_field, value, false), false) - end - - # Return an array of custom field formats which can be used in select_tag - def custom_field_formats_for_select(custom_field) - Redmine::FieldFormat.as_select(custom_field.class.customized_class.name) - end - - # Yields the given block for each custom field value of object that should be - # displayed, with the custom field and the formatted value as arguments - def render_custom_field_values(object, &block) - object.visible_custom_field_values.each do |custom_value| - formatted = show_value(custom_value) - if formatted.present? - yield custom_value.custom_field, formatted - end - end - end - - # Renders the custom_values in api views - def render_api_custom_values(custom_values, api) - api.array :custom_fields do - custom_values.each do |custom_value| - attrs = {:id => custom_value.custom_field_id, :name => custom_value.custom_field.name} - attrs.merge!(:multiple => true) if custom_value.custom_field.multiple? - api.custom_field attrs do - if custom_value.value.is_a?(Array) - api.array :value do - custom_value.value.each do |value| - api.value value unless value.blank? - end - end - else - api.value custom_value.value - end - end - end - end unless custom_values.empty? - end - - def edit_tag_style_tag(form, options={}) - select_options = [[l(:label_drop_down_list), ''], [l(:label_checkboxes), 'check_box']] - if options[:include_radio] - select_options << [l(:label_radio_buttons), 'radio'] - end - form.select :edit_tag_style, select_options, :label => :label_display - end - - def select_type_radio_buttons(default_type) - if CUSTOM_FIELDS_TABS.none? {|tab| tab[:name] == default_type} - default_type = 'IssueCustomField' - end - custom_field_type_options.map do |name, type| - content_tag(:label, :style => 'display:block;') do - radio_button_tag('type', type, type == default_type) + name - end - end.join("\n").html_safe - end -end diff --git a/app/helpers/documents_helper.rb b/app/helpers/documents_helper.rb deleted file mode 100644 index 4d31d7d..0000000 --- a/app/helpers/documents_helper.rb +++ /dev/null @@ -1,21 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -module DocumentsHelper -end diff --git a/app/helpers/email_addresses_helper.rb b/app/helpers/email_addresses_helper.rb deleted file mode 100644 index 89dbf9a..0000000 --- a/app/helpers/email_addresses_helper.rb +++ /dev/null @@ -1,40 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -module EmailAddressesHelper - - # Returns a link to enable or disable notifications for the address - def toggle_email_address_notify_link(address) - if address.notify? - link_to( - l(:label_disable_notifications), - user_email_address_path(address.user, address, :notify => '0'), - :method => :put, :remote => true, - :title => l(:label_disable_notifications), - :class => 'icon-only icon-email') - else - link_to( - l(:label_enable_notifications), - user_email_address_path(address.user, address, :notify => '1'), - :method => :put, :remote => true, - :title => l(:label_enable_notifications), - :class => 'icon-only icon-email-disabled') - end - end -end diff --git a/app/helpers/enumerations_helper.rb b/app/helpers/enumerations_helper.rb deleted file mode 100644 index 806fcc7..0000000 --- a/app/helpers/enumerations_helper.rb +++ /dev/null @@ -1,21 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -module EnumerationsHelper -end diff --git a/app/helpers/gantt_helper.rb b/app/helpers/gantt_helper.rb deleted file mode 100644 index e0a7095..0000000 --- a/app/helpers/gantt_helper.rb +++ /dev/null @@ -1,45 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -module GanttHelper - - def gantt_zoom_link(gantt, in_or_out) - case in_or_out - when :in - if gantt.zoom < 4 - link_to( - l(:text_zoom_in), - {:params => request.query_parameters.merge(gantt.params.merge(:zoom => (gantt.zoom + 1)))}, - :class => 'icon icon-zoom-in') - else - content_tag(:span, l(:text_zoom_in), :class => 'icon icon-zoom-in').html_safe - end - - when :out - if gantt.zoom > 1 - link_to( - l(:text_zoom_out), - {:params => request.query_parameters.merge(gantt.params.merge(:zoom => (gantt.zoom - 1)))}, - :class => 'icon icon-zoom-out') - else - content_tag(:span, l(:text_zoom_out), :class => 'icon icon-zoom-out').html_safe - end - end - end -end diff --git a/app/helpers/groups_helper.rb b/app/helpers/groups_helper.rb deleted file mode 100644 index d81e67a..0000000 --- a/app/helpers/groups_helper.rb +++ /dev/null @@ -1,44 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -module GroupsHelper - def group_settings_tabs(group) - tabs = [] - tabs << {:name => 'general', :partial => 'groups/general', :label => :label_general} - tabs << {:name => 'users', :partial => 'groups/users', :label => :label_user_plural} if group.givable? - tabs << {:name => 'memberships', :partial => 'groups/memberships', :label => :label_project_plural} - tabs - end - - def render_principals_for_new_group_users(group, limit=100) - scope = User.active.sorted.not_in_group(group).like(params[:q]) - principal_count = scope.count - principal_pages = Redmine::Pagination::Paginator.new principal_count, limit, params['page'] - principals = scope.offset(principal_pages.offset).limit(principal_pages.per_page).to_a - s = content_tag( - 'div', - content_tag('div', principals_check_box_tags('user_ids[]', principals), :id => 'principals'), - :class => 'objects-selection' - ) - links = pagination_links_full(principal_pages, principal_count, :per_page_links => false) {|text, parameters, options| - link_to text, autocomplete_for_user_group_path(group, parameters.merge(:q => params[:q], :format => 'js')), :remote => true - } - s + content_tag('span', links, :class => 'pagination') - end -end diff --git a/app/helpers/imports_helper.rb b/app/helpers/imports_helper.rb deleted file mode 100644 index 315973f..0000000 --- a/app/helpers/imports_helper.rb +++ /dev/null @@ -1,55 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -module ImportsHelper - def import_title - l(:"label_import_#{import_partial_prefix}") - end - - def import_partial_prefix - @import.class.name.sub('Import', '').underscore.pluralize - end - - def options_for_mapping_select(import, field, options={}) - tags = "".html_safe - blank_text = options[:required] ? "-- #{l(:actionview_instancetag_blank_option)} --" : " ".html_safe - tags << content_tag('option', blank_text, :value => '') - tags << options_for_select(import.columns_options, import.mapping[field]) - if values = options[:values] - tags << content_tag('option', '--', :disabled => true) - tags << options_for_select(values.map {|text, value| [text, "value:#{value}"]}, import.mapping[field] || options[:default_value]) - end - tags - end - - def mapping_select_tag(import, field, options={}) - name = "import_settings[mapping][#{field}]" - select_tag name, options_for_mapping_select(import, field, options), :id => "import_mapping_#{field}" - end - - # Returns the options for the date_format setting - def date_format_options - Import::DATE_FORMATS.map do |f| - format = f.gsub('%', '').gsub(/[dmY]/) do - {'d' => 'DD', 'm' => 'MM', 'Y' => 'YYYY'}[$&] - end - [format, f] - end - end -end diff --git a/app/helpers/issue_categories_helper.rb b/app/helpers/issue_categories_helper.rb deleted file mode 100644 index ebf8a18..0000000 --- a/app/helpers/issue_categories_helper.rb +++ /dev/null @@ -1,21 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -module IssueCategoriesHelper -end diff --git a/app/helpers/issue_relations_helper.rb b/app/helpers/issue_relations_helper.rb deleted file mode 100644 index c99ec84..0000000 --- a/app/helpers/issue_relations_helper.rb +++ /dev/null @@ -1,25 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -module IssueRelationsHelper - def collection_for_relation_type_select - values = IssueRelation::TYPES - values.keys.sort_by{|k| values[k][:order]}.collect{|k| [l(values[k][:name]), k]} - end -end diff --git a/app/helpers/issue_statuses_helper.rb b/app/helpers/issue_statuses_helper.rb deleted file mode 100644 index 00cb65c..0000000 --- a/app/helpers/issue_statuses_helper.rb +++ /dev/null @@ -1,21 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -module IssueStatusesHelper -end diff --git a/app/helpers/issues_helper.rb b/app/helpers/issues_helper.rb deleted file mode 100644 index f2f4065..0000000 --- a/app/helpers/issues_helper.rb +++ /dev/null @@ -1,647 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -module IssuesHelper - include ApplicationHelper - include Redmine::Export::PDF::IssuesPdfHelper - - def issue_list(issues, &block) - ancestors = [] - issues.each do |issue| - while ancestors.any? && - !issue.is_descendant_of?(ancestors.last) - ancestors.pop - end - yield issue, ancestors.size - ancestors << issue unless issue.leaf? - end - end - - def grouped_issue_list(issues, query, &block) - ancestors = [] - grouped_query_results(issues, query) do |issue, group_name, group_count, group_totals| - while ancestors.any? && - !issue.is_descendant_of?(ancestors.last) - ancestors.pop - end - yield issue, ancestors.size, group_name, group_count, group_totals - ancestors << issue unless issue.leaf? - end - end - - # Renders a HTML/CSS tooltip - # - # To use, a trigger div is needed. This is a div with the class of "tooltip" - # that contains this method wrapped in a span with the class of "tip" - # - #
    <%= link_to_issue(issue) %> - # <%= render_issue_tooltip(issue) %> - #
    - # - def render_issue_tooltip(issue) - @cached_label_status ||= l(:field_status) - @cached_label_start_date ||= l(:field_start_date) - @cached_label_due_date ||= l(:field_due_date) - @cached_label_assigned_to ||= l(:field_assigned_to) - @cached_label_priority ||= l(:field_priority) - @cached_label_project ||= l(:field_project) - - link_to_issue(issue) + "

    ".html_safe + - "#{@cached_label_project}: #{link_to_project(issue.project)}
    ".html_safe + - "#{@cached_label_status}: #{h(issue.status.name) + (" (#{format_date(issue.closed_on)})" if issue.closed?)}
    ".html_safe + - "#{@cached_label_start_date}: #{format_date(issue.start_date)}
    ".html_safe + - "#{@cached_label_due_date}: #{format_date(issue.due_date)}
    ".html_safe + - "#{@cached_label_assigned_to}: #{avatar(issue.assigned_to, :size => '13', :title => l(:field_assigned_to)) if issue.assigned_to} #{h(issue.assigned_to)}
    ".html_safe + - "#{@cached_label_priority}: #{h(issue.priority.name)}".html_safe - end - - def issue_heading(issue) - h("#{issue.tracker} ##{issue.id}") - end - - def render_issue_subject_with_tree(issue) - s = +'' - ancestors = issue.root? ? [] : issue.ancestors.visible.to_a - ancestors.each do |ancestor| - s << '
    ' + content_tag('p', link_to_issue(ancestor, :project => (issue.project_id != ancestor.project_id))) - end - s << '
    ' - subject = h(issue.subject) - if issue.is_private? - subject = subject + ' ' + content_tag('span', l(:field_is_private), :class => 'badge badge-private private') - end - s << content_tag('h3', subject) - s << '
    ' * (ancestors.size + 1) - s.html_safe - end - - def render_descendants_tree(issue) - manage_relations = User.current.allowed_to?(:manage_subtasks, issue.project) - s = +'' - issue_list( - issue.descendants.visible. - preload(:status, :priority, :tracker, - :assigned_to).sort_by(&:lft)) do |child, level| - css = +"issue issue-#{child.id} hascontextmenu #{child.css_classes}" - css << " idnt idnt-#{level}" if level > 0 - buttons = - if manage_relations - link_to(l(:label_delete_link_to_subtask), - issue_path( - {:id => child.id, :issue => {:parent_issue_id => ''}, - :back_url => issue_path(issue.id), :no_flash => '1'}), - :method => :put, - :data => {:confirm => l(:text_are_you_sure)}, - :title => l(:label_delete_link_to_subtask), - :class => 'icon-only icon-link-break' - ) - else - "".html_safe - end - buttons << link_to_context_menu - s << - content_tag( - 'tr', - content_tag('td', check_box_tag("ids[]", child.id, false, :id => nil), - :class => 'checkbox') + - content_tag('td', - link_to_issue( - child, - :project => (issue.project_id != child.project_id)), - :class => 'subject') + - content_tag('td', h(child.status), :class => 'status') + - content_tag('td', link_to_user(child.assigned_to), :class => 'assigned_to') + - content_tag('td', format_date(child.start_date), :class => 'start_date') + - content_tag('td', format_date(child.due_date), :class => 'due_date') + - content_tag('td', - (if child.disabled_core_fields.include?('done_ratio') - '' - else - progress_bar(child.done_ratio) - end), - :class=> 'done_ratio') + - content_tag('td', buttons, :class => 'buttons'), - :class => css) - end - s << '
    ' - s.html_safe - end - - # Renders the list of related issues on the issue details view - def render_issue_relations(issue, relations) - manage_relations = User.current.allowed_to?(:manage_issue_relations, issue.project) - s = ''.html_safe - relations.each do |relation| - other_issue = relation.other_issue(issue) - css = "issue hascontextmenu #{other_issue.css_classes}" - buttons = - if manage_relations - link_to( - l(:label_relation_delete), - relation_path(relation), - :remote => true, - :method => :delete, - :data => {:confirm => l(:text_are_you_sure)}, - :title => l(:label_relation_delete), - :class => 'icon-only icon-link-break' - ) - else - "".html_safe - end - buttons << link_to_context_menu - s << - content_tag( - 'tr', - content_tag('td', - check_box_tag( - "ids[]", other_issue.id, - false, :id => nil), - :class => 'checkbox') + - content_tag('td', - relation.to_s(@issue) {|other| - link_to_issue( - other, - :project => Setting.cross_project_issue_relations?) - }.html_safe, - :class => 'subject') + - content_tag('td', other_issue.status, :class => 'status') + - content_tag('td', link_to_user(other_issue.assigned_to), :class => 'assigned_to') + - content_tag('td', format_date(other_issue.start_date), :class => 'start_date') + - content_tag('td', format_date(other_issue.due_date), :class => 'due_date') + - content_tag('td', - (if other_issue.disabled_core_fields.include?('done_ratio') - '' - else - progress_bar(other_issue.done_ratio) - end), - :class=> 'done_ratio') + - content_tag('td', buttons, :class => 'buttons'), - :id => "relation-#{relation.id}", - :class => css) - end - content_tag('table', s, :class => 'list issues odd-even') - end - - def issue_estimated_hours_details(issue) - if issue.total_estimated_hours.present? - if issue.total_estimated_hours == issue.estimated_hours - l_hours_short(issue.estimated_hours) - else - s = issue.estimated_hours.present? ? l_hours_short(issue.estimated_hours) : "" - s += " (#{l(:label_total)}: #{l_hours_short(issue.total_estimated_hours)})" - s.html_safe - end - end - end - - def issue_spent_hours_details(issue) - if issue.total_spent_hours > 0 - path = project_time_entries_path(issue.project, :issue_id => "~#{issue.id}") - - if issue.total_spent_hours == issue.spent_hours - link_to(l_hours_short(issue.spent_hours), path) - else - # link to global time entries if cross-project subtasks are allowed - # in order to show time entries from not descendents projects - if %w(system tree hierarchy).include?(Setting.cross_project_subtasks) - path = time_entries_path(:issue_id => "~#{issue.id}") - end - s = issue.spent_hours > 0 ? l_hours_short(issue.spent_hours) : "" - s += " (#{l(:label_total)}: #{link_to l_hours_short(issue.total_spent_hours), path})" - s.html_safe - end - end - end - - def issue_due_date_details(issue) - return if issue&.due_date.nil? - s = format_date(issue.due_date) - s += " (#{due_date_distance_in_words(issue.due_date)})" unless issue.closed? - s - end - - # Returns a link for adding a new subtask to the given issue - def link_to_new_subtask(issue) - attrs = { - :parent_issue_id => issue - } - attrs[:tracker_id] = issue.tracker unless issue.tracker.disabled_core_fields.include?('parent_issue_id') - link_to(l(:button_add), new_project_issue_path(issue.project, :issue => attrs, :back_url => issue_path(issue))) - end - - def trackers_options_for_select(issue) - trackers = trackers_for_select(issue) - trackers.collect {|t| [t.name, t.id]} - end - - def trackers_for_select(issue) - trackers = issue.allowed_target_trackers - if issue.new_record? && issue.parent_issue_id.present? - trackers = trackers.reject do |tracker| - issue.tracker_id != tracker.id && tracker.disabled_core_fields.include?('parent_issue_id') - end - end - trackers - end - - class IssueFieldsRows - include ActionView::Helpers::TagHelper - - def initialize - @left = [] - @right = [] - end - - def left(*args) - args.any? ? @left << cells(*args) : @left - end - - def right(*args) - args.any? ? @right << cells(*args) : @right - end - - def size - @left.size > @right.size ? @left.size : @right.size - end - - def to_html - content = - content_tag('div', @left.reduce(&:+), :class => 'splitcontentleft') + - content_tag('div', @right.reduce(&:+), :class => 'splitcontentleft') - - content_tag('div', content, :class => 'splitcontent') - end - - def cells(label, text, options={}) - options[:class] = [options[:class] || "", 'attribute'].join(' ') - content_tag( - 'div', - content_tag('div', label + ":", :class => 'label') + - content_tag('div', text, :class => 'value'), - options) - end - end - - def issue_fields_rows - r = IssueFieldsRows.new - yield r - r.to_html - end - - def render_half_width_custom_fields_rows(issue) - values = issue.visible_custom_field_values.reject {|value| value.custom_field.full_width_layout?} - return if values.empty? - half = (values.size / 2.0).ceil - issue_fields_rows do |rows| - values.each_with_index do |value, i| - m = (i < half ? :left : :right) - rows.send m, custom_field_name_tag(value.custom_field), custom_field_value_tag(value), :class => value.custom_field.css_classes - end - end - end - - def render_full_width_custom_fields_rows(issue) - values = issue.visible_custom_field_values.select {|value| value.custom_field.full_width_layout?} - return if values.empty? - s = ''.html_safe - values.each_with_index do |value, i| - attr_value_tag = custom_field_value_tag(value) - next if attr_value_tag.blank? - content = - content_tag('hr') + - content_tag('p', content_tag('strong', custom_field_name_tag(value.custom_field) )) + - content_tag('div', attr_value_tag, class: 'value') - s << content_tag('div', content, class: "#{value.custom_field.css_classes} attribute") - end - s - end - - # Returns the path for updating the issue form - # with project as the current project - def update_issue_form_path(project, issue) - options = {:format => 'js'} - if issue.new_record? - if project - new_project_issue_path(project, options) - else - new_issue_path(options) - end - else - edit_issue_path(issue, options) - end - end - - # Returns the number of descendants for an array of issues - def issues_descendant_count(issues) - ids = issues.reject(&:leaf?).map {|issue| issue.descendants.ids}.flatten.uniq - ids -= issues.map(&:id) - ids.size - end - - def issues_destroy_confirmation_message(issues) - issues = [issues] unless issues.is_a?(Array) - message = l(:text_issues_destroy_confirmation) - - descendant_count = issues_descendant_count(issues) - if descendant_count > 0 - message << "\n" + l(:text_issues_destroy_descendants_confirmation, :count => descendant_count) - end - message - end - - # Returns an array of users that are proposed as watchers - # on the new issue form - def users_for_new_issue_watchers(issue) - users = issue.watcher_users.select{|u| u.status == User::STATUS_ACTIVE} - if issue.project.users.count <= 20 - users = (users + issue.project.users.sort).uniq - end - users - end - - def email_issue_attributes(issue, user, html) - items = [] - %w(author status priority assigned_to category fixed_version start_date due_date).each do |attribute| - if issue.disabled_core_fields.grep(/^#{attribute}(_id)?$/).empty? - attr_value = (issue.send attribute).to_s - next if attr_value.blank? - if html - items << content_tag('strong', "#{l("field_#{attribute}")}: ") + attr_value - else - items << "#{l("field_#{attribute}")}: #{attr_value}" - end - end - end - issue.visible_custom_field_values(user).each do |value| - cf_value = show_value(value, false) - next if cf_value.blank? - if html - items << content_tag('strong', "#{value.custom_field.name}: ") + cf_value - else - items << "#{value.custom_field.name}: #{cf_value}" - end - end - items - end - - def render_email_issue_attributes(issue, user, html=false) - items = email_issue_attributes(issue, user, html) - if html - content_tag('ul', items.map{|s| content_tag('li', s)}.join("\n").html_safe, :class => "details") - else - items.map{|s| "* #{s}"}.join("\n") - end - end - - MultipleValuesDetail = Struct.new(:property, :prop_key, :custom_field, :old_value, :value) - - # Returns the textual representation of a journal details - # as an array of strings - def details_to_strings(details, no_html=false, options={}) - options[:only_path] = !(options[:only_path] == false) - strings = [] - values_by_field = {} - details.each do |detail| - if detail.property == 'cf' - field = detail.custom_field - if field && field.multiple? - values_by_field[field] ||= {:added => [], :deleted => []} - if detail.old_value - values_by_field[field][:deleted] << detail.old_value - end - if detail.value - values_by_field[field][:added] << detail.value - end - next - end - end - strings << show_detail(detail, no_html, options) - end - if values_by_field.present? - values_by_field.each do |field, changes| - if changes[:added].any? - detail = MultipleValuesDetail.new('cf', field.id.to_s, field) - detail.value = changes[:added] - strings << show_detail(detail, no_html, options) - end - if changes[:deleted].any? - detail = MultipleValuesDetail.new('cf', field.id.to_s, field) - detail.old_value = changes[:deleted] - strings << show_detail(detail, no_html, options) - end - end - end - strings - end - - # Returns the textual representation of a single journal detail - def show_detail(detail, no_html=false, options={}) - multiple = false - show_diff = false - no_details = false - - case detail.property - when 'attr' - field = detail.prop_key.to_s.gsub(/\_id$/, "") - label = l(("field_" + field).to_sym) - case detail.prop_key - when 'due_date', 'start_date' - value = format_date(detail.value.to_date) if detail.value - old_value = format_date(detail.old_value.to_date) if detail.old_value - - when 'project_id', 'status_id', 'tracker_id', 'assigned_to_id', - 'priority_id', 'category_id', 'fixed_version_id' - value = find_name_by_reflection(field, detail.value) - old_value = find_name_by_reflection(field, detail.old_value) - - when 'estimated_hours' - value = l_hours_short(detail.value.to_f) unless detail.value.blank? - old_value = l_hours_short(detail.old_value.to_f) unless detail.old_value.blank? - - when 'parent_id' - label = l(:field_parent_issue) - value = "##{detail.value}" unless detail.value.blank? - old_value = "##{detail.old_value}" unless detail.old_value.blank? - - when 'is_private' - value = l(detail.value == "0" ? :general_text_No : :general_text_Yes) unless detail.value.blank? - old_value = l(detail.old_value == "0" ? :general_text_No : :general_text_Yes) unless detail.old_value.blank? - - when 'description' - show_diff = true - end - when 'cf' - custom_field = detail.custom_field - if custom_field - label = custom_field.name - if custom_field.format.class.change_no_details - no_details = true - elsif custom_field.format.class.change_as_diff - show_diff = true - else - multiple = custom_field.multiple? - value = format_value(detail.value, custom_field) if detail.value - old_value = format_value(detail.old_value, custom_field) if detail.old_value - end - end - when 'attachment' - label = l(:label_attachment) - when 'relation' - if detail.value && !detail.old_value - rel_issue = Issue.visible.find_by_id(detail.value) - value = - if rel_issue.nil? - "#{l(:label_issue)} ##{detail.value}" - else - (no_html ? rel_issue : link_to_issue(rel_issue, :only_path => options[:only_path])) - end - elsif detail.old_value && !detail.value - rel_issue = Issue.visible.find_by_id(detail.old_value) - old_value = - if rel_issue.nil? - "#{l(:label_issue)} ##{detail.old_value}" - else - (no_html ? rel_issue : link_to_issue(rel_issue, :only_path => options[:only_path])) - end - end - relation_type = IssueRelation::TYPES[detail.prop_key] - label = l(relation_type[:name]) if relation_type - end - call_hook(:helper_issues_show_detail_after_setting, - {:detail => detail, :label => label, :value => value, :old_value => old_value }) - - label ||= detail.prop_key - value ||= detail.value - old_value ||= detail.old_value - - unless no_html - label = content_tag('strong', label) - old_value = content_tag("i", h(old_value)) if detail.old_value - if detail.old_value && detail.value.blank? && detail.property != 'relation' - old_value = content_tag("del", old_value) - end - if detail.property == 'attachment' && value.present? && - atta = detail.journal.journalized.attachments.detect {|a| a.id == detail.prop_key.to_i} - # Link to the attachment if it has not been removed - value = link_to_attachment(atta, only_path: options[:only_path]) - if options[:only_path] != false - value += ' ' - value += link_to_attachment atta, class: 'icon-only icon-download', title: l(:button_download), download: true - end - else - value = content_tag("i", h(value)) if value - end - end - - if no_details - s = l(:text_journal_changed_no_detail, :label => label).html_safe - elsif show_diff - s = l(:text_journal_changed_no_detail, :label => label) - unless no_html - diff_link = - link_to( - l(:label_diff), - diff_journal_url(detail.journal_id, :detail_id => detail.id, - :only_path => options[:only_path]), - :title => l(:label_view_diff)) - s << " (#{diff_link})" - end - s.html_safe - elsif detail.value.present? - case detail.property - when 'attr', 'cf' - if detail.old_value.present? - l(:text_journal_changed, :label => label, :old => old_value, :new => value).html_safe - elsif multiple - l(:text_journal_added, :label => label, :value => value).html_safe - else - l(:text_journal_set_to, :label => label, :value => value).html_safe - end - when 'attachment', 'relation' - l(:text_journal_added, :label => label, :value => value).html_safe - end - else - l(:text_journal_deleted, :label => label, :old => old_value).html_safe - end - end - - # Find the name of an associated record stored in the field attribute - # For project, return the associated record only if is visible for the current User - def find_name_by_reflection(field, id) - return nil if id.blank? - @detail_value_name_by_reflection ||= Hash.new do |hash, key| - association = Issue.reflect_on_association(key.first.to_sym) - name = nil - if association - record = association.klass.find_by_id(key.last) - if (record && !record.is_a?(Project)) || (record.is_a?(Project) && record.visible?) - name = record.name.force_encoding('UTF-8') - end - end - hash[key] = name - end - @detail_value_name_by_reflection[[field, id]] - end - - # Renders issue children recursively - def render_api_issue_children(issue, api) - return if issue.leaf? - api.array :children do - issue.children.each do |child| - api.issue(:id => child.id) do - api.tracker(:id => child.tracker_id, :name => child.tracker.name) unless child.tracker.nil? - api.subject child.subject - render_api_issue_children(child, api) - end - end - end - end - - # Issue history tabs - def issue_history_tabs - tabs = [] - if @journals.present? - journals_without_notes = @journals.select{|value| value.notes.blank?} - journals_with_notes = @journals.reject{|value| value.notes.blank?} - - tabs << {:name => 'history', :label => :label_history, :onclick => 'showIssueHistory("history", this.href)', :partial => 'issues/tabs/history', :locals => {:issue => @issue, :journals => @journals}} - tabs << {:name => 'notes', :label => :label_issue_history_notes, :onclick => 'showIssueHistory("notes", this.href)'} if journals_with_notes.any? - tabs << {:name => 'properties', :label => :label_issue_history_properties, :onclick => 'showIssueHistory("properties", this.href)'} if journals_without_notes.any? - end - tabs << {:name => 'time_entries', :label => :label_time_entry_plural, :remote => true, :onclick => "getRemoteTab('time_entries', '#{tab_issue_path(@issue, :name => 'time_entries')}', '#{issue_path(@issue, :tab => 'time_entries')}')"} if User.current.allowed_to?(:view_time_entries, @project) && @issue.spent_hours > 0 - tabs << {:name => 'changesets', :label => :label_associated_revisions, :remote => true, :onclick => "getRemoteTab('changesets', '#{tab_issue_path(@issue, :name => 'changesets')}', '#{issue_path(@issue, :tab => 'changesets')}')"} if @has_changesets - tabs - end - - def issue_history_default_tab - # tab params overrides user default tab preference - return params[:tab] if params[:tab].present? - user_default_tab = User.current.pref.history_default_tab - - case user_default_tab - when 'last_tab_visited' - cookies['history_last_tab'].presence || 'notes' - when '' - 'notes' - else - user_default_tab - end - end - -end diff --git a/app/helpers/journals_helper.rb b/app/helpers/journals_helper.rb deleted file mode 100644 index 9d3edf1..0000000 --- a/app/helpers/journals_helper.rb +++ /dev/null @@ -1,71 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -module JournalsHelper - - # Returns the attachments of a journal that are displayed as thumbnails - def journal_thumbnail_attachments(journal) - ids = journal.details.select {|d| d.property == 'attachment' && d.value.present?}.map(&:prop_key) - ids.any? ? Attachment.where(:id => ids).select(&:thumbnailable?).sort_by{|a| ids.index(a.id.to_s)} : [] - end - - # Returns the action links for an issue journal - def render_journal_actions(issue, journal, options={}) - links = [] - if journal.notes.present? - if options[:reply_links] - indice = journal.indice || @journal.issue.visible_journals_with_index.find{|j| j.id == @journal.id}.indice - links << link_to(l(:button_quote), - quoted_issue_path(issue, :journal_id => journal, :journal_indice => indice), - :remote => true, - :method => 'post', - :title => l(:button_quote), - :class => 'icon-only icon-comment' - ) - end - if journal.editable_by?(User.current) - links << link_to(l(:button_edit), - edit_journal_path(journal), - :remote => true, - :method => 'get', - :title => l(:button_edit), - :class => 'icon-only icon-edit' - ) - links << link_to(l(:button_delete), - journal_path(journal, :journal => {:notes => ""}), - :remote => true, - :method => 'put', :data => {:confirm => l(:text_are_you_sure)}, - :title => l(:button_delete), - :class => 'icon-only icon-del' - ) - end - end - safe_join(links, ' ') - end - - def render_notes(issue, journal, options={}) - content_tag('div', textilizable(journal, :notes), :id => "journal-#{journal.id}-notes", :class => "wiki") - end - - def render_private_notes_indicator(journal) - content = journal.private_notes? ? l(:field_is_private) : '' - css_classes = journal.private_notes? ? 'badge badge-private private' : '' - content_tag('span', content.html_safe, :id => "journal-#{journal.id}-private_notes", :class => css_classes) - end -end diff --git a/app/helpers/mail_handler_helper.rb b/app/helpers/mail_handler_helper.rb deleted file mode 100644 index ce28603..0000000 --- a/app/helpers/mail_handler_helper.rb +++ /dev/null @@ -1,21 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -module MailHandlerHelper -end diff --git a/app/helpers/members_helper.rb b/app/helpers/members_helper.rb deleted file mode 100644 index 57f0411..0000000 --- a/app/helpers/members_helper.rb +++ /dev/null @@ -1,62 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -module MembersHelper - def render_principals_for_new_members(project, limit=100) - scope = Principal.active.visible.sorted.not_member_of(project).like(params[:q]) - principal_count = scope.count - principal_pages = Redmine::Pagination::Paginator.new principal_count, limit, params['page'] - principals = scope.offset(principal_pages.offset).limit(principal_pages.per_page).to_a - s = content_tag( - 'div', - content_tag( - 'div', - principals_check_box_tags('membership[user_ids][]', principals), :id => 'principals'), - :class => 'objects-selection' - ) - links = - pagination_links_full(principal_pages, - principal_count, - :per_page_links => false) {|text, parameters, options| - link_to( - text, - autocomplete_project_memberships_path( - project, - parameters.merge(:q => params[:q], :format => 'js') - ), - :remote => true) - } - s + content_tag('span', links, :class => 'pagination') - end - - # Returns inheritance information for an inherited member role - def render_role_inheritance(member, role) - content = member.role_inheritance(role).map do |h| - if h.is_a?(Project) - l(:label_inherited_from_parent_project) - elsif h.is_a?(Group) - l(:label_inherited_from_group, :name => h.name.to_s) - end - end.compact.uniq - - if content.present? - content_tag('em', content.join(", "), :class => "info") - end - end -end diff --git a/app/helpers/messages_helper.rb b/app/helpers/messages_helper.rb deleted file mode 100644 index fc537e3..0000000 --- a/app/helpers/messages_helper.rb +++ /dev/null @@ -1,21 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -module MessagesHelper -end diff --git a/app/helpers/my_helper.rb b/app/helpers/my_helper.rb deleted file mode 100644 index be62576..0000000 --- a/app/helpers/my_helper.rb +++ /dev/null @@ -1,187 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -module MyHelper - # Renders the blocks - def render_blocks(blocks, user, options={}) - s = ''.html_safe - - if blocks.present? - blocks.each do |block| - s << render_block(block, user).to_s - end - end - s - end - - # Renders a single block - def render_block(block, user) - content = render_block_content(block, user) - if content.present? - handle = content_tag('span', '', :class => 'icon-only icon-sort-handle sort-handle', :title => l(:button_move)) - close = link_to(l(:button_delete), - {:action => "remove_block", :block => block}, - :remote => true, :method => 'post', - :class => "icon-only icon-close", :title => l(:button_delete)) - content = content_tag('div', handle + close, :class => 'contextual') + content - - content_tag('div', content, :class => "mypage-box", :id => "block-#{block}") - end - end - - # Renders a single block content - def render_block_content(block, user) - unless block_definition = Redmine::MyPage.find_block(block) - Rails.logger.warn("Unknown block \"#{block}\" found in #{user.login} (id=#{user.id}) preferences") - return - end - - settings = user.pref.my_page_settings(block) - if partial = block_definition[:partial] - begin - render(:partial => partial, :locals => {:user => user, :settings => settings, :block => block}) - rescue ActionView::MissingTemplate - Rails.logger.warn("Partial \"#{partial}\" missing for block \"#{block}\" found in #{user.login} (id=#{user.id}) preferences") - return nil - end - else - send "render_#{block_definition[:name]}_block", block, settings - end - end - - # Returns the select tag used to add a block to My page - def block_select_tag(user) - blocks_in_use = user.pref.my_page_layout.values.flatten - options = content_tag('option') - Redmine::MyPage.block_options(blocks_in_use).each do |label, block| - options << content_tag('option', label, :value => block, :disabled => block.blank?) - end - select_tag('block', options, :id => "block-select", :onchange => "$('#block-form').submit();") - end - - def render_calendar_block(block, settings) - calendar = Redmine::Helpers::Calendar.new(User.current.today, current_language, :week) - calendar.events = Issue.visible. - where(:project => User.current.projects). - where("(start_date>=? and start_date<=?) or (due_date>=? and due_date<=?)", calendar.startdt, calendar.enddt, calendar.startdt, calendar.enddt). - includes(:project, :tracker, :priority, :assigned_to). - references(:project, :tracker, :priority, :assigned_to). - to_a - - render :partial => 'my/blocks/calendar', :locals => {:calendar => calendar, :block => block} - end - - def render_documents_block(block, settings) - documents = Document.visible.order("#{Document.table_name}.created_on DESC").limit(10).to_a - - render :partial => 'my/blocks/documents', :locals => {:block => block, :documents => documents} - end - - def render_issuesassignedtome_block(block, settings) - query = IssueQuery.new(:name => l(:label_assigned_to_me_issues), :user => User.current) - query.add_filter 'assigned_to_id', '=', ['me'] - query.add_filter 'project.status', '=', ["#{Project::STATUS_ACTIVE}"] - query.column_names = settings[:columns].presence || ['project', 'tracker', 'status', 'subject'] - query.sort_criteria = settings[:sort].presence || [['priority', 'desc'], ['updated_on', 'desc']] - issues = query.issues(:limit => 10) - - render :partial => 'my/blocks/issues', :locals => {:query => query, :issues => issues, :block => block} - end - - def render_issuesreportedbyme_block(block, settings) - query = IssueQuery.new(:name => l(:label_reported_issues), :user => User.current) - query.add_filter 'author_id', '=', ['me'] - query.add_filter 'project.status', '=', ["#{Project::STATUS_ACTIVE}"] - query.column_names = settings[:columns].presence || ['project', 'tracker', 'status', 'subject'] - query.sort_criteria = settings[:sort].presence || [['updated_on', 'desc']] - issues = query.issues(:limit => 10) - - render :partial => 'my/blocks/issues', :locals => {:query => query, :issues => issues, :block => block} - end - - def render_issuesupdatedbyme_block(block, settings) - query = IssueQuery.new(:name => l(:label_updated_issues), :user => User.current) - query.add_filter 'updated_by', '=', ['me'] - query.add_filter 'project.status', '=', ["#{Project::STATUS_ACTIVE}"] - query.column_names = settings[:columns].presence || ['project', 'tracker', 'status', 'subject'] - query.sort_criteria = settings[:sort].presence || [['updated_on', 'desc']] - issues = query.issues(:limit => 10) - - render :partial => 'my/blocks/issues', :locals => {:query => query, :issues => issues, :block => block} - end - - def render_issueswatched_block(block, settings) - query = IssueQuery.new(:name => l(:label_watched_issues), :user => User.current) - query.add_filter 'watcher_id', '=', ['me'] - query.add_filter 'project.status', '=', ["#{Project::STATUS_ACTIVE}"] - query.column_names = settings[:columns].presence || ['project', 'tracker', 'status', 'subject'] - query.sort_criteria = settings[:sort].presence || [['updated_on', 'desc']] - issues = query.issues(:limit => 10) - - render :partial => 'my/blocks/issues', :locals => {:query => query, :issues => issues, :block => block} - end - - def render_issuequery_block(block, settings) - query = IssueQuery.visible.find_by_id(settings[:query_id]) - - if query - query.column_names = settings[:columns] if settings[:columns].present? - query.sort_criteria = settings[:sort] if settings[:sort].present? - issues = query.issues(:limit => 10) - render :partial => 'my/blocks/issues', :locals => {:query => query, :issues => issues, :block => block, :settings => settings} - else - queries = IssueQuery.visible.sorted - render :partial => 'my/blocks/issue_query_selection', :locals => {:queries => queries, :block => block, :settings => settings} - end - end - - def render_news_block(block, settings) - news = News.visible. - where(:project => User.current.projects). - limit(10). - includes(:project, :author). - references(:project, :author). - order("#{News.table_name}.created_on DESC"). - to_a - - render :partial => 'my/blocks/news', :locals => {:block => block, :news => news} - end - - def render_timelog_block(block, settings) - days = settings[:days].to_i - days = 7 if days < 1 || days > 365 - - entries = TimeEntry. - where("#{TimeEntry.table_name}.user_id = ? AND #{TimeEntry.table_name}.spent_on BETWEEN ? AND ?", User.current.id, User.current.today - (days - 1), User.current.today). - joins(:activity, :project). - references(:issue => [:tracker, :status]). - includes(:issue => [:tracker, :status]). - order("#{TimeEntry.table_name}.spent_on DESC, #{Project.table_name}.name ASC, #{Tracker.table_name}.position ASC, #{Issue.table_name}.id ASC"). - to_a - entries_by_day = entries.group_by(&:spent_on) - - render :partial => 'my/blocks/timelog', :locals => {:block => block, :entries => entries, :entries_by_day => entries_by_day, :days => days} - end - - def render_activity_block(block, settings) - events_by_day = Redmine::Activity::Fetcher.new(User.current, :author => User.current).events(nil, nil, :limit => 10).group_by {|event| User.current.time_to_date(event.event_datetime)} - - render :partial => 'my/blocks/activity', :locals => {:events_by_day => events_by_day} - end -end diff --git a/app/helpers/news_helper.rb b/app/helpers/news_helper.rb deleted file mode 100644 index becd901..0000000 --- a/app/helpers/news_helper.rb +++ /dev/null @@ -1,21 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -module NewsHelper -end diff --git a/app/helpers/principal_memberships_helper.rb b/app/helpers/principal_memberships_helper.rb deleted file mode 100644 index 43814ae..0000000 --- a/app/helpers/principal_memberships_helper.rb +++ /dev/null @@ -1,64 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -module PrincipalMembershipsHelper - def render_principal_memberships(principal) - render :partial => 'principal_memberships/index', :locals => {:principal => principal} - end - - def call_table_header_hook(principal) - if principal.is_a?(Group) - call_hook :view_groups_memberships_table_header, :group => principal - else - call_hook :view_users_memberships_table_header, :user => principal - end - end - - def call_table_row_hook(principal, membership) - if principal.is_a?(Group) - call_hook :view_groups_memberships_table_row, :group => principal, :membership => membership - else - call_hook :view_users_memberships_table_row, :user => principal, :membership => membership - end - end - - def new_principal_membership_path(principal, *args) - if principal.is_a?(Group) - new_group_membership_path(principal, *args) - else - new_user_membership_path(principal, *args) - end - end - - def edit_principal_membership_path(principal, *args) - if principal.is_a?(Group) - edit_group_membership_path(principal, *args) - else - edit_user_membership_path(principal, *args) - end - end - - def principal_membership_path(principal, membership, *args) - if principal.is_a?(Group) - group_membership_path(principal, membership, *args) - else - user_membership_path(principal, membership, *args) - end - end -end diff --git a/app/helpers/projects_helper.rb b/app/helpers/projects_helper.rb deleted file mode 100644 index b714a1e..0000000 --- a/app/helpers/projects_helper.rb +++ /dev/null @@ -1,185 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -module ProjectsHelper - def project_settings_tabs - tabs = - [ - {:name => 'info', :action => :edit_project, - :partial => 'projects/edit', :label => :label_project}, - {:name => 'members', :action => :manage_members, - :partial => 'projects/settings/members', :label => :label_member_plural}, - {:name => 'issues', :action => :edit_project, :module => :issue_tracking, - :partial => 'projects/settings/issues', :label => :label_issue_tracking}, - {:name => 'versions', :action => :manage_versions, - :partial => 'projects/settings/versions', :label => :label_version_plural, - :url => {:tab => 'versions', :version_status => params[:version_status], - :version_name => params[:version_name]}}, - {:name => 'categories', :action => :manage_categories, - :partial => 'projects/settings/issue_categories', - :label => :label_issue_category_plural}, - {:name => 'repositories', :action => :manage_repository, - :partial => 'projects/settings/repositories', :label => :label_repository_plural}, - {:name => 'boards', :action => :manage_boards, - :partial => 'projects/settings/boards', :label => :label_board_plural}, - {:name => 'activities', :action => :manage_project_activities, - :partial => 'projects/settings/activities', :label => :label_time_tracking} - ] - tabs. - select {|tab| User.current.allowed_to?(tab[:action], @project)}. - select {|tab| tab[:module].nil? || @project.module_enabled?(tab[:module])} - end - - def parent_project_select_tag(project) - selected = project.parent - # retrieve the requested parent project - parent_id = (params[:project] && params[:project][:parent_id]) || params[:parent_id] - if parent_id - selected = (parent_id.blank? ? nil : Project.find(parent_id)) - end - - options = +'' - options << "" if project.allowed_parents.include?(nil) - options << project_tree_options_for_select(project.allowed_parents.compact, :selected => selected) - content_tag('select', options.html_safe, :name => 'project[parent_id]', :id => 'project_parent_id') - end - - def render_project_action_links - links = (+"").html_safe - if User.current.allowed_to?(:add_project, nil, :global => true) - links << link_to(l(:label_project_new), new_project_path, :class => 'icon icon-add') - end - if User.current.admin? - links << link_to(l(:label_administration), admin_projects_path, :class => 'icon icon-settings') - end - links - end - - # Renders the projects index - def render_project_hierarchy(projects) - render_project_nested_lists(projects) do |project| - s = link_to_project(project, {}, :class => "#{project.css_classes} #{User.current.member_of?(project) ? 'icon icon-user my-project' : nil}") - if project.description.present? - s << content_tag('div', textilizable(project.short_description, :project => project), :class => 'wiki description') - end - s - end - end - - # Returns a set of options for a select field, grouped by project. - def version_options_for_select(versions, selected=nil) - grouped = Hash.new {|h,k| h[k] = []} - versions.each do |version| - grouped[version.project.name] << [version.name, version.id] - end - - selected = selected.is_a?(Version) ? selected.id : selected - if grouped.keys.size > 1 - grouped_options_for_select(grouped, selected) - else - options_for_select((grouped.values.first || []), selected) - end - end - - def project_default_version_options(project) - versions = project.shared_versions.open.to_a - if project.default_version && !versions.include?(project.default_version) - versions << project.default_version - end - version_options_for_select(versions, project.default_version) - end - - def project_default_assigned_to_options(project) - assignable_users = (project.assignable_users.to_a + [project.default_assigned_to]).uniq.compact - principals_options_for_select(assignable_users, project.default_assigned_to) - end - - def format_version_sharing(sharing) - sharing = 'none' unless Version::VERSION_SHARINGS.include?(sharing) - l("label_version_sharing_#{sharing}") - end - - def render_boards_tree(boards, parent=nil, level=0, &block) - selection = boards.select {|b| b.parent == parent} - return '' if selection.empty? - - s = ''.html_safe - selection.each do |board| - node = capture(board, level, &block) - node << render_boards_tree(boards, board, level+1, &block) - s << content_tag('div', node) - end - content_tag('div', s, :class => 'sort-level') - end - - def render_api_includes(project, api) - api.array :trackers do - project.trackers.each do |tracker| - api.tracker(:id => tracker.id, :name => tracker.name) - end - end if include_in_api_response?('trackers') - - api.array :issue_categories do - project.issue_categories.each do |category| - api.issue_category(:id => category.id, :name => category.name) - end - end if include_in_api_response?('issue_categories') - - api.array :time_entry_activities do - project.activities.each do |activity| - api.time_entry_activity(:id => activity.id, :name => activity.name) - end - end if include_in_api_response?('time_entry_activities') - - api.array :enabled_modules do - project.enabled_modules.each do |enabled_module| - api.enabled_module(:id => enabled_module.id, :name => enabled_module.name) - end - end if include_in_api_response?('enabled_modules') - end - - def bookmark_link(project, user = User.current) - return '' unless user && user.logged? - @jump_box ||= Redmine::ProjectJumpBox.new user - bookmarked = @jump_box.bookmark?(project) - css = +"icon bookmark " - - if bookmarked - css << "icon-bookmark" - method = "delete" - text = l(:button_project_bookmark_delete) - else - css << "icon-bookmark-off" - method = "post" - text = l(:button_project_bookmark) - end - - url = bookmark_project_path(project) - link_to text, url, remote: true, method: method, class: css - end - - def grouped_project_list(projects, query, &block) - ancestors = [] - grouped_query_results(projects, query) do |project, group_name, group_count, group_totals| - ancestors.pop while ancestors.any? && !project.is_descendant_of?(ancestors.last) - yield project, ancestors.size, group_name, group_count, group_totals - ancestors << project unless project.leaf? - end - end -end diff --git a/app/helpers/projects_queries_helper.rb b/app/helpers/projects_queries_helper.rb deleted file mode 100644 index 9a97cc8..0000000 --- a/app/helpers/projects_queries_helper.rb +++ /dev/null @@ -1,62 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2017 Jean-Philippe Lang -# -# 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. -module ProjectsQueriesHelper - include ApplicationHelper - - def column_value(column, item, value) - if item.is_a?(Project) - case column.name - when :name - link_to_project(item) + (content_tag('span', '', :class => 'icon icon-user my-project', :title => l(:label_my_projects)) if User.current.member_of?(item)) - when :short_description - item.description? ? content_tag('div', textilizable(item, :short_description), :class => "wiki") : '' - when :homepage - item.homepage? ? content_tag('div', textilizable(item, :homepage), :class => "wiki") : '' - when :status - get_project_status_label[column.value_object(item)] - when :parent_id - link_to_project(item.parent) unless item.parent.nil? - else - super - end - end - end - - def csv_value(column, object, value) - if object.is_a?(Project) - case column.name - when :status - get_project_status_label[column.value_object(object)] - when :parent_id - object.parent.name unless object.parent.nil? - else - super - end - end - end - - private - - def get_project_status_label - { - Project::STATUS_ACTIVE => l(:project_status_active), - Project::STATUS_CLOSED => l(:project_status_closed) - } - end -end diff --git a/app/helpers/queries_helper.rb b/app/helpers/queries_helper.rb deleted file mode 100644 index a4e4749..0000000 --- a/app/helpers/queries_helper.rb +++ /dev/null @@ -1,443 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -require 'redmine/export/csv' - -module QueriesHelper - include ApplicationHelper - - def filters_options_for_select(query) - ungrouped = [] - grouped = {} - query.available_filters.map do |field, field_options| - if field_options[:type] == :relation - group = :label_relations - elsif field_options[:type] == :tree - group = query.is_a?(IssueQuery) ? :label_relations : nil - elsif /^cf_\d+\./.match?(field) - group = (field_options[:through] || field_options[:field]).try(:name) - elsif field =~ /^(.+)\./ - # association filters - group = "field_#{$1}".to_sym - elsif %w(member_of_group assigned_to_role).include?(field) - group = :field_assigned_to - elsif field_options[:type] == :date_past || field_options[:type] == :date - group = :label_date - elsif %w(estimated_hours spent_time).include?(field) - group = :label_time_tracking - end - if group - (grouped[group] ||= []) << [field_options[:name], field] - else - ungrouped << [field_options[:name], field] - end - end - # Don't group dates if there's only one (eg. time entries filters) - if grouped[:label_date].try(:size) == 1 - ungrouped << grouped.delete(:label_date).first - end - s = options_for_select([[]] + ungrouped) - if grouped.present? - localized_grouped = grouped.map {|k,v| [k.is_a?(Symbol) ? l(k) : k.to_s, v]} - s << grouped_options_for_select(localized_grouped) - end - s - end - - def query_filters_hidden_tags(query) - tags = ''.html_safe - query.filters.each do |field, options| - tags << hidden_field_tag("f[]", field, :id => nil) - tags << hidden_field_tag("op[#{field}]", options[:operator], :id => nil) - options[:values].each do |value| - tags << hidden_field_tag("v[#{field}][]", value, :id => nil) - end - end - tags - end - - def query_columns_hidden_tags(query) - tags = ''.html_safe - query.columns.each do |column| - tags << hidden_field_tag("c[]", column.name, :id => nil) - end - tags - end - - def query_hidden_tags(query) - query_filters_hidden_tags(query) + query_columns_hidden_tags(query) - end - - def group_by_column_select_tag(query) - options = [[]] + query.groupable_columns.collect {|c| [c.caption, c.name.to_s]} - select_tag('group_by', options_for_select(options, @query.group_by)) - end - - def available_block_columns_tags(query) - tags = ''.html_safe - query.available_block_columns.each do |column| - tags << content_tag('label', check_box_tag('c[]', column.name.to_s, query.has_column?(column), :id => nil) + " #{column.caption}", :class => 'inline') - end - tags - end - - def available_totalable_columns_tags(query, options={}) - tag_name = (options[:name] || 't') + '[]' - tags = ''.html_safe - query.available_totalable_columns.each do |column| - tags << content_tag('label', check_box_tag(tag_name, column.name.to_s, query.totalable_columns.include?(column), :id => nil) + " #{column.caption}", :class => 'inline') - end - tags << hidden_field_tag(tag_name, '') - tags - end - - def query_available_inline_columns_options(query) - (query.available_inline_columns - query.columns).reject(&:frozen?).collect {|column| [column.caption, column.name]} - end - - def query_selected_inline_columns_options(query) - (query.inline_columns & query.available_inline_columns).reject(&:frozen?).collect {|column| [column.caption, column.name]} - end - - def render_query_columns_selection(query, options={}) - tag_name = (options[:name] || 'c') + '[]' - render :partial => 'queries/columns', :locals => {:query => query, :tag_name => tag_name} - end - - def available_display_types_tags(query) - tags = ''.html_safe - query.available_display_types.each do |t| - tags << radio_button_tag('display_type', t, @query.display_type == t, :id => "display_type_#{t}") + - content_tag('label', l(:"label_display_type_#{t}"), :for => "display_type_#{t}", :class => "inline") - end - tags - end - - def grouped_query_results(items, query, &block) - result_count_by_group = query.result_count_by_group - previous_group, first = false, true - totals_by_group = query.totalable_columns.inject({}) do |h, column| - h[column] = query.total_by_group_for(column) - h - end - items.each do |item| - group_name = group_count = nil - if query.grouped? - group = query.group_by_column.group_value(item) - if first || group != previous_group - if group.blank? && group != false - group_name = "(#{l(:label_blank_value)})" - else - group_name = format_object(group) - end - group_name ||= "" - group_count = result_count_by_group ? result_count_by_group[group] : nil - group_totals = totals_by_group.map {|column, t| total_tag(column, t[group] || 0)}.join(" ").html_safe - end - end - yield item, group_name, group_count, group_totals - previous_group, first = group, false - end - end - - def render_query_totals(query) - return unless query.totalable_columns.present? - totals = query.totalable_columns.map do |column| - total_tag(column, query.total_for(column)) - end - content_tag('p', totals.join(" ").html_safe, :class => "query-totals") - end - - def total_tag(column, value) - label = content_tag('span', "#{column.caption}:") - value = - if [:hours, :spent_hours, :total_spent_hours, :estimated_hours, :total_estimated_hours].include? column.name - format_hours(value) - else - format_object(value) - end - value = content_tag('span', value, :class => 'value') - content_tag('span', label + " " + value, :class => "total-for-#{column.name.to_s.dasherize}") - end - - def column_header(query, column, options={}) - if column.sortable? - css, order = nil, column.default_order - if column.name.to_s == query.sort_criteria.first_key - if query.sort_criteria.first_asc? - css = 'sort asc icon icon-sorted-desc' - order = 'desc' - else - css = 'sort desc icon icon-sorted-asc' - order = 'asc' - end - end - param_key = options[:sort_param] || :sort - sort_param = {param_key => query.sort_criteria.add(column.name, order).to_param} - sort_param = {$1 => {$2 => sort_param.values.first}} while sort_param.keys.first.to_s =~ /^(.+)\[(.+)\]$/ - link_options = { - :title => l(:label_sort_by, "\"#{column.caption}\""), - :class => css - } - if options[:sort_link_options] - link_options.merge! options[:sort_link_options] - end - content = link_to( - column.caption, - {:params => request.query_parameters.deep_merge(sort_param)}, - link_options - ) - else - content = column.caption - end - content_tag('th', content, :class => column.css_classes) - end - - def column_content(column, item) - value = column.value_object(item) - if value.is_a?(Array) - values = value.collect {|v| column_value(column, item, v)}.compact - safe_join(values, ', ') - else - column_value(column, item, value) - end - end - - def column_value(column, item, value) - case column.name - when :id - link_to value, issue_path(item) - when :subject - link_to value, issue_path(item) - when :parent - value ? (value.visible? ? link_to_issue(value, :subject => false) : "##{value.id}") : '' - when :description - item.description? ? content_tag('div', textilizable(item, :description), :class => "wiki") : '' - when :last_notes - item.last_notes.present? ? content_tag('div', textilizable(item, :last_notes), :class => "wiki") : '' - when :done_ratio - progress_bar(value) - when :relations - content_tag( - 'span', - value.to_s(item) {|other| link_to_issue(other, :subject => false, :tracker => false)}.html_safe, - :class => value.css_classes_for(item)) - when :hours, :estimated_hours, :total_estimated_hours - format_hours(value) - when :spent_hours - link_to_if(value > 0, format_hours(value), project_time_entries_path(item.project, :issue_id => "#{item.id}")) - when :total_spent_hours - link_to_if(value > 0, format_hours(value), project_time_entries_path(item.project, :issue_id => "~#{item.id}")) - when :attachments - value.to_a.map {|a| format_object(a)}.join(" ").html_safe - else - format_object(value) - end - end - - def csv_content(column, item) - value = column.value_object(item) - if value.is_a?(Array) - value.collect {|v| csv_value(column, item, v)}.compact.join(', ') - else - csv_value(column, item, value) - end - end - - def csv_value(column, object, value) - case column.name - when :attachments - value.to_a.map {|a| a.filename}.join("\n") - else - format_object(value, false) do |value| - case value.class.name - when 'Float' - sprintf("%.2f", value).gsub('.', l(:general_csv_decimal_separator)) - when 'IssueRelation' - value.to_s(object) - when 'Issue' - if object.is_a?(TimeEntry) - value.visible? ? "#{value.tracker} ##{value.id}: #{value.subject}" : "##{value.id}" - else - value.id - end - else - value - end - end - end - end - - def query_to_csv(items, query, options={}) - columns = query.columns - - Redmine::Export::CSV.generate(:encoding => params[:encoding]) do |csv| - # csv header fields - csv << columns.map {|c| c.caption.to_s} - # csv lines - items.each do |item| - csv << columns.map {|c| csv_content(c, item)} - end - end - end - - # Retrieve query from session or build a new query - def retrieve_query(klass=IssueQuery, use_session=true, options={}) - session_key = klass.name.underscore.to_sym - - if params[:query_id].present? - scope = klass.where(:project_id => nil) - scope = scope.or(klass.where(:project_id => @project)) if @project - @query = scope.find(params[:query_id]) - raise ::Unauthorized unless @query.visible? - @query.project = @project - session[session_key] = {:id => @query.id, :project_id => @query.project_id} if use_session - elsif api_request? || params[:set_filter] || !use_session || session[session_key].nil? || session[session_key][:project_id] != (@project ? @project.id : nil) - # Give it a name, required to be valid - @query = klass.new(:name => "_", :project => @project) - @query.build_from_params(params, options[:defaults]) - session[session_key] = {:project_id => @query.project_id, :filters => @query.filters, :group_by => @query.group_by, :column_names => @query.column_names, :totalable_names => @query.totalable_names, :sort => @query.sort_criteria.to_a} if use_session - else - # retrieve from session - @query = nil - @query = klass.find_by_id(session[session_key][:id]) if session[session_key][:id] - @query ||= klass.new(:name => "_", :filters => session[session_key][:filters], :group_by => session[session_key][:group_by], :column_names => session[session_key][:column_names], :totalable_names => session[session_key][:totalable_names], :sort_criteria => session[session_key][:sort]) - @query.project = @project - end - if params[:sort].present? - @query.sort_criteria = params[:sort] - if use_session - session[session_key] ||= {} - session[session_key][:sort] = @query.sort_criteria.to_a - end - end - @query - end - - def retrieve_query_from_session(klass=IssueQuery) - session_key = klass.name.underscore.to_sym - session_data = session[session_key] - - if session_data - if session_data[:id] - @query = IssueQuery.find_by_id(session_data[:id]) - return unless @query - else - @query = IssueQuery.new(:name => "_", :filters => session_data[:filters], :group_by => session_data[:group_by], :column_names => session_data[:column_names], :totalable_names => session_data[:totalable_names], :sort_criteria => session[session_key][:sort]) - end - if session_data.has_key?(:project_id) - @query.project_id = session_data[:project_id] - else - @query.project = @project - end - @query - end - end - - # Returns the query definition as hidden field tags - def query_as_hidden_field_tags(query) - tags = hidden_field_tag("set_filter", "1", :id => nil) - - if query.filters.present? - query.filters.each do |field, filter| - tags << hidden_field_tag("f[]", field, :id => nil) - tags << hidden_field_tag("op[#{field}]", filter[:operator], :id => nil) - filter[:values].each do |value| - tags << hidden_field_tag("v[#{field}][]", value, :id => nil) - end - end - else - tags << hidden_field_tag("f[]", "", :id => nil) - end - query.columns.each do |column| - tags << hidden_field_tag("c[]", column.name, :id => nil) - end - if query.totalable_names.present? - query.totalable_names.each do |name| - tags << hidden_field_tag("t[]", name, :id => nil) - end - end - if query.group_by.present? - tags << hidden_field_tag("group_by", query.group_by, :id => nil) - end - if query.sort_criteria.present? - tags << hidden_field_tag("sort", query.sort_criteria.to_param, :id => nil) - end - - tags - end - - def query_hidden_sort_tag(query) - hidden_field_tag("sort", query.sort_criteria.to_param, :id => nil) - end - - # Returns the queries that are rendered in the sidebar - def sidebar_queries(klass, project) - klass.visible.global_or_on_project(@project).sorted.to_a - end - - # Renders a group of queries - def query_links(title, queries) - return '' if queries.empty? - # links to #index on issues/show - url_params = - if controller_name == 'issues' - {:controller => 'issues', :action => 'index', :project_id => @project} - else - {} - end - content_tag('h3', title) + "\n" + - content_tag( - 'ul', - queries.collect {|query| - css = +'query' - clear_link = +'' - if query == @query - css << ' selected' - clear_link += link_to_clear_query - end - content_tag('li', - link_to(query.name, - url_params.merge(:query_id => query), - :class => css) + - clear_link.html_safe) - }.join("\n").html_safe, - :class => 'queries' - ) + "\n" - end - - def link_to_clear_query - link_to( - l(:button_clear), - {:set_filter => 1, :sort => '', :project_id => @project}, - :class => 'icon-only icon-clear-query', - :title => l(:button_clear) - ) - end - - # Renders the list of queries for the sidebar - def render_sidebar_queries(klass, project) - queries = sidebar_queries(klass, project) - - out = ''.html_safe - out << query_links(l(:label_my_queries), queries.select(&:is_private?)) - out << query_links(l(:label_query_plural), queries.reject(&:is_private?)) - out - end -end diff --git a/app/helpers/reports_helper.rb b/app/helpers/reports_helper.rb deleted file mode 100644 index eee25ac..0000000 --- a/app/helpers/reports_helper.rb +++ /dev/null @@ -1,43 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -module ReportsHelper - - def aggregate(data, criteria) - a = 0 - data.each { |row| - match = 1 - criteria.each { |k, v| - match = 0 unless (row[k].to_s == v.to_s) || (k == 'closed' && (v == 0 ? ['f', false] : ['t', true]).include?(row[k])) - } unless criteria.nil? - a = a + row["total"].to_i if match == 1 - } unless data.nil? - a - end - - def aggregate_link(data, criteria, *args) - a = aggregate data, criteria - a > 0 ? link_to(h(a), *args) : '-' - end - - def aggregate_path(project, field, row, options={}) - parameters = {:set_filter => 1, :subproject_id => '!*', field => row.id}.merge(options) - project_issues_path(row.is_a?(Project) ? row : project, parameters) - end -end diff --git a/app/helpers/repositories_helper.rb b/app/helpers/repositories_helper.rb deleted file mode 100644 index c5cb85e..0000000 --- a/app/helpers/repositories_helper.rb +++ /dev/null @@ -1,310 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -module RepositoriesHelper - def format_revision(revision) - if revision.respond_to? :format_identifier - revision.format_identifier - else - revision.to_s - end - end - - def truncate_at_line_break(text, length = 255) - if text - text.gsub(%r{^(.{#{length}}[^\n]*)\n.+$}m, '\\1...') - end - end - - def render_pagination - pagination_links_each @paginator do |text, parameters, options| - if entry = @entries[parameters[:page] - 1] - ent_path = Redmine::CodesetUtil.replace_invalid_utf8(entry.path) - link_to text, {action: 'entry', id: @project, repository_id: @repository.identifier_param, path: to_path_param(ent_path), rev: @rev} - end - end if @paginator - end - - def render_properties(properties) - unless properties.nil? || properties.empty? - content = +'' - properties.keys.sort.each do |property| - content << content_tag('li', "#{h property}: #{h properties[property]}".html_safe) - end - content_tag('ul', content.html_safe, :class => 'properties') - end - end - - def render_changeset_changes - changes = @changeset.filechanges.limit(1000).reorder('path').collect do |change| - case change.action - when 'A' - # Detects moved/copied files - if !change.from_path.blank? - change.action = - @changeset.filechanges.detect {|c| c.action == 'D' && c.path == change.from_path} ? 'R' : 'C' - end - change - when 'D' - @changeset.filechanges.detect {|c| c.from_path == change.path} ? nil : change - else - change - end - end.compact - - tree = { } - changes.each do |change| - p = tree - dirs = change.path.to_s.split('/').select {|d| !d.blank?} - path = '' - dirs.each do |dir| - path += '/' + dir - p[:s] ||= {} - p = p[:s] - p[path] ||= {} - p = p[path] - end - p[:c] = change - end - render_changes_tree(tree[:s]) - end - - def render_changes_tree(tree) - return '' if tree.nil? - output = +'' - output << '
      ' - tree.keys.sort.each do |file| - style = +'change' - text = File.basename(h(file)) - if s = tree[file][:s] - style << ' folder' - path_param = to_path_param(@repository.relative_path(file)) - text = link_to(h(text), :controller => 'repositories', - :action => 'show', - :id => @project, - :repository_id => @repository.identifier_param, - :path => path_param, - :rev => @changeset.identifier) - output << "
    • #{text}" - output << render_changes_tree(s) - output << "
    • " - elsif c = tree[file][:c] - style << " change-#{c.action}" - path_param = to_path_param(@repository.relative_path(c.path)) - text = link_to(h(text), :controller => 'repositories', - :action => 'entry', - :id => @project, - :repository_id => @repository.identifier_param, - :path => path_param, - :rev => @changeset.identifier) unless c.action == 'D' - text << " - #{h(c.revision)}" unless c.revision.blank? - text << ' ('.html_safe + link_to(l(:label_diff), :controller => 'repositories', - :action => 'diff', - :id => @project, - :repository_id => @repository.identifier_param, - :path => path_param, - :rev => @changeset.identifier) + ') '.html_safe if c.action == 'M' - text << ' '.html_safe + content_tag('span', h(c.from_path), :class => 'copied-from') unless c.from_path.blank? - output << "
    • #{text}
    • " - end - end - output << '
    ' - output.html_safe - end - - def repository_field_tags(form, repository) - method = repository.class.name.demodulize.underscore + "_field_tags" - if repository.is_a?(Repository) && - respond_to?(method) && method != 'repository_field_tags' - send(method, form, repository) - end - end - - def scm_select_tag(repository) - scm_options = [["--- #{l(:actionview_instancetag_blank_option)} ---", '']] - Redmine::Scm::Base.all.each do |scm| - if Setting.enabled_scm.include?(scm) || - (repository && repository.class.name.demodulize == scm) - scm_options << ["Repository::#{scm}".constantize.scm_name, scm] - end - end - select_tag('repository_scm', - options_for_select(scm_options, repository.class.name.demodulize), - :disabled => (repository && !repository.new_record?), - :data => {:remote => true, :method => 'get', :url => new_project_repository_path(repository.project)}) - end - - def with_leading_slash(path) - path.to_s.starts_with?('/') ? path : "/#{path}" - end - - def subversion_field_tags(form, repository) - content_tag('p', form.text_field(:url, :size => 60, :required => true, - :disabled => !repository.safe_attribute?('url')) + - scm_path_info_tag(repository)) + - content_tag('p', form.text_field(:login, :size => 30)) + - content_tag('p', form.password_field( - :password, :size => 30, :name => 'ignore', - :value => ((repository.new_record? || repository.password.blank?) ? '' : ('x'*15)), - :onfocus => "this.value=''; this.name='repository[password]';", - :onchange => "this.name='repository[password]';")) - end - - def mercurial_field_tags(form, repository) - content_tag('p', form.text_field( - :url, :label => l(:field_path_to_repository), - :size => 60, :required => true, - :disabled => !repository.safe_attribute?('url') - ) + - scm_path_info_tag(repository)) + - scm_path_encoding_tag(form, repository) - end - - def git_field_tags(form, repository) - content_tag('p', form.text_field( - :url, :label => l(:field_path_to_repository), - :size => 60, :required => true, - :disabled => !repository.safe_attribute?('url') - ) + - scm_path_info_tag(repository)) + - scm_path_encoding_tag(form, repository) + - content_tag('p', form.check_box( - :report_last_commit, - :label => l(:label_git_report_last_commit) - )) - end - - def cvs_field_tags(form, repository) - content_tag('p', form.text_field( - :root_url, - :label => l(:field_cvsroot), - :size => 60, :required => true, - :disabled => !repository.safe_attribute?('root_url')) + - scm_path_info_tag(repository)) + - content_tag('p', form.text_field( - :url, - :label => l(:field_cvs_module), - :size => 30, :required => true, - :disabled => !repository.safe_attribute?('url'))) + - scm_log_encoding_tag(form, repository) + - scm_path_encoding_tag(form, repository) - end - - def bazaar_field_tags(form, repository) - content_tag('p', form.text_field( - :url, :label => l(:field_path_to_repository), - :size => 60, :required => true, - :disabled => !repository.safe_attribute?('url')) + - scm_path_info_tag(repository)) + - scm_log_encoding_tag(form, repository) - end - - def filesystem_field_tags(form, repository) - content_tag('p', form.text_field( - :url, :label => l(:field_root_directory), - :size => 60, :required => true, - :disabled => !repository.safe_attribute?('url')) + - scm_path_info_tag(repository)) + - scm_path_encoding_tag(form, repository) - end - - def scm_path_info_tag(repository) - text = scm_path_info(repository) - if text.present? - content_tag('em', text, :class => 'info') - else - '' - end - end - - def scm_path_info(repository) - scm_name = repository.scm_name.to_s.downcase - - info_from_config = Redmine::Configuration["scm_#{scm_name}_path_info"].presence - return info_from_config.html_safe if info_from_config - - l("text_#{scm_name}_repository_note", :default => '') - end - - def scm_log_encoding_tag(form, repository) - select = form.select( - :log_encoding, - [nil] + Setting::ENCODINGS, - :label => l(:field_commit_logs_encoding), - :required => true - ) - content_tag('p', select) - end - - def scm_path_encoding_tag(form, repository) - select = form.select( - :path_encoding, - [nil] + Setting::ENCODINGS, - :label => l(:field_scm_path_encoding) - ) - content_tag('p', select + content_tag('em', l(:text_scm_path_encoding_note), :class => 'info')) - end - - def index_commits(commits, heads) - return nil if commits.nil? or commits.first.parents.nil? - refs_map = {} - heads.each do |head| - refs_map[head.scmid] ||= [] - refs_map[head.scmid] << head - end - commits_by_scmid = {} - commits.reverse.each_with_index do |commit, commit_index| - commits_by_scmid[commit.scmid] = { - :parent_scmids => commit.parents.collect { |parent| parent.scmid }, - :rdmid => commit_index, - :refs => refs_map.include?(commit.scmid) ? refs_map[commit.scmid].join(" ") : nil, - :scmid => commit.scmid, - :href => block_given? ? yield(commit.scmid) : commit.scmid - } - end - heads.sort_by!(&:to_s) - space = nil - heads.each do |head| - if commits_by_scmid.include? head.scmid - space = index_head((space || -1) + 1, head, commits_by_scmid) - end - end - # when no head matched anything use first commit - space ||= index_head(0, commits.first, commits_by_scmid) - return commits_by_scmid, space - end - - def index_head(space, commit, commits_by_scmid) - stack = [[space, commits_by_scmid[commit.scmid]]] - max_space = space - until stack.empty? - space, commit = stack.pop - commit[:space] = space if commit[:space].nil? - space -= 1 - commit[:parent_scmids].each_with_index do |parent_scmid, parent_index| - parent_commit = commits_by_scmid[parent_scmid] - if parent_commit and parent_commit[:space].nil? - stack.unshift [space += 1, parent_commit] - end - end - max_space = space if max_space < space - end - max_space - end -end diff --git a/app/helpers/roles_helper.rb b/app/helpers/roles_helper.rb deleted file mode 100644 index cee7cbd..0000000 --- a/app/helpers/roles_helper.rb +++ /dev/null @@ -1,21 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -module RolesHelper -end diff --git a/app/helpers/routes_helper.rb b/app/helpers/routes_helper.rb deleted file mode 100644 index 9628529..0000000 --- a/app/helpers/routes_helper.rb +++ /dev/null @@ -1,85 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -module RoutesHelper - - # Returns the path to project issues or to the cross-project - # issue list if project is nil - def _project_issues_path(project, *args) - if project - project_issues_path(project, *args) - else - issues_path(*args) - end - end - - def _project_news_path(project, *args) - if project - project_news_index_path(project, *args) - else - news_index_path(*args) - end - end - - def _new_project_issue_path(project, *args) - if project - new_project_issue_path(project, *args) - else - new_issue_path(*args) - end - end - - def _project_calendar_path(project, *args) - project ? project_calendar_path(project, *args) : issues_calendar_path(*args) - end - - def _project_gantt_path(project, *args) - project ? project_gantt_path(project, *args) : issues_gantt_path(*args) - end - - def _time_entries_path(project, issue, *args) - if project - project_time_entries_path(project, *args) - else - time_entries_path(*args) - end - end - - def _report_time_entries_path(project, issue, *args) - if project - report_project_time_entries_path(project, *args) - else - report_time_entries_path(*args) - end - end - - def _new_time_entry_path(project, issue, *args) - if issue - new_issue_time_entry_path(issue, *args) - elsif project - new_project_time_entry_path(project, *args) - else - new_time_entry_path(*args) - end - end - - def board_path(board, *args) - project_board_path(board.project, board, *args) - end -end diff --git a/app/helpers/settings_helper.rb b/app/helpers/settings_helper.rb deleted file mode 100644 index 39b8a38..0000000 --- a/app/helpers/settings_helper.rb +++ /dev/null @@ -1,216 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -module SettingsHelper - def administration_settings_tabs - tabs = [{:name => 'general', :partial => 'settings/general', :label => :label_general}, - {:name => 'display', :partial => 'settings/display', :label => :label_display}, - {:name => 'authentication', :partial => 'settings/authentication', :label => :label_authentication}, - {:name => 'api', :partial => 'settings/api', :label => :label_api}, - {:name => 'projects', :partial => 'settings/projects', :label => :label_project_plural}, - {:name => 'users', :partial => 'settings/users', :label => :label_user_plural}, - {:name => 'issues', :partial => 'settings/issues', :label => :label_issue_tracking}, - {:name => 'timelog', :partial => 'settings/timelog', :label => :label_time_tracking}, - {:name => 'attachments', :partial => 'settings/attachments', :label => :label_attachment_plural}, - {:name => 'notifications', :partial => 'settings/notifications', :label => :field_mail_notification}, - {:name => 'mail_handler', :partial => 'settings/mail_handler', :label => :label_incoming_emails}, - {:name => 'repositories', :partial => 'settings/repositories', :label => :label_repository_plural} - ] - end - - def render_settings_error(errors) - return if errors.blank? - s = ''.html_safe - errors.each do |name, message| - s << content_tag('li', content_tag('b', l("setting_#{name}")) + " " + message) - end - content_tag('div', content_tag('ul', s), :id => 'errorExplanation') - end - - def setting_value(setting) - value = nil - if params[:settings] - value = params[:settings][setting] - end - value || Setting.send(setting) - end - - def setting_select(setting, choices, options={}) - if blank_text = options.delete(:blank) - choices = [[blank_text.is_a?(Symbol) ? l(blank_text) : blank_text, '']] + choices - end - setting_label(setting, options).html_safe + - select_tag("settings[#{setting}]", - options_for_select(choices, setting_value(setting).to_s), - options).html_safe - end - - def setting_multiselect(setting, choices, options={}) - setting_values = setting_value(setting) - setting_values = [] unless setting_values.is_a?(Array) - - content_tag("label", l(options[:label] || "setting_#{setting}")) + - hidden_field_tag("settings[#{setting}][]", '').html_safe + - choices.collect do |choice| - text, value = (choice.is_a?(Array) ? choice : [choice, choice]) - content_tag( - 'label', - check_box_tag( - "settings[#{setting}][]", - value, - setting_values.include?(value), - :id => nil - ) + text.to_s, - :class => (options[:inline] ? 'inline' : 'block') - ) - end.join.html_safe - end - - def setting_text_field(setting, options={}) - setting_label(setting, options).html_safe + - text_field_tag("settings[#{setting}]", setting_value(setting), options).html_safe - end - - def setting_text_area(setting, options={}) - setting_label(setting, options).html_safe + - text_area_tag("settings[#{setting}]", setting_value(setting), options).html_safe - end - - def setting_check_box(setting, options={}) - setting_label(setting, options).html_safe + - hidden_field_tag("settings[#{setting}]", 0, :id => nil).html_safe + - check_box_tag("settings[#{setting}]", 1, setting_value(setting).to_s != '0', options).html_safe - end - - def setting_label(setting, options={}) - label = options.delete(:label) - if label == false - '' - else - text = label.is_a?(String) ? label : l(label || "setting_#{setting}") - label_tag("settings_#{setting}", text, options[:label_options]) - end - end - - # Renders a notification field for a Redmine::Notifiable option - def notification_field(notifiable) - tag_data = notifiable.parent.present? ? - {:parent_notifiable => notifiable.parent} : - {:disables => "input[data-parent-notifiable=#{notifiable.name}]"} - tag = check_box_tag('settings[notified_events][]', - notifiable.name, - setting_value('notified_events').include?(notifiable.name), - :id => nil, - :data => tag_data) - text = l_or_humanize(notifiable.name, :prefix => 'label_') - options = {} - if notifiable.parent.present? - options[:class] = "parent" - end - content_tag(:label, tag + text, options) - end - - def session_lifetime_options - options = [[l(:label_disabled), 0]] - options += [4, 8, 12].map {|hours| - [l('datetime.distance_in_words.x_hours', :count => hours), (hours * 60).to_s] - } - options += [1, 7, 30, 60, 365].map {|days| - [l('datetime.distance_in_words.x_days', :count => days), (days * 24 * 60).to_s] - } - options - end - - def session_timeout_options - options = [[l(:label_disabled), 0]] - options += [1, 2, 4, 8, 12, 24, 48].map {|hours| - [l('datetime.distance_in_words.x_hours', :count => hours), (hours * 60).to_s] - } - options - end - - def link_copied_issue_options - options = [ - [:general_text_Yes, 'yes'], - [:general_text_No, 'no'], - [:label_ask, 'ask'] - ] - - options.map {|label, value| [l(label), value.to_s]} - end - - def cross_project_subtasks_options - options = [ - [:label_disabled, ''], - [:label_cross_project_system, 'system'], - [:label_cross_project_tree, 'tree'], - [:label_cross_project_hierarchy, 'hierarchy'], - [:label_cross_project_descendants, 'descendants'] - ] - - options.map {|label, value| [l(label), value.to_s]} - end - - def parent_issue_dates_options - options = [ - [:label_parent_task_attributes_derived, 'derived'], - [:label_parent_task_attributes_independent, 'independent'] - ] - - options.map {|label, value| [l(label), value.to_s]} - end - - def parent_issue_priority_options - options = [ - [:label_parent_task_attributes_derived, 'derived'], - [:label_parent_task_attributes_independent, 'independent'] - ] - - options.map {|label, value| [l(label), value.to_s]} - end - - def parent_issue_done_ratio_options - options = [ - [:label_parent_task_attributes_derived, 'derived'], - [:label_parent_task_attributes_independent, 'independent'] - ] - - options.map {|label, value| [l(label), value.to_s]} - end - - # Returns the options for the date_format setting - def date_format_setting_options(locale) - Setting::DATE_FORMATS.map do |f| - today = ::I18n.l(User.current.today, :locale => locale, :format => f) - format = f.gsub('%', '').gsub(/[dmY]/) do - {'d' => 'dd', 'm' => 'mm', 'Y' => 'yyyy'}[$&] - end - ["#{today} (#{format})", f] - end - end - - def gravatar_default_setting_options - [['Identicons', 'identicon'], - ['Monster ids', 'monsterid'], - ['Mystery man', 'mm'], - ['Retro', 'retro'], - ['Robohash', 'robohash'], - ['Wavatars', 'wavatar']] - end -end diff --git a/app/helpers/sort_helper.rb b/app/helpers/sort_helper.rb deleted file mode 100644 index e6fe55f..0000000 --- a/app/helpers/sort_helper.rb +++ /dev/null @@ -1,162 +0,0 @@ -# frozen_string_literal: true - -# Helpers to sort tables using clickable column headers. -# -# Author: Stuart Rackham , March 2005. -# Jean-Philippe Lang, 2009 -# License: This source code is released under the MIT license. -# -# - Consecutive clicks toggle the column's sort order. -# - Sort state is maintained by a session hash entry. -# - CSS classes identify sort column and state. -# - Typically used in conjunction with the Pagination module. -# -# Example code snippets: -# -# Controller: -# -# helper :sort -# include SortHelper -# -# def list -# sort_init 'last_name' -# sort_update %w(first_name last_name) -# @items = Contact.find_all nil, sort_clause -# end -# -# Controller (using Pagination module): -# -# helper :sort -# include SortHelper -# -# def list -# sort_init 'last_name' -# sort_update %w(first_name last_name) -# @contact_pages, @items = paginate :contacts, -# :order_by => sort_clause, -# :per_page => 10 -# end -# -# View (table header in list.rhtml): -# -# -# -# <%= sort_header_tag('id', :title => 'Sort by contact ID') %> -# <%= sort_header_tag('last_name', :caption => 'Name') %> -# <%= sort_header_tag('phone') %> -# <%= sort_header_tag('address', :width => 200) %> -# -# -# -# - Introduces instance variables: @sort_default, @sort_criteria -# - Introduces param :sort -# - -module SortHelper - def sort_name - controller_name + '_' + action_name + '_sort' - end - - # Initializes the default sort. - # Examples: - # - # sort_init 'name' - # sort_init 'id', 'desc' - # sort_init ['name', ['id', 'desc']] - # sort_init [['name', 'desc'], ['id', 'desc']] - # - def sort_init(*args) - case args.size - when 1 - @sort_default = args.first.is_a?(Array) ? args.first : [[args.first]] - when 2 - @sort_default = [[args.first, args.last]] - else - raise ArgumentError - end - end - - # Updates the sort state. Call this in the controller prior to calling - # sort_clause. - # - criteria can be either an array or a hash of allowed keys - # - def sort_update(criteria, sort_name=nil) - sort_name ||= self.sort_name - @sort_criteria = Redmine::SortCriteria.new(params[:sort] || session[sort_name] || @sort_default) - @sortable_columns = criteria - session[sort_name] = @sort_criteria.to_param - end - - # Clears the sort criteria session data - # - def sort_clear - session[sort_name] = nil - end - - # Returns an SQL sort clause corresponding to the current sort state. - # Use this to sort the controller's table items collection. - # - def sort_clause - @sort_criteria.sort_clause(@sortable_columns) - end - - def sort_criteria - @sort_criteria - end - - # Returns a link which sorts by the named column. - # - # - column is the name of an attribute in the sorted record collection. - # - the optional caption explicitly specifies the displayed link text. - # - 2 CSS classes reflect the state of the link: sort and asc or desc - # - def sort_link(column, caption, default_order) - css, order = nil, default_order - - if column.to_s == @sort_criteria.first_key - if @sort_criteria.first_asc? - css = 'sort asc icon icon-sorted-desc' - order = 'desc' - else - css = 'sort desc icon icon-sorted-asc' - order = 'asc' - end - end - caption = column.to_s.humanize unless caption - - sort_options = { :sort => @sort_criteria.add(column.to_s, order).to_param } - link_to(caption, {:params => request.query_parameters.merge(sort_options)}, :class => css) - end - - # Returns a table header tag with a sort link for the named column - # attribute. - # - # Options: - # :caption The displayed link name (defaults to titleized column name). - # :title The tag's 'title' attribute (defaults to 'Sort by :caption'). - # - # Other options hash entries generate additional table header tag attributes. - # - # Example: - # - # <%= sort_header_tag('id', :title => 'Sort by contact ID', :width => 40) %> - # - def sort_header_tag(column, options = {}) - caption = options.delete(:caption) || column.to_s.humanize - default_order = options.delete(:default_order) || 'asc' - options[:title] = l(:label_sort_by, "\"#{caption}\"") unless options[:title] - content_tag('th', sort_link(column, caption, default_order), options) - end - - # Returns the css classes for the current sort order - # - # Example: - # - # sort_css_classes - # # => "sort-by-created-on sort-desc" - def sort_css_classes - if @sort_criteria.first_key - "sort-by-#{@sort_criteria.first_key.to_s.dasherize} sort-#{@sort_criteria.first_asc? ? 'asc' : 'desc'}" - end - end -end diff --git a/app/helpers/timelog_helper.rb b/app/helpers/timelog_helper.rb deleted file mode 100644 index 49d78fd..0000000 --- a/app/helpers/timelog_helper.rb +++ /dev/null @@ -1,137 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -module TimelogHelper - include ApplicationHelper - - # Returns a collection of activities for a select field. time_entry - # is optional and will be used to check if the selected TimeEntryActivity - # is active. - def activity_collection_for_select_options(time_entry=nil, project=nil) - project ||= time_entry.try(:project) - project ||= @project - if project.nil? - activities = TimeEntryActivity.shared.active - else - activities = project.activities - end - - collection = [] - if time_entry && time_entry.activity && !time_entry.activity.active? - collection << [ "--- #{l(:actionview_instancetag_blank_option)} ---", '' ] - else - collection << [ "--- #{l(:actionview_instancetag_blank_option)} ---", '' ] unless activities.detect(&:is_default) - end - activities.each { |a| collection << [a.name, a.id] } - collection - end - - def user_collection_for_select_options(time_entry) - collection = time_entry.assignable_users - collection << time_entry.user if time_entry.user && !collection.include?(time_entry.user) - principals_options_for_select(collection, time_entry.user_id.to_s) - end - - def select_hours(data, criteria, value) - if value.to_s.empty? - data.select {|row| row[criteria].blank? } - else - data.select {|row| row[criteria].to_s == value.to_s} - end - end - - def sum_hours(data) - sum = 0 - data.each do |row| - sum += row['hours'].to_f - end - sum - end - - def format_criteria_value(criteria_options, value, html=true) - if value.blank? - "[#{l(:label_none)}]" - elsif k = criteria_options[:klass] - obj = k.find_by_id(value.to_i) - if obj.is_a?(Issue) - if obj.visible? - html ? link_to_issue(obj) : "#{obj.tracker} ##{obj.id}: #{obj.subject}" - else - "##{obj.id}" - end - else - format_object(obj, html) - end - elsif cf = criteria_options[:custom_field] - format_value(value, cf) - else - value.to_s - end - end - - def report_to_csv(report) - Redmine::Export::CSV.generate(:encoding => params[:encoding]) do |csv| - # Column headers - headers = report.criteria.collect {|criteria| l_or_humanize(report.available_criteria[criteria][:label]) } - headers += report.periods - headers << l(:label_total_time) - csv << headers - # Content - report_criteria_to_csv(csv, report.available_criteria, report.columns, report.criteria, report.periods, report.hours) - # Total row - str_total = l(:label_total_time) - row = [ str_total ] + [''] * (report.criteria.size - 1) - total = 0 - report.periods.each do |period| - sum = sum_hours(select_hours(report.hours, report.columns, period.to_s)) - total += sum - row << (sum > 0 ? sum : '') - end - row << total - csv << row - end - end - - def report_criteria_to_csv(csv, available_criteria, columns, criteria, periods, hours, level=0) - hours.collect {|h| h[criteria[level]].to_s}.uniq.each do |value| - hours_for_value = select_hours(hours, criteria[level], value) - next if hours_for_value.empty? - row = [''] * level - row << format_criteria_value(available_criteria[criteria[level]], value, false).to_s - row += [''] * (criteria.length - level - 1) - total = 0 - periods.each do |period| - sum = sum_hours(select_hours(hours_for_value, columns, period.to_s)) - total += sum - row << (sum > 0 ? sum : '') - end - row << total - csv << row - if criteria.length > level + 1 - report_criteria_to_csv(csv, available_criteria, columns, criteria, periods, hours_for_value, level + 1) - end - end - end - - def cancel_button_tag_for_time_entry(project) - fallback_path = project ? project_time_entries_path(project) : time_entries_path - cancel_button_tag(fallback_path) - end - -end diff --git a/app/helpers/trackers_helper.rb b/app/helpers/trackers_helper.rb deleted file mode 100644 index 2616ffc..0000000 --- a/app/helpers/trackers_helper.rb +++ /dev/null @@ -1,27 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -module TrackersHelper - - def tracker_name_tag(tracker) - title = tracker.description.presence - css = title ? "field-description" : nil - content_tag 'span', tracker.name, :class => css, :title => title - end -end diff --git a/app/helpers/users_helper.rb b/app/helpers/users_helper.rb deleted file mode 100644 index dece861..0000000 --- a/app/helpers/users_helper.rb +++ /dev/null @@ -1,100 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -module UsersHelper - include ApplicationHelper - - def users_status_options_for_select(selected) - user_count_by_status = User.group('status').count.to_hash - options_for_select([[l(:label_all), '']] + (User.valid_statuses.map {|c| ["#{l('status_' + User::LABEL_BY_STATUS[c])} (#{user_count_by_status[c].to_i})", c]}), selected.to_s) - end - - def user_mail_notification_options(user) - user.valid_notification_options.collect {|o| [l(o.last), o.first]} - end - - def textarea_font_options - [[l(:label_font_default), '']] + UserPreference::TEXTAREA_FONT_OPTIONS.map {|o| [l("label_font_#{o}"), o]} - end - - def history_default_tab_options - [[l('label_issue_history_notes'), 'notes'], - [l('label_history'), 'history'], - [l('label_issue_history_properties'), 'properties'], - [l('label_time_entry_plural'), 'time_entries'], - [l('label_associated_revisions'), 'changesets'], - [l('label_last_tab_visited'), 'last_tab_visited']] - end - - def change_status_link(user) - url = {:controller => 'users', :action => 'update', :id => user, :page => params[:page], :status => params[:status], :tab => nil} - - if user.locked? - link_to l(:button_unlock), url.merge(:user => {:status => User::STATUS_ACTIVE}), :method => :put, :class => 'icon icon-unlock' - elsif user.registered? - link_to l(:button_activate), url.merge(:user => {:status => User::STATUS_ACTIVE}), :method => :put, :class => 'icon icon-unlock' - elsif user != User.current - link_to l(:button_lock), url.merge(:user => {:status => User::STATUS_LOCKED}), :method => :put, :class => 'icon icon-lock' - end - end - - def additional_emails_link(user) - if user.email_addresses.count > 1 || Setting.max_additional_emails.to_i > 0 - link_to l(:label_email_address_plural), user_email_addresses_path(@user), :class => 'icon icon-email-add', :remote => true - end - end - - def user_settings_tabs - tabs = [{:name => 'general', :partial => 'users/general', :label => :label_general}, - {:name => 'memberships', :partial => 'users/memberships', :label => :label_project_plural} - ] - if Group.givable.any? - tabs.insert 1, {:name => 'groups', :partial => 'users/groups', :label => :label_group_plural} - end - tabs - end - - def users_to_csv(users) - Redmine::Export::CSV.generate(:encoding => params[:encoding]) do |csv| - columns = [ - 'login', - 'firstname', - 'lastname', - 'mail', - 'admin', - 'created_on', - 'last_login_on', - 'status' - ] - - # csv header fields - csv << columns.map{|column| l('field_' + column)} - # csv lines - users.each do |user| - csv << columns.map do |column| - if column == 'status' - l(("status_#{User::LABEL_BY_STATUS[user.status]}")) - else - format_object(user.send(column), false) - end - end - end - end - end -end diff --git a/app/helpers/versions_helper.rb b/app/helpers/versions_helper.rb deleted file mode 100644 index 42dd6af..0000000 --- a/app/helpers/versions_helper.rb +++ /dev/null @@ -1,107 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -module VersionsHelper - - def version_anchor(version) - if @project == version.project - anchor version.name - else - anchor "#{version.project.try(:identifier)}-#{version.name}" - end - end - - def version_filtered_issues_path(version, options = {}) - options = {:fixed_version_id => version, :set_filter => 1}.merge(options) - project = - case version.sharing - when 'hierarchy', 'tree' - if version.project && version.project.root.visible? - version.project.root - else - version.project - end - when 'system' - nil - else - version.project - end - if project - project_issues_path(project, options) - else - issues_path(options) - end - end - - STATUS_BY_CRITERIAS = %w(tracker status priority author assigned_to category) - - def render_issue_status_by(version, criteria) - criteria = 'tracker' unless STATUS_BY_CRITERIAS.include?(criteria) - h = Hash.new {|k,v| k[v] = [0, 0]} - begin - # Total issue count - version.visible_fixed_issues.group(criteria).count.each {|c,s| h[c][0] = s} - # Open issues count - version.visible_fixed_issues.open.group(criteria).count.each {|c,s| h[c][1] = s} - rescue ActiveRecord::RecordNotFound - # When grouping by an association, Rails throws this exception if there's no result (bug) - end - # Sort with nil keys in last position - sorted_keys = - h.keys.sort {|a, b| - if a.nil? - 1 - else - b.nil? ? -1 : a <=> b - end - } - counts = - sorted_keys.collect {|k| - {:group => k, :total => h[k][0], :open => h[k][1], :closed => (h[k][0] - h[k][1])} - } - max = counts.collect {|c| c[:total]}.max - render :partial => 'issue_counts', :locals => {:version => version, :criteria => criteria, :counts => counts, :max => max} - end - - def status_by_options_for_select(value) - options_for_select(STATUS_BY_CRITERIAS.collect {|criteria| [l("field_#{criteria}".to_sym), criteria]}, value) - end - - def link_to_new_issue(version, project) - if version.open? && User.current.allowed_to?(:add_issues, project) - trackers = Issue.allowed_target_trackers(project) - - unless trackers.empty? - issue = Issue.new(:project => project) - new_issue_tracker = trackers.detect do |tracker| - issue.tracker = tracker - issue.safe_attribute?('fixed_version_id') - end - end - - if new_issue_tracker - attrs = { - :tracker_id => new_issue_tracker, - :fixed_version_id => version.id - } - link_to l(:label_issue_new), new_project_issue_path(project, :issue => attrs, :back_url => version_path(version)), :class => 'icon icon-add' - end - end - end -end diff --git a/app/helpers/watchers_helper.rb b/app/helpers/watchers_helper.rb deleted file mode 100644 index dab5e6b..0000000 --- a/app/helpers/watchers_helper.rb +++ /dev/null @@ -1,80 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -module WatchersHelper - - def watcher_link(objects, user) - return '' unless user && user.logged? - objects = Array.wrap(objects) - return '' unless objects.any? - - watched = Watcher.any_watched?(objects, user) - css = [watcher_css(objects), watched ? 'icon icon-fav' : 'icon icon-fav-off'].join(' ') - text = watched ? l(:button_unwatch) : l(:button_watch) - url = watch_path( - :object_type => objects.first.class.to_s.underscore, - :object_id => (objects.size == 1 ? objects.first.id : objects.map(&:id).sort) - ) - method = watched ? 'delete' : 'post' - - link_to text, url, :remote => true, :method => method, :class => css - end - - # Returns the css class used to identify watch links for a given +object+ - def watcher_css(objects) - objects = Array.wrap(objects) - id = (objects.size == 1 ? objects.first.id : 'bulk') - "#{objects.first.class.to_s.underscore}-#{id}-watcher" - end - - # Returns a comma separated list of users watching the given object - def watchers_list(object) - remove_allowed = User.current.allowed_to?("delete_#{object.class.name.underscore}_watchers".to_sym, object.project) - content = ''.html_safe - lis = object.watcher_users.preload(:email_address).collect do |user| - s = ''.html_safe - s << avatar(user, :size => "16").to_s - s << link_to_user(user, :class => 'user') - if remove_allowed - url = {:controller => 'watchers', - :action => 'destroy', - :object_type => object.class.to_s.underscore, - :object_id => object.id, - :user_id => user} - s << ' ' - s << link_to(l(:button_delete), url, - :remote => true, :method => 'delete', - :class => "delete icon-only icon-del", - :title => l(:button_delete)) - end - content << content_tag('li', s, :class => "user-#{user.id}") - end - content.present? ? content_tag('ul', content, :class => 'watchers') : content - end - - def watchers_checkboxes(object, users, checked=nil) - users.map do |user| - c = checked.nil? ? object.watched_by?(user) : checked - tag = check_box_tag 'issue[watcher_user_ids][]', user.id, c, :id => nil - content_tag 'label', "#{tag} #{h(user)}".html_safe, - :id => "issue_watcher_user_ids_#{user.id}", - :class => "floating" - end.join.html_safe - end -end diff --git a/app/helpers/welcome_helper.rb b/app/helpers/welcome_helper.rb deleted file mode 100644 index 5c3fdab..0000000 --- a/app/helpers/welcome_helper.rb +++ /dev/null @@ -1,21 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -module WelcomeHelper -end diff --git a/app/helpers/wiki_helper.rb b/app/helpers/wiki_helper.rb deleted file mode 100644 index 0a94073..0000000 --- a/app/helpers/wiki_helper.rb +++ /dev/null @@ -1,71 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -module WikiHelper - include Redmine::Export::PDF::WikiPdfHelper - - def wiki_page_options_for_select(pages, selected = nil, parent = nil, level = 0) - pages = pages.group_by(&:parent) unless pages.is_a?(Hash) - s = (+'').html_safe - if pages.has_key?(parent) - pages[parent].each do |page| - attrs = +"value='#{page.id}'" - attrs << " selected='selected'" if selected == page - indent = (level > 0) ? (' ' * level * 2 + '» ') : '' - - s << content_tag('option', (indent + h(page.pretty_title)).html_safe, :value => page.id.to_s, :selected => selected == page) + - wiki_page_options_for_select(pages, selected, page, level + 1) - end - end - s - end - - def wiki_page_wiki_options_for_select(page) - projects = Project.allowed_to(:rename_wiki_pages).joins(:wiki).preload(:wiki).to_a - projects << page.project unless projects.include?(page.project) - - project_tree_options_for_select(projects, :selected => page.project) do |project| - wiki_id = project.wiki.try(:id) - {:value => wiki_id, :selected => wiki_id == page.wiki_id} - end - end - - def wiki_page_breadcrumb(page) - breadcrumb(page.ancestors.reverse.collect {|parent| - link_to(h(parent.pretty_title), {:controller => 'wiki', :action => 'show', :id => parent.title, :project_id => parent.project, :version => nil}) - }) - end - - # Returns the path for the Cancel link when editing a wiki page - def wiki_page_edit_cancel_path(page) - if page.new_record? - if parent = page.parent - project_wiki_page_path(parent.project, parent.title) - else - project_wiki_index_path(page.project) - end - else - project_wiki_page_path(page.project, page.title) - end - end - - def wiki_content_update_info(content) - l(:label_updated_time_by, :author => link_to_user(content.author), :age => time_tag(content.updated_on)).html_safe - end -end diff --git a/app/helpers/workflows_helper.rb b/app/helpers/workflows_helper.rb deleted file mode 100644 index 813c479..0000000 --- a/app/helpers/workflows_helper.rb +++ /dev/null @@ -1,100 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -module WorkflowsHelper - def options_for_workflow_select(name, objects, selected, options={}) - option_tags = ''.html_safe - multiple = false - if selected - if selected.size == objects.size - selected = 'all' - else - selected = selected.map(&:id) - if selected.size > 1 - multiple = true - end - end - else - selected = objects.first.try(:id) - end - all_tag_options = {:value => 'all', :selected => (selected == 'all')} - if multiple - all_tag_options.merge!(:style => "display:none;") - end - option_tags << content_tag('option', l(:label_all), all_tag_options) - option_tags << options_from_collection_for_select(objects, "id", "name", selected) - select_tag name, option_tags, {:multiple => multiple}.merge(options) - end - - def field_required?(field) - field.is_a?(CustomField) ? field.is_required? : %w(project_id tracker_id subject priority_id is_private).include?(field) - end - - def field_permission_tag(permissions, status, field, roles) - name = field.is_a?(CustomField) ? field.id.to_s : field - options = [["", ""], [l(:label_readonly), "readonly"]] - options << [l(:label_required), "required"] unless field_required?(field) - html_options = {} - - if perm = permissions[status.id][name] - if perm.uniq.size > 1 || perm.size < @roles.size * @trackers.size - options << [l(:label_no_change_option), "no_change"] - selected = 'no_change' - else - selected = perm.first - end - end - - hidden = field.is_a?(CustomField) && - !field.visible? && - !roles.detect {|role| role.custom_fields.to_a.include?(field)} - - if hidden - options[0][0] = l(:label_hidden) - selected = '' - html_options[:disabled] = true - end - - select_tag("permissions[#{status.id}][#{name}]", options_for_select(options, selected), html_options) - end - - def transition_tag(transition_count, old_status, new_status, name) - w = transition_count - tag_name = "transitions[#{ old_status.try(:id) || 0 }][#{new_status.id}][#{name}]" - if old_status == new_status - check_box_tag(tag_name, "1", true, - {:disabled => true, :class => "old-status-#{old_status.try(:id) || 0} new-status-#{new_status.id}"}) - elsif w == 0 || w == @roles.size * @trackers.size - hidden_field_tag(tag_name, "0", :id => nil) + - check_box_tag(tag_name, "1", w != 0, - :class => "old-status-#{old_status.try(:id) || 0} new-status-#{new_status.id}") - else - select_tag( - tag_name, - options_for_select( - [ - [l(:general_text_Yes), "1"], - [l(:general_text_No), "0"], - [l(:label_no_change_option), "no_change"] - ], - "no_change") - ) - end - end -end diff --git a/app/models/attachment.rb b/app/models/attachment.rb deleted file mode 100644 index ae39bfa..0000000 --- a/app/models/attachment.rb +++ /dev/null @@ -1,517 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -require "digest" -require "fileutils" - -class Attachment < ActiveRecord::Base - include Redmine::SafeAttributes - belongs_to :container, :polymorphic => true - belongs_to :author, :class_name => "User" - - validates_presence_of :filename, :author - validates_length_of :filename, :maximum => 255 - validates_length_of :disk_filename, :maximum => 255 - validates_length_of :description, :maximum => 255 - validate :validate_max_file_size - validate :validate_file_extension, :if => :filename_changed? - - acts_as_event :title => :filename, - :url => Proc.new {|o| {:controller => 'attachments', :action => 'show', :id => o.id, :filename => o.filename}} - - acts_as_activity_provider :type => 'files', - :permission => :view_files, - :author_key => :author_id, - :scope => select("#{Attachment.table_name}.*"). - joins("LEFT JOIN #{Version.table_name} ON #{Attachment.table_name}.container_type='Version' AND #{Version.table_name}.id = #{Attachment.table_name}.container_id " + - "LEFT JOIN #{Project.table_name} ON #{Version.table_name}.project_id = #{Project.table_name}.id OR ( #{Attachment.table_name}.container_type='Project' AND #{Attachment.table_name}.container_id = #{Project.table_name}.id )") - - acts_as_activity_provider :type => 'documents', - :permission => :view_documents, - :author_key => :author_id, - :scope => select("#{Attachment.table_name}.*"). - joins("LEFT JOIN #{Document.table_name} ON #{Attachment.table_name}.container_type='Document' AND #{Document.table_name}.id = #{Attachment.table_name}.container_id " + - "LEFT JOIN #{Project.table_name} ON #{Document.table_name}.project_id = #{Project.table_name}.id") - - cattr_accessor :storage_path - @@storage_path = Redmine::Configuration['attachments_storage_path'] || File.join(Rails.root, "files") - - cattr_accessor :thumbnails_storage_path - @@thumbnails_storage_path = File.join(Rails.root, "tmp", "thumbnails") - - before_create :files_to_final_location - after_rollback :delete_from_disk, :on => :create - after_commit :delete_from_disk, :on => :destroy - after_commit :reuse_existing_file_if_possible, :on => :create - - safe_attributes 'filename', 'content_type', 'description' - - # Returns an unsaved copy of the attachment - def copy(attributes=nil) - copy = self.class.new - copy.attributes = self.attributes.dup.except("id", "downloads") - copy.attributes = attributes if attributes - copy - end - - def validate_max_file_size - if @temp_file && self.filesize > Setting.attachment_max_size.to_i.kilobytes - errors.add(:base, l(:error_attachment_too_big, :max_size => Setting.attachment_max_size.to_i.kilobytes)) - end - end - - def validate_file_extension - extension = File.extname(filename) - unless self.class.valid_extension?(extension) - errors.add(:base, l(:error_attachment_extension_not_allowed, :extension => extension)) - end - end - - def file=(incoming_file) - unless incoming_file.nil? - @temp_file = incoming_file - if @temp_file.respond_to?(:original_filename) - self.filename = @temp_file.original_filename - self.filename.force_encoding("UTF-8") - end - if @temp_file.respond_to?(:content_type) - self.content_type = @temp_file.content_type.to_s.chomp - end - self.filesize = @temp_file.size - end - end - - def file - nil - end - - def filename=(arg) - write_attribute :filename, sanitize_filename(arg.to_s) - filename - end - - # Copies the temporary file to its final location - # and computes its MD5 hash - def files_to_final_location - if @temp_file - self.disk_directory = target_directory - self.disk_filename = Attachment.disk_filename(filename, disk_directory) - logger.info("Saving attachment '#{self.diskfile}' (#{@temp_file.size} bytes)") if logger - path = File.dirname(diskfile) - unless File.directory?(path) - FileUtils.mkdir_p(path) - end - sha = Digest::SHA256.new - File.open(diskfile, "wb") do |f| - if @temp_file.respond_to?(:read) - buffer = "" - while (buffer = @temp_file.read(8192)) - f.write(buffer) - sha.update(buffer) - end - else - f.write(@temp_file) - sha.update(@temp_file) - end - end - self.digest = sha.hexdigest - end - @temp_file = nil - - if content_type.blank? && filename.present? - self.content_type = Redmine::MimeType.of(filename) - end - # Don't save the content type if it's longer than the authorized length - if self.content_type && self.content_type.length > 255 - self.content_type = nil - end - end - - # Deletes the file from the file system if it's not referenced by other attachments - def delete_from_disk - if Attachment.where("disk_filename = ? AND id <> ?", disk_filename, id).empty? - delete_from_disk! - end - end - - # Returns file's location on disk - def diskfile - File.join(self.class.storage_path, disk_directory.to_s, disk_filename.to_s) - end - - def title - title = filename.dup - if description.present? - title << " (#{description})" - end - title - end - - def increment_download - increment!(:downloads) - end - - def project - container.try(:project) - end - - def visible?(user=User.current) - if container_id - container && container.attachments_visible?(user) - else - author == user - end - end - - def editable?(user=User.current) - if container_id - container && container.attachments_editable?(user) - else - author == user - end - end - - def deletable?(user=User.current) - if container_id - container && container.attachments_deletable?(user) - else - author == user - end - end - - def image? - !!(self.filename =~ /\.(bmp|gif|jpg|jpe|jpeg|png)$/i) - end - - def thumbnailable? - Redmine::Thumbnail.convert_available? && ( - image? || (is_pdf? && Redmine::Thumbnail.gs_available?) - ) - end - - # Returns the full path the attachment thumbnail, or nil - # if the thumbnail cannot be generated. - def thumbnail(options={}) - if thumbnailable? && readable? - size = options[:size].to_i - if size > 0 - # Limit the number of thumbnails per image - size = (size / 50.0).ceil * 50 - # Maximum thumbnail size - size = 800 if size > 800 - else - size = Setting.thumbnails_size.to_i - end - size = 100 unless size > 0 - target = thumbnail_path(size) - - begin - Redmine::Thumbnail.generate(self.diskfile, target, size, is_pdf?) - rescue => e - logger.error "An error occured while generating thumbnail for #{disk_filename} to #{target}\nException was: #{e.message}" if logger - return nil - end - end - end - - # Deletes all thumbnails - def self.clear_thumbnails - Dir.glob(File.join(thumbnails_storage_path, "*.thumb")).each do |file| - File.delete file - end - end - - def is_text? - Redmine::MimeType.is_type?('text', filename) || Redmine::SyntaxHighlighting.filename_supported?(filename) - end - - def is_markdown? - Redmine::MimeType.of(filename) == 'text/markdown' - end - - def is_textile? - Redmine::MimeType.of(filename) == 'text/x-textile' - end - - def is_image? - Redmine::MimeType.is_type?('image', filename) - end - - def is_diff? - /\.(patch|diff)$/i.match?(filename) - end - - def is_pdf? - Redmine::MimeType.of(filename) == "application/pdf" - end - - def is_video? - Redmine::MimeType.is_type?('video', filename) - end - - def is_audio? - Redmine::MimeType.is_type?('audio', filename) - end - - def previewable? - is_text? || is_image? || is_video? || is_audio? - end - - # Returns true if the file is readable - def readable? - disk_filename.present? && File.readable?(diskfile) - end - - # Returns the attachment token - def token - "#{id}.#{digest}" - end - - # Finds an attachment that matches the given token and that has no container - def self.find_by_token(token) - if token.to_s =~ /^(\d+)\.([0-9a-f]+)$/ - attachment_id, attachment_digest = $1, $2 - attachment = Attachment.find_by(:id => attachment_id, :digest => attachment_digest) - if attachment && attachment.container.nil? - attachment - end - end - end - - # Bulk attaches a set of files to an object - # - # Returns a Hash of the results: - # :files => array of the attached files - # :unsaved => array of the files that could not be attached - def self.attach_files(obj, attachments) - result = obj.save_attachments(attachments, User.current) - obj.attach_saved_attachments - result - end - - # Updates the filename and description of a set of attachments - # with the given hash of attributes. Returns true if all - # attachments were updated. - # - # Example: - # Attachment.update_attachments(attachments, { - # 4 => {:filename => 'foo'}, - # 7 => {:filename => 'bar', :description => 'file description'} - # }) - # - def self.update_attachments(attachments, params) - params = params.transform_keys {|key| key.to_i} - - saved = true - transaction do - attachments.each do |attachment| - if p = params[attachment.id] - attachment.filename = p[:filename] if p.key?(:filename) - attachment.description = p[:description] if p.key?(:description) - saved &&= attachment.save - end - end - unless saved - raise ActiveRecord::Rollback - end - end - saved - end - - def self.latest_attach(attachments, filename) - attachments.sort_by(&:created_on).reverse.detect do |att| - filename.casecmp(att.filename) == 0 - end - end - - def self.prune(age=1.day) - Attachment.where("created_on < ? AND (container_type IS NULL OR container_type = '')", Time.now - age).destroy_all - end - - # Moves an existing attachment to its target directory - def move_to_target_directory! - return unless !new_record? & readable? - - src = diskfile - self.disk_directory = target_directory - dest = diskfile - - return if src == dest - - if !FileUtils.mkdir_p(File.dirname(dest)) - logger.error "Could not create directory #{File.dirname(dest)}" if logger - return - end - - if !FileUtils.mv(src, dest) - logger.error "Could not move attachment from #{src} to #{dest}" if logger - return - end - - update_column :disk_directory, disk_directory - end - - # Moves existing attachments that are stored at the root of the files - # directory (ie. created before Redmine 2.3) to their target subdirectories - def self.move_from_root_to_target_directory - Attachment.where("disk_directory IS NULL OR disk_directory = ''").find_each do |attachment| - attachment.move_to_target_directory! - end - end - - # Updates digests to SHA256 for all attachments that have a MD5 digest - # (ie. created before Redmine 3.4) - def self.update_digests_to_sha256 - Attachment.where("length(digest) < 64").find_each do |attachment| - attachment.update_digest_to_sha256! - end - end - - # Updates attachment digest to SHA256 - def update_digest_to_sha256! - if readable? - sha = Digest::SHA256.new - File.open(diskfile, 'rb') do |f| - while buffer = f.read(8192) - sha.update(buffer) - end - end - update_column :digest, sha.hexdigest - end - end - - # Returns true if the extension is allowed regarding allowed/denied - # extensions defined in application settings, otherwise false - def self.valid_extension?(extension) - denied, allowed = [:attachment_extensions_denied, :attachment_extensions_allowed].map do |setting| - Setting.send(setting) - end - if denied.present? && extension_in?(extension, denied) - return false - end - if allowed.present? && !extension_in?(extension, allowed) - return false - end - true - end - - # Returns true if extension belongs to extensions list. - def self.extension_in?(extension, extensions) - extension = extension.downcase.sub(/\A\.+/, '') - - unless extensions.is_a?(Array) - extensions = extensions.to_s.split(",").map(&:strip) - end - extensions = extensions.map {|s| s.downcase.sub(/\A\.+/, '')}.reject(&:blank?) - extensions.include?(extension) - end - - # Returns true if attachment's extension belongs to extensions list. - def extension_in?(extensions) - self.class.extension_in?(File.extname(filename), extensions) - end - - # returns either MD5 or SHA256 depending on the way self.digest was computed - def digest_type - digest.size < 64 ? "MD5" : "SHA256" if digest.present? - end - - private - - def reuse_existing_file_if_possible - original_diskfile = diskfile - original_filename = disk_filename - reused = with_lock do - if existing = Attachment - .where(digest: self.digest, filesize: self.filesize) - .where.not(disk_filename: original_filename) - .order(:id) - .last - existing.with_lock do - existing_diskfile = existing.diskfile - if File.readable?(original_diskfile) && - File.readable?(existing_diskfile) && - FileUtils.identical?(original_diskfile, existing_diskfile) - self.update_columns disk_directory: existing.disk_directory, - disk_filename: existing.disk_filename - end - end - end - end - if reused && Attachment.where(disk_filename: original_filename).none? - File.delete(original_diskfile) - end - rescue ActiveRecord::StatementInvalid, ActiveRecord::RecordNotFound - # Catch and ignore lock errors. It is not critical if deduplication does - # not happen, therefore we do not retry. - # with_lock throws ActiveRecord::RecordNotFound if the record isnt there - # anymore, thats why this is caught and ignored as well. - end - - # Physically deletes the file from the file system - def delete_from_disk! - if disk_filename.present? && File.exist?(diskfile) - File.delete(diskfile) - end - Dir[thumbnail_path("*")].each do |thumb| - File.delete(thumb) - end - end - - def thumbnail_path(size) - File.join(self.class.thumbnails_storage_path, - "#{digest}_#{filesize}_#{size}.thumb") - end - - def sanitize_filename(value) - # get only the filename, not the whole path - just_filename = value.gsub(/\A.*(\\|\/)/m, '') - - # Finally, replace invalid characters with underscore - just_filename.gsub(/[\/\?\%\*\:\|\"\'<>\n\r]+/, '_') - end - - # Returns the subdirectory in which the attachment will be saved - def target_directory - time = created_on || DateTime.now - time.strftime("%Y/%m") - end - - # Singleton class method is public - class << self - # Returns an ASCII or hashed filename that do not - # exists yet in the given subdirectory - def disk_filename(filename, directory=nil) - timestamp = DateTime.now.strftime("%y%m%d%H%M%S") - ascii = '' - if %r{^[a-zA-Z0-9_\.\-]*$}.match?(filename) && filename.length <= 50 - ascii = filename - else - ascii = Digest::MD5.hexdigest(filename) - # keep the extension if any - ascii << $1 if filename =~ %r{(\.[a-zA-Z0-9]+)$} - end - while File.exist?(File.join(storage_path, directory.to_s, - "#{timestamp}_#{ascii}")) - timestamp.succ! - end - "#{timestamp}_#{ascii}" - end - end -end diff --git a/app/models/auth_source.rb b/app/models/auth_source.rb deleted file mode 100644 index c8ec1f9..0000000 --- a/app/models/auth_source.rb +++ /dev/null @@ -1,112 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -# Generic exception for when the AuthSource can not be reached -# (eg. can not connect to the LDAP) -class AuthSourceException < StandardError; end -class AuthSourceTimeoutException < AuthSourceException; end - -class AuthSource < ActiveRecord::Base - include Redmine::SafeAttributes - include Redmine::SubclassFactory - include Redmine::Ciphering - - has_many :users - - validates_presence_of :name - validates_uniqueness_of :name - validates_length_of :name, :maximum => 60 - - safe_attributes( - 'name', - 'host', - 'port', - 'account', - 'account_password', - 'base_dn', - 'attr_login', - 'attr_firstname', - 'attr_lastname', - 'attr_mail', - 'onthefly_register', - 'tls', - 'verify_peer', - 'filter', - 'timeout') - - def authenticate(login, password) - end - - def test_connection - end - - def auth_method_name - "Abstract" - end - - def account_password - read_ciphered_attribute(:account_password) - end - - def account_password=(arg) - write_ciphered_attribute(:account_password, arg) - end - - def searchable? - false - end - - def self.search(q) - results = [] - AuthSource.all.each do |source| - begin - if source.searchable? - results += source.search(q) - end - rescue AuthSourceException => e - logger.error "Error while searching users in #{source.name}: #{e.message}" - end - end - results - end - - def allow_password_changes? - self.class.allow_password_changes? - end - - # Does this auth source backend allow password changes? - def self.allow_password_changes? - false - end - - # Try to authenticate a user not yet registered against available sources - def self.authenticate(login, password) - AuthSource.where(:onthefly_register => true).each do |source| - begin - logger.debug "Authenticating '#{login}' against '#{source.name}'" if logger && logger.debug? - attrs = source.authenticate(login, password) - rescue => e - logger.error "Error during authentication: #{e.message}" - attrs = nil - end - return attrs if attrs - end - return nil - end -end diff --git a/app/models/auth_source_ldap.rb b/app/models/auth_source_ldap.rb deleted file mode 100644 index 3c55bff..0000000 --- a/app/models/auth_source_ldap.rb +++ /dev/null @@ -1,253 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -require 'net/ldap' -require 'net/ldap/dn' -require 'timeout' - -class AuthSourceLdap < AuthSource - NETWORK_EXCEPTIONS = [ - Net::LDAP::Error, - Errno::ECONNABORTED, Errno::ECONNREFUSED, Errno::ECONNRESET, - Errno::EHOSTDOWN, Errno::EHOSTUNREACH, - SocketError - ] - - validates_presence_of :host, :port, :attr_login - validates_length_of :name, :host, :maximum => 60, :allow_nil => true - validates_length_of :account, :account_password, :base_dn, :maximum => 255, :allow_blank => true - validates_length_of :attr_login, :attr_firstname, :attr_lastname, :attr_mail, :maximum => 30, :allow_nil => true - validates_numericality_of :port, :only_integer => true - validates_numericality_of :timeout, :only_integer => true, :allow_blank => true - validate :validate_filter - - before_validation :strip_ldap_attributes - - safe_attributes 'ldap_mode' - - LDAP_MODES = [ - :ldap, - :ldaps_verify_none, - :ldaps_verify_peer - ] - - def initialize(attributes=nil, *args) - super - self.port = 389 if self.port == 0 - end - - def authenticate(login, password) - return nil if login.blank? || password.blank? - - with_timeout do - attrs = get_user_dn(login, password) - if attrs && attrs[:dn] && authenticate_dn(attrs[:dn], password) - logger.debug "Authentication successful for '#{login}'" if logger && logger.debug? - return attrs.except(:dn) - end - end - rescue *NETWORK_EXCEPTIONS => e - raise AuthSourceException.new(e.message) - end - - # Test the connection to the LDAP - def test_connection - with_timeout do - ldap_con = initialize_ldap_con(self.account, self.account_password) - ldap_con.open { } - - if self.account.present? && !self.account.include?("$login") && self.account_password.present? - ldap_auth = authenticate_dn(self.account, self.account_password) - raise AuthSourceException.new(l(:error_ldap_bind_credentials)) if !ldap_auth - end - end - rescue *NETWORK_EXCEPTIONS => e - raise AuthSourceException.new(e.message) - end - - def auth_method_name - "LDAP" - end - - # Returns true if this source can be searched for users - def searchable? - !account.to_s.include?("$login") && %w(login firstname lastname mail).all? {|a| send("attr_#{a}?")} - end - - # Searches the source for users and returns an array of results - def search(q) - q = q.to_s.strip - return [] unless searchable? && q.present? - - results = [] - search_filter = base_filter & Net::LDAP::Filter.begins(self.attr_login, q) - ldap_con = initialize_ldap_con(self.account, self.account_password) - ldap_con.search(:base => self.base_dn, - :filter => search_filter, - :attributes => ['dn', self.attr_login, self.attr_firstname, self.attr_lastname, self.attr_mail], - :size => 10) do |entry| - attrs = get_user_attributes_from_ldap_entry(entry) - attrs[:login] = AuthSourceLdap.get_attr(entry, self.attr_login) - results << attrs - end - results - rescue *NETWORK_EXCEPTIONS => e - raise AuthSourceException.new(e.message) - end - - def ldap_mode - case - when tls && verify_peer - :ldaps_verify_peer - when tls && !verify_peer - :ldaps_verify_none - else - :ldap - end - end - - def ldap_mode=(ldap_mode) - case ldap_mode.try(:to_sym) - when :ldaps_verify_peer - self.tls = true - self.verify_peer = true - when :ldaps_verify_none - self.tls = true - self.verify_peer = false - else - self.tls = false - self.verify_peer = false - end - end - - private - - def with_timeout(&block) - timeout = self.timeout - timeout = 20 unless timeout && timeout > 0 - Timeout.timeout(timeout) do - return yield - end - rescue Timeout::Error => e - raise AuthSourceTimeoutException.new(e.message) - end - - def ldap_filter - if filter.present? - Net::LDAP::Filter.construct(filter) - end - rescue Net::LDAP::Error, Net::LDAP::FilterSyntaxInvalidError - nil - end - - def base_filter - filter = Net::LDAP::Filter.eq("objectClass", "*") - if f = ldap_filter - filter = filter & f - end - filter - end - - def validate_filter - if filter.present? && ldap_filter.nil? - errors.add(:filter, :invalid) - end - end - - def strip_ldap_attributes - [:attr_login, :attr_firstname, :attr_lastname, :attr_mail].each do |attr| - write_attribute(attr, read_attribute(attr).strip) unless read_attribute(attr).nil? - end - end - - def initialize_ldap_con(ldap_user, ldap_password) - options = { :host => self.host, - :port => self.port - } - if tls - options[:encryption] = { - :method => :simple_tls, - # Always provide non-empty tls_options, to make sure, that all - # OpenSSL::SSL::SSLContext::DEFAULT_PARAMS as well as the default cert - # store are used. - :tls_options => { :verify_mode => verify_peer? ? OpenSSL::SSL::VERIFY_PEER : OpenSSL::SSL::VERIFY_NONE } - } - end - - options.merge!(:auth => { :method => :simple, :username => ldap_user, :password => ldap_password }) unless ldap_user.blank? && ldap_password.blank? - Net::LDAP.new options - end - - def get_user_attributes_from_ldap_entry(entry) - { - :dn => entry.dn, - :firstname => AuthSourceLdap.get_attr(entry, self.attr_firstname), - :lastname => AuthSourceLdap.get_attr(entry, self.attr_lastname), - :mail => AuthSourceLdap.get_attr(entry, self.attr_mail), - :auth_source_id => self.id - } - end - - # Return the attributes needed for the LDAP search. It will only - # include the user attributes if on-the-fly registration is enabled - def search_attributes - if onthefly_register? - ['dn', self.attr_firstname, self.attr_lastname, self.attr_mail] - else - ['dn'] - end - end - - # Check if a DN (user record) authenticates with the password - def authenticate_dn(dn, password) - if dn.present? && password.present? - initialize_ldap_con(dn, password).bind - end - end - - # Get the user's dn and any attributes for them, given their login - def get_user_dn(login, password) - ldap_con = nil - if self.account && self.account.include?("$login") - ldap_con = initialize_ldap_con(self.account.sub("$login", Net::LDAP::DN.escape(login)), password) - else - ldap_con = initialize_ldap_con(self.account, self.account_password) - end - attrs = {} - search_filter = base_filter & Net::LDAP::Filter.eq(self.attr_login, login) - ldap_con.search( :base => self.base_dn, - :filter => search_filter, - :attributes=> search_attributes) do |entry| - if onthefly_register? - attrs = get_user_attributes_from_ldap_entry(entry) - else - attrs = {:dn => entry.dn} - end - logger.debug "DN found for #{login}: #{attrs[:dn]}" if logger && logger.debug? - end - attrs - end - - def self.get_attr(entry, attr_name) - if !attr_name.blank? - value = entry[attr_name].is_a?(Array) ? entry[attr_name].first : entry[attr_name] - value.to_s.force_encoding('UTF-8') - end - end -end diff --git a/app/models/board.rb b/app/models/board.rb deleted file mode 100644 index 4cb9d15..0000000 --- a/app/models/board.rb +++ /dev/null @@ -1,97 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class Board < ActiveRecord::Base - include Redmine::SafeAttributes - belongs_to :project - has_many :messages, lambda {order("#{Message.table_name}.created_on DESC")}, :dependent => :destroy - belongs_to :last_message, :class_name => 'Message' - acts_as_tree :dependent => :nullify - acts_as_positioned :scope => [:project_id, :parent_id] - acts_as_watchable - - validates_presence_of :name, :description - validates_length_of :name, :maximum => 30 - validates_length_of :description, :maximum => 255 - validate :validate_board - - scope :visible, lambda {|*args| - joins(:project). - where(Project.allowed_to_condition(args.shift || User.current, :view_messages, *args)) - } - - safe_attributes 'name', 'description', 'parent_id', 'position' - - def visible?(user=User.current) - !user.nil? && user.allowed_to?(:view_messages, project) - end - - def reload(*args) - @valid_parents = nil - super - end - - def to_s - name - end - - # Returns a scope for the board topics (messages without parent) - def topics - messages.where(:parent_id => nil) - end - - def valid_parents - @valid_parents ||= project.boards - self_and_descendants - end - - def reset_counters! - self.class.reset_counters!(id) - end - - # Updates topics_count, messages_count and last_message_id attributes for +board_id+ - def self.reset_counters!(board_id) - board_id = board_id.to_i - Board.where(:id => board_id). - update_all(["topics_count = (SELECT COUNT(*) FROM #{Message.table_name} WHERE board_id=:id AND parent_id IS NULL)," + - " messages_count = (SELECT COUNT(*) FROM #{Message.table_name} WHERE board_id=:id)," + - " last_message_id = (SELECT MAX(id) FROM #{Message.table_name} WHERE board_id=:id)", :id => board_id]) - end - - def self.board_tree(boards, parent_id=nil, level=0) - tree = [] - boards.select {|board| board.parent_id == parent_id}.sort_by(&:position).each do |board| - tree << [board, level] - tree += board_tree(boards, board.id, level+1) - end - if block_given? - tree.each do |board, level| - yield board, level - end - end - tree - end - - protected - - def validate_board - if parent_id && parent_id_changed? - errors.add(:parent_id, :invalid) unless valid_parents.include?(parent) - end - end -end diff --git a/app/models/change.rb b/app/models/change.rb deleted file mode 100644 index eb8ac98..0000000 --- a/app/models/change.rb +++ /dev/null @@ -1,35 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class Change < ActiveRecord::Base - belongs_to :changeset - - validates_presence_of :changeset_id, :action, :path - before_save :init_path - before_validation :replace_invalid_utf8_of_path - - def replace_invalid_utf8_of_path - self.path = Redmine::CodesetUtil.replace_invalid_utf8(self.path) - self.from_path = Redmine::CodesetUtil.replace_invalid_utf8(self.from_path) - end - - def init_path - self.path ||= "" - end -end diff --git a/app/models/changeset.rb b/app/models/changeset.rb deleted file mode 100644 index 6a0b42d..0000000 --- a/app/models/changeset.rb +++ /dev/null @@ -1,294 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class Changeset < ActiveRecord::Base - belongs_to :repository - belongs_to :user - has_many :filechanges, :class_name => 'Change', :dependent => :delete_all - has_and_belongs_to_many :issues - has_and_belongs_to_many :parents, - :class_name => "Changeset", - :join_table => "#{table_name_prefix}changeset_parents#{table_name_suffix}", - :association_foreign_key => 'parent_id', :foreign_key => 'changeset_id' - has_and_belongs_to_many :children, - :class_name => "Changeset", - :join_table => "#{table_name_prefix}changeset_parents#{table_name_suffix}", - :association_foreign_key => 'changeset_id', :foreign_key => 'parent_id' - - acts_as_event :title => Proc.new {|o| o.title}, - :description => :long_comments, - :datetime => :committed_on, - :url => Proc.new {|o| {:controller => 'repositories', :action => 'revision', :id => o.repository.project, :repository_id => o.repository.identifier_param, :rev => o.identifier}} - - acts_as_searchable :columns => 'comments', - :preload => {:repository => :project}, - :project_key => "#{Repository.table_name}.project_id", - :date_column => :committed_on - - acts_as_activity_provider :timestamp => "#{table_name}.committed_on", - :author_key => :user_id, - :scope => preload(:user, {:repository => :project}) - - validates_presence_of :repository_id, :revision, :committed_on, :commit_date - validates_uniqueness_of :revision, :scope => :repository_id - validates_uniqueness_of :scmid, :scope => :repository_id, :allow_nil => true - - scope :visible, lambda {|*args| - joins(:repository => :project). - where(Project.allowed_to_condition(args.shift || User.current, :view_changesets, *args)) - } - - after_create :scan_for_issues - before_create :before_create_cs - - def revision=(r) - write_attribute :revision, (r.nil? ? nil : r.to_s) - end - - # Returns the identifier of this changeset; depending on repository backends - def identifier - if repository.class.respond_to? :changeset_identifier - repository.class.changeset_identifier self - else - revision.to_s - end - end - - def committed_on=(date) - self.commit_date = date - super - end - - # Returns the readable identifier - def format_identifier - if repository.class.respond_to? :format_changeset_identifier - repository.class.format_changeset_identifier self - else - identifier - end - end - - def project - repository.project - end - - def author - user || committer.to_s.split('<').first - end - - def before_create_cs - self.committer = self.class.to_utf8(self.committer, repository.repo_log_encoding) - self.comments = self.class.normalize_comments( - self.comments, repository.repo_log_encoding) - self.user = repository.find_committer_user(self.committer) - end - - def scan_for_issues - scan_comment_for_issue_ids - end - - TIMELOG_RE = / - ( - ((\d+)(h|hours?))((\d+)(m|min)?)? - | - ((\d+)(h|hours?|m|min)) - | - (\d+):(\d+) - | - (\d+([\.,]\d+)?)h? - ) - /x - - def scan_comment_for_issue_ids - return if comments.blank? - # keywords used to reference issues - ref_keywords = Setting.commit_ref_keywords.downcase.split(",").collect(&:strip) - ref_keywords_any = ref_keywords.delete('*') - # keywords used to fix issues - fix_keywords = Setting.commit_update_keywords_array.map {|r| r['keywords']}.flatten.compact - - kw_regexp = (ref_keywords + fix_keywords).collect{|kw| Regexp.escape(kw)}.join("|") - - referenced_issues = [] - - comments.scan(/([\s\(\[,-]|^)((#{kw_regexp})[\s:]+)?(#\d+(\s+@#{TIMELOG_RE})?([\s,;&]+#\d+(\s+@#{TIMELOG_RE})?)*)(?=[[:punct:]]|\s|<|$)/i) do |match| - action, refs = match[2].to_s.downcase, match[3] - next unless action.present? || ref_keywords_any - - refs.scan(/#(\d+)(\s+@#{TIMELOG_RE})?/).each do |m| - issue, hours = find_referenced_issue_by_id(m[0].to_i), m[2] - if issue && !issue_linked_to_same_commit?(issue) - referenced_issues << issue - # Don't update issues or log time when importing old commits - unless repository.created_on && committed_on && committed_on < repository.created_on - fix_issue(issue, action) if fix_keywords.include?(action) - log_time(issue, hours) if hours && Setting.commit_logtime_enabled? - end - end - end - end - - referenced_issues.uniq! - self.issues = referenced_issues unless referenced_issues.empty? - end - - def short_comments - @short_comments || split_comments.first - end - - def long_comments - @long_comments || split_comments.last - end - - def text_tag(ref_project=nil) - repo = "" - if repository && repository.identifier.present? - repo = "#{repository.identifier}|" - end - tag = scmid? ? "commit:#{repo}#{scmid}" : "#{repo}r#{revision}" - if ref_project && project && ref_project != project - tag = "#{project.identifier}:#{tag}" - end - tag - end - - # Returns the title used for the changeset in the activity/search results - def title - repo = (repository && repository.identifier.present?) ? " (#{repository.identifier})" : '' - comm = short_comments.blank? ? '' : (': ' + short_comments) - "#{l(:label_revision)} #{format_identifier}#{repo}#{comm}" - end - - # Returns the previous changeset - def previous - @previous ||= Changeset.where(["id < ? AND repository_id = ?", id, repository_id]).order('id DESC').first - end - - # Returns the next changeset - def next - @next ||= Changeset.where(["id > ? AND repository_id = ?", id, repository_id]).order('id ASC').first - end - - # Creates a new Change from it's common parameters - def create_change(change) - Change.create(:changeset => self, - :action => change[:action], - :path => change[:path], - :from_path => change[:from_path], - :from_revision => change[:from_revision]) - end - - # Finds an issue that can be referenced by the commit message - def find_referenced_issue_by_id(id) - return nil if id.blank? - issue = Issue.find_by_id(id.to_i) - if Setting.commit_cross_project_ref? - # all issues can be referenced/fixed - elsif issue - # issue that belong to the repository project, a subproject or a parent project only - unless issue.project && - (project == issue.project || project.is_ancestor_of?(issue.project) || - project.is_descendant_of?(issue.project)) - issue = nil - end - end - issue - end - - private - - # Returns true if the issue is already linked to the same commit - # from a different repository - def issue_linked_to_same_commit?(issue) - repository.same_commits_in_scope(issue.changesets, self).any? - end - - # Updates the +issue+ according to +action+ - def fix_issue(issue, action) - # the issue may have been updated by the closure of another one (eg. duplicate) - issue.reload - # don't change the status is the issue is closed - return if issue.closed? - - journal = issue.init_journal(user || User.anonymous, - ll(Setting.default_language, - :text_status_changed_by_changeset, - text_tag(issue.project))) - rule = Setting.commit_update_keywords_array.detect do |rule| - rule['keywords'].include?(action) && - (rule['if_tracker_id'].blank? || rule['if_tracker_id'] == issue.tracker_id.to_s) - end - if rule - issue.assign_attributes rule.slice(*Issue.attribute_names) - end - Redmine::Hook.call_hook(:model_changeset_scan_commit_for_issue_ids_pre_issue_update, - { :changeset => self, :issue => issue, :action => action }) - - if issue.changes.any? - unless issue.save - logger.warn("Issue ##{issue.id} could not be saved by changeset #{id}: #{issue.errors.full_messages}") if logger - end - else - issue.clear_journal - end - issue - end - - def log_time(issue, hours) - time_entry = TimeEntry.new( - :user => user, - :hours => hours, - :issue => issue, - :spent_on => commit_date, - :comments => l(:text_time_logged_by_changeset, :value => text_tag(issue.project), - :locale => Setting.default_language) - ) - time_entry.activity = log_time_activity unless log_time_activity.nil? - - unless time_entry.save - logger.warn("TimeEntry could not be created by changeset #{id}: #{time_entry.errors.full_messages}") if logger - end - time_entry - end - - def log_time_activity - if Setting.commit_logtime_activity_id.to_i > 0 - TimeEntryActivity.find_by_id(Setting.commit_logtime_activity_id.to_i) - end - end - - def split_comments - comments =~ /\A(.+?)\r?\n(.*)$/m - @short_comments = $1 || comments - @long_comments = $2.to_s.strip - return @short_comments, @long_comments - end - - # Singleton class method is public - class << self - # Strips and reencodes a commit log before insertion into the database - def normalize_comments(str, encoding) - Changeset.to_utf8(str.to_s.strip, encoding) - end - - def to_utf8(str, encoding) - Redmine::CodesetUtil.to_utf8(str, encoding) - end - end -end diff --git a/app/models/comment.rb b/app/models/comment.rb deleted file mode 100644 index 3e70052..0000000 --- a/app/models/comment.rb +++ /dev/null @@ -1,47 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class Comment < ActiveRecord::Base - include Redmine::SafeAttributes - belongs_to :commented, :polymorphic => true, :counter_cache => true - belongs_to :author, :class_name => 'User' - - validates_presence_of :commented, :author, :content - - after_create_commit :send_notification - - safe_attributes 'comments' - - def comments=(arg) - self.content = arg - end - - def comments - content - end - - private - - def send_notification - event = "#{commented.class.name.underscore}_comment_added" - if Setting.notified_events.include?(event) - Mailer.public_send("deliver_#{event}", self) - end - end -end diff --git a/app/models/custom_field.rb b/app/models/custom_field.rb deleted file mode 100644 index 1802702..0000000 --- a/app/models/custom_field.rb +++ /dev/null @@ -1,331 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class CustomField < ActiveRecord::Base - include Redmine::SafeAttributes - include Redmine::SubclassFactory - - has_many :enumerations, - lambda { order(:position) }, - :class_name => 'CustomFieldEnumeration', - :dependent => :delete_all - has_many :custom_values, :dependent => :delete_all - has_and_belongs_to_many :roles, :join_table => "#{table_name_prefix}custom_fields_roles#{table_name_suffix}", :foreign_key => "custom_field_id" - acts_as_positioned - serialize :possible_values - store :format_store - - validates_presence_of :name, :field_format - validates_uniqueness_of :name, :scope => :type - validates_length_of :name, :maximum => 30 - validates_length_of :regexp, maximum: 255 - validates_inclusion_of :field_format, :in => Proc.new { Redmine::FieldFormat.available_formats } - validate :validate_custom_field - - before_validation :set_searchable - before_save do |field| - field.format.before_custom_field_save(field) - end - after_save :handle_multiplicity_change - after_save do |field| - if field.saved_change_to_visible? && field.visible - field.roles.clear - end - end - - scope :sorted, lambda { order(:position) } - scope :visible, lambda {|*args| - user = args.shift || User.current - if user.admin? - # nop - elsif user.memberships.any? - where( - "#{table_name}.visible = ? OR #{table_name}.id IN (SELECT DISTINCT cfr.custom_field_id FROM #{Member.table_name} m" + - " INNER JOIN #{MemberRole.table_name} mr ON mr.member_id = m.id" + - " INNER JOIN #{table_name_prefix}custom_fields_roles#{table_name_suffix} cfr ON cfr.role_id = mr.role_id" + - " WHERE m.user_id = ?)", - true, user.id) - else - where(:visible => true) - end - } - def visible_by?(project, user=User.current) - visible? || user.admin? - end - - safe_attributes( - 'name', - 'field_format', - 'possible_values', - 'regexp', - 'min_length', - 'max_length', - 'is_required', - 'is_for_all', - 'is_filter', - 'position', - 'searchable', - 'default_value', - 'editable', - 'visible', - 'multiple', - 'description', - 'role_ids', - 'url_pattern', - 'text_formatting', - 'edit_tag_style', - 'user_role', - 'version_status', - 'extensions_allowed', - 'full_width_layout') - - def format - @format ||= Redmine::FieldFormat.find(field_format) - end - - def field_format=(arg) - # cannot change format of a saved custom field - if new_record? - @format = nil - super - end - end - - def set_searchable - # make sure these fields are not searchable - self.searchable = false unless format.class.searchable_supported - # make sure only these fields can have multiple values - self.multiple = false unless format.class.multiple_supported - true - end - - def validate_custom_field - format.validate_custom_field(self).each do |attribute, message| - errors.add attribute, message - end - - if regexp.present? - begin - Regexp.new(regexp) - rescue - errors.add(:regexp, :invalid) - end - end - - if default_value.present? - validate_field_value(default_value).each do |message| - errors.add :default_value, message - end - end - end - - def possible_custom_value_options(custom_value) - format.possible_custom_value_options(custom_value) - end - - def possible_values_options(object=nil) - if object.is_a?(Array) - object.map {|o| format.possible_values_options(self, o)}.reduce(:&) || [] - else - format.possible_values_options(self, object) || [] - end - end - - def possible_values - values = read_attribute(:possible_values) - if values.is_a?(Array) - values.each do |value| - value.to_s.force_encoding('UTF-8') - end - values - else - [] - end - end - - # Makes possible_values accept a multiline string - def possible_values=(arg) - if arg.is_a?(Array) - values = arg.compact.map {|a| a.to_s.strip}.reject(&:blank?) - write_attribute(:possible_values, values) - else - self.possible_values = arg.to_s.split(/[\n\r]+/) - end - end - - def set_custom_field_value(custom_field_value, value) - format.set_custom_field_value(self, custom_field_value, value) - end - - def cast_value(value) - format.cast_value(self, value) - end - - def value_from_keyword(keyword, customized) - format.value_from_keyword(self, keyword, customized) - end - - # Returns the options hash used to build a query filter for the field - def query_filter_options(query) - format.query_filter_options(self, query) - end - - def totalable? - format.totalable_supported - end - - def full_width_layout? - full_width_layout == '1' - end - - def full_text_formatting? - text_formatting == 'full' - end - - # Returns a ORDER BY clause that can used to sort customized - # objects by their value of the custom field. - # Returns nil if the custom field can not be used for sorting. - def order_statement - return nil if multiple? - format.order_statement(self) - end - - # Returns a GROUP BY clause that can used to group by custom value - # Returns nil if the custom field can not be used for grouping. - def group_statement - return nil if multiple? - format.group_statement(self) - end - - def join_for_order_statement - format.join_for_order_statement(self) - end - - def visibility_by_project_condition(project_key=nil, user=User.current, id_column=nil) - if visible? || user.admin? - "1=1" - elsif user.anonymous? - "1=0" - else - project_key ||= "#{self.class.customized_class.table_name}.project_id" - id_column ||= id - "#{project_key} IN (SELECT DISTINCT m.project_id FROM #{Member.table_name} m" + - " INNER JOIN #{MemberRole.table_name} mr ON mr.member_id = m.id" + - " INNER JOIN #{table_name_prefix}custom_fields_roles#{table_name_suffix} cfr ON cfr.role_id = mr.role_id" + - " WHERE m.user_id = #{user.id} AND cfr.custom_field_id = #{id_column})" - end - end - - def <=>(field) - position <=> field.position - end - - # Returns the class that values represent - def value_class - format.target_class if format.respond_to?(:target_class) - end - - def self.customized_class - self.name =~ /^(.+)CustomField$/ - $1.constantize rescue nil - end - - # to move in project_custom_field - def self.for_all - where(:is_for_all => true).order(:position).to_a - end - - def type_name - nil - end - - # Returns the error messages for the given value - # or an empty array if value is a valid value for the custom field - def validate_custom_value(custom_value) - value = custom_value.value - errs = format.validate_custom_value(custom_value) - - unless errs.any? - if value.is_a?(Array) - if !multiple? - errs << ::I18n.t('activerecord.errors.messages.invalid') - end - if is_required? && value.detect(&:present?).nil? - errs << ::I18n.t('activerecord.errors.messages.blank') - end - else - if is_required? && value.blank? - errs << ::I18n.t('activerecord.errors.messages.blank') - end - end - end - - errs - end - - # Returns the error messages for the default custom field value - def validate_field_value(value) - validate_custom_value(CustomFieldValue.new(:custom_field => self, :value => value)) - end - - # Returns true if value is a valid value for the custom field - def valid_field_value?(value) - validate_field_value(value).empty? - end - - def after_save_custom_value(custom_value) - format.after_save_custom_value(self, custom_value) - end - - def format_in?(*args) - args.include?(field_format) - end - - def self.human_attribute_name(attribute_key_name, *args) - attr_name = attribute_key_name.to_s - if attr_name == 'url_pattern' - attr_name = "url" - end - super(attr_name, *args) - end - - def css_classes - "cf_#{id}" - end - - protected - - # Removes multiple values for the custom field after setting the multiple attribute to false - # We kepp the value with the highest id for each customized object - def handle_multiplicity_change - if !new_record? && multiple_before_last_save && !multiple - ids = custom_values. - where("EXISTS(SELECT 1 FROM #{CustomValue.table_name} cve WHERE cve.custom_field_id = #{CustomValue.table_name}.custom_field_id" + - " AND cve.customized_type = #{CustomValue.table_name}.customized_type AND cve.customized_id = #{CustomValue.table_name}.customized_id" + - " AND cve.id > #{CustomValue.table_name}.id)"). - pluck(:id) - - if ids.any? - custom_values.where(:id => ids).delete_all - end - end - end -end - -require_dependency 'redmine/field_format' diff --git a/app/models/custom_field_enumeration.rb b/app/models/custom_field_enumeration.rb deleted file mode 100644 index a43d17a..0000000 --- a/app/models/custom_field_enumeration.rb +++ /dev/null @@ -1,84 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class CustomFieldEnumeration < ActiveRecord::Base - belongs_to :custom_field - - validates_presence_of :name, :position, :custom_field_id - validates_length_of :name, :maximum => 60 - validates_numericality_of :position, :only_integer => true - before_create :set_position - - scope :active, lambda { where(:active => true) } - - def to_s - name.to_s - end - - def objects_count - custom_values.count - end - - def in_use? - objects_count > 0 - end - - alias :destroy_without_reassign :destroy - def destroy(reassign_to=nil) - if reassign_to - custom_values.update_all(:value => reassign_to.id.to_s) - end - destroy_without_reassign - end - - def custom_values - custom_field.custom_values.where(:value => id.to_s) - end - - def self.update_each(custom_field, attributes) - transaction do - attributes.each do |enumeration_id, enumeration_attributes| - enumeration = custom_field.enumerations.find_by_id(enumeration_id) - if enumeration - if block_given? - yield enumeration, enumeration_attributes - else - enumeration.attributes = enumeration_attributes - end - unless enumeration.save - raise ActiveRecord::Rollback - end - end - end - end - end - - def self.fields_for_order_statement(table=nil) - table ||= table_name - columns = ['position'] - columns.uniq.map {|field| "#{table}.#{field}"} - end - - private - - def set_position - max = self.class.where(:custom_field_id => custom_field_id).maximum(:position) || 0 - self.position = max + 1 - end -end diff --git a/app/models/custom_field_value.rb b/app/models/custom_field_value.rb deleted file mode 100644 index 8e4cda9..0000000 --- a/app/models/custom_field_value.rb +++ /dev/null @@ -1,71 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class CustomFieldValue - attr_accessor :custom_field, :customized, :value_was - attr_reader :value - - def initialize(attributes={}) - attributes.each do |name, v| - send "#{name}=", v - end - end - - def custom_field_id - custom_field.id - end - - def true? - self.value == '1' - end - - def editable? - custom_field.editable? - end - - def visible? - custom_field.visible? - end - - def required? - custom_field.is_required? - end - - def to_s - value.to_s - end - - def value=(v) - @value = custom_field.set_custom_field_value(self, v) - end - - def value_present? - if value.is_a?(Array) - value.any?(&:present?) - else - value.present? - end - end - - def validate_value - custom_field.validate_custom_value(self).each do |message| - customized.errors.add(:base, custom_field.name + ' ' + message) - end - end -end diff --git a/app/models/custom_value.rb b/app/models/custom_value.rb deleted file mode 100644 index 1562709..0000000 --- a/app/models/custom_value.rb +++ /dev/null @@ -1,69 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class CustomValue < ActiveRecord::Base - belongs_to :custom_field - belongs_to :customized, :polymorphic => true - - after_save :custom_field_after_save_custom_value - - def initialize(attributes=nil, *args) - super - if new_record? && custom_field && !attributes.key?(:value) && (customized.nil? || customized.set_custom_field_default?(self)) - self.value ||= custom_field.default_value - end - end - - # Returns true if the boolean custom value is true - def true? - self.value == '1' - end - - def editable? - custom_field.editable? - end - - def visible?(user=User.current) - if custom_field.visible? - true - elsif customized.respond_to?(:project) - custom_field.visible_by?(customized.project, user) - else - false - end - end - - def attachments_visible?(user) - visible?(user) && customized && customized.visible?(user) - end - - def required? - custom_field.is_required? - end - - def to_s - value.to_s - end - - private - - def custom_field_after_save_custom_value - custom_field.after_save_custom_value(self) - end -end diff --git a/app/models/document.rb b/app/models/document.rb deleted file mode 100644 index 4f562fc..0000000 --- a/app/models/document.rb +++ /dev/null @@ -1,76 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class Document < ActiveRecord::Base - include Redmine::SafeAttributes - belongs_to :project - belongs_to :category, :class_name => "DocumentCategory" - acts_as_attachable :delete_permission => :delete_documents - acts_as_customizable - - acts_as_searchable :columns => ['title', "#{table_name}.description"], - :preload => :project - acts_as_event :title => Proc.new {|o| "#{l(:label_document)}: #{o.title}"}, - :author => Proc.new {|o| o.attachments.reorder("#{Attachment.table_name}.created_on ASC").first.try(:author) }, - :url => Proc.new {|o| {:controller => 'documents', :action => 'show', :id => o.id}} - acts_as_activity_provider :scope => preload(:project) - - validates_presence_of :project, :title, :category - validates_length_of :title, :maximum => 255 - - after_create_commit :send_notification - - scope :visible, lambda {|*args| - joins(:project). - where(Project.allowed_to_condition(args.shift || User.current, :view_documents, *args)) - } - - safe_attributes 'category_id', 'title', 'description', 'custom_fields', 'custom_field_values' - - def visible?(user=User.current) - !user.nil? && user.allowed_to?(:view_documents, project) - end - - def initialize(attributes=nil, *args) - super - if new_record? - self.category ||= DocumentCategory.default - end - end - - def updated_on - unless @updated_on - a = attachments.last - @updated_on = (a && a.created_on) || created_on - end - @updated_on - end - - def notified_users - project.notified_users.reject {|user| !visible?(user)} - end - - private - - def send_notification - if Setting.notified_events.include?('document_added') - Mailer.deliver_document_added(self, User.current) - end - end -end diff --git a/app/models/document_category.rb b/app/models/document_category.rb deleted file mode 100644 index 0111549..0000000 --- a/app/models/document_category.rb +++ /dev/null @@ -1,42 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class DocumentCategory < Enumeration - has_many :documents, :foreign_key => 'category_id' - - OptionName = :enumeration_doc_categories - - def option_name - OptionName - end - - def objects_count - documents.count - end - - def transfer_relations(to) - documents.update_all(:category_id => to.id) - end - - def self.default - d = super - d = first if d.nil? - d - end -end diff --git a/app/models/document_category_custom_field.rb b/app/models/document_category_custom_field.rb deleted file mode 100644 index 097b9f1..0000000 --- a/app/models/document_category_custom_field.rb +++ /dev/null @@ -1,24 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class DocumentCategoryCustomField < CustomField - def type_name - :enumeration_doc_categories - end -end diff --git a/app/models/document_custom_field.rb b/app/models/document_custom_field.rb deleted file mode 100644 index 5ebb055..0000000 --- a/app/models/document_custom_field.rb +++ /dev/null @@ -1,24 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class DocumentCustomField < CustomField - def type_name - :label_document_plural - end -end diff --git a/app/models/email_address.rb b/app/models/email_address.rb deleted file mode 100644 index dd0b306..0000000 --- a/app/models/email_address.rb +++ /dev/null @@ -1,120 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class EmailAddress < ActiveRecord::Base - include Redmine::SafeAttributes - - EMAIL_REGEXP = /\A([^@\s]+)@((?:[-a-z0-9]+\.)+(?:(?:xn--[-a-z0-9]+)|(?:[a-z]{2,})))\z/i - - belongs_to :user - - after_update :destroy_tokens - after_destroy :destroy_tokens - - after_create_commit :deliver_security_notification_create - after_update_commit :deliver_security_notification_update - after_destroy_commit :deliver_security_notification_destroy - - validates_presence_of :address - validates_format_of :address, :with => EMAIL_REGEXP, :allow_blank => true - validates_length_of :address, :maximum => User::MAIL_LENGTH_LIMIT, :allow_nil => true - validates_uniqueness_of :address, :case_sensitive => false, - :if => Proc.new {|email| email.address_changed? && email.address.present?} - - safe_attributes 'address' - - def address=(arg) - write_attribute(:address, arg.to_s.strip) - end - - def destroy - if is_default? - false - else - super - end - end - - private - - # send a security notification to user that a new email address was added - def deliver_security_notification_create - # only deliver if this isn't the only address. - # in that case, the user is just being created and - # should not receive this email. - if user.mails != [address] - deliver_security_notification( - message: :mail_body_security_notification_add, - field: :field_mail, - value: address - ) - end - end - - # send a security notification to user that an email has been changed (notified/not notified) - def deliver_security_notification_update - if saved_change_to_address? - options = { - recipients: [address_before_last_save], - message: :mail_body_security_notification_change_to, - field: :field_mail, - value: address - } - elsif saved_change_to_notify? - options = { - recipients: [address], - message: notify_before_last_save ? :mail_body_security_notification_notify_disabled : :mail_body_security_notification_notify_enabled, - value: address - } - end - deliver_security_notification(options) - end - - # send a security notification to user that an email address was deleted - def deliver_security_notification_destroy - deliver_security_notification( - recipients: [address], - message: :mail_body_security_notification_remove, - field: :field_mail, - value: address - ) - end - - # generic method to send security notifications for email addresses - def deliver_security_notification(options={}) - Mailer.deliver_security_notification( - user, - User.current, - options.merge( - title: :label_my_account, - url: {controller: 'my', action: 'account'} - ) - ) - end - - # Delete all outstanding password reset tokens on email change. - # This helps to keep the account secure in case the associated email account - # was compromised. - def destroy_tokens - if saved_change_to_address? || destroyed? - tokens = ['recovery'] - Token.where(:user_id => user_id, :action => tokens).delete_all - end - end -end diff --git a/app/models/enabled_module.rb b/app/models/enabled_module.rb deleted file mode 100644 index c663776..0000000 --- a/app/models/enabled_module.rb +++ /dev/null @@ -1,41 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class EnabledModule < ActiveRecord::Base - belongs_to :project - acts_as_watchable - - validates_presence_of :name - validates_uniqueness_of :name, :scope => :project_id - - after_create :module_enabled - - private - - # after_create callback used to do things when a module is enabled - def module_enabled - case name - when 'wiki' - # Create a wiki with a default start page - if project && project.wiki.nil? - Wiki.create(:project => project, :start_page => 'Wiki') - end - end - end -end diff --git a/app/models/enumeration.rb b/app/models/enumeration.rb deleted file mode 100644 index 3453552..0000000 --- a/app/models/enumeration.rb +++ /dev/null @@ -1,173 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class Enumeration < ActiveRecord::Base - include Redmine::SubclassFactory - - default_scope lambda {order(:position)} - - belongs_to :project - - acts_as_positioned :scope => :parent_id - acts_as_customizable - acts_as_tree - - before_destroy :check_integrity - before_save :check_default - - validates_presence_of :name - validates_uniqueness_of :name, :scope => [:type, :project_id] - validates_length_of :name, :maximum => 30 - - scope :shared, lambda { where(:project_id => nil) } - scope :sorted, lambda { order(:position) } - scope :active, lambda { where(:active => true) } - scope :system, lambda { where(:project_id => nil) } - scope :named, lambda {|arg| where("LOWER(#{table_name}.name) = LOWER(?)", arg.to_s.strip)} - - def self.default - # Creates a fake default scope so Enumeration.default will check - # it's type. STI subclasses will automatically add their own - # types to the finder. - if self.descends_from_active_record? - where(:is_default => true, :type => 'Enumeration').first - else - # STI classes are - where(:is_default => true).first - end - end - - # Overloaded on concrete classes - def option_name - nil - end - - def check_default - if is_default? && is_default_changed? - Enumeration.where({:type => type}).update_all({:is_default => false}) - end - end - - # Overloaded on concrete classes - def objects_count - 0 - end - - def in_use? - self.objects_count != 0 - end - - # Is this enumeration overriding a system level enumeration? - def is_override? - !self.parent.nil? - end - - alias :destroy_without_reassign :destroy - - # Destroy the enumeration - # If a enumeration is specified, objects are reassigned - def destroy(reassign_to = nil) - if reassign_to && reassign_to.is_a?(Enumeration) - self.transfer_relations(reassign_to) - end - destroy_without_reassign - end - - def <=>(enumeration) - position <=> enumeration.position - end - - def to_s; name end - - # Returns the Subclasses of Enumeration. Each Subclass needs to be - # required in development mode. - # - # Note: subclasses is protected in ActiveRecord - def self.get_subclasses - subclasses - end - - # Does the +new+ Hash override the previous Enumeration? - def self.overriding_change?(new, previous) - if (same_active_state?(new['active'], previous.active)) && same_custom_values?(new,previous) - return false - else - return true - end - end - - # Does the +new+ Hash have the same custom values as the previous Enumeration? - def self.same_custom_values?(new, previous) - previous.custom_field_values.each do |custom_value| - if custom_value.value != new["custom_field_values"][custom_value.custom_field_id.to_s] - return false - end - end - - return true - end - - # Are the new and previous fields equal? - def self.same_active_state?(new, previous) - new = (new == "1" ? true : false) - return new == previous - end - - private - - def check_integrity - raise "Cannot delete enumeration" if self.in_use? - end - - # Overrides Redmine::Acts::Positioned#set_default_position so that enumeration overrides - # get the same position as the overridden enumeration - def set_default_position - if position.nil? && parent - self.position = parent.position - end - super - end - - # Overrides Redmine::Acts::Positioned#update_position so that overrides get the same - # position as the overridden enumeration - def update_position - super - if saved_change_to_position? - self.class.where.not(:parent_id => nil).update_all( - "position = coalesce(( - select position - from (select id, position from enumerations) as parent - where parent_id = parent.id), 1)" - ) - end - end - - # Overrides Redmine::Acts::Positioned#remove_position so that enumeration overrides - # get the same position as the overridden enumeration - def remove_position - if parent_id.blank? - super - end - end -end - -# Force load the subclasses in development mode -require_dependency 'time_entry_activity' -require_dependency 'document_category' -require_dependency 'issue_priority' diff --git a/app/models/group.rb b/app/models/group.rb deleted file mode 100644 index 21166f1..0000000 --- a/app/models/group.rb +++ /dev/null @@ -1,121 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class Group < Principal - include Redmine::SafeAttributes - - has_and_belongs_to_many :users, - :join_table => "#{table_name_prefix}groups_users#{table_name_suffix}", - :after_add => :user_added, - :after_remove => :user_removed - - acts_as_customizable - - validates_presence_of :lastname - validates_uniqueness_of :lastname, :case_sensitive => false - validates_length_of :lastname, :maximum => 255 - - self.valid_statuses = [STATUS_ACTIVE] - - before_destroy :remove_references_before_destroy - - scope :sorted, lambda { order(:type => :asc, :lastname => :asc) } - scope :named, lambda {|arg| where("LOWER(#{table_name}.lastname) = LOWER(?)", arg.to_s.strip)} - scope :givable, lambda {where(:type => 'Group')} - - safe_attributes( - 'name', - 'user_ids', - 'custom_field_values', - 'custom_fields', - :if => lambda {|group, user| user.admin? && !group.builtin?}) - - def to_s - name.to_s - end - - def name - lastname - end - - def name=(arg) - self.lastname = arg - end - - def builtin_type - nil - end - - # Return true if the group is a builtin group - def builtin? - false - end - - # Returns true if the group can be given to a user - def givable? - !builtin? - end - - def user_added(user) - members.each do |member| - next if member.project.nil? - user_member = Member.find_by_project_id_and_user_id(member.project_id, user.id) || Member.new(:project_id => member.project_id, :user_id => user.id) - member.member_roles.each do |member_role| - user_member.member_roles << MemberRole.new(:role => member_role.role, :inherited_from => member_role.id) - end - user_member.save! - end - end - - def user_removed(user) - members.each do |member| - MemberRole. - joins(:member). - where("#{Member.table_name}.user_id = ? AND #{MemberRole.table_name}.inherited_from IN (?)", user.id, member.member_role_ids). - each(&:destroy) - end - end - - def self.human_attribute_name(attribute_key_name, *args) - attr_name = attribute_key_name.to_s - if attr_name == 'lastname' - attr_name = "name" - end - super(attr_name, *args) - end - - def self.anonymous - GroupAnonymous.load_instance - end - - def self.non_member - GroupNonMember.load_instance - end - - private - - # Removes references that are not handled by associations - def remove_references_before_destroy - return if self.id.nil? - - Issue.where(['assigned_to_id = ?', id]).update_all('assigned_to_id = NULL') - end -end - -require_dependency "group_builtin" diff --git a/app/models/group_anonymous.rb b/app/models/group_anonymous.rb deleted file mode 100644 index 43723ba..0000000 --- a/app/models/group_anonymous.rb +++ /dev/null @@ -1,28 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class GroupAnonymous < GroupBuiltin - def name - l(:label_group_anonymous) - end - - def builtin_type - "anonymous" - end -end diff --git a/app/models/group_builtin.rb b/app/models/group_builtin.rb deleted file mode 100644 index 7bccebb..0000000 --- a/app/models/group_builtin.rb +++ /dev/null @@ -1,58 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class GroupBuiltin < Group - validate :validate_uniqueness, :on => :create - - def validate_uniqueness - errors.add :base, 'The builtin group already exists.' if self.class.exists? - end - - def builtin? - true - end - - def destroy - false - end - - def user_added(user) - raise 'Cannot add users to a builtin group' - end - - class << self - def load_instance - return nil if self == GroupBuiltin - instance = unscoped.order('id').first || create_instance - end - - def create_instance - raise 'The builtin group already exists.' if exists? - instance = unscoped.new - instance.lastname = name - instance.save :validate => false - raise 'Unable to create builtin group.' if instance.new_record? - instance - end - private :create_instance - end -end - -require_dependency "group_anonymous" -require_dependency "group_non_member" diff --git a/app/models/group_custom_field.rb b/app/models/group_custom_field.rb deleted file mode 100644 index f359aa4..0000000 --- a/app/models/group_custom_field.rb +++ /dev/null @@ -1,24 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class GroupCustomField < CustomField - def type_name - :label_group_plural - end -end diff --git a/app/models/group_non_member.rb b/app/models/group_non_member.rb deleted file mode 100644 index d3d8954..0000000 --- a/app/models/group_non_member.rb +++ /dev/null @@ -1,28 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class GroupNonMember < GroupBuiltin - def name - l(:label_group_non_member) - end - - def builtin_type - "non_member" - end -end diff --git a/app/models/import.rb b/app/models/import.rb deleted file mode 100644 index 3244b13..0000000 --- a/app/models/import.rb +++ /dev/null @@ -1,299 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -require 'csv' - -class Import < ActiveRecord::Base - has_many :items, :class_name => 'ImportItem', :dependent => :delete_all - belongs_to :user - serialize :settings - - before_destroy :remove_file - - validates_presence_of :filename, :user_id - validates_length_of :filename, :maximum => 255 - - DATE_FORMATS = [ - '%Y-%m-%d', - '%d/%m/%Y', - '%m/%d/%Y', - '%Y/%m/%d', - '%d.%m.%Y', - '%d-%m-%Y' - ] - - def self.menu_item - nil - end - - def self.layout - 'base' - end - - def self.authorized?(user) - user.admin? - end - - def initialize(*args) - super - self.settings ||= {} - end - - def file=(arg) - return unless arg.present? && arg.size > 0 - - self.filename = generate_filename - Redmine::Utils.save_upload(arg, filepath) - end - - def set_default_settings(options={}) - separator = lu(user, :general_csv_separator) - if file_exists? - begin - content = File.read(filepath, 256) - separator = [',', ';'].sort_by {|sep| content.count(sep) }.last - rescue => e - end - end - wrapper = '"' - encoding = lu(user, :general_csv_encoding) - - date_format = lu(user, "date.formats.default", :default => "foo") - date_format = DATE_FORMATS.first unless DATE_FORMATS.include?(date_format) - - self.settings.merge!( - 'separator' => separator, - 'wrapper' => wrapper, - 'encoding' => encoding, - 'date_format' => date_format, - 'notifications' => '0' - ) - - if options.key?(:project_id) && !options[:project_id].blank? - # Do not fail if project doesn't exist - begin - project = Project.find(options[:project_id]) - self.settings.merge!('mapping' => {'project_id' => project.id}) - rescue; end - end - end - - def to_param - filename - end - - # Returns the full path of the file to import - # It is stored in tmp/imports with a random hex as filename - def filepath - if filename.present? && /\A[0-9a-f]+\z/.match?(filename) - File.join(Rails.root, "tmp", "imports", filename) - else - nil - end - end - - # Returns true if the file to import exists - def file_exists? - filepath.present? && File.exists?(filepath) - end - - # Returns the headers as an array that - # can be used for select options - def columns_options(default=nil) - i = -1 - headers.map {|h| [h, i+=1]} - end - - # Parses the file to import and updates the total number of items - def parse_file - count = 0 - read_items {|row, i| count=i} - update_attribute :total_items, count - count - end - - # Reads the items to import and yields the given block for each item - def read_items - i = 0 - headers = true - read_rows do |row| - if i == 0 && headers - headers = false - next - end - i+= 1 - yield row, i if block_given? - end - end - - # Returns the count first rows of the file (including headers) - def first_rows(count=4) - rows = [] - read_rows do |row| - rows << row - break if rows.size >= count - end - rows - end - - # Returns an array of headers - def headers - first_rows(1).first || [] - end - - # Returns the mapping options - def mapping - settings['mapping'] || {} - end - - # Adds a callback that will be called after the item at given position is imported - def add_callback(position, name, *args) - settings['callbacks'] ||= {} - settings['callbacks'][position] ||= [] - settings['callbacks'][position] << [name, args] - save! - end - - # Executes the callbacks for the given object - def do_callbacks(position, object) - if callbacks = (settings['callbacks'] || {}).delete(position) - callbacks.each do |name, args| - send "#{name}_callback", object, *args - end - save! - end - end - - # Imports items and returns the position of the last processed item - def run(options={}) - max_items = options[:max_items] - max_time = options[:max_time] - current = 0 - imported = 0 - resume_after = items.maximum(:position) || 0 - interrupted = false - started_on = Time.now - - read_items do |row, position| - if (max_items && imported >= max_items) || (max_time && Time.now >= started_on + max_time) - interrupted = true - break - end - if position > resume_after - item = items.build - item.position = position - item.unique_id = row_value(row, 'unique_id') if use_unique_id? - - if object = build_object(row, item) - if object.save - item.obj_id = object.id - else - item.message = object.errors.full_messages.join("\n") - end - end - - item.save! - imported += 1 - - do_callbacks(use_unique_id? ? item.unique_id : item.position, object) - end - current = position - end - - if imported == 0 || interrupted == false - if total_items.nil? - update_attribute :total_items, current - end - update_attribute :finished, true - remove_file - end - - current - end - - def unsaved_items - items.where(:obj_id => nil) - end - - def saved_items - items.where("obj_id IS NOT NULL") - end - - private - - def read_rows - return unless file_exists? - - csv_options = {:headers => false} - csv_options[:encoding] = settings['encoding'].to_s.presence || 'UTF-8' - csv_options[:encoding] = 'bom|UTF-8' if csv_options[:encoding] == 'UTF-8' - separator = settings['separator'].to_s - csv_options[:col_sep] = separator if separator.size == 1 - wrapper = settings['wrapper'].to_s - csv_options[:quote_char] = wrapper if wrapper.size == 1 - - CSV.foreach(filepath, csv_options) do |row| - yield row if block_given? - end - end - - def row_value(row, key) - if index = mapping[key].presence - row[index.to_i].presence - end - end - - def row_date(row, key) - if s = row_value(row, key) - format = settings['date_format'] - format = DATE_FORMATS.first unless DATE_FORMATS.include?(format) - Date.strptime(s, format) rescue s - end - end - - # Builds a record for the given row and returns it - # To be implemented by subclasses - def build_object(row) - end - - # Generates a filename used to store the import file - def generate_filename - Redmine::Utils.random_hex(16) - end - - # Deletes the import file - def remove_file - if file_exists? - begin - File.delete filepath - rescue => e - logger.error "Unable to delete file #{filepath}: #{e.message}" if logger - end - end - end - - # Returns true if value is a string that represents a true value - def yes?(value) - value == lu(user, :general_text_yes) || value == '1' - end - - def use_unique_id? - mapping['unique_id'].present? - end -end diff --git a/app/models/import_item.rb b/app/models/import_item.rb deleted file mode 100644 index c01c97b..0000000 --- a/app/models/import_item.rb +++ /dev/null @@ -1,24 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class ImportItem < ActiveRecord::Base - belongs_to :import - - validates_presence_of :import_id, :position -end diff --git a/app/models/issue.rb b/app/models/issue.rb deleted file mode 100644 index edd77b4..0000000 --- a/app/models/issue.rb +++ /dev/null @@ -1,1875 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class Issue < ActiveRecord::Base - include Redmine::SafeAttributes - include Redmine::Utils::DateCalculation - include Redmine::I18n - before_save :set_parent_id - include Redmine::NestedSet::IssueNestedSet - - belongs_to :project - belongs_to :tracker - belongs_to :status, :class_name => 'IssueStatus' - belongs_to :author, :class_name => 'User' - belongs_to :assigned_to, :class_name => 'Principal' - belongs_to :fixed_version, :class_name => 'Version' - belongs_to :priority, :class_name => 'IssuePriority' - belongs_to :category, :class_name => 'IssueCategory' - - has_many :journals, :as => :journalized, :dependent => :destroy, :inverse_of => :journalized - has_many :time_entries, :dependent => :destroy - has_and_belongs_to_many :changesets, lambda {order("#{Changeset.table_name}.committed_on ASC, #{Changeset.table_name}.id ASC")} - - has_many :relations_from, :class_name => 'IssueRelation', :foreign_key => 'issue_from_id', :dependent => :delete_all - has_many :relations_to, :class_name => 'IssueRelation', :foreign_key => 'issue_to_id', :dependent => :delete_all - - acts_as_attachable :after_add => :attachment_added, :after_remove => :attachment_removed - acts_as_customizable - acts_as_watchable - acts_as_searchable :columns => ['subject', "#{table_name}.description"], - :preload => [:project, :status, :tracker], - :scope => lambda {|options| options[:open_issues] ? self.open : self.all} - - acts_as_event :title => Proc.new {|o| "#{o.tracker.name} ##{o.id} (#{o.status}): #{o.subject}"}, - :url => Proc.new {|o| {:controller => 'issues', :action => 'show', :id => o.id}}, - :type => Proc.new {|o| 'issue' + (o.closed? ? '-closed' : '') } - - acts_as_activity_provider :scope => preload(:project, :author, :tracker, :status), - :author_key => :author_id - - DONE_RATIO_OPTIONS = %w(issue_field issue_status) - - attr_writer :deleted_attachment_ids - delegate :notes, :notes=, :private_notes, :private_notes=, :to => :current_journal, :allow_nil => true - - validates_presence_of :subject, :project, :tracker - validates_presence_of :priority, :if => Proc.new {|issue| issue.new_record? || issue.priority_id_changed?} - validates_presence_of :status, :if => Proc.new {|issue| issue.new_record? || issue.status_id_changed?} - validates_presence_of :author, :if => Proc.new {|issue| issue.new_record? || issue.author_id_changed?} - - validates_length_of :subject, :maximum => 255 - validates_inclusion_of :done_ratio, :in => 0..100 - validates :estimated_hours, :numericality => {:greater_than_or_equal_to => 0, :allow_nil => true, :message => :invalid} - validates :start_date, :date => true - validates :due_date, :date => true - validate :validate_issue, :validate_required_fields, :validate_permissions - - scope :visible, lambda {|*args| - joins(:project). - where(Issue.visible_condition(args.shift || User.current, *args)) - } - - scope :open, lambda {|*args| - is_closed = !args.empty? ? !args.first : false - joins(:status). - where(:issue_statuses => {:is_closed => is_closed}) - } - - scope :recently_updated, lambda { order(:updated_on => :desc) } - scope :on_active_project, lambda { - joins(:project). - where(:projects => {:status => Project::STATUS_ACTIVE}) - } - scope :fixed_version, lambda {|versions| - ids = [versions].flatten.compact.map {|v| v.is_a?(Version) ? v.id : v} - ids.any? ? where(:fixed_version_id => ids) : none - } - scope :assigned_to, lambda {|arg| - arg = Array(arg).uniq - ids = arg.map {|p| p.is_a?(Principal) ? p.id : p} - ids += arg.select {|p| p.is_a?(User)}.map(&:group_ids).flatten.uniq - ids.compact! - ids.any? ? where(:assigned_to_id => ids) : none - } - scope :like, lambda {|q| - q = q.to_s - if q.present? - where("LOWER(#{table_name}.subject) LIKE LOWER(?)", "%#{q}%") - end - } - - before_validation :default_assign, on: :create - before_validation :clear_disabled_fields - before_save :close_duplicates, :update_done_ratio_from_issue_status, - :force_updated_on_change, :update_closed_on - after_save {|issue| issue.send :after_project_change if !issue.saved_change_to_id? && issue.saved_change_to_project_id?} - after_save :reschedule_following_issues, :update_nested_set_attributes, - :update_parent_attributes, :delete_selected_attachments, :create_journal - # Should be after_create but would be called before previous after_save callbacks - after_save :after_create_from_copy - after_destroy :update_parent_attributes - after_create_commit :send_notification - - # Returns a SQL conditions string used to find all issues visible by the specified user - def self.visible_condition(user, options={}) - Project.allowed_to_condition(user, :view_issues, options) do |role, user| - sql = - if user.id && user.logged? - case role.issues_visibility - when 'all' - '1=1' - when 'default' - user_ids = [user.id] + user.groups.pluck(:id).compact - "(#{table_name}.is_private = #{connection.quoted_false} OR #{table_name}.author_id = #{user.id} OR #{table_name}.assigned_to_id IN (#{user_ids.join(',')}))" - when 'own' - user_ids = [user.id] + user.groups.pluck(:id).compact - "(#{table_name}.author_id = #{user.id} OR #{table_name}.assigned_to_id IN (#{user_ids.join(',')}))" - else - '1=0' - end - else - "(#{table_name}.is_private = #{connection.quoted_false})" - end - unless role.permissions_all_trackers?(:view_issues) - tracker_ids = role.permissions_tracker_ids(:view_issues) - if tracker_ids.any? - sql = "(#{sql} AND #{table_name}.tracker_id IN (#{tracker_ids.join(',')}))" - else - sql = '1=0' - end - end - sql - end - end - - # Returns true if usr or current user is allowed to view the issue - def visible?(usr=nil) - (usr || User.current).allowed_to?(:view_issues, self.project) do |role, user| - visible = - if user.logged? - case role.issues_visibility - when 'all' - true - when 'default' - !self.is_private? || (self.author == user || user.is_or_belongs_to?(assigned_to)) - when 'own' - self.author == user || user.is_or_belongs_to?(assigned_to) - else - false - end - else - !self.is_private? - end - unless role.permissions_all_trackers?(:view_issues) - visible &&= role.permissions_tracker_ids?(:view_issues, tracker_id) - end - visible - end - end - - # Returns true if user or current user is allowed to edit or add notes to the issue - def editable?(user=User.current) - attributes_editable?(user) || notes_addable?(user) - end - - # Returns true if user or current user is allowed to edit the issue - def attributes_editable?(user=User.current) - user_tracker_permission?(user, :edit_issues) || ( - user_tracker_permission?(user, :edit_own_issues) && author == user - ) - end - - # Overrides Redmine::Acts::Attachable::InstanceMethods#attachments_editable? - def attachments_editable?(user=User.current) - attributes_editable?(user) - end - - # Returns true if user or current user is allowed to add notes to the issue - def notes_addable?(user=User.current) - user_tracker_permission?(user, :add_issue_notes) - end - - # Returns true if user or current user is allowed to delete the issue - def deletable?(user=User.current) - user_tracker_permission?(user, :delete_issues) - end - - # Overrides Redmine::Acts::Attachable::InstanceMethods#attachments_deletable? - def attachments_deletable?(user=User.current) - attributes_editable?(user) - end - - def initialize(attributes=nil, *args) - super - if new_record? - # set default values for new records only - self.priority ||= IssuePriority.default - self.watcher_user_ids = [] - end - end - - def create_or_update(*args) - super - ensure - @status_was = nil - end - private :create_or_update - - # AR#Persistence#destroy would raise and RecordNotFound exception - # if the issue was already deleted or updated (non matching lock_version). - # This is a problem when bulk deleting issues or deleting a project - # (because an issue may already be deleted if its parent was deleted - # first). - # The issue is reloaded by the nested_set before being deleted so - # the lock_version condition should not be an issue but we handle it. - def destroy - super - rescue ActiveRecord::StaleObjectError, ActiveRecord::RecordNotFound - # Stale or already deleted - begin - reload - rescue ActiveRecord::RecordNotFound - # The issue was actually already deleted - @destroyed = true - return freeze - end - # The issue was stale, retry to destroy - super - end - - alias :base_reload :reload - def reload(*args) - @workflow_rule_by_attribute = nil - @assignable_versions = nil - @relations = nil - @spent_hours = nil - @total_spent_hours = nil - @total_estimated_hours = nil - @last_updated_by = nil - @last_notes = nil - base_reload(*args) - end - - # Overrides Redmine::Acts::Customizable::InstanceMethods#available_custom_fields - def available_custom_fields - (project && tracker) ? (project.all_issue_custom_fields & tracker.custom_fields) : [] - end - - def visible_custom_field_values(user=nil) - user_real = user || User.current - custom_field_values.select do |value| - value.custom_field.visible_by?(project, user_real) - end - end - - # Overrides Redmine::Acts::Customizable::InstanceMethods#set_custom_field_default? - def set_custom_field_default?(custom_value) - new_record? || project_id_changed?|| tracker_id_changed? - end - - # Copies attributes from another issue, arg can be an id or an Issue - def copy_from(arg, options={}) - issue = arg.is_a?(Issue) ? arg : Issue.visible.find(arg) - self.attributes = issue.attributes.dup.except("id", "root_id", "parent_id", "lft", "rgt", "created_on", "updated_on", "status_id", "closed_on") - self.custom_field_values = issue.custom_field_values.inject({}) {|h,v| h[v.custom_field_id] = v.value; h} - if options[:keep_status] - self.status = issue.status - end - self.author = User.current - unless options[:attachments] == false - self.attachments = issue.attachments.map do |attachement| - attachement.copy(:container => self) - end - end - unless options[:watchers] == false - self.watcher_user_ids = - issue.watcher_users.select{|u| u.status == User::STATUS_ACTIVE}.map(&:id) - end - @copied_from = issue - @copy_options = options - self - end - - # Returns an unsaved copy of the issue - def copy(attributes=nil, copy_options={}) - copy = self.class.new.copy_from(self, copy_options) - copy.attributes = attributes if attributes - copy - end - - # Returns true if the issue is a copy - def copy? - @copied_from.present? - end - - def status_id=(status_id) - if status_id.to_s != self.status_id.to_s - self.status = (status_id.present? ? IssueStatus.find_by_id(status_id) : nil) - end - self.status_id - end - - # Sets the status. - def status=(status) - if status != self.status - @workflow_rule_by_attribute = nil - end - association(:status).writer(status) - end - - def priority_id=(pid) - self.priority = nil - write_attribute(:priority_id, pid) - end - - def category_id=(cid) - self.category = nil - write_attribute(:category_id, cid) - end - - def fixed_version_id=(vid) - self.fixed_version = nil - write_attribute(:fixed_version_id, vid) - end - - def tracker_id=(tracker_id) - if tracker_id.to_s != self.tracker_id.to_s - self.tracker = (tracker_id.present? ? Tracker.find_by_id(tracker_id) : nil) - end - self.tracker_id - end - - # Sets the tracker. - # This will set the status to the default status of the new tracker if: - # * the status was the default for the previous tracker - # * or if the status was not part of the new tracker statuses - # * or the status was nil - def tracker=(tracker) - tracker_was = self.tracker - association(:tracker).writer(tracker) - if tracker != tracker_was - if status == tracker_was.try(:default_status) - self.status = nil - elsif status && tracker && !tracker.issue_status_ids.include?(status.id) - self.status = nil - end - reassign_custom_field_values - @workflow_rule_by_attribute = nil - end - self.status ||= default_status - self.tracker - end - - def project_id=(project_id) - if project_id.to_s != self.project_id.to_s - self.project = (project_id.present? ? Project.find_by_id(project_id) : nil) - end - self.project_id - end - - # Sets the project. - # Unless keep_tracker argument is set to true, this will change the tracker - # to the first tracker of the new project if the previous tracker is not part - # of the new project trackers. - # This will: - # * clear the fixed_version is it's no longer valid for the new project. - # * clear the parent issue if it's no longer valid for the new project. - # * set the category to the category with the same name in the new - # project if it exists, or clear it if it doesn't. - # * for new issue, set the fixed_version to the project default version - # if it's a valid fixed_version. - def project=(project, keep_tracker=false) - project_was = self.project - association(:project).writer(project) - if project != project_was - @safe_attribute_names = nil - end - if project_was && project && project_was != project - @assignable_versions = nil - - unless keep_tracker || project.trackers.include?(tracker) - self.tracker = project.trackers.first - end - # Reassign to the category with same name if any - if category - self.category = project.issue_categories.find_by_name(category.name) - end - # Clear the assignee if not available in the new project for new issues (eg. copy) - # For existing issue, the previous assignee is still valid, so we keep it - if new_record? && assigned_to && !assignable_users.include?(assigned_to) - self.assigned_to_id = nil - end - # Keep the fixed_version if it's still valid in the new_project - if fixed_version && fixed_version.project != project && !project.shared_versions.include?(fixed_version) - self.fixed_version = nil - end - # Clear the parent task if it's no longer valid - unless valid_parent_project? - self.parent_issue_id = nil - end - reassign_custom_field_values - @workflow_rule_by_attribute = nil - end - # Set fixed_version to the project default version if it's valid - if new_record? && fixed_version.nil? && project && project.default_version_id? - if project.shared_versions.open.exists?(project.default_version_id) - self.fixed_version_id = project.default_version_id - end - end - self.project - end - - def description=(arg) - if arg.is_a?(String) - arg = arg.gsub(/(\r\n|\n|\r)/, "\r\n") - end - write_attribute(:description, arg) - end - - def deleted_attachment_ids - Array(@deleted_attachment_ids).map(&:to_i) - end - - # Overrides assign_attributes so that project and tracker get assigned first - def assign_attributes(new_attributes, *args) - return if new_attributes.nil? - attrs = new_attributes.dup - attrs.stringify_keys! - - %w(project project_id tracker tracker_id).each do |attr| - if attrs.has_key?(attr) - send "#{attr}=", attrs.delete(attr) - end - end - super attrs, *args - end - - def attributes=(new_attributes) - assign_attributes new_attributes - end - - def estimated_hours=(h) - write_attribute :estimated_hours, (h.is_a?(String) ? (h.to_hours || h) : h) - end - - safe_attributes( - 'project_id', - 'tracker_id', - 'status_id', - 'category_id', - 'assigned_to_id', - 'priority_id', - 'fixed_version_id', - 'subject', - 'description', - 'start_date', - 'due_date', - 'done_ratio', - 'estimated_hours', - 'custom_field_values', - 'custom_fields', - 'lock_version', - :if => lambda {|issue, user| issue.new_record? || issue.attributes_editable?(user)}) - safe_attributes( - 'notes', - :if => lambda {|issue, user| issue.notes_addable?(user)}) - safe_attributes( - 'private_notes', - :if => lambda {|issue, user| !issue.new_record? && user.allowed_to?(:set_notes_private, issue.project)}) - safe_attributes( - 'watcher_user_ids', - :if => lambda {|issue, user| issue.new_record? && user.allowed_to?(:add_issue_watchers, issue.project)}) - safe_attributes( - 'is_private', - :if => lambda {|issue, user| - user.allowed_to?(:set_issues_private, issue.project) || - (issue.author_id == user.id && user.allowed_to?(:set_own_issues_private, issue.project)) - }) - safe_attributes( - 'parent_issue_id', - :if => lambda {|issue, user| - (issue.new_record? || issue.attributes_editable?(user)) && - user.allowed_to?(:manage_subtasks, issue.project) - }) - safe_attributes( - 'deleted_attachment_ids', - :if => lambda {|issue, user| issue.attachments_deletable?(user)}) - - def safe_attribute_names(user=nil) - names = super - names -= disabled_core_fields - names -= read_only_attribute_names(user) - if new_record? - # Make sure that project_id can always be set for new issues - names |= %w(project_id) - end - if dates_derived? - names -= %w(start_date due_date) - end - if priority_derived? - names -= %w(priority_id) - end - if done_ratio_derived? - names -= %w(done_ratio) - end - names - end - - # Safely sets attributes - # Should be called from controllers instead of #attributes= - # attr_accessible is too rough because we still want things like - # Issue.new(:project => foo) to work - def safe_attributes=(attrs, user=User.current) - if attrs.respond_to?(:to_unsafe_hash) - attrs = attrs.to_unsafe_hash - end - - @attributes_set_by = user - return unless attrs.is_a?(Hash) - - attrs = attrs.deep_dup - - # Project and Tracker must be set before since new_statuses_allowed_to depends on it. - if (p = attrs.delete('project_id')) && safe_attribute?('project_id') - if p.is_a?(String) && !/^\d*$/.match?(p) - p_id = Project.find_by_identifier(p).try(:id) - else - p_id = p.to_i - end - if allowed_target_projects(user).where(:id => p_id).exists? - self.project_id = p_id - end - - if project_id_changed? && attrs['category_id'].present? && attrs['category_id'].to_s == category_id_was.to_s - # Discard submitted category on previous project - attrs.delete('category_id') - end - end - - if (t = attrs.delete('tracker_id')) && safe_attribute?('tracker_id') - if allowed_target_trackers(user).where(:id => t.to_i).exists? - self.tracker_id = t - end - end - if project && tracker.nil? - # Set a default tracker to accept custom field values - # even if tracker is not specified - allowed_trackers = allowed_target_trackers(user) - - if attrs['parent_issue_id'].present? - # If parent_issue_id is present, the first tracker for which this field - # is not disabled is chosen as default - self.tracker = allowed_trackers.detect {|t| t.core_fields.include?('parent_issue_id')} - end - self.tracker ||= allowed_trackers.first - end - - statuses_allowed = new_statuses_allowed_to(user) - if (s = attrs.delete('status_id')) && safe_attribute?('status_id') - if statuses_allowed.collect(&:id).include?(s.to_i) - self.status_id = s - end - end - if new_record? && !statuses_allowed.include?(status) - self.status = statuses_allowed.first || default_status - end - if (u = attrs.delete('assigned_to_id')) && safe_attribute?('assigned_to_id') - self.assigned_to_id = u - end - attrs = delete_unsafe_attributes(attrs, user) - return if attrs.empty? - - if attrs['parent_issue_id'].present? - s = attrs['parent_issue_id'].to_s - unless (m = s.match(%r{\A#?(\d+)\z})) && (m[1] == parent_id.to_s || Issue.visible(user).exists?(m[1])) - @invalid_parent_issue_id = attrs.delete('parent_issue_id') - end - end - - if attrs['custom_field_values'].present? - editable_custom_field_ids = editable_custom_field_values(user).map {|v| v.custom_field_id.to_s} - attrs['custom_field_values'].select! {|k, v| editable_custom_field_ids.include?(k.to_s)} - end - - if attrs['custom_fields'].present? - editable_custom_field_ids = editable_custom_field_values(user).map {|v| v.custom_field_id.to_s} - attrs['custom_fields'].select! {|c| editable_custom_field_ids.include?(c['id'].to_s)} - end - - assign_attributes attrs - end - - def disabled_core_fields - tracker ? tracker.disabled_core_fields : [] - end - - # Returns the custom_field_values that can be edited by the given user - def editable_custom_field_values(user=nil) - read_only = read_only_attribute_names(user) - visible_custom_field_values(user).reject do |value| - read_only.include?(value.custom_field_id.to_s) - end - end - - # Returns the custom fields that can be edited by the given user - def editable_custom_fields(user=nil) - editable_custom_field_values(user).map(&:custom_field).uniq - end - - # Returns the names of attributes that are read-only for user or the current user - # For users with multiple roles, the read-only fields are the intersection of - # read-only fields of each role - # The result is an array of strings where sustom fields are represented with their ids - # - # Examples: - # issue.read_only_attribute_names # => ['due_date', '2'] - # issue.read_only_attribute_names(user) # => [] - def read_only_attribute_names(user=nil) - workflow_rule_by_attribute(user).reject {|attr, rule| rule != 'readonly'}.keys - end - - # Returns the names of required attributes for user or the current user - # For users with multiple roles, the required fields are the intersection of - # required fields of each role - # The result is an array of strings where sustom fields are represented with their ids - # - # Examples: - # issue.required_attribute_names # => ['due_date', '2'] - # issue.required_attribute_names(user) # => [] - def required_attribute_names(user=nil) - workflow_rule_by_attribute(user).reject {|attr, rule| rule != 'required'}.keys - end - - # Returns true if the attribute is required for user - def required_attribute?(name, user=nil) - required_attribute_names(user).include?(name.to_s) - end - - # Returns a hash of the workflow rule by attribute for the given user - # - # Examples: - # issue.workflow_rule_by_attribute # => {'due_date' => 'required', 'start_date' => 'readonly'} - def workflow_rule_by_attribute(user=nil) - return @workflow_rule_by_attribute if @workflow_rule_by_attribute && user.nil? - - user_real = user || User.current - roles = user_real.admin ? Role.all.to_a : user_real.roles_for_project(project) - roles = roles.select(&:consider_workflow?) - return {} if roles.empty? - - result = {} - workflow_permissions = WorkflowPermission.where(:tracker_id => tracker_id, :old_status_id => status_id, :role_id => roles.map(&:id)).to_a - if workflow_permissions.any? - workflow_rules = workflow_permissions.inject({}) do |h, wp| - h[wp.field_name] ||= {} - h[wp.field_name][wp.role_id] = wp.rule - h - end - fields_with_roles = {} - IssueCustomField.where(:visible => false).joins(:roles).pluck(:id, "role_id").each do |field_id, role_id| - fields_with_roles[field_id] ||= [] - fields_with_roles[field_id] << role_id - end - roles.each do |role| - fields_with_roles.each do |field_id, role_ids| - unless role_ids.include?(role.id) - field_name = field_id.to_s - workflow_rules[field_name] ||= {} - workflow_rules[field_name][role.id] = 'readonly' - end - end - end - workflow_rules.each do |attr, rules| - next if rules.size < roles.size - uniq_rules = rules.values.uniq - if uniq_rules.size == 1 - result[attr] = uniq_rules.first - else - result[attr] = 'required' - end - end - end - @workflow_rule_by_attribute = result if user.nil? - result - end - private :workflow_rule_by_attribute - - def done_ratio - if Issue.use_status_for_done_ratio? && status && status.default_done_ratio - status.default_done_ratio - else - read_attribute(:done_ratio) - end - end - - def self.use_status_for_done_ratio? - Setting.issue_done_ratio == 'issue_status' - end - - def self.use_field_for_done_ratio? - Setting.issue_done_ratio == 'issue_field' - end - - def validate_issue - if due_date && start_date && (start_date_changed? || due_date_changed?) && due_date < start_date - errors.add :due_date, :greater_than_start_date - end - - if start_date && start_date_changed? && soonest_start && start_date < soonest_start - errors.add :start_date, :earlier_than_minimum_start_date, :date => format_date(soonest_start) - end - - if project && fixed_version - if !assignable_versions.include?(fixed_version) - errors.add :fixed_version_id, :inclusion - elsif reopening? && fixed_version.closed? - errors.add :base, I18n.t(:error_can_not_reopen_issue_on_closed_version) - end - end - - # Checks that the issue can not be added/moved to a disabled tracker - if project && (tracker_id_changed? || project_id_changed?) - if tracker && !project.trackers.include?(tracker) - errors.add :tracker_id, :inclusion - end - end - - if project && assigned_to_id_changed? && assigned_to_id.present? - unless assignable_users.include?(assigned_to) - errors.add :assigned_to_id, :invalid - end - end - - # Checks parent issue assignment - if @invalid_parent_issue_id.present? - errors.add :parent_issue_id, :invalid - elsif @parent_issue - if !valid_parent_project?(@parent_issue) - errors.add :parent_issue_id, :invalid - elsif (@parent_issue != parent) && ( - self.would_reschedule?(@parent_issue) || - @parent_issue.self_and_ancestors.any? {|a| a.relations_from.any? {|r| r.relation_type == IssueRelation::TYPE_PRECEDES && r.issue_to.would_reschedule?(self)}} - ) - errors.add :parent_issue_id, :invalid - elsif !closed? && @parent_issue.closed? - # cannot attach an open issue to a closed parent - errors.add :base, :open_issue_with_closed_parent - elsif !new_record? - # moving an existing issue - if move_possible?(@parent_issue) - # move accepted - else - errors.add :parent_issue_id, :invalid - end - end - end - end - - # Validates the issue against additional workflow requirements - def validate_required_fields - user = new_record? ? author : current_journal.try(:user) - - required_attribute_names(user).each do |attribute| - if /^\d+$/.match?(attribute) - attribute = attribute.to_i - v = custom_field_values.detect {|v| v.custom_field_id == attribute } - if v && Array(v.value).detect(&:present?).nil? - errors.add :base, v.custom_field.name + ' ' + l('activerecord.errors.messages.blank') - end - else - if respond_to?(attribute) && send(attribute).blank? && !disabled_core_fields.include?(attribute) - next if attribute == 'category_id' && project.try(:issue_categories).blank? - next if attribute == 'fixed_version_id' && assignable_versions.blank? - errors.add attribute, :blank - end - end - end - end - - def validate_permissions - if @attributes_set_by && new_record? && copy? - unless allowed_target_trackers(@attributes_set_by).include?(tracker) - errors.add :tracker, :invalid - end - end - end - - # Overrides Redmine::Acts::Customizable::InstanceMethods#validate_custom_field_values - # so that custom values that are not editable are not validated (eg. a custom field that - # is marked as required should not trigger a validation error if the user is not allowed - # to edit this field). - def validate_custom_field_values - user = new_record? ? author : current_journal.try(:user) - if new_record? || custom_field_values_changed? - editable_custom_field_values(user).each(&:validate_value) - end - end - - # Set the done_ratio using the status if that setting is set. This will keep the done_ratios - # even if the user turns off the setting later - def update_done_ratio_from_issue_status - if Issue.use_status_for_done_ratio? && status && status.default_done_ratio - self.done_ratio = status.default_done_ratio - end - end - - def init_journal(user, notes = "") - @current_journal ||= Journal.new(:journalized => self, :user => user, :notes => notes) - end - - # Returns the current journal or nil if it's not initialized - def current_journal - @current_journal - end - - # Clears the current journal - def clear_journal - @current_journal = nil - end - - # Returns the names of attributes that are journalized when updating the issue - def journalized_attribute_names - names = Issue.column_names - %w(id root_id lft rgt lock_version created_on updated_on closed_on) - if tracker - names -= tracker.disabled_core_fields - end - names - end - - # Returns the id of the last journal or nil - def last_journal_id - if new_record? - nil - else - journals.maximum(:id) - end - end - - # Returns a scope for journals that have an id greater than journal_id - def journals_after(journal_id) - scope = journals.reorder("#{Journal.table_name}.id ASC") - if journal_id.present? - scope = scope.where("#{Journal.table_name}.id > ?", journal_id.to_i) - end - scope - end - - # Returns the journals that are visible to user with their index - # Used to display the issue history - def visible_journals_with_index(user=User.current) - result = journals. - preload(:details). - preload(:user => :email_address). - reorder(:created_on, :id).to_a - - result.each_with_index {|j,i| j.indice = i+1} - - unless user.allowed_to?(:view_private_notes, project) - result.select! do |journal| - !journal.private_notes? || journal.user == user - end - end - Journal.preload_journals_details_custom_fields(result) - result.select! {|journal| journal.notes? || journal.visible_details.any?} - result - end - - # Returns the initial status of the issue - # Returns nil for a new issue - def status_was - if status_id_changed? - if status_id_was.to_i > 0 - @status_was ||= IssueStatus.find_by_id(status_id_was) - end - else - @status_was ||= status - end - end - - # Return true if the issue is closed, otherwise false - def closed? - status.present? && status.is_closed? - end - - # Returns true if the issue was closed when loaded - def was_closed? - status_was.present? && status_was.is_closed? - end - - # Return true if the issue is being reopened - def reopening? - if new_record? - false - else - status_id_changed? && !closed? && was_closed? - end - end - alias :reopened? :reopening? - - # Return true if the issue is being closed - def closing? - if new_record? - closed? - else - status_id_changed? && closed? && !was_closed? - end - end - - # Returns true if the issue is overdue - def overdue? - due_date.present? && (due_date < User.current.today) && !closed? - end - - # Is the amount of work done less than it should for the due date - def behind_schedule? - return false if start_date.nil? || due_date.nil? - done_date = start_date + ((due_date - start_date + 1) * done_ratio / 100).floor - return done_date <= User.current.today - end - - # Does this issue have children? - def children? - !leaf? - end - - # Users the issue can be assigned to - def assignable_users - return [] if project.nil? - - users = project.assignable_users(tracker).to_a - users << author if author && author.active? - if assigned_to_id_was.present? && assignee = Principal.find_by_id(assigned_to_id_was) - users << assignee - end - users.uniq.sort - end - - # Versions that the issue can be assigned to - def assignable_versions - return @assignable_versions if @assignable_versions - return [] if project.nil? - - versions = project.shared_versions.open.to_a - if fixed_version - if fixed_version_id_changed? - # nothing to do - elsif project_id_changed? - if project.shared_versions.include?(fixed_version) - versions << fixed_version - end - else - versions << fixed_version - end - end - @assignable_versions = versions.uniq.sort - end - - # Returns true if this issue is blocked by another issue that is still open - def blocked? - !relations_to.detect {|ir| ir.relation_type == 'blocks' && !ir.issue_from.closed?}.nil? - end - - # Returns the default status of the issue based on its tracker - # Returns nil if tracker is nil - def default_status - tracker.try(:default_status) - end - - # Returns an array of statuses that user is able to apply - def new_statuses_allowed_to(user=User.current, include_default=false) - initial_status = nil - if new_record? - # nop - elsif tracker_id_changed? - if Tracker.where(:id => tracker_id_was, :default_status_id => status_id_was).any? - initial_status = default_status - elsif tracker.issue_status_ids.include?(status_id_was) - initial_status = IssueStatus.find_by_id(status_id_was) - else - initial_status = default_status - end - else - initial_status = status_was - end - - initial_assigned_to_id = assigned_to_id_changed? ? assigned_to_id_was : assigned_to_id - assignee_transitions_allowed = initial_assigned_to_id.present? && - (user.id == initial_assigned_to_id || user.group_ids.include?(initial_assigned_to_id)) - - statuses = [] - statuses += IssueStatus.new_statuses_allowed( - initial_status, - user.admin ? Role.all.to_a : user.roles_for_project(project), - tracker, - author == user, - assignee_transitions_allowed - ) - statuses << initial_status unless statuses.empty? - statuses << default_status if include_default || (new_record? && statuses.empty?) - - statuses = statuses.compact.uniq.sort - if blocked? || descendants.open.any? - # cannot close a blocked issue or a parent with open subtasks - statuses.reject!(&:is_closed?) - end - if ancestors.open(false).any? - # cannot reopen a subtask of a closed parent - statuses.select!(&:is_closed?) - end - statuses - end - - # Returns the original tracker - def tracker_was - Tracker.find_by_id(tracker_id_in_database) - end - - # Returns the previous assignee whenever we're before the save - # or in after_* callbacks - def previous_assignee - if previous_assigned_to_id = assigned_to_id_change_to_be_saved.nil? ? assigned_to_id_before_last_save : assigned_to_id_in_database - Principal.find_by_id(previous_assigned_to_id) - end - end - - # Returns the users that should be notified - def notified_users - # Author and assignee are always notified unless they have been - # locked or don't want to be notified - notified = [author, assigned_to, previous_assignee].compact.uniq - notified = notified.map {|n| n.is_a?(Group) ? n.users : n}.flatten - notified.uniq! - notified = notified.select {|u| u.active? && u.notify_about?(self)} - - notified += project.notified_users - notified.uniq! - # Remove users that can not view the issue - notified.reject! {|user| !visible?(user)} - notified - end - - # Returns the email addresses that should be notified - def recipients - notified_users.collect(&:mail) - end - - def notify? - @notify != false - end - - def notify=(arg) - @notify = arg - end - - # Returns the number of hours spent on this issue - def spent_hours - @spent_hours ||= time_entries.sum(:hours) || 0.0 - end - - # Returns the total number of hours spent on this issue and its descendants - def total_spent_hours - @total_spent_hours ||= - if leaf? - spent_hours - else - self_and_descendants.joins(:time_entries).sum("#{TimeEntry.table_name}.hours").to_f || 0.0 - end - end - - def total_estimated_hours - if leaf? - estimated_hours - else - @total_estimated_hours ||= self_and_descendants.visible.sum(:estimated_hours) - end - end - - def relations - @relations ||= IssueRelation::Relations.new(self, (relations_from + relations_to).sort) - end - - def last_updated_by - if @last_updated_by - @last_updated_by.presence - else - journals.reorder(:id => :desc).first.try(:user) - end - end - - def last_notes - if @last_notes - @last_notes - else - journals.where.not(notes: '').reorder(:id => :desc).first.try(:notes) - end - end - - # Preloads relations for a collection of issues - def self.load_relations(issues) - if issues.any? - relations = IssueRelation.where("issue_from_id IN (:ids) OR issue_to_id IN (:ids)", :ids => issues.map(&:id)).all - issues.each do |issue| - issue.instance_variable_set "@relations", relations.select {|r| r.issue_from_id == issue.id || r.issue_to_id == issue.id} - end - end - end - - # Preloads visible spent time for a collection of issues - def self.load_visible_spent_hours(issues, user=User.current) - if issues.any? - hours_by_issue_id = TimeEntry.visible(user).where(:issue_id => issues.map(&:id)).group(:issue_id).sum(:hours) - issues.each do |issue| - issue.instance_variable_set "@spent_hours", (hours_by_issue_id[issue.id] || 0.0) - end - end - end - - # Preloads visible total spent time for a collection of issues - def self.load_visible_total_spent_hours(issues, user=User.current) - if issues.any? - hours_by_issue_id = TimeEntry.visible(user).joins(:issue). - joins("JOIN #{Issue.table_name} parent ON parent.root_id = #{Issue.table_name}.root_id" + - " AND parent.lft <= #{Issue.table_name}.lft AND parent.rgt >= #{Issue.table_name}.rgt"). - where("parent.id IN (?)", issues.map(&:id)).group("parent.id").sum(:hours) - issues.each do |issue| - issue.instance_variable_set "@total_spent_hours", (hours_by_issue_id[issue.id] || 0.0) - end - end - end - - # Preloads visible relations for a collection of issues - def self.load_visible_relations(issues, user=User.current) - if issues.any? - issue_ids = issues.map(&:id) - # Relations with issue_from in given issues and visible issue_to - relations_from = IssueRelation.joins(:issue_to => :project). - where(visible_condition(user)).where(:issue_from_id => issue_ids).to_a - # Relations with issue_to in given issues and visible issue_from - relations_to = IssueRelation.joins(:issue_from => :project). - where(visible_condition(user)). - where(:issue_to_id => issue_ids).to_a - issues.each do |issue| - relations = - relations_from.select {|relation| relation.issue_from_id == issue.id} + - relations_to.select {|relation| relation.issue_to_id == issue.id} - - issue.instance_variable_set "@relations", IssueRelation::Relations.new(issue, relations.sort) - end - end - end - - # Returns a scope of the given issues and their descendants - def self.self_and_descendants(issues) - Issue.joins("JOIN #{Issue.table_name} ancestors" + - " ON ancestors.root_id = #{Issue.table_name}.root_id" + - " AND ancestors.lft <= #{Issue.table_name}.lft AND ancestors.rgt >= #{Issue.table_name}.rgt" - ). - where(:ancestors => {:id => issues.map(&:id)}) - end - - # Preloads users who updated last a collection of issues - def self.load_visible_last_updated_by(issues, user=User.current) - if issues.any? - issue_ids = issues.map(&:id) - journal_ids = Journal.joins(issue: :project). - where(:journalized_type => 'Issue', :journalized_id => issue_ids). - where(Journal.visible_notes_condition(user, :skip_pre_condition => true)). - group(:journalized_id). - maximum(:id). - values - journals = Journal.where(:id => journal_ids).preload(:user).to_a - - issues.each do |issue| - journal = journals.detect {|j| j.journalized_id == issue.id} - issue.instance_variable_set("@last_updated_by", journal.try(:user) || '') - end - end - end - - # Preloads visible last notes for a collection of issues - def self.load_visible_last_notes(issues, user=User.current) - if issues.any? - issue_ids = issues.map(&:id) - journal_ids = Journal.joins(issue: :project). - where(:journalized_type => 'Issue', :journalized_id => issue_ids). - where(Journal.visible_notes_condition(user, :skip_pre_condition => true)). - where.not(notes: ''). - group(:journalized_id). - maximum(:id). - values - journals = Journal.where(:id => journal_ids).to_a - - issues.each do |issue| - journal = journals.detect {|j| j.journalized_id == issue.id} - issue.instance_variable_set("@last_notes", journal.try(:notes) || '') - end - end - end - - # Finds an issue relation given its id. - def find_relation(relation_id) - IssueRelation.where("issue_to_id = ? OR issue_from_id = ?", id, id).find(relation_id) - end - - # Returns true if this issue blocks the other issue, otherwise returns false - def blocks?(other) - all = [self] - last = [self] - while last.any? - current = last.map {|i| i.relations_from.where(:relation_type => IssueRelation::TYPE_BLOCKS).map(&:issue_to)}.flatten.uniq - current -= last - current -= all - return true if current.include?(other) - last = current - all += last - end - false - end - - # Returns true if the other issue might be rescheduled if the start/due dates of this issue change - def would_reschedule?(other) - all = [self] - last = [self] - while last.any? - current = last.map {|i| - i.relations_from.where(:relation_type => IssueRelation::TYPE_PRECEDES).map(&:issue_to) + - i.leaves.to_a + - i.ancestors.map {|a| a.relations_from.where(:relation_type => IssueRelation::TYPE_PRECEDES).map(&:issue_to)} - }.flatten.uniq - current -= last - current -= all - return true if current.include?(other) - last = current - all += last - end - false - end - - # Returns an array of issues that duplicate this one - def duplicates - relations_to.select {|r| r.relation_type == IssueRelation::TYPE_DUPLICATES}.collect {|r| r.issue_from} - end - - # Returns the due date or the target due date if any - # Used on gantt chart - def due_before - due_date || (fixed_version ? fixed_version.effective_date : nil) - end - - # Returns the time scheduled for this issue. - # - # Example: - # Start Date: 2/26/09, End Date: 3/04/09 - # duration => 6 - def duration - (start_date && due_date) ? due_date - start_date : 0 - end - - # Returns the duration in working days - def working_duration - (start_date && due_date) ? working_days(start_date, due_date) : 0 - end - - def soonest_start(reload=false) - if @soonest_start.nil? || reload - relations_to.reload if reload - dates = relations_to.collect{|relation| relation.successor_soonest_start} - p = @parent_issue || parent - if p && Setting.parent_issue_dates == 'derived' - dates << p.soonest_start - end - @soonest_start = dates.compact.max - end - @soonest_start - end - - # Sets start_date on the given date or the next working day - # and changes due_date to keep the same working duration. - def reschedule_on(date) - wd = working_duration - date = next_working_date(date) - self.start_date = date - self.due_date = add_working_days(date, wd) - end - - # Reschedules the issue on the given date or the next working day and saves the record. - # If the issue is a parent task, this is done by rescheduling its subtasks. - def reschedule_on!(date, journal=nil) - return if date.nil? - if leaf? || !dates_derived? - if start_date.nil? || start_date != date - if start_date && start_date > date - # Issue can not be moved earlier than its soonest start date - date = [soonest_start(true), date].compact.max - end - if journal - init_journal(journal.user) - end - reschedule_on(date) - begin - save - rescue ActiveRecord::StaleObjectError - reload - reschedule_on(date) - save - end - end - else - leaves.each do |leaf| - if leaf.start_date - # Only move subtask if it starts at the same date as the parent - # or if it starts before the given date - if start_date == leaf.start_date || date > leaf.start_date - leaf.reschedule_on!(date) - end - else - leaf.reschedule_on!(date) - end - end - end - end - - def dates_derived? - !leaf? && Setting.parent_issue_dates == 'derived' - end - - def priority_derived? - !leaf? && Setting.parent_issue_priority == 'derived' - end - - def done_ratio_derived? - !leaf? && Setting.parent_issue_done_ratio == 'derived' - end - - def <=>(issue) - if issue.nil? - -1 - elsif root_id != issue.root_id - (root_id || 0) <=> (issue.root_id || 0) - else - (lft || 0) <=> (issue.lft || 0) - end - end - - def to_s - "#{tracker} ##{id}: #{subject}" - end - - # Returns a string of css classes that apply to the issue - def css_classes(user=User.current) - s = +"issue tracker-#{tracker_id} status-#{status_id} #{priority.try(:css_classes)}" - s << ' closed' if closed? - s << ' overdue' if overdue? - s << ' child' if child? - s << ' parent' unless leaf? - s << ' private' if is_private? - if user.logged? - s << ' created-by-me' if author_id == user.id - s << ' assigned-to-me' if assigned_to_id == user.id - s << ' assigned-to-my-group' if user.groups.any? {|g| g.id == assigned_to_id} - end - s - end - - # Unassigns issues from +version+ if it's no longer shared with issue's project - def self.update_versions_from_sharing_change(version) - # Update issues assigned to the version - update_versions(["#{Issue.table_name}.fixed_version_id = ?", version.id]) - end - - # Unassigns issues from versions that are no longer shared - # after +project+ was moved - def self.update_versions_from_hierarchy_change(project) - moved_project_ids = project.self_and_descendants.reload.pluck(:id) - # Update issues of the moved projects and issues assigned to a version of a moved project - Issue.update_versions( - ["#{Version.table_name}.project_id IN (?) OR #{Issue.table_name}.project_id IN (?)", - moved_project_ids, moved_project_ids] - ) - end - - def parent_issue_id=(arg) - s = arg.to_s.strip.presence - if s && (m = s.match(%r{\A#?(\d+)\z})) && (@parent_issue = Issue.find_by_id(m[1])) - @invalid_parent_issue_id = nil - elsif s.blank? - @parent_issue = nil - @invalid_parent_issue_id = nil - else - @parent_issue = nil - @invalid_parent_issue_id = arg - end - end - - def parent_issue_id - if @invalid_parent_issue_id - @invalid_parent_issue_id - elsif instance_variable_defined? :@parent_issue - @parent_issue.nil? ? nil : @parent_issue.id - else - parent_id - end - end - - def set_parent_id - self.parent_id = parent_issue_id - end - - # Returns true if issue's project is a valid - # parent issue project - def valid_parent_project?(issue=parent) - return true if issue.nil? || issue.project_id == project_id - - case Setting.cross_project_subtasks - when 'system' - true - when 'tree' - issue.project.root == project.root - when 'hierarchy' - issue.project.is_or_is_ancestor_of?(project) || issue.project.is_descendant_of?(project) - when 'descendants' - issue.project.is_or_is_ancestor_of?(project) - else - false - end - end - - # Returns an issue scope based on project and scope - def self.cross_project_scope(project, scope=nil) - if project.nil? - return Issue - end - case scope - when 'all', 'system' - Issue - when 'tree' - Issue.joins(:project).where("(#{Project.table_name}.lft >= :lft AND #{Project.table_name}.rgt <= :rgt)", - :lft => project.root.lft, :rgt => project.root.rgt) - when 'hierarchy' - Issue.joins(:project).where("(#{Project.table_name}.lft >= :lft AND #{Project.table_name}.rgt <= :rgt) OR (#{Project.table_name}.lft < :lft AND #{Project.table_name}.rgt > :rgt)", - :lft => project.lft, :rgt => project.rgt) - when 'descendants' - Issue.joins(:project).where("(#{Project.table_name}.lft >= :lft AND #{Project.table_name}.rgt <= :rgt)", - :lft => project.lft, :rgt => project.rgt) - else - Issue.where(:project_id => project.id) - end - end - - def self.by_tracker(project, with_subprojects=false) - count_and_group_by(:project => project, :association => :tracker, :with_subprojects => with_subprojects) - end - - def self.by_version(project, with_subprojects=false) - count_and_group_by(:project => project, :association => :fixed_version, :with_subprojects => with_subprojects) - end - - def self.by_priority(project, with_subprojects=false) - count_and_group_by(:project => project, :association => :priority, :with_subprojects => with_subprojects) - end - - def self.by_category(project, with_subprojects=false) - count_and_group_by(:project => project, :association => :category, :with_subprojects => with_subprojects) - end - - def self.by_assigned_to(project, with_subprojects=false) - count_and_group_by(:project => project, :association => :assigned_to, :with_subprojects => with_subprojects) - end - - def self.by_author(project, with_subprojects=false) - count_and_group_by(:project => project, :association => :author, :with_subprojects => with_subprojects) - end - - def self.by_subproject(project) - r = count_and_group_by(:project => project, :with_subprojects => true, :association => :project) - r.reject {|r| r["project_id"] == project.id.to_s} - end - - # Query generator for selecting groups of issue counts for a project - # based on specific criteria - # - # Options - # * project - Project to search in. - # * with_subprojects - Includes subprojects issues if set to true. - # * association - Symbol. Association for grouping. - def self.count_and_group_by(options) - assoc = reflect_on_association(options[:association]) - select_field = assoc.foreign_key - - Issue. - visible(User.current, :project => options[:project], :with_subprojects => options[:with_subprojects]). - joins(:status, assoc.name). - group(:status_id, :is_closed, select_field). - count. - map do |columns, total| - status_id, is_closed, field_value = columns - is_closed = ['t', 'true', '1'].include?(is_closed.to_s) - { - "status_id" => status_id.to_s, - "closed" => is_closed, - select_field => field_value.to_s, - "total" => total.to_s - } - end - end - - # Returns a scope of projects that user can assign the issue to - def allowed_target_projects(user=User.current, context=nil) - if new_record? && context.is_a?(Project) && !copy? - current_project = context.self_and_descendants - elsif new_record? - current_project = nil - else - current_project = project - end - - self.class.allowed_target_projects(user, current_project) - end - - # Returns a scope of projects that user can assign issues to - # If current_project is given, it will be included in the scope - def self.allowed_target_projects(user=User.current, current_project=nil) - condition = Project.allowed_to_condition(user, :add_issues) - if current_project.is_a?(Project) - condition = ["(#{condition}) OR #{Project.table_name}.id = ?", current_project.id] - elsif current_project - condition = ["(#{condition}) AND #{Project.table_name}.id IN (?)", current_project.map(&:id)] - end - Project.where(condition).having_trackers - end - - # Returns a scope of trackers that user can assign the issue to - def allowed_target_trackers(user=User.current) - self.class.allowed_target_trackers(project, user, tracker_id_was) - end - - # Returns a scope of trackers that user can assign project issues to - def self.allowed_target_trackers(project, user=User.current, current_tracker=nil) - if project - scope = project.trackers.sorted - unless user.admin? - roles = user.roles_for_project(project).select {|r| r.has_permission?(:add_issues)} - unless roles.any? {|r| r.permissions_all_trackers?(:add_issues)} - tracker_ids = roles.map {|r| r.permissions_tracker_ids(:add_issues)}.flatten.uniq - if current_tracker - tracker_ids << current_tracker - end - scope = scope.where(:id => tracker_ids) - end - end - scope - else - Tracker.none - end - end - - private - - def user_tracker_permission?(user, permission) - if project && !project.active? - perm = Redmine::AccessControl.permission(permission) - return false unless perm && perm.read? - end - - if user.admin? - true - else - roles = user.roles_for_project(project).select {|r| r.has_permission?(permission)} - roles.any? {|r| r.permissions_all_trackers?(permission) || r.permissions_tracker_ids?(permission, tracker_id)} - end - end - - def after_project_change - # Update project_id on related time entries - TimeEntry.where({:issue_id => id}).update_all(["project_id = ?", project_id]) - - # Delete issue relations - unless Setting.cross_project_issue_relations? - relations_from.clear - relations_to.clear - end - - # Move subtasks that were in the same project - children.each do |child| - next unless child.project_id == project_id_before_last_save - # Change project and keep project - child.send :project=, project, true - unless child.save - errors.add :base, l(:error_move_of_child_not_possible, :child => "##{child.id}", :errors => child.errors.full_messages.join(", ")) - raise ActiveRecord::Rollback - end - end - end - - # Callback for after the creation of an issue by copy - # * adds a "copied to" relation with the copied issue - # * copies subtasks from the copied issue - def after_create_from_copy - return unless copy? && !@after_create_from_copy_handled - - if (@copied_from.project_id == project_id || Setting.cross_project_issue_relations?) && @copy_options[:link] != false - if @current_journal - @copied_from.init_journal(@current_journal.user) - end - relation = IssueRelation.new(:issue_from => @copied_from, :issue_to => self, :relation_type => IssueRelation::TYPE_COPIED_TO) - unless relation.save - logger.error "Could not create relation while copying ##{@copied_from.id} to ##{id} due to validation errors: #{relation.errors.full_messages.join(', ')}" if logger - end - end - - unless @copied_from.leaf? || @copy_options[:subtasks] == false - copy_options = (@copy_options || {}).merge(:subtasks => false) - copied_issue_ids = {@copied_from.id => self.id} - @copied_from.reload.descendants.reorder("#{Issue.table_name}.lft").each do |child| - # Do not copy self when copying an issue as a descendant of the copied issue - next if child == self - # Do not copy subtasks of issues that were not copied - next unless copied_issue_ids[child.parent_id] - # Do not copy subtasks that are not visible to avoid potential disclosure of private data - unless child.visible? - logger.error "Subtask ##{child.id} was not copied during ##{@copied_from.id} copy because it is not visible to the current user" if logger - next - end - copy = Issue.new.copy_from(child, copy_options) - if @current_journal - copy.init_journal(@current_journal.user) - end - copy.author = author - copy.project = project - copy.parent_issue_id = copied_issue_ids[child.parent_id] - copy.fixed_version_id = nil unless child.fixed_version.present? && child.fixed_version.status == 'open' - copy.assigned_to = nil unless child.assigned_to_id.present? && child.assigned_to.status == User::STATUS_ACTIVE - unless copy.save - logger.error "Could not copy subtask ##{child.id} while copying ##{@copied_from.id} to ##{id} due to validation errors: #{copy.errors.full_messages.join(', ')}" if logger - next - end - copied_issue_ids[child.id] = copy.id - end - end - @after_create_from_copy_handled = true - end - - def update_nested_set_attributes - if saved_change_to_parent_id? - update_nested_set_attributes_on_parent_change - end - remove_instance_variable(:@parent_issue) if instance_variable_defined?(:@parent_issue) - end - - # Updates the nested set for when an existing issue is moved - def update_nested_set_attributes_on_parent_change - former_parent_id = parent_id_before_last_save - # delete invalid relations of all descendants - self_and_descendants.each do |issue| - issue.relations.each do |relation| - relation.destroy unless relation.valid? - end - end - # update former parent - recalculate_attributes_for(former_parent_id) if former_parent_id - end - - def update_parent_attributes - if parent_id - recalculate_attributes_for(parent_id) - association(:parent).reset - end - end - - def recalculate_attributes_for(issue_id) - if issue_id && p = Issue.find_by_id(issue_id) - if p.priority_derived? - # priority = highest priority of open children - # priority is left unchanged if all children are closed and there's no default priority defined - if priority_position = p.children.open.joins(:priority).maximum("#{IssuePriority.table_name}.position") - p.priority = IssuePriority.find_by_position(priority_position) - elsif default_priority = IssuePriority.default - p.priority = default_priority - end - end - - if p.dates_derived? - # start/due dates = lowest/highest dates of children - p.start_date = p.children.minimum(:start_date) - p.due_date = p.children.maximum(:due_date) - if p.start_date && p.due_date && p.due_date < p.start_date - p.start_date, p.due_date = p.due_date, p.start_date - end - end - - if p.done_ratio_derived? - # done ratio = average ratio of children weighted with their total estimated hours - unless Issue.use_status_for_done_ratio? && p.status && p.status.default_done_ratio - children = p.children.to_a - if children.any? - child_with_total_estimated_hours = children.select {|c| c.total_estimated_hours.to_f > 0.0} - if child_with_total_estimated_hours.any? - average = child_with_total_estimated_hours.map(&:total_estimated_hours).sum.to_d / child_with_total_estimated_hours.count - else - average = 1.0.to_d - end - done = children.map {|c| - estimated = (c.total_estimated_hours || 0.0).to_d - estimated = average unless estimated > 0.0 - ratio = c.closed? ? 100 : (c.done_ratio || 0) - estimated * ratio - }.sum - progress = done / (average * children.count) - p.done_ratio = progress.floor - end - end - end - - # ancestors will be recursively updated - p.save(:validate => false) - end - end - - # Singleton class method is public - class << self - # Update issues so their versions are not pointing to a - # fixed_version that is not shared with the issue's project - def update_versions(conditions=nil) - # Only need to update issues with a fixed_version from - # a different project and that is not systemwide shared - Issue.joins(:project, :fixed_version). - where("#{Issue.table_name}.fixed_version_id IS NOT NULL" + - " AND #{Issue.table_name}.project_id <> #{::Version.table_name}.project_id" + - " AND #{::Version.table_name}.sharing <> 'system'"). - where(conditions).each do |issue| - next if issue.project.nil? || issue.fixed_version.nil? - unless issue.project.shared_versions.include?(issue.fixed_version) - issue.init_journal(User.current) - issue.fixed_version = nil - issue.save - end - end - end - end - - def delete_selected_attachments - if deleted_attachment_ids.present? - objects = attachments.where(:id => deleted_attachment_ids.map(&:to_i)) - attachments.delete(objects) - end - end - - # Callback on file attachment - def attachment_added(attachment) - if current_journal && !attachment.new_record? && !copy? - current_journal.journalize_attachment(attachment, :added) - end - end - - # Callback on attachment deletion - def attachment_removed(attachment) - if current_journal && !attachment.new_record? - current_journal.journalize_attachment(attachment, :removed) - current_journal.save - end - end - - # Called after a relation is added - def relation_added(relation) - if current_journal - current_journal.journalize_relation(relation, :added) - current_journal.save - end - end - - # Called after a relation is removed - def relation_removed(relation) - if current_journal - current_journal.journalize_relation(relation, :removed) - current_journal.save - end - end - - # Default assignment based on project or category - def default_assign - if assigned_to.nil? - if category && category.assigned_to - self.assigned_to = category.assigned_to - elsif project && project.default_assigned_to - self.assigned_to = project.default_assigned_to - end - end - end - - # Updates start/due dates of following issues - def reschedule_following_issues - if saved_change_to_start_date? || saved_change_to_due_date? - relations_from.each do |relation| - relation.set_issue_to_dates(@current_journal) - end - end - end - - # Closes duplicates if the issue is being closed - def close_duplicates - if Setting.close_duplicate_issues? && closing? - duplicates.each do |duplicate| - # Reload is needed in case the duplicate was updated by a previous duplicate - duplicate.reload - # Don't re-close it if it's already closed - next if duplicate.closed? - # Same user and notes - if @current_journal - duplicate.init_journal(@current_journal.user, @current_journal.notes) - duplicate.private_notes = @current_journal.private_notes - end - duplicate.update_attribute :status, self.status - end - end - end - - # Make sure updated_on is updated when adding a note and set updated_on now - # so we can set closed_on with the same value on closing - def force_updated_on_change - if @current_journal || changed? - self.updated_on = current_time_from_proper_timezone - if new_record? - self.created_on = updated_on - end - end - end - - # Callback for setting closed_on when the issue is closed. - # The closed_on attribute stores the time of the last closing - # and is preserved when the issue is reopened. - def update_closed_on - if closing? - self.closed_on = updated_on - end - end - - # Saves the changes in a Journal - # Called after_save - def create_journal - if current_journal - current_journal.save - end - end - - def send_notification - if notify? && Setting.notified_events.include?('issue_added') - Mailer.deliver_issue_add(self) - end - end - - def clear_disabled_fields - if tracker - tracker.disabled_core_fields.each do |attribute| - send "#{attribute}=", nil - end - self.done_ratio ||= 0 - end - end -end diff --git a/app/models/issue_category.rb b/app/models/issue_category.rb deleted file mode 100644 index c6ac0ae..0000000 --- a/app/models/issue_category.rb +++ /dev/null @@ -1,50 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class IssueCategory < ActiveRecord::Base - include Redmine::SafeAttributes - belongs_to :project - belongs_to :assigned_to, :class_name => 'Principal' - has_many :issues, :foreign_key => 'category_id', :dependent => :nullify - - validates_presence_of :name - validates_uniqueness_of :name, :scope => [:project_id] - validates_length_of :name, :maximum => 60 - - safe_attributes 'name', 'assigned_to_id' - - scope :named, lambda {|arg| where("LOWER(#{table_name}.name) = LOWER(?)", arg.to_s.strip)} - - alias :destroy_without_reassign :destroy - - # Destroy the category - # If a category is specified, issues are reassigned to this category - def destroy(reassign_to = nil) - if reassign_to && reassign_to.is_a?(IssueCategory) && reassign_to.project == self.project - Issue.where({:category_id => id}).update_all({:category_id => reassign_to.id}) - end - destroy_without_reassign - end - - def <=>(category) - name <=> category.name - end - - def to_s; name end -end diff --git a/app/models/issue_custom_field.rb b/app/models/issue_custom_field.rb deleted file mode 100644 index 26ed2b2..0000000 --- a/app/models/issue_custom_field.rb +++ /dev/null @@ -1,49 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class IssueCustomField < CustomField - has_and_belongs_to_many :projects, :join_table => "#{table_name_prefix}custom_fields_projects#{table_name_suffix}", :foreign_key => "custom_field_id", :autosave => true - has_and_belongs_to_many :trackers, :join_table => "#{table_name_prefix}custom_fields_trackers#{table_name_suffix}", :foreign_key => "custom_field_id", :autosave => true - - safe_attributes 'project_ids', - 'tracker_ids' - - def type_name - :label_issue_plural - end - - def visible_by?(project, user=User.current) - super || (roles & user.roles_for_project(project)).present? - end - - def visibility_by_project_condition(project_key=nil, user=User.current, id_column=nil) - sql = super - id_column ||= id - tracker_condition = "#{Issue.table_name}.tracker_id IN (SELECT tracker_id FROM #{table_name_prefix}custom_fields_trackers#{table_name_suffix} WHERE custom_field_id = #{id_column})" - project_condition = "EXISTS (SELECT 1 FROM #{CustomField.table_name} ifa WHERE ifa.is_for_all = #{self.class.connection.quoted_true} AND ifa.id = #{id_column})" + - " OR #{Issue.table_name}.project_id IN (SELECT project_id FROM #{table_name_prefix}custom_fields_projects#{table_name_suffix} WHERE custom_field_id = #{id_column})" - - "((#{sql}) AND (#{tracker_condition}) AND (#{project_condition}))" - end - - def validate_custom_field - super - errors.add(:base, l(:label_role_plural) + ' ' + l('activerecord.errors.messages.blank')) unless visible? || roles.present? - end -end diff --git a/app/models/issue_import.rb b/app/models/issue_import.rb deleted file mode 100644 index 206c0bf..0000000 --- a/app/models/issue_import.rb +++ /dev/null @@ -1,228 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class IssueImport < Import - def self.menu_item - :issues - end - - def self.authorized?(user) - user.allowed_to?(:import_issues, nil, :global => true) - end - - # Returns the objects that were imported - def saved_objects - object_ids = saved_items.pluck(:obj_id) - objects = Issue.where(:id => object_ids).order(:id).preload(:tracker, :priority, :status) - end - - # Returns a scope of projects that user is allowed to - # import issue to - def allowed_target_projects - Project.allowed_to(user, :import_issues) - end - - def project - project_id = mapping['project_id'].to_i - allowed_target_projects.find_by_id(project_id) || allowed_target_projects.first - end - - # Returns a scope of trackers that user is allowed to - # import issue to - def allowed_target_trackers - Issue.allowed_target_trackers(project, user) - end - - def tracker - if mapping['tracker'].to_s =~ /\Avalue:(\d+)\z/ - tracker_id = $1.to_i - allowed_target_trackers.find_by_id(tracker_id) - end - end - - # Returns true if missing categories should be created during the import - def create_categories? - user.allowed_to?(:manage_categories, project) && - mapping['create_categories'] == '1' - end - - # Returns true if missing versions should be created during the import - def create_versions? - user.allowed_to?(:manage_versions, project) && - mapping['create_versions'] == '1' - end - - def mappable_custom_fields - if tracker - issue = Issue.new - issue.project = project - issue.tracker = tracker - issue.editable_custom_field_values(user).map(&:custom_field) - elsif project - project.all_issue_custom_fields - else - [] - end - end - - private - - def build_object(row, item) - issue = Issue.new - issue.author = user - issue.notify = !!ActiveRecord::Type::Boolean.new.cast(settings['notifications']) - - tracker_id = nil - if tracker - tracker_id = tracker.id - elsif tracker_name = row_value(row, 'tracker') - tracker_id = allowed_target_trackers.named(tracker_name).first.try(:id) - end - - attributes = { - 'project_id' => mapping['project_id'], - 'tracker_id' => tracker_id, - 'subject' => row_value(row, 'subject'), - 'description' => row_value(row, 'description') - } - if status_name = row_value(row, 'status') - if status_id = IssueStatus.named(status_name).first.try(:id) - attributes['status_id'] = status_id - end - end - issue.send :safe_attributes=, attributes, user - - attributes = {} - if priority_name = row_value(row, 'priority') - if priority_id = IssuePriority.active.named(priority_name).first.try(:id) - attributes['priority_id'] = priority_id - end - end - if issue.project && category_name = row_value(row, 'category') - if category = issue.project.issue_categories.named(category_name).first - attributes['category_id'] = category.id - elsif create_categories? - category = issue.project.issue_categories.build - category.name = category_name - if category.save - attributes['category_id'] = category.id - end - end - end - if assignee_name = row_value(row, 'assigned_to') - if assignee = Principal.detect_by_keyword(issue.assignable_users, assignee_name) - attributes['assigned_to_id'] = assignee.id - end - end - if issue.project && version_name = row_value(row, 'fixed_version') - version = - issue.project.versions.named(version_name).first || - issue.project.shared_versions.named(version_name).first - if version - attributes['fixed_version_id'] = version.id - elsif create_versions? - version = issue.project.versions.build - version.name = version_name - if version.save - attributes['fixed_version_id'] = version.id - end - end - end - if is_private = row_value(row, 'is_private') - if yes?(is_private) - attributes['is_private'] = '1' - end - end - if parent_issue_id = row_value(row, 'parent_issue_id') - if parent_issue_id.start_with? '#' - # refers to existing issue - attributes['parent_issue_id'] = parent_issue_id[1..-1] - elsif use_unique_id? - # refers to other row with unique id - issue_id = items.where(:unique_id => parent_issue_id).first.try(:obj_id) - - if issue_id - attributes['parent_issue_id'] = issue_id - else - add_callback(parent_issue_id, 'set_as_parent', item.position) - end - elsif parent_issue_id =~ /\A\d+\z/ - # refers to other row by position - parent_issue_id = parent_issue_id.to_i - - if parent_issue_id > item.position - add_callback(parent_issue_id, 'set_as_parent', item.position) - elsif issue_id = items.where(:position => parent_issue_id).first.try(:obj_id) - attributes['parent_issue_id'] = issue_id - end - - else - # Something is odd. Assign parent_issue_id to trigger validation error - attributes['parent_issue_id'] = parent_issue_id - end - end - if start_date = row_date(row, 'start_date') - attributes['start_date'] = start_date - end - if due_date = row_date(row, 'due_date') - attributes['due_date'] = due_date - end - if estimated_hours = row_value(row, 'estimated_hours') - attributes['estimated_hours'] = estimated_hours - end - if done_ratio = row_value(row, 'done_ratio') - attributes['done_ratio'] = done_ratio - end - - attributes['custom_field_values'] = issue.custom_field_values.inject({}) do |h, v| - value = - case v.custom_field.field_format - when 'date' - row_date(row, "cf_#{v.custom_field.id}") - else - row_value(row, "cf_#{v.custom_field.id}") - end - if value - h[v.custom_field.id.to_s] = v.custom_field.value_from_keyword(value, issue) - end - h - end - - issue.send :safe_attributes=, attributes, user - - if issue.tracker_id != tracker_id - issue.tracker_id = nil - end - - issue - end - - # Callback that sets issue as the parent of a previously imported issue - def set_as_parent_callback(issue, child_position) - child_id = items.where(:position => child_position).first.try(:obj_id) - return unless child_id - - child = Issue.find_by_id(child_id) - return unless child - - child.parent_issue_id = issue.id - child.save! - issue.reload - end -end diff --git a/app/models/issue_priority.rb b/app/models/issue_priority.rb deleted file mode 100644 index 1067542..0000000 --- a/app/models/issue_priority.rb +++ /dev/null @@ -1,71 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class IssuePriority < Enumeration - has_many :issues, :foreign_key => 'priority_id' - - after_destroy {|priority| priority.class.compute_position_names} - after_save {|priority| priority.class.compute_position_names if (priority.saved_change_to_position? && priority.position) || priority.saved_change_to_active? || priority.saved_change_to_is_default?} - - OptionName = :enumeration_issue_priorities - - def option_name - OptionName - end - - def objects_count - issues.count - end - - def transfer_relations(to) - issues.update_all(:priority_id => to.id) - end - - def css_classes - "priority-#{id} priority-#{position_name}" - end - - # Clears position_name for all priorities - # Called from migration 20121026003537_populate_enumerations_position_name - def self.clear_position_names - update_all :position_name => nil - end - - # Updates position_name for active priorities - # Called from migration 20121026003537_populate_enumerations_position_name - def self.compute_position_names - priorities = where(:active => true).sort_by(&:position) - if priorities.any? - default = priorities.detect(&:is_default?) || priorities[(priorities.size - 1) / 2] - priorities.each_with_index do |priority, index| - name = - case - when priority.position == default.position - "default" - when priority.position < default.position - index == 0 ? "lowest" : "low#{index+1}" - else - index == (priorities.size - 1) ? "highest" : "high#{priorities.size - index}" - end - - where(:id => priority.id).update_all({:position_name => name}) - end - end - end -end diff --git a/app/models/issue_priority_custom_field.rb b/app/models/issue_priority_custom_field.rb deleted file mode 100644 index 41b4795..0000000 --- a/app/models/issue_priority_custom_field.rb +++ /dev/null @@ -1,24 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class IssuePriorityCustomField < CustomField - def type_name - :enumeration_issue_priorities - end -end diff --git a/app/models/issue_query.rb b/app/models/issue_query.rb deleted file mode 100644 index d334b23..0000000 --- a/app/models/issue_query.rb +++ /dev/null @@ -1,705 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class IssueQuery < Query - - self.queried_class = Issue - self.view_permission = :view_issues - - self.available_columns = [ - QueryColumn.new(:id, :sortable => "#{Issue.table_name}.id", :default_order => 'desc', :caption => '#', :frozen => true), - QueryColumn.new(:project, :sortable => "#{Project.table_name}.name", :groupable => true), - QueryColumn.new(:tracker, :sortable => "#{Tracker.table_name}.position", :groupable => true), - QueryColumn.new(:parent, :sortable => ["#{Issue.table_name}.root_id", "#{Issue.table_name}.lft ASC"], :default_order => 'desc', :caption => :field_parent_issue), - QueryAssociationColumn.new(:parent, :subject, :caption => :field_parent_issue_subject), - QueryColumn.new(:status, :sortable => "#{IssueStatus.table_name}.position", :groupable => true), - QueryColumn.new(:priority, :sortable => "#{IssuePriority.table_name}.position", :default_order => 'desc', :groupable => true), - QueryColumn.new(:subject, :sortable => "#{Issue.table_name}.subject"), - QueryColumn.new(:author, :sortable => lambda {User.fields_for_order_statement("authors")}, :groupable => true), - QueryColumn.new(:assigned_to, :sortable => lambda {User.fields_for_order_statement}, :groupable => true), - TimestampQueryColumn.new(:updated_on, :sortable => "#{Issue.table_name}.updated_on", :default_order => 'desc', :groupable => true), - QueryColumn.new(:category, :sortable => "#{IssueCategory.table_name}.name", :groupable => true), - QueryColumn.new(:fixed_version, :sortable => lambda {Version.fields_for_order_statement}, :groupable => true), - QueryColumn.new(:start_date, :sortable => "#{Issue.table_name}.start_date", :groupable => true), - QueryColumn.new(:due_date, :sortable => "#{Issue.table_name}.due_date", :groupable => true), - QueryColumn.new(:estimated_hours, :sortable => "#{Issue.table_name}.estimated_hours", :totalable => true), - QueryColumn.new( - :total_estimated_hours, - :sortable => -> { - "COALESCE((SELECT SUM(estimated_hours) FROM #{Issue.table_name} subtasks" + - " WHERE #{Issue.visible_condition(User.current).gsub(/\bissues\b/, 'subtasks')} AND subtasks.root_id = #{Issue.table_name}.root_id AND subtasks.lft >= #{Issue.table_name}.lft AND subtasks.rgt <= #{Issue.table_name}.rgt), 0)" - }, - :default_order => 'desc'), - QueryColumn.new(:done_ratio, :sortable => "#{Issue.table_name}.done_ratio", :groupable => true), - TimestampQueryColumn.new(:created_on, :sortable => "#{Issue.table_name}.created_on", :default_order => 'desc', :groupable => true), - TimestampQueryColumn.new(:closed_on, :sortable => "#{Issue.table_name}.closed_on", :default_order => 'desc', :groupable => true), - QueryColumn.new(:last_updated_by, :sortable => lambda {User.fields_for_order_statement("last_journal_user")}), - QueryColumn.new(:relations, :caption => :label_related_issues), - QueryColumn.new(:attachments, :caption => :label_attachment_plural), - QueryColumn.new(:description, :inline => false), - QueryColumn.new(:last_notes, :caption => :label_last_notes, :inline => false) - ] - - def initialize(attributes=nil, *args) - super attributes - self.filters ||= { 'status_id' => {:operator => "o", :values => [""]} } - end - - def draw_relations - r = options[:draw_relations] - r.nil? || r == '1' - end - - def draw_relations=(arg) - options[:draw_relations] = (arg == '0' ? '0' : nil) - end - - def draw_progress_line - r = options[:draw_progress_line] - r == '1' - end - - def draw_progress_line=(arg) - options[:draw_progress_line] = (arg == '1' ? '1' : nil) - end - - def draw_selected_columns - r = options[:draw_selected_columns] - r == '1' - end - - def draw_selected_columns=(arg) - options[:draw_selected_columns] = (arg == '1' ? '1' : nil) - end - - def build_from_params(params, defaults={}) - super - self.draw_relations = params[:draw_relations] || (params[:query] && params[:query][:draw_relations]) || options[:draw_relations] - self.draw_progress_line = params[:draw_progress_line] || (params[:query] && params[:query][:draw_progress_line]) || options[:draw_progress_line] - self.draw_selected_columns = params[:draw_selected_columns] || (params[:query] && params[:query][:draw_selected_columns]) || options[:draw_progress_line] - self - end - - def initialize_available_filters - add_available_filter( - "status_id", - :type => :list_status, :values => lambda { issue_statuses_values } - ) - add_available_filter( - "project_id", - :type => :list, :values => lambda { project_values } - ) if project.nil? - add_available_filter( - "tracker_id", - :type => :list, :values => trackers.collect{|s| [s.name, s.id.to_s] } - ) - add_available_filter( - "priority_id", - :type => :list, :values => IssuePriority.all.collect{|s| [s.name, s.id.to_s] } - ) - add_available_filter( - "author_id", - :type => :list, :values => lambda { author_values } - ) - add_available_filter( - "assigned_to_id", - :type => :list_optional, :values => lambda { assigned_to_values } - ) - add_available_filter( - "member_of_group", - :type => :list_optional, :values => lambda { Group.givable.visible.collect {|g| [g.name, g.id.to_s] } } - ) - add_available_filter( - "assigned_to_role", - :type => :list_optional, :values => lambda { Role.givable.collect {|r| [r.name, r.id.to_s] } } - ) - add_available_filter( - "fixed_version_id", - :type => :list_optional, :values => lambda { fixed_version_values } - ) - add_available_filter( - "fixed_version.due_date", - :type => :date, - :name => l(:label_attribute_of_fixed_version, :name => l(:field_effective_date)) - ) - add_available_filter( - "fixed_version.status", - :type => :list, - :name => l(:label_attribute_of_fixed_version, :name => l(:field_status)), - :values => Version::VERSION_STATUSES.map{|s| [l("version_status_#{s}"), s] } - ) - add_available_filter( - "category_id", - :type => :list_optional, - :values => lambda { project.issue_categories.collect{|s| [s.name, s.id.to_s] } } - ) if project - add_available_filter "subject", :type => :text - add_available_filter "description", :type => :text - add_available_filter "created_on", :type => :date_past - add_available_filter "updated_on", :type => :date_past - add_available_filter "closed_on", :type => :date_past - add_available_filter "start_date", :type => :date - add_available_filter "due_date", :type => :date - add_available_filter "estimated_hours", :type => :float - - if User.current.allowed_to?(:view_time_entries, project, :global => true) - add_available_filter "spent_time", :type => :float, :label => :label_spent_time - end - - add_available_filter "done_ratio", :type => :integer - - if User.current.allowed_to?(:set_issues_private, nil, :global => true) || - User.current.allowed_to?(:set_own_issues_private, nil, :global => true) - add_available_filter( - "is_private", - :type => :list, - :values => [[l(:general_text_yes), "1"], [l(:general_text_no), "0"]] - ) - end - add_available_filter( - "attachment", - :type => :text, :name => l(:label_attachment) - ) - if User.current.logged? - add_available_filter( - "watcher_id", - :type => :list, :values => lambda { watcher_values } - ) - end - add_available_filter( - "updated_by", - :type => :list, :values => lambda { author_values } - ) - add_available_filter( - "last_updated_by", - :type => :list, :values => lambda { author_values } - ) - if project && !project.leaf? - add_available_filter( - "subproject_id", - :type => :list_subprojects, - :values => lambda { subproject_values } - ) - end - - add_available_filter( - "project.status", - :type => :list, - :name => l(:label_attribute_of_project, :name => l(:field_status)), - :values => lambda { project_statuses_values } - ) if project.nil? || !project.leaf? - - add_custom_fields_filters(issue_custom_fields) - add_associations_custom_fields_filters :project, :author, :assigned_to, :fixed_version - - IssueRelation::TYPES.each do |relation_type, options| - add_available_filter relation_type, :type => :relation, :label => options[:name], :values => lambda {all_projects_values} - end - add_available_filter "parent_id", :type => :tree, :label => :field_parent_issue - add_available_filter "child_id", :type => :tree, :label => :label_subtask_plural - - add_available_filter "issue_id", :type => :integer, :label => :label_issue - - Tracker.disabled_core_fields(trackers).each {|field| - delete_available_filter field - } - end - - def available_columns - return @available_columns if @available_columns - @available_columns = self.class.available_columns.dup - @available_columns += issue_custom_fields.visible.collect {|cf| QueryCustomFieldColumn.new(cf) } - - if User.current.allowed_to?(:view_time_entries, project, :global => true) - # insert the columns after total_estimated_hours or at the end - index = @available_columns.find_index {|column| column.name == :total_estimated_hours} - index = (index ? index + 1 : -1) - - subselect = "SELECT SUM(hours) FROM #{TimeEntry.table_name}" + - " JOIN #{Project.table_name} ON #{Project.table_name}.id = #{TimeEntry.table_name}.project_id" + - " WHERE (#{TimeEntry.visible_condition(User.current)}) AND #{TimeEntry.table_name}.issue_id = #{Issue.table_name}.id" - - @available_columns.insert( - index, - QueryColumn.new(:spent_hours, - :sortable => "COALESCE((#{subselect}), 0)", - :default_order => 'desc', - :caption => :label_spent_time, - :totalable => true) - ) - - subselect = "SELECT SUM(hours) FROM #{TimeEntry.table_name}" + - " JOIN #{Project.table_name} ON #{Project.table_name}.id = #{TimeEntry.table_name}.project_id" + - " JOIN #{Issue.table_name} subtasks ON subtasks.id = #{TimeEntry.table_name}.issue_id" + - " WHERE (#{TimeEntry.visible_condition(User.current)})" + - " AND subtasks.root_id = #{Issue.table_name}.root_id AND subtasks.lft >= #{Issue.table_name}.lft AND subtasks.rgt <= #{Issue.table_name}.rgt" - - @available_columns.insert( - index + 1, - QueryColumn.new(:total_spent_hours, - :sortable => "COALESCE((#{subselect}), 0)", - :default_order => 'desc', - :caption => :label_total_spent_time) - ) - end - - if User.current.allowed_to?(:set_issues_private, nil, :global => true) || - User.current.allowed_to?(:set_own_issues_private, nil, :global => true) - @available_columns << QueryColumn.new(:is_private, :sortable => "#{Issue.table_name}.is_private", :groupable => true) - end - - disabled_fields = Tracker.disabled_core_fields(trackers).map {|field| field.sub(/_id$/, '')} - disabled_fields << "total_estimated_hours" if disabled_fields.include?("estimated_hours") - @available_columns.reject! {|column| - disabled_fields.include?(column.name.to_s) - } - - @available_columns - end - - def default_columns_names - @default_columns_names ||= begin - default_columns = Setting.issue_list_default_columns.map(&:to_sym) - - project.present? ? default_columns : [:project] | default_columns - end - end - - def default_totalable_names - Setting.issue_list_default_totals.map(&:to_sym) - end - - def default_sort_criteria - [['id', 'desc']] - end - - def base_scope - Issue.visible.joins(:status, :project).where(statement) - end - - # Returns the issue count - def issue_count - base_scope.count - rescue ::ActiveRecord::StatementInvalid => e - raise StatementInvalid.new(e.message) - end - - # Returns sum of all the issue's estimated_hours - def total_for_estimated_hours(scope) - map_total(scope.sum(:estimated_hours)) {|t| t.to_f.round(2)} - end - - # Returns sum of all the issue's time entries hours - def total_for_spent_hours(scope) - total = scope.joins(:time_entries). - where(TimeEntry.visible_condition(User.current)). - sum("#{TimeEntry.table_name}.hours") - - map_total(total) {|t| t.to_f.round(2)} - end - - # Returns the issues - # Valid options are :order, :offset, :limit, :include, :conditions - def issues(options={}) - order_option = [group_by_sort_order, (options[:order] || sort_clause)].flatten.reject(&:blank?) - # The default order of IssueQuery is issues.id DESC(by IssueQuery#default_sort_criteria) - unless ["#{Issue.table_name}.id ASC", "#{Issue.table_name}.id DESC"].any?{|i| order_option.include?(i)} - order_option << "#{Issue.table_name}.id DESC" - end - - scope = Issue.visible. - joins(:status, :project). - preload(:priority). - where(statement). - includes(([:status, :project] + (options[:include] || [])).uniq). - where(options[:conditions]). - order(order_option). - joins(joins_for_order_statement(order_option.join(','))). - limit(options[:limit]). - offset(options[:offset]) - - scope = scope.preload([:tracker, :author, :assigned_to, :fixed_version, :category, :attachments] & columns.map(&:name)) - if has_custom_field_column? - scope = scope.preload(:custom_values) - end - - issues = scope.to_a - - if has_column?(:spent_hours) - Issue.load_visible_spent_hours(issues) - end - if has_column?(:total_spent_hours) - Issue.load_visible_total_spent_hours(issues) - end - if has_column?(:last_updated_by) - Issue.load_visible_last_updated_by(issues) - end - if has_column?(:relations) - Issue.load_visible_relations(issues) - end - if has_column?(:last_notes) - Issue.load_visible_last_notes(issues) - end - issues - rescue ::ActiveRecord::StatementInvalid => e - raise StatementInvalid.new(e.message) - end - - # Returns the issues ids - def issue_ids(options={}) - order_option = [group_by_sort_order, (options[:order] || sort_clause)].flatten.reject(&:blank?) - # The default order of IssueQuery is issues.id DESC(by IssueQuery#default_sort_criteria) - unless ["#{Issue.table_name}.id ASC", "#{Issue.table_name}.id DESC"].any?{|i| order_option.include?(i)} - order_option << "#{Issue.table_name}.id DESC" - end - - Issue.visible. - joins(:status, :project). - where(statement). - includes(([:status, :project] + (options[:include] || [])).uniq). - references(([:status, :project] + (options[:include] || [])).uniq). - where(options[:conditions]). - order(order_option). - joins(joins_for_order_statement(order_option.join(','))). - limit(options[:limit]). - offset(options[:offset]). - pluck(:id) - rescue ::ActiveRecord::StatementInvalid => e - raise StatementInvalid.new(e.message) - end - - # Returns the journals - # Valid options are :order, :offset, :limit - def journals(options={}) - Journal.visible. - joins(:issue => [:project, :status]). - where(statement). - order(options[:order]). - limit(options[:limit]). - offset(options[:offset]). - preload(:details, :user, {:issue => [:project, :author, :tracker, :status]}). - to_a - rescue ::ActiveRecord::StatementInvalid => e - raise StatementInvalid.new(e.message) - end - - # Returns the versions - # Valid options are :conditions - def versions(options={}) - Version.visible. - where(project_statement). - where(options[:conditions]). - includes(:project). - references(:project). - to_a - rescue ::ActiveRecord::StatementInvalid => e - raise StatementInvalid.new(e.message) - end - - def sql_for_updated_by_field(field, operator, value) - neg = (operator == '!' ? 'NOT' : '') - subquery = "SELECT 1 FROM #{Journal.table_name}" + - " WHERE #{Journal.table_name}.journalized_type='Issue' AND #{Journal.table_name}.journalized_id=#{Issue.table_name}.id" + - " AND (#{sql_for_field field, '=', value, Journal.table_name, 'user_id'})" + - " AND (#{Journal.visible_notes_condition(User.current, :skip_pre_condition => true)})" - - "#{neg} EXISTS (#{subquery})" - end - - def sql_for_last_updated_by_field(field, operator, value) - neg = (operator == '!' ? 'NOT' : '') - subquery = "SELECT 1 FROM #{Journal.table_name} sj" + - " WHERE sj.journalized_type='Issue' AND sj.journalized_id=#{Issue.table_name}.id AND (#{sql_for_field field, '=', value, 'sj', 'user_id'})" + - " AND sj.id IN (SELECT MAX(#{Journal.table_name}.id) FROM #{Journal.table_name}" + - " WHERE #{Journal.table_name}.journalized_type='Issue' AND #{Journal.table_name}.journalized_id=#{Issue.table_name}.id" + - " AND (#{Journal.visible_notes_condition(User.current, :skip_pre_condition => true)}))" - - "#{neg} EXISTS (#{subquery})" - end - - def sql_for_spent_time_field(field, operator, value) - first, second = value.first.to_f, value.second.to_f - sql_op = - case operator - when "=", ">=", "<=" then "#{operator} #{first}" - when "><" then "BETWEEN #{first} AND #{second}" - when "*" then "> 0" - when "!*" then "= 0" - else - return nil - end - "COALESCE((" + - "SELECT ROUND(CAST(SUM(hours) AS DECIMAL(30,3)), 2) " + - "FROM #{TimeEntry.table_name} " + - "WHERE issue_id = #{Issue.table_name}.id), 0) #{sql_op}" - end - - def sql_for_watcher_id_field(field, operator, value) - db_table = Watcher.table_name - me, others = value.partition { |id| ['0', User.current.id.to_s].include?(id) } - sql = - if others.any? - "SELECT #{Issue.table_name}.id FROM #{Issue.table_name} " + - "INNER JOIN #{db_table} ON #{Issue.table_name}.id = #{db_table}.watchable_id AND #{db_table}.watchable_type = 'Issue' " + - "LEFT OUTER JOIN #{Project.table_name} ON #{Project.table_name}.id = #{Issue.table_name}.project_id " + - "WHERE (" + - sql_for_field(field, '=', me, db_table, 'user_id') + - ') OR (' + - Project.allowed_to_condition(User.current, :view_issue_watchers) + - ' AND ' + - sql_for_field(field, '=', others, db_table, 'user_id') + - ')' - else - "SELECT #{db_table}.watchable_id FROM #{db_table} " + - "WHERE #{db_table}.watchable_type='Issue' AND " + - sql_for_field(field, '=', me, db_table, 'user_id') - end - "#{Issue.table_name}.id #{ operator == '=' ? 'IN' : 'NOT IN' } (#{sql})" - end - - def sql_for_member_of_group_field(field, operator, value) - if operator == '*' # Any group - groups = Group.givable - operator = '=' # Override the operator since we want to find by assigned_to - elsif operator == "!*" - groups = Group.givable - operator = '!' # Override the operator since we want to find by assigned_to - else - groups = Group.where(:id => value).to_a - end - groups ||= [] - - members_of_groups = groups.inject([]) {|user_ids, group| - user_ids + group.user_ids + [group.id] - }.uniq.compact.sort.collect(&:to_s) - - '(' + sql_for_field("assigned_to_id", operator, members_of_groups, Issue.table_name, "assigned_to_id", false) + ')' - end - - def sql_for_assigned_to_role_field(field, operator, value) - case operator - when "*", "!*" # Member / Not member - sw = operator == "!*" ? 'NOT' : '' - nl = operator == "!*" ? "#{Issue.table_name}.assigned_to_id IS NULL OR" : '' - "(#{nl} #{Issue.table_name}.assigned_to_id #{sw} IN (SELECT DISTINCT #{Member.table_name}.user_id FROM #{Member.table_name}" + - " WHERE #{Member.table_name}.project_id = #{Issue.table_name}.project_id))" - when "=", "!" - role_cond = value.any? ? - "#{MemberRole.table_name}.role_id IN (" + value.collect{|val| "'#{self.class.connection.quote_string(val)}'"}.join(",") + ")" : - "1=0" - - sw = operator == "!" ? 'NOT' : '' - nl = operator == "!" ? "#{Issue.table_name}.assigned_to_id IS NULL OR" : '' - "(#{nl} #{Issue.table_name}.assigned_to_id #{sw} IN (SELECT DISTINCT #{Member.table_name}.user_id FROM #{Member.table_name}, #{MemberRole.table_name}" + - " WHERE #{Member.table_name}.project_id = #{Issue.table_name}.project_id AND #{Member.table_name}.id = #{MemberRole.table_name}.member_id AND #{role_cond}))" - end - end - - def sql_for_fixed_version_status_field(field, operator, value) - where = sql_for_field(field, operator, value, Version.table_name, "status") - version_id_scope = project ? project.shared_versions : Version.visible - version_ids = version_id_scope.where(where).pluck(:id) - - nl = operator == "!" ? "#{Issue.table_name}.fixed_version_id IS NULL OR" : '' - "(#{nl} #{sql_for_field("fixed_version_id", "=", version_ids, Issue.table_name, "fixed_version_id")})" - end - - def sql_for_fixed_version_due_date_field(field, operator, value) - where = sql_for_field(field, operator, value, Version.table_name, "effective_date") - version_id_scope = project ? project.shared_versions : Version.visible - version_ids = version_id_scope.where(where).pluck(:id) - - nl = operator == "!*" ? "#{Issue.table_name}.fixed_version_id IS NULL OR" : '' - "(#{nl} #{sql_for_field("fixed_version_id", "=", version_ids, Issue.table_name, "fixed_version_id")})" - end - - def sql_for_is_private_field(field, operator, value) - op = (operator == "=" ? 'IN' : 'NOT IN') - va = value.map {|v| v == '0' ? self.class.connection.quoted_false : self.class.connection.quoted_true}.uniq.join(',') - - "#{Issue.table_name}.is_private #{op} (#{va})" - end - - def sql_for_attachment_field(field, operator, value) - case operator - when "*", "!*" - e = (operator == "*" ? "EXISTS" : "NOT EXISTS") - "#{e} (SELECT 1 FROM #{Attachment.table_name} a WHERE a.container_type = 'Issue' AND a.container_id = #{Issue.table_name}.id)" - when "~", "!~" - c = sql_contains("a.filename", value.first) - e = (operator == "~" ? "EXISTS" : "NOT EXISTS") - "#{e} (SELECT 1 FROM #{Attachment.table_name} a WHERE a.container_type = 'Issue' AND a.container_id = #{Issue.table_name}.id AND #{c})" - when "^", "$" - c = sql_contains("a.filename", value.first, (operator == "^" ? :starts_with : :ends_with) => true) - "EXISTS (SELECT 1 FROM #{Attachment.table_name} a WHERE a.container_type = 'Issue' AND a.container_id = #{Issue.table_name}.id AND #{c})" - end - end - - def sql_for_parent_id_field(field, operator, value) - case operator - when "=" - # accepts a comma separated list of ids - ids = value.first.to_s.scan(/\d+/).map(&:to_i).uniq - if ids.present? - "#{Issue.table_name}.parent_id IN (#{ids.join(",")})" - else - "1=0" - end - when "~" - root_id, lft, rgt = Issue.where(:id => value.first.to_i).pluck(:root_id, :lft, :rgt).first - if root_id && lft && rgt - "#{Issue.table_name}.root_id = #{root_id} AND #{Issue.table_name}.lft > #{lft} AND #{Issue.table_name}.rgt < #{rgt}" - else - "1=0" - end - when "!*" - "#{Issue.table_name}.parent_id IS NULL" - when "*" - "#{Issue.table_name}.parent_id IS NOT NULL" - end - end - - def sql_for_child_id_field(field, operator, value) - case operator - when "=" - # accepts a comma separated list of child ids - child_ids = value.first.to_s.scan(/\d+/).map(&:to_i).uniq - ids = Issue.where(:id => child_ids).pluck(:parent_id).compact.uniq - if ids.present? - "#{Issue.table_name}.id IN (#{ids.join(",")})" - else - "1=0" - end - when "~" - root_id, lft, rgt = Issue.where(:id => value.first.to_i).pluck(:root_id, :lft, :rgt).first - if root_id && lft && rgt - "#{Issue.table_name}.root_id = #{root_id} AND #{Issue.table_name}.lft < #{lft} AND #{Issue.table_name}.rgt > #{rgt}" - else - "1=0" - end - when "!*" - "#{Issue.table_name}.rgt - #{Issue.table_name}.lft = 1" - when "*" - "#{Issue.table_name}.rgt - #{Issue.table_name}.lft > 1" - end - end - - def sql_for_updated_on_field(field, operator, value) - case operator - when "!*" - "#{Issue.table_name}.updated_on = #{Issue.table_name}.created_on" - when "*" - "#{Issue.table_name}.updated_on > #{Issue.table_name}.created_on" - else - sql_for_field("updated_on", operator, value, Issue.table_name, "updated_on") - end - end - - def sql_for_issue_id_field(field, operator, value) - if operator == "=" - # accepts a comma separated list of ids - ids = value.first.to_s.scan(/\d+/).map(&:to_i) - if ids.present? - "#{Issue.table_name}.id IN (#{ids.join(",")})" - else - "1=0" - end - else - sql_for_field("id", operator, value, Issue.table_name, "id") - end - end - - def sql_for_relations(field, operator, value, options={}) - relation_options = IssueRelation::TYPES[field] - return relation_options unless relation_options - - relation_type = field - join_column, target_join_column = "issue_from_id", "issue_to_id" - if relation_options[:reverse] || options[:reverse] - relation_type = relation_options[:reverse] || relation_type - join_column, target_join_column = target_join_column, join_column - end - sql = - case operator - when "*", "!*" - op = (operator == "*" ? 'IN' : 'NOT IN') - "#{Issue.table_name}.id #{op} (SELECT DISTINCT #{IssueRelation.table_name}.#{join_column} FROM #{IssueRelation.table_name} WHERE #{IssueRelation.table_name}.relation_type = '#{self.class.connection.quote_string(relation_type)}')" - when "=", "!" - op = (operator == "=" ? 'IN' : 'NOT IN') - "#{Issue.table_name}.id #{op} (SELECT DISTINCT #{IssueRelation.table_name}.#{join_column} FROM #{IssueRelation.table_name} WHERE #{IssueRelation.table_name}.relation_type = '#{self.class.connection.quote_string(relation_type)}' AND #{IssueRelation.table_name}.#{target_join_column} = #{value.first.to_i})" - when "=p", "=!p", "!p" - op = (operator == "!p" ? 'NOT IN' : 'IN') - comp = (operator == "=!p" ? '<>' : '=') - "#{Issue.table_name}.id #{op} (SELECT DISTINCT #{IssueRelation.table_name}.#{join_column} FROM #{IssueRelation.table_name}, #{Issue.table_name} relissues WHERE #{IssueRelation.table_name}.relation_type = '#{self.class.connection.quote_string(relation_type)}' AND #{IssueRelation.table_name}.#{target_join_column} = relissues.id AND relissues.project_id #{comp} #{value.first.to_i})" - when "*o", "!o" - op = (operator == "!o" ? 'NOT IN' : 'IN') - "#{Issue.table_name}.id #{op} (SELECT DISTINCT #{IssueRelation.table_name}.#{join_column} FROM #{IssueRelation.table_name}, #{Issue.table_name} relissues WHERE #{IssueRelation.table_name}.relation_type = '#{self.class.connection.quote_string(relation_type)}' AND #{IssueRelation.table_name}.#{target_join_column} = relissues.id AND relissues.status_id IN (SELECT id FROM #{IssueStatus.table_name} WHERE is_closed=#{self.class.connection.quoted_false}))" - end - if relation_options[:sym] == field && !options[:reverse] - sqls = [sql, sql_for_relations(field, operator, value, :reverse => true)] - sql = sqls.join(["!", "!*", "!p", '!o'].include?(operator) ? " AND " : " OR ") - end - "(#{sql})" - end - - def sql_for_project_status_field(field, operator, value, options={}) - sql_for_field(field, operator, value, Project.table_name, "status") - end - - def find_assigned_to_id_filter_values(values) - Principal.visible.where(:id => values).map {|p| [p.name, p.id.to_s]} - end - alias :find_author_id_filter_values :find_assigned_to_id_filter_values - - IssueRelation::TYPES.each_key do |relation_type| - alias_method "sql_for_#{relation_type}_field".to_sym, :sql_for_relations - end - - def joins_for_order_statement(order_options) - joins = [super] - - if order_options - if order_options.include?('authors') - joins << "LEFT OUTER JOIN #{User.table_name} authors ON authors.id = #{queried_table_name}.author_id" - end - if order_options.include?('users') - joins << "LEFT OUTER JOIN #{User.table_name} ON #{User.table_name}.id = #{queried_table_name}.assigned_to_id" - end - if order_options.include?('last_journal_user') - joins << "LEFT OUTER JOIN #{Journal.table_name} ON #{Journal.table_name}.id = (SELECT MAX(#{Journal.table_name}.id) FROM #{Journal.table_name}" + - " WHERE #{Journal.table_name}.journalized_type='Issue' AND #{Journal.table_name}.journalized_id=#{Issue.table_name}.id AND #{Journal.visible_notes_condition(User.current, :skip_pre_condition => true)})" + - " LEFT OUTER JOIN #{User.table_name} last_journal_user ON last_journal_user.id = #{Journal.table_name}.user_id"; - end - if order_options.include?('versions') - joins << "LEFT OUTER JOIN #{Version.table_name} ON #{Version.table_name}.id = #{queried_table_name}.fixed_version_id" - end - if order_options.include?('issue_categories') - joins << "LEFT OUTER JOIN #{IssueCategory.table_name} ON #{IssueCategory.table_name}.id = #{queried_table_name}.category_id" - end - if order_options.include?('trackers') - joins << "LEFT OUTER JOIN #{Tracker.table_name} ON #{Tracker.table_name}.id = #{queried_table_name}.tracker_id" - end - if order_options.include?('enumerations') - joins << "LEFT OUTER JOIN #{IssuePriority.table_name} ON #{IssuePriority.table_name}.id = #{queried_table_name}.priority_id" - end - end - - joins.any? ? joins.join(' ') : nil - end -end diff --git a/app/models/issue_relation.rb b/app/models/issue_relation.rb deleted file mode 100644 index 284f005..0000000 --- a/app/models/issue_relation.rb +++ /dev/null @@ -1,264 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class IssueRelation < ActiveRecord::Base - # Class used to represent the relations of an issue - class Relations < Array - include Redmine::I18n - - def initialize(issue, *args) - @issue = issue - super(*args) - end - - def to_s(*args) - map {|relation| relation.to_s(@issue)}.join(', ') - end - end - - include Redmine::SafeAttributes - include Redmine::Utils::DateCalculation - - belongs_to :issue_from, :class_name => 'Issue' - belongs_to :issue_to, :class_name => 'Issue' - - TYPE_RELATES = "relates" - TYPE_DUPLICATES = "duplicates" - TYPE_DUPLICATED = "duplicated" - TYPE_BLOCKS = "blocks" - TYPE_BLOCKED = "blocked" - TYPE_PRECEDES = "precedes" - TYPE_FOLLOWS = "follows" - TYPE_COPIED_TO = "copied_to" - TYPE_COPIED_FROM = "copied_from" - - TYPES = { - TYPE_RELATES => { :name => :label_relates_to, :sym_name => :label_relates_to, - :order => 1, :sym => TYPE_RELATES }, - TYPE_DUPLICATES => { :name => :label_duplicates, :sym_name => :label_duplicated_by, - :order => 2, :sym => TYPE_DUPLICATED }, - TYPE_DUPLICATED => { :name => :label_duplicated_by, :sym_name => :label_duplicates, - :order => 3, :sym => TYPE_DUPLICATES, :reverse => TYPE_DUPLICATES }, - TYPE_BLOCKS => { :name => :label_blocks, :sym_name => :label_blocked_by, - :order => 4, :sym => TYPE_BLOCKED }, - TYPE_BLOCKED => { :name => :label_blocked_by, :sym_name => :label_blocks, - :order => 5, :sym => TYPE_BLOCKS, :reverse => TYPE_BLOCKS }, - TYPE_PRECEDES => { :name => :label_precedes, :sym_name => :label_follows, - :order => 6, :sym => TYPE_FOLLOWS }, - TYPE_FOLLOWS => { :name => :label_follows, :sym_name => :label_precedes, - :order => 7, :sym => TYPE_PRECEDES, :reverse => TYPE_PRECEDES }, - TYPE_COPIED_TO => { :name => :label_copied_to, :sym_name => :label_copied_from, - :order => 8, :sym => TYPE_COPIED_FROM }, - TYPE_COPIED_FROM => { :name => :label_copied_from, :sym_name => :label_copied_to, - :order => 9, :sym => TYPE_COPIED_TO, :reverse => TYPE_COPIED_TO } - }.freeze - - validates_presence_of :issue_from, :issue_to, :relation_type - validates_inclusion_of :relation_type, :in => TYPES.keys - validates_numericality_of :delay, :allow_nil => true - validates_uniqueness_of :issue_to_id, :scope => :issue_from_id - validate :validate_issue_relation - - before_save :handle_issue_order - after_create :call_issues_relation_added_callback - after_destroy :call_issues_relation_removed_callback - - safe_attributes 'relation_type', - 'delay', - 'issue_to_id' - - def safe_attributes=(attrs, user=User.current) - if attrs.respond_to?(:to_unsafe_hash) - attrs = attrs.to_unsafe_hash - end - - return unless attrs.is_a?(Hash) - attrs = attrs.deep_dup - - if issue_id = attrs.delete('issue_to_id') - if issue_id.to_s.strip.match(/\A#?(\d+)\z/) - issue_id = $1.to_i - self.issue_to = Issue.visible(user).find_by_id(issue_id) - end - end - - super(attrs) - end - - def visible?(user=User.current) - (issue_from.nil? || issue_from.visible?(user)) && (issue_to.nil? || issue_to.visible?(user)) - end - - def deletable?(user=User.current) - visible?(user) && - ((issue_from.nil? || user.allowed_to?(:manage_issue_relations, issue_from.project)) || - (issue_to.nil? || user.allowed_to?(:manage_issue_relations, issue_to.project))) - end - - def initialize(attributes=nil, *args) - super - if new_record? - if relation_type.blank? - self.relation_type = IssueRelation::TYPE_RELATES - end - end - end - - def validate_issue_relation - if issue_from && issue_to - errors.add :issue_to_id, :invalid if issue_from_id == issue_to_id - unless issue_from.project_id == issue_to.project_id || - Setting.cross_project_issue_relations? - errors.add :issue_to_id, :not_same_project - end - if circular_dependency? - errors.add :base, :circular_dependency - end - if issue_from.is_descendant_of?(issue_to) || issue_from.is_ancestor_of?(issue_to) - errors.add :base, :cant_link_an_issue_with_a_descendant - end - end - end - - def other_issue(issue) - (self.issue_from_id == issue.id) ? issue_to : issue_from - end - - # Returns the relation type for +issue+ - def relation_type_for(issue) - if TYPES[relation_type] - if self.issue_from_id == issue.id - relation_type - else - TYPES[relation_type][:sym] - end - end - end - - def label_for(issue) - if TYPES[relation_type] - TYPES[relation_type][(self.issue_from_id == issue.id) ? :name : :sym_name] - else - :unknow - end - end - - def to_s(issue=nil) - issue ||= issue_from - issue_text = block_given? ? yield(other_issue(issue)) : "##{other_issue(issue).try(:id)}" - s = [] - s << l(label_for(issue)) - s << "(#{l('datetime.distance_in_words.x_days', :count => delay)})" if delay && delay != 0 - s << issue_text - s.join(' ') - end - - def css_classes_for(issue) - "rel-#{relation_type_for(issue)}" - end - - def handle_issue_order - reverse_if_needed - - if TYPE_PRECEDES == relation_type - self.delay ||= 0 - else - self.delay = nil - end - set_issue_to_dates - end - - def set_issue_to_dates(journal=nil) - soonest_start = self.successor_soonest_start - if soonest_start && issue_to - issue_to.reschedule_on!(soonest_start, journal) - end - end - - def successor_soonest_start - if (TYPE_PRECEDES == self.relation_type) && delay && issue_from && - (issue_from.start_date || issue_from.due_date) - add_working_days((issue_from.due_date || issue_from.start_date), (1 + delay)) - end - end - - def <=>(relation) - r = TYPES[self.relation_type][:order] <=> TYPES[relation.relation_type][:order] - r == 0 ? id <=> relation.id : r - end - - def init_journals(user) - issue_from.init_journal(user) if issue_from - issue_to.init_journal(user) if issue_to - end - - private - - # Reverses the relation if needed so that it gets stored in the proper way - # Should not be reversed before validation so that it can be displayed back - # as entered on new relation form. - # - # Orders relates relations by ID, so that uniqueness index in DB is triggered - # on concurrent access. - def reverse_if_needed - if TYPES.has_key?(relation_type) && TYPES[relation_type][:reverse] - issue_tmp = issue_to - self.issue_to = issue_from - self.issue_from = issue_tmp - self.relation_type = TYPES[relation_type][:reverse] - - elsif relation_type == TYPE_RELATES && issue_from_id > issue_to_id - self.issue_to, self.issue_from = issue_from, issue_to - end - end - - # Returns true if the relation would create a circular dependency - def circular_dependency? - case relation_type - when 'follows' - issue_from.would_reschedule? issue_to - when 'precedes' - issue_to.would_reschedule? issue_from - when 'blocked' - issue_from.blocks? issue_to - when 'blocks' - issue_to.blocks? issue_from - when 'relates' - self.class.where(issue_from_id: issue_to, issue_to_id: issue_from).present? - else - false - end - end - - def call_issues_relation_added_callback - call_issues_callback :relation_added - end - - def call_issues_relation_removed_callback - call_issues_callback :relation_removed - end - - def call_issues_callback(name) - [issue_from, issue_to].each do |issue| - if issue - issue.send name, self - end - end - end -end diff --git a/app/models/issue_status.rb b/app/models/issue_status.rb deleted file mode 100644 index c94f100..0000000 --- a/app/models/issue_status.rb +++ /dev/null @@ -1,124 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class IssueStatus < ActiveRecord::Base - include Redmine::SafeAttributes - - before_destroy :check_integrity - has_many :workflows, :class_name => 'WorkflowTransition', :foreign_key => "old_status_id" - has_many :workflow_transitions_as_new_status, :class_name => 'WorkflowTransition', :foreign_key => "new_status_id" - acts_as_positioned - - after_update :handle_is_closed_change - before_destroy :delete_workflow_rules - - validates_presence_of :name - validates_uniqueness_of :name - validates_length_of :name, :maximum => 30 - validates_inclusion_of :default_done_ratio, :in => 0..100, :allow_nil => true - - scope :sorted, lambda { order(:position) } - scope :named, lambda {|arg| where("LOWER(#{table_name}.name) = LOWER(?)", arg.to_s.strip)} - - safe_attributes( - 'name', - 'is_closed', - 'position', - 'default_done_ratio') - - # Update all the +Issues+ setting their done_ratio to the value of their +IssueStatus+ - def self.update_issue_done_ratios - if Issue.use_status_for_done_ratio? - IssueStatus.where("default_done_ratio >= 0").each do |status| - Issue.where({:status_id => status.id}).update_all({:done_ratio => status.default_done_ratio}) - end - end - - return Issue.use_status_for_done_ratio? - end - - # Returns an array of all statuses the given role can switch to - def new_statuses_allowed_to(roles, tracker, author=false, assignee=false) - self.class.new_statuses_allowed(self, roles, tracker, author, assignee) - end - alias :find_new_statuses_allowed_to :new_statuses_allowed_to - - def self.new_statuses_allowed(status, roles, tracker, author=false, assignee=false) - if roles.present? && tracker - status_id = status.try(:id) || 0 - - scope = IssueStatus. - joins(:workflow_transitions_as_new_status). - where(:workflows => {:old_status_id => status_id, :role_id => roles.map(&:id), :tracker_id => tracker.id}) - - unless author && assignee - if author || assignee - scope = scope.where("author = ? OR assignee = ?", author, assignee) - else - scope = scope.where("author = ? AND assignee = ?", false, false) - end - end - - scope.distinct.to_a.sort - else - [] - end - end - - def <=>(status) - position <=> status.position - end - - def to_s; name end - - private - - # Updates issues closed_on attribute when an existing status is set as closed. - def handle_is_closed_change - if saved_change_to_is_closed? && is_closed == true - # First we update issues that have a journal for when the current status was set, - # a subselect is used to update all issues with a single query - subquery = Journal.joins(:details). - where(:journalized_type => 'Issue'). - where("journalized_id = #{Issue.table_name}.id"). - where(:journal_details => {:property => 'attr', :prop_key => 'status_id', :value => id.to_s}). - select("MAX(created_on)"). - to_sql - Issue.where(:status_id => id, :closed_on => nil).update_all("closed_on = (#{subquery})") - - # Then we update issues that don't have a journal which means the - # current status was set on creation - Issue.where(:status_id => id, :closed_on => nil).update_all("closed_on = created_on") - end - end - - def check_integrity - if Issue.where(:status_id => id).any? - raise "This status is used by some issues" - elsif Tracker.where(:default_status_id => id).any? - raise "This status is used as the default status by some trackers" - end - end - - # Deletes associated workflows - def delete_workflow_rules - WorkflowRule.where(:old_status_id => id).delete_all - WorkflowRule.where(:new_status_id => id).delete_all - end -end diff --git a/app/models/journal.rb b/app/models/journal.rb deleted file mode 100644 index b6468b6..0000000 --- a/app/models/journal.rb +++ /dev/null @@ -1,319 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class Journal < ActiveRecord::Base - include Redmine::SafeAttributes - - belongs_to :journalized, :polymorphic => true - # added as a quick fix to allow eager loading of the polymorphic association - # since always associated to an issue, for now - belongs_to :issue, :foreign_key => :journalized_id - - belongs_to :user - has_many :details, :class_name => "JournalDetail", :dependent => :delete_all, :inverse_of => :journal - attr_accessor :indice - - acts_as_event :title => Proc.new {|o| status = ((s = o.new_status) ? " (#{s})" : nil); "#{o.issue.tracker} ##{o.issue.id}#{status}: #{o.issue.subject}" }, - :description => :notes, - :author => :user, - :group => :issue, - :type => Proc.new {|o| (s = o.new_status) ? (s.is_closed? ? 'issue-closed' : 'issue-edit') : 'issue-note' }, - :url => Proc.new {|o| {:controller => 'issues', :action => 'show', :id => o.issue.id, :anchor => "change-#{o.id}"}} - - acts_as_activity_provider :type => 'issues', - :author_key => :user_id, - :scope => preload({:issue => :project}, :user). - joins("LEFT OUTER JOIN #{JournalDetail.table_name} ON #{JournalDetail.table_name}.journal_id = #{Journal.table_name}.id"). - where("#{Journal.table_name}.journalized_type = 'Issue' AND" + - " (#{JournalDetail.table_name}.prop_key = 'status_id' OR #{Journal.table_name}.notes <> '')").distinct - - before_create :split_private_notes - after_create_commit :send_notification - - scope :visible, lambda {|*args| - user = args.shift || User.current - options = args.shift || {} - - joins(:issue => :project). - where(Issue.visible_condition(user, options)). - where(Journal.visible_notes_condition(user, :skip_pre_condition => true)) - } - - safe_attributes( - 'notes', - :if => lambda {|journal, user| journal.new_record? || journal.editable_by?(user)}) - safe_attributes( - 'private_notes', - :if => lambda {|journal, user| user.allowed_to?(:set_notes_private, journal.project)}) - - # Returns a SQL condition to filter out journals with notes that are not visible to user - def self.visible_notes_condition(user=User.current, options={}) - private_notes_permission = Project.allowed_to_condition(user, :view_private_notes, options) - sanitize_sql_for_conditions(["(#{table_name}.private_notes = ? OR #{table_name}.user_id = ? OR (#{private_notes_permission}))", false, user.id]) - end - - def initialize(*args) - super - if journalized - if journalized.new_record? - self.notify = false - else - start - end - end - end - - def save(*args) - journalize_changes - # Do not save an empty journal - (details.empty? && notes.blank?) ? false : super - end - - # Returns journal details that are visible to user - def visible_details(user=User.current) - details.select do |detail| - if detail.property == 'cf' - detail.custom_field && detail.custom_field.visible_by?(project, user) - elsif detail.property == 'relation' - Issue.find_by_id(detail.value || detail.old_value).try(:visible?, user) - else - true - end - end - end - - # Returns the JournalDetail for the given attribute, or nil if the attribute - # was not updated - def detail_for_attribute(attribute) - details.detect {|detail| detail.prop_key == attribute} - end - - # Returns the new status if the journal contains a status change, otherwise nil - def new_status - s = new_value_for('status_id') - s ? IssueStatus.find_by_id(s.to_i) : nil - end - - def new_value_for(prop) - detail_for_attribute(prop).try(:value) - end - - def editable_by?(usr) - usr && usr.logged? && (usr.allowed_to?(:edit_issue_notes, project) || (self.user == usr && usr.allowed_to?(:edit_own_issue_notes, project))) - end - - def project - journalized.respond_to?(:project) ? journalized.project : nil - end - - def attachments - journalized.respond_to?(:attachments) ? journalized.attachments : [] - end - - # Returns a string of css classes - def css_classes - s = +'journal' - s << ' has-notes' unless notes.blank? - s << ' has-details' unless details.blank? - s << ' private-notes' if private_notes? - s - end - - def notify? - @notify != false - end - - def notify=(arg) - @notify = arg - end - - def notified_users - notified = journalized.notified_users - if private_notes? - notified = notified.select {|user| user.allowed_to?(:view_private_notes, journalized.project)} - end - notified - end - - def recipients - notified_users.map(&:mail) - end - - def notified_watchers - notified = journalized.notified_watchers - if private_notes? - notified = notified.select {|user| user.allowed_to?(:view_private_notes, journalized.project)} - end - notified - end - - def watcher_recipients - notified_watchers.map(&:mail) - end - - # Sets @custom_field instance variable on journals details using a single query - def self.preload_journals_details_custom_fields(journals) - field_ids = journals.map(&:details).flatten.select {|d| d.property == 'cf'}.map(&:prop_key).uniq - if field_ids.any? - fields_by_id = CustomField.where(:id => field_ids).inject({}) {|h, f| h[f.id] = f; h} - journals.each do |journal| - journal.details.each do |detail| - if detail.property == 'cf' - detail.instance_variable_set "@custom_field", fields_by_id[detail.prop_key.to_i] - end - end - end - end - journals - end - - # Stores the values of the attributes and custom fields of the journalized object - def start - if journalized - @attributes_before_change = journalized.journalized_attribute_names.inject({}) do |h, attribute| - h[attribute] = journalized.send(attribute) - h - end - @custom_values_before_change = journalized.custom_field_values.inject({}) do |h, c| - h[c.custom_field_id] = c.value - h - end - end - self - end - - # Adds a journal detail for an attachment that was added or removed - def journalize_attachment(attachment, added_or_removed) - key = (added_or_removed == :removed ? :old_value : :value) - details << JournalDetail.new( - :property => 'attachment', - :prop_key => attachment.id, - key => attachment.filename - ) - end - - # Adds a journal detail for an issue relation that was added or removed - def journalize_relation(relation, added_or_removed) - key = (added_or_removed == :removed ? :old_value : :value) - details << JournalDetail.new( - :property => 'relation', - :prop_key => relation.relation_type_for(journalized), - key => relation.other_issue(journalized).try(:id) - ) - end - - private - - # Generates journal details for attribute and custom field changes - def journalize_changes - # attributes changes - if @attributes_before_change - attrs = (journalized.journalized_attribute_names + @attributes_before_change.keys).uniq - attrs.each do |attribute| - before = @attributes_before_change[attribute] - after = journalized.send(attribute) - next if before == after || (before.blank? && after.blank?) - add_attribute_detail(attribute, before, after) - end - end - # custom fields changes - if @custom_values_before_change - values_by_custom_field_id = {} - @custom_values_before_change.each do |custom_field_id, value| - values_by_custom_field_id[custom_field_id] = nil - end - journalized.custom_field_values.each do |c| - values_by_custom_field_id[c.custom_field_id] = c.value - end - - values_by_custom_field_id.each do |custom_field_id, after| - before = @custom_values_before_change[custom_field_id] - next if before == after || (before.blank? && after.blank?) - - if before.is_a?(Array) || after.is_a?(Array) - before = [before] unless before.is_a?(Array) - after = [after] unless after.is_a?(Array) - - # values removed - (before - after).reject(&:blank?).each do |value| - add_custom_field_detail(custom_field_id, value, nil) - end - # values added - (after - before).reject(&:blank?).each do |value| - add_custom_field_detail(custom_field_id, nil, value) - end - else - add_custom_field_detail(custom_field_id, before, after) - end - end - end - start - end - - # Adds a journal detail for an attribute change - def add_attribute_detail(attribute, old_value, value) - add_detail('attr', attribute, old_value, value) - end - - # Adds a journal detail for a custom field value change - def add_custom_field_detail(custom_field_id, old_value, value) - add_detail('cf', custom_field_id, old_value, value) - end - - # Adds a journal detail - def add_detail(property, prop_key, old_value, value) - details << JournalDetail.new( - :property => property, - :prop_key => prop_key, - :old_value => old_value, - :value => value - ) - end - - def split_private_notes - if private_notes? - if notes.present? - if details.any? - # Split the journal (notes/changes) so we don't have half-private journals - journal = Journal.new(:journalized => journalized, :user => user, :notes => nil, :private_notes => false) - journal.details = details - journal.save - self.details = [] - self.created_on = journal.created_on - end - else - # Blank notes should not be private - self.private_notes = false - end - end - true - end - - def send_notification - if notify? && (Setting.notified_events.include?('issue_updated') || - (Setting.notified_events.include?('issue_note_added') && notes.present?) || - (Setting.notified_events.include?('issue_status_updated') && new_status.present?) || - (Setting.notified_events.include?('issue_assigned_to_updated') && detail_for_attribute('assigned_to_id').present?) || - (Setting.notified_events.include?('issue_priority_updated') && new_value_for('priority_id').present?) || - (Setting.notified_events.include?('issue_fixed_version_updated') && detail_for_attribute('fixed_version_id').present?) - ) - Mailer.deliver_issue_edit(self) - end - end -end diff --git a/app/models/journal_detail.rb b/app/models/journal_detail.rb deleted file mode 100644 index 3698c83..0000000 --- a/app/models/journal_detail.rb +++ /dev/null @@ -1,51 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class JournalDetail < ActiveRecord::Base - belongs_to :journal - - def custom_field - if property == 'cf' - @custom_field ||= CustomField.find_by_id(prop_key) - end - end - - def value=(arg) - write_attribute :value, normalize(arg) - end - - def old_value=(arg) - write_attribute :old_value, normalize(arg) - end - - private - - def normalize(v) - case v - when true - "1" - when false - "0" - when Date - v.strftime("%Y-%m-%d") - else - v - end - end -end diff --git a/app/models/mail_handler.rb b/app/models/mail_handler.rb deleted file mode 100644 index b88b1f3..0000000 --- a/app/models/mail_handler.rb +++ /dev/null @@ -1,632 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class MailHandler < ActionMailer::Base - include ActionView::Helpers::SanitizeHelper - include Redmine::I18n - - class UnauthorizedAction < StandardError; end - class MissingInformation < StandardError; end - - attr_reader :email, :user, :handler_options - - def self.receive(raw_mail, options={}) - options = options.deep_dup - - options[:issue] ||= {} - - options[:allow_override] ||= [] - if options[:allow_override].is_a?(String) - options[:allow_override] = options[:allow_override].split(',') - end - options[:allow_override].map! {|s| s.strip.downcase.gsub(/\s+/, '_')} - # Project needs to be overridable if not specified - options[:allow_override] << 'project' unless options[:issue].has_key?(:project) - - options[:no_account_notice] = (options[:no_account_notice].to_s == '1') - options[:no_notification] = (options[:no_notification].to_s == '1') - options[:no_permission_check] = (options[:no_permission_check].to_s == '1') - - ActiveSupport::Notifications.instrument("receive.action_mailer") do |payload| - mail = Mail.new(raw_mail.b) - set_payload_for_mail(payload, mail) - new.receive(mail, options) - end - end - - # Receives an email and rescues any exception - def self.safe_receive(*args) - receive(*args) - rescue => e - Rails.logger.error "MailHandler: an unexpected error occurred when receiving email: #{e.message}" - return false - end - - # Extracts MailHandler options from environment variables - # Use when receiving emails with rake tasks - def self.extract_options_from_env(env) - options = {:issue => {}} - %w(project status tracker category priority assigned_to fixed_version).each do |option| - options[:issue][option.to_sym] = env[option] if env[option] - end - %w(allow_override unknown_user no_permission_check no_account_notice no_notification default_group project_from_subaddress).each do |option| - options[option.to_sym] = env[option] if env[option] - end - if env['private'] - options[:issue][:is_private] = '1' - end - options - end - - def logger - Rails.logger - end - - cattr_accessor :ignored_emails_headers - self.ignored_emails_headers = { - 'Auto-Submitted' => /\Aauto-(replied|generated)/, - 'X-Autoreply' => 'yes' - } - - # Processes incoming emails - # Returns the created object (eg. an issue, a message) or false - def receive(email, options={}) - @email = email - @handler_options = options - sender_email = email.from.to_a.first.to_s.strip - # Ignore emails received from the application emission address to avoid hell cycles - emission_address = Setting.mail_from.to_s.gsub(/(?:.*<|>.*|\(.*\))/, '').strip - if sender_email.casecmp(emission_address) == 0 - logger&.info "MailHandler: ignoring email from Redmine emission address [#{sender_email}]" - return false - end - # Ignore auto generated emails - self.class.ignored_emails_headers.each do |key, ignored_value| - value = email.header[key] - if value - value = value.to_s.downcase - if (ignored_value.is_a?(Regexp) && ignored_value.match?(value)) || value == ignored_value - logger&.info "MailHandler: ignoring email with #{key}:#{value} header" - return false - end - end - end - @user = User.find_by_mail(sender_email) if sender_email.present? - if @user && !@user.active? - logger&.info "MailHandler: ignoring email from non-active user [#{@user.login}]" - return false - end - if @user.nil? - # Email was submitted by an unknown user - case handler_options[:unknown_user] - when 'accept' - @user = User.anonymous - when 'create' - @user = create_user_from_email - if @user - logger&.info "MailHandler: [#{@user.login}] account created" - add_user_to_group(handler_options[:default_group]) - unless handler_options[:no_account_notice] - ::Mailer.deliver_account_information(@user, @user.password) - end - else - logger&.error "MailHandler: could not create account for [#{sender_email}]" - return false - end - else - # Default behaviour, emails from unknown users are ignored - logger&.info "MailHandler: ignoring email from unknown user [#{sender_email}]" - return false - end - end - User.current = @user - dispatch - end - - private - - MESSAGE_ID_RE = %r{^ e - # TODO: send a email to the user - logger&.error "MailHandler: #{e.message}" - false - rescue MissingInformation => e - logger&.error "MailHandler: missing information from #{user}: #{e.message}" - false - rescue UnauthorizedAction => e - logger&.error "MailHandler: unauthorized attempt from #{user}: #{e.message}" - false - end - - def dispatch_to_default - receive_issue - end - - # Creates a new issue - def receive_issue - project = target_project - # check permission - unless handler_options[:no_permission_check] - raise UnauthorizedAction, "not allowed to add issues to project [#{project.name}]" unless user.allowed_to?(:add_issues, project) - end - - issue = Issue.new(:author => user, :project => project) - attributes = issue_attributes_from_keywords(issue) - if handler_options[:no_permission_check] - issue.tracker_id = attributes['tracker_id'] - if project - issue.tracker_id ||= project.trackers.first.try(:id) - end - end - issue.safe_attributes = attributes - issue.safe_attributes = {'custom_field_values' => custom_field_values_from_keywords(issue)} - issue.subject = cleaned_up_subject - if issue.subject.blank? - issue.subject = "(#{ll(Setting.default_language, :text_no_subject)})" - end - issue.description = cleaned_up_text_body - issue.start_date ||= User.current.today if Setting.default_issue_start_date_to_creation_date? - if handler_options[:issue][:is_private] == '1' - issue.is_private = true - end - - # add To and Cc as watchers before saving so the watchers can reply to Redmine - add_watchers(issue) - issue.save! - add_attachments(issue) - logger&.info "MailHandler: issue ##{issue.id} created by #{user}" - issue - end - - # Adds a note to an existing issue - def receive_issue_reply(issue_id, from_journal=nil) - issue = Issue.find_by(:id => issue_id) - if issue.nil? - logger&.info "MailHandler: ignoring reply from [#{email.from.first}] to a nonexistent issue" - return nil - end - - # check permission - unless handler_options[:no_permission_check] - unless issue.notes_addable? - raise UnauthorizedAction, "not allowed to add notes on issues to project [#{issue.project.name}]" - end - end - - # ignore CLI-supplied defaults for new issues - handler_options[:issue] = {} - - journal = issue.init_journal(user) - if from_journal && from_journal.private_notes? - # If the received email was a reply to a private note, make the added note private - issue.private_notes = true - end - issue.safe_attributes = issue_attributes_from_keywords(issue) - issue.safe_attributes = {'custom_field_values' => custom_field_values_from_keywords(issue)} - journal.notes = cleaned_up_text_body - - # add To and Cc as watchers before saving so the watchers can reply to Redmine - add_watchers(issue) - issue.save! - add_attachments(issue) - logger&.info "MailHandler: issue ##{issue.id} updated by #{user}" - journal - end - - # Reply will be added to the issue - def receive_journal_reply(journal_id) - journal = Journal.find_by(:id => journal_id) - if journal.nil? - logger&.info "MailHandler: ignoring reply from [#{email.from.first}] to a nonexistent journal" - return nil - end - - if journal.journalized_type == 'Issue' - receive_issue_reply(journal.journalized_id, journal) - else - logger&.info "MailHandler: ignoring reply from [#{email.from.first}] to a journal whose journalized_type is not Issue" - return nil - end - end - - # Receives a reply to a forum message - def receive_message_reply(message_id) - message = Message.find_by(:id => message_id)&.root - if message.nil? - logger&.info "MailHandler: ignoring reply from [#{email.from.first}] to a nonexistent message" - return nil - end - - unless handler_options[:no_permission_check] - raise UnauthorizedAction, "not allowed to add messages to project [#{message.project.name}]" unless user.allowed_to?(:add_messages, message.project) - end - - if !message.locked? - reply = Message.new(:subject => cleaned_up_subject.gsub(%r{^.*msg\d+\]}, '').strip, - :content => cleaned_up_text_body) - reply.author = user - reply.board = message.board - message.children << reply - add_attachments(reply) - reply - else - logger&.info "MailHandler: ignoring reply from [#{email.from.first}] to a locked topic" - end - end - - def add_attachments(obj) - if email.attachments && email.attachments.any? - email.attachments.each do |attachment| - next unless accept_attachment?(attachment) - next unless attachment.body.decoded.size > 0 - obj.attachments << Attachment.create(:container => obj, - :file => attachment.body.decoded, - :filename => attachment.filename, - :author => user, - :content_type => attachment.mime_type) - end - end - end - - # Returns false if the +attachment+ of the incoming email should be ignored - def accept_attachment?(attachment) - @excluded ||= Setting.mail_handler_excluded_filenames.to_s.split(',').map(&:strip).reject(&:blank?) - @excluded.each do |pattern| - if Setting.mail_handler_enable_regex_excluded_filenames? - regexp = %r{\A#{pattern}\z}i - else - regexp = %r{\A#{Regexp.escape(pattern).gsub("\\*", ".*")}\z}i - end - if regexp.match?(attachment.filename.to_s) - logger.info "MailHandler: ignoring attachment #{attachment.filename} matching #{pattern}" - return false - end - end - true - end - - # Adds To and Cc as watchers of the given object if the sender has the - # appropriate permission - def add_watchers(obj) - if handler_options[:no_permission_check] || user.allowed_to?("add_#{obj.class.name.underscore}_watchers".to_sym, obj.project) - addresses = [email.to, email.cc].flatten.compact.uniq.collect {|a| a.strip.downcase} - unless addresses.empty? - users = User.active.having_mail(addresses).to_a - users -= obj.watcher_users - users.each do |u| - obj.add_watcher(u) - end - end - end - end - - def get_keyword(attr, options={}) - @keywords ||= {} - if @keywords.has_key?(attr) - @keywords[attr] - else - @keywords[attr] = begin - override = - if options.key?(:override) - options[:override] - else - (handler_options[:allow_override] & [attr.to_s.downcase.gsub(/\s+/, '_'), 'all']).present? - end - if override && (v = extract_keyword!(cleaned_up_text_body, attr, options[:format])) - v - elsif !handler_options[:issue][attr].blank? - handler_options[:issue][attr] - end - end - end - end - - # Destructively extracts the value for +attr+ in +text+ - # Returns nil if no matching keyword found - def extract_keyword!(text, attr, format=nil) - keys = [attr.to_s.humanize] - if attr.is_a?(Symbol) - if user && user.language.present? - keys << l("field_#{attr}", :default => '', :locale => user.language) - end - if Setting.default_language.present? - keys << l("field_#{attr}", :default => '', :locale => Setting.default_language) - end - end - keys.reject! {|k| k.blank?} - keys.collect! {|k| Regexp.escape(k)} - format ||= '.+' - keyword = nil - regexp = /^(#{keys.join('|')})[ \t]*:[ \t]*(#{format})\s*$/i - if m = text.match(regexp) - keyword = m[2].strip - text.sub!(regexp, '') - end - keyword - end - - def get_project_from_receiver_addresses - local, domain = handler_options[:project_from_subaddress].to_s.split("@") - return nil unless local && domain - local = Regexp.escape(local) - - [:to, :cc, :bcc].each do |field| - header = @email[field] - next if header.blank? || header.field.blank? || !header.field.respond_to?(:addrs) - header.field.addrs.each do |addr| - if addr.domain.to_s.casecmp(domain)==0 && addr.local.to_s =~ /\A#{local}\+([^+]+)\z/ - if project = Project.find_by_identifier($1) - return project - end - end - end - end - nil - end - - def target_project - # TODO: other ways to specify project: - # * parse the email To field - # * specific project (eg. Setting.mail_handler_target_project) - target = get_project_from_receiver_addresses - target ||= Project.find_by_identifier(get_keyword(:project)) - if target.nil? - # Invalid project keyword, use the project specified as the default one - default_project = handler_options[:issue][:project] - if default_project.present? - target = Project.find_by_identifier(default_project) - end - end - raise MissingInformation, 'Unable to determine target project' if target.nil? - target - end - - # Returns a Hash of issue attributes extracted from keywords in the email body - def issue_attributes_from_keywords(issue) - attrs = { - 'tracker_id' => (k = get_keyword(:tracker)) && issue.project.trackers.named(k).first.try(:id), - 'status_id' => (k = get_keyword(:status)) && IssueStatus.named(k).first.try(:id), - 'priority_id' => (k = get_keyword(:priority)) && IssuePriority.named(k).first.try(:id), - 'category_id' => (k = get_keyword(:category)) && issue.project.issue_categories.named(k).first.try(:id), - 'assigned_to_id' => (k = get_keyword(:assigned_to)) && find_assignee_from_keyword(k, issue).try(:id), - 'fixed_version_id' => (k = get_keyword(:fixed_version)) && issue.project.shared_versions.named(k).first.try(:id), - 'start_date' => get_keyword(:start_date, :format => '\d{4}-\d{2}-\d{2}'), - 'due_date' => get_keyword(:due_date, :format => '\d{4}-\d{2}-\d{2}'), - 'estimated_hours' => get_keyword(:estimated_hours), - 'done_ratio' => get_keyword(:done_ratio, :format => '(\d|10)?0'), - 'is_private' => get_keyword_bool(:is_private), - 'parent_issue_id' => get_keyword(:parent_issue) - }.delete_if {|k, v| v.blank? } - - attrs - end - - def get_keyword_bool(attr) - true_values = ["1"] - false_values = ["0"] - locales = [Setting.default_language] - if user - locales << user.language - end - locales.select(&:present?).each do |locale| - true_values << l("general_text_yes", :default => '', :locale => locale) - true_values << l("general_text_Yes", :default => '', :locale => locale) - false_values << l("general_text_no", :default => '', :locale => locale) - false_values << l("general_text_No", :default => '', :locale => locale) - end - values = (true_values + false_values).select(&:present?) - format = Regexp.union values - if value = get_keyword(attr, :format => format) - if true_values.include?(value) - return true - elsif false_values.include?(value) - return false - end - end - nil - end - - # Returns a Hash of issue custom field values extracted from keywords in the email body - def custom_field_values_from_keywords(customized) - customized.custom_field_values.inject({}) do |h, v| - if keyword = get_keyword(v.custom_field.name) - h[v.custom_field.id.to_s] = v.custom_field.value_from_keyword(keyword, customized) - end - h - end - end - - # Returns the text content of the email. - # If the value of Setting.mail_handler_preferred_body_part is 'html', - # it returns text converted from the text/html part of the email. - # Otherwise, it returns text/plain part. - def plain_text_body - return @plain_text_body unless @plain_text_body.nil? - - parse_order = - if Setting.mail_handler_preferred_body_part == 'html' - ['text/html', 'text/plain'] - else - ['text/plain', 'text/html'] - end - parse_order.each do |mime_type| - @plain_text_body ||= email_parts_to_text(email.all_parts.select {|p| p.mime_type == mime_type}).presence - return @plain_text_body unless @plain_text_body.nil? - end - - # If there is still no body found, and there are no mime-parts defined, - # we use the whole raw mail body - @plain_text_body ||= email_parts_to_text([email]).presence if email.all_parts.empty? - - # As a fallback we return an empty plain text body (e.g. if we have only - # empty text parts but a non-text attachment) - @plain_text_body ||= "" - end - - def email_parts_to_text(parts) - parts.reject! do |part| - part.attachment? - end - parts.map do |p| - body_charset = - if Mail::RubyVer.respond_to?(:pick_encoding) - Mail::RubyVer.pick_encoding(p.charset).to_s - else - p.charset - end - body = Redmine::CodesetUtil.to_utf8(p.body.decoded, body_charset) - # convert html parts to text - p.mime_type == 'text/html' ? self.class.html_body_to_text(body) : self.class.plain_text_body_to_text(body) - end.join("\r\n") - end - - def cleaned_up_text_body - @cleaned_up_text_body ||= cleanup_body(plain_text_body) - end - - def cleaned_up_subject - subject = email.subject.to_s - subject.strip[0,255] - end - - def self.assign_string_attribute_with_limit(object, attribute, value, limit=nil) - limit ||= object.class.columns_hash[attribute.to_s].limit || 255 - value = value.to_s.slice(0, limit) - object.send("#{attribute}=", value) - end - private_class_method :assign_string_attribute_with_limit - - # Singleton class method is public - class << self - # Converts a HTML email body to text - def html_body_to_text(html) - Redmine::WikiFormatting.html_parser.to_text(html) - end - - # Converts a plain/text email body to text - def plain_text_body_to_text(text) - # Removes leading spaces that would cause the line to be rendered as - # preformatted text with textile - text.gsub(/^ +(?![*#])/, '') - end - - # Returns a User from an email address and a full name - def new_user_from_attributes(email_address, fullname=nil) - user = User.new - - # Truncating the email address would result in an invalid format - user.mail = email_address - assign_string_attribute_with_limit(user, 'login', email_address, User::LOGIN_LENGTH_LIMIT) - - names = fullname.blank? ? email_address.gsub(/@.*$/, '').split('.') : fullname.split - assign_string_attribute_with_limit(user, 'firstname', names.shift, 30) - assign_string_attribute_with_limit(user, 'lastname', names.join(' '), 30) - user.lastname = '-' if user.lastname.blank? - user.language = Setting.default_language - user.generate_password = true - user.mail_notification = 'only_my_events' - - unless user.valid? - user.login = "user#{Redmine::Utils.random_hex(6)}" unless user.errors[:login].blank? - user.firstname = "-" unless user.errors[:firstname].blank? - (puts user.errors[:lastname]; user.lastname = "-") unless user.errors[:lastname].blank? - end - user - end - end - - # Creates a User for the +email+ sender - # Returns the user or nil if it could not be created - def create_user_from_email - if from_addr = email.header['from'].try(:addrs).to_a.first - addr = from_addr.address - name = from_addr.display_name || from_addr.comments.to_a.first - user = self.class.new_user_from_attributes(addr, name) - if handler_options[:no_notification] - user.mail_notification = 'none' - end - if user.save - user - else - logger&.error "MailHandler: failed to create User: #{user.errors.full_messages}" - nil - end - else - logger&.error "MailHandler: failed to create User: no FROM address found" - nil - end - end - - # Adds the newly created user to default group - def add_user_to_group(default_group) - if default_group.present? - default_group.split(',').each do |group_name| - if group = Group.named(group_name).first - group.users << @user - elsif logger - logger.warn "MailHandler: could not add user to [#{group_name}], group not found" - end - end - end - end - - # Removes the email body of text after the truncation configurations. - def cleanup_body(body) - delimiters = Setting.mail_handler_body_delimiters.to_s.split(/[\r\n]+/).reject(&:blank?) - - if Setting.mail_handler_enable_regex_delimiters? - begin - delimiters = delimiters.map {|s| Regexp.new(s)} - rescue RegexpError => e - logger&.error "MailHandler: invalid regexp delimiter found in mail_handler_body_delimiters setting (#{e.message})" - end - end - - unless delimiters.empty? - regex = Regexp.new("^[> ]*(#{ Regexp.union(delimiters) })[[:blank:]]*[\r\n].*", Regexp::MULTILINE) - body = body.gsub(regex, '') - end - body.strip - end - - def find_assignee_from_keyword(keyword, issue) - Principal.detect_by_keyword(issue.assignable_users, keyword) - end -end diff --git a/app/models/mailer.rb b/app/models/mailer.rb deleted file mode 100644 index ed923ae..0000000 --- a/app/models/mailer.rb +++ /dev/null @@ -1,781 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -require 'roadie' - -class Mailer < ActionMailer::Base - layout 'mailer' - helper :application - helper :issues - helper :custom_fields - - include Redmine::I18n - include Roadie::Rails::Automatic - - # Overrides ActionMailer::Base#process in order to set the recipient as the current user - # and his language as the default locale. - # The first argument of all actions of this Mailer must be a User (the recipient), - # otherwise an ArgumentError is raised. - def process(action, *args) - user = args.first - raise ArgumentError, "First argument has to be a user, was #{user.inspect}" unless user.is_a?(User) - - initial_user = User.current - initial_language = ::I18n.locale - begin - User.current = user - - lang = find_language(user.language) if user.logged? - lang ||= Setting.default_language - set_language_if_valid(lang) - - super(action, *args) - ensure - User.current = initial_user - ::I18n.locale = initial_language - end - end - - # Default URL options for generating URLs in emails based on host_name and protocol - # defined in application settings. - def self.default_url_options - options = {:protocol => Setting.protocol} - if Setting.host_name.to_s =~ /\A(https?\:\/\/)?(.+?)(\:(\d+))?(\/.+)?\z/i - host, port, prefix = $2, $4, $5 - options.merge!({ - :host => host, :port => port, :script_name => prefix - }) - else - options[:host] = Setting.host_name - end - options - end - - # Builds a mail for notifying user about a new issue - def issue_add(user, issue) - redmine_headers 'Project' => issue.project.identifier, - 'Issue-Tracker' => issue.tracker.name, - 'Issue-Id' => issue.id, - 'Issue-Author' => issue.author.login - redmine_headers 'Issue-Assignee' => issue.assigned_to.login if issue.assigned_to - message_id issue - references issue - @author = issue.author - @issue = issue - @user = user - @issue_url = url_for(:controller => 'issues', :action => 'show', :id => issue) - subject = "[#{issue.project.name} - #{issue.tracker.name} ##{issue.id}]" - subject += " (#{issue.status.name})" if Setting.show_status_changes_in_mail_subject? - subject += " #{issue.subject}" - mail :to => user, - :subject => subject - end - - # Notifies users about a new issue. - # - # Example: - # Mailer.deliver_issue_add(issue) - def self.deliver_issue_add(issue) - users = issue.notified_users | issue.notified_watchers - users.each do |user| - issue_add(user, issue).deliver_later - end - end - - # Builds a mail for notifying user about an issue update - def issue_edit(user, journal) - issue = journal.journalized - redmine_headers 'Project' => issue.project.identifier, - 'Issue-Tracker' => issue.tracker.name, - 'Issue-Id' => issue.id, - 'Issue-Author' => issue.author.login - redmine_headers 'Issue-Assignee' => issue.assigned_to.login if issue.assigned_to - message_id journal - references issue - @author = journal.user - s = "[#{issue.project.name} - #{issue.tracker.name} ##{issue.id}] " - s += "(#{issue.status.name}) " if journal.new_value_for('status_id') && Setting.show_status_changes_in_mail_subject? - s += issue.subject - @issue = issue - @user = user - @journal = journal - @journal_details = journal.visible_details - @issue_url = url_for(:controller => 'issues', :action => 'show', :id => issue, :anchor => "change-#{journal.id}") - - mail :to => user, - :subject => s - end - - # Notifies users about an issue update. - # - # Example: - # Mailer.deliver_issue_edit(journal) - def self.deliver_issue_edit(journal) - users = journal.notified_users | journal.notified_watchers - users.select! do |user| - journal.notes? || journal.visible_details(user).any? - end - users.each do |user| - issue_edit(user, journal).deliver_later - end - end - - # Builds a mail to user about a new document. - def document_added(user, document, author) - redmine_headers 'Project' => document.project.identifier - @author = author - @document = document - @user = user - @document_url = url_for(:controller => 'documents', :action => 'show', :id => document) - mail :to => user, - :subject => "[#{document.project.name}] #{l(:label_document_new)}: #{document.title}" - end - - # Notifies users that document was created by author - # - # Example: - # Mailer.deliver_document_added(document, author) - def self.deliver_document_added(document, author) - users = document.notified_users - users.each do |user| - document_added(user, document, author).deliver_later - end - end - - # Builds a mail to user about new attachements. - def attachments_added(user, attachments) - container = attachments.first.container - added_to = '' - added_to_url = '' - @author = attachments.first.author - case container.class.name - when 'Project' - added_to_url = url_for(:controller => 'files', :action => 'index', :project_id => container) - added_to = "#{l(:label_project)}: #{container}" - when 'Version' - added_to_url = url_for(:controller => 'files', :action => 'index', :project_id => container.project) - added_to = "#{l(:label_version)}: #{container.name}" - when 'Document' - added_to_url = url_for(:controller => 'documents', :action => 'show', :id => container.id) - added_to = "#{l(:label_document)}: #{container.title}" - end - redmine_headers 'Project' => container.project.identifier - @attachments = attachments - @user = user - @added_to = added_to - @added_to_url = added_to_url - mail :to => user, - :subject => "[#{container.project.name}] #{l(:label_attachment_new)}" - end - - # Notifies users about new attachments - # - # Example: - # Mailer.deliver_attachments_added(attachments) - def self.deliver_attachments_added(attachments) - container = attachments.first.container - case container.class.name - when 'Project', 'Version' - users = container.project.notified_users.select {|user| user.allowed_to?(:view_files, container.project)} - when 'Document' - users = container.notified_users - end - - users.each do |user| - attachments_added(user, attachments).deliver_later - end - end - - # Builds a mail to user about a new news. - def news_added(user, news) - redmine_headers 'Project' => news.project.identifier - @author = news.author - message_id news - references news - @news = news - @user = user - @news_url = url_for(:controller => 'news', :action => 'show', :id => news) - mail :to => user, - :subject => "[#{news.project.name}] #{l(:label_news)}: #{news.title}" - end - - # Notifies users about new news - # - # Example: - # Mailer.deliver_news_added(news) - def self.deliver_news_added(news) - users = news.notified_users | news.notified_watchers_for_added_news - users.each do |user| - news_added(user, news).deliver_later - end - end - - # Builds a mail to user about a new news comment. - def news_comment_added(user, comment) - news = comment.commented - redmine_headers 'Project' => news.project.identifier - @author = comment.author - message_id comment - references news - @news = news - @comment = comment - @user = user - @news_url = url_for(:controller => 'news', :action => 'show', :id => news) - mail :to => user, - :subject => "Re: [#{news.project.name}] #{l(:label_news)}: #{news.title}" - end - - # Notifies users about a new comment on a news - # - # Example: - # Mailer.deliver_news_comment_added(comment) - def self.deliver_news_comment_added(comment) - news = comment.commented - users = news.notified_users | news.notified_watchers - users.each do |user| - news_comment_added(user, comment).deliver_later - end - end - - # Builds a mail to user about a new message. - def message_posted(user, message) - redmine_headers 'Project' => message.project.identifier, - 'Topic-Id' => (message.parent_id || message.id) - @author = message.author - message_id message - references message.root - @message = message - @user = user - @message_url = url_for(message.event_url) - mail :to => user, - :subject => "[#{message.board.project.name} - #{message.board.name} - msg#{message.root.id}] #{message.subject}" - end - - # Notifies users about a new forum message. - # - # Example: - # Mailer.deliver_message_posted(message) - def self.deliver_message_posted(message) - users = message.notified_users - users |= message.root.notified_watchers - users |= message.board.notified_watchers - - users.each do |user| - message_posted(user, message).deliver_later - end - end - - # Builds a mail to user about a new wiki content. - def wiki_content_added(user, wiki_content) - redmine_headers 'Project' => wiki_content.project.identifier, - 'Wiki-Page-Id' => wiki_content.page.id - @author = wiki_content.author - message_id wiki_content - @wiki_content = wiki_content - @user = user - @wiki_content_url = url_for(:controller => 'wiki', :action => 'show', - :project_id => wiki_content.project, - :id => wiki_content.page.title) - mail :to => user, - :subject => "[#{wiki_content.project.name}] #{l(:mail_subject_wiki_content_added, :id => wiki_content.page.pretty_title)}" - end - - # Notifies users about a new wiki content (wiki page added). - # - # Example: - # Mailer.deliver_wiki_content_added(wiki_content) - def self.deliver_wiki_content_added(wiki_content) - users = wiki_content.notified_users | wiki_content.page.wiki.notified_watchers - users.each do |user| - wiki_content_added(user, wiki_content).deliver_later - end - end - - # Builds a mail to user about an update of the specified wiki content. - def wiki_content_updated(user, wiki_content) - redmine_headers 'Project' => wiki_content.project.identifier, - 'Wiki-Page-Id' => wiki_content.page.id - @author = wiki_content.author - message_id wiki_content - @wiki_content = wiki_content - @user = user - @wiki_content_url = url_for(:controller => 'wiki', :action => 'show', - :project_id => wiki_content.project, - :id => wiki_content.page.title) - @wiki_diff_url = url_for(:controller => 'wiki', :action => 'diff', - :project_id => wiki_content.project, :id => wiki_content.page.title, - :version => wiki_content.version) - mail :to => user, - :subject => "[#{wiki_content.project.name}] #{l(:mail_subject_wiki_content_updated, :id => wiki_content.page.pretty_title)}" - end - - # Notifies users about the update of the specified wiki content - # - # Example: - # Mailer.deliver_wiki_content_updated(wiki_content) - def self.deliver_wiki_content_updated(wiki_content) - users = wiki_content.notified_users - users |= wiki_content.page.notified_watchers - users |= wiki_content.page.wiki.notified_watchers - - users.each do |user| - wiki_content_updated(user, wiki_content).deliver_later - end - end - - # Builds a mail to user about his account information. - def account_information(user, password) - @user = user - @password = password - @login_url = url_for(:controller => 'account', :action => 'login') - mail :to => user.mail, - :subject => l(:mail_subject_register, Setting.app_title) - end - - # Notifies user about his account information. - def self.deliver_account_information(user, password) - account_information(user, password).deliver_later - end - - # Builds a mail to user about an account activation request. - def account_activation_request(user, new_user) - @new_user = new_user - @url = url_for(:controller => 'users', :action => 'index', - :status => User::STATUS_REGISTERED, - :sort_key => 'created_on', :sort_order => 'desc') - mail :to => user, - :subject => l(:mail_subject_account_activation_request, Setting.app_title) - end - - # Notifies admin users that an account activation request needs - # their approval. - # - # Exemple: - # Mailer.deliver_account_activation_request(new_user) - def self.deliver_account_activation_request(new_user) - # Send the email to all active administrators - users = User.active.where(:admin => true) - users.each do |user| - account_activation_request(user, new_user).deliver_later - end - end - - # Builds a mail to notify user that his account was activated. - def account_activated(user) - @user = user - @login_url = url_for(:controller => 'account', :action => 'login') - mail :to => user.mail, - :subject => l(:mail_subject_register, Setting.app_title) - end - - # Notifies user that his account was activated. - # - # Exemple: - # Mailer.deliver_account_activated(user) - def self.deliver_account_activated(user) - account_activated(user).deliver_later - end - - # Builds a mail with the password recovery link. - def lost_password(user, token, recipient=nil) - recipient ||= user.mail - @token = token - @url = url_for(:controller => 'account', :action => 'lost_password', :token => token.value) - mail :to => recipient, - :subject => l(:mail_subject_lost_password, Setting.app_title) - end - - # Sends an email to user with a password recovery link. - # The email will be sent to the email address specifiedby recipient if provided. - # - # Exemple: - # Mailer.deliver_account_activated(user, token) - # Mailer.deliver_account_activated(user, token, 'foo@example.net') - def self.deliver_lost_password(user, token, recipient=nil) - lost_password(user, token, recipient).deliver_later - end - - # Notifies user that his password was updated by sender. - # - # Exemple: - # Mailer.deliver_password_updated(user, sender) - def self.deliver_password_updated(user, sender) - # Don't send a notification to the dummy email address when changing the password - # of the default admin account which is required after the first login - # TODO: maybe not the best way to handle this - return if user.admin? && user.login == 'admin' && user.mail == 'admin@example.net' - - deliver_security_notification( - user, - sender, - message: :mail_body_password_updated, - title: :button_change_password, - url: {controller: 'my', action: 'password'} - ) - end - - # Builds a mail to user with his account activation link. - def register(user, token) - @token = token - @url = url_for(:controller => 'account', :action => 'activate', :token => token.value) - mail :to => user.mail, - :subject => l(:mail_subject_register, Setting.app_title) - end - - # Sends an mail to user with his account activation link. - # - # Exemple: - # Mailer.deliver_register(user, token) - def self.deliver_register(user, token) - register(user, token).deliver_later - end - - # Build a mail to user and the additional recipients given in - # options[:recipients] about a security related event made by sender. - # - # Example: - # security_notification(user, - # sender, - # message: :mail_body_security_notification_add, - # field: :field_mail, - # value: address - # ) => Mail::Message object - def security_notification(user, sender, options={}) - @sender = sender - redmine_headers 'Sender' => sender.login - @message = - l(options[:message], - field: (options[:field] && l(options[:field])), - value: options[:value]) - @title = options[:title] && l(options[:title]) - @remote_ip = options[:remote_ip] || @sender.remote_ip - @url = options[:url] && (options[:url].is_a?(Hash) ? url_for(options[:url]) : options[:url]) - redmine_headers 'Url' => @url - mail :to => [user, *options[:recipients]].uniq, - :subject => "[#{Setting.app_title}] #{l(:mail_subject_security_notification)}" - end - - # Notifies the given users about a security related event made by sender. - # - # You can specify additional recipients in options[:recipients]. These will be - # added to all generated mails for all given users. Usually, you'll want to - # give only a single user when setting the additional recipients. - # - # Example: - # Mailer.deliver_security_notification(users, - # sender, - # message: :mail_body_security_notification_add, - # field: :field_mail, - # value: address - # ) - def self.deliver_security_notification(users, sender, options={}) - # Symbols cannot be serialized: - # ActiveJob::SerializationError: Unsupported argument type: Symbol - options = options.transform_values {|v| v.is_a?(Symbol) ? v.to_s : v } - # sender's remote_ip would be lost on serialization/deserialization - # we have to pass it with options - options[:remote_ip] ||= sender.remote_ip - - Array.wrap(users).each do |user| - security_notification(user, sender, options).deliver_later - end - end - - # Build a mail to user about application settings changes made by sender. - def settings_updated(user, sender, changes, options={}) - @sender = sender - redmine_headers 'Sender' => sender.login - @changes = changes - @remote_ip = options[:remote_ip] || @sender.remote_ip - @url = url_for(controller: 'settings', action: 'index') - mail :to => user, - :subject => "[#{Setting.app_title}] #{l(:mail_subject_security_notification)}" - end - - # Notifies admins about application settings changes made by sender, where - # changes is an array of settings names. - # - # Exemple: - # Mailer.deliver_settings_updated(sender, [:login_required, :self_registration]) - def self.deliver_settings_updated(sender, changes, options={}) - return unless changes.present? - - # Symbols cannot be serialized: - # ActiveJob::SerializationError: Unsupported argument type: Symbol - changes = changes.map(&:to_s) - # sender's remote_ip would be lost on serialization/deserialization - # we have to pass it with options - options[:remote_ip] ||= sender.remote_ip - - users = User.active.where(admin: true).to_a - users.each do |user| - settings_updated(user, sender, changes, options).deliver_later - end - end - - # Build a test email to user. - def test_email(user) - @url = url_for(:controller => 'welcome') - mail :to => user, - :subject => 'Redmine test' - end - - # Send a test email to user. Will raise error that may occur during delivery. - # - # Exemple: - # Mailer.deliver_test_email(user) - def self.deliver_test_email(user) - raise_delivery_errors_was = self.raise_delivery_errors - self.raise_delivery_errors = true - # Email must be delivered synchronously so we can catch errors - test_email(user).deliver_now - ensure - self.raise_delivery_errors = raise_delivery_errors_was - end - - # Builds a reminder mail to user about issues that are due in the next days. - def reminder(user, issues, days) - @issues = issues - @days = days - @issues_url = url_for(:controller => 'issues', :action => 'index', - :set_filter => 1, :assigned_to_id => 'me', - :sort => 'due_date:asc') - query = IssueQuery.new(:name => '_') - query.add_filter('assigned_to_id', '=', ['me']) - @open_issues_count = query.issue_count - mail :to => user, - :subject => l(:mail_subject_reminder, :count => issues.size, :days => days) - end - - # Sends reminders to issue assignees - # Available options: - # * :days => how many days in the future to remind about (defaults to 7) - # * :tracker => id of tracker for filtering issues (defaults to all trackers) - # * :project => id or identifier of project to process (defaults to all projects) - # * :users => array of user/group ids who should be reminded - # * :version => name of target version for filtering issues (defaults to none) - def self.reminders(options={}) - days = options[:days] || 7 - project = options[:project] ? Project.find(options[:project]) : nil - tracker = options[:tracker] ? Tracker.find(options[:tracker]) : nil - target_version_id = options[:version] ? Version.named(options[:version]).pluck(:id) : nil - if options[:version] && target_version_id.blank? - raise ActiveRecord::RecordNotFound.new("Couldn't find Version named #{options[:version]}") - end - user_ids = options[:users] - - scope = Issue.open.where("#{Issue.table_name}.assigned_to_id IS NOT NULL" + - " AND #{Project.table_name}.status = #{Project::STATUS_ACTIVE}" + - " AND #{Issue.table_name}.due_date <= ?", days.day.from_now.to_date - ) - scope = scope.where(:assigned_to_id => user_ids) if user_ids.present? - scope = scope.where(:project_id => project.id) if project - scope = scope.where(:fixed_version_id => target_version_id) if target_version_id.present? - scope = scope.where(:tracker_id => tracker.id) if tracker - issues_by_assignee = scope.includes(:status, :assigned_to, :project, :tracker). - group_by(&:assigned_to) - issues_by_assignee.keys.each do |assignee| - if assignee.is_a?(Group) - assignee.users.each do |user| - issues_by_assignee[user] ||= [] - issues_by_assignee[user] += issues_by_assignee[assignee] - end - end - end - - issues_by_assignee.each do |assignee, issues| - if assignee.is_a?(User) && assignee.active? && issues.present? - visible_issues = issues.select {|i| i.visible?(assignee)} - visible_issues.sort!{|a, b| (a.due_date <=> b.due_date).nonzero? || (a.id <=> b.id)} - reminder(assignee, visible_issues, days).deliver_later if visible_issues.present? - end - end - end - - # Activates/desactivates email deliveries during +block+ - def self.with_deliveries(enabled = true, &block) - was_enabled = ActionMailer::Base.perform_deliveries - ActionMailer::Base.perform_deliveries = !!enabled - yield - ensure - ActionMailer::Base.perform_deliveries = was_enabled - end - - # Execute the given block with inline sending of emails if the default Async - # queue is used for the mailer. See the Rails guide: - # Using the asynchronous queue from a Rake task will generally not work because - # Rake will likely end, causing the in-process thread pool to be deleted, before - # any/all of the .deliver_later emails are processed - def self.with_synched_deliveries(&block) - adapter = ActionMailer::DeliveryJob.queue_adapter - if adapter.is_a?(ActiveJob::QueueAdapters::AsyncAdapter) - ActionMailer::DeliveryJob.queue_adapter = ActiveJob::QueueAdapters::InlineAdapter.new - end - yield - ensure - ActionMailer::DeliveryJob.queue_adapter = adapter - end - - def mail(headers={}, &block) - # Add a display name to the From field if Setting.mail_from does not - # include it - begin - mail_from = Mail::Address.new(Setting.mail_from) - if mail_from.display_name.blank? && mail_from.comments.blank? - mail_from.display_name = - @author&.logged? ? @author.name : Setting.app_title - end - from = mail_from.format - list_id = "<#{mail_from.address.to_s.tr('@', '.')}>" - rescue Mail::Field::IncompleteParseError - # Use Setting.mail_from as it is if Mail::Address cannot parse it - # (probably the emission address is not RFC compliant) - from = Setting.mail_from.to_s - list_id = "<#{from.tr('@', '.')}>" - end - - headers.reverse_merge! 'X-Mailer' => 'Redmine', - 'X-Redmine-Host' => Setting.host_name, - 'X-Redmine-Site' => Setting.app_title, - 'X-Auto-Response-Suppress' => 'All', - 'Auto-Submitted' => 'auto-generated', - 'From' => from, - 'List-Id' => list_id - - # Replaces users with their email addresses - [:to, :cc, :bcc].each do |key| - if headers[key].present? - headers[key] = self.class.email_addresses(headers[key]) - end - end - - # Removes the author from the recipients and cc - # if the author does not want to receive notifications - # about what the author do - if @author&.logged? && @author.pref.no_self_notified - addresses = @author.mails - headers[:to] -= addresses if headers[:to].is_a?(Array) - headers[:cc] -= addresses if headers[:cc].is_a?(Array) - end - - if @author&.logged? - redmine_headers 'Sender' => @author.login - end - - # Blind carbon copy recipients - if Setting.bcc_recipients? - headers[:bcc] = [headers[:to], headers[:cc]].flatten.uniq.reject(&:blank?) - headers[:to] = nil - headers[:cc] = nil - end - - if @message_id_object - headers[:message_id] = "<#{self.class.message_id_for(@message_id_object, @user)}>" - end - if @references_objects - headers[:references] = @references_objects.collect {|o| "<#{self.class.references_for(o, @user)}>"}.join(' ') - end - - if block_given? - super headers, &block - else - super headers do |format| - format.text - format.html unless Setting.plain_text_mail? - end - end - end - - def self.deliver_mail(mail) - return false if mail.to.blank? && mail.cc.blank? && mail.bcc.blank? - begin - # Log errors when raise_delivery_errors is set to false, Rails does not - mail.raise_delivery_errors = true - super - rescue => e - if ActionMailer::Base.raise_delivery_errors - raise e - else - Rails.logger.error "Email delivery error: #{e.message}" - end - end - end - - # Returns an array of email addresses to notify by - # replacing users in arg with their notified email addresses - # - # Example: - # Mailer.email_addresses(users) - # => ["foo@example.net", "bar@example.net"] - def self.email_addresses(arg) - arr = Array.wrap(arg) - mails = arr.reject {|a| a.is_a? Principal} - users = arr - mails - if users.any? - mails += EmailAddress. - where(:user_id => users.map(&:id)). - where("is_default = ? OR notify = ?", true, true). - pluck(:address) - end - mails - end - - private - - # Appends a Redmine header field (name is prepended with 'X-Redmine-') - def redmine_headers(h) - h.each { |k,v| headers["X-Redmine-#{k}"] = v.to_s } - end - - # Singleton class method is public - class << self - def token_for(object, user) - timestamp = object.send(object.respond_to?(:created_on) ? :created_on : :updated_on) - hash = [ - "redmine", - "#{object.class.name.demodulize.underscore}-#{object.id}", - timestamp.utc.strftime("%Y%m%d%H%M%S") - ] - hash << user.id if user - host = Setting.mail_from.to_s.strip.gsub(%r{^.*@|>}, '') - host = "#{::Socket.gethostname}.redmine" if host.empty? - "#{hash.join('.')}@#{host}" - end - - # Returns a Message-Id for the given object - def message_id_for(object, user) - token_for(object, user) - end - - # Returns a uniq token for a given object referenced by all notifications - # related to this object - def references_for(object, user) - token_for(object, user) - end - end - - def message_id(object) - @message_id_object = object - end - - def references(object) - @references_objects ||= [] - @references_objects << object - end -end diff --git a/app/models/member.rb b/app/models/member.rb deleted file mode 100644 index ad049a7..0000000 --- a/app/models/member.rb +++ /dev/null @@ -1,230 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class Member < ActiveRecord::Base - belongs_to :user - belongs_to :principal, :foreign_key => 'user_id' - has_many :member_roles, :dependent => :destroy - has_many :roles, lambda { distinct }, :through => :member_roles - belongs_to :project - - validates_presence_of :principal, :project - validates_uniqueness_of :user_id, :scope => :project_id - validate :validate_role - - before_destroy :set_issue_category_nil, :remove_from_project_default_assigned_to - - scope :active, lambda { joins(:principal).where(:users => {:status => Principal::STATUS_ACTIVE})} - - # Sort by first role and principal - scope :sorted, lambda { - includes(:member_roles, :roles, :principal). - reorder("#{Role.table_name}.position"). - order(Principal.fields_for_order_statement) - } - scope :sorted_by_project, lambda { - includes(:project). - reorder("#{Project.table_name}.lft") - } - - alias :base_reload :reload - def reload(*args) - @managed_roles = nil - base_reload(*args) - end - - def role - end - - def role= - end - - def name - self.user.name - end - - alias :base_role_ids= :role_ids= - def role_ids=(arg) - ids = (arg || []).collect(&:to_i) - [0] - # Keep inherited roles - ids += member_roles.select {|mr| !mr.inherited_from.nil?}.collect(&:role_id) - - new_role_ids = ids - role_ids - # Add new roles - new_role_ids.each {|id| member_roles << MemberRole.new(:role_id => id, :member => self) } - # Remove roles (Rails' #role_ids= will not trigger MemberRole#on_destroy) - member_roles_to_destroy = member_roles.select {|mr| !ids.include?(mr.role_id)} - if member_roles_to_destroy.any? - member_roles_to_destroy.each(&:destroy) - end - end - - def <=>(member) - a, b = roles.sort, member.roles.sort - if a == b - if principal - principal <=> member.principal - else - 1 - end - elsif a.any? - b.any? ? a <=> b : -1 - else - 1 - end - end - - # Set member role ids ignoring any change to roles that - # user is not allowed to manage - def set_editable_role_ids(ids, user=User.current) - ids = (ids || []).collect(&:to_i) - [0] - editable_role_ids = user.managed_roles(project).map(&:id) - untouched_role_ids = self.role_ids - editable_role_ids - touched_role_ids = ids & editable_role_ids - self.role_ids = untouched_role_ids + touched_role_ids - end - - # Returns true if one of the member roles is inherited - def any_inherited_role? - member_roles.any? {|mr| mr.inherited_from} - end - - # Returns true if the member has the role and if it's inherited - def has_inherited_role?(role) - member_roles.any? {|mr| mr.role_id == role.id && mr.inherited_from.present?} - end - - # Returns an Array of Project and/or Group from which the given role - # was inherited, or an empty Array if the role was not inherited - def role_inheritance(role) - member_roles. - select {|mr| mr.role_id == role.id && mr.inherited_from.present?}. - map {|mr| mr.inherited_from_member_role.try(:member)}. - compact. - map {|m| m.project == project ? m.principal : m.project} - end - - # Returns true if the member's role is editable by user - def role_editable?(role, user=User.current) - if has_inherited_role?(role) - false - else - user.managed_roles(project).include?(role) - end - end - - # Returns true if the member is deletable by user - def deletable?(user=User.current) - if any_inherited_role? - false - else - roles & user.managed_roles(project) == roles - end - end - - # Destroys the member - def destroy - member_roles.reload.each(&:destroy_without_member_removal) - super - end - - # Returns true if the member is user or is a group - # that includes user - def include?(user) - if principal.is_a?(Group) - !user.nil? && user.groups.include?(principal) - else - self.principal == user - end - end - - def set_issue_category_nil - if user_id && project_id - # remove category based auto assignments for this member - IssueCategory.where(["project_id = ? AND assigned_to_id = ?", project_id, user_id]). - update_all("assigned_to_id = NULL") - end - end - - def remove_from_project_default_assigned_to - if user_id && project && project.default_assigned_to_id == user_id - # remove project based auto assignments for this member - project.update_column(:default_assigned_to_id, nil) - end - end - - # Returns the roles that the member is allowed to manage - # in the project the member belongs to - def managed_roles - @managed_roles ||= begin - if principal.try(:admin?) - Role.givable.to_a - else - members_management_roles = roles.select do |role| - role.has_permission?(:manage_members) - end - if members_management_roles.empty? - [] - elsif members_management_roles.any?(&:all_roles_managed?) - Role.givable.to_a - else - members_management_roles.map(&:managed_roles).reduce(&:|) - end - end - end - end - - # Creates memberships for principal with the attributes, or add the roles - # if the membership already exists. - # * project_ids : one or more project ids - # * role_ids : ids of the roles to give to each membership - # - # Example: - # Member.create_principal_memberships(user, :project_ids => [2, 5], :role_ids => [1, 3] - def self.create_principal_memberships(principal, attributes) - members = [] - if attributes - project_ids = Array.wrap(attributes[:project_ids] || attributes[:project_id]) - role_ids = Array.wrap(attributes[:role_ids]) - project_ids.each do |project_id| - member = Member.find_or_new(project_id, principal) - member.role_ids |= role_ids - member.save - members << member - end - end - members - end - - # Finds or initializes a Member for the given project and principal - def self.find_or_new(project, principal) - project_id = project.is_a?(Project) ? project.id : project - principal_id = principal.is_a?(Principal) ? principal.id : principal - - member = Member.find_by_project_id_and_user_id(project_id, principal_id) - member ||= Member.new(:project_id => project_id, :user_id => principal_id) - member - end - - protected - - def validate_role - errors.add(:role, :empty) if member_roles.empty? && roles.empty? - end -end diff --git a/app/models/member_role.rb b/app/models/member_role.rb deleted file mode 100644 index 86c070a..0000000 --- a/app/models/member_role.rb +++ /dev/null @@ -1,83 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class MemberRole < ActiveRecord::Base - belongs_to :member - belongs_to :role - - after_destroy :remove_member_if_empty - - after_create :add_role_to_group_users, :add_role_to_subprojects - after_destroy :remove_inherited_roles - - validates_presence_of :role - validate :validate_role_member - - def validate_role_member - errors.add :role_id, :invalid if role && !role.member? - end - - def inherited? - !inherited_from.nil? - end - - # Returns the MemberRole from which self was inherited, or nil - def inherited_from_member_role - MemberRole.find_by_id(inherited_from) if inherited_from - end - - # Destroys the MemberRole without destroying its Member if it doesn't have - # any other roles - def destroy_without_member_removal - @member_removal = false - destroy - end - - private - - def remove_member_if_empty - if @member_removal != false && member.roles.empty? - member.destroy - end - end - - def add_role_to_group_users - if member.principal.is_a?(Group) && !inherited? - member.principal.users.each do |user| - user_member = Member.find_or_new(member.project_id, user.id) - user_member.member_roles << MemberRole.new(:role => role, :inherited_from => id) - user_member.save! - end - end - end - - def add_role_to_subprojects - member.project.children.each do |subproject| - if subproject.inherit_members? - child_member = Member.find_or_new(subproject.id, member.user_id) - child_member.member_roles << MemberRole.new(:role => role, :inherited_from => id) - child_member.save! - end - end - end - - def remove_inherited_roles - MemberRole.where(:inherited_from => id).destroy_all - end -end diff --git a/app/models/message.rb b/app/models/message.rb deleted file mode 100644 index f487854..0000000 --- a/app/models/message.rb +++ /dev/null @@ -1,131 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class Message < ActiveRecord::Base - include Redmine::SafeAttributes - belongs_to :board - belongs_to :author, :class_name => 'User' - acts_as_tree :counter_cache => :replies_count, :order => "#{Message.table_name}.created_on ASC" - acts_as_attachable - belongs_to :last_reply, :class_name => 'Message' - - acts_as_searchable :columns => ['subject', 'content'], - :preload => {:board => :project}, - :project_key => "#{Board.table_name}.project_id" - - acts_as_event :title => Proc.new {|o| "#{o.board.name}: #{o.subject}"}, - :description => :content, - :group => :parent, - :type => Proc.new {|o| o.parent_id.nil? ? 'message' : 'reply'}, - :url => - Proc.new {|o| - {:controller => 'messages', :action => 'show', - :board_id => o.board_id}. - merge( - if o.parent_id.nil? - {:id => o.id} - else - {:id => o.parent_id, :r => o.id, :anchor => "message-#{o.id}"} - end) - } - - acts_as_activity_provider :scope => preload({:board => :project}, :author), - :author_key => :author_id - acts_as_watchable - - validates_presence_of :board, :subject, :content - validates_length_of :subject, :maximum => 255 - validate :cannot_reply_to_locked_topic, :on => :create - - after_create :add_author_as_watcher, :reset_counters! - after_update :update_messages_board - after_destroy :reset_counters! - after_create_commit :send_notification - - scope :visible, lambda {|*args| - joins(:board => :project). - where(Project.allowed_to_condition(args.shift || User.current, :view_messages, *args)) - } - - safe_attributes 'subject', 'content' - safe_attributes 'locked', 'sticky', 'board_id', - :if => lambda {|message, user| - user.allowed_to?(:edit_messages, message.project) - } - - def visible?(user=User.current) - !user.nil? && user.allowed_to?(:view_messages, project) - end - - def cannot_reply_to_locked_topic - # Can not reply to a locked topic - errors.add :base, 'Topic is locked' if root.locked? && self != root - end - - def update_messages_board - if saved_change_to_board_id? - Message.where(["id = ? OR parent_id = ?", root.id, root.id]).update_all({:board_id => board_id}) - Board.reset_counters!(board_id_before_last_save) - Board.reset_counters!(board_id) - end - end - - def reset_counters! - if parent && parent.id - Message.where({:id => parent.id}).update_all({:last_reply_id => parent.children.maximum(:id)}) - end - board.reset_counters! - end - - def sticky=(arg) - write_attribute :sticky, (arg == true || arg.to_s == '1' ? 1 : 0) - end - - def sticky? - sticky == 1 - end - - def project - board.project - end - - def editable_by?(usr) - usr && usr.logged? && (usr.allowed_to?(:edit_messages, project) || (self.author == usr && usr.allowed_to?(:edit_own_messages, project))) - end - - def destroyable_by?(usr) - usr && usr.logged? && (usr.allowed_to?(:delete_messages, project) || (self.author == usr && usr.allowed_to?(:delete_own_messages, project))) - end - - def notified_users - project.notified_users.reject {|user| !visible?(user)} - end - - private - - def add_author_as_watcher - Watcher.create(:watchable => self.root, :user => author) - end - - def send_notification - if Setting.notified_events.include?('message_posted') - Mailer.deliver_message_posted(self) - end - end -end diff --git a/app/models/news.rb b/app/models/news.rb deleted file mode 100644 index 3ad43bf..0000000 --- a/app/models/news.rb +++ /dev/null @@ -1,99 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class News < ActiveRecord::Base - include Redmine::SafeAttributes - belongs_to :project - belongs_to :author, :class_name => 'User' - has_many :comments, lambda {order("created_on")}, :as => :commented, :dependent => :delete_all - - validates_presence_of :title, :description - validates_length_of :title, :maximum => 60 - validates_length_of :summary, :maximum => 255 - - acts_as_attachable :edit_permission => :manage_news, - :delete_permission => :manage_news - acts_as_searchable :columns => ['title', 'summary', "#{table_name}.description"], - :preload => :project - acts_as_event :url => Proc.new {|o| {:controller => 'news', :action => 'show', :id => o.id}} - acts_as_activity_provider :scope => preload(:project, :author), - :author_key => :author_id - acts_as_watchable - - after_create :add_author_as_watcher - after_create_commit :send_notification - - scope :visible, lambda {|*args| - joins(:project). - where(Project.allowed_to_condition(args.shift || User.current, :view_news, *args)) - } - - safe_attributes 'title', 'summary', 'description' - - def visible?(user=User.current) - !user.nil? && user.allowed_to?(:view_news, project) - end - - # Returns true if the news can be commented by user - def commentable?(user=User.current) - user.allowed_to?(:comment_news, project) - end - - def notified_users - project.users.select {|user| user.notify_about?(self) && user.allowed_to?(:view_news, project)} - end - - def recipients - notified_users.map(&:mail) - end - - # Returns the users that should be cc'd when a new news is added - def notified_watchers_for_added_news - watchers = [] - if m = project.enabled_module('news') - watchers = m.notified_watchers - unless project.is_public? - watchers = watchers.select {|user| project.users.include?(user)} - end - end - watchers - end - - # Returns the email addresses that should be cc'd when a new news is added - def cc_for_added_news - notified_watchers_for_added_news.map(&:mail) - end - - # returns latest news for projects visible by user - def self.latest(user = User.current, count = 5) - visible(user).preload(:author, :project).order("#{News.table_name}.created_on DESC").limit(count).to_a - end - - private - - def add_author_as_watcher - Watcher.create(:watchable => self, :user => author) - end - - def send_notification - if Setting.notified_events.include?('news_added') - Mailer.deliver_news_added(self) - end - end -end diff --git a/app/models/principal.rb b/app/models/principal.rb deleted file mode 100644 index d415810..0000000 --- a/app/models/principal.rb +++ /dev/null @@ -1,220 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class Principal < ActiveRecord::Base - self.table_name = "#{table_name_prefix}users#{table_name_suffix}" - - # Account statuses - STATUS_ANONYMOUS = 0 - STATUS_ACTIVE = 1 - STATUS_REGISTERED = 2 - STATUS_LOCKED = 3 - - class_attribute :valid_statuses - - has_many :members, :foreign_key => 'user_id', :dependent => :destroy - has_many :memberships, - lambda {joins(:project).where.not(:projects => {:status => Project::STATUS_ARCHIVED})}, - :class_name => 'Member', - :foreign_key => 'user_id' - has_many :projects, :through => :memberships - has_many :issue_categories, :foreign_key => 'assigned_to_id', :dependent => :nullify - - validate :validate_status - - # Groups and active users - scope :active, lambda { where(:status => STATUS_ACTIVE) } - - scope :visible, lambda {|*args| - user = args.first || User.current - - if user.admin? - all - else - view_all_active = false - if user.memberships.to_a.any? - view_all_active = user.memberships.any? {|m| m.roles.any? {|r| r.users_visibility == 'all'}} - else - view_all_active = user.builtin_role.users_visibility == 'all' - end - - if view_all_active - active - else - # self and members of visible projects - active.where( - "#{table_name}.id = ? OR #{table_name}.id IN (SELECT user_id FROM #{Member.table_name} WHERE project_id IN (?))", - user.id, user.visible_project_ids - ) - end - end - } - - scope :like, lambda {|q| - q = q.to_s - if q.blank? - where({}) - else - pattern = "%#{q}%" - sql = +"LOWER(#{table_name}.login) LIKE LOWER(:p)" - sql << " OR #{table_name}.id IN (SELECT user_id FROM #{EmailAddress.table_name} WHERE LOWER(address) LIKE LOWER(:p))" - params = {:p => pattern} - - tokens = q.split(/\s+/).reject(&:blank?).map { |token| "%#{token}%" } - if tokens.present? - sql << ' OR (' - sql << tokens.map.with_index do |token, index| - params.merge!(:"token_#{index}" => token) - "(LOWER(#{table_name}.firstname) LIKE LOWER(:token_#{index}) OR LOWER(#{table_name}.lastname) LIKE LOWER(:token_#{index}))" - end.join(' AND ') - sql << ')' - end - - where(sql, params) - end - } - - # Principals that are members of a collection of projects - scope :member_of, lambda {|projects| - projects = [projects] if projects.is_a?(Project) - if projects.blank? - where("1=0") - else - ids = projects.map(&:id) - # include active and locked users - where(:status => [STATUS_LOCKED, STATUS_ACTIVE]). - where("#{Principal.table_name}.id IN (SELECT DISTINCT user_id FROM #{Member.table_name} WHERE project_id IN (?))", ids) - end - } - # Principals that are not members of projects - scope :not_member_of, lambda {|projects| - projects = [projects] unless projects.is_a?(Array) - if projects.empty? - where("1=0") - else - ids = projects.map(&:id) - where("#{Principal.table_name}.id NOT IN (SELECT DISTINCT user_id FROM #{Member.table_name} WHERE project_id IN (?))", ids) - end - } - scope :sorted, lambda { order(*Principal.fields_for_order_statement)} - - before_create :set_default_empty_values - before_destroy :nullify_projects_default_assigned_to - - def reload(*args) - @project_ids = nil - super - end - - def name(formatter = nil) - to_s - end - - def mail=(*args) - nil - end - - def mail - nil - end - - def visible?(user=User.current) - Principal.visible(user).find_by(:id => id) == self - end - - # Returns true if the principal is a member of project - def member_of?(project) - project.is_a?(Project) && project_ids.include?(project.id) - end - - # Returns an array of the project ids that the principal is a member of - def project_ids - @project_ids ||= super.freeze - end - - def <=>(principal) - if principal.nil? - -1 - elsif self.class.name == principal.class.name - self.to_s.casecmp(principal.to_s) - else - # groups after users - principal.class.name <=> self.class.name - end - end - - # Returns an array of fields names than can be used to make an order statement for principals. - # Users are sorted before Groups. - # Examples: - def self.fields_for_order_statement(table=nil) - table ||= table_name - columns = ['type DESC'] + (User.name_formatter[:order] - ['id']) + ['lastname', 'id'] - columns.uniq.map {|field| "#{table}.#{field}"} - end - - # Returns the principal that matches the keyword among principals - def self.detect_by_keyword(principals, keyword) - keyword = keyword.to_s - return nil if keyword.blank? - - principal = nil - principal ||= principals.detect {|a| keyword.casecmp(a.login.to_s) == 0} - principal ||= principals.detect {|a| keyword.casecmp(a.mail.to_s) == 0} - - if principal.nil? && / /.match?(keyword) - firstname, lastname = *(keyword.split) # "First Last Throwaway" - principal ||= - principals.detect {|a| - a.is_a?(User) && - firstname.casecmp(a.firstname.to_s) == 0 && - lastname.casecmp(a.lastname.to_s) == 0 - } - end - if principal.nil? - principal ||= principals.detect {|a| keyword.casecmp(a.name) == 0} - end - principal - end - - def nullify_projects_default_assigned_to - Project.where(default_assigned_to: self).update_all(default_assigned_to_id: nil) - end - - protected - - # Make sure we don't try to insert NULL values (see #4632) - def set_default_empty_values - self.login ||= '' - self.hashed_password ||= '' - self.firstname ||= '' - self.lastname ||= '' - true - end - - def validate_status - if status_changed? && self.class.valid_statuses.present? - unless self.class.valid_statuses.include?(status) - errors.add :status, :invalid - end - end - end -end - -require_dependency "user" -require_dependency "group" diff --git a/app/models/project.rb b/app/models/project.rb deleted file mode 100644 index 4b9812b..0000000 --- a/app/models/project.rb +++ /dev/null @@ -1,1184 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class Project < ActiveRecord::Base - include Redmine::SafeAttributes - include Redmine::NestedSet::ProjectNestedSet - - # Project statuses - STATUS_ACTIVE = 1 - STATUS_CLOSED = 5 - STATUS_ARCHIVED = 9 - - # Maximum length for project identifiers - IDENTIFIER_MAX_LENGTH = 100 - - # Specific overridden Activities - has_many :time_entry_activities - has_many :memberships, :class_name => 'Member', :inverse_of => :project - # Memberships of active users only - has_many :members, - lambda { joins(:principal).where(:users => {:type => 'User', :status => Principal::STATUS_ACTIVE}) } - has_many :enabled_modules, :dependent => :delete_all - has_and_belongs_to_many :trackers, lambda {order(:position)} - has_many :issues, :dependent => :destroy - has_many :issue_changes, :through => :issues, :source => :journals - has_many :versions, :dependent => :destroy - belongs_to :default_version, :class_name => 'Version' - belongs_to :default_assigned_to, :class_name => 'Principal' - has_many :time_entries, :dependent => :destroy - has_many :queries, :dependent => :delete_all - has_many :documents, :dependent => :destroy - has_many :news, lambda {includes(:author)}, :dependent => :destroy - has_many :issue_categories, lambda {order(:name)}, :dependent => :delete_all - has_many :boards, lambda {order(:position)}, :inverse_of => :project, :dependent => :destroy - has_one :repository, lambda {where(:is_default => true)} - has_many :repositories, :dependent => :destroy - has_many :changesets, :through => :repository - has_one :wiki, :dependent => :destroy - # Custom field for the project issues - has_and_belongs_to_many :issue_custom_fields, - lambda {order(:position)}, - :class_name => 'IssueCustomField', - :join_table => "#{table_name_prefix}custom_fields_projects#{table_name_suffix}", - :association_foreign_key => 'custom_field_id' - - acts_as_attachable :view_permission => :view_files, - :edit_permission => :manage_files, - :delete_permission => :manage_files - - acts_as_customizable - acts_as_searchable :columns => ['name', 'identifier', 'description'], :project_key => "#{Project.table_name}.id", :permission => nil - acts_as_event :title => Proc.new {|o| "#{l(:label_project)}: #{o.name}"}, - :url => Proc.new {|o| {:controller => 'projects', :action => 'show', :id => o}}, - :author => nil - - validates_presence_of :name, :identifier - validates_uniqueness_of :identifier, :if => Proc.new {|p| p.identifier_changed?} - validates_length_of :name, :maximum => 255 - validates_length_of :homepage, :maximum => 255 - validates_length_of :identifier, :maximum => IDENTIFIER_MAX_LENGTH - # downcase letters, digits, dashes but not digits only - validates_format_of :identifier, :with => /\A(?!\d+$)[a-z0-9\-_]*\z/, :if => Proc.new { |p| p.identifier_changed? } - # reserved words - validates_exclusion_of :identifier, :in => %w( new ) - validate :validate_parent - - after_save :update_inherited_members, :if => Proc.new {|project| project.saved_change_to_inherit_members?} - after_save :remove_inherited_member_roles, :add_inherited_member_roles, :if => Proc.new {|project| project.saved_change_to_parent_id?} - after_update :update_versions_from_hierarchy_change, :if => Proc.new {|project| project.saved_change_to_parent_id?} - before_destroy :delete_all_members - - scope :has_module, lambda {|mod| - where("#{Project.table_name}.id IN (SELECT em.project_id FROM #{EnabledModule.table_name} em WHERE em.name=?)", mod.to_s) - } - scope :active, lambda { where(:status => STATUS_ACTIVE) } - scope :status, lambda {|arg| where(arg.blank? ? nil : {:status => arg.to_i}) } - scope :all_public, lambda { where(:is_public => true) } - scope :visible, lambda {|*args| where(Project.visible_condition(args.shift || User.current, *args)) } - scope :allowed_to, lambda {|*args| - user = args.first.is_a?(Symbol) ? User.current : args.shift - permission = args.shift - where(Project.allowed_to_condition(user, permission, *args)) - } - scope :like, lambda {|arg| - if arg.present? - pattern = "%#{arg.to_s.strip}%" - where("LOWER(identifier) LIKE LOWER(:p) OR LOWER(name) LIKE LOWER(:p)", :p => pattern) - end - } - scope :sorted, lambda {order(:lft)} - scope :having_trackers, lambda { - where("#{Project.table_name}.id IN (SELECT DISTINCT project_id FROM #{table_name_prefix}projects_trackers#{table_name_suffix})") - } - - def initialize(attributes=nil, *args) - super - - initialized = (attributes || {}).stringify_keys - if !initialized.key?('identifier') && Setting.sequential_project_identifiers? - self.identifier = Project.next_identifier - end - if !initialized.key?('is_public') - self.is_public = Setting.default_projects_public? - end - if !initialized.key?('enabled_module_names') - self.enabled_module_names = Setting.default_projects_modules - end - if !initialized.key?('trackers') && !initialized.key?('tracker_ids') - default = Setting.default_projects_tracker_ids - if default.is_a?(Array) - self.trackers = Tracker.where(:id => default.map(&:to_i)).sorted.to_a - else - self.trackers = Tracker.sorted.to_a - end - end - end - - def identifier=(identifier) - super unless identifier_frozen? - end - - def identifier_frozen? - errors[:identifier].blank? && !(new_record? || identifier.blank?) - end - - # returns latest created projects - # non public projects will be returned only if user is a member of those - def self.latest(user=nil, count=5) - visible(user).limit(count). - order(:created_on => :desc). - where("#{table_name}.created_on >= ?", 30.days.ago). - to_a - end - - # Returns true if the project is visible to +user+ or to the current user. - def visible?(user=User.current) - user.allowed_to?(:view_project, self) - end - - # Returns a SQL conditions string used to find all projects visible by the specified user. - # - # Examples: - # Project.visible_condition(admin) => "projects.status = 1" - # Project.visible_condition(normal_user) => "((projects.status = 1) AND (projects.is_public = 1 OR projects.id IN (1,3,4)))" - # Project.visible_condition(anonymous) => "((projects.status = 1) AND (projects.is_public = 1))" - def self.visible_condition(user, options={}) - allowed_to_condition(user, :view_project, options) - end - - # Returns a SQL conditions string used to find all projects for which +user+ has the given +permission+ - # - # Valid options: - # * :skip_pre_condition => true don't check that the module is enabled (eg. when the condition is already set elsewhere in the query) - # * :project => project limit the condition to project - # * :with_subprojects => true limit the condition to project and its subprojects - # * :member => true limit the condition to the user projects - def self.allowed_to_condition(user, permission, options={}) - perm = Redmine::AccessControl.permission(permission) - base_statement = (perm && perm.read? ? "#{Project.table_name}.status <> #{Project::STATUS_ARCHIVED}" : "#{Project.table_name}.status = #{Project::STATUS_ACTIVE}") - if !options[:skip_pre_condition] && perm && perm.project_module - # If the permission belongs to a project module, make sure the module is enabled - base_statement += " AND EXISTS (SELECT 1 AS one FROM #{EnabledModule.table_name} em WHERE em.project_id = #{Project.table_name}.id AND em.name='#{perm.project_module}')" - end - if project = options[:project] - project_statement = project.project_condition(options[:with_subprojects]) - base_statement = "(#{project_statement}) AND (#{base_statement})" - end - - if user.admin? - base_statement - else - statement_by_role = {} - unless options[:member] - role = user.builtin_role - if role.allowed_to?(permission) - s = "#{Project.table_name}.is_public = #{connection.quoted_true}" - if user.id - group = role.anonymous? ? Group.anonymous : Group.non_member - principal_ids = [user.id, group.id].compact - s = "(#{s} AND #{Project.table_name}.id NOT IN (SELECT project_id FROM #{Member.table_name} WHERE user_id IN (#{principal_ids.join(',')})))" - end - statement_by_role[role] = s - end - end - user.project_ids_by_role.each do |role, project_ids| - if role.allowed_to?(permission) && project_ids.any? - statement_by_role[role] = "#{Project.table_name}.id IN (#{project_ids.join(',')})" - end - end - if statement_by_role.empty? - "1=0" - else - if block_given? - statement_by_role.each do |role, statement| - if s = yield(role, user) - statement_by_role[role] = "(#{statement} AND (#{s}))" - end - end - end - "((#{base_statement}) AND (#{statement_by_role.values.join(' OR ')}))" - end - end - end - - def override_roles(role) - @override_members ||= memberships. - joins(:principal). - where(:users => {:type => ['GroupAnonymous', 'GroupNonMember']}).to_a - - group_class = role.anonymous? ? GroupAnonymous : GroupNonMember - member = @override_members.detect {|m| m.principal.is_a? group_class} - member ? member.roles.to_a : [role] - end - - def principals - @principals ||= Principal.active.joins(:members).where("#{Member.table_name}.project_id = ?", id).distinct - end - - def users - @users ||= User.active.joins(:members).where("#{Member.table_name}.project_id = ?", id).distinct - end - - # Returns the Systemwide and project specific activities - def activities(include_inactive=false) - t = TimeEntryActivity.table_name - scope = TimeEntryActivity.where("#{t}.project_id IS NULL OR #{t}.project_id = ?", id) - - overridden_activity_ids = self.time_entry_activities.pluck(:parent_id).compact - if overridden_activity_ids.any? - scope = scope.where("#{t}.id NOT IN (?)", overridden_activity_ids) - end - unless include_inactive - scope = scope.active - end - scope - end - - # Creates or updates project time entry activities - def update_or_create_time_entry_activities(activities) - transaction do - activities.each do |id, activity| - update_or_create_time_entry_activity(id, activity) - end - end - end - - # Will create a new Project specific Activity or update an existing one - # - # This will raise a ActiveRecord::Rollback if the TimeEntryActivity - # does not successfully save. - def update_or_create_time_entry_activity(id, activity_hash) - if activity_hash.respond_to?(:has_key?) && activity_hash.has_key?('parent_id') - self.create_time_entry_activity_if_needed(activity_hash) - else - activity = project.time_entry_activities.find_by_id(id.to_i) - activity.update(activity_hash) if activity - end - end - - # Create a new TimeEntryActivity if it overrides a system TimeEntryActivity - # - # This will raise a ActiveRecord::Rollback if the TimeEntryActivity - # does not successfully save. - def create_time_entry_activity_if_needed(activity) - if activity['parent_id'] - parent_activity = TimeEntryActivity.find(activity['parent_id']) - activity['name'] = parent_activity.name - activity['position'] = parent_activity.position - if Enumeration.overriding_change?(activity, parent_activity) - project_activity = self.time_entry_activities.create(activity) - if project_activity.new_record? - raise ActiveRecord::Rollback, "Overriding TimeEntryActivity was not successfully saved" - else - self.time_entries. - where(:activity_id => parent_activity.id). - update_all(:activity_id => project_activity.id) - end - end - end - end - - # Returns a :conditions SQL string that can be used to find the issues associated with this project. - # - # Examples: - # project.project_condition(true) => "(projects.id = 1 OR (projects.lft > 1 AND projects.rgt < 10))" - # project.project_condition(false) => "projects.id = 1" - def project_condition(with_subprojects) - cond = "#{Project.table_name}.id = #{id}" - cond = "(#{cond} OR (#{Project.table_name}.lft > #{lft} AND #{Project.table_name}.rgt < #{rgt}))" if with_subprojects - cond - end - - def self.find(*args) - if args.first && args.first.is_a?(String) && !/^\d*$/.match?(args.first) - project = find_by_identifier(*args) - raise ActiveRecord::RecordNotFound, "Couldn't find Project with identifier=#{args.first}" if project.nil? - project - else - super - end - end - - def self.find_by_param(*args) - self.find(*args) - end - - alias :base_reload :reload - def reload(*args) - @principals = nil - @users = nil - @shared_versions = nil - @rolled_up_versions = nil - @rolled_up_trackers = nil - @rolled_up_statuses = nil - @rolled_up_custom_fields = nil - @all_issue_custom_fields = nil - @all_time_entry_custom_fields = nil - @to_param = nil - @allowed_parents = nil - @allowed_permissions = nil - @actions_allowed = nil - @start_date = nil - @due_date = nil - @override_members = nil - @assignable_users = nil - base_reload(*args) - end - - def to_param - if new_record? - nil - else - # id is used for projects with a numeric identifier (compatibility) - @to_param ||= (%r{^\d*$}.match?(identifier.to_s) ? id.to_s : identifier) - end - end - - def active? - self.status == STATUS_ACTIVE - end - - def closed? - self.status == STATUS_CLOSED - end - - def archived? - self.status == STATUS_ARCHIVED - end - - # Archives the project and its descendants - def archive - # Check that there is no issue of a non descendant project that is assigned - # to one of the project or descendant versions - version_ids = self_and_descendants.joins(:versions).pluck("#{Version.table_name}.id") - - if version_ids.any? && - Issue. - joins(:project). - where("#{Project.table_name}.lft < ? OR #{Project.table_name}.rgt > ?", lft, rgt). - where(:fixed_version_id => version_ids). - exists? - return false - end - Project.transaction do - archive! - end - true - end - - # Unarchives the project and its archived ancestors - def unarchive - new_status = ancestors.any?(&:closed?) ? STATUS_CLOSED : STATUS_ACTIVE - self_and_ancestors.status(STATUS_ARCHIVED).update_all :status => new_status - reload - end - - def close - self_and_descendants.status(STATUS_ACTIVE).update_all :status => STATUS_CLOSED - end - - def reopen - self_and_descendants.status(STATUS_CLOSED).update_all :status => STATUS_ACTIVE - end - - # Returns an array of projects the project can be moved to - # by the current user - def allowed_parents(user=User.current) - return @allowed_parents if @allowed_parents - @allowed_parents = Project.allowed_to(user, :add_subprojects).to_a - @allowed_parents = @allowed_parents - self_and_descendants - if user.allowed_to?(:add_project, nil, :global => true) || (!new_record? && parent.nil?) - @allowed_parents << nil - end - unless parent.nil? || @allowed_parents.empty? || @allowed_parents.include?(parent) - @allowed_parents << parent - end - @allowed_parents - end - - # Sets the parent of the project and saves the project - # Argument can be either a Project, a String, a Fixnum or nil - def set_parent!(p) - if p.is_a?(Project) - self.parent = p - else - self.parent_id = p - end - save - end - - # Returns a scope of the trackers used by the project and its active sub projects - def rolled_up_trackers(include_subprojects=true) - if include_subprojects - @rolled_up_trackers ||= rolled_up_trackers_base_scope. - where("#{Project.table_name}.lft >= ? AND #{Project.table_name}.rgt <= ?", lft, rgt) - else - rolled_up_trackers_base_scope. - where(:projects => {:id => id}) - end - end - - def rolled_up_trackers_base_scope - Tracker. - joins(projects: :enabled_modules). - where("#{Project.table_name}.status <> ?", STATUS_ARCHIVED). - where(:enabled_modules => {:name => 'issue_tracking'}). - distinct. - sorted - end - - def rolled_up_statuses - issue_status_ids = WorkflowTransition. - where(:tracker_id => rolled_up_trackers.map(&:id)). - distinct. - pluck(:old_status_id, :new_status_id). - flatten. - uniq - - IssueStatus.where(:id => issue_status_ids).sorted - end - - # Closes open and locked project versions that are completed - def close_completed_versions - Version.transaction do - versions.where(:status => %w(open locked)).each do |version| - if version.completed? - version.update_attribute(:status, 'closed') - end - end - end - end - - # Returns a scope of the Versions on subprojects - def rolled_up_versions - @rolled_up_versions ||= - Version. - joins(:project). - where("#{Project.table_name}.lft >= ? AND #{Project.table_name}.rgt <= ? AND #{Project.table_name}.status <> ?", lft, rgt, STATUS_ARCHIVED) - end - - # Returns a scope of the Versions used by the project - def shared_versions - if new_record? - Version. - joins(:project). - preload(:project). - where("#{Project.table_name}.status <> ? AND #{Version.table_name}.sharing = 'system'", STATUS_ARCHIVED) - else - @shared_versions ||= begin - r = root? ? self : root - Version. - joins(:project). - preload(:project). - where("#{Project.table_name}.id = #{id}" + - " OR (#{Project.table_name}.status <> #{Project::STATUS_ARCHIVED} AND (" + - " #{Version.table_name}.sharing = 'system'" + - " OR (#{Project.table_name}.lft >= #{r.lft} AND #{Project.table_name}.rgt <= #{r.rgt} AND #{Version.table_name}.sharing = 'tree')" + - " OR (#{Project.table_name}.lft < #{lft} AND #{Project.table_name}.rgt > #{rgt} AND #{Version.table_name}.sharing IN ('hierarchy', 'descendants'))" + - " OR (#{Project.table_name}.lft > #{lft} AND #{Project.table_name}.rgt < #{rgt} AND #{Version.table_name}.sharing = 'hierarchy')" + - "))") - end - end - end - - # Returns a hash of project users grouped by role - def users_by_role - members.includes(:user, :roles).inject({}) do |h, m| - m.roles.each do |r| - h[r] ||= [] - h[r] << m.user - end - h - end - end - - # Adds user as a project member with the default role - # Used for when a non-admin user creates a project - def add_default_member(user) - role = self.class.default_member_role - member = Member.new(:project => self, :principal => user, :roles => [role]) - self.members << member - member - end - - # Default role that is given to non-admin users that - # create a project - def self.default_member_role - Role.givable.find_by_id(Setting.new_project_user_role_id.to_i) || Role.givable.first - end - - # Deletes all project's members - def delete_all_members - me, mr = Member.table_name, MemberRole.table_name - self.class.connection.delete("DELETE FROM #{mr} WHERE #{mr}.member_id IN (SELECT #{me}.id FROM #{me} WHERE #{me}.project_id = #{id})") - Member.where(:project_id => id).delete_all - end - - # Return a Principal scope of users/groups issues can be assigned to - def assignable_users(tracker=nil) - return @assignable_users[tracker] if @assignable_users && @assignable_users[tracker] - - types = ['User'] - types << 'Group' if Setting.issue_group_assignment? - - scope = Principal. - active. - joins(:members => :roles). - where(:type => types, :members => {:project_id => id}, :roles => {:assignable => true}). - distinct. - sorted - - if tracker - # Rejects users that cannot the view the tracker - roles = Role.where(:assignable => true).select {|role| role.permissions_tracker?(:view_issues, tracker)} - scope = scope.where(:roles => {:id => roles.map(&:id)}) - end - - @assignable_users ||= {} - @assignable_users[tracker] = scope - end - - # Returns the mail addresses of users that should be always notified on project events - def recipients - notified_users.collect {|user| user.mail} - end - - # Returns the users that should be notified on project events - def notified_users - # TODO: User part should be extracted to User#notify_about? - members.preload(:principal).select {|m| m.principal.present? && (m.mail_notification? || m.principal.mail_notification == 'all')}.collect {|m| m.principal} - end - - # Returns a scope of all custom fields enabled for project issues - # (explicitly associated custom fields and custom fields enabled for all projects) - def all_issue_custom_fields - if new_record? - @all_issue_custom_fields ||= IssueCustomField. - sorted. - where("is_for_all = ? OR id IN (?)", true, issue_custom_field_ids) - else - @all_issue_custom_fields ||= IssueCustomField. - sorted. - where("is_for_all = ? OR id IN (SELECT DISTINCT cfp.custom_field_id" + - " FROM #{table_name_prefix}custom_fields_projects#{table_name_suffix} cfp" + - " WHERE cfp.project_id = ?)", true, id) - end - end - - # Returns a scope of all custom fields enabled for issues of the project - # and its subprojects - def rolled_up_custom_fields - if leaf? - all_issue_custom_fields - else - @rolled_up_custom_fields ||= IssueCustomField. - sorted. - where("is_for_all = ? OR EXISTS (SELECT 1" + - " FROM #{table_name_prefix}custom_fields_projects#{table_name_suffix} cfp" + - " JOIN #{Project.table_name} p ON p.id = cfp.project_id" + - " WHERE cfp.custom_field_id = #{CustomField.table_name}.id" + - " AND p.lft >= ? AND p.rgt <= ?)", true, lft, rgt) - end - end - - def project - self - end - - def <=>(project) - name.casecmp(project.name) - end - - def to_s - name - end - - # Returns a short description of the projects (first lines) - def short_description(length = 255) - description.gsub(/^(.{#{length}}[^\n\r]*).*$/m, '\1...').strip if description - end - - def css_classes - s = +'project' - s << ' root' if root? - s << ' child' if child? - s << (leaf? ? ' leaf' : ' parent') - s << ' public' if is_public? - unless active? - if archived? - s << ' archived' - else - s << ' closed' - end - end - s - end - - # The earliest start date of a project, based on it's issues and versions - def start_date - @start_date ||= - [ - issues.minimum('start_date'), - shared_versions.minimum('effective_date'), - Issue.fixed_version(shared_versions).minimum('start_date') - ].compact.min - end - - # The latest due date of an issue or version - def due_date - @due_date ||= - [ - issues.maximum('due_date'), - shared_versions.maximum('effective_date'), - Issue.fixed_version(shared_versions).maximum('due_date') - ].compact.max - end - - def overdue? - active? && !due_date.nil? && (due_date < User.current.today) - end - - # Returns the percent completed for this project, based on the - # progress on it's versions. - def completed_percent(options={:include_subprojects => false}) - if options.delete(:include_subprojects) - total = self_and_descendants.collect(&:completed_percent).sum - - total / self_and_descendants.count - else - if versions.count > 0 - total = versions.collect(&:completed_percent).sum - - total / versions.count - else - 100 - end - end - end - - # Return true if this project allows to do the specified action. - # action can be: - # * a parameter-like Hash (eg. :controller => 'projects', :action => 'edit') - # * a permission Symbol (eg. :edit_project) - def allows_to?(action) - if archived? - # No action allowed on archived projects - return false - end - unless active? || Redmine::AccessControl.read_action?(action) - # No write action allowed on closed projects - return false - end - # No action allowed on disabled modules - if action.is_a? Hash - allowed_actions.include? "#{action[:controller]}/#{action[:action]}" - else - allowed_permissions.include? action - end - end - - # Return the enabled module with the given name - # or nil if the module is not enabled for the project - def enabled_module(name) - name = name.to_s - enabled_modules.detect {|m| m.name == name} - end - - # Return true if the module with the given name is enabled - def module_enabled?(name) - enabled_module(name).present? - end - - def enabled_module_names=(module_names) - if module_names && module_names.is_a?(Array) - module_names = module_names.collect(&:to_s).reject(&:blank?) - self.enabled_modules = module_names.collect {|name| enabled_modules.detect {|mod| mod.name == name} || EnabledModule.new(:name => name)} - else - enabled_modules.clear - end - end - - # Returns an array of the enabled modules names - def enabled_module_names - enabled_modules.collect(&:name) - end - - # Enable a specific module - # - # Examples: - # project.enable_module!(:issue_tracking) - # project.enable_module!("issue_tracking") - def enable_module!(name) - enabled_modules << EnabledModule.new(:name => name.to_s) unless module_enabled?(name) - end - - # Disable a module if it exists - # - # Examples: - # project.disable_module!(:issue_tracking) - # project.disable_module!("issue_tracking") - # project.disable_module!(project.enabled_modules.first) - def disable_module!(target) - target = enabled_modules.detect{|mod| target.to_s == mod.name} unless enabled_modules.include?(target) - target.destroy unless target.blank? - end - - safe_attributes( - 'name', - 'description', - 'homepage', - 'is_public', - 'identifier', - 'custom_field_values', - 'custom_fields', - 'tracker_ids', - 'issue_custom_field_ids', - 'parent_id', - 'default_version_id', - 'default_assigned_to_id') - - safe_attributes( - 'enabled_module_names', - :if => - lambda {|project, user| - if project.new_record? - if user.admin? - true - else - default_member_role.has_permission?(:select_project_modules) - end - else - user.allowed_to?(:select_project_modules, project) - end - }) - - safe_attributes( - 'inherit_members', - :if => lambda {|project, user| project.parent.nil? || project.parent.visible?(user)}) - - def safe_attributes=(attrs, user=User.current) - if attrs.respond_to?(:to_unsafe_hash) - attrs = attrs.to_unsafe_hash - end - - return unless attrs.is_a?(Hash) - attrs = attrs.deep_dup - - @unallowed_parent_id = nil - if new_record? || attrs.key?('parent_id') - parent_id_param = attrs['parent_id'].to_s - if new_record? || parent_id_param != parent_id.to_s - p = parent_id_param.present? ? Project.find_by_id(parent_id_param) : nil - unless allowed_parents(user).include?(p) - attrs.delete('parent_id') - @unallowed_parent_id = true - end - end - end - - # Reject custom fields values not visible by the user - if attrs['custom_field_values'].present? - editable_custom_field_ids = editable_custom_field_values(user).map {|v| v.custom_field_id.to_s} - attrs['custom_field_values'].reject! {|k, v| !editable_custom_field_ids.include?(k.to_s)} - end - - # Reject custom fields not visible by the user - if attrs['custom_fields'].present? - editable_custom_field_ids = editable_custom_field_values(user).map {|v| v.custom_field_id.to_s} - attrs['custom_fields'].reject! {|c| !editable_custom_field_ids.include?(c['id'].to_s)} - end - - super(attrs, user) - end - - # Returns an auto-generated project identifier based on the last identifier used - def self.next_identifier - p = Project.order('id DESC').first - p.nil? ? nil : p.identifier.to_s.succ - end - - # Copies and saves the Project instance based on the +project+. - # Duplicates the source project's: - # * Wiki - # * Versions - # * Categories - # * Issues - # * Members - # * Queries - # - # Accepts an +options+ argument to specify what to copy - # - # Examples: - # project.copy(1) # => copies everything - # project.copy(1, :only => 'members') # => copies members only - # project.copy(1, :only => ['members', 'versions']) # => copies members and versions - def copy(project, options={}) - project = project.is_a?(Project) ? project : Project.find(project) - - to_be_copied = %w(members wiki versions issue_categories issues queries boards documents) - to_be_copied = to_be_copied & Array.wrap(options[:only]) unless options[:only].nil? - - Project.transaction do - if save - reload - - self.attachments = project.attachments.map do |attachment| - attachment.copy(:container => self) - end - - to_be_copied.each do |name| - send "copy_#{name}", project - end - Redmine::Hook.call_hook(:model_project_copy_before_save, :source_project => project, :destination_project => self) - save - else - false - end - end - end - - # Returns a new unsaved Project instance with attributes copied from +project+ - def self.copy_from(project) - project = project.is_a?(Project) ? project : Project.find(project) - # clear unique attributes - attributes = project.attributes.dup.except('id', 'name', 'identifier', 'status', 'parent_id', 'lft', 'rgt') - copy = Project.new(attributes) - copy.enabled_module_names = project.enabled_module_names - copy.trackers = project.trackers - copy.custom_values = project.custom_values.collect {|v| v.clone} - copy.issue_custom_fields = project.issue_custom_fields - copy - end - - # Yields the given block for each project with its level in the tree - def self.project_tree(projects, options={}, &block) - ancestors = [] - if options[:init_level] && projects.first - ancestors = projects.first.ancestors.to_a - end - projects.sort_by(&:lft).each do |project| - while ancestors.any? && - !project.is_descendant_of?(ancestors.last) - ancestors.pop - end - yield project, ancestors.size - ancestors << project - end - end - - # Overrides Redmine::Acts::Customizable::InstanceMethods#validate_custom_field_values - # so that custom values that are not editable are not validated (eg. a custom field that - # is marked as required should not trigger a validation error if the user is not allowed - # to edit this field). - def validate_custom_field_values - user = User.current - if new_record? || custom_field_values_changed? - editable_custom_field_values(user).each(&:validate_value) - end - end - - # Returns the custom_field_values that can be edited by the given user - def editable_custom_field_values(user=nil) - visible_custom_field_values(user) - end - - def visible_custom_field_values(user = nil) - user ||= User.current - custom_field_values.select do |value| - value.custom_field.visible_by?(project, user) - end - end - - private - - def update_inherited_members - if parent - if inherit_members? && !inherit_members_before_last_save - remove_inherited_member_roles - add_inherited_member_roles - elsif !inherit_members? && inherit_members_before_last_save - remove_inherited_member_roles - end - end - end - - def remove_inherited_member_roles - member_roles = MemberRole.where(:member_id => membership_ids).to_a - member_role_ids = member_roles.map(&:id) - member_roles.each do |member_role| - if member_role.inherited_from && !member_role_ids.include?(member_role.inherited_from) - member_role.destroy - end - end - end - - def add_inherited_member_roles - if inherit_members? && parent - parent.memberships.each do |parent_member| - member = Member.find_or_new(self.id, parent_member.user_id) - parent_member.member_roles.each do |parent_member_role| - member.member_roles << MemberRole.new(:role => parent_member_role.role, :inherited_from => parent_member_role.id) - end - member.save! - end - memberships.reset - end - end - - def update_versions_from_hierarchy_change - Issue.update_versions_from_hierarchy_change(self) - end - - def validate_parent - if @unallowed_parent_id - errors.add(:parent_id, :invalid) - elsif parent_id_changed? - unless parent.nil? || (parent.active? && move_possible?(parent)) - errors.add(:parent_id, :invalid) - end - end - end - - # Copies wiki from +project+ - def copy_wiki(project) - # Check that the source project has a wiki first - unless project.wiki.nil? - wiki = self.wiki || Wiki.new - wiki.attributes = project.wiki.attributes.dup.except("id", "project_id") - wiki_pages_map = {} - project.wiki.pages.each do |page| - # Skip pages without content - next if page.content.nil? - new_wiki_content = WikiContent.new(page.content.attributes.dup.except("id", "page_id", "updated_on")) - new_wiki_page = WikiPage.new(page.attributes.dup.except("id", "wiki_id", "created_on", "parent_id")) - new_wiki_page.content = new_wiki_content - wiki.pages << new_wiki_page - new_wiki_page.attachments = page.attachments.map{|attachement| attachement.copy(:container => new_wiki_page)} - wiki_pages_map[page.id] = new_wiki_page - end - - self.wiki = wiki - wiki.save - # Reproduce page hierarchy - project.wiki.pages.each do |page| - if page.parent_id && wiki_pages_map[page.id] - wiki_pages_map[page.id].parent = wiki_pages_map[page.parent_id] - wiki_pages_map[page.id].save - end - end - end - end - - # Copies versions from +project+ - def copy_versions(project) - project.versions.each do |version| - new_version = Version.new - new_version.attributes = version.attributes.dup.except("id", "project_id", "created_on", "updated_on") - - new_version.attachments = version.attachments.map do |attachment| - attachment.copy(:container => new_version) - end - - self.versions << new_version - end - end - - # Copies issue categories from +project+ - def copy_issue_categories(project) - project.issue_categories.each do |issue_category| - new_issue_category = IssueCategory.new - new_issue_category.attributes = issue_category.attributes.dup.except("id", "project_id") - self.issue_categories << new_issue_category - end - end - - # Copies issues from +project+ - def copy_issues(project) - # Stores the source issue id as a key and the copied issues as the - # value. Used to map the two together for issue relations. - issues_map = {} - - # Store status and reopen locked/closed versions - version_statuses = versions.reject(&:open?).map {|version| [version, version.status]} - version_statuses.each do |version, status| - version.update_attribute :status, 'open' - end - - # Get issues sorted by root_id, lft so that parent issues - # get copied before their children - project.issues.reorder('root_id, lft').each do |issue| - new_issue = Issue.new - new_issue.copy_from(issue, :subtasks => false, :link => false, :keep_status => true) - new_issue.project = self - # Changing project resets the custom field values - # TODO: handle this in Issue#project= - new_issue.custom_field_values = issue.custom_field_values.inject({}) {|h,v| h[v.custom_field_id] = v.value; h} - # Reassign fixed_versions by name, since names are unique per project - if issue.fixed_version && issue.fixed_version.project == project - new_issue.fixed_version = self.versions.detect {|v| v.name == issue.fixed_version.name} - end - # Reassign version custom field values - new_issue.custom_field_values.each do |custom_value| - if custom_value.custom_field.field_format == 'version' && custom_value.value.present? - versions = Version.where(:id => custom_value.value).to_a - new_value = versions.map do |version| - if version.project == project - self.versions.detect {|v| v.name == version.name}.try(:id) - else - version.id - end - end - new_value.compact! - new_value = new_value.first unless custom_value.custom_field.multiple? - custom_value.value = new_value - end - end - # Reassign the category by name, since names are unique per project - if issue.category - new_issue.category = self.issue_categories.detect {|c| c.name == issue.category.name} - end - # Parent issue - if issue.parent_id - if copied_parent = issues_map[issue.parent_id] - new_issue.parent_issue_id = copied_parent.id - end - end - - self.issues << new_issue - if new_issue.new_record? - logger.info "Project#copy_issues: issue ##{issue.id} could not be copied: #{new_issue.errors.full_messages}" if logger && logger.info? - else - issues_map[issue.id] = new_issue unless new_issue.new_record? - end - end - - # Restore locked/closed version statuses - version_statuses.each do |version, status| - version.update_attribute :status, status - end - - # Relations after in case issues related each other - project.issues.each do |issue| - new_issue = issues_map[issue.id] - unless new_issue - # Issue was not copied - next - end - - # Relations - issue.relations_from.each do |source_relation| - new_issue_relation = IssueRelation.new - new_issue_relation.attributes = source_relation.attributes.dup.except("id", "issue_from_id", "issue_to_id") - new_issue_relation.issue_to = issues_map[source_relation.issue_to_id] - if new_issue_relation.issue_to.nil? && Setting.cross_project_issue_relations? - new_issue_relation.issue_to = source_relation.issue_to - end - new_issue.relations_from << new_issue_relation - end - - issue.relations_to.each do |source_relation| - new_issue_relation = IssueRelation.new - new_issue_relation.attributes = source_relation.attributes.dup.except("id", "issue_from_id", "issue_to_id") - new_issue_relation.issue_from = issues_map[source_relation.issue_from_id] - if new_issue_relation.issue_from.nil? && Setting.cross_project_issue_relations? - new_issue_relation.issue_from = source_relation.issue_from - end - new_issue.relations_to << new_issue_relation - end - end - end - - # Copies members from +project+ - def copy_members(project) - # Copy users first, then groups to handle members with inherited and given roles - members_to_copy = [] - members_to_copy += project.memberships.select {|m| m.principal.is_a?(User)} - members_to_copy += project.memberships.select {|m| !m.principal.is_a?(User)} - - members_to_copy.each do |member| - new_member = Member.new - new_member.attributes = member.attributes.dup.except("id", "project_id", "created_on") - # only copy non inherited roles - # inherited roles will be added when copying the group membership - role_ids = member.member_roles.reject(&:inherited?).collect(&:role_id) - next if role_ids.empty? - new_member.role_ids = role_ids - new_member.project = self - self.members << new_member - end - end - - # Copies queries from +project+ - def copy_queries(project) - project.queries.each do |query| - new_query = query.class.new - new_query.attributes = query.attributes.dup.except("id", "project_id", "sort_criteria", "user_id", "type") - new_query.sort_criteria = query.sort_criteria if query.sort_criteria - new_query.project = self - new_query.user_id = query.user_id - new_query.role_ids = query.role_ids if query.visibility == ::Query::VISIBILITY_ROLES - self.queries << new_query - end - end - - # Copies boards from +project+ - def copy_boards(project) - project.boards.each do |board| - new_board = Board.new - new_board.attributes = board.attributes.dup.except("id", "project_id", "topics_count", "messages_count", "last_message_id") - new_board.project = self - self.boards << new_board - end - end - - # Copies documents from +project+ - def copy_documents(project) - project.documents.each do |document| - new_document = Document.new - new_document.attributes = document.attributes.dup.except("id", "project_id") - new_document.project = self - - new_document.attachments = document.attachments.map do |attachement| - attachement.copy(:container => new_document) - end - - self.documents << new_document - end - end - - def allowed_permissions - @allowed_permissions ||= begin - module_names = enabled_modules.loaded? ? enabled_modules.map(&:name) : enabled_modules.pluck(:name) - Redmine::AccessControl.modules_permissions(module_names).collect {|p| p.name} - end - end - - def allowed_actions - @actions_allowed ||= allowed_permissions.inject([]) { |actions, permission| actions += Redmine::AccessControl.allowed_actions(permission) }.flatten - end - - # Archives subprojects recursively - def archive! - children.each do |subproject| - subproject.send :archive! - end - update_attribute :status, STATUS_ARCHIVED - end -end diff --git a/app/models/project_custom_field.rb b/app/models/project_custom_field.rb deleted file mode 100644 index a4dde39..0000000 --- a/app/models/project_custom_field.rb +++ /dev/null @@ -1,33 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class ProjectCustomField < CustomField - def type_name - :label_project_plural - end - - def visible_by?(project, user=User.current) - super || (roles & user.roles_for_project(project)).present? - end - - def visibility_by_project_condition(project_key=nil, user=User.current, id_column=nil) - project_key ||= "#{Project.table_name}.id" - super(project_key, user, id_column) - end -end diff --git a/app/models/project_query.rb b/app/models/project_query.rb deleted file mode 100644 index 4f48893..0000000 --- a/app/models/project_query.rb +++ /dev/null @@ -1,112 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2017 Jean-Philippe Lang -# -# 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. - -class ProjectQuery < Query - - self.queried_class = Project - self.view_permission = :search_project - - validate do |query| - # project must be blank for ProjectQuery - errors.add(:project_id, :exclusion) if query.project_id.present? - end - - self.available_columns = [ - QueryColumn.new(:name, :sortable => "#{Project.table_name}.name"), - QueryColumn.new(:status, :sortable => "#{Project.table_name}.status"), - QueryColumn.new(:short_description, :sortable => "#{Project.table_name}.description", :caption => :field_description), - QueryColumn.new(:homepage, :sortable => "#{Project.table_name}.homepage"), - QueryColumn.new(:identifier, :sortable => "#{Project.table_name}.identifier"), - QueryColumn.new(:parent_id, :sortable => "#{Project.table_name}.lft ASC", :default_order => 'desc', :caption => :field_parent), - QueryColumn.new(:is_public, :sortable => "#{Project.table_name}.is_public", :groupable => true), - QueryColumn.new(:created_on, :sortable => "#{Project.table_name}.created_on", :default_order => 'desc') - ] - - def initialize(attributes=nil, *args) - super attributes - self.filters ||= { 'status' => {:operator => "=", :values => ['1']} } - end - - def initialize_available_filters - add_available_filter( - "status", - :type => :list, :values => lambda { project_statuses_values } - ) - add_available_filter( - "id", - :type => :list, :values => lambda { project_values }, :label => :field_project - ) - add_available_filter "name", :type => :text - add_available_filter "description", :type => :text - add_available_filter( - "parent_id", - :type => :list_subprojects, :values => lambda { project_values }, :label => :field_parent - ) - add_available_filter( - "is_public", - :type => :list, - :values => [[l(:general_text_yes), "1"], [l(:general_text_no), "0"]] - ) - add_available_filter "created_on", :type => :date_past - add_custom_fields_filters(project_custom_fields) - end - - def available_columns - return @available_columns if @available_columns - @available_columns = self.class.available_columns.dup - @available_columns += project_custom_fields.visible. - map {|cf| QueryCustomFieldColumn.new(cf) } - @available_columns - end - - def available_display_types - ['board', 'list'] - end - - def default_columns_names - @default_columns_names = Setting.project_list_defaults.symbolize_keys[:column_names].map(&:to_sym) - end - - def default_sort_criteria - [[]] - end - - def base_scope - Project.visible.where(statement) - end - - def results_scope(options={}) - order_option = [group_by_sort_order, (options[:order] || sort_clause)].flatten.reject(&:blank?) - - order_option << "#{Project.table_name}.lft ASC" - scope = base_scope. - order(order_option). - joins(joins_for_order_statement(order_option.join(','))) - - if has_custom_field_column? - scope = scope.preload(:custom_values) - end - - if has_column?(:parent_id) - scope = scope.preload(:parent) - end - - scope - end -end diff --git a/app/models/query.rb b/app/models/query.rb deleted file mode 100644 index 9d5a5c7..0000000 --- a/app/models/query.rb +++ /dev/null @@ -1,1478 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -require 'redmine/sort_criteria' - -class QueryColumn - attr_accessor :name, :groupable, :totalable, :default_order - attr_writer :sortable - include Redmine::I18n - - def initialize(name, options={}) - self.name = name - self.sortable = options[:sortable] - self.groupable = options[:groupable] || false - if groupable == true - self.groupable = name.to_s - end - self.totalable = options[:totalable] || false - self.default_order = options[:default_order] - @inline = options.key?(:inline) ? options[:inline] : true - @caption_key = options[:caption] || "field_#{name}".to_sym - @frozen = options[:frozen] - end - - def caption - case @caption_key - when Symbol - l(@caption_key) - when Proc - @caption_key.call - else - @caption_key - end - end - - # Returns true if the column is sortable, otherwise false - def sortable? - @sortable.present? - end - - def sortable - @sortable.is_a?(Proc) ? @sortable.call : @sortable - end - - def inline? - @inline - end - - def frozen? - @frozen - end - - def value(object) - object.send name - end - - def value_object(object) - object.send name - end - - # Returns the group that object belongs to when grouping query results - def group_value(object) - value(object) - end - - def css_classes - name - end -end - -class TimestampQueryColumn < QueryColumn - - def groupable - if @groupable - Redmine::Database.timestamp_to_date(sortable, User.current.time_zone) - end - end - - def group_value(object) - if time = value(object) - User.current.time_to_date(time) - end - end -end - -class QueryAssociationColumn < QueryColumn - - def initialize(association, attribute, options={}) - @association = association - @attribute = attribute - name_with_assoc = "#{association}.#{attribute}".to_sym - super(name_with_assoc, options) - end - - def value_object(object) - if assoc = object.send(@association) - assoc.send @attribute - end - end - - def css_classes - @css_classes ||= "#{@association}-#{@attribute}" - end -end - -class QueryCustomFieldColumn < QueryColumn - - def initialize(custom_field, options={}) - self.name = "cf_#{custom_field.id}".to_sym - self.sortable = custom_field.order_statement || false - self.groupable = custom_field.group_statement || false - self.totalable = options.key?(:totalable) ? !!options[:totalable] : custom_field.totalable? - @inline = custom_field.full_width_layout? ? false : true - @cf = custom_field - end - - def caption - @cf.name - end - - def custom_field - @cf - end - - def value_object(object) - if custom_field.visible_by?(object.project, User.current) - cv = object.custom_values.select {|v| v.custom_field_id == @cf.id} - cv.size > 1 ? cv.sort_by {|e| e.value.to_s} : cv.first - else - nil - end - end - - def value(object) - raw = value_object(object) - if raw.is_a?(Array) - raw.map {|r| @cf.cast_value(r.value)} - elsif raw - @cf.cast_value(raw.value) - else - nil - end - end - - def css_classes - @css_classes ||= "#{name} #{@cf.field_format}" - end -end - -class QueryAssociationCustomFieldColumn < QueryCustomFieldColumn - - def initialize(association, custom_field, options={}) - super(custom_field, options) - self.name = "#{association}.cf_#{custom_field.id}".to_sym - # TODO: support sorting/grouping by association custom field - self.sortable = false - self.groupable = false - @association = association - end - - def value_object(object) - if assoc = object.send(@association) - super(assoc) - end - end - - def css_classes - @css_classes ||= "#{@association}_cf_#{@cf.id} #{@cf.field_format}" - end -end - -class QueryFilter - include Redmine::I18n - - def initialize(field, options) - @field = field.to_s - @options = options - @options[:name] ||= l(options[:label] || "field_#{field}".gsub(/_id$/, '')) - # Consider filters with a Proc for values as remote by default - @remote = options.key?(:remote) ? options[:remote] : options[:values].is_a?(Proc) - end - - def [](arg) - if arg == :values - values - else - @options[arg] - end - end - - def values - @values ||= begin - values = @options[:values] - if values.is_a?(Proc) - values = values.call - end - values - end - end - - def remote - @remote - end -end - -class Query < ActiveRecord::Base - class StatementInvalid < ::ActiveRecord::StatementInvalid - end - - include Redmine::SubclassFactory - - VISIBILITY_PRIVATE = 0 - VISIBILITY_ROLES = 1 - VISIBILITY_PUBLIC = 2 - - belongs_to :project - belongs_to :user - has_and_belongs_to_many :roles, :join_table => "#{table_name_prefix}queries_roles#{table_name_suffix}", :foreign_key => "query_id" - serialize :filters - serialize :column_names - serialize :sort_criteria, Array - serialize :options, Hash - - validates_presence_of :name - validates_length_of :name, :maximum => 255 - validates :visibility, :inclusion => { :in => [VISIBILITY_PUBLIC, VISIBILITY_ROLES, VISIBILITY_PRIVATE] } - validate :validate_query_filters - validate do |query| - errors.add(:base, l(:label_role_plural) + ' ' + l('activerecord.errors.messages.blank')) if query.visibility == VISIBILITY_ROLES && roles.blank? - end - - after_save do |query| - if query.saved_change_to_visibility? && query.visibility != VISIBILITY_ROLES - query.roles.clear - end - end - - class_attribute :operators - self.operators = { - "=" => :label_equals, - "!" => :label_not_equals, - "o" => :label_open_issues, - "c" => :label_closed_issues, - "!*" => :label_none, - "*" => :label_any, - ">=" => :label_greater_or_equal, - "<=" => :label_less_or_equal, - "><" => :label_between, - " :label_in_less_than, - ">t+" => :label_in_more_than, - "> :label_in_the_next_days, - "t+" => :label_in, - "nd" => :label_tomorrow, - "t" => :label_today, - "ld" => :label_yesterday, - "nw" => :label_next_week, - "w" => :label_this_week, - "lw" => :label_last_week, - "l2w" => [:label_last_n_weeks, {:count => 2}], - "nm" => :label_next_month, - "m" => :label_this_month, - "lm" => :label_last_month, - "y" => :label_this_year, - ">t-" => :label_less_than_ago, - " :label_more_than_ago, - "> :label_in_the_past_days, - "t-" => :label_ago, - "~" => :label_contains, - "!~" => :label_not_contains, - "^" => :label_starts_with, - "$" => :label_ends_with, - "=p" => :label_any_issues_in_project, - "=!p" => :label_any_issues_not_in_project, - "!p" => :label_no_issues_in_project, - "*o" => :label_any_open_issues, - "!o" => :label_no_open_issues, - } - - class_attribute :operators_by_filter_type - self.operators_by_filter_type = { - :list => [ "=", "!" ], - :list_status => [ "o", "=", "!", "c", "*" ], - :list_optional => [ "=", "!", "!*", "*" ], - :list_subprojects => [ "*", "!*", "=", "!" ], - :date => [ "=", ">=", "<=", "><", "t+", ">t-", " [ "=", ">=", "<=", "><", ">t-", " [ "~", "=", "!~", "!", "^", "$", "!*", "*" ], - :text => [ "~", "!~", "^", "$", "!*", "*" ], - :integer => [ "=", ">=", "<=", "><", "!*", "*" ], - :float => [ "=", ">=", "<=", "><", "!*", "*" ], - :relation => ["=", "!", "=p", "=!p", "!p", "*o", "!o", "!*", "*"], - :tree => ["=", "~", "!*", "*"] - } - - class_attribute :available_columns - self.available_columns = [] - - class_attribute :queried_class - - # Permission required to view the queries, set on subclasses. - class_attribute :view_permission - - # Scope of queries that are global or on the given project - scope :global_or_on_project, lambda {|project| - where(:project_id => (project.nil? ? nil : [nil, project.id])) - } - - scope :sorted, lambda {order(:name, :id)} - - # Scope of visible queries, can be used from subclasses only. - # Unlike other visible scopes, a class methods is used as it - # let handle inheritance more nicely than scope DSL. - def self.visible(*args) - if self == ::Query - # Visibility depends on permissions for each subclass, - # raise an error if the scope is called from Query (eg. Query.visible) - raise "Cannot call .visible scope from the base Query class, but from subclasses only." - end - - user = args.shift || User.current - base = Project.allowed_to_condition(user, view_permission, *args) - scope = joins("LEFT OUTER JOIN #{Project.table_name} ON #{table_name}.project_id = #{Project.table_name}.id"). - where("#{table_name}.project_id IS NULL OR (#{base})") - - if user.admin? - scope.where("#{table_name}.visibility <> ? OR #{table_name}.user_id = ?", VISIBILITY_PRIVATE, user.id) - elsif user.memberships.any? - scope.where( - "#{table_name}.visibility = ?" + - " OR (#{table_name}.visibility = ? AND #{table_name}.id IN (" + - "SELECT DISTINCT q.id FROM #{table_name} q" + - " INNER JOIN #{table_name_prefix}queries_roles#{table_name_suffix} qr on qr.query_id = q.id" + - " INNER JOIN #{MemberRole.table_name} mr ON mr.role_id = qr.role_id" + - " INNER JOIN #{Member.table_name} m ON m.id = mr.member_id AND m.user_id = ?" + - " INNER JOIN #{Project.table_name} p ON p.id = m.project_id AND p.status <> ?" + - " WHERE q.project_id IS NULL OR q.project_id = m.project_id))" + - " OR #{table_name}.user_id = ?", - VISIBILITY_PUBLIC, VISIBILITY_ROLES, user.id, Project::STATUS_ARCHIVED, user.id) - elsif user.logged? - scope.where("#{table_name}.visibility = ? OR #{table_name}.user_id = ?", VISIBILITY_PUBLIC, user.id) - else - scope.where("#{table_name}.visibility = ?", VISIBILITY_PUBLIC) - end - end - - # Returns true if the query is visible to +user+ or the current user. - def visible?(user=User.current) - return true if user.admin? - return false unless project.nil? || user.allowed_to?(self.class.view_permission, project) - case visibility - when VISIBILITY_PUBLIC - true - when VISIBILITY_ROLES - if project - (user.roles_for_project(project) & roles).any? - else - user.memberships.joins(:member_roles).where(:member_roles => {:role_id => roles.map(&:id)}).any? - end - else - user == self.user - end - end - - def is_private? - visibility == VISIBILITY_PRIVATE - end - - def is_public? - !is_private? - end - - # Returns true if the query is available for all projects - def is_global? - new_record? ? project_id.nil? : project_id_in_database.nil? - end - - def queried_table_name - @queried_table_name ||= self.class.queried_class.table_name - end - - # Builds the query from the given params - def build_from_params(params, defaults={}) - if params[:fields] || params[:f] - self.filters = {} - add_filters(params[:fields] || params[:f], params[:operators] || params[:op], params[:values] || params[:v]) - else - available_filters.each_key do |field| - add_short_filter(field, params[field]) if params[field] - end - end - - query_params = params[:query] || defaults || {} - self.group_by = params[:group_by] || query_params[:group_by] || self.group_by - self.column_names = params[:c] || query_params[:column_names] || self.column_names - self.totalable_names = params[:t] || query_params[:totalable_names] || self.totalable_names - self.sort_criteria = params[:sort] || query_params[:sort_criteria] || self.sort_criteria - self.display_type = params[:display_type] || query_params[:display_type] || self.display_type - self - end - - # Builds a new query from the given params and attributes - def self.build_from_params(params, attributes={}) - new(attributes).build_from_params(params) - end - - def as_params - if new_record? - params = {} - filters.each do |field, options| - params[:f] ||= [] - params[:f] << field - params[:op] ||= {} - params[:op][field] = options[:operator] - params[:v] ||= {} - params[:v][field] = options[:values] - end - params[:c] = column_names - params[:group_by] = group_by.to_s if group_by.present? - params[:t] = totalable_names.map(&:to_s) if totalable_names.any? - params[:sort] = sort_criteria.to_param - params[:set_filter] = 1 - params - else - {:query_id => id} - end - end - - def validate_query_filters - filters.each_key do |field| - if values_for(field) - case type_for(field) - when :integer - add_filter_error(field, :invalid) if values_for(field).detect {|v| v.present? && !/\A[+-]?\d+(,[+-]?\d+)*\z/.match?(v) } - when :float - add_filter_error(field, :invalid) if values_for(field).detect {|v| v.present? && !/\A[+-]?\d+(\.\d*)?\z/.match?(v) } - when :date, :date_past - case operator_for(field) - when "=", ">=", "<=", "><" - add_filter_error(field, :invalid) if values_for(field).detect {|v| - v.present? && (!/\A\d{4}-\d{2}-\d{2}(T\d{2}((:)?\d{2}){0,2}(Z|\d{2}:?\d{2})?)?\z/.match?(v) || parse_date(v).nil?) - } - when ">t-", "t+", " 'activerecord.errors.messages') - errors.add(:base, m) - end - - def editable_by?(user) - return false unless user - # Admin can edit them all and regular users can edit their private queries - return true if user.admin? || (is_private? && self.user_id == user.id) - # Members can not edit public queries that are for all project (only admin is allowed to) - is_public? && !is_global? && user.allowed_to?(:manage_public_queries, project) - end - - def trackers - @trackers ||= (project.nil? ? Tracker.all : project.rolled_up_trackers).visible.sorted - end - - # Returns a hash of localized labels for all filter operators - def self.operators_labels - operators.inject({}) {|h, operator| h[operator.first] = l(*operator.last); h} - end - - # Returns a representation of the available filters for JSON serialization - def available_filters_as_json - json = {} - available_filters.each do |field, filter| - options = {:type => filter[:type], :name => filter[:name]} - options[:remote] = true if filter.remote - - if has_filter?(field) || !filter.remote - options[:values] = filter.values - if options[:values] && values_for(field) - missing = Array(values_for(field)).select(&:present?) - options[:values].map{|v| v[1]} - if missing.any? && respond_to?(method = "find_#{field}_filter_values") - options[:values] += send(method, missing) - end - end - end - json[field] = options.stringify_keys - end - json - end - - def all_projects - @all_projects ||= Project.visible.to_a - end - - def all_projects_values - return @all_projects_values if @all_projects_values - - values = [] - Project.project_tree(all_projects) do |p, level| - prefix = (level > 0 ? ('--' * level + ' ') : '') - values << ["#{prefix}#{p.name}", p.id.to_s] - end - @all_projects_values = values - end - - def project_values - project_values = [] - if User.current.logged? - project_values << ["<< #{l(:label_my_projects).downcase} >>", "mine"] if User.current.memberships.any? - project_values << ["<< #{l(:label_my_bookmarks).downcase} >>", "bookmarks"] if User.current.bookmarked_project_ids.any? - end - project_values += all_projects_values - project_values - end - - def subproject_values - project.descendants.visible.collect{|s| [s.name, s.id.to_s] } - end - - def principals - @principal ||= begin - principals = [] - if project - principals += Principal.member_of(project).visible - unless project.leaf? - principals += Principal.member_of(project.descendants.visible).visible - end - else - principals += Principal.member_of(all_projects).visible - end - principals.uniq! - principals.sort! - principals.reject! {|p| p.is_a?(GroupBuiltin)} - principals - end - end - - def users - principals.select {|p| p.is_a?(User)} - end - - def author_values - author_values = [] - author_values << ["<< #{l(:label_me)} >>", "me"] if User.current.logged? - author_values += users.sort_by(&:status).collect{|s| [s.name, s.id.to_s, l("status_#{User::LABEL_BY_STATUS[s.status]}")] } - author_values << [l(:label_user_anonymous), User.anonymous.id.to_s] - author_values - end - - def assigned_to_values - assigned_to_values = [] - assigned_to_values << ["<< #{l(:label_me)} >>", "me"] if User.current.logged? - assigned_to_values += (Setting.issue_group_assignment? ? principals : users).sort_by(&:status).collect{|s| [s.name, s.id.to_s, l("status_#{User::LABEL_BY_STATUS[s.status]}")] } - assigned_to_values - end - - def fixed_version_values - versions = [] - if project - versions = project.shared_versions.to_a - else - versions = Version.visible.to_a - end - Version.sort_by_status(versions).collect{|s| ["#{s.project.name} - #{s.name}", s.id.to_s, l("version_status_#{s.status}")] } - end - - # Returns a scope of issue statuses that are available as columns for filters - def issue_statuses_values - if project - statuses = project.rolled_up_statuses - else - statuses = IssueStatus.all.sorted - end - statuses.collect{|s| [s.name, s.id.to_s]} - end - - def watcher_values - watcher_values = [["<< #{l(:label_me)} >>", "me"]] - watcher_values += users.sort_by(&:status).collect{|s| [s.name, s.id.to_s, l("status_#{User::LABEL_BY_STATUS[s.status]}")] } if User.current.allowed_to?(:view_issue_watchers, self.project) - watcher_values - end - - # Returns a scope of issue custom fields that are available as columns or filters - def issue_custom_fields - if project - project.rolled_up_custom_fields - else - IssueCustomField.sorted - end - end - - # Returns a scope of project custom fields that are available as columns or filters - def project_custom_fields - ProjectCustomField.sorted - end - - # Returns a scope of time entry custom fields that are available as columns or filters - def time_entry_custom_fields - TimeEntryCustomField.sorted - end - - # Returns a scope of project statuses that are available as columns or filters - def project_statuses_values - [ - [l(:project_status_active), "#{Project::STATUS_ACTIVE}"], - [l(:project_status_closed), "#{Project::STATUS_CLOSED}"] - ] - end - - # Adds available filters - def initialize_available_filters - # implemented by sub-classes - end - protected :initialize_available_filters - - # Adds an available filter - def add_available_filter(field, options) - @available_filters ||= ActiveSupport::OrderedHash.new - @available_filters[field] = QueryFilter.new(field, options) - @available_filters - end - - # Removes an available filter - def delete_available_filter(field) - if @available_filters - @available_filters.delete(field) - end - end - - # Return a hash of available filters - def available_filters - unless @available_filters - initialize_available_filters - @available_filters ||= {} - end - @available_filters - end - - def add_filter(field, operator, values=nil) - # values must be an array - return unless values.nil? || values.is_a?(Array) - # check if field is defined as an available filter - if available_filters.has_key? field - filters[field] = {:operator => operator, :values => (values || [''])} - end - end - - def add_short_filter(field, expression) - return unless expression && available_filters.has_key?(field) - field_type = available_filters[field][:type] - operators_by_filter_type[field_type].sort.reverse.detect do |operator| - next unless expression =~ /^#{Regexp.escape(operator)}(.*)$/ - values = $1 - add_filter field, operator, values.present? ? values.split('|') : [''] - end || add_filter(field, '=', expression.to_s.split('|')) - end - - # Add multiple filters using +add_filter+ - def add_filters(fields, operators, values) - if fields.present? && operators.present? - fields.each do |field| - add_filter(field, operators[field], values && values[field]) - end - end - end - - def has_filter?(field) - filters and filters[field] - end - - def type_for(field) - available_filters[field][:type] if available_filters.has_key?(field) - end - - def operator_for(field) - has_filter?(field) ? filters[field][:operator] : nil - end - - def values_for(field) - has_filter?(field) ? filters[field][:values] : nil - end - - def value_for(field, index=0) - (values_for(field) || [])[index] - end - - def label_for(field) - label = available_filters[field][:name] if available_filters.has_key?(field) - label ||= queried_class.human_attribute_name(field, :default => field) - end - - def self.add_available_column(column) - self.available_columns << (column) if column.is_a?(QueryColumn) - end - - # Returns an array of columns that can be used to group the results - def groupable_columns - available_columns.select {|c| c.groupable} - end - - # Returns a Hash of columns and the key for sorting - def sortable_columns - available_columns.inject({}) {|h, column| - h[column.name.to_s] = column.sortable - h - } - end - - def columns - return [] if available_columns.empty? - # preserve the column_names order - cols = (has_default_columns? ? default_columns_names : column_names).collect do |name| - available_columns.find { |col| col.name == name } - end.compact - available_columns.select(&:frozen?) | cols - end - - def inline_columns - columns.select(&:inline?) - end - - def block_columns - columns.reject(&:inline?) - end - - def available_inline_columns - available_columns.select(&:inline?) - end - - def available_block_columns - available_columns.reject(&:inline?) - end - - def available_totalable_columns - available_columns.select(&:totalable) - end - - def default_columns_names - [] - end - - def default_totalable_names - [] - end - - def column_names=(names) - if names - names = names.select {|n| n.is_a?(Symbol) || !n.blank? } - names = names.collect {|n| n.is_a?(Symbol) ? n : n.to_sym } - if names.delete(:all_inline) - names = available_inline_columns.map(&:name) | names - end - # Set column_names to nil if default columns - if names == default_columns_names - names = nil - end - end - write_attribute(:column_names, names) - end - - def has_column?(column) - name = column.is_a?(QueryColumn) ? column.name : column - columns.detect {|c| c.name == name} - end - - def has_custom_field_column? - columns.any? {|column| column.is_a? QueryCustomFieldColumn} - end - - def has_default_columns? - column_names.nil? || column_names.empty? - end - - def totalable_columns - names = totalable_names - available_totalable_columns.select {|column| names.include?(column.name)} - end - - def totalable_names=(names) - if names - names = names.select(&:present?).map {|n| n.is_a?(Symbol) ? n : n.to_sym} - end - options[:totalable_names] = names - end - - def totalable_names - options[:totalable_names] || default_totalable_names || [] - end - - def default_sort_criteria - [] - end - - def sort_criteria=(arg) - c = Redmine::SortCriteria.new(arg) - write_attribute(:sort_criteria, c.to_a) - c - end - - def sort_criteria - c = read_attribute(:sort_criteria) - if c.blank? - c = default_sort_criteria - end - Redmine::SortCriteria.new(c) - end - - def sort_criteria_key(index) - sort_criteria[index].try(:first) - end - - def sort_criteria_order(index) - sort_criteria[index].try(:last) - end - - def sort_clause - if clause = sort_criteria.sort_clause(sortable_columns) - clause.map {|c| Arel.sql c} - end - end - - # Returns the SQL sort order that should be prepended for grouping - def group_by_sort_order - if column = group_by_column - order = (sort_criteria.order_for(column.name) || column.default_order || 'asc').try(:upcase) - - column_sortable = column.sortable - if column.is_a?(TimestampQueryColumn) - column_sortable = Redmine::Database.timestamp_to_date(column.sortable, User.current.time_zone) - end - Array(column_sortable).map {|s| Arel.sql("#{s} #{order}")} - end - end - - # Returns true if the query is a grouped query - def grouped? - !group_by_column.nil? - end - - def group_by_column - groupable_columns.detect {|c| c.groupable && c.name.to_s == group_by} - end - - def group_by_statement - group_by_column.try(:groupable) - end - - def project_statement - project_clauses = [] - subprojects_ids = [] - - subprojects_ids = project.descendants.where.not(status: Project::STATUS_ARCHIVED).ids if project - if subprojects_ids.any? - if has_filter?("subproject_id") - case operator_for("subproject_id") - when '=' - # include the selected subprojects - ids = [project.id] + values_for("subproject_id").map(&:to_i) - project_clauses << "#{Project.table_name}.id IN (%s)" % ids.join(',') - when '!' - # exclude the selected subprojects - ids = [project.id] + subprojects_ids - values_for("subproject_id").map(&:to_i) - project_clauses << "#{Project.table_name}.id IN (%s)" % ids.join(',') - when '!*' - # main project only - project_clauses << "#{Project.table_name}.id = %d" % project.id - else - # all subprojects - project_clauses << "#{Project.table_name}.lft >= #{project.lft} AND #{Project.table_name}.rgt <= #{project.rgt}" - end - elsif Setting.display_subprojects_issues? - project_clauses << "#{Project.table_name}.lft >= #{project.lft} AND #{Project.table_name}.rgt <= #{project.rgt}" - else - project_clauses << "#{Project.table_name}.id = %d" % project.id - end - elsif project - project_clauses << "#{Project.table_name}.id = %d" % project.id - end - project_clauses.any? ? project_clauses.join(' AND ') : nil - end - - def statement - # filters clauses - filters_clauses = [] - filters.each_key do |field| - next if field == "subproject_id" - v = values_for(field).clone - next unless v and !v.empty? - operator = operator_for(field) - - # "me" value substitution - if %w(assigned_to_id author_id user_id watcher_id updated_by last_updated_by).include?(field) - if v.delete("me") - if User.current.logged? - v.push(User.current.id.to_s) - v += User.current.group_ids.map(&:to_s) if field == 'assigned_to_id' - else - v.push("0") - end - end - end - - if field == 'project_id' || (self.type == 'ProjectQuery' && %w[id parent_id].include?(field)) - if v.delete('mine') - v += User.current.memberships.map(&:project_id).map(&:to_s) - end - if v.delete('bookmarks') - v += User.current.bookmarked_project_ids - end - end - - if field =~ /^cf_(\d+)\.cf_(\d+)$/ - filters_clauses << sql_for_chained_custom_field(field, operator, v, $1, $2) - elsif field =~ /cf_(\d+)$/ - # custom field - filters_clauses << sql_for_custom_field(field, operator, v, $1) - elsif field =~ /^cf_(\d+)\.(.+)$/ - filters_clauses << sql_for_custom_field_attribute(field, operator, v, $1, $2) - elsif respond_to?(method = "sql_for_#{field.tr('.','_')}_field") - # specific statement - filters_clauses << send(method, field, operator, v) - else - # regular field - filters_clauses << '(' + sql_for_field(field, operator, v, queried_table_name, field) + ')' - end - end if filters and valid? - - if (c = group_by_column) && c.is_a?(QueryCustomFieldColumn) - # Excludes results for which the grouped custom field is not visible - filters_clauses << c.custom_field.visibility_by_project_condition - end - - filters_clauses << project_statement - filters_clauses.reject!(&:blank?) - - filters_clauses.any? ? filters_clauses.join(' AND ') : nil - end - - # Returns the result count by group or nil if query is not grouped - def result_count_by_group - grouped_query do |scope| - scope.count - end - end - - # Returns the sum of values for the given column - def total_for(column) - total_with_scope(column, base_scope) - end - - # Returns a hash of the sum of the given column for each group, - # or nil if the query is not grouped - def total_by_group_for(column) - grouped_query do |scope| - total_with_scope(column, scope) - end - end - - def totals - totals = totalable_columns.map {|column| [column, total_for(column)]} - yield totals if block_given? - totals - end - - def totals_by_group - totals = totalable_columns.map {|column| [column, total_by_group_for(column)]} - yield totals if block_given? - totals - end - - def css_classes - s = sort_criteria.first - if s.present? - key, asc = s - "sort-by-#{key.to_s.dasherize} sort-#{asc}" - end - end - - def display_type - options[:display_type] || self.available_display_types.first - end - - def display_type=(type) - unless type || self.available_display_types.include?(type) - type = self.available_display_types.first - end - options[:display_type] = type - end - - def available_display_types - ['list'] - end - - private - - def grouped_query(&block) - r = nil - if grouped? - r = yield base_group_scope - c = group_by_column - if c.is_a?(QueryCustomFieldColumn) - r = r.keys.inject({}) {|h, k| h[c.custom_field.cast_value(k)] = r[k]; h} - end - end - r - rescue ::ActiveRecord::StatementInvalid => e - raise StatementInvalid.new(e.message) - end - - def total_with_scope(column, scope) - unless column.is_a?(QueryColumn) - column = column.to_sym - column = available_totalable_columns.detect {|c| c.name == column} - end - if column.is_a?(QueryCustomFieldColumn) - custom_field = column.custom_field - send "total_for_custom_field", custom_field, scope - else - send "total_for_#{column.name}", scope - end - rescue ::ActiveRecord::StatementInvalid => e - raise StatementInvalid.new(e.message) - end - - def base_scope - raise "unimplemented" - end - - def base_group_scope - base_scope. - joins(joins_for_order_statement(group_by_statement)). - group(group_by_statement) - end - - def total_for_custom_field(custom_field, scope, &block) - total = custom_field.format.total_for_scope(custom_field, scope) - total = map_total(total) {|t| custom_field.format.cast_total_value(custom_field, t)} - total - end - - def map_total(total, &block) - if total.is_a?(Hash) - total.each_key {|k| total[k] = yield total[k]} - else - total = yield total - end - total - end - - def sql_for_custom_field(field, operator, value, custom_field_id) - db_table = CustomValue.table_name - db_field = 'value' - filter = @available_filters[field] - return nil unless filter - if filter[:field].format.target_class && filter[:field].format.target_class <= User - if value.delete('me') - value.push User.current.id.to_s - end - end - not_in = nil - if operator == '!' - # Makes ! operator work for custom fields with multiple values - operator = '=' - not_in = 'NOT' - end - customized_key = "id" - customized_class = queried_class - if field =~ /^(.+)\.cf_/ - assoc = $1 - customized_key = "#{assoc}_id" - customized_class = queried_class.reflect_on_association(assoc.to_sym).klass.base_class rescue nil - raise "Unknown #{queried_class.name} association #{assoc}" unless customized_class - end - where = sql_for_field(field, operator, value, db_table, db_field, true) - if /[<>]/.match?(operator) - where = "(#{where}) AND #{db_table}.#{db_field} <> ''" - end - "#{queried_table_name}.#{customized_key} #{not_in} IN (" + - "SELECT #{customized_class.table_name}.id FROM #{customized_class.table_name}" + - " LEFT OUTER JOIN #{db_table} ON #{db_table}.customized_type='#{customized_class}' AND #{db_table}.customized_id=#{customized_class.table_name}.id AND #{db_table}.custom_field_id=#{custom_field_id}" + - " WHERE (#{where}) AND (#{filter[:field].visibility_by_project_condition}))" - end - - def sql_for_chained_custom_field(field, operator, value, custom_field_id, chained_custom_field_id) - not_in = nil - if operator == '!' - # Makes ! operator work for custom fields with multiple values - operator = '=' - not_in = 'NOT' - end - - filter = available_filters[field] - target_class = filter[:through].format.target_class - - "#{queried_table_name}.id #{not_in} IN (" + - "SELECT customized_id FROM #{CustomValue.table_name}" + - " WHERE customized_type='#{queried_class}' AND custom_field_id=#{custom_field_id}" + - " AND CAST(CASE value WHEN '' THEN '0' ELSE value END AS decimal(30,0)) IN (" + - " SELECT customized_id FROM #{CustomValue.table_name}" + - " WHERE customized_type='#{target_class}' AND custom_field_id=#{chained_custom_field_id}" + - " AND #{sql_for_field(field, operator, value, CustomValue.table_name, 'value')}))" - - end - - def sql_for_custom_field_attribute(field, operator, value, custom_field_id, attribute) - attribute = 'effective_date' if attribute == 'due_date' - not_in = nil - if operator == '!' - # Makes ! operator work for custom fields with multiple values - operator = '=' - not_in = 'NOT' - end - - filter = available_filters[field] - target_table_name = filter[:field].format.target_class.table_name - - "#{queried_table_name}.id #{not_in} IN (" + - "SELECT customized_id FROM #{CustomValue.table_name}" + - " WHERE customized_type='#{queried_class}' AND custom_field_id=#{custom_field_id}" + - " AND CAST(CASE value WHEN '' THEN '0' ELSE value END AS decimal(30,0)) IN (" + - " SELECT id FROM #{target_table_name} WHERE #{sql_for_field(field, operator, value, filter[:field].format.target_class.table_name, attribute)}))" - end - - # Helper method to generate the WHERE sql for a +field+, +operator+ and a +value+ - def sql_for_field(field, operator, value, db_table, db_field, is_custom_filter=false) - sql = '' - case operator - when "=" - if value.any? - case type_for(field) - when :date, :date_past - sql = date_clause(db_table, db_field, parse_date(value.first), parse_date(value.first), is_custom_filter) - when :integer - int_values = value.first.to_s.scan(/[+-]?\d+/).map(&:to_i).join(",") - if int_values.present? - if is_custom_filter - sql = "(#{db_table}.#{db_field} <> '' AND CAST(CASE #{db_table}.#{db_field} WHEN '' THEN '0' ELSE #{db_table}.#{db_field} END AS decimal(30,3)) IN (#{int_values}))" - else - sql = "#{db_table}.#{db_field} IN (#{int_values})" - end - else - sql = "1=0" - end - when :float - if is_custom_filter - sql = "(#{db_table}.#{db_field} <> '' AND CAST(CASE #{db_table}.#{db_field} WHEN '' THEN '0' ELSE #{db_table}.#{db_field} END AS decimal(30,3)) BETWEEN #{value.first.to_f - 1e-5} AND #{value.first.to_f + 1e-5})" - else - sql = "#{db_table}.#{db_field} BETWEEN #{value.first.to_f - 1e-5} AND #{value.first.to_f + 1e-5}" - end - else - sql = queried_class.send(:sanitize_sql_for_conditions, ["#{db_table}.#{db_field} IN (?)", value]) - end - else - # IN an empty set - sql = "1=0" - end - when "!" - if value.any? - sql = queried_class.send(:sanitize_sql_for_conditions, ["(#{db_table}.#{db_field} IS NULL OR #{db_table}.#{db_field} NOT IN (?))", value]) - else - # NOT IN an empty set - sql = "1=1" - end - when "!*" - sql = "#{db_table}.#{db_field} IS NULL" - sql += " OR #{db_table}.#{db_field} = ''" if is_custom_filter || [:text, :string].include?(type_for(field)) - when "*" - sql = "#{db_table}.#{db_field} IS NOT NULL" - sql += " AND #{db_table}.#{db_field} <> ''" if is_custom_filter - when ">=" - if [:date, :date_past].include?(type_for(field)) - sql = date_clause(db_table, db_field, parse_date(value.first), nil, is_custom_filter) - else - if is_custom_filter - sql = "(#{db_table}.#{db_field} <> '' AND CAST(CASE #{db_table}.#{db_field} WHEN '' THEN '0' ELSE #{db_table}.#{db_field} END AS decimal(30,3)) >= #{value.first.to_f})" - else - sql = "#{db_table}.#{db_field} >= #{value.first.to_f}" - end - end - when "<=" - if [:date, :date_past].include?(type_for(field)) - sql = date_clause(db_table, db_field, nil, parse_date(value.first), is_custom_filter) - else - if is_custom_filter - sql = "(#{db_table}.#{db_field} <> '' AND CAST(CASE #{db_table}.#{db_field} WHEN '' THEN '0' ELSE #{db_table}.#{db_field} END AS decimal(30,3)) <= #{value.first.to_f})" - else - sql = "#{db_table}.#{db_field} <= #{value.first.to_f}" - end - end - when "><" - if [:date, :date_past].include?(type_for(field)) - sql = date_clause(db_table, db_field, parse_date(value[0]), parse_date(value[1]), is_custom_filter) - else - if is_custom_filter - sql = "(#{db_table}.#{db_field} <> '' AND CAST(CASE #{db_table}.#{db_field} WHEN '' THEN '0' ELSE #{db_table}.#{db_field} END AS decimal(30,3)) BETWEEN #{value[0].to_f} AND #{value[1].to_f})" - else - sql = "#{db_table}.#{db_field} BETWEEN #{value[0].to_f} AND #{value[1].to_f}" - end - end - when "o" - sql = "#{queried_table_name}.status_id IN (SELECT id FROM #{IssueStatus.table_name} WHERE is_closed=#{self.class.connection.quoted_false})" if field == "status_id" - when "c" - sql = "#{queried_table_name}.status_id IN (SELECT id FROM #{IssueStatus.table_name} WHERE is_closed=#{self.class.connection.quoted_true})" if field == "status_id" - when ">t-" - # >= today - n days - sql = relative_date_clause(db_table, db_field, - value.first.to_i, nil, is_custom_filter) - when "t+" - # >= today + n days - sql = relative_date_clause(db_table, db_field, value.first.to_i, nil, is_custom_filter) - when "= first_day_of_week ? day_of_week - first_day_of_week : day_of_week + 7 - first_day_of_week) - sql = relative_date_clause(db_table, db_field, - days_ago, - days_ago + 6, is_custom_filter) - when "lw" - # = last week - first_day_of_week = l(:general_first_day_of_week).to_i - day_of_week = User.current.today.cwday - days_ago = (day_of_week >= first_day_of_week ? day_of_week - first_day_of_week : day_of_week + 7 - first_day_of_week) - sql = relative_date_clause(db_table, db_field, - days_ago - 7, - days_ago - 1, is_custom_filter) - when "l2w" - # = last 2 weeks - first_day_of_week = l(:general_first_day_of_week).to_i - day_of_week = User.current.today.cwday - days_ago = (day_of_week >= first_day_of_week ? day_of_week - first_day_of_week : day_of_week + 7 - first_day_of_week) - sql = relative_date_clause(db_table, db_field, - days_ago - 14, - days_ago - 1, is_custom_filter) - when "nw" - # = next week - first_day_of_week = l(:general_first_day_of_week).to_i - day_of_week = User.current.today.cwday - from = -(day_of_week >= first_day_of_week ? day_of_week - first_day_of_week : day_of_week + 7 - first_day_of_week) + 7 - sql = relative_date_clause(db_table, db_field, from, from + 6, is_custom_filter) - when "m" - # = this month - date = User.current.today - sql = date_clause(db_table, db_field, date.beginning_of_month, date.end_of_month, is_custom_filter) - when "lm" - # = last month - date = User.current.today.prev_month - sql = date_clause(db_table, db_field, date.beginning_of_month, date.end_of_month, is_custom_filter) - when "nm" - # = next month - date = User.current.today.next_month - sql = date_clause(db_table, db_field, date.beginning_of_month, date.end_of_month, is_custom_filter) - when "y" - # = this year - date = User.current.today - sql = date_clause(db_table, db_field, date.beginning_of_year, date.end_of_year, is_custom_filter) - when "~" - sql = sql_contains("#{db_table}.#{db_field}", value.first) - when "!~" - sql = sql_contains("#{db_table}.#{db_field}", value.first, :match => false) - when "^" - sql = sql_contains("#{db_table}.#{db_field}", value.first, :starts_with => true) - when "$" - sql = sql_contains("#{db_table}.#{db_field}", value.first, :ends_with => true) - else - raise "Unknown query operator #{operator}" - end - - return sql - end - - # Returns a SQL LIKE statement with wildcards - def sql_contains(db_field, value, options={}) - options = {} unless options.is_a?(Hash) - options.symbolize_keys! - prefix = suffix = nil - prefix = '%' if options[:ends_with] - suffix = '%' if options[:starts_with] - prefix = suffix = '%' if prefix.nil? && suffix.nil? - queried_class.send( - :sanitize_sql_for_conditions, - [Redmine::Database.like(db_field, '?', :match => options[:match]), "#{prefix}#{value}#{suffix}"]) - end - - # Adds a filter for the given custom field - def add_custom_field_filter(field, assoc=nil) - options = field.query_filter_options(self) - - filter_id = "cf_#{field.id}" - filter_name = field.name - if assoc.present? - filter_id = "#{assoc}.#{filter_id}" - filter_name = l("label_attribute_of_#{assoc}", :name => filter_name) - end - add_available_filter filter_id, options.merge({ - :name => filter_name, - :field => field - }) - end - - # Adds filters for custom fields associated to the custom field target class - # Eg. having a version custom field "Milestone" for issues and a date custom field "Release date" - # for versions, it will add an issue filter on Milestone'e Release date. - def add_chained_custom_field_filters(field) - klass = field.format.target_class - if klass - CustomField.where(:is_filter => true, :type => "#{klass.name}CustomField").each do |chained| - options = chained.query_filter_options(self) - - filter_id = "cf_#{field.id}.cf_#{chained.id}" - filter_name = chained.name - - add_available_filter filter_id, options.merge({ - :name => l(:label_attribute_of_object, :name => chained.name, :object_name => field.name), - :field => chained, - :through => field - }) - end - end - end - - # Adds filters for the given custom fields scope - def add_custom_fields_filters(scope, assoc=nil) - scope.visible.where(:is_filter => true).sorted.each do |field| - add_custom_field_filter(field, assoc) - if assoc.nil? - add_chained_custom_field_filters(field) - if field.format.target_class && field.format.target_class == Version - add_available_filter( - "cf_#{field.id}.due_date", - :type => :date, - :field => field, - :name => l(:label_attribute_of_object, :name => l(:field_effective_date), :object_name => field.name)) - add_available_filter( - "cf_#{field.id}.status", - :type => :list, - :field => field, - :name => l(:label_attribute_of_object, :name => l(:field_status), :object_name => field.name), - :values => Version::VERSION_STATUSES.map{|s| [l("version_status_#{s}"), s]}) - end - end - end - end - - # Adds filters for the given associations custom fields - def add_associations_custom_fields_filters(*associations) - fields_by_class = CustomField.visible.where(:is_filter => true).group_by(&:class) - associations.each do |assoc| - association_klass = queried_class.reflect_on_association(assoc).klass - fields_by_class.each do |field_class, fields| - if field_class.customized_class <= association_klass - fields.sort.each do |field| - add_custom_field_filter(field, assoc) - end - end - end - end - end - - def quoted_time(time, is_custom_filter) - if is_custom_filter - # Custom field values are stored as strings in the DB - # using this format that does not depend on DB date representation - time.strftime("%Y-%m-%d %H:%M:%S") - else - self.class.connection.quoted_date(time) - end - end - - def date_for_user_time_zone(y, m, d) - if tz = User.current.time_zone - tz.local y, m, d - else - Time.local y, m, d - end - end - - # Returns a SQL clause for a date or datetime field. - def date_clause(table, field, from, to, is_custom_filter) - s = [] - if from - if from.is_a?(Date) - from = date_for_user_time_zone(from.year, from.month, from.day).yesterday.end_of_day - else - from = from - 1 # second - end - if self.class.default_timezone == :utc - from = from.utc - end - s << ("#{table}.#{field} > '%s'" % [quoted_time(from, is_custom_filter)]) - end - if to - if to.is_a?(Date) - to = date_for_user_time_zone(to.year, to.month, to.day).end_of_day - end - if self.class.default_timezone == :utc - to = to.utc - end - s << ("#{table}.#{field} <= '%s'" % [quoted_time(to, is_custom_filter)]) - end - s.join(' AND ') - end - - # Returns a SQL clause for a date or datetime field using relative dates. - def relative_date_clause(table, field, days_from, days_to, is_custom_filter) - date_clause(table, field, (days_from ? User.current.today + days_from : nil), (days_to ? User.current.today + days_to : nil), is_custom_filter) - end - - # Returns a Date or Time from the given filter value - def parse_date(arg) - if /\A\d{4}-\d{2}-\d{2}T/.match?(arg.to_s) - Time.parse(arg) rescue nil - else - Date.parse(arg) rescue nil - end - end - - # Additional joins required for the given sort options - def joins_for_order_statement(order_options) - joins = [] - - if order_options - order_options.scan(/cf_\d+/).uniq.each do |name| - column = available_columns.detect {|c| c.name.to_s == name} - join = column && column.custom_field.join_for_order_statement - if join - joins << join - end - end - end - - joins.any? ? joins.join(' ') : nil - end -end diff --git a/app/models/repository.rb b/app/models/repository.rb deleted file mode 100644 index 4aca619..0000000 --- a/app/models/repository.rb +++ /dev/null @@ -1,519 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class ScmFetchError < StandardError; end - -class Repository < ActiveRecord::Base - include Redmine::Ciphering - include Redmine::SafeAttributes - - # Maximum length for repository identifiers - IDENTIFIER_MAX_LENGTH = 255 - - belongs_to :project - has_many :changesets, lambda{order("#{Changeset.table_name}.committed_on DESC, #{Changeset.table_name}.id DESC")} - has_many :filechanges, :class_name => 'Change', :through => :changesets - - serialize :extra_info - - before_validation :normalize_identifier - before_save :check_default - - # Raw SQL to delete changesets and changes in the database - # has_many :changesets, :dependent => :destroy is too slow for big repositories - before_destroy :clear_changesets - - validates_length_of :login, maximum: 60, allow_nil: true - validates_length_of :password, :maximum => 255, :allow_nil => true - validates_length_of :root_url, :url, maximum: 255 - validates_length_of :identifier, :maximum => IDENTIFIER_MAX_LENGTH, :allow_blank => true - validates_uniqueness_of :identifier, :scope => :project_id - validates_exclusion_of :identifier, :in => %w(browse show entry raw changes annotate diff statistics graph revisions revision) - # donwcase letters, digits, dashes, underscores but not digits only - validates_format_of :identifier, :with => /\A(?!\d+$)[a-z0-9\-_]*\z/, :allow_blank => true - # Checks if the SCM is enabled when creating a repository - validate :repo_create_validation, :on => :create - validate :validate_repository_path - - safe_attributes( - 'identifier', - 'login', - 'password', - 'path_encoding', - 'log_encoding', - 'is_default') - - safe_attributes( - 'url', - :if => lambda {|repository, user| repository.new_record?}) - - def repo_create_validation - unless Setting.enabled_scm.include?(self.class.name.demodulize) - errors.add(:type, :invalid) - end - end - - def self.human_attribute_name(attribute_key_name, *args) - attr_name = attribute_key_name.to_s - if attr_name == "log_encoding" - attr_name = "commit_logs_encoding" - end - super(attr_name, *args) - end - - # Removes leading and trailing whitespace - def url=(arg) - write_attribute(:url, arg ? arg.to_s.strip : nil) - end - - # Removes leading and trailing whitespace - def root_url=(arg) - write_attribute(:root_url, arg ? arg.to_s.strip : nil) - end - - def password - read_ciphered_attribute(:password) - end - - def password=(arg) - write_ciphered_attribute(:password, arg) - end - - def scm_adapter - self.class.scm_adapter_class - end - - def scm - unless @scm - @scm = self.scm_adapter.new(url, root_url, - login, password, path_encoding) - if root_url.blank? && @scm.root_url.present? - update_attribute(:root_url, @scm.root_url) - end - end - @scm - end - - def scm_name - self.class.scm_name - end - - def name - if identifier.present? - identifier - elsif is_default? - l(:field_repository_is_default) - else - scm_name - end - end - - def identifier=(identifier) - super unless identifier_frozen? - end - - def identifier_frozen? - errors[:identifier].blank? && !(new_record? || identifier.blank?) - end - - def identifier_param - if identifier.present? - identifier - else - id.to_s - end - end - - def <=>(repository) - if is_default? - -1 - elsif repository.is_default? - 1 - else - identifier.to_s <=> repository.identifier.to_s - end - end - - def self.find_by_identifier_param(param) - if /^\d+$/.match?(param.to_s) - find_by_id(param) - else - find_by_identifier(param) - end - end - - # TODO: should return an empty hash instead of nil to avoid many ||{} - def extra_info - h = read_attribute(:extra_info) - h.is_a?(Hash) ? h : nil - end - - def merge_extra_info(arg) - h = extra_info || {} - return h if arg.nil? - h.merge!(arg) - write_attribute(:extra_info, h) - end - - def report_last_commit - true - end - - def supports_cat? - scm.supports_cat? - end - - def supports_annotate? - scm.supports_annotate? - end - - def supports_all_revisions? - true - end - - def supports_directory_revisions? - false - end - - def supports_revision_graph? - false - end - - def entry(path=nil, identifier=nil) - scm.entry(path, identifier) - end - - def scm_entries(path=nil, identifier=nil) - scm.entries(path, identifier) - end - protected :scm_entries - - def entries(path=nil, identifier=nil) - entries = scm_entries(path, identifier) - load_entries_changesets(entries) - entries - end - - def branches - scm.branches - end - - def tags - scm.tags - end - - def default_branch - nil - end - - def properties(path, identifier=nil) - scm.properties(path, identifier) - end - - def cat(path, identifier=nil) - scm.cat(path, identifier) - end - - def diff(path, rev, rev_to) - scm.diff(path, rev, rev_to) - end - - def diff_format_revisions(cs, cs_to, sep=':') - text = "" - text += cs_to.format_identifier + sep if cs_to - text += cs.format_identifier if cs - text - end - - # Returns a path relative to the url of the repository - def relative_path(path) - path - end - - # Finds and returns a revision with a number or the beginning of a hash - def find_changeset_by_name(name) - return nil if name.blank? - s = name.to_s - if /^\d*$/.match?(s) - changesets.find_by(:revision => s) - else - changesets.where("revision LIKE ?", s + '%').first - end - end - - def latest_changeset - @latest_changeset ||= changesets.first - end - - # Returns the latest changesets for +path+ - # Default behaviour is to search in cached changesets - def latest_changesets(path, rev, limit=10) - if path.blank? - changesets. - reorder("#{Changeset.table_name}.committed_on DESC, #{Changeset.table_name}.id DESC"). - limit(limit). - preload(:user). - to_a - else - filechanges. - where("path = ?", path.with_leading_slash). - reorder("#{Changeset.table_name}.committed_on DESC, #{Changeset.table_name}.id DESC"). - limit(limit). - preload(:changeset => :user). - collect(&:changeset) - end - end - - def scan_changesets_for_issue_ids - self.changesets.each(&:scan_comment_for_issue_ids) - end - - # Returns an array of committers usernames and associated user_id - def committers - @committers ||= Changeset.where(:repository_id => id).distinct.pluck(:committer, :user_id) - end - - # Maps committers username to a user ids - def committer_ids=(h) - if h.is_a?(Hash) - committers.each do |committer, user_id| - new_user_id = h[committer] - if new_user_id && (new_user_id.to_i != user_id.to_i) - new_user_id = (new_user_id.to_i > 0 ? new_user_id.to_i : nil) - Changeset.where(["repository_id = ? AND committer = ?", id, committer]). - update_all("user_id = #{new_user_id.nil? ? 'NULL' : new_user_id}") - end - end - @committers = nil - @found_committer_users = nil - true - else - false - end - end - - # Returns the Redmine User corresponding to the given +committer+ - # It will return nil if the committer is not yet mapped and if no User - # with the same username or email was found - def find_committer_user(committer) - unless committer.blank? - @found_committer_users ||= {} - return @found_committer_users[committer] if @found_committer_users.has_key?(committer) - - user = nil - c = changesets.where(:committer => committer). - includes(:user).references(:user).first - if c && c.user - user = c.user - elsif committer.strip =~ /^([^<]+)(<(.*)>)?$/ - username, email = $1.strip, $3 - u = User.find_by_login(username) - u ||= User.find_by_mail(email) unless email.blank? - user = u - end - @found_committer_users[committer] = user - user - end - end - - def repo_log_encoding - encoding = log_encoding.to_s.strip - encoding.blank? ? 'UTF-8' : encoding - end - - # Fetches new changesets for all repositories of active projects - # Can be called periodically by an external script - # eg. ruby script/runner "Repository.fetch_changesets" - def self.fetch_changesets - Project.active.has_module(:repository).all.each do |project| - project.repositories.each do |repository| - begin - repository.fetch_changesets - rescue Redmine::Scm::Adapters::CommandFailed => e - logger.error "scm: error during fetching changesets: #{e.message}" - end - end - end - end - - # scan changeset comments to find related and fixed issues for all repositories - def self.scan_changesets_for_issue_ids - all.each(&:scan_changesets_for_issue_ids) - end - - def self.scm_name - 'Abstract' - end - - def self.available_scm - subclasses.collect {|klass| [klass.scm_name, klass.name]} - end - - def self.factory(klass_name, *args) - repository_class(klass_name).new(*args) rescue nil - end - - def self.repository_class(class_name) - class_name = class_name.to_s.camelize - if Redmine::Scm::Base.all.include?(class_name) - "Repository::#{class_name}".constantize - end - end - - def self.scm_adapter_class - nil - end - - def self.scm_command - ret = "" - begin - ret = self.scm_adapter_class.client_command if self.scm_adapter_class - rescue => e - logger.error "scm: error during get command: #{e.message}" - end - ret - end - - def self.scm_version_string - ret = "" - begin - ret = self.scm_adapter_class.client_version_string if self.scm_adapter_class - rescue => e - logger.error "scm: error during get version string: #{e.message}" - end - ret - end - - def self.scm_available - ret = false - begin - ret = self.scm_adapter_class.client_available if self.scm_adapter_class - rescue => e - logger.error "scm: error during get scm available: #{e.message}" - end - ret - end - - def set_as_default? - new_record? && project && Repository.where(:project_id => project.id).empty? - end - - # Returns a hash with statistics by author in the following form: - # { - # "John Smith" => { :commits => 45, :changes => 324 }, - # "Bob" => { ... } - # } - # - # Notes: - # - this hash honnors the users mapping defined for the repository - def stats_by_author - commits = Changeset.where("repository_id = ?", id). - select("committer, user_id, count(*) as count").group("committer, user_id") - # TODO: restore ordering ; this line probably never worked - # commits.to_a.sort! {|x, y| x.last <=> y.last} - changes = Change.joins(:changeset).where("#{Changeset.table_name}.repository_id = ?", id). - select("committer, user_id, count(*) as count").group("committer, user_id") - user_ids = changesets.map(&:user_id).compact.uniq - authors_names = User.where(:id => user_ids).inject({}) do |memo, user| - memo[user.id] = user.to_s - memo - end - (commits + changes).inject({}) do |hash, element| - mapped_name = element.committer - if username = authors_names[element.user_id.to_i] - mapped_name = username - end - hash[mapped_name] ||= { :commits_count => 0, :changes_count => 0 } - if element.is_a?(Changeset) - hash[mapped_name][:commits_count] += element.count.to_i - else - hash[mapped_name][:changes_count] += element.count.to_i - end - hash - end - end - - # Returns a scope of changesets that come from the same commit as the given changeset - # in different repositories that point to the same backend - def same_commits_in_scope(scope, changeset) - scope = scope.joins(:repository).where(:repositories => {:url => url, :root_url => root_url, :type => type}) - if changeset.scmid.present? - scope = scope.where(:scmid => changeset.scmid) - else - scope = scope.where(:revision => changeset.revision) - end - scope - end - - def valid_name?(name) - scm.valid_name?(name) - end - - protected - - # Validates repository url based against an optional regular expression - # that can be set in the Redmine configuration file. - def validate_repository_path(attribute=:url) - regexp = Redmine::Configuration["scm_#{scm_name.to_s.downcase}_path_regexp"] - if changes[attribute] && regexp.present? - regexp = regexp.to_s.strip.gsub('%project%') {Regexp.escape(project.try(:identifier).to_s)} - unless Regexp.new("\\A#{regexp}\\z").match?(send(attribute).to_s) - errors.add(attribute, :invalid) - end - end - end - - def normalize_identifier - self.identifier = identifier.to_s.strip - end - - def check_default - if !is_default? && set_as_default? - self.is_default = true - end - if is_default? && is_default_changed? - Repository.where(["project_id = ?", project_id]).update_all(["is_default = ?", false]) - end - end - - def load_entries_changesets(entries) - if entries - entries.each do |entry| - if entry.lastrev && entry.lastrev.identifier - entry.changeset = find_changeset_by_name(entry.lastrev.identifier) - end - end - end - end - - private - - # Deletes repository data - def clear_changesets - cs = Changeset.table_name - ch = Change.table_name - ci = "#{table_name_prefix}changesets_issues#{table_name_suffix}" - cp = "#{table_name_prefix}changeset_parents#{table_name_suffix}" - - self.class.connection.delete("DELETE FROM #{ch} WHERE #{ch}.changeset_id IN (SELECT #{cs}.id FROM #{cs} WHERE #{cs}.repository_id = #{id})") - self.class.connection.delete("DELETE FROM #{ci} WHERE #{ci}.changeset_id IN (SELECT #{cs}.id FROM #{cs} WHERE #{cs}.repository_id = #{id})") - self.class.connection.delete("DELETE FROM #{cp} WHERE #{cp}.changeset_id IN (SELECT #{cs}.id FROM #{cs} WHERE #{cs}.repository_id = #{id})") - self.class.connection.delete("DELETE FROM #{cs} WHERE #{cs}.repository_id = #{id}") - end -end diff --git a/app/models/repository/bazaar.rb b/app/models/repository/bazaar.rb deleted file mode 100644 index 0955a0d..0000000 --- a/app/models/repository/bazaar.rb +++ /dev/null @@ -1,125 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -require 'redmine/scm/adapters/bazaar_adapter' - -class Repository::Bazaar < Repository - validates_presence_of :url, :log_encoding - - def self.human_attribute_name(attribute_key_name, *args) - attr_name = attribute_key_name.to_s - if attr_name == "url" - attr_name = "path_to_repository" - end - super(attr_name, *args) - end - - def self.scm_adapter_class - Redmine::Scm::Adapters::BazaarAdapter - end - - def self.scm_name - 'Bazaar' - end - - def entry(path=nil, identifier=nil) - scm.bzr_path_encodig = log_encoding - scm.entry(path, identifier) - end - - def cat(path, identifier=nil) - scm.bzr_path_encodig = log_encoding - scm.cat(path, identifier) - end - - def annotate(path, identifier=nil) - scm.bzr_path_encodig = log_encoding - scm.annotate(path, identifier) - end - - def diff(path, rev, rev_to) - scm.bzr_path_encodig = log_encoding - scm.diff(path, rev, rev_to) - end - - def scm_entries(path=nil, identifier=nil) - scm.bzr_path_encodig = log_encoding - entries = scm.entries(path, identifier) - if entries - entries.each do |e| - next if e.lastrev.revision.blank? - # Set the filesize unless browsing a specific revision - if identifier.nil? && e.is_file? - full_path = File.join(root_url, e.path) - e.size = File.stat(full_path).size if File.file?(full_path) - end - c = Change. - includes(:changeset). - where("#{Change.table_name}.revision = ? and #{Changeset.table_name}.repository_id = ?", e.lastrev.revision, id). - order("#{Changeset.table_name}.revision DESC"). - first - if c - e.lastrev.identifier = c.changeset.revision - e.lastrev.name = c.changeset.revision - e.lastrev.author = c.changeset.committer - end - end - end - entries - end - protected :scm_entries - - def fetch_changesets - scm.bzr_path_encodig = log_encoding - scm_info = scm.info - if scm_info - # latest revision found in database - db_revision = latest_changeset ? latest_changeset.revision.to_i : 0 - # latest revision in the repository - scm_revision = scm_info.lastrev.identifier.to_i - if db_revision < scm_revision - logger.debug "Fetching changesets for repository #{url}" if logger && logger.debug? - identifier_from = db_revision + 1 - while identifier_from <= scm_revision - # loads changesets by batches of 200 - identifier_to = [identifier_from + 199, scm_revision].min - revisions = scm.revisions('', identifier_to, identifier_from) - transaction do - revisions.reverse_each do |revision| - changeset = Changeset.create(:repository => self, - :revision => revision.identifier, - :committer => revision.author, - :committed_on => revision.time, - :scmid => revision.scmid, - :comments => revision.message) - - revision.paths.each do |change| - Change.create(:changeset => changeset, - :action => change[:action], - :path => change[:path], - :revision => change[:revision]) - end - end - end unless revisions.nil? - identifier_from = identifier_to + 1 - end - end - end - end -end diff --git a/app/models/repository/cvs.rb b/app/models/repository/cvs.rb deleted file mode 100644 index d4fbb72..0000000 --- a/app/models/repository/cvs.rb +++ /dev/null @@ -1,216 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -require 'redmine/scm/adapters/cvs_adapter' -require 'digest/sha1' - -class Repository::Cvs < Repository - validates_presence_of :url, :root_url, :log_encoding - - safe_attributes( - 'root_url', - :if => lambda {|repository, user| repository.new_record?}) - - def self.human_attribute_name(attribute_key_name, *args) - attr_name = attribute_key_name.to_s - if attr_name == "root_url" - attr_name = "cvsroot" - elsif attr_name == "url" - attr_name = "cvs_module" - end - super(attr_name, *args) - end - - def self.scm_adapter_class - Redmine::Scm::Adapters::CvsAdapter - end - - def self.scm_name - 'CVS' - end - - def entry(path=nil, identifier=nil) - rev = identifier.nil? ? nil : changesets.find_by_revision(identifier) - scm.entry(path, rev.nil? ? nil : rev.committed_on) - end - - def scm_entries(path=nil, identifier=nil) - rev = nil - if ! identifier.nil? - rev = changesets.find_by_revision(identifier) - return nil if rev.nil? - end - entries = scm.entries(path, rev.nil? ? nil : rev.committed_on) - if entries - entries.each do |entry| - if ( ! entry.lastrev.nil? ) && ( ! entry.lastrev.revision.nil? ) - change = filechanges.where( - :revision => entry.lastrev.revision, - :path => scm.with_leading_slash(entry.path)).first - if change - entry.lastrev.identifier = change.changeset.revision - entry.lastrev.revision = change.changeset.revision - entry.lastrev.author = change.changeset.committer - # entry.lastrev.branch = change.branch - end - end - end - end - entries - end - protected :scm_entries - - def cat(path, identifier=nil) - rev = nil - if ! identifier.nil? - rev = changesets.find_by_revision(identifier) - return nil if rev.nil? - end - scm.cat(path, rev.nil? ? nil : rev.committed_on) - end - - def annotate(path, identifier=nil) - rev = nil - if ! identifier.nil? - rev = changesets.find_by_revision(identifier) - return nil if rev.nil? - end - scm.annotate(path, rev.nil? ? nil : rev.committed_on) - end - - def diff(path, rev, rev_to) - # convert rev to revision. CVS can't handle changesets here - diff=[] - changeset_from = changesets.find_by_revision(rev) - if rev_to.to_i > 0 - changeset_to = changesets.find_by_revision(rev_to) - end - changeset_from.filechanges.each do |change_from| - revision_from = nil - revision_to = nil - if path.nil? || (change_from.path.starts_with? scm.with_leading_slash(path)) - revision_from = change_from.revision - end - if revision_from - if changeset_to - changeset_to.filechanges.each do |change_to| - revision_to = change_to.revision if change_to.path == change_from.path - end - end - unless revision_to - revision_to = scm.get_previous_revision(revision_from) - end - file_diff = scm.diff(change_from.path, revision_from, revision_to) - diff = diff + file_diff unless file_diff.nil? - end - end - return diff - end - - def fetch_changesets - # some nifty bits to introduce a commit-id with cvs - # natively cvs doesn't provide any kind of changesets, - # there is only a revision per file. - # we now take a guess using the author, the commitlog and the commit-date. - - # last one is the next step to take. the commit-date is not equal for all - # commits in one changeset. cvs update the commit-date when the *,v file was touched. so - # we use a small delta here, to merge all changes belonging to _one_ changeset - time_delta = 10.seconds - fetch_since = latest_changeset ? latest_changeset.committed_on : nil - transaction do - tmp_rev_num = 1 - scm.revisions('', fetch_since, nil, :log_encoding => repo_log_encoding) do |revision| - # only add the change to the database, if it doen't exists. the cvs log - # is not exclusive at all. - tmp_time = revision.time.clone - unless filechanges.find_by_path_and_revision( - scm.with_leading_slash(revision.paths[0][:path]), - revision.paths[0][:revision] - ) - cmt = Changeset.normalize_comments(revision.message, repo_log_encoding) - author_utf8 = Changeset.to_utf8(revision.author, repo_log_encoding) - cs = changesets.where( - :committed_on => (tmp_time - time_delta)..(tmp_time + time_delta), - :committer => author_utf8, - :comments => cmt - ).first - # create a new changeset.... - unless cs - # we use a temporary revision number here (just for inserting) - # later on, we calculate a continuous positive number - tmp_time2 = tmp_time.clone.gmtime - branch = revision.paths[0][:branch] - scmid = branch + "-" + tmp_time2.strftime("%Y%m%d-%H%M%S") - cs = Changeset.create(:repository => self, - :revision => "tmp#{tmp_rev_num}", - :scmid => scmid, - :committer => revision.author, - :committed_on => tmp_time, - :comments => revision.message) - tmp_rev_num += 1 - end - # convert CVS-File-States to internal Action-abbreviations - # default action is (M)odified - action = "M" - if revision.paths[0][:action] == "Exp" && revision.paths[0][:revision] == "1.1" - action = "A" # add-action always at first revision (= 1.1) - elsif revision.paths[0][:action] == "dead" - action = "D" # dead-state is similar to Delete - end - Change.create( - :changeset => cs, - :action => action, - :path => scm.with_leading_slash(revision.paths[0][:path]), - :revision => revision.paths[0][:revision], - :branch => revision.paths[0][:branch] - ) - end - end - - # Renumber new changesets in chronological order - Changeset. - order('committed_on ASC, id ASC'). - where("repository_id = ? AND revision LIKE 'tmp%'", id). - each do |changeset| - changeset.update_attribute :revision, next_revision_number - end - end - @current_revision_number = nil - end - - protected - - # Overrides Repository#validate_repository_path to validate - # against root_url attribute. - def validate_repository_path(attribute=:root_url) - super(attribute) - end - - private - - # Returns the next revision number to assign to a CVS changeset - def next_revision_number - # Need to retrieve existing revision numbers to sort them as integers - sql = "SELECT revision FROM #{Changeset.table_name} " \ - "WHERE repository_id = #{id} AND revision NOT LIKE 'tmp%'" - @current_revision_number ||= (self.class.connection.select_values(sql).collect(&:to_i).max || 0) - @current_revision_number += 1 - end -end diff --git a/app/models/repository/filesystem.rb b/app/models/repository/filesystem.rb deleted file mode 100644 index 5d823b9..0000000 --- a/app/models/repository/filesystem.rb +++ /dev/null @@ -1,51 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# FileSystem adapter -# File written by Paul Rivier, at Demotera. -# -# 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. - -require 'redmine/scm/adapters/filesystem_adapter' - -class Repository::Filesystem < Repository - validates_presence_of :url - - def self.human_attribute_name(attribute_key_name, *args) - attr_name = attribute_key_name.to_s - if attr_name == "url" - attr_name = "root_directory" - end - super(attr_name, *args) - end - - def self.scm_adapter_class - Redmine::Scm::Adapters::FilesystemAdapter - end - - def self.scm_name - 'Filesystem' - end - - def supports_all_revisions? - false - end - - def fetch_changesets - nil - end -end diff --git a/app/models/repository/git.rb b/app/models/repository/git.rb deleted file mode 100644 index 839a266..0000000 --- a/app/models/repository/git.rb +++ /dev/null @@ -1,266 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# Copyright (C) 2007 Patrick Aljord patcito@ŋmail.com -# -# 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. - -require 'redmine/scm/adapters/git_adapter' - -class Repository::Git < Repository - validates_presence_of :url - - safe_attributes 'report_last_commit' - - def self.human_attribute_name(attribute_key_name, *args) - attr_name = attribute_key_name.to_s - if attr_name == "url" - attr_name = "path_to_repository" - end - super(attr_name, *args) - end - - def self.scm_adapter_class - Redmine::Scm::Adapters::GitAdapter - end - - def self.scm_name - 'Git' - end - - def report_last_commit - return false if extra_info.nil? - v = extra_info["extra_report_last_commit"] - return false if v.nil? - v.to_s != '0' - end - - def report_last_commit=(arg) - merge_extra_info "extra_report_last_commit" => arg - end - - def supports_directory_revisions? - true - end - - def supports_revision_graph? - true - end - - def repo_log_encoding - 'UTF-8' - end - - # Returns the identifier for the given git changeset - def self.changeset_identifier(changeset) - changeset.scmid - end - - # Returns the readable identifier for the given git changeset - def self.format_changeset_identifier(changeset) - changeset.revision[0, 8] - end - - def branches - scm.branches - end - - def tags - scm.tags - end - - def default_branch - scm.default_branch - rescue => e - logger.error "git: error during get default branch: #{e.message}" - nil - end - - def find_changeset_by_name(name) - if name.present? - changesets.find_by(:revision => name.to_s) || - changesets.where('scmid LIKE ?', "#{name}%").first - end - end - - def scm_entries(path=nil, identifier=nil) - scm.entries(path, identifier, :report_last_commit => report_last_commit) - end - protected :scm_entries - - # With SCMs that have a sequential commit numbering, - # such as Subversion and Mercurial, - # Redmine is able to be clever and only fetch changesets - # going forward from the most recent one it knows about. - # - # However, Git does not have a sequential commit numbering. - # - # In order to fetch only new adding revisions, - # Redmine needs to save "heads". - # - # In Git and Mercurial, revisions are not in date order. - # Redmine Mercurial fixed issues. - # * Redmine Takes Too Long On Large Mercurial Repository - # http://www.redmine.org/issues/3449 - # * Sorting for changesets might go wrong on Mercurial repos - # http://www.redmine.org/issues/3567 - # - # Database revision column is text, so Redmine can not sort by revision. - # Mercurial has revision number, and revision number guarantees revision order. - # Redmine Mercurial model stored revisions ordered by database id to database. - # So, Redmine Mercurial model can use correct ordering revisions. - # - # Redmine Mercurial adapter uses "hg log -r 0:tip --limit 10" - # to get limited revisions from old to new. - # But, Git 1.7.3.4 does not support --reverse with -n or --skip. - # - # The repository can still be fully reloaded by calling #clear_changesets - # before fetching changesets (eg. for offline resync) - def fetch_changesets - scm_brs = branches - return if scm_brs.nil? || scm_brs.empty? - - h1 = extra_info || {} - h = h1.dup - repo_heads = scm_brs.map{ |br| br.scmid } - h["heads"] ||= [] - prev_db_heads = h["heads"].dup - if prev_db_heads.empty? - prev_db_heads += heads_from_branches_hash - end - return if prev_db_heads.sort == repo_heads.sort - - h["db_consistent"] ||= {} - if ! changesets.exists? - h["db_consistent"]["ordering"] = 1 - merge_extra_info(h) - self.save - elsif ! h["db_consistent"].has_key?("ordering") - h["db_consistent"]["ordering"] = 0 - merge_extra_info(h) - self.save - end - save_revisions(prev_db_heads, repo_heads) - end - - def save_revisions(prev_db_heads, repo_heads) - h = {} - opts = {} - opts[:reverse] = true - opts[:excludes] = prev_db_heads - opts[:includes] = repo_heads - - revisions = scm.revisions('', nil, nil, opts) - return if revisions.blank? - - # Make the search for existing revisions in the database in a more sufficient manner - # - # Git branch is the reference to the specific revision. - # Git can *delete* remote branch and *re-push* branch. - # - # $ git push remote :branch - # $ git push remote branch - # - # After deleting branch, revisions remain in repository until "git gc". - # On git 1.7.2.3, default pruning date is 2 weeks. - # So, "git log --not deleted_branch_head_revision" return code is 0. - # - # After re-pushing branch, "git log" returns revisions which are saved in database. - # So, Redmine needs to scan revisions and database every time. - # - # This is replacing the one-after-one queries. - # Find all revisions, that are in the database, and then remove them - # from the revision array. - # Then later we won't need any conditions for db existence. - # Query for several revisions at once, and remove them - # from the revisions array, if they are there. - # Do this in chunks, to avoid eventual memory problems - # (in case of tens of thousands of commits). - # If there are no revisions (because the original code's algorithm filtered them), - # then this part will be stepped over. - # We make queries, just if there is any revision. - limit = 100 - offset = 0 - revisions_copy = revisions.clone # revisions will change - while offset < revisions_copy.size - scmids = revisions_copy.slice(offset, limit).map{|x| x.scmid} - recent_changesets_slice = changesets.where(:scmid => scmids) - # Subtract revisions that redmine already knows about - recent_revisions = recent_changesets_slice.map{|c| c.scmid} - revisions.reject!{|r| recent_revisions.include?(r.scmid)} - offset += limit - end - revisions.each do |rev| - transaction do - # There is no search in the db for this revision, because above we ensured, - # that it's not in the db. - save_revision(rev) - end - end - h["heads"] = repo_heads.dup - merge_extra_info(h) - save(:validate => false) - end - private :save_revisions - - def save_revision(rev) - parents = (rev.parents || []).collect{|rp| find_changeset_by_name(rp)}.compact - changeset = Changeset.create( - :repository => self, - :revision => rev.identifier, - :scmid => rev.scmid, - :committer => rev.author, - :committed_on => rev.time, - :comments => rev.message, - :parents => parents - ) - unless changeset.new_record? - rev.paths.each { |change| changeset.create_change(change) } - end - changeset - end - private :save_revision - - def heads_from_branches_hash - h1 = extra_info || {} - h = h1.dup - h["branches"] ||= {} - h['branches'].map{|br, hs| hs['last_scmid']} - end - - def latest_changesets(path,rev,limit=10) - revisions = scm.revisions(path, nil, rev, :limit => limit, :all => false) - return [] if revisions.nil? || revisions.empty? - changesets.where(:scmid => revisions.map {|c| c.scmid}).to_a - end - - def clear_extra_info_of_changesets - return if extra_info.nil? - v = extra_info["extra_report_last_commit"] - write_attribute(:extra_info, nil) - h = {} - h["extra_report_last_commit"] = v - merge_extra_info(h) - save(:validate => false) - end - private :clear_extra_info_of_changesets - - def clear_changesets - super - clear_extra_info_of_changesets - end - private :clear_changesets -end diff --git a/app/models/repository/mercurial.rb b/app/models/repository/mercurial.rb deleted file mode 100644 index abe0ace..0000000 --- a/app/models/repository/mercurial.rb +++ /dev/null @@ -1,212 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -require 'redmine/scm/adapters/mercurial_adapter' - -class Repository::Mercurial < Repository - # sort changesets by revision number - has_many :changesets, - lambda {order("#{Changeset.table_name}.id DESC")}, - :foreign_key => 'repository_id' - - validates_presence_of :url - - # number of changesets to fetch at once - FETCH_AT_ONCE = 100 - - def self.human_attribute_name(attribute_key_name, *args) - attr_name = attribute_key_name.to_s - if attr_name == "url" - attr_name = "path_to_repository" - end - super(attr_name, *args) - end - - def self.scm_adapter_class - Redmine::Scm::Adapters::MercurialAdapter - end - - def self.scm_name - 'Mercurial' - end - - def supports_directory_revisions? - true - end - - def supports_revision_graph? - true - end - - def repo_log_encoding - 'UTF-8' - end - - # Returns the readable identifier for the given mercurial changeset - def self.format_changeset_identifier(changeset) - "#{changeset.revision}:#{changeset.scmid[0, 12]}" - end - - # Returns the identifier for the given Mercurial changeset - def self.changeset_identifier(changeset) - changeset.scmid - end - - def diff_format_revisions(cs, cs_to, sep=':') - super(cs, cs_to, ' ') - end - - def modify_entry_lastrev_identifier(entry) - if entry.lastrev && entry.lastrev.identifier - entry.lastrev.identifier = scmid_for_inserting_db(entry.lastrev.identifier) - end - end - private :modify_entry_lastrev_identifier - - def entry(path=nil, identifier=nil) - entry = scm.entry(path, identifier) - return nil if entry.nil? - modify_entry_lastrev_identifier(entry) - entry - end - - def scm_entries(path=nil, identifier=nil) - entries = scm.entries(path, identifier) - return nil if entries.nil? - entries.each {|entry| modify_entry_lastrev_identifier(entry)} - entries - end - protected :scm_entries - - # Finds and returns a revision with a number or the beginning of a hash - def find_changeset_by_name(name) - return nil if name.blank? - s = name.to_s - if /[^\d]/.match?(s) || s.size > 8 - cs = changesets.where(:scmid => s).first - else - cs = changesets.find_by(:revision => s) - end - return cs if cs - changesets.where('scmid LIKE ?', "#{s}%").first - end - - # Returns the latest changesets for +path+; sorted by revision number - # - # Because :order => 'id DESC' is defined at 'has_many', - # there is no need to set 'order'. - # But, MySQL test fails. - # Sqlite3 and PostgreSQL pass. - # Is this MySQL bug? - def latest_changesets(path, rev, limit=10) - changesets. - includes(:user). - where(latest_changesets_cond(path, rev, limit)). - references(:user). - limit(limit). - order("#{Changeset.table_name}.id DESC"). - to_a - end - - def is_short_id_in_db? - return @is_short_id_in_db unless @is_short_id_in_db.nil? - cs = changesets.first - @is_short_id_in_db = (!cs.nil? && cs.scmid.length != 40) - end - private :is_short_id_in_db? - - def scmid_for_inserting_db(scmid) - is_short_id_in_db? ? scmid[0, 12] : scmid - end - - def nodes_in_branch(rev, branch_limit) - scm.nodes_in_branch(rev, :limit => branch_limit).collect do |b| - scmid_for_inserting_db(b) - end - end - - def tag_scmid(rev) - scmid = scm.tagmap[rev] - scmid.nil? ? nil : scmid_for_inserting_db(scmid) - end - - def latest_changesets_cond(path, rev, limit) - cond, args = [], [] - if scm.branchmap.member? rev - # Mercurial named branch is *stable* in each revision. - # So, named branch can be stored in database. - # Mercurial provides *bookmark* which is equivalent with git branch. - # But, bookmark is not implemented. - cond << "#{Changeset.table_name}.scmid IN (?)" - # Revisions in root directory and sub directory are not equal. - # So, in order to get correct limit, we need to get all revisions. - # But, it is very heavy. - # Mercurial does not treat directory. - # So, "hg log DIR" is very heavy. - branch_limit = path.blank? ? limit : (limit * 5) - args << nodes_in_branch(rev, branch_limit) - elsif last = rev ? find_changeset_by_name(tag_scmid(rev) || rev) : nil - cond << "#{Changeset.table_name}.id <= ?" - args << last.id - end - unless path.blank? - cond << "EXISTS (SELECT * FROM #{Change.table_name} - WHERE #{Change.table_name}.changeset_id = #{Changeset.table_name}.id - AND (#{Change.table_name}.path = ? - OR #{Change.table_name}.path LIKE ? ESCAPE ?))" - args << path.with_leading_slash - args << "#{path.with_leading_slash.gsub(%r{[%_\\]}) { |s| "\\#{s}" }}/%" << '\\' - end - [cond.join(' AND '), *args] unless cond.empty? - end - private :latest_changesets_cond - - def fetch_changesets - return if scm.info.nil? - scm_rev = scm.info.lastrev.revision.to_i - db_rev = latest_changeset ? latest_changeset.revision.to_i : -1 - return unless db_rev < scm_rev # already up-to-date - - logger.debug "Fetching changesets for repository #{url}" if logger - (db_rev + 1).step(scm_rev, FETCH_AT_ONCE) do |i| - scm.each_revision('', i, [i + FETCH_AT_ONCE - 1, scm_rev].min) do |re| - transaction do - parents = (re.parents || []).collect do |rp| - find_changeset_by_name(scmid_for_inserting_db(rp)) - end.compact - cs = Changeset.create(:repository => self, - :revision => re.revision, - :scmid => scmid_for_inserting_db(re.scmid), - :committer => re.author, - :committed_on => re.time, - :comments => re.message, - :parents => parents) - unless cs.new_record? - re.paths.each do |e| - if from_revision = e[:from_revision] - e[:from_revision] = scmid_for_inserting_db(from_revision) - end - cs.create_change(e) - end - end - end - end - end - end -end diff --git a/app/models/repository/subversion.rb b/app/models/repository/subversion.rb deleted file mode 100644 index 0f01f86..0000000 --- a/app/models/repository/subversion.rb +++ /dev/null @@ -1,118 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -require 'redmine/scm/adapters/subversion_adapter' - -class Repository::Subversion < Repository - validates_presence_of :url - validates_format_of :url, :with => %r{\A(http|https|svn(\+[^\s:\/\\]+)?|file):\/\/.+}i - - def self.scm_adapter_class - Redmine::Scm::Adapters::SubversionAdapter - end - - def self.scm_name - 'Subversion' - end - - def supports_directory_revisions? - true - end - - def repo_log_encoding - 'UTF-8' - end - - def latest_changesets(path, rev, limit=10) - revisions = scm.revisions(path, rev, nil, :limit => limit) - if revisions - identifiers = revisions.collect(&:identifier).compact - changesets.where(:revision => identifiers).reorder("committed_on DESC").includes(:repository, :user).to_a - else - [] - end - end - - # Returns a path relative to the url of the repository - def relative_path(path) - path.gsub(Regexp.new("^\/?#{Regexp.escape(relative_url)}"), '') - end - - def fetch_changesets - scm_info = scm.info - if scm_info - # latest revision found in database - db_revision = latest_changeset ? latest_changeset.revision.to_i : 0 - # latest revision in the repository - scm_revision = scm_info.lastrev.identifier.to_i - if db_revision < scm_revision - logger.debug "Fetching changesets for repository #{url}" if logger && logger.debug? - identifier_from = db_revision + 1 - while (identifier_from <= scm_revision) - # loads changesets by batches of 200 - identifier_to = [identifier_from + 199, scm_revision].min - revisions = scm.revisions('', identifier_to, identifier_from, :with_paths => true) - revisions.reverse_each do |revision| - transaction do - changeset = Changeset.create(:repository => self, - :revision => revision.identifier, - :committer => revision.author, - :committed_on => revision.time, - :comments => revision.message) - - revision.paths.each do |change| - changeset.create_change(change) - end unless changeset.new_record? - end - end unless revisions.nil? - identifier_from = identifier_to + 1 - end - end - end - end - - protected - - def load_entries_changesets(entries) - return unless entries - entries_with_identifier = - entries.select {|entry| entry.lastrev && entry.lastrev.identifier.present?} - identifiers = entries_with_identifier.map {|entry| entry.lastrev.identifier}.compact.uniq - if identifiers.any? - changesets_by_identifier = - changesets.where(:revision => identifiers). - includes(:user, :repository).group_by(&:revision) - entries_with_identifier.each do |entry| - if m = changesets_by_identifier[entry.lastrev.identifier] - entry.changeset = m.first - end - end - end - end - - private - - # Returns the relative url of the repository - # Eg: root_url = file:///var/svn/foo - # url = file:///var/svn/foo/bar - # => returns /bar - def relative_url - @relative_url ||= url.gsub(Regexp.new("^#{Regexp.escape(root_url || scm.root_url)}", Regexp::IGNORECASE), '') - end -end diff --git a/app/models/role.rb b/app/models/role.rb deleted file mode 100644 index 5c4795c..0000000 --- a/app/models/role.rb +++ /dev/null @@ -1,316 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class Role < ActiveRecord::Base - include Redmine::SafeAttributes - - # Custom coder for the permissions attribute that should be an - # array of symbols. Rails 3 uses Psych which can be *unbelievably* - # slow on some platforms (eg. mingw32). - class PermissionsAttributeCoder - def self.load(str) - str.to_s.scan(/:([a-z0-9_]+)/).flatten.map(&:to_sym) - end - - def self.dump(value) - YAML.dump(value) - end - end - - # Built-in roles - BUILTIN_NON_MEMBER = 1 - BUILTIN_ANONYMOUS = 2 - - ISSUES_VISIBILITY_OPTIONS = [ - ['all', :label_issues_visibility_all], - ['default', :label_issues_visibility_public], - ['own', :label_issues_visibility_own] - ] - - TIME_ENTRIES_VISIBILITY_OPTIONS = [ - ['all', :label_time_entries_visibility_all], - ['own', :label_time_entries_visibility_own] - ] - - USERS_VISIBILITY_OPTIONS = [ - ['all', :label_users_visibility_all], - ['members_of_visible_projects', :label_users_visibility_members_of_visible_projects] - ] - - scope :sorted, lambda { order(:builtin, :position) } - scope :givable, lambda { order(:position).where(:builtin => 0) } - scope :builtin, lambda { |*args| - compare = (args.first == true ? 'not' : '') - where("#{compare} builtin = 0") - } - - before_destroy :check_deletable - has_many :workflow_rules, :dependent => :delete_all - has_and_belongs_to_many :custom_fields, :join_table => "#{table_name_prefix}custom_fields_roles#{table_name_suffix}", :foreign_key => "role_id" - - has_and_belongs_to_many :managed_roles, :class_name => 'Role', - :join_table => "#{table_name_prefix}roles_managed_roles#{table_name_suffix}", - :association_foreign_key => "managed_role_id" - - has_many :member_roles, :dependent => :destroy - has_many :members, :through => :member_roles - acts_as_positioned :scope => :builtin - - serialize :permissions, ::Role::PermissionsAttributeCoder - store :settings, :accessors => [:permissions_all_trackers, :permissions_tracker_ids] - - validates_presence_of :name - validates_uniqueness_of :name - validates_length_of :name, :maximum => 255 - validates_inclusion_of( - :issues_visibility, - :in => ISSUES_VISIBILITY_OPTIONS.collect(&:first), - :if => lambda {|role| role.respond_to?(:issues_visibility) && role.issues_visibility_changed?}) - validates_inclusion_of( - :users_visibility, - :in => USERS_VISIBILITY_OPTIONS.collect(&:first), - :if => lambda {|role| role.respond_to?(:users_visibility) && role.users_visibility_changed?}) - validates_inclusion_of( - :time_entries_visibility, - :in => TIME_ENTRIES_VISIBILITY_OPTIONS.collect(&:first), - :if => lambda {|role| role.respond_to?(:time_entries_visibility) && role.time_entries_visibility_changed?}) - - safe_attributes( - 'name', - 'assignable', - 'position', - 'issues_visibility', - 'users_visibility', - 'time_entries_visibility', - 'all_roles_managed', - 'managed_role_ids', - 'permissions', - 'permissions_all_trackers', - 'permissions_tracker_ids') - - # Copies attributes from another role, arg can be an id or a Role - def copy_from(arg, options={}) - return unless arg.present? - role = arg.is_a?(Role) ? arg : Role.find_by_id(arg.to_s) - self.attributes = role.attributes.dup.except("id", "name", "position", "builtin", "permissions") - self.permissions = role.permissions.dup - self.managed_role_ids = role.managed_role_ids.dup - self - end - - def permissions=(perms) - perms = perms.collect {|p| p.to_sym unless p.blank? }.compact.uniq if perms - write_attribute(:permissions, perms) - end - - def add_permission!(*perms) - self.permissions = [] unless permissions.is_a?(Array) - - permissions_will_change! - perms.each do |p| - p = p.to_sym - permissions << p unless permissions.include?(p) - end - save! - end - - def remove_permission!(*perms) - return unless permissions.is_a?(Array) - permissions_will_change! - perms.each { |p| permissions.delete(p.to_sym) } - save! - end - - # Returns true if the role has the given permission - def has_permission?(perm) - !permissions.nil? && permissions.include?(perm.to_sym) - end - - def consider_workflow? - has_permission?(:add_issues) || has_permission?(:edit_issues) - end - - def <=>(role) - if role - if builtin == role.builtin - position <=> role.position - else - builtin <=> role.builtin - end - else - -1 - end - end - - def to_s - name - end - - def name - case builtin - when 1 then l(:label_role_non_member, :default => read_attribute(:name)) - when 2 then l(:label_role_anonymous, :default => read_attribute(:name)) - else - read_attribute(:name) - end - end - - # Return true if the role is a builtin role - def builtin? - self.builtin != 0 - end - - # Return true if the role is the anonymous role - def anonymous? - builtin == 2 - end - - # Return true if the role is a project member role - def member? - !self.builtin? - end - - # Return true if role is allowed to do the specified action - # action can be: - # * a parameter-like Hash (eg. :controller => 'projects', :action => 'edit') - # * a permission Symbol (eg. :edit_project) - def allowed_to?(action) - if action.is_a? Hash - allowed_actions.include? "#{action[:controller]}/#{action[:action]}" - else - allowed_permissions.include? action - end - end - - # Return all the permissions that can be given to the role - def setable_permissions - setable_permissions = Redmine::AccessControl.permissions - Redmine::AccessControl.public_permissions - setable_permissions -= Redmine::AccessControl.members_only_permissions if self.builtin == BUILTIN_NON_MEMBER - setable_permissions -= Redmine::AccessControl.loggedin_only_permissions if self.builtin == BUILTIN_ANONYMOUS - setable_permissions - end - - def permissions_tracker_ids(*args) - if args.any? - Array(permissions_tracker_ids[args.first.to_s]).map(&:to_i) - else - super || {} - end - end - - def permissions_tracker_ids=(arg) - h = arg.to_hash - h.values.each {|v| v.reject!(&:blank?)} - super(h) - end - - # Returns true if tracker_id belongs to the list of - # trackers for which permission is given - def permissions_tracker_ids?(permission, tracker_id) - permissions_tracker_ids(permission).include?(tracker_id) - end - - def permissions_all_trackers - super || {} - end - - def permissions_all_trackers=(arg) - super(arg.to_hash) - end - - # Returns true if permission is given for all trackers - def permissions_all_trackers?(permission) - permissions_all_trackers[permission.to_s].to_s != '0' - end - - # Returns true if permission is given for the tracker - # (explicitly or for all trackers) - def permissions_tracker?(permission, tracker) - permissions_all_trackers?(permission) || - permissions_tracker_ids?(permission, tracker.try(:id)) - end - - # Sets the trackers that are allowed for a permission. - # tracker_ids can be an array of tracker ids or :all for - # no restrictions. - # - # Examples: - # role.set_permission_trackers :add_issues, [1, 3] - # role.set_permission_trackers :add_issues, :all - def set_permission_trackers(permission, tracker_ids) - h = {permission.to_s => (tracker_ids == :all ? '1' : '0')} - self.permissions_all_trackers = permissions_all_trackers.merge(h) - - h = {permission.to_s => (tracker_ids == :all ? [] : tracker_ids)} - self.permissions_tracker_ids = permissions_tracker_ids.merge(h) - - self - end - - def copy_workflow_rules(source_role) - WorkflowRule.copy(nil, source_role, nil, self) - end - - # Find all the roles that can be given to a project member - def self.find_all_givable - Role.givable.to_a - end - - # Return the builtin 'non member' role. If the role doesn't exist, - # it will be created on the fly. - def self.non_member - find_or_create_system_role(BUILTIN_NON_MEMBER, 'Non member') - end - - # Return the builtin 'anonymous' role. If the role doesn't exist, - # it will be created on the fly. - def self.anonymous - find_or_create_system_role(BUILTIN_ANONYMOUS, 'Anonymous') - end - - private - - def allowed_permissions - @allowed_permissions ||= permissions + Redmine::AccessControl.public_permissions.collect {|p| p.name} - end - - def allowed_actions - @actions_allowed ||= - allowed_permissions.inject([]) {|actions, permission| - actions += Redmine::AccessControl.allowed_actions(permission) - }.flatten - end - - def check_deletable - raise "Cannot delete role" if members.any? - raise "Cannot delete builtin role" if builtin? - end - - def self.find_or_create_system_role(builtin, name) - role = unscoped.find_by(:builtin => builtin) - if role.nil? - role = unscoped.create(:name => name) do |r| - r.builtin = builtin - end - raise "Unable to create the #{name} role (#{role.errors.full_messages.join(',')})." if role.new_record? - end - role - end - private_class_method :find_or_create_system_role -end diff --git a/app/models/setting.rb b/app/models/setting.rb deleted file mode 100644 index 763f83f..0000000 --- a/app/models/setting.rb +++ /dev/null @@ -1,341 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class Setting < ActiveRecord::Base - - PASSWORD_CHAR_CLASSES = { - 'uppercase' => /[A-Z]/, - 'lowercase' => /[a-z]/, - 'digits' => /[0-9]/, - 'special_chars' => /[[:ascii:]&&[:graph:]&&[:^alnum:]]/ - } - - DATE_FORMATS = [ - '%Y-%m-%d', - '%d/%m/%Y', - '%d.%m.%Y', - '%d-%m-%Y', - '%m/%d/%Y', - '%d %b %Y', - '%d %B %Y', - '%b %d, %Y', - '%B %d, %Y' - ] - - TIME_FORMATS = [ - '%H:%M', - '%I:%M %p' - ] - - ENCODINGS = %w(US-ASCII - windows-1250 - windows-1251 - windows-1252 - windows-1253 - windows-1254 - windows-1255 - windows-1256 - windows-1257 - windows-1258 - windows-31j - ISO-2022-JP - ISO-2022-KR - ISO-8859-1 - ISO-8859-2 - ISO-8859-3 - ISO-8859-4 - ISO-8859-5 - ISO-8859-6 - ISO-8859-7 - ISO-8859-8 - ISO-8859-9 - ISO-8859-13 - ISO-8859-15 - KOI8-R - UTF-8 - UTF-16 - UTF-16BE - UTF-16LE - EUC-JP - Shift_JIS - CP932 - GB18030 - GBK - ISCII91 - EUC-KR - Big5 - Big5-HKSCS - TIS-620) - - cattr_accessor :available_settings - self.available_settings ||= {} - - validates_uniqueness_of :name, :if => Proc.new {|setting| setting.new_record? || setting.name_changed?} - validates_inclusion_of :name, :in => Proc.new {available_settings.keys} - validates_numericality_of :value, :only_integer => true, :if => Proc.new { |setting| - (s = available_settings[setting.name]) && s['format'] == 'int' - } - - # Hash used to cache setting values - @cached_settings = {} - @cached_cleared_on = Time.now - - def value - v = read_attribute(:value) - # Unserialize serialized settings - if available_settings[name]['serialized'] && v.is_a?(String) - # YAML.load works as YAML.safe_load if Psych >= 4.0 is installed - v = YAML.respond_to?(:unsafe_load) ? YAML.unsafe_load(v) : YAML.load(v) - v = force_utf8_strings(v) - end - v = v.to_sym if available_settings[name]['format'] == 'symbol' && !v.blank? - v - end - - def value=(v) - v = v.to_yaml if v && available_settings[name] && available_settings[name]['serialized'] - write_attribute(:value, v.to_s) - end - - # Returns the value of the setting named name - def self.[](name) - @cached_settings[name] ||= find_or_default(name).value - end - - def self.[]=(name, v) - setting = find_or_default(name) - setting.value = v || '' - @cached_settings[name] = nil - setting.save - setting.value - end - - # Updates multiple settings from params and sends a security notification if needed - def self.set_all_from_params(settings) - return nil unless settings.is_a?(Hash) - settings = settings.dup.symbolize_keys - - errors = validate_all_from_params(settings) - return errors if errors.present? - - changes = [] - settings.each do |name, value| - next unless available_settings[name.to_s] - previous_value = Setting[name] - set_from_params name, value - if available_settings[name.to_s]['security_notifications'] && Setting[name] != previous_value - changes << name - end - end - if changes.any? - Mailer.deliver_settings_updated(User.current, changes) - end - nil - end - - def self.validate_all_from_params(settings) - messages = [] - [ - [:mail_handler_enable_regex_delimiters, :mail_handler_body_delimiters, /[\r\n]+/], - [:mail_handler_enable_regex_excluded_filenames, :mail_handler_excluded_filenames, /\s*,\s*/] - ].each do |enable_regex, regex_field, delimiter| - if settings.key?(regex_field) || settings.key?(enable_regex) - regexp = Setting.send("#{enable_regex}?") - if settings.key?(enable_regex) - regexp = settings[enable_regex].to_s != '0' - end - if regexp - settings[regex_field].to_s.split(delimiter).each do |value| - begin - Regexp.new(value) - rescue RegexpError => e - messages << [regex_field, "#{l('activerecord.errors.messages.not_a_regexp')} (#{e.message})"] - end - end - end - end - end - if settings.key?(:mail_from) - begin - mail_from = Mail::Address.new(settings[:mail_from]) - raise unless mail_from.address =~ EmailAddress::EMAIL_REGEXP - rescue - messages << [:mail_from, l('activerecord.errors.messages.invalid')] - end - end - messages - end - - # Sets a setting value from params - def self.set_from_params(name, params) - params = params.dup - params.delete_if {|v| v.blank? } if params.is_a?(Array) - params.symbolize_keys! if params.is_a?(Hash) - - m = "#{name}_from_params" - if respond_to? m - self[name.to_sym] = send m, params - else - self[name.to_sym] = params - end - end - - # Returns a hash suitable for commit_update_keywords setting - # - # Example: - # params = {:keywords => ['fixes', 'closes'], :status_id => ["3", "5"], :done_ratio => ["", "100"]} - # Setting.commit_update_keywords_from_params(params) - # # => [{'keywords => 'fixes', 'status_id' => "3"}, {'keywords => 'closes', 'status_id' => "5", 'done_ratio' => "100"}] - def self.commit_update_keywords_from_params(params) - s = [] - if params.is_a?(Hash) && params.key?(:keywords) && params.values.all? {|v| v.is_a? Array} - attributes = params.except(:keywords).keys - params[:keywords].each_with_index do |keywords, i| - next if keywords.blank? - s << attributes.inject({}) {|h, a| - value = params[a][i].to_s - h[a.to_s] = value if value.present? - h - }.merge('keywords' => keywords) - end - end - s - end - - # Helper that returns an array based on per_page_options setting - def self.per_page_options_array - per_page_options.split(%r{[\s,]}).collect(&:to_i).select {|n| n > 0}.sort - end - - # Helper that returns a Hash with single update keywords as keys - def self.commit_update_keywords_array - a = [] - if commit_update_keywords.is_a?(Array) - commit_update_keywords.each do |rule| - next unless rule.is_a?(Hash) - rule = rule.dup - rule.delete_if {|k, v| v.blank?} - keywords = rule['keywords'].to_s.downcase.split(",").map(&:strip).reject(&:blank?) - next if keywords.empty? - a << rule.merge('keywords' => keywords) - end - end - a - end - - def self.openid? - Object.const_defined?(:OpenID) && self[:openid].to_i > 0 - end - - # Checks if settings have changed since the values were read - # and clears the cache hash if it's the case - # Called once per request - def self.check_cache - settings_updated_on = Setting.maximum(:updated_on) - if settings_updated_on && @cached_cleared_on <= settings_updated_on - clear_cache - end - end - - # Clears the settings cache - def self.clear_cache - @cached_settings.clear - @cached_cleared_on = Time.now - logger.info "Settings cache cleared." if logger - end - - def self.define_plugin_setting(plugin) - if plugin.settings - name = "plugin_#{plugin.id}" - define_setting name, {'default' => plugin.settings[:default], 'serialized' => true} - end - end - - # Defines getter and setter for each setting - # Then setting values can be read using: Setting.some_setting_name - # or set using Setting.some_setting_name = "some value" - def self.define_setting(name, options={}) - available_settings[name.to_s] = options - - src = <<~END_SRC - def self.#{name} - self[:#{name}] - end - - def self.#{name}? - self[:#{name}].to_i > 0 - end - - def self.#{name}=(value) - self[:#{name}] = value - end - END_SRC - class_eval src, __FILE__, __LINE__ - end - - def self.load_available_settings - YAML::load(File.open("#{Rails.root}/config/settings.yml")).each do |name, options| - define_setting name, options - end - end - - def self.load_plugin_settings - Redmine::Plugin.all.each do |plugin| - define_plugin_setting(plugin) - end - end - - load_available_settings - load_plugin_settings - - private - - def force_utf8_strings(arg) - if arg.is_a?(String) - arg.dup.force_encoding('UTF-8') - elsif arg.is_a?(Array) - arg.map do |a| - force_utf8_strings(a) - end - elsif arg.is_a?(Hash) - arg = arg.dup - arg.each do |k,v| - arg[k] = force_utf8_strings(v) - end - arg - else - arg - end - end - - # Returns the Setting instance for the setting named name - # (record found in database or new record with default value) - def self.find_or_default(name) - name = name.to_s - raise "There's no setting named #{name}" unless available_settings.has_key?(name) - setting = where(:name => name).order(:id => :desc).first - unless setting - setting = new - setting.name = name - setting.value = available_settings[name]['default'] - end - setting - end - private_class_method :find_or_default -end diff --git a/app/models/time_entry.rb b/app/models/time_entry.rb deleted file mode 100644 index c12a051..0000000 --- a/app/models/time_entry.rb +++ /dev/null @@ -1,248 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class TimeEntry < ActiveRecord::Base - include Redmine::SafeAttributes - # could have used polymorphic association - # project association here allows easy loading of time entries at project level with one database trip - belongs_to :project - belongs_to :issue - belongs_to :user - belongs_to :author, :class_name => 'User' - belongs_to :activity, :class_name => 'TimeEntryActivity' - - acts_as_customizable - acts_as_event :title => - Proc.new {|o| - related = o.issue if o.issue && o.issue.visible? - related ||= o.project - "#{l_hours(o.hours)} (#{related.event_title})" - }, - :url => Proc.new {|o| {:controller => 'timelog', :action => 'index', :project_id => o.project, :issue_id => o.issue}}, - :author => :user, - :group => :issue, - :description => :comments - - acts_as_activity_provider :timestamp => "#{table_name}.created_on", - :author_key => :user_id, - :scope => joins(:project).preload(:project) - - validates_presence_of :author_id, :user_id, :activity_id, :project_id, :hours, :spent_on - validates_presence_of :issue_id, :if => lambda { Setting.timelog_required_fields.include?('issue_id') } - validates_presence_of :comments, :if => lambda { Setting.timelog_required_fields.include?('comments') } - validates_numericality_of :hours, :allow_nil => true, :message => :invalid - validates_length_of :comments, :maximum => 1024, :allow_nil => true - validates :spent_on, :date => true - before_validation :set_project_if_nil - #TODO: remove this, author should be always explicitly set - before_validation :set_author_if_nil - validate :validate_time_entry - - scope :visible, lambda {|*args| - joins(:project). - where(TimeEntry.visible_condition(args.shift || User.current, *args)) - } - scope :left_join_issue, lambda { - joins("LEFT OUTER JOIN #{Issue.table_name} ON #{Issue.table_name}.id = #{TimeEntry.table_name}.issue_id") - } - scope :on_issue, lambda {|issue| - joins(:issue). - where("#{Issue.table_name}.root_id = #{issue.root_id} AND #{Issue.table_name}.lft >= #{issue.lft} AND #{Issue.table_name}.rgt <= #{issue.rgt}") - } - - safe_attributes 'user_id', 'hours', 'comments', 'project_id', 'issue_id', 'activity_id', 'spent_on', 'custom_field_values', 'custom_fields' - - # Returns a SQL conditions string used to find all time entries visible by the specified user - def self.visible_condition(user, options={}) - Project.allowed_to_condition(user, :view_time_entries, options) do |role, user| - if role.time_entries_visibility == 'all' - nil - elsif role.time_entries_visibility == 'own' && user.id && user.logged? - "#{table_name}.user_id = #{user.id}" - else - '1=0' - end - end - end - - # Returns true if user or current user is allowed to view the time entry - def visible?(user=nil) - (user || User.current).allowed_to?(:view_time_entries, self.project) do |role, user| - if role.time_entries_visibility == 'all' - true - elsif role.time_entries_visibility == 'own' - self.user == user - else - false - end - end - end - - def initialize(attributes=nil, *args) - super - if new_record? && self.activity.nil? - if default_activity = TimeEntryActivity.default - self.activity_id = default_activity.id - end - self.hours = nil if hours == 0 - end - end - - def safe_attributes=(attrs, user=User.current) - if attrs - attrs = super(attrs) - if issue_id_changed? && issue - if issue.visible?(user) && user.allowed_to?(:log_time, issue.project) - if attrs[:project_id].blank? && issue.project_id != project_id - self.project_id = issue.project_id - end - @invalid_issue_id = nil - elsif user.allowed_to?(:log_time, issue.project) && issue.assigned_to_id_changed? && issue.previous_assignee == User.current - current_assignee = issue.assigned_to - issue.assigned_to = issue.previous_assignee - unless issue.visible?(user) - @invalid_issue_id = issue_id - end - issue.assigned_to = current_assignee - else - @invalid_issue_id = issue_id - end - end - if user_id_changed? && user_id != author_id && !user.allowed_to?(:log_time_for_other_users, project) - @invalid_user_id = user_id - else - @invalid_user_id = nil - end - - # Delete assigned custom fields not visible by the user - editable_custom_field_ids = editable_custom_field_values(user).map {|v| v.custom_field_id.to_s} - self.custom_field_values.delete_if do |c| - !editable_custom_field_ids.include?(c.custom_field.id.to_s) - end - end - - attrs - end - - def set_project_if_nil - self.project = issue.project if issue && project.nil? - end - - def set_author_if_nil - self.author = User.current if author.nil? - end - - def validate_time_entry - if hours - errors.add :hours, :invalid if hours < 0 - errors.add :hours, :invalid if hours == 0.0 && hours_changed? && !Setting.timelog_accept_0_hours? - - max_hours = Setting.timelog_max_hours_per_day.to_f - if hours_changed? && max_hours > 0.0 - logged_hours = other_hours_with_same_user_and_day - if logged_hours + hours > max_hours - errors.add( - :base, - I18n.t(:error_exceeds_maximum_hours_per_day, - :logged_hours => format_hours(logged_hours), - :max_hours => format_hours(max_hours))) - end - end - end - errors.add :project_id, :invalid if project.nil? - if @invalid_user_id || (user_id_changed? && user_id != author_id && !self.assignable_users.map(&:id).include?(user_id)) - errors.add :user_id, :invalid - end - errors.add :issue_id, :invalid if (issue_id && !issue) || (issue && project!=issue.project) || @invalid_issue_id - errors.add :activity_id, :inclusion if activity_id_changed? && project && !project.activities.include?(activity) - if spent_on_changed? && user - errors.add :base, I18n.t(:error_spent_on_future_date) if !Setting.timelog_accept_future_dates? && (spent_on > user.today) - end - end - - def hours=(h) - write_attribute :hours, (h.is_a?(String) ? (h.to_hours || h) : h) - end - - def hours - h = read_attribute(:hours) - if h.is_a?(Float) - h.round(2) - else - h - end - end - - # tyear, tmonth, tweek assigned where setting spent_on attributes - # these attributes make time aggregations easier - def spent_on=(date) - super - self.tyear = spent_on ? spent_on.year : nil - self.tmonth = spent_on ? spent_on.month : nil - self.tweek = spent_on ? Date.civil(spent_on.year, spent_on.month, spent_on.day).cweek : nil - end - - # Returns true if the time entry can be edited by usr, otherwise false - def editable_by?(usr) - visible?(usr) && ( - (usr == user && usr.allowed_to?(:edit_own_time_entries, project)) || usr.allowed_to?(:edit_time_entries, project) - ) - end - - # Returns the custom_field_values that can be edited by the given user - def editable_custom_field_values(user=nil) - visible_custom_field_values(user) - end - - # Returns the custom fields that can be edited by the given user - def editable_custom_fields(user=nil) - editable_custom_field_values(user).map(&:custom_field).uniq - end - - def visible_custom_field_values(user = nil) - user ||= User.current - custom_field_values.select do |value| - value.custom_field.visible_by?(project, user) - end - end - - def assignable_users - users = [] - if project - users = project.members.active.preload(:user) - users = users.map(&:user).select{ |u| u.allowed_to?(:log_time, project) } - end - users << User.current if User.current.logged? && !users.include?(User.current) - users - end - - private - - # Returns the hours that were logged in other time entries for the same user and the same day - def other_hours_with_same_user_and_day - if user_id && spent_on - TimeEntry. - where(:user_id => user_id, :spent_on => spent_on). - where.not(:id => id). - sum(:hours).to_f - else - 0.0 - end - end -end diff --git a/app/models/time_entry_activity.rb b/app/models/time_entry_activity.rb deleted file mode 100644 index 04314ed..0000000 --- a/app/models/time_entry_activity.rb +++ /dev/null @@ -1,40 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class TimeEntryActivity < Enumeration - has_many :time_entries, :foreign_key => 'activity_id' - - OptionName = :enumeration_activities - - def option_name - OptionName - end - - def objects - TimeEntry.where(:activity_id => self_and_descendants(1).map(&:id)) - end - - def objects_count - objects.count - end - - def transfer_relations(to) - objects.update_all(:activity_id => to.id) - end -end diff --git a/app/models/time_entry_activity_custom_field.rb b/app/models/time_entry_activity_custom_field.rb deleted file mode 100644 index 18d23f4..0000000 --- a/app/models/time_entry_activity_custom_field.rb +++ /dev/null @@ -1,24 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class TimeEntryActivityCustomField < CustomField - def type_name - :enumeration_activities - end -end diff --git a/app/models/time_entry_custom_field.rb b/app/models/time_entry_custom_field.rb deleted file mode 100644 index 601e1b9..0000000 --- a/app/models/time_entry_custom_field.rb +++ /dev/null @@ -1,33 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class TimeEntryCustomField < CustomField - def type_name - :label_spent_time - end - - def visible_by?(project, user=User.current) - super || (roles & user.roles_for_project(project)).present? - end - - def validate_custom_field - super - errors.add(:base, l(:label_role_plural) + ' ' + l('activerecord.errors.messages.blank')) unless visible? || roles.present? - end -end diff --git a/app/models/time_entry_import.rb b/app/models/time_entry_import.rb deleted file mode 100644 index 07d2c22..0000000 --- a/app/models/time_entry_import.rb +++ /dev/null @@ -1,127 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class TimeEntryImport < Import - def self.menu_item - :time_entries - end - - def self.authorized?(user) - user.allowed_to?(:import_time_entries, nil, :global => true) - end - - # Returns the objects that were imported - def saved_objects - TimeEntry.where(:id => saved_items.pluck(:obj_id)).order(:id).preload(:activity, :project, :issue => [:tracker, :priority, :status]) - end - - def mappable_custom_fields - TimeEntryCustomField.all - end - - def allowed_target_projects - Project.allowed_to(user, :log_time).order(:lft) - end - - def allowed_target_activities - project.activities - end - - def allowed_target_users - users = [] - if project - users = project.members.active.preload(:user) - users = users.map(&:user).select{ |u| u.allowed_to?(:log_time, project) } - end - users << User.current if User.current.logged? && !users.include?(User.current) - users - end - - def project - project_id = mapping['project_id'].to_i - allowed_target_projects.find_by_id(project_id) || allowed_target_projects.first - end - - def activity - if mapping['activity'].to_s =~ /\Avalue:(\d+)\z/ - activity_id = $1.to_i - allowed_target_activities.find_by_id(activity_id) - end - end - - def user_value - if mapping['user_id'].to_s =~ /\Avalue:(\d+)\z/ - $1.to_i - end - end - - private - - def build_object(row, item) - object = TimeEntry.new - object.author = user - - activity_id = nil - if activity - activity_id = activity.id - elsif activity_name = row_value(row, 'activity') - activity_id = allowed_target_activities.named(activity_name).first.try(:id) - end - - user_id = nil - if user.allowed_to?(:log_time_for_other_users, project) - if user_value - user_id = user_value - elsif user_name = row_value(row, 'user_id') - user_id = Principal.detect_by_keyword(allowed_target_users, user_name).try(:id) - end - else - user_id = user.id - end - - attributes = { - :project_id => project.id, - :activity_id => activity_id, - :author_id => user.id, - :user_id => user_id, - - :issue_id => row_value(row, 'issue_id'), - :spent_on => row_date(row, 'spent_on'), - :hours => row_value(row, 'hours'), - :comments => row_value(row, 'comments') - } - - attributes['custom_field_values'] = object.custom_field_values.inject({}) do |h, v| - value = - case v.custom_field.field_format - when 'date' - row_date(row, "cf_#{v.custom_field.id}") - else - row_value(row, "cf_#{v.custom_field.id}") - end - if value - h[v.custom_field.id.to_s] = v.custom_field.value_from_keyword(value, object) - end - h - end - - object.send(:safe_attributes=, attributes, user) - object - end -end diff --git a/app/models/time_entry_query.rb b/app/models/time_entry_query.rb deleted file mode 100644 index b4d4237..0000000 --- a/app/models/time_entry_query.rb +++ /dev/null @@ -1,263 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class TimeEntryQuery < Query - - self.queried_class = TimeEntry - self.view_permission = :view_time_entries - - self.available_columns = [ - QueryColumn.new(:project, :sortable => "#{Project.table_name}.name", :groupable => true), - QueryColumn.new(:spent_on, :sortable => ["#{TimeEntry.table_name}.spent_on", "#{TimeEntry.table_name}.created_on"], :default_order => 'desc', :groupable => true), - TimestampQueryColumn.new(:created_on, :sortable => "#{TimeEntry.table_name}.created_on", :default_order => 'desc', :groupable => true), - QueryColumn.new(:tweek, :sortable => ["#{TimeEntry.table_name}.spent_on", "#{TimeEntry.table_name}.created_on"], :caption => :label_week), - QueryColumn.new(:author, :sortable => lambda {User.fields_for_order_statement}), - QueryColumn.new(:user, :sortable => lambda {User.fields_for_order_statement}, :groupable => true), - QueryColumn.new(:activity, :sortable => "#{TimeEntryActivity.table_name}.position", :groupable => true), - QueryColumn.new(:issue, :sortable => "#{Issue.table_name}.id"), - QueryAssociationColumn.new(:issue, :tracker, :caption => :field_tracker, :sortable => "#{Tracker.table_name}.position"), - QueryAssociationColumn.new(:issue, :status, :caption => :field_status, :sortable => "#{IssueStatus.table_name}.position"), - QueryAssociationColumn.new(:issue, :category, :caption => :field_category, :sortable => "#{IssueCategory.table_name}.name"), - QueryAssociationColumn.new(:issue, :fixed_version, :caption => :field_fixed_version, :sortable => Version.fields_for_order_statement), - QueryColumn.new(:comments), - QueryColumn.new(:hours, :sortable => "#{TimeEntry.table_name}.hours", :totalable => true), - ] - - def initialize(attributes=nil, *args) - super attributes - self.filters ||= { 'spent_on' => {:operator => "*", :values => []} } - end - - def initialize_available_filters - add_available_filter "spent_on", :type => :date_past - add_available_filter( - "project_id", - :type => :list, :values => lambda { project_values } - ) if project.nil? - if project && !project.leaf? - add_available_filter( - "subproject_id", - :type => :list_subprojects, - :values => lambda { subproject_values }) - end - add_available_filter("issue_id", :type => :tree, :label => :label_issue) - add_available_filter( - "issue.tracker_id", - :type => :list, - :name => l("label_attribute_of_issue", :name => l(:field_tracker)), - :values => lambda { trackers.map {|t| [t.name, t.id.to_s]} }) - add_available_filter( - "issue.status_id", - :type => :list, - :name => l("label_attribute_of_issue", :name => l(:field_status)), - :values => lambda { issue_statuses_values }) - add_available_filter( - "issue.fixed_version_id", - :type => :list, - :name => l("label_attribute_of_issue", :name => l(:field_fixed_version)), - :values => lambda { fixed_version_values }) - add_available_filter( - "issue.category_id", - :type => :list_optional, - :name => l("label_attribute_of_issue", :name => l(:field_category)), - :values => lambda { project.issue_categories.collect{|s| [s.name, s.id.to_s] } } - ) if project - add_available_filter( - "user_id", - :type => :list_optional, :values => lambda { author_values } - ) - add_available_filter( - "author_id", - :type => :list_optional, :values => lambda { author_values } - ) - activities = (project ? project.activities : TimeEntryActivity.shared) - add_available_filter( - "activity_id", - :type => :list, :values => activities.map {|a| [a.name, (a.parent_id || a.id).to_s]} - ) - add_available_filter( - "project.status", - :type => :list, - :name => l(:label_attribute_of_project, :name => l(:field_status)), - :values => lambda { project_statuses_values } - ) if project.nil? || !project.leaf? - - add_available_filter "comments", :type => :text - add_available_filter "hours", :type => :float - - add_custom_fields_filters(time_entry_custom_fields) - add_associations_custom_fields_filters :project - add_custom_fields_filters(issue_custom_fields, :issue) - add_associations_custom_fields_filters :user - end - - def available_columns - return @available_columns if @available_columns - @available_columns = self.class.available_columns.dup - @available_columns += time_entry_custom_fields.visible. - map {|cf| QueryCustomFieldColumn.new(cf) } - @available_columns += issue_custom_fields.visible. - map {|cf| QueryAssociationCustomFieldColumn.new(:issue, cf, :totalable => false) } - @available_columns += project_custom_fields.visible. - map {|cf| QueryAssociationCustomFieldColumn.new(:project, cf) } - @available_columns - end - - def default_columns_names - @default_columns_names ||= begin - default_columns = Setting.time_entry_list_defaults.symbolize_keys[:column_names].map(&:to_sym) - project.present? ? default_columns : [:project] | default_columns - end - end - - def default_totalable_names - Setting.time_entry_list_defaults.symbolize_keys[:totalable_names].map(&:to_sym) - end - - def default_sort_criteria - [['spent_on', 'desc']] - end - - # If a filter against a single issue is set, returns its id, otherwise nil. - def filtered_issue_id - if value_for('issue_id').to_s =~ /\A(\d+)\z/ - $1 - end - end - - def base_scope - TimeEntry.visible. - joins(:project, :user). - includes(:activity). - references(:activity). - left_join_issue. - where(statement) - end - - def results_scope(options={}) - order_option = [group_by_sort_order, (options[:order] || sort_clause)].flatten.reject(&:blank?) - - order_option << "#{TimeEntry.table_name}.id ASC" - base_scope. - order(order_option). - joins(joins_for_order_statement(order_option.join(','))) - end - - # Returns sum of all the spent hours - def total_for_hours(scope) - map_total(scope.sum(:hours)) {|t| t.to_f.round(2)} - end - - def sql_for_issue_id_field(field, operator, value) - case operator - when "=" - "#{TimeEntry.table_name}.issue_id = #{value.first.to_i}" - when "~" - issue = Issue.where(:id => value.first.to_i).first - if issue && (issue_ids = issue.self_and_descendants.pluck(:id)).any? - "#{TimeEntry.table_name}.issue_id IN (#{issue_ids.join(',')})" - else - "1=0" - end - when "!*" - "#{TimeEntry.table_name}.issue_id IS NULL" - when "*" - "#{TimeEntry.table_name}.issue_id IS NOT NULL" - end - end - - def sql_for_issue_fixed_version_id_field(field, operator, value) - issue_ids = Issue.where(:fixed_version_id => value.map(&:to_i)).pluck(:id) - case operator - when "=" - if issue_ids.any? - "#{TimeEntry.table_name}.issue_id IN (#{issue_ids.join(',')})" - else - "1=0" - end - when "!" - if issue_ids.any? - "#{TimeEntry.table_name}.issue_id NOT IN (#{issue_ids.join(',')})" - else - "1=1" - end - end - end - - def sql_for_activity_id_field(field, operator, value) - ids = value.map(&:to_i).join(',') - table_name = Enumeration.table_name - if operator == '=' - "(#{table_name}.id IN (#{ids}) OR #{table_name}.parent_id IN (#{ids}))" - else - "(#{table_name}.id NOT IN (#{ids}) AND (#{table_name}.parent_id IS NULL OR #{table_name}.parent_id NOT IN (#{ids})))" - end - end - - def sql_for_issue_tracker_id_field(field, operator, value) - sql_for_field("tracker_id", operator, value, Issue.table_name, "tracker_id") - end - - def sql_for_issue_status_id_field(field, operator, value) - sql_for_field("status_id", operator, value, Issue.table_name, "status_id") - end - - def sql_for_issue_category_id_field(field, operator, value) - sql_for_field("category_id", operator, value, Issue.table_name, "category_id") - end - - def sql_for_project_status_field(field, operator, value, options={}) - sql_for_field(field, operator, value, Project.table_name, "status") - end - - # Accepts :from/:to params as shortcut filters - def build_from_params(params, defaults={}) - super - if params[:from].present? && params[:to].present? - add_filter('spent_on', '><', [params[:from], params[:to]]) - elsif params[:from].present? - add_filter('spent_on', '>=', [params[:from]]) - elsif params[:to].present? - add_filter('spent_on', '<=', [params[:to]]) - end - self - end - - def joins_for_order_statement(order_options) - joins = [super] - - if order_options - if order_options.include?('issue_statuses') - joins << "LEFT OUTER JOIN #{IssueStatus.table_name} ON #{IssueStatus.table_name}.id = #{Issue.table_name}.status_id" - end - if order_options.include?('trackers') - joins << "LEFT OUTER JOIN #{Tracker.table_name} ON #{Tracker.table_name}.id = #{Issue.table_name}.tracker_id" - end - if order_options.include?('issue_categories') - joins << "LEFT OUTER JOIN #{IssueCategory.table_name} ON #{IssueCategory.table_name}.id = #{Issue.table_name}.category_id" - end - if order_options.include?('versions') - joins << "LEFT OUTER JOIN #{Version.table_name} ON #{Version.table_name}.id = #{Issue.table_name}.fixed_version_id" - end - end - - joins.compact! - joins.any? ? joins.join(' ') : nil - end -end diff --git a/app/models/token.rb b/app/models/token.rb deleted file mode 100644 index 55fded6..0000000 --- a/app/models/token.rb +++ /dev/null @@ -1,147 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class Token < ActiveRecord::Base - belongs_to :user - validates_uniqueness_of :value - - before_create :delete_previous_tokens, :generate_new_token - - cattr_accessor :validity_time - self.validity_time = 1.day - - class << self - attr_reader :actions - - def add_action(name, options) - options.assert_valid_keys(:max_instances, :validity_time) - @actions ||= {} - @actions[name.to_s] = options - end - end - - add_action :api, max_instances: 1, validity_time: nil - add_action :autologin, max_instances: 10, validity_time: Proc.new { Setting.autologin.to_i.days } - add_action :feeds, max_instances: 1, validity_time: nil - add_action :recovery, max_instances: 1, validity_time: Proc.new { Token.validity_time } - add_action :register, max_instances: 1, validity_time: Proc.new { Token.validity_time } - add_action :session, max_instances: 10, validity_time: nil - - def generate_new_token - self.value = Token.generate_token_value - end - - # Return true if token has expired - def expired? - validity_time = self.class.invalid_when_created_before(action) - validity_time.present? && created_on < validity_time - end - - def max_instances - Token.actions.has_key?(action) ? Token.actions[action][:max_instances] : 1 - end - - def self.invalid_when_created_before(action = nil) - if Token.actions.has_key?(action) - validity_time = Token.actions[action][:validity_time] - validity_time = validity_time.call(action) if validity_time.respond_to? :call - else - validity_time = self.validity_time - end - - if validity_time - Time.now - validity_time - end - end - - # Delete all expired tokens - def self.destroy_expired - t = Token.arel_table - - # Unknown actions have default validity_time - condition = t[:action].not_in(self.actions.keys).and(t[:created_on].lt(invalid_when_created_before)) - - self.actions.each do |action, options| - validity_time = invalid_when_created_before(action) - - # Do not delete tokens, which don't become invalid - next if validity_time.nil? - - condition = condition.or( - t[:action].eq(action).and(t[:created_on].lt(validity_time)) - ) - end - - Token.where(condition).delete_all - end - - # Returns the active user who owns the key for the given action - def self.find_active_user(action, key, validity_days=nil) - user = find_user(action, key, validity_days) - if user && user.active? - user - end - end - - # Returns the user who owns the key for the given action - def self.find_user(action, key, validity_days=nil) - token = find_token(action, key, validity_days) - if token - token.user - end - end - - # Returns the token for action and key with an optional - # validity duration (in number of days) - def self.find_token(action, key, validity_days=nil) - action = action.to_s - key = key.to_s - return nil unless action.present? && /\A[a-z0-9]+\z/i.match?(key) - - token = Token.find_by(:action => action, :value => key) - return unless token - return unless token.action == action - return unless ActiveSupport::SecurityUtils.secure_compare(token.value.to_s, key) - return unless token.user - return unless validity_days.nil? || (token.created_on > validity_days.days.ago) - - token - end - - def self.generate_token_value - Redmine::Utils.random_hex(20) - end - - private - - # Removes obsolete tokens (same user and action) - def delete_previous_tokens - if user - scope = Token.where(:user_id => user.id, :action => action) - if max_instances > 1 - ids = scope.order(:updated_on => :desc).offset(max_instances - 1).ids - if ids.any? - Token.delete(ids) - end - else - scope.delete_all - end - end - end -end diff --git a/app/models/tracker.rb b/app/models/tracker.rb deleted file mode 100644 index a335786..0000000 --- a/app/models/tracker.rb +++ /dev/null @@ -1,149 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class Tracker < ActiveRecord::Base - include Redmine::SafeAttributes - - CORE_FIELDS_UNDISABLABLE = %w(project_id tracker_id subject priority_id is_private).freeze - # Fields that can be disabled - # Other (future) fields should be appended, not inserted! - CORE_FIELDS = %w(assigned_to_id category_id fixed_version_id parent_issue_id start_date due_date estimated_hours done_ratio description).freeze - CORE_FIELDS_ALL = (CORE_FIELDS_UNDISABLABLE + CORE_FIELDS).freeze - - before_destroy :check_integrity - belongs_to :default_status, :class_name => 'IssueStatus' - has_many :issues - has_many :workflow_rules, :dependent => :delete_all - has_and_belongs_to_many :projects - has_and_belongs_to_many :custom_fields, :class_name => 'IssueCustomField', :join_table => "#{table_name_prefix}custom_fields_trackers#{table_name_suffix}", :association_foreign_key => 'custom_field_id' - acts_as_positioned - - validates_presence_of :default_status - validates_presence_of :name - validates_uniqueness_of :name - validates_length_of :name, :maximum => 30 - validates_length_of :description, :maximum => 255 - - scope :sorted, lambda { order(:position) } - scope :named, lambda {|arg| where("LOWER(#{table_name}.name) = LOWER(?)", arg.to_s.strip)} - - # Returns the trackers that are visible by the user. - # - # Examples: - # project.trackers.visible(user) - # => returns the trackers that are visible by the user in project - # - # Tracker.visible(user) - # => returns the trackers that are visible by the user in at least on project - scope :visible, lambda {|*args| - user = args.shift || User.current - condition = Project.allowed_to_condition(user, :view_issues) do |role, user| - unless role.permissions_all_trackers?(:view_issues) - tracker_ids = role.permissions_tracker_ids(:view_issues) - if tracker_ids.any? - "#{Tracker.table_name}.id IN (#{tracker_ids.join(',')})" - else - '1=0' - end - end - end - joins(:projects).where(condition).distinct - } - - safe_attributes( - 'name', - 'default_status_id', - 'is_in_roadmap', - 'core_fields', - 'position', - 'custom_field_ids', - 'project_ids', - 'description') - - def to_s; name end - - def <=>(tracker) - position <=> tracker.position - end - - # Returns an array of IssueStatus that are used - # in the tracker's workflows - def issue_statuses - @issue_statuses ||= IssueStatus.where(:id => issue_status_ids).to_a.sort - end - - def issue_status_ids - if new_record? - [] - else - @issue_status_ids ||= WorkflowTransition.where(:tracker_id => id).distinct.pluck(:old_status_id, :new_status_id).flatten.uniq - end - end - - def disabled_core_fields - i = -1 - @disabled_core_fields ||= CORE_FIELDS.select { i += 1; (fields_bits || 0) & (2 ** i) != 0} - end - - def core_fields - CORE_FIELDS - disabled_core_fields - end - - def core_fields=(fields) - raise ArgumentError.new("Tracker.core_fields takes an array") unless fields.is_a?(Array) - - bits = 0 - CORE_FIELDS.each_with_index do |field, i| - unless fields.include?(field) - bits |= 2 ** i - end - end - self.fields_bits = bits - @disabled_core_fields = nil - core_fields - end - - def copy_workflow_rules(source_tracker) - WorkflowRule.copy(source_tracker, nil, self, nil) - end - - # Returns the fields that are disabled for all the given trackers - def self.disabled_core_fields(trackers) - if trackers.present? - trackers.map(&:disabled_core_fields).reduce(:&) - else - [] - end - end - - # Returns the fields that are enabled for one tracker at least - def self.core_fields(trackers) - if trackers.present? - trackers.uniq.map(&:core_fields).reduce(:|) - else - CORE_FIELDS.dup - end - end - - private - - def check_integrity - raise "Cannot delete tracker" if Issue.where(:tracker_id => self.id).any? - end -end diff --git a/app/models/user.rb b/app/models/user.rb deleted file mode 100644 index c7612c9..0000000 --- a/app/models/user.rb +++ /dev/null @@ -1,1008 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -require "digest/sha1" - -class User < Principal - include Redmine::SafeAttributes - - # Different ways of displaying/sorting users - USER_FORMATS = { - :firstname_lastname => { - :string => '#{firstname} #{lastname}', - :order => %w(firstname lastname id), - :setting_order => 1 - }, - :firstname_lastinitial => { - :string => '#{firstname} #{lastname.to_s.chars.first}.', - :order => %w(firstname lastname id), - :setting_order => 2 - }, - :firstinitial_lastname => { - :string => '#{firstname.to_s.gsub(/(([[:alpha:]])[[:alpha:]]*\.?)/, \'\2.\')} #{lastname}', - :order => %w(firstname lastname id), - :setting_order => 2 - }, - :firstname => { - :string => '#{firstname}', - :order => %w(firstname id), - :setting_order => 3 - }, - :lastname_firstname => { - :string => '#{lastname} #{firstname}', - :order => %w(lastname firstname id), - :setting_order => 4 - }, - :lastnamefirstname => { - :string => '#{lastname}#{firstname}', - :order => %w(lastname firstname id), - :setting_order => 5 - }, - :lastname_comma_firstname => { - :string => '#{lastname}, #{firstname}', - :order => %w(lastname firstname id), - :setting_order => 6 - }, - :lastname => { - :string => '#{lastname}', - :order => %w(lastname id), - :setting_order => 7 - }, - :username => { - :string => '#{login}', - :order => %w(login id), - :setting_order => 8 - }, - } - - MAIL_NOTIFICATION_OPTIONS = [ - ['all', :label_user_mail_option_all], - ['selected', :label_user_mail_option_selected], - ['only_my_events', :label_user_mail_option_only_my_events], - ['only_assigned', :label_user_mail_option_only_assigned], - ['only_owner', :label_user_mail_option_only_owner], - ['none', :label_user_mail_option_none] - ] - - has_and_belongs_to_many :groups, - :join_table => "#{table_name_prefix}groups_users#{table_name_suffix}", - :after_add => Proc.new {|user, group| group.user_added(user)}, - :after_remove => Proc.new {|user, group| group.user_removed(user)} - has_many :changesets, :dependent => :nullify - has_one :preference, :dependent => :destroy, :class_name => 'UserPreference' - has_one :rss_token, lambda {where "action='feeds'"}, :class_name => 'Token' - has_one :api_token, lambda {where "action='api'"}, :class_name => 'Token' - has_one :email_address, lambda {where :is_default => true}, :autosave => true - has_many :email_addresses, :dependent => :delete_all - belongs_to :auth_source - - scope :logged, lambda { where("#{User.table_name}.status <> #{STATUS_ANONYMOUS}") } - scope :status, lambda {|arg| where(arg.blank? ? nil : {:status => arg.to_i}) } - - acts_as_customizable - - attr_accessor :password, :password_confirmation, :generate_password - attr_accessor :last_before_login_on - attr_accessor :remote_ip - - LOGIN_LENGTH_LIMIT = 60 - MAIL_LENGTH_LIMIT = 60 - - validates_presence_of :login, :firstname, :lastname, :if => Proc.new { |user| !user.is_a?(AnonymousUser) } - validates_uniqueness_of :login, :if => Proc.new { |user| user.login_changed? && user.login.present? }, :case_sensitive => false - # Login must contain letters, numbers, underscores only - validates_format_of :login, :with => /\A[a-z0-9_\-@\.]*\z/i - validates_length_of :login, :maximum => LOGIN_LENGTH_LIMIT - validates_length_of :firstname, :lastname, :maximum => 30 - validates_length_of :identity_url, maximum: 255 - validates_inclusion_of :mail_notification, :in => MAIL_NOTIFICATION_OPTIONS.collect(&:first), :allow_blank => true - Setting::PASSWORD_CHAR_CLASSES.each do |k, v| - validates_format_of :password, :with => v, :message => :"must_contain_#{k}", :allow_blank => true, :if => Proc.new {Setting.password_required_char_classes.include?(k)} - end - validate :validate_password_length - validate do - if password_confirmation && password != password_confirmation - errors.add(:password, :confirmation) - end - end - - self.valid_statuses = [STATUS_ACTIVE, STATUS_REGISTERED, STATUS_LOCKED] - - before_validation :instantiate_email_address - before_create :set_mail_notification - before_save :generate_password_if_needed, :update_hashed_password - before_destroy :remove_references_before_destroy - after_save :update_notified_project_ids, :destroy_tokens, :deliver_security_notification - after_destroy :deliver_security_notification - - scope :admin, lambda {|*args| - admin = args.size > 0 ? !!args.first : true - where(:admin => admin) - } - scope :in_group, lambda {|group| - group_id = group.is_a?(Group) ? group.id : group.to_i - where("#{User.table_name}.id IN (SELECT gu.user_id FROM #{table_name_prefix}groups_users#{table_name_suffix} gu WHERE gu.group_id = ?)", group_id) - } - scope :not_in_group, lambda {|group| - group_id = group.is_a?(Group) ? group.id : group.to_i - where("#{User.table_name}.id NOT IN (SELECT gu.user_id FROM #{table_name_prefix}groups_users#{table_name_suffix} gu WHERE gu.group_id = ?)", group_id) - } - scope :sorted, lambda { order(*User.fields_for_order_statement)} - scope :having_mail, lambda {|arg| - addresses = Array.wrap(arg).map {|a| a.to_s.downcase} - if addresses.any? - joins(:email_addresses).where("LOWER(#{EmailAddress.table_name}.address) IN (?)", addresses).distinct - else - none - end - } - - def set_mail_notification - self.mail_notification = Setting.default_notification_option if self.mail_notification.blank? - true - end - - def update_hashed_password - # update hashed_password if password was set - if self.password && self.auth_source_id.blank? - salt_password(password) - end - end - - alias :base_reload :reload - def reload(*args) - @name = nil - @roles = nil - @projects_by_role = nil - @project_ids_by_role = nil - @membership_by_project_id = nil - @notified_projects_ids = nil - @notified_projects_ids_changed = false - @builtin_role = nil - @visible_project_ids = nil - @managed_roles = nil - base_reload(*args) - end - - def mail - email_address.try(:address) - end - - def mail=(arg) - email = email_address || build_email_address - email.address = arg - end - - def mail_changed? - email_address.try(:address_changed?) - end - - def mails - email_addresses.pluck(:address) - end - - def self.find_or_initialize_by_identity_url(url) - user = where(:identity_url => url).first - unless user - user = User.new - user.identity_url = url - end - user - end - - def identity_url=(url) - if url.blank? - write_attribute(:identity_url, '') - else - begin - write_attribute(:identity_url, OpenIdAuthentication.normalize_identifier(url)) - rescue OpenIdAuthentication::InvalidOpenId - # Invalid url, don't save - end - end - self.read_attribute(:identity_url) - end - - # Returns the user that matches provided login and password, or nil - def self.try_to_login(login, password, active_only=true) - login = login.to_s.strip - password = password.to_s - - # Make sure no one can sign in with an empty login or password - return nil if login.empty? || password.empty? - user = find_by_login(login) - if user - # user is already in local database - return nil unless user.check_password?(password) - return nil if !user.active? && active_only - else - # user is not yet registered, try to authenticate with available sources - attrs = AuthSource.authenticate(login, password) - if attrs - user = new(attrs) - user.login = login - user.language = Setting.default_language - if user.save - user.reload - logger.info("User '#{user.login}' created from external auth source: #{user.auth_source.type} - #{user.auth_source.name}") if logger && user.auth_source - end - end - end - user.update_last_login_on! if user && !user.new_record? && user.active? - user - rescue => text - raise text - end - - # Returns the user who matches the given autologin +key+ or nil - def self.try_to_autologin(key) - user = Token.find_active_user('autologin', key, Setting.autologin.to_i) - if user - user.update_last_login_on! - user - end - end - - def self.name_formatter(formatter = nil) - USER_FORMATS[formatter || Setting.user_format] || USER_FORMATS[:firstname_lastname] - end - - # Returns an array of fields names than can be used to make an order statement for users - # according to how user names are displayed - # Examples: - # - # User.fields_for_order_statement => ['users.login', 'users.id'] - # User.fields_for_order_statement('authors') => ['authors.login', 'authors.id'] - def self.fields_for_order_statement(table=nil) - table ||= table_name - name_formatter[:order].map {|field| "#{table}.#{field}"} - end - - # Return user's full name for display - def name(formatter = nil) - f = self.class.name_formatter(formatter) - if formatter - eval('"' + f[:string] + '"') - else - @name ||= eval('"' + f[:string] + '"') - end - end - - def active? - self.status == STATUS_ACTIVE - end - - def registered? - self.status == STATUS_REGISTERED - end - - def locked? - self.status == STATUS_LOCKED - end - - def activate - self.status = STATUS_ACTIVE - end - - def register - self.status = STATUS_REGISTERED - end - - def lock - self.status = STATUS_LOCKED - end - - def activate! - update_attribute(:status, STATUS_ACTIVE) - end - - def register! - update_attribute(:status, STATUS_REGISTERED) - end - - def lock! - update_attribute(:status, STATUS_LOCKED) - end - - def update_last_login_on! - return if last_login_on.present? && last_login_on >= 1.minute.ago - - update_column(:last_login_on, Time.now) - end - - # Returns true if +clear_password+ is the correct user's password, otherwise false - def check_password?(clear_password) - if auth_source_id.present? - auth_source.authenticate(self.login, clear_password) - else - User.hash_password("#{salt}#{User.hash_password clear_password}") == hashed_password - end - end - - # Generates a random salt and computes hashed_password for +clear_password+ - # The hashed password is stored in the following form: SHA1(salt + SHA1(password)) - def salt_password(clear_password) - self.salt = User.generate_salt - self.hashed_password = User.hash_password("#{salt}#{User.hash_password clear_password}") - self.passwd_changed_on = Time.now.change(:usec => 0) - end - - # Does the backend storage allow this user to change their password? - def change_password_allowed? - auth_source.nil? ? true : auth_source.allow_password_changes? - end - - # Returns true if the user password has expired - def password_expired? - period = Setting.password_max_age.to_i - if period.zero? - false - else - changed_on = self.passwd_changed_on || Time.at(0) - changed_on < period.days.ago - end - end - - def must_change_password? - (must_change_passwd? || password_expired?) && change_password_allowed? - end - - def generate_password? - ActiveRecord::Type::Boolean.new.deserialize(generate_password) - end - - # Generate and set a random password on given length - def random_password(length=40) - chars_list = [('A'..'Z').to_a, ('a'..'z').to_a, ('0'..'9').to_a] - # auto-generated passwords contain special characters only when admins - # require users to use passwords which contains special characters - if Setting.password_required_char_classes.include?('special_chars') - chars_list << ("\x20".."\x7e").to_a.select {|c| c =~ Setting::PASSWORD_CHAR_CLASSES['special_chars']} - end - chars_list.each {|v| v.reject! {|c| %(0O1l|'"`*).include?(c)}} - - password = +'' - chars_list.each do |chars| - password << chars[SecureRandom.random_number(chars.size)] - length -= 1 - end - chars = chars_list.flatten - length.times { password << chars[SecureRandom.random_number(chars.size)] } - password = password.split('').shuffle(random: SecureRandom).join - self.password = password - self.password_confirmation = password - self - end - - def pref - self.preference ||= UserPreference.new(:user => self) - end - - def time_zone - @time_zone ||= (self.pref.time_zone.blank? ? nil : ActiveSupport::TimeZone[self.pref.time_zone]) - end - - def force_default_language? - Setting.force_default_language_for_loggedin? - end - - def language - if force_default_language? - Setting.default_language - else - super - end - end - - def wants_comments_in_reverse_order? - self.pref[:comments_sorting] == 'desc' - end - - # Return user's RSS key (a 40 chars long string), used to access feeds - def rss_key - if rss_token.nil? - create_rss_token(:action => 'feeds') - end - rss_token.value - end - - # Return user's API key (a 40 chars long string), used to access the API - def api_key - if api_token.nil? - create_api_token(:action => 'api') - end - api_token.value - end - - # Generates a new session token and returns its value - def generate_session_token - token = Token.create!(:user_id => id, :action => 'session') - token.value - end - - def delete_session_token(value) - Token.where(:user_id => id, :action => 'session', :value => value).delete_all - end - - # Generates a new autologin token and returns its value - def generate_autologin_token - token = Token.create!(:user_id => id, :action => 'autologin') - token.value - end - - def delete_autologin_token(value) - Token.where(:user_id => id, :action => 'autologin', :value => value).delete_all - end - - # Returns true if token is a valid session token for the user whose id is user_id - def self.verify_session_token(user_id, token) - return false if user_id.blank? || token.blank? - - scope = Token.where(:user_id => user_id, :value => token.to_s, :action => 'session') - if Setting.session_lifetime? - scope = scope.where("created_on > ?", Setting.session_lifetime.to_i.minutes.ago) - end - if Setting.session_timeout? - scope = scope.where("updated_on > ?", Setting.session_timeout.to_i.minutes.ago) - end - scope.update_all(:updated_on => Time.now) == 1 - end - - # Return an array of project ids for which the user has explicitly turned mail notifications on - def notified_projects_ids - @notified_projects_ids ||= memberships.select {|m| m.mail_notification?}.collect(&:project_id) - end - - def notified_project_ids=(ids) - @notified_projects_ids_changed = true - @notified_projects_ids = ids.map(&:to_i).uniq.select {|n| n > 0} - end - - # Updates per project notifications (after_save callback) - def update_notified_project_ids - if @notified_projects_ids_changed - ids = (mail_notification == 'selected' ? Array.wrap(notified_projects_ids).reject(&:blank?) : []) - members.update_all(:mail_notification => false) - members.where(:project_id => ids).update_all(:mail_notification => true) if ids.any? - end - end - private :update_notified_project_ids - - def valid_notification_options - self.class.valid_notification_options(self) - end - - # Only users that belong to more than 1 project can select projects for which they are notified - def self.valid_notification_options(user=nil) - # Note that @user.membership.size would fail since AR ignores - # :include association option when doing a count - if user.nil? || user.memberships.length < 1 - MAIL_NOTIFICATION_OPTIONS.reject {|option| option.first == 'selected'} - else - MAIL_NOTIFICATION_OPTIONS - end - end - - # Find a user account by matching the exact login and then a case-insensitive - # version. Exact matches will be given priority. - def self.find_by_login(login) - login = Redmine::CodesetUtil.replace_invalid_utf8(login.to_s) - if login.present? - # First look for an exact match - user = where(:login => login).detect {|u| u.login == login} - unless user - # Fail over to case-insensitive if none was found - user = find_by("LOWER(login) = ?", login.downcase) - end - user - end - end - - def self.find_by_rss_key(key) - Token.find_active_user('feeds', key) - end - - def self.find_by_api_key(key) - Token.find_active_user('api', key) - end - - # Makes find_by_mail case-insensitive - def self.find_by_mail(mail) - having_mail(mail).first - end - - # Returns true if the default admin account can no longer be used - def self.default_admin_account_changed? - !User.active.find_by_login("admin").try(:check_password?, "admin") - end - - def to_s - name - end - - LABEL_BY_STATUS = { - STATUS_ANONYMOUS => 'anon', - STATUS_ACTIVE => 'active', - STATUS_REGISTERED => 'registered', - STATUS_LOCKED => 'locked' - } - - def css_classes - "user #{LABEL_BY_STATUS[status]}" - end - - # Returns the current day according to user's time zone - def today - if time_zone.nil? - Date.today - else - time_zone.today - end - end - - # Returns the day of +time+ according to user's time zone - def time_to_date(time) - self.convert_time_to_user_timezone(time).to_date - end - - def convert_time_to_user_timezone(time) - if self.time_zone - time.in_time_zone(self.time_zone) - else - time.utc? ? time.localtime : time - end - end - - def logged? - true - end - - def anonymous? - !logged? - end - - # Returns user's membership for the given project - # or nil if the user is not a member of project - def membership(project) - project_id = project.is_a?(Project) ? project.id : project - - @membership_by_project_id ||= Hash.new {|h, project_id| - h[project_id] = memberships.where(:project_id => project_id).first - } - @membership_by_project_id[project_id] - end - - def roles - @roles ||= Role.joins(members: :project).where(["#{Project.table_name}.status <> ?", Project::STATUS_ARCHIVED]).where(Member.arel_table[:user_id].eq(id)).distinct - end - - # Returns the user's bult-in role - def builtin_role - @builtin_role ||= Role.non_member - end - - # Return user's roles for project - def roles_for_project(project) - # No role on archived projects - return [] if project.nil? || project.archived? - if membership = membership(project) - membership.roles.to_a - elsif project.is_public? - project.override_roles(builtin_role) - else - [] - end - end - - # Returns a hash of user's projects grouped by roles - # TODO: No longer used, should be deprecated - def projects_by_role - return @projects_by_role if @projects_by_role - - result = Hash.new([]) - project_ids_by_role.each do |role, ids| - result[role] = Project.where(:id => ids).to_a - end - @projects_by_role = result - end - - # Returns a hash of project ids grouped by roles. - # Includes the projects that the user is a member of and the projects - # that grant custom permissions to the builtin groups. - def project_ids_by_role - # Clear project condition for when called from chained scopes - # eg. project.children.visible(user) - Project.unscoped do - return @project_ids_by_role if @project_ids_by_role - - group_class = anonymous? ? GroupAnonymous : GroupNonMember - group_id = group_class.pluck(:id).first - - members = Member.joins(:project, :member_roles). - where("#{Project.table_name}.status <> 9"). - where("#{Member.table_name}.user_id = ? OR (#{Project.table_name}.is_public = ? AND #{Member.table_name}.user_id = ?)", self.id, true, group_id). - pluck(:user_id, :role_id, :project_id) - - hash = {} - members.each do |user_id, role_id, project_id| - # Ignore the roles of the builtin group if the user is a member of the project - next if user_id != id && project_ids.include?(project_id) - - hash[role_id] ||= [] - hash[role_id] << project_id - end - - result = Hash.new([]) - if hash.present? - roles = Role.where(:id => hash.keys).to_a - hash.each do |role_id, proj_ids| - role = roles.detect {|r| r.id == role_id} - if role - result[role] = proj_ids.uniq - end - end - end - @project_ids_by_role = result - end - end - - # Returns the ids of visible projects - def visible_project_ids - @visible_project_ids ||= Project.visible(self).pluck(:id) - end - - # Returns the roles that the user is allowed to manage for the given project - def managed_roles(project) - if admin? - @managed_roles ||= Role.givable.to_a - else - membership(project).try(:managed_roles) || [] - end - end - - # Returns true if user is arg or belongs to arg - def is_or_belongs_to?(arg) - if arg.is_a?(User) - self == arg - elsif arg.is_a?(Group) - arg.users.include?(self) - else - false - end - end - - # Return true if the user is allowed to do the specified action on a specific context - # Action can be: - # * a parameter-like Hash (eg. :controller => 'projects', :action => 'edit') - # * a permission Symbol (eg. :edit_project) - # Context can be: - # * a project : returns true if user is allowed to do the specified action on this project - # * an array of projects : returns true if user is allowed on every project - # * nil with options[:global] set : check if user has at least one role allowed for this action, - # or falls back to Non Member / Anonymous permissions depending if the user is logged - def allowed_to?(action, context, options={}, &block) - if context && context.is_a?(Project) - return false unless context.allows_to?(action) - # Admin users are authorized for anything else - return true if admin? - - roles = roles_for_project(context) - return false unless roles - roles.any? {|role| - (context.is_public? || role.member?) && - role.allowed_to?(action) && - (block_given? ? yield(role, self) : true) - } - elsif context && context.is_a?(Array) - if context.empty? - false - else - # Authorize if user is authorized on every element of the array - context.map {|project| allowed_to?(action, project, options, &block)}.reduce(:&) - end - elsif context - raise ArgumentError.new("#allowed_to? context argument must be a Project, an Array of projects or nil") - elsif options[:global] - # Admin users are always authorized - return true if admin? - - # authorize if user has at least one role that has this permission - roles = self.roles.to_a | [builtin_role] - roles.any? {|role| - role.allowed_to?(action) && - (block_given? ? yield(role, self) : true) - } - else - false - end - end - - # Is the user allowed to do the specified action on any project? - # See allowed_to? for the actions and valid options. - # - # NB: this method is not used anywhere in the core codebase as of - # 2.5.2, but it's used by many plugins so if we ever want to remove - # it it has to be carefully deprecated for a version or two. - def allowed_to_globally?(action, options={}, &block) - allowed_to?(action, nil, options.reverse_merge(:global => true), &block) - end - - def allowed_to_view_all_time_entries?(context) - allowed_to?(:view_time_entries, context) do |role, user| - role.time_entries_visibility == 'all' - end - end - - # Returns true if the user is allowed to delete the user's own account - def own_account_deletable? - Setting.unsubscribe? && - (!admin? || User.active.admin.where("id <> ?", id).exists?) - end - - safe_attributes( - 'firstname', - 'lastname', - 'mail', - 'mail_notification', - 'notified_project_ids', - 'language', - 'custom_field_values', - 'custom_fields', - 'identity_url') - safe_attributes( - 'login', - :if => lambda {|user, current_user| user.new_record?}) - safe_attributes( - 'status', - 'auth_source_id', - 'generate_password', - 'must_change_passwd', - 'login', - 'admin', - :if => lambda {|user, current_user| current_user.admin?}) - safe_attributes( - 'group_ids', - :if => lambda {|user, current_user| current_user.admin? && !user.new_record?}) - - # Utility method to help check if a user should be notified about an - # event. - # - # TODO: only supports Issue events currently - def notify_about?(object) - if mail_notification == 'all' - true - elsif mail_notification.blank? || mail_notification == 'none' - false - else - case object - when Issue - case mail_notification - when 'selected', 'only_my_events' - # user receives notifications for created/assigned issues on unselected projects - object.author == self || is_or_belongs_to?(object.assigned_to) || is_or_belongs_to?(object.previous_assignee) - when 'only_assigned' - is_or_belongs_to?(object.assigned_to) || is_or_belongs_to?(object.previous_assignee) - when 'only_owner' - object.author == self - end - when News - # always send to project members except when mail_notification is set to 'none' - true - end - end - end - - def self.current=(user) - RequestStore.store[:current_user] = user - end - - def self.current - RequestStore.store[:current_user] ||= User.anonymous - end - - # Returns the anonymous user. If the anonymous user does not exist, it is created. There can be only - # one anonymous user per database. - def self.anonymous - anonymous_user = AnonymousUser.unscoped.find_by(:lastname => 'Anonymous') - if anonymous_user.nil? - anonymous_user = AnonymousUser.unscoped.create(:lastname => 'Anonymous', :firstname => '', :login => '', :status => 0) - raise 'Unable to create the anonymous user.' if anonymous_user.new_record? - end - anonymous_user - end - - # Salts all existing unsalted passwords - # It changes password storage scheme from SHA1(password) to SHA1(salt + SHA1(password)) - # This method is used in the SaltPasswords migration and is to be kept as is - def self.salt_unsalted_passwords! - transaction do - User.where("salt IS NULL OR salt = ''").find_each do |user| - next if user.hashed_password.blank? - salt = User.generate_salt - hashed_password = User.hash_password("#{salt}#{user.hashed_password}") - User.where(:id => user.id).update_all(:salt => salt, :hashed_password => hashed_password) - end - end - end - - def bookmarked_project_ids - project_ids = [] - bookmarked_project_ids = self.pref[:bookmarked_project_ids] - project_ids = bookmarked_project_ids.split(',') unless bookmarked_project_ids.nil? - project_ids.map(&:to_i) - end - - protected - - def validate_password_length - return if password.blank? && generate_password? - # Password length validation based on setting - if !password.nil? && password.size < Setting.password_min_length.to_i - errors.add(:password, :too_short, :count => Setting.password_min_length.to_i) - end - end - - def instantiate_email_address - email_address || build_email_address - end - - private - - def generate_password_if_needed - if generate_password? && auth_source.nil? - length = [Setting.password_min_length.to_i + 2, 10].max - random_password(length) - end - end - - # Delete all outstanding password reset tokens on password change. - # Delete the autologin tokens on password change to prohibit session leakage. - # This helps to keep the account secure in case the associated email account - # was compromised. - def destroy_tokens - if saved_change_to_hashed_password? || (saved_change_to_status? && !active?) - tokens = ['recovery', 'autologin', 'session'] - Token.where(:user_id => id, :action => tokens).delete_all - end - end - - # Removes references that are not handled by associations - # Things that are not deleted are reassociated with the anonymous user - def remove_references_before_destroy - return if self.id.nil? - - substitute = User.anonymous - Attachment.where(['author_id = ?', id]).update_all(['author_id = ?', substitute.id]) - Comment.where(['author_id = ?', id]).update_all(['author_id = ?', substitute.id]) - Issue.where(['author_id = ?', id]).update_all(['author_id = ?', substitute.id]) - Issue.where(['assigned_to_id = ?', id]).update_all('assigned_to_id = NULL') - Journal.where(['user_id = ?', id]).update_all(['user_id = ?', substitute.id]) - JournalDetail. - where(["property = 'attr' AND prop_key = 'assigned_to_id' AND old_value = ?", id.to_s]). - update_all(['old_value = ?', substitute.id.to_s]) - JournalDetail. - where(["property = 'attr' AND prop_key = 'assigned_to_id' AND value = ?", id.to_s]). - update_all(['value = ?', substitute.id.to_s]) - Message.where(['author_id = ?', id]).update_all(['author_id = ?', substitute.id]) - News.where(['author_id = ?', id]).update_all(['author_id = ?', substitute.id]) - # Remove private queries and keep public ones - ::Query.where('user_id = ? AND visibility = ?', id, ::Query::VISIBILITY_PRIVATE).delete_all - ::Query.where(['user_id = ?', id]).update_all(['user_id = ?', substitute.id]) - TimeEntry.where(['user_id = ?', id]).update_all(['user_id = ?', substitute.id]) - Token.where('user_id = ?', id).delete_all - Watcher.where('user_id = ?', id).delete_all - WikiContent.where(['author_id = ?', id]).update_all(['author_id = ?', substitute.id]) - WikiContent::Version.where(['author_id = ?', id]).update_all(['author_id = ?', substitute.id]) - end - - # Singleton class method is public - class << self - # Return password digest - def hash_password(clear_password) - Digest::SHA1.hexdigest(clear_password || "") - end - - # Returns a 128bits random salt as a hex string (32 chars long) - def generate_salt - Redmine::Utils.random_hex(16) - end - end - - # Send a security notification to all admins if the user has gained/lost admin privileges - def deliver_security_notification - options = { - field: :field_admin, - value: login, - title: :label_user_plural, - url: {controller: 'users', action: 'index'} - } - - deliver = false - if (admin? && saved_change_to_id? && active?) || # newly created admin - (admin? && saved_change_to_admin? && active?) || # regular user became admin - (admin? && saved_change_to_status? && active?) # locked admin became active again - - deliver = true - options[:message] = :mail_body_security_notification_add - - elsif (admin? && destroyed? && active?) || # active admin user was deleted - (!admin? && saved_change_to_admin? && active?) || # admin is no longer admin - (admin? && saved_change_to_status? && !active?) # admin was locked - - deliver = true - options[:message] = :mail_body_security_notification_remove - end - - if deliver - users = User.active.where(admin: true).to_a - Mailer.deliver_security_notification(users, User.current, options) - end - end -end - -class AnonymousUser < User - validate :validate_anonymous_uniqueness, :on => :create - - self.valid_statuses = [STATUS_ANONYMOUS] - - def validate_anonymous_uniqueness - # There should be only one AnonymousUser in the database - errors.add :base, 'An anonymous user already exists.' if AnonymousUser.exists? - end - - def available_custom_fields - [] - end - - # Overrides a few properties - def logged?; false end - def admin; false end - def name(*args); I18n.t(:label_user_anonymous) end - def mail=(*args); nil end - def mail; nil end - def time_zone; nil end - def rss_key; nil end - - def pref - UserPreference.new(:user => self) - end - - # Returns the user's bult-in role - def builtin_role - @builtin_role ||= Role.anonymous - end - - def membership(*args) - nil - end - - def member_of?(*args) - false - end - - # Anonymous user can not be destroyed - def destroy - false - end - - protected - - def instantiate_email_address - end -end diff --git a/app/models/user_custom_field.rb b/app/models/user_custom_field.rb deleted file mode 100644 index 48ae157..0000000 --- a/app/models/user_custom_field.rb +++ /dev/null @@ -1,24 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class UserCustomField < CustomField - def type_name - :label_user_plural - end -end diff --git a/app/models/user_preference.rb b/app/models/user_preference.rb deleted file mode 100644 index 597ac9c..0000000 --- a/app/models/user_preference.rb +++ /dev/null @@ -1,178 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -require 'redmine/my_page' - -class UserPreference < ActiveRecord::Base - include Redmine::SafeAttributes - - belongs_to :user - serialize :others - - before_save :set_others_hash, :clear_unused_block_settings - - safe_attributes( - 'hide_mail', - 'time_zone', - 'comments_sorting', - 'warn_on_leaving_unsaved', - 'no_self_notified', - 'textarea_font', - 'recently_used_projects', - 'history_default_tab') - - TEXTAREA_FONT_OPTIONS = ['monospace', 'proportional'] - - def initialize(attributes=nil, *args) - super - if new_record? - unless attributes && attributes.key?(:hide_mail) - self.hide_mail = Setting.default_users_hide_mail? - end - unless attributes && attributes.key?(:time_zone) - self.time_zone = Setting.default_users_time_zone - end - unless attributes && attributes.key?(:no_self_notified) - self.no_self_notified = true - end - end - self.others ||= {} - end - - def set_others_hash - self.others ||= {} - end - - def [](attr_name) - if has_attribute? attr_name - super - else - others ? others[attr_name] : nil - end - end - - def []=(attr_name, value) - if has_attribute? attr_name - super - else - h = (read_attribute(:others) || {}).dup - h.update(attr_name => value) - write_attribute(:others, h) - value - end - end - - def comments_sorting; self[:comments_sorting] end - def comments_sorting=(order); self[:comments_sorting]=order end - - def warn_on_leaving_unsaved; self[:warn_on_leaving_unsaved] || '1'; end - def warn_on_leaving_unsaved=(value); self[:warn_on_leaving_unsaved]=value; end - - def no_self_notified; (self[:no_self_notified] == true || self[:no_self_notified] == '1'); end - def no_self_notified=(value); self[:no_self_notified]=value; end - - def activity_scope; Array(self[:activity_scope]) ; end - def activity_scope=(value); self[:activity_scope]=value ; end - - def textarea_font; self[:textarea_font] end - def textarea_font=(value); self[:textarea_font]=value; end - - def recently_used_projects; (self[:recently_used_projects] || 3).to_i; end - def recently_used_projects=(value); self[:recently_used_projects] = value.to_i; end - def history_default_tab; self[:history_default_tab]; end - def history_default_tab=(value); self[:history_default_tab]=value; end - - # Returns the names of groups that are displayed on user's page - # Example: - # preferences.my_page_groups - # # => ['top', 'left, 'right'] - def my_page_groups - Redmine::MyPage.groups - end - - def my_page_layout - self[:my_page_layout] ||= Redmine::MyPage.default_layout.deep_dup - end - - def my_page_layout=(arg) - self[:my_page_layout] = arg - end - - def my_page_settings(block=nil) - s = self[:my_page_settings] ||= {} - if block - s[block] ||= {} - else - s - end - end - - def my_page_settings=(arg) - self[:my_page_settings] = arg - end - - # Removes block from the user page layout - # Example: - # preferences.remove_block('news') - def remove_block(block) - block = block.to_s.underscore - my_page_layout.each_key do |group| - my_page_layout[group].delete(block) - end - my_page_layout - end - - # Adds block to the user page layout - # Returns nil if block is not valid or if it's already - # present in the user page layout - def add_block(block) - block = block.to_s.underscore - return unless Redmine::MyPage.valid_block?(block, my_page_layout.values.flatten) - - remove_block(block) - # add it to the first group - group = my_page_groups.first - my_page_layout[group] ||= [] - my_page_layout[group].unshift(block) - end - - # Sets the block order for the given group. - # Example: - # preferences.order_blocks('left', ['issueswatched', 'news']) - def order_blocks(group, blocks) - group = group.to_s - if Redmine::MyPage.groups.include?(group) && blocks.present? - blocks = blocks.map(&:underscore) & my_page_layout.values.flatten - blocks.each {|block| remove_block(block)} - my_page_layout[group] = blocks - end - end - - def update_block_settings(block, settings) - block = block.to_s - block_settings = my_page_settings(block).merge(settings.symbolize_keys) - my_page_settings[block] = block_settings - end - - def clear_unused_block_settings - blocks = my_page_layout.values.flatten - my_page_settings.keep_if {|block, settings| blocks.include?(block)} - end - private :clear_unused_block_settings -end diff --git a/app/models/version.rb b/app/models/version.rb deleted file mode 100644 index ef8d1dc..0000000 --- a/app/models/version.rb +++ /dev/null @@ -1,433 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -module FixedIssuesExtension - # Returns the total estimated time for this version - # (sum of leaves estimated_hours) - def estimated_hours - @estimated_hours ||= sum(:estimated_hours).to_f - end - - # Returns the total amount of open issues for this version. - def open_count - load_counts - @open_count - end - - # Returns the total amount of closed issues for this version. - def closed_count - load_counts - @closed_count - end - - # Returns the completion percentage of this version based on the amount of open/closed issues - # and the time spent on the open issues. - def completed_percent - if count == 0 - 0 - elsif open_count == 0 - 100 - else - issues_progress(false) + issues_progress(true) - end - end - - # Returns the percentage of issues that have been marked as 'closed'. - def closed_percent - if count == 0 - 0 - else - issues_progress(false) - end - end - - private - - def load_counts - unless @open_count - @open_count = 0 - @closed_count = 0 - self.group(:status).count.each do |status, count| - if status.is_closed? - @closed_count += count - else - @open_count += count - end - end - end - end - - # Returns the average estimated time of assigned issues - # or 1 if no issue has an estimated time - # Used to weight unestimated issues in progress calculation - def estimated_average - if @estimated_average.nil? - average = average(:estimated_hours).to_f - if average == 0 - average = 1 - end - @estimated_average = average - end - @estimated_average - end - - # Returns the total progress of open or closed issues. The returned percentage takes into account - # the amount of estimated time set for this version. - # - # Examples: - # issues_progress(true) => returns the progress percentage for open issues. - # issues_progress(false) => returns the progress percentage for closed issues. - def issues_progress(open) - @issues_progress ||= {} - @issues_progress[open] ||= begin - progress = 0 - if count > 0 - ratio = open ? 'done_ratio' : 100 - - done = open(open).sum("COALESCE(estimated_hours, #{estimated_average}) * #{ratio}").to_f - progress = done / (estimated_average * count) - end - progress - end - end -end - -class Version < ActiveRecord::Base - include Redmine::SafeAttributes - - after_update :update_issues_from_sharing_change - after_save :update_default_project_version - before_destroy :nullify_projects_default_version - - belongs_to :project - has_many :fixed_issues, :class_name => 'Issue', :foreign_key => 'fixed_version_id', :dependent => :nullify, :extend => FixedIssuesExtension - - acts_as_customizable - acts_as_attachable :view_permission => :view_files, - :edit_permission => :manage_files, - :delete_permission => :manage_files - - VERSION_STATUSES = %w(open locked closed) - VERSION_SHARINGS = %w(none descendants hierarchy tree system) - - validates_presence_of :name - validates_uniqueness_of :name, :scope => [:project_id] - validates_length_of :name, :maximum => 60 - validates_length_of :description, :wiki_page_title, :maximum => 255 - validates :effective_date, :date => true - validates_inclusion_of :status, :in => VERSION_STATUSES - validates_inclusion_of :sharing, :in => VERSION_SHARINGS - - scope :named, lambda {|arg| where("LOWER(#{table_name}.name) = LOWER(?)", arg.to_s.strip)} - scope :like, lambda {|arg| - if arg.present? - pattern = "%#{arg.to_s.strip}%" - where([Redmine::Database.like("#{Version.table_name}.name", '?'), pattern]) - end - } - scope :open, lambda { where(:status => 'open') } - scope :status, lambda {|status| - if status.present? - where(:status => status.to_s) - end - } - scope :visible, lambda {|*args| - joins(:project). - where(Project.allowed_to_condition(args.first || User.current, :view_issues)) - } - - safe_attributes 'name', - 'description', - 'effective_date', - 'due_date', - 'wiki_page_title', - 'status', - 'sharing', - 'default_project_version', - 'custom_field_values', - 'custom_fields' - - def safe_attributes=(attrs, user=User.current) - if attrs.respond_to?(:to_unsafe_hash) - attrs = attrs.to_unsafe_hash - end - - return unless attrs.is_a?(Hash) - attrs = attrs.deep_dup - - # Reject custom fields values not visible by the user - if attrs['custom_field_values'].present? - editable_custom_field_ids = editable_custom_field_values(user).map {|v| v.custom_field_id.to_s} - attrs['custom_field_values'].reject! {|k, v| !editable_custom_field_ids.include?(k.to_s)} - end - - # Reject custom fields not visible by the user - if attrs['custom_fields'].present? - editable_custom_field_ids = editable_custom_field_values(user).map {|v| v.custom_field_id.to_s} - attrs['custom_fields'].reject! {|c| !editable_custom_field_ids.include?(c['id'].to_s)} - end - - super(attrs, user) - end - - # Returns true if +user+ or current user is allowed to view the version - def visible?(user=User.current) - user.allowed_to?(:view_issues, self.project) - end - - # Returns the custom_field_values that can be edited by the given user - def editable_custom_field_values(user=nil) - visible_custom_field_values(user) - end - - def visible_custom_field_values(user = nil) - user ||= User.current - custom_field_values.select do |value| - value.custom_field.visible_by?(project, user) - end - end - - # Version files have same visibility as project files - def attachments_visible?(*args) - project.present? && project.attachments_visible?(*args) - end - - def attachments_deletable?(usr=User.current) - project.present? && project.attachments_deletable?(usr) - end - - alias :base_reload :reload - def reload(*args) - @default_project_version = nil - @visible_fixed_issues = nil - base_reload(*args) - end - - def start_date - @start_date ||= fixed_issues.minimum('start_date') - end - - def due_date - effective_date - end - - def due_date=(arg) - self.effective_date=(arg) - end - - # Returns the total estimated time for this version - # (sum of leaves estimated_hours) - def estimated_hours - fixed_issues.estimated_hours - end - - # Returns the total reported time for this version - def spent_hours - @spent_hours ||= TimeEntry.joins(:issue).where("#{Issue.table_name}.fixed_version_id = ?", id).sum(:hours).to_f - end - - def closed? - status == 'closed' - end - - def open? - status == 'open' - end - - # Returns true if the version is completed: closed or due date reached and no open issues - def completed? - closed? || (effective_date && (effective_date < User.current.today) && (open_issues_count == 0)) - end - - def behind_schedule? - if completed_percent == 100 - return false - elsif due_date && start_date - done_date = start_date + ((due_date - start_date+1)* completed_percent/100).floor - return done_date <= User.current.today - else - false # No issues so it's not late - end - end - - # Returns the completion percentage of this version based on the amount of open/closed issues - # and the time spent on the open issues. - def completed_percent - fixed_issues.completed_percent - end - - # Returns the percentage of issues that have been marked as 'closed'. - def closed_percent - fixed_issues.closed_percent - end - - # Returns true if the version is overdue: due date reached and some open issues - def overdue? - effective_date && (effective_date < User.current.today) && (open_issues_count > 0) - end - - # Returns assigned issues count - def issues_count - fixed_issues.count - end - - # Returns the total amount of open issues for this version. - def open_issues_count - fixed_issues.open_count - end - - # Returns the total amount of closed issues for this version. - def closed_issues_count - fixed_issues.closed_count - end - - def visible_fixed_issues - @visible_fixed_issues ||= fixed_issues.visible - end - - def wiki_page - if project.wiki && !wiki_page_title.blank? - @wiki_page ||= project.wiki.find_page(wiki_page_title) - end - @wiki_page - end - - def to_s; name end - - def to_s_with_project - "#{project} - #{name}" - end - - # Versions are sorted by effective_date and name - # Those with no effective_date are at the end, sorted by name - def <=>(version) - if self.effective_date - if version.effective_date - if self.effective_date == version.effective_date - name == version.name ? id <=> version.id : name <=> version.name - else - self.effective_date <=> version.effective_date - end - else - -1 - end - else - if version.effective_date - 1 - else - name == version.name ? id <=> version.id : name <=> version.name - end - end - end - - # Sort versions by status (open, locked then closed versions) - def self.sort_by_status(versions) - versions.sort do |a, b| - if a.status == b.status - a <=> b - else - b.status <=> a.status - end - end - end - - def css_classes - [ - completed? ? 'version-completed' : 'version-incompleted', - "version-#{status}" - ].join(' ') - end - - def self.fields_for_order_statement(table=nil) - table ||= table_name - [Arel.sql("(CASE WHEN #{table}.effective_date IS NULL THEN 1 ELSE 0 END)"), "#{table}.effective_date", "#{table}.name", "#{table}.id"] - end - - scope :sorted, lambda { order(fields_for_order_statement) } - - # Returns the sharings that +user+ can set the version to - def allowed_sharings(user = User.current) - VERSION_SHARINGS.select do |s| - if sharing == s - true - else - case s - when 'system' - # Only admin users can set a systemwide sharing - user.admin? - when 'hierarchy', 'tree' - # Only users allowed to manage versions of the root project can - # set sharing to hierarchy or tree - project.nil? || user.allowed_to?(:manage_versions, project.root) - else - true - end - end - end - end - - # Returns true if the version is shared, otherwise false - def shared? - sharing != 'none' - end - - def deletable? - fixed_issues.empty? && !referenced_by_a_custom_field? && attachments.empty? - end - - def default_project_version - if @default_project_version.nil? - project.present? && project.default_version == self - else - @default_project_version - end - end - - def default_project_version=(arg) - @default_project_version = (arg == '1' || arg == true) - end - - private - - # Update the issue's fixed versions. Used if a version's sharing changes. - def update_issues_from_sharing_change - if saved_change_to_sharing? - if VERSION_SHARINGS.index(sharing_before_last_save).nil? || - VERSION_SHARINGS.index(sharing).nil? || - VERSION_SHARINGS.index(sharing_before_last_save) > VERSION_SHARINGS.index(sharing) - Issue.update_versions_from_sharing_change self - end - end - end - - def update_default_project_version - if @default_project_version && project.present? - project.update_columns :default_version_id => id - end - end - - def referenced_by_a_custom_field? - CustomValue.joins(:custom_field). - where(:value => id.to_s, :custom_fields => {:field_format => 'version'}).any? - end - - def nullify_projects_default_version - Project.where(:default_version_id => id).update_all(:default_version_id => nil) - end -end diff --git a/app/models/version_custom_field.rb b/app/models/version_custom_field.rb deleted file mode 100644 index d9034e0..0000000 --- a/app/models/version_custom_field.rb +++ /dev/null @@ -1,28 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class VersionCustomField < CustomField - def type_name - :label_version_plural - end - - def visible_by?(project, user=User.current) - super || (roles & user.roles_for_project(project)).present? - end -end diff --git a/app/models/watcher.rb b/app/models/watcher.rb deleted file mode 100644 index 8ea4570..0000000 --- a/app/models/watcher.rb +++ /dev/null @@ -1,81 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class Watcher < ActiveRecord::Base - belongs_to :watchable, :polymorphic => true - belongs_to :user - - validates_presence_of :user - validates_uniqueness_of :user_id, :scope => [:watchable_type, :watchable_id] - validate :validate_user - - # Returns true if at least one object among objects is watched by user - def self.any_watched?(objects, user) - objects = objects.reject(&:new_record?) - if objects.any? - objects.group_by {|object| object.class.base_class}.each do |base_class, objects| - if Watcher.where(:watchable_type => base_class.name, :watchable_id => objects.map(&:id), :user_id => user.id).exists? - return true - end - end - end - false - end - - # Unwatch things that users are no longer allowed to view - def self.prune(options={}) - if options.has_key?(:user) - prune_single_user(options[:user], options) - else - pruned = 0 - User.where("id IN (SELECT DISTINCT user_id FROM #{table_name})").each do |user| - pruned += prune_single_user(user, options) - end - pruned - end - end - - protected - - def validate_user - errors.add :user_id, :invalid unless user.nil? || user.active? - end - - def self.prune_single_user(user, options={}) - return unless user.is_a?(User) - pruned = 0 - where(:user_id => user.id).each do |watcher| - next if watcher.watchable.nil? - if options.has_key?(:project) - unless watcher.watchable.respond_to?(:project) && - watcher.watchable.project == options[:project] - next - end - end - if watcher.watchable.respond_to?(:visible?) - unless watcher.watchable.visible?(user) - watcher.destroy - pruned += 1 - end - end - end - pruned - end - private_class_method :prune_single_user -end diff --git a/app/models/wiki.rb b/app/models/wiki.rb deleted file mode 100644 index ed4331f..0000000 --- a/app/models/wiki.rb +++ /dev/null @@ -1,108 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class Wiki < ActiveRecord::Base - include Redmine::SafeAttributes - belongs_to :project - has_many :pages, lambda {order('title')}, :class_name => 'WikiPage', :dependent => :destroy - has_many :redirects, :class_name => 'WikiRedirect' - - acts_as_watchable - - validates_presence_of :start_page - validates_format_of :start_page, :with => /\A[^,\.\/\?\;\|\:]*\z/ - validates_length_of :start_page, maximum: 255 - - before_destroy :delete_redirects - - safe_attributes 'start_page' - - def visible?(user=User.current) - !user.nil? && user.allowed_to?(:view_wiki_pages, project) - end - - # Returns the wiki page that acts as the sidebar content - # or nil if no such page exists - def sidebar - @sidebar ||= find_page('Sidebar', :with_redirect => false) - end - - # find the page with the given title - # if page doesn't exist, return a new page - def find_or_new_page(title) - title = start_page if title.blank? - find_page(title) || WikiPage.new(:wiki => self, :title => Wiki.titleize(title)) - end - - # find the page with the given title - def find_page(title, options = {}) - @page_found_with_redirect = false - title = start_page if title.blank? - title = Wiki.titleize(title) - page = pages.find_by("LOWER(title) = LOWER(?)", title) - if page.nil? && options[:with_redirect] != false - # search for a redirect - redirect = redirects.where("LOWER(title) = LOWER(?)", title).first - if redirect - page = redirect.target_page - @page_found_with_redirect = true - end - end - page - end - - # Returns true if the last page was found with a redirect - def page_found_with_redirect? - @page_found_with_redirect - end - - # Deletes all redirects from/to the wiki - def delete_redirects - WikiRedirect.where(:wiki_id => id).delete_all - WikiRedirect.where(:redirects_to_wiki_id => id).delete_all - end - - # Finds a page by title - # The given string can be of one of the forms: "title" or "project:title" - # Examples: - # Wiki.find_page("bar", project => foo) - # Wiki.find_page("foo:bar") - def self.find_page(title, options = {}) - project = options[:project] - if title.to_s =~ %r{^([^\:]+)\:(.*)$} - project_identifier, title = $1, $2 - project = Project.find_by_identifier(project_identifier) || Project.find_by_name(project_identifier) - end - if project && project.wiki - page = project.wiki.find_page(title) - if page && page.content - page - end - end - end - - # turn a string into a valid page title - def self.titleize(title) - # replace spaces with _ and remove unwanted caracters - title = title.gsub(/\s+/, '_').delete(',./?;|:') if title - # upcase the first letter - title = (title.slice(0..0).upcase + (title.slice(1..-1) || '')) if title - title - end -end diff --git a/app/models/wiki_content.rb b/app/models/wiki_content.rb deleted file mode 100644 index d38c5ca..0000000 --- a/app/models/wiki_content.rb +++ /dev/null @@ -1,105 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -require 'zlib' - -class WikiContent < ActiveRecord::Base - self.locking_column = 'version' - belongs_to :page, :class_name => 'WikiPage' - belongs_to :author, :class_name => 'User' - has_many :versions, :class_name => 'WikiContentVersion', :dependent => :delete_all - validates_presence_of :text - validates_length_of :comments, :maximum => 1024, :allow_nil => true - - after_save :create_version - after_create_commit :send_notification_create - after_update_commit :send_notification_update - - scope :without_text, lambda {select(:id, :page_id, :version, :updated_on)} - - def initialize(*args) - super - if new_record? - self.version = 1 - end - end - - def visible?(user=User.current) - page.visible?(user) - end - - def project - page.project - end - - def attachments - page.nil? ? [] : page.attachments - end - - def notified_users - project.notified_users.reject {|user| !visible?(user)} - end - - # Returns the mail addresses of users that should be notified - def recipients - notified_users.collect(&:mail) - end - - # Return true if the content is the current page content - def current_version? - true - end - - # Reverts the record to a previous version - def revert_to!(version) - if version.wiki_content_id == id - update_columns( - :author_id => version.author_id, - :text => version.text, - :comments => version.comments, - :version => version.version, - :updated_on => version.updated_on - ) && reload - end - end - - private - - def create_version - versions << WikiContentVersion.new(attributes.except("id")) - end - - # Notifies users that a wiki page was created - def send_notification_create - if Setting.notified_events.include?('wiki_content_added') - Mailer.deliver_wiki_content_added(self) - end - end - - # Notifies users that a wiki page was updated - def send_notification_update - if Setting.notified_events.include?('wiki_content_updated') && saved_change_to_text? - Mailer.deliver_wiki_content_updated(self) - end - end - - # For backward compatibility - # TODO: remove it in Redmine 5 - Version = WikiContentVersion -end diff --git a/app/models/wiki_content_version.rb b/app/models/wiki_content_version.rb deleted file mode 100644 index bc2aafe..0000000 --- a/app/models/wiki_content_version.rb +++ /dev/null @@ -1,119 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -require 'zlib' - -class WikiContentVersion < ActiveRecord::Base - belongs_to :page, :class_name => 'WikiPage' - belongs_to :author, :class_name => 'User' - - acts_as_event :title => Proc.new {|o| "#{l(:label_wiki_edit)}: #{o.page.title} (##{o.version})"}, - :description => :comments, - :datetime => :updated_on, - :type => 'wiki-page', - :group => :page, - :url => Proc.new {|o| {:controller => 'wiki', :action => 'show', :project_id => o.page.wiki.project, :id => o.page.title, :version => o.version}} - - acts_as_activity_provider :type => 'wiki_edits', - :timestamp => "#{table_name}.updated_on", - :author_key => "#{table_name}.author_id", - :permission => :view_wiki_edits, - :scope => select("#{table_name}.updated_on, #{table_name}.comments, " + - "#{table_name}.version, #{WikiPage.table_name}.title, " + - "#{table_name}.page_id, #{table_name}.author_id, " + - "#{table_name}.id"). - joins("LEFT JOIN #{WikiPage.table_name} ON #{WikiPage.table_name}.id = #{table_name}.page_id " + - "LEFT JOIN #{Wiki.table_name} ON #{Wiki.table_name}.id = #{WikiPage.table_name}.wiki_id " + - "LEFT JOIN #{Project.table_name} ON #{Project.table_name}.id = #{Wiki.table_name}.project_id") - - after_destroy :page_update_after_destroy - - def text=(plain) - case Setting.wiki_compression - when 'gzip' - begin - self.data = Zlib::Deflate.deflate(plain, Zlib::BEST_COMPRESSION) - self.compression = 'gzip' - rescue - self.data = plain - self.compression = '' - end - else - self.data = plain - self.compression = '' - end - plain - end - - def text - @text ||= begin - str = case compression - when 'gzip' - Zlib::Inflate.inflate(data) - else - # uncompressed data - data - end - str.force_encoding("UTF-8") - str - end - end - - def project - page.project - end - - def attachments - page.nil? ? [] : page.attachments - end - - # Return true if the content is the current page content - def current_version? - page.content.version == self.version - end - - # Returns the previous version or nil - def previous - @previous ||= WikiContentVersion. - reorder(version: :desc). - includes(:author). - where("wiki_content_id = ? AND version < ?", wiki_content_id, version).first - end - - # Returns the next version or nil - def next - @next ||= WikiContentVersion. - reorder(version: :asc). - includes(:author). - where("wiki_content_id = ? AND version > ?", wiki_content_id, version).first - end - - private - - # Updates page's content if the latest version is removed - # or destroys the page if it was the only version - def page_update_after_destroy - latest = page.content.versions.reorder(version: :desc).first - if latest && page.content.version != latest.version - raise ActiveRecord::Rollback unless page.content.revert_to!(latest) - elsif latest.nil? - raise ActiveRecord::Rollback unless page.destroy - end - end -end diff --git a/app/models/wiki_page.rb b/app/models/wiki_page.rb deleted file mode 100644 index e1765a2..0000000 --- a/app/models/wiki_page.rb +++ /dev/null @@ -1,333 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -require 'diff' - -class WikiPage < ActiveRecord::Base - include Redmine::SafeAttributes - - belongs_to :wiki - has_one :content, :class_name => 'WikiContent', :foreign_key => 'page_id', :dependent => :destroy - has_one :content_without_text, lambda {without_text.readonly}, :class_name => 'WikiContent', :foreign_key => 'page_id' - - acts_as_attachable :delete_permission => :delete_wiki_pages_attachments - acts_as_tree :dependent => :nullify, :order => 'title' - - acts_as_watchable - acts_as_event :title => Proc.new {|o| "#{l(:label_wiki)}: #{o.title}"}, - :description => :text, - :datetime => :created_on, - :url => Proc.new {|o| {:controller => 'wiki', :action => 'show', :project_id => o.wiki.project, :id => o.title}} - - acts_as_searchable :columns => ['title', "#{WikiContent.table_name}.text"], - :scope => joins(:content, {:wiki => :project}), - :preload => [:content, {:wiki => :project}], - :permission => :view_wiki_pages, - :project_key => "#{Wiki.table_name}.project_id" - - attr_accessor :redirect_existing_links - attr_writer :deleted_attachment_ids - - validates_presence_of :title - validates_format_of :title, :with => /\A[^,\.\/\?\;\|\s]*\z/ - validates_uniqueness_of :title, :scope => :wiki_id, :case_sensitive => false - validates_length_of :title, maximum: 255 - validates_associated :content - - validate :validate_parent_title - before_destroy :delete_redirects - before_save :handle_rename_or_move, :update_wiki_start_page - after_save :handle_children_move, :delete_selected_attachments - - # eager load information about last updates, without loading text - scope :with_updated_on, lambda { preload(:content_without_text) } - - # Wiki pages that are protected by default - DEFAULT_PROTECTED_PAGES = %w(sidebar) - - safe_attributes 'parent_id', 'parent_title', 'title', 'redirect_existing_links', 'wiki_id', - :if => lambda {|page, user| page.new_record? || user.allowed_to?(:rename_wiki_pages, page.project)} - - safe_attributes 'is_start_page', - :if => lambda {|page, user| user.allowed_to?(:manage_wiki, page.project)} - - safe_attributes 'deleted_attachment_ids', - :if => lambda {|page, user| page.attachments_deletable?(user)} - - def initialize(attributes=nil, *args) - super - if new_record? && DEFAULT_PROTECTED_PAGES.include?(title.to_s.downcase) - self.protected = true - end - end - - def visible?(user=User.current) - !user.nil? && user.allowed_to?(:view_wiki_pages, project) - end - - def title=(value) - value = Wiki.titleize(value) - write_attribute(:title, value) - end - - def safe_attributes=(attrs, user=User.current) - if attrs.respond_to?(:to_unsafe_hash) - attrs = attrs.to_unsafe_hash - end - - return unless attrs.is_a?(Hash) - attrs = attrs.deep_dup - - # Project and Tracker must be set before since new_statuses_allowed_to depends on it. - if (w_id = attrs.delete('wiki_id')) && safe_attribute?('wiki_id') - if (w = Wiki.find_by_id(w_id)) && w.project && user.allowed_to?(:rename_wiki_pages, w.project) - self.wiki = w - end - end - - super attrs, user - end - - # Manages redirects if page is renamed or moved - def handle_rename_or_move - if !new_record? && (title_changed? || wiki_id_changed?) - # Update redirects that point to the old title - WikiRedirect.where(:redirects_to => title_was, :redirects_to_wiki_id => wiki_id_was).each do |r| - r.redirects_to = title - r.redirects_to_wiki_id = wiki_id - (r.title == r.redirects_to && r.wiki_id == r.redirects_to_wiki_id) ? r.destroy : r.save - end - # Remove redirects for the new title - WikiRedirect.where(:wiki_id => wiki_id, :title => title).delete_all - # Create a redirect to the new title - unless redirect_existing_links == "0" - WikiRedirect.create( - :wiki_id => wiki_id_was, :title => title_was, - :redirects_to_wiki_id => wiki_id, :redirects_to => title - ) - end - end - if !new_record? && wiki_id_changed? && parent.present? - unless parent.wiki_id == wiki_id - self.parent_id = nil - end - end - end - private :handle_rename_or_move - - # Moves child pages if page was moved - def handle_children_move - if !new_record? && saved_change_to_wiki_id? - children.each do |child| - child.wiki_id = wiki_id - child.redirect_existing_links = redirect_existing_links - unless child.save - WikiPage.where(:id => child.id).update_all :parent_id => nil - end - end - end - end - private :handle_children_move - - # Deletes redirects to this page - def delete_redirects - WikiRedirect.where(:redirects_to_wiki_id => wiki_id, :redirects_to => title).delete_all - end - - def pretty_title - WikiPage.pretty_title(title) - end - - def content_for_version(version=nil) - (content && version) ? content.versions.find_by_version(version.to_i) : content - end - - def diff(version_to=nil, version_from=nil) - version_to = version_to ? version_to.to_i : self.content.version - content_to = content.versions.find_by_version(version_to) - content_from = version_from ? content.versions.find_by_version(version_from.to_i) : content_to.try(:previous) - return nil unless content_to && content_from - - if content_from.version > content_to.version - content_to, content_from = content_from, content_to - end - - (content_to && content_from) ? WikiDiff.new(content_to, content_from) : nil - end - - def annotate(version=nil) - version = version ? version.to_i : self.content.version - c = content.versions.find_by_version(version) - c ? WikiAnnotate.new(c) : nil - end - - def self.pretty_title(str) - (str && str.is_a?(String)) ? str.tr('_', ' ') : str - end - - def project - wiki.try(:project) - end - - def text - content.text if content - end - - def updated_on - content_attribute(:updated_on) - end - - def version - content_attribute(:version) - end - - # Returns true if usr is allowed to edit the page, otherwise false - def editable_by?(usr) - !protected? || usr.allowed_to?(:protect_wiki_pages, wiki.project) - end - - def attachments_deletable?(usr=User.current) - editable_by?(usr) && super(usr) - end - - def parent_title - @parent_title || (self.parent && self.parent.pretty_title) - end - - def parent_title=(t) - @parent_title = t - parent_page = t.blank? ? nil : self.wiki.find_page(t) - self.parent = parent_page - end - - def is_start_page - if @is_start_page.nil? - @is_start_page = wiki.try(:start_page) == title_was - end - @is_start_page - end - - def is_start_page=(arg) - @is_start_page = arg == '1' || arg == true - end - - def update_wiki_start_page - if is_start_page - wiki.update_attribute :start_page, title - end - end - private :update_wiki_start_page - - # Saves the page and its content if text was changed - # Return true if the page was saved - def save_with_content(content) - ret = nil - transaction do - ret = save - if content.text_changed? - begin - self.content = content - rescue ActiveRecord::RecordNotSaved - ret = false - end - end - raise ActiveRecord::Rollback unless ret - end - ret - end - - def deleted_attachment_ids - Array(@deleted_attachment_ids).map(&:to_i) - end - - def delete_selected_attachments - if deleted_attachment_ids.present? - objects = attachments.where(:id => deleted_attachment_ids.map(&:to_i)) - attachments.delete(objects) - end - end - - protected - - def validate_parent_title - errors.add(:parent_title, :invalid) if !@parent_title.blank? && parent.nil? - errors.add(:parent_title, :circular_dependency) if parent && (parent == self || parent.ancestors.include?(self)) - if parent_id_changed? && parent && (parent.wiki_id != wiki_id) - errors.add(:parent_title, :not_same_project) - end - end - - private - - def content_attribute(name) - (association(:content).loaded? ? content : content_without_text).try(name) - end -end - -class WikiDiff < Redmine::Helpers::Diff - attr_reader :content_to, :content_from - - def initialize(content_to, content_from) - @content_to = content_to - @content_from = content_from - super(content_to.text, content_from.text) - end -end - -class WikiAnnotate - attr_reader :lines, :content - - def initialize(content) - @content = content - current = content - current_lines = current.text.split(/\r?\n/) - @lines = current_lines.collect {|t| [nil, nil, t]} - positions = [] - current_lines.size.times {|i| positions << i} - while current.previous - d = current.previous.text.split(/\r?\n/).diff(current.text.split(/\r?\n/)).diffs.flatten - d.each_slice(3) do |s| - sign, line = s[0], s[1] - if sign == '+' && positions[line] && positions[line] != -1 - if @lines[positions[line]][0].nil? - @lines[positions[line]][0] = current.version - @lines[positions[line]][1] = current.author - end - end - end - d.each_slice(3) do |s| - sign, line = s[0], s[1] - if sign == '-' - positions.insert(line, -1) - else - positions[line] = nil - end - end - positions.compact! - # Stop if every line is annotated - break unless @lines.detect { |line| line[0].nil? } - current = current.previous - end - @lines.each { |line| - line[0] ||= current.version - # if the last known version is > 1 (eg. history was cleared), we don't know the author - line[1] ||= current.author if current.version == 1 - } - end -end diff --git a/app/models/wiki_redirect.rb b/app/models/wiki_redirect.rb deleted file mode 100644 index a54e09b..0000000 --- a/app/models/wiki_redirect.rb +++ /dev/null @@ -1,40 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class WikiRedirect < ActiveRecord::Base - belongs_to :wiki - - validates_presence_of :wiki_id, :title, :redirects_to - validates_length_of :title, :redirects_to, :maximum => 255 - - before_save :set_redirects_to_wiki_id - - def target_page - wiki = Wiki.find_by_id(redirects_to_wiki_id) - if wiki - wiki.find_page(redirects_to, :with_redirect => false) - end - end - - private - - def set_redirects_to_wiki_id - self.redirects_to_wiki_id ||= wiki_id - end -end diff --git a/app/models/workflow_permission.rb b/app/models/workflow_permission.rb deleted file mode 100644 index ed320b1..0000000 --- a/app/models/workflow_permission.rb +++ /dev/null @@ -1,71 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class WorkflowPermission < WorkflowRule - validates_inclusion_of :rule, :in => %w(readonly required) - validates_presence_of :old_status - validate :validate_field_name - - # Returns the workflow permissions for the given trackers and roles - # grouped by status_id - # - # Example: - # WorkflowPermission.rules_by_status_id trackers, roles - # # => {1 => {'start_date' => 'required', 'due_date' => 'readonly'}} - def self.rules_by_status_id(trackers, roles) - WorkflowPermission.where(:tracker_id => trackers.map(&:id), :role_id => roles.map(&:id)).inject({}) do |h, w| - h[w.old_status_id] ||= {} - h[w.old_status_id][w.field_name] ||= [] - h[w.old_status_id][w.field_name] << w.rule - h - end - end - - # Replaces the workflow permissions for the given trackers and roles - # - # Example: - # WorkflowPermission.replace_permissions trackers, roles, {'1' => {'start_date' => 'required', 'due_date' => 'readonly'}} - def self.replace_permissions(trackers, roles, permissions) - trackers = Array.wrap trackers - roles = Array.wrap roles - - transaction do - permissions.each { |status_id, rule_by_field| - rule_by_field.each { |field, rule| - where(:tracker_id => trackers.map(&:id), :role_id => roles.map(&:id), :old_status_id => status_id, :field_name => field).destroy_all - if rule.present? - trackers.each do |tracker| - roles.each do |role| - WorkflowPermission.create(:role_id => role.id, :tracker_id => tracker.id, :old_status_id => status_id, :field_name => field, :rule => rule) - end - end - end - } - } - end - end - - protected - - def validate_field_name - unless Tracker::CORE_FIELDS_ALL.include?(field_name) || /^\d+$/.match?(field_name.to_s) - errors.add :field_name, :invalid - end - end -end diff --git a/app/models/workflow_rule.rb b/app/models/workflow_rule.rb deleted file mode 100644 index 7b17c70..0000000 --- a/app/models/workflow_rule.rb +++ /dev/null @@ -1,75 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class WorkflowRule < ActiveRecord::Base - self.table_name = "#{table_name_prefix}workflows#{table_name_suffix}" - - belongs_to :role - belongs_to :tracker - belongs_to :old_status, :class_name => 'IssueStatus' - belongs_to :new_status, :class_name => 'IssueStatus' - - validates_presence_of :role, :tracker - - # Copies workflows from source to targets - def self.copy(source_tracker, source_role, target_trackers, target_roles) - unless source_tracker.is_a?(Tracker) || source_role.is_a?(Role) - raise ArgumentError.new("source_tracker or source_role must be specified, given: #{source_tracker.class.name} and #{source_role.class.name}") - end - - target_trackers = [target_trackers].flatten.compact - target_roles = [target_roles].flatten.compact - - target_trackers = Tracker.sorted.to_a if target_trackers.empty? - target_roles = Role.all.select(&:consider_workflow?) if target_roles.empty? - - target_trackers.each do |target_tracker| - target_roles.each do |target_role| - copy_one(source_tracker || target_tracker, - source_role || target_role, - target_tracker, - target_role) - end - end - end - - # Copies a single set of workflows from source to target - def self.copy_one(source_tracker, source_role, target_tracker, target_role) - unless source_tracker.is_a?(Tracker) && !source_tracker.new_record? && - source_role.is_a?(Role) && !source_role.new_record? && - target_tracker.is_a?(Tracker) && !target_tracker.new_record? && - target_role.is_a?(Role) && !target_role.new_record? - - raise ArgumentError.new("arguments can not be nil or unsaved objects") - end - - if source_tracker == target_tracker && source_role == target_role - false - else - transaction do - where(:tracker_id => target_tracker.id, :role_id => target_role.id).delete_all - connection.insert "INSERT INTO #{WorkflowRule.table_name} (tracker_id, role_id, old_status_id, new_status_id, author, assignee, field_name, #{connection.quote_column_name 'rule'}, type)" + - " SELECT #{target_tracker.id}, #{target_role.id}, old_status_id, new_status_id, author, assignee, field_name, #{connection.quote_column_name 'rule'}, type" + - " FROM #{WorkflowRule.table_name}" + - " WHERE tracker_id = #{source_tracker.id} AND role_id = #{source_role.id}" - end - true - end - end -end diff --git a/app/models/workflow_transition.rb b/app/models/workflow_transition.rb deleted file mode 100644 index d6e9401..0000000 --- a/app/models/workflow_transition.rb +++ /dev/null @@ -1,87 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -class WorkflowTransition < WorkflowRule - validates_presence_of :new_status - - def self.replace_transitions(trackers, roles, transitions) - trackers = Array.wrap trackers - roles = Array.wrap roles - - transaction do - records = WorkflowTransition.where(:tracker_id => trackers.map(&:id), :role_id => roles.map(&:id)).to_a - - transitions.each do |old_status_id, transitions_by_new_status| - transitions_by_new_status.each do |new_status_id, transition_by_rule| - transition_by_rule.each do |rule, transition| - trackers.each do |tracker| - roles.each do |role| - w = records.select {|r| - r.old_status_id == old_status_id.to_i && - r.new_status_id == new_status_id.to_i && - r.tracker_id == tracker.id && - r.role_id == role.id && - !r.destroyed? - } - - if rule == 'always' - w = w.select {|r| !r.author && !r.assignee} - else - w = w.select {|r| r.author || r.assignee} - end - if w.size > 1 - w[1..-1].each(&:destroy) - end - w = w.first - - if transition == "1" || transition == true - unless w - w = WorkflowTransition.new(:old_status_id => old_status_id, :new_status_id => new_status_id, :tracker_id => tracker.id, :role_id => role.id) - records << w - end - w.author = true if rule == "author" - w.assignee = true if rule == "assignee" - w.save if w.changed? - elsif w - if rule == 'always' - w.destroy - elsif rule == 'author' - if w.assignee - w.author = false - w.save if w.changed? - else - w.destroy - end - elsif rule == 'assignee' - if w.author - w.assignee = false - w.save if w.changed? - else - w.destroy - end - end - end - end - end - end - end - end - end - end -end diff --git a/app/views/account/logout.html.erb b/app/views/account/logout.html.erb deleted file mode 100644 index 3095976..0000000 --- a/app/views/account/logout.html.erb +++ /dev/null @@ -1,3 +0,0 @@ -<%= form_tag(signout_path) do %> -

    <%= submit_tag l(:label_logout) %>

    -<% end %> diff --git a/app/views/account/lost_password.html.erb b/app/views/account/lost_password.html.erb deleted file mode 100644 index 19df8d9..0000000 --- a/app/views/account/lost_password.html.erb +++ /dev/null @@ -1,11 +0,0 @@ -

    <%=l(:label_password_lost)%>

    - -<%= form_tag(lost_password_path) do %> -
    -

    - - <%= text_field_tag 'mail', nil, :size => 40 %> - <%= submit_tag l(:button_submit) %> -

    -
    -<% end %> diff --git a/app/views/account/password_recovery.html.erb b/app/views/account/password_recovery.html.erb deleted file mode 100644 index 0c275b4..0000000 --- a/app/views/account/password_recovery.html.erb +++ /dev/null @@ -1,23 +0,0 @@ -

    <%=l(:label_password_lost)%>

    - -<%= error_messages_for 'user' %> - -<%= form_tag(lost_password_path) do %> - <%= hidden_field_tag 'token', @token.value %> -
    -

    - - <%= password_field_tag 'new_password', nil, :size => 25 %> - <%= l(:text_caracters_minimum, :count => Setting.password_min_length) %> - <% if Setting.password_required_char_classes.any? %> - <%= l(:text_characters_must_contain, :character_classes => Setting.password_required_char_classes.collect{|c| l("label_password_char_class_#{c}")}.join(", ")) %> - <% end %> -

    - -

    - - <%= password_field_tag 'new_password_confirmation', nil, :size => 25 %> -

    -
    -

    <%= submit_tag l(:button_save) %>

    -<% end %> diff --git a/app/views/account/register.html.erb b/app/views/account/register.html.erb deleted file mode 100644 index f35e0e0..0000000 --- a/app/views/account/register.html.erb +++ /dev/null @@ -1,41 +0,0 @@ -

    <%=l(:label_register)%> <%=link_to l(:label_login_with_open_id_option), signin_url if Setting.openid? %>

    - -<%= labelled_form_for @user, :url => register_path do |f| %> -<%= error_messages_for 'user' %> - -
    -<% if @user.auth_source_id.nil? %> -

    <%= f.text_field :login, :size => 25, :required => true %>

    - -

    <%= f.password_field :password, :size => 25, :required => true %> - <%= l(:text_caracters_minimum, :count => Setting.password_min_length) %> - <% if Setting.password_required_char_classes.any? %> - <%= l(:text_characters_must_contain, :character_classes => Setting.password_required_char_classes.collect{|c| l("label_password_char_class_#{c}")}.join(", ")) %> - <% end %> -

    -

    <%= f.password_field :password_confirmation, :size => 25, :required => true %>

    -<% end %> - -

    <%= f.text_field :firstname, :required => true %>

    -

    <%= f.text_field :lastname, :required => true %>

    -

    <%= f.text_field :mail, :required => true %>

    -<%= labelled_fields_for :pref, @user.pref do |pref_fields| %> -

    <%= pref_fields.check_box :hide_mail %>

    -<% end %> - - -<% unless @user.force_default_language? %> -

    <%= f.select :language, lang_options_for_select %>

    -<% end %> - -<% if Setting.openid? %> -

    <%= f.text_field :identity_url %>

    -<% end %> - -<% @user.custom_field_values.select {|v| (Setting.show_custom_fields_on_registration? && v.editable?) || v.required?}.each do |value| %> -

    <%= custom_field_tag_with_label :user, value %>

    -<% end %> -
    - -<%= submit_tag l(:button_submit) %> -<% end %> diff --git a/app/views/activities/_activities.html.erb b/app/views/activities/_activities.html.erb deleted file mode 100644 index aaeea76..0000000 --- a/app/views/activities/_activities.html.erb +++ /dev/null @@ -1,17 +0,0 @@ -
    -<% events_by_day.keys.sort.reverse_each do |day| %> -

    <%= format_activity_day(day) %>

    -
    -<% sort_activity_events(events_by_day[day]).each do |e, in_group| -%> -
    <%= User.current.logged? && e.respond_to?(:event_author) && User.current == e.event_author ? 'me' : nil %>"> - <%= avatar(e.event_author) if e.respond_to?(:event_author) %> - <%= format_time(e.event_datetime, false) %> - <%= content_tag('span', e.project, :class => 'project') if @project.nil? || @project != e.project %> - <%= link_to format_activity_title(e.event_title), e.event_url %> -
    -
    "><%= format_activity_description(e.event_description) %> - <%= link_to_user(e.event_author) if e.respond_to?(:event_author) %>
    -<% end -%> -
    -<% end -%> -
    diff --git a/app/views/activities/index.html.erb b/app/views/activities/index.html.erb deleted file mode 100644 index 64f7f6a..0000000 --- a/app/views/activities/index.html.erb +++ /dev/null @@ -1,56 +0,0 @@ -

    <%= @author.nil? ? l(:label_activity) : l(:label_user_activity, link_to_user(@author)).html_safe %>

    - -

    <%= l(:label_date_from_to, :start => format_date(@date_to - @days), :end => format_date(@date_to-1)) %>

    - -<%= render :partial => 'activities/activities', :locals => {:events_by_day => @events_by_day} %> -<%= content_tag('p', l(:label_no_data), :class => 'nodata') if @events_by_day.empty? %> - - -
      - <% unless @date_to > User.current.today %> -
    -
    -  -<% other_formats_links do |f| %> - <%= f.link_to_with_query_parameters 'Atom', 'from' => nil, :key => User.current.rss_key %> -<% end %> - -<% content_for :header_tags do %> -<%= auto_discovery_link_tag(:atom, :params => request.query_parameters.merge(:from => nil, :key => User.current.rss_key), :format => 'atom') %> -<% end %> - -<% content_for :sidebar do %> -<%= form_tag({}, :method => :get, :id => 'activity_scope_form') do %> -

    <%= l(:label_activity) %>

    -
      -<% @activity.event_types.each do |t| %> -
    • - <%= check_box_tag "show_#{t}", 1, @activity.scope.include?(t) %> - -
    • -<% end %> -
    -<% if @project && @project.descendants.active.any? %> - <%= hidden_field_tag 'with_subprojects', 0, :id => nil %> -

    -<% end %> -<%= hidden_field_tag('user_id', params[:user_id]) unless params[:user_id].blank? %> -<%= hidden_field_tag('from', params[:from]) unless params[:from].blank? %> -

    <%= submit_tag l(:button_apply), :class => 'button-small', :name => 'submit' %>

    -<% end %> -<% end %> - -<% html_title(l(:label_activity), @author) -%> diff --git a/app/views/admin/_menu.html.erb b/app/views/admin/_menu.html.erb deleted file mode 100644 index 2ac62c2..0000000 --- a/app/views/admin/_menu.html.erb +++ /dev/null @@ -1,3 +0,0 @@ -
    - <%= render_menu :admin_menu %> -
    diff --git a/app/views/admin/_no_data.html.erb b/app/views/admin/_no_data.html.erb deleted file mode 100644 index 8ad39b1..0000000 --- a/app/views/admin/_no_data.html.erb +++ /dev/null @@ -1,8 +0,0 @@ -
    -<%= form_tag({:action => 'default_configuration'}) do %> - <%= simple_format(l(:text_no_configuration_data)) %> -

    <%= l(:field_language) %>: - <%= select_tag 'lang', options_for_select(lang_options_for_select(false), current_language.to_s) %> - <%= submit_tag l(:text_load_default_configuration) %>

    -<% end %> -
    diff --git a/app/views/admin/index.html.erb b/app/views/admin/index.html.erb deleted file mode 100644 index 768dd4e..0000000 --- a/app/views/admin/index.html.erb +++ /dev/null @@ -1,8 +0,0 @@ -

    <%=l(:label_administration)%>

    - -
    - <%= render :partial => 'no_data' if @no_configuration_data %> - <%= render :partial => 'menu' %> -
    - -<% html_title(l(:label_administration)) -%> diff --git a/app/views/admin/info.html.erb b/app/views/admin/info.html.erb deleted file mode 100644 index 2ff8de5..0000000 --- a/app/views/admin/info.html.erb +++ /dev/null @@ -1,18 +0,0 @@ -

    <%=l(:label_information_plural)%>

    - -

    <%= Redmine::Info.versioned_name %>

    - - -<% @checklist.each do |label, result| %> - - - - -<% end %> -
    <%= label.is_a?(Symbol) ? l(label) : label %>
    -
    -
    -
    <%= Redmine::Info.environment %>
    -
    - -<% html_title(l(:label_information_plural)) -%> diff --git a/app/views/admin/plugins.html.erb b/app/views/admin/plugins.html.erb deleted file mode 100644 index 3d88c90..0000000 --- a/app/views/admin/plugins.html.erb +++ /dev/null @@ -1,65 +0,0 @@ -<%= title l(:label_plugins) %> - -<% if @plugins.any? %> -
    - - <% @plugins.each do |plugin| %> - - - - - - - <% end %> -
    <%= plugin.name %> - <%= content_tag('span', plugin.description, :class => 'description') unless plugin.description.blank? %> - <%= content_tag('span', link_to(plugin.url, plugin.url), :class => 'url') unless plugin.url.blank? %> - <%= plugin.author_url.blank? ? plugin.author : link_to(plugin.author, plugin.author_url) %><%= plugin.version %><%= link_to(l(:button_configure), plugin_settings_path(plugin)) if plugin.configurable? %>
    -
    -

    <%= l(:label_check_for_updates) %>

    -<% else %> -

    <%= l(:label_no_data) %>

    -<% end %> - -<%= javascript_tag do %> -$(document).ready(function(){ - $("#check-for-updates").click(function(e){ - e.preventDefault(); - $.ajax({ - dataType: "jsonp", - url: "https://www.redmine.org/plugins/check_updates", - data: <%= raw_json plugin_data_for_updates(@plugins) %>, - timeout: 10000, - beforeSend: function(){ - $('#ajax-indicator').show(); - }, - success: function(data){ - $('#ajax-indicator').hide(); - $("table.plugins td.version span").addClass("unknown"); - $.each(data, function(plugin_id, plugin_data){ - var s = $("tr#plugin-"+plugin_id+" td.version span"); - s.removeClass("icon-ok icon-warning unknown"); - if (plugin_data.url) { - if (s.parent("a").length>0) { - s.unwrap(); - } - s.addClass("found"); - s.wrap($("").attr("href", plugin_data.url).attr("target", "_blank")); - } - if (plugin_data.c == s.text()) { - s.addClass("icon-ok"); - } else if (plugin_data.c) { - s.addClass("icon-warning"); - s.attr("title", "<%= escape_javascript l(:label_latest_compatible_version) %>: "+plugin_data.c); - } - }); - $("table.plugins td.version span.unknown").addClass("icon-help").attr("title", "<%= escape_javascript l(:label_unknown_plugin) %>"); - }, - error: function(){ - $('#ajax-indicator').hide(); - alert("Unable to retrieve plugin informations from www.redmine.org"); - } - }); - }); -}); -<% end if @plugins.any? %> diff --git a/app/views/admin/projects.html.erb b/app/views/admin/projects.html.erb deleted file mode 100644 index aa46274..0000000 --- a/app/views/admin/projects.html.erb +++ /dev/null @@ -1,48 +0,0 @@ -
    -<%= link_to l(:label_project_new), new_project_path, :class => 'icon icon-add' %> -
    - -<%= title l(:label_project_plural) %> - -<%= form_tag({}, :method => :get) do %> -
    <%= l(:label_filter_plural) %> - -<%= select_tag 'status', project_status_options_for_select(@status), :class => "small", :onchange => "this.form.submit(); return false;" %> - -<%= text_field_tag 'name', params[:name], :size => 30 %> -<%= submit_tag l(:button_apply), :class => "small", :name => nil %> -<%= link_to l(:button_clear), admin_projects_path, :class => 'icon icon-reload' %> -
    -<% end %> -  - -<% if @projects.any? %> -
    - - - - - - - - -<% project_tree(@projects, :init_level => true) do |project, level| %> - "> - - - - - -<% end %> - -
    <%=l(:label_project)%><%=l(:field_is_public)%><%=l(:field_created_on)%>
    <%= link_to_project_settings(project, {}, :title => project.short_description) %><%= checked_image project.is_public? %><%= format_date(project.created_on) %> - <%= link_to(l(:button_archive), archive_project_path(project, :status => params[:status]), :data => {:confirm => l(:text_are_you_sure)}, :method => :post, :class => 'icon icon-lock') unless project.archived? %> - <%= link_to(l(:button_unarchive), unarchive_project_path(project, :status => params[:status]), :method => :post, :class => 'icon icon-unlock') if project.archived? %> - <%= link_to(l(:button_copy), copy_project_path(project), :class => 'icon icon-copy') %> - <%= link_to(l(:button_delete), project_path(project), :method => :delete, :class => 'icon icon-del') %> -
    -
    -<%= pagination_links_full @project_pages, @project_count %> -<% else %> -

    <%= l(:label_no_data) %>

    -<% end %> diff --git a/app/views/attachments/_form.html.erb b/app/views/attachments/_form.html.erb deleted file mode 100644 index 96c8c64..0000000 --- a/app/views/attachments/_form.html.erb +++ /dev/null @@ -1,47 +0,0 @@ -<% attachment_param ||= 'attachments' %> -<% saved_attachments ||= container.saved_attachments if defined?(container) && container %> -<% multiple = true unless defined?(multiple) && multiple == false %> -<% show_add = multiple || saved_attachments.blank? %> -<% description = (defined?(description) && description == false ? false : true) %> -<% css_class = (defined?(filedrop) && filedrop == false ? '' : 'filedrop') %> - - - - <% if saved_attachments.present? %> - <% saved_attachments.each_with_index do |attachment, i| %> - - <%= text_field_tag("#{attachment_param}[p#{i}][filename]", attachment.filename, :class => 'filename') %> - <% if attachment.container_id.present? %> - <%= link_to l(:label_delete), "#", :onclick => "$(this).closest('.attachments_form').find('.add_attachment').show(); $(this).parent().remove(); return false;", :class => 'icon-only icon-del' %> - <%= hidden_field_tag "#{attachment_param}[p#{i}][id]", attachment.id %> - <% else %> - <%= text_field_tag("#{attachment_param}[p#{i}][description]", attachment.description, :maxlength => 255, :placeholder => l(:label_optional_description), :class => 'description') if description %> - <%= link_to(' '.html_safe, attachment_path(attachment, :attachment_id => "p#{i}", :format => 'js'), :method => 'delete', :remote => true, :class => 'icon-only icon-del remove-upload') %> - <%= hidden_field_tag "#{attachment_param}[p#{i}][token]", attachment.token %> - <% end %> - - <% end %> - <% end %> - - - <%= file_field_tag "#{attachment_param}[dummy][file]", - :id => nil, - :class => "file_selector #{css_class}", - :multiple => multiple, - :onchange => 'addInputFiles(this);', - :data => { - :max_file_size => Setting.attachment_max_size.to_i.kilobytes, - :max_file_size_message => l(:error_attachment_too_big, :max_size => number_to_human_size(Setting.attachment_max_size.to_i.kilobytes)), - :max_concurrent_uploads => Redmine::Configuration['max_concurrent_ajax_uploads'].to_i, - :upload_path => uploads_path(:format => 'js'), - :param => attachment_param, - :description => description, - :description_placeholder => l(:label_optional_description) - } %> - (<%= l(:label_max_size) %>: <%= number_to_human_size(Setting.attachment_max_size.to_i.kilobytes) %>) - - - -<% content_for :header_tags do %> - <%= javascript_include_tag 'attachments' %> -<% end %> diff --git a/app/views/attachments/_links.html.erb b/app/views/attachments/_links.html.erb deleted file mode 100644 index 0a9f5e3..0000000 --- a/app/views/attachments/_links.html.erb +++ /dev/null @@ -1,45 +0,0 @@ -
    -
    - <%= link_to(l(:label_edit_attachments), - container_attachments_edit_path(container), - :title => l(:label_edit_attachments), - :class => 'icon-only icon-edit' - ) if options[:editable] %> -
    - -<% for attachment in attachments %> - - - - - - -<% end %> -
    - <%= link_to_attachment attachment, class: 'icon icon-attachment' -%> - (<%= number_to_human_size attachment.filesize %>) - <%= link_to_attachment attachment, class: 'icon-only icon-download', title: l(:button_download), download: true -%> - <%= attachment.description unless attachment.description.blank? %> - <% if options[:author] %> - <%= attachment.author %>, <%= format_time(attachment.created_on) %> - <% end %> - - <% if options[:deletable] %> - <%= link_to l(:button_delete), attachment_path(attachment), - :data => {:confirm => l(:text_are_you_sure)}, - :method => :delete, - :class => 'delete icon-only icon-del', - :title => l(:button_delete) %> - <% end %> -
    -<% if defined?(thumbnails) && thumbnails %> - <% images = attachments.select(&:thumbnailable?) %> - <% if images.any? %> -
    - <% images.each do |attachment| %> -
    <%= thumbnail_tag(attachment) %>
    - <% end %> -
    - <% end %> -<% end %> -
    diff --git a/app/views/attachments/destroy.js.erb b/app/views/attachments/destroy.js.erb deleted file mode 100644 index 29b9a0c..0000000 --- a/app/views/attachments/destroy.js.erb +++ /dev/null @@ -1,2 +0,0 @@ -$('#attachments_<%= j params[:attachment_id] %>').closest('.attachments_form').find('.add_attachment').show(); -$('#attachments_<%= j params[:attachment_id] %>').remove(); diff --git a/app/views/attachments/diff.html.erb b/app/views/attachments/diff.html.erb deleted file mode 100644 index 0bd802d..0000000 --- a/app/views/attachments/diff.html.erb +++ /dev/null @@ -1,10 +0,0 @@ -<%= render :layout => 'layouts/file' do %> - <%= form_tag({}, :method => 'get') do %> -

    - <%= l(:label_view_diff) %>: - - -

    - <% end %> - <%= render :partial => 'common/diff', :locals => {:diff => @diff, :diff_type => @diff_type, :diff_style => nil} %> -<% end %> diff --git a/app/views/attachments/edit_all.html.erb b/app/views/attachments/edit_all.html.erb deleted file mode 100644 index 47ecc6a..0000000 --- a/app/views/attachments/edit_all.html.erb +++ /dev/null @@ -1,32 +0,0 @@ -

    - <%= safe_join([link_to_attachment_container(@container), l(:label_edit_attachments)].compact, ' » ') %> -

    - -<%= error_messages_for *@attachments %> - -<%= form_tag(container_attachments_path(@container), :method => 'patch') do %> - <%= back_url_hidden_field_tag %> -
    - - <% @attachments.each do |attachment| %> - - - - - - - - <% end %> -
    - <%= attachment.filename_was %> - (<%= number_to_human_size attachment.filesize %>) - <%= attachment.author %>, <%= format_time(attachment.created_on) %> -
    <%= text_field_tag "attachments[#{attachment.id}][filename]", attachment.filename, :size => 40 %> - <%= text_field_tag "attachments[#{attachment.id}][description]", attachment.description, :size => 80, :placeholder => l(:label_optional_description) %> -
    -
    -

    - <%= submit_tag l(:button_save) %> - <%= link_to l(:button_cancel), back_url if back_url.present? %> -

    -<% end %> diff --git a/app/views/attachments/file.html.erb b/app/views/attachments/file.html.erb deleted file mode 100644 index e19b912..0000000 --- a/app/views/attachments/file.html.erb +++ /dev/null @@ -1,4 +0,0 @@ -<%= render :layout => 'layouts/file' do %> -   - <%= render_file_content(@attachment, @content) %> -<% end %> diff --git a/app/views/attachments/image.html.erb b/app/views/attachments/image.html.erb deleted file mode 100644 index b0d2258..0000000 --- a/app/views/attachments/image.html.erb +++ /dev/null @@ -1,3 +0,0 @@ -<%= render :layout => 'layouts/file' do %> - <%= render :partial => 'common/image', :locals => {:path => download_named_attachment_path(@attachment, @attachment.filename), :alt => @attachment.filename} %> -<% end %> diff --git a/app/views/attachments/other.html.erb b/app/views/attachments/other.html.erb deleted file mode 100644 index f0f732f..0000000 --- a/app/views/attachments/other.html.erb +++ /dev/null @@ -1,21 +0,0 @@ -<%= render :layout => 'layouts/file' do %> - - <% kind = if @attachment.is_video? - 'video' - elsif @attachment.is_audio? - 'audio' - end %> - - <%= render :partial => "common/other", - :locals => { - :kind => kind, - :path => download_named_attachment_url(@attachment, - @attachment.filename), - :download_link => link_to_attachment( - @attachment, - :text => l(:label_no_preview_download), - :download => true, - :class => 'icon icon-download' - ) - } %> -<% end %> diff --git a/app/views/attachments/show.api.rsb b/app/views/attachments/show.api.rsb deleted file mode 100644 index 5a9f74a..0000000 --- a/app/views/attachments/show.api.rsb +++ /dev/null @@ -1 +0,0 @@ -render_api_attachment(@attachment, api) diff --git a/app/views/attachments/upload.api.rsb b/app/views/attachments/upload.api.rsb deleted file mode 100644 index 6049b2e..0000000 --- a/app/views/attachments/upload.api.rsb +++ /dev/null @@ -1,4 +0,0 @@ -api.upload do - api.id @attachment.id - api.token @attachment.token -end diff --git a/app/views/attachments/upload.js.erb b/app/views/attachments/upload.js.erb deleted file mode 100644 index 6b804a6..0000000 --- a/app/views/attachments/upload.js.erb +++ /dev/null @@ -1,14 +0,0 @@ -var fileSpan = $('#attachments_<%= j params[:attachment_id] %>'); -<% if @attachment.new_record? %> - fileSpan.hide(); - alert("<%= escape_javascript @attachment.errors.full_messages.join(', ') %>"); -<% else %> -fileSpan.find('input.token').val('<%= j @attachment.token %>'); -fileSpan.find('a.remove-upload') - .attr({ - "data-remote": true, - "data-method": 'delete', - href: '<%= j attachment_path(@attachment, :attachment_id => params[:attachment_id], :format => 'js') %>' - }) - .off('click'); -<% end %> diff --git a/app/views/auth_sources/_form.html.erb b/app/views/auth_sources/_form.html.erb deleted file mode 100644 index 05c6ca9..0000000 --- a/app/views/auth_sources/_form.html.erb +++ /dev/null @@ -1,6 +0,0 @@ -<%= error_messages_for 'auth_source' %> - -
    -

    <%= f.text_field :name, :required => true %>

    -

    <%= f.check_box :onthefly_register, :label => :field_onthefly %>

    -
    diff --git a/app/views/auth_sources/_form_auth_source_ldap.html.erb b/app/views/auth_sources/_form_auth_source_ldap.html.erb deleted file mode 100644 index dc3f410..0000000 --- a/app/views/auth_sources/_form_auth_source_ldap.html.erb +++ /dev/null @@ -1,28 +0,0 @@ -<%= error_messages_for 'auth_source' %> - -
    -

    <%= f.text_field :name, :required => true %>

    -

    <%= f.text_field :host, :required => true %>

    -

    - <%= f.text_field :port, :required => true, :size => 6 %> - <%= f.select :ldap_mode, AuthSourceLdap::LDAP_MODES.map { |m| [l("label_#{m}"), m] }, :no_label => true %> - <%= l("label_ldaps_warning") %> -

    -

    <%= f.text_field :account %>

    -

    <%= f.password_field :account_password, :label => :field_password, - :name => 'dummy_password', - :value => ((@auth_source.new_record? || @auth_source.account_password.blank?) ? '' : ('x'*15)), - :onfocus => "this.value=''; this.name='auth_source[account_password]';", - :onchange => "this.name='auth_source[account_password]';" %>

    -

    <%= f.text_field :base_dn, :required => true, :size => 60 %>

    -

    <%= f.text_area :filter, :size => 60, :label => :field_auth_source_ldap_filter %>

    -

    <%= f.text_field :timeout, :size => 4 %>

    -

    <%= f.check_box :onthefly_register, :label => :field_onthefly %>

    -
    - -
    <%=l(:label_attribute_plural)%> -

    <%= f.text_field :attr_login, :required => true, :size => 20 %>

    -

    <%= f.text_field :attr_firstname, :size => 20 %>

    -

    <%= f.text_field :attr_lastname, :size => 20 %>

    -

    <%= f.text_field :attr_mail, :size => 20 %>

    -
    diff --git a/app/views/auth_sources/edit.html.erb b/app/views/auth_sources/edit.html.erb deleted file mode 100644 index 7f3d07e..0000000 --- a/app/views/auth_sources/edit.html.erb +++ /dev/null @@ -1,6 +0,0 @@ -<%= title [l(:label_auth_source_plural), auth_sources_path], @auth_source.name %> - -<%= labelled_form_for @auth_source, :as => :auth_source, :url => auth_source_path(@auth_source), :html => {:id => 'auth_source_form'} do |f| %> - <%= render :partial => auth_source_partial_name(@auth_source), :locals => { :f => f } %> - <%= submit_tag l(:button_save) %> -<% end %> diff --git a/app/views/auth_sources/index.html.erb b/app/views/auth_sources/index.html.erb deleted file mode 100644 index 7a0ffa5..0000000 --- a/app/views/auth_sources/index.html.erb +++ /dev/null @@ -1,31 +0,0 @@ -
    -<%= link_to l(:label_auth_source_new), {:action => 'new'}, :class => 'icon icon-add' %> -
    - -<%= title l(:label_auth_source_plural) %> - - - - - - - - - - -<% for source in @auth_sources %> - - - - - - - -<% end %> - -
    <%=l(:field_name)%><%=l(:field_type)%><%=l(:field_host)%><%=l(:label_user_plural)%>
    <%= link_to(source.name, :action => 'edit', :id => source)%><%= source.auth_method_name %><%= source.host %><%= source.users.count %> - <%= link_to l(:button_test), try_connection_auth_source_path(source), :class => 'icon icon-test' %> - <%= delete_link auth_source_path(source) %> -
    - -<%= pagination_links_full @auth_source_pages %> diff --git a/app/views/auth_sources/new.html.erb b/app/views/auth_sources/new.html.erb deleted file mode 100644 index e9307fa..0000000 --- a/app/views/auth_sources/new.html.erb +++ /dev/null @@ -1,7 +0,0 @@ -<%= title [l(:label_auth_source_plural), auth_sources_path], "#{l(:label_auth_source_new)} (#{@auth_source.auth_method_name})" %> - -<%= labelled_form_for @auth_source, :as => :auth_source, :url => auth_sources_path, :html => {:id => 'auth_source_form'} do |f| %> - <%= hidden_field_tag 'type', @auth_source.type %> - <%= render :partial => auth_source_partial_name(@auth_source), :locals => { :f => f } %> - <%= submit_tag l(:button_create) %> -<% end %> diff --git a/app/views/boards/_form.html.erb b/app/views/boards/_form.html.erb deleted file mode 100644 index daaecee..0000000 --- a/app/views/boards/_form.html.erb +++ /dev/null @@ -1,9 +0,0 @@ -<%= error_messages_for @board %> - -
    -

    <%= f.text_field :name, :required => true %>

    -

    <%= f.text_field :description, :required => true, :size => 80 %>

    -<% if @board.valid_parents.any? %> -

    <%= f.select :parent_id, boards_options_for_select(@board.valid_parents), :include_blank => true, :label => :field_board_parent %>

    -<% end %> -
    diff --git a/app/views/boards/edit.html.erb b/app/views/boards/edit.html.erb deleted file mode 100644 index e57509e..0000000 --- a/app/views/boards/edit.html.erb +++ /dev/null @@ -1,6 +0,0 @@ -

    <%= l(:label_board) %>

    - -<%= labelled_form_for @board, :url => project_board_path(@project, @board) do |f| %> - <%= render :partial => 'form', :locals => {:f => f} %> - <%= submit_tag l(:button_save) %> -<% end %> diff --git a/app/views/boards/index.html.erb b/app/views/boards/index.html.erb deleted file mode 100644 index 89df7aa..0000000 --- a/app/views/boards/index.html.erb +++ /dev/null @@ -1,44 +0,0 @@ -
    - <%= link_to_if_authorized l(:label_settings), - {:controller => 'projects', :action => 'settings', :id => @project, :tab => 'boards'}, - :class => 'icon icon-settings' if User.current.allowed_to?(:manage_boards, @project) %> -
    - -

    <%= l(:label_board_plural) %>

    - - - - - - - - - -<% Board.board_tree(@boards) do |board, level| %> - - - - - - -<% end %> - -
    <%= l(:label_board) %><%= l(:label_topic_plural) %><%= l(:label_message_plural) %><%= l(:label_message_last) %>
    - <%= link_to board.name, project_board_path(board.project, board), :class => "board" %>
    - <%=h board.description %> -
    <%= board.topics_count %><%= board.messages_count %> - <% if board.last_message %> - <%= authoring board.last_message.created_on, board.last_message.author %>
    - <%= link_to_message board.last_message %> - <% end %> -
    - -<% other_formats_links do |f| %> - <%= f.link_to 'Atom', :url => {:controller => 'activities', :action => 'index', :id => @project, :show_messages => 1, :key => User.current.rss_key} %> -<% end %> - -<% content_for :header_tags do %> - <%= auto_discovery_link_tag(:atom, {:controller => 'activities', :action => 'index', :id => @project, :format => 'atom', :show_messages => 1, :key => User.current.rss_key}) %> -<% end %> - -<% html_title l(:label_board_plural) %> diff --git a/app/views/boards/new.html.erb b/app/views/boards/new.html.erb deleted file mode 100644 index acdf43f..0000000 --- a/app/views/boards/new.html.erb +++ /dev/null @@ -1,6 +0,0 @@ -

    <%= l(:label_board_new) %>

    - -<%= labelled_form_for @board, :url => project_boards_path(@project) do |f| %> - <%= render :partial => 'form', :locals => {:f => f} %> - <%= submit_tag l(:button_create) %> -<% end %> diff --git a/app/views/boards/show.html.erb b/app/views/boards/show.html.erb deleted file mode 100644 index b80ff03..0000000 --- a/app/views/boards/show.html.erb +++ /dev/null @@ -1,67 +0,0 @@ -<%= board_breadcrumb(@board) %> - -
    -<%= link_to l(:label_message_new), - new_board_message_path(@board), - :class => 'icon icon-add', - :onclick => 'showAndScrollTo("add-message", "message_subject"); return false;' if User.current.allowed_to?(:add_messages, @board.project) %> -<%= watcher_link(@board, User.current) %> -<%= link_to_if_authorized l(:label_settings), - {:controller => 'projects', :action => 'settings', :id => @project, :tab => 'boards'}, - :class => 'icon icon-settings' if User.current.allowed_to?(:manage_boards, @project) %> - -
    - - - -

    <%= @board.name %>

    -

    <%= @board.description %>

    - -<% if @topics.any? %> - - - - - <%= sort_header_tag('created_on', :caption => l(:field_created_on)) %> - <%= sort_header_tag('replies', :caption => l(:label_reply_plural)) %> - <%= sort_header_tag('updated_on', :caption => l(:label_message_last)) %> - - - <% @topics.each do |topic| %> - - - - - - - - <% end %> - -
    <%= l(:field_subject) %><%= l(:field_author) %>
    <%= link_to topic.subject, board_message_path(@board, topic) %><%= link_to_user(topic.author) %><%= format_time(topic.created_on) %><%= topic.replies_count %> - <% if topic.last_reply %> - <%= authoring topic.last_reply.created_on, topic.last_reply.author %>
    - <%= link_to_message topic.last_reply %> - <% end %> -
    -<%= pagination_links_full @topic_pages, @topic_count %> -<% else %> -

    <%= l(:label_no_data) %>

    -<% end %> - -<% other_formats_links do |f| %> - <%= f.link_to 'Atom', :url => {:key => User.current.rss_key} %> -<% end %> - -<% html_title @board.name %> -<% content_for :header_tags do %> - <%= auto_discovery_link_tag(:atom, {:format => 'atom', :key => User.current.rss_key}, :title => "#{@project}: #{@board}") %> -<% end %> diff --git a/app/views/calendars/show.html.erb b/app/views/calendars/show.html.erb deleted file mode 100644 index 9874ac1..0000000 --- a/app/views/calendars/show.html.erb +++ /dev/null @@ -1,50 +0,0 @@ -

    <%= @query.new_record? ? l(:label_calendar) : @query.name %>

    - -<%= form_tag({:controller => 'calendars', :action => 'show', :project_id => @project}, - :method => :get, :id => 'query_form') do %> -<%= hidden_field_tag 'set_filter', '1' %> - -
    -
    -
    "> - "><%= l(:label_filter_plural) %> -
    "> - <%= render :partial => 'queries/filters', :locals => {:query => @query} %> -
    -
    -
    - -

    - <%= link_to_previous_month(@year, @month, :accesskey => accesskey(:previous)) %> | <%= link_to_next_month(@year, @month, :accesskey => accesskey(:next)) %> -

    - -

    - <%= label_tag('month', l(:label_month)) %> - <%= select_month(@month, :prefix => "month", :discard_type => true) %> - <%= label_tag('year', l(:label_year)) %> - <%= select_year(@year, :prefix => "year", :discard_type => true) %> - - <%= link_to_function l(:button_apply), '$("#query_form").submit()', :class => 'icon icon-checked' %> - <%= link_to l(:button_clear), { :project_id => @project, :set_filter => 1 }, :class => 'icon icon-reload' %> -

    -
    -<% end %> - -<%= error_messages_for 'query' %> -<% if @query.valid? %> -<%= render :partial => 'common/calendar', :locals => {:calendar => @calendar} %> - -<%= call_hook(:view_calendars_show_bottom, :year => @year, :month => @month, :project => @project, :query => @query) %> - -

    - <%= l(:text_tip_issue_begin_day) %> - <%= l(:text_tip_issue_end_day) %> - <%= l(:text_tip_issue_begin_end_day) %> -

    -<% end %> - -<% content_for :sidebar do %> - <%= render :partial => 'issues/sidebar' %> -<% end %> - -<% html_title(l(:label_calendar)) -%> diff --git a/app/views/common/_calendar.html.erb b/app/views/common/_calendar.html.erb deleted file mode 100644 index 0236a96..0000000 --- a/app/views/common/_calendar.html.erb +++ /dev/null @@ -1,37 +0,0 @@ -<%= form_tag({}, :data => {:cm_url => issues_context_menu_path}) do -%> -<%= hidden_field_tag 'back_url', url_for(:params => request.query_parameters), :id => nil %> - - -<% 7.times do |i| %><% end %> - - - -<% day = calendar.startdt -while day <= calendar.enddt %> -<%= ("".html_safe) if day.cwday == calendar.first_wday %> - -<%= ''.html_safe if day.cwday==calendar.last_wday and day!=calendar.enddt %> -<% day = day + 1 -end %> - - -
    <%= day_name( (calendar.first_wday+i)%7 ) %>
    #{(day+(11-day.cwday)%7).cweek} -

    <%= day.day %>

    -<% calendar.events_on(day).each do |i| %> - <% if i.is_a? Issue %> -
    - <%= "#{i.project} -" unless @project && @project == i.project %> - <%= link_to_issue i, :truncate => 30 %> - <%= render_issue_tooltip i %> - <%= check_box_tag 'ids[]', i.id, false, :style => 'display:none;', :id => nil %> -
    - <% else %> - - <%= "#{i.project} -" unless @project && @project == i.project %> - <%= link_to_version i%> - - <% end %> -<% end %> -
    -<% end %> -<%= context_menu %> diff --git a/app/views/common/_diff.html.erb b/app/views/common/_diff.html.erb deleted file mode 100644 index 35dfdea..0000000 --- a/app/views/common/_diff.html.erb +++ /dev/null @@ -1,74 +0,0 @@ -<% diff = Redmine::UnifiedDiff.new( - diff, :type => diff_type, - :max_lines => Setting.diff_max_lines_displayed.to_i, - :style => diff_style) -%> - -<% diff.each do |table_file| -%> -
    -<% if diff.diff_type == 'sbs' -%> - - - - - - - -<% table_file.each_line do |spacing, line| -%> -<% if spacing -%> - - - -<% end -%> - - - - - - -<% end -%> - -
    - <% if table_file.previous_file_name %> - <%= table_file.previous_file_name %> → - <% end %> - <%= table_file.file_name %> -
    ......
    <%= line.nb_line_left %> -
    <%= line.html_line_left.html_safe %>
    -
    <%= line.nb_line_right %> -
    <%= line.html_line_right.html_safe %>
    -
    - -<% else -%> - - - - - - - -<% table_file.each_line do |spacing, line| %> -<% if spacing -%> - - - -<% end -%> - - - - - -<% end -%> - -
    - <% if table_file.previous_file_name %> - <%= table_file.previous_file_name %> → - <% end %> - <%= table_file.file_name %> -
    ......
    <%= line.nb_line_left %><%= line.nb_line_right %> -
    <%= line.html_line.html_safe %>
    -
    -<% end -%> -
    -<% end -%> - -<%= l(:text_diff_truncated) if diff.truncated? %> diff --git a/app/views/common/_file.html.erb b/app/views/common/_file.html.erb deleted file mode 100644 index 95e0fb9..0000000 --- a/app/views/common/_file.html.erb +++ /dev/null @@ -1,18 +0,0 @@ -
    - - -<% line_num = 1 %> -<% syntax_highlight_lines(filename, Redmine::CodesetUtil.to_utf8_by_setting(content)).each do |line| %> - - - - - <% line_num += 1 %> -<% end %> - -
    - <%= line_num %> - -
    <%= line.html_safe %>
    -
    -
    diff --git a/app/views/common/_image.html.erb b/app/views/common/_image.html.erb deleted file mode 100644 index ab73a23..0000000 --- a/app/views/common/_image.html.erb +++ /dev/null @@ -1 +0,0 @@ -<%= image_tag path, :alt => alt, :class => 'filecontent image' %> diff --git a/app/views/common/_markup.html.erb b/app/views/common/_markup.html.erb deleted file mode 100644 index 14786a8..0000000 --- a/app/views/common/_markup.html.erb +++ /dev/null @@ -1,3 +0,0 @@ -
    - <%= Redmine::WikiFormatting.to_html(markup_text_formatting, Redmine::CodesetUtil.to_utf8_by_setting(markup_text)).html_safe %> -
    diff --git a/app/views/common/_no_preview.html.erb b/app/views/common/_no_preview.html.erb deleted file mode 100644 index 3eb9a95..0000000 --- a/app/views/common/_no_preview.html.erb +++ /dev/null @@ -1,8 +0,0 @@ -

    - <% if download_link %> - <%= t(:label_no_preview_alternative_html, link: download_link) %> - <% else %> - <%= l(:label_no_preview) %> - <% end %> -

    - diff --git a/app/views/common/_other.html.erb b/app/views/common/_other.html.erb deleted file mode 100644 index bb72ec3..0000000 --- a/app/views/common/_other.html.erb +++ /dev/null @@ -1,23 +0,0 @@ -<% download_link = nil unless defined? download_link %> -<% kind = nil unless defined? kind %> -<% path = nil unless defined? path %> - -<% if path.present? %> - - <% if kind == 'video' %> - <%= content_tag :video, class: 'filecontent', src: path, controls: true do %> - <%= render partial: 'common/no_preview', locals: { download_link: download_link } %> - <% end %> - <% elsif kind == 'audio' %> - <%= content_tag :audio, class: 'filecontent', src: path, controls: true do %> - <%= render partial: 'common/no_preview', locals: { download_link: download_link } %> - <% end %> - <% else %> - <%= render partial: 'common/no_preview', locals: { download_link: download_link } %> - <% end %> - -<% else %> - - <%= render partial: 'common/no_preview', locals: { download_link: download_link } %> - -<% end %> diff --git a/app/views/common/_preview.html.erb b/app/views/common/_preview.html.erb deleted file mode 100644 index 472b0eb..0000000 --- a/app/views/common/_preview.html.erb +++ /dev/null @@ -1,5 +0,0 @@ -<% unless @text.blank? %> - <%= textilizable @text, :attachments => @attachments, :object => @previewed %> -<% else %> -

    <%= l(:label_nothing_to_preview) %>

    -<% end %> \ No newline at end of file diff --git a/app/views/common/_tabs.html.erb b/app/views/common/_tabs.html.erb deleted file mode 100644 index def21ff..0000000 --- a/app/views/common/_tabs.html.erb +++ /dev/null @@ -1,27 +0,0 @@ -<% default_action = false %> - -
    -
      - <% tabs.each do |tab| -%> - <% action = get_tab_action(tab) %> -
    • <%= link_to l(tab[:label]), (tab[:url] || { :tab => tab[:name] }), - :id => "tab-#{tab[:name]}", - :class => (tab[:name] != selected_tab ? nil : 'selected'), - :onclick => (action.nil? ? nil : "#{ action }; return false;") %>
    • - <% default_action = action if tab[:name] == selected_tab %> - <% end -%> -
    - -
    - -<% tabs.each do |tab| -%> - <%= content_tag('div', (render(:partial => tab[:partial], :locals => {:tab => tab}) if tab[:partial]) , - :id => "tab-content-#{tab[:name]}", - :style => (tab[:name] != selected_tab ? 'display:none' : nil), - :class => 'tab-content') if tab[:partial] || tab[:remote] %> -<% end -%> - -<%= javascript_tag default_action if default_action %> diff --git a/app/views/common/error.html.erb b/app/views/common/error.html.erb deleted file mode 100644 index 04b4b03..0000000 --- a/app/views/common/error.html.erb +++ /dev/null @@ -1,13 +0,0 @@ -

    <%= @status %>

    - -<% if @message.present? %> -

    <%= @message %>

    -<% end %> - -<% if @archived_project && User.current.admin? %> -

    <%= link_to l(:button_unarchive), unarchive_project_path(@archived_project), :method => :post, :class => 'icon icon-unlock' %>

    -<% end %> - -

    <%= l(:button_back) %>

    - -<% html_title @status %> diff --git a/app/views/common/error_messages.api.rsb b/app/views/common/error_messages.api.rsb deleted file mode 100644 index 811d2a8..0000000 --- a/app/views/common/error_messages.api.rsb +++ /dev/null @@ -1,5 +0,0 @@ -api.array :errors do - @error_messages.each do |message| - api.error message - end -end diff --git a/app/views/common/feed.atom.builder b/app/views/common/feed.atom.builder deleted file mode 100644 index 804ecfd..0000000 --- a/app/views/common/feed.atom.builder +++ /dev/null @@ -1,34 +0,0 @@ -# frozen_string_literal: true - -xml.instruct! -xml.feed "xmlns" => "http://www.w3.org/2005/Atom" do - xml.title truncate_single_line_raw(@title, 100) - xml.link "rel" => "self", "href" => url_for(:params => request.query_parameters, :only_path => false, :format => 'atom') - xml.link "rel" => "alternate", "href" => url_for(:params => request.query_parameters.merge(:format => nil, :key => nil), :only_path => false) - xml.id home_url - xml.icon favicon_url - xml.updated((@items.first ? @items.first.event_datetime : Time.now).xmlschema) - xml.author { xml.name "#{Setting.app_title}" } - xml.generator(:uri => Redmine::Info.url) { xml.text! Redmine::Info.app_name; } - @items.each do |item| - xml.entry do - url = url_for(item.event_url(:only_path => false)) - if @project - xml.title truncate_single_line_raw(item.event_title, 100) - else - xml.title truncate_single_line_raw("#{item.project} - #{item.event_title}", 100) - end - xml.link "rel" => "alternate", "href" => url - xml.id url - xml.updated item.event_datetime.xmlschema - author = item.event_author if item.respond_to?(:event_author) - xml.author do - xml.name(author) - xml.email(author.mail) if author.is_a?(User) && !author.mail.blank? && !author.pref.hide_mail - end if author - xml.content "type" => "html" do - xml.text! textilizable(item, :event_description, :only_path => false) - end - end - end -end diff --git a/app/views/context_menus/issues.html.erb b/app/views/context_menus/issues.html.erb deleted file mode 100644 index f957783..0000000 --- a/app/views/context_menus/issues.html.erb +++ /dev/null @@ -1,156 +0,0 @@ -
      - <%= call_hook(:view_issues_context_menu_start, {:issues => @issues, :can => @can, :back => @back }) %> - - <% if @issue -%> -
    • <%= context_menu_link l(:button_edit), edit_issue_path(@issue), - :class => 'icon icon-edit', :disabled => !@can[:edit] %>
    • - <% else %> -
    • <%= context_menu_link l(:button_edit), bulk_edit_issues_path(:ids => @issue_ids), - :class => 'icon icon-edit', :disabled => !@can[:edit] %>
    • - <% end %> - - <% if @allowed_statuses.present? %> -
    • - <%= l(:field_status) %> -
        - <% @allowed_statuses.each do |s| -%> -
      • <%= context_menu_link s.name, bulk_update_issues_path(:ids => @issue_ids, :issue => {:status_id => s}, :back_url => @back), :method => :post, - :selected => (@issue && s == @issue.status), :disabled => !@can[:edit] %>
      • - <% end -%> -
      -
    • - <% end %> - - <% if @trackers.present? %> -
    • - <%= l(:field_tracker) %> -
        - <% @trackers.each do |t| -%> -
      • <%= context_menu_link t.name, bulk_update_issues_path(:ids => @issue_ids, :issue => {'tracker_id' => t}, :back_url => @back), :method => :post, - :selected => (@issue && t == @issue.tracker), :disabled => !@can[:edit] %>
      • - <% end -%> -
      -
    • - <% end %> - - <% if @safe_attributes.include?('priority_id') && @priorities.present? -%> -
    • - <%= l(:field_priority) %> -
        - <% @priorities.each do |p| -%> -
      • <%= context_menu_link p.name, bulk_update_issues_path(:ids => @issue_ids, :issue => {'priority_id' => p}, :back_url => @back), :method => :post, - :selected => (@issue && p == @issue.priority), :disabled => (!@can[:edit] || @issues.any?(&:priority_derived?)) %>
      • - <% end -%> -
      -
    • - <% end %> - - <% if @safe_attributes.include?('fixed_version_id') && @versions.present? -%> -
    • - <%= l(:field_fixed_version) %> -
        - <% @versions.sort.each do |v| -%> -
      • <%= context_menu_link format_version_name(v), bulk_update_issues_path(:ids => @issue_ids, :issue => {'fixed_version_id' => v}, :back_url => @back), :method => :post, - :selected => (@issue && v == @issue.fixed_version), :disabled => !@can[:edit] %>
      • - <% end -%> -
      • <%= context_menu_link l(:label_none), bulk_update_issues_path(:ids => @issue_ids, :issue => {'fixed_version_id' => 'none'}, :back_url => @back), :method => :post, - :selected => (@issue && @issue.fixed_version.nil?), :disabled => !@can[:edit] %>
      • -
      -
    • - <% end %> - - <% if @safe_attributes.include?('assigned_to_id') && @assignables.present? -%> -
    • - <%= l(:field_assigned_to) %> -
        - <% if @assignables.include?(User.current) %> -
      • <%= context_menu_link "<< #{l(:label_me)} >>", bulk_update_issues_path(:ids => @issue_ids, :issue => {'assigned_to_id' => User.current}, :back_url => @back), :method => :post, - :disabled => !@can[:edit] %>
      • - <% end %> - <% @assignables.each do |u| -%> -
      • <%= context_menu_link u.name, bulk_update_issues_path(:ids => @issue_ids, :issue => {'assigned_to_id' => u}, :back_url => @back), :method => :post, - :selected => (@issue && u == @issue.assigned_to), :disabled => !@can[:edit] %>
      • - <% end -%> -
      • <%= context_menu_link l(:label_nobody), bulk_update_issues_path(:ids => @issue_ids, :issue => {'assigned_to_id' => 'none'}, :back_url => @back), :method => :post, - :selected => (@issue && @issue.assigned_to.nil?), :disabled => !@can[:edit] %>
      • -
      -
    • - <% end %> - - <% if @safe_attributes.include?('category_id') && @project && @project.issue_categories.any? -%> -
    • - <%= l(:field_category) %> -
        - <% @project.issue_categories.each do |u| -%> -
      • <%= context_menu_link u.name, bulk_update_issues_path(:ids => @issue_ids, :issue => {'category_id' => u}, :back_url => @back), :method => :post, - :selected => (@issue && u == @issue.category), :disabled => !@can[:edit] %>
      • - <% end -%> -
      • <%= context_menu_link l(:label_none), bulk_update_issues_path(:ids => @issue_ids, :issue => {'category_id' => 'none'}, :back_url => @back), :method => :post, - :selected => (@issue && @issue.category.nil?), :disabled => !@can[:edit] %>
      • -
      -
    • - <% end -%> - - <% if @safe_attributes.include?('done_ratio') && Issue.use_field_for_done_ratio? %> -
    • - <%= l(:field_done_ratio) %> -
        - <% (0..10).map{|x|x*10}.each do |p| -%> -
      • <%= context_menu_link "#{p}%", bulk_update_issues_path(:ids => @issue_ids, :issue => {'done_ratio' => p}, :back_url => @back), :method => :post, - :selected => (@issue && p == @issue.done_ratio), :disabled => (!@can[:edit] || @issues.any?(&:done_ratio_derived?)) %>
      • - <% end -%> -
      -
    • - <% end %> - - <% @options_by_custom_field.each do |field, options| %> -
    • - <%= field.name %> -
        - <% options.each do |text, value| %> -
      • <%= bulk_update_custom_field_context_menu_link(field, text, value || text) %>
      • - <% end %> - <% unless field.is_required? %> -
      • <%= bulk_update_custom_field_context_menu_link(field, l(:label_none), '__none__') %>
      • - <% end %> -
      -
    • - <% end %> - -<% if @can[:add_watchers] %> -
    • - <%= l(:label_issue_watchers) %> -
        -
      • <%= context_menu_link l(:button_add), - new_watchers_path(:object_type => 'issue', :object_id => @issue_ids), - :remote => true, - :class => 'icon icon-add' %>
      • -
      -
    • -<% end %> - -<% if User.current.logged? %> -
    • <%= watcher_link(@issues, User.current) %>
    • -<% end %> - -<% unless @issue %> -
    • <%= context_menu_link l(:button_filter), _project_issues_path(@project, :set_filter => 1, :status_id => "*", :issue_id => @issue_ids.join(","), :c => @columns), - :class => 'icon icon-list' %>
    • -<% end %> - -<% if @issue.present? %> - <% if @can[:log_time] -%> -
    • <%= context_menu_link l(:button_log_time), new_issue_time_entry_path(@issue), - :class => 'icon icon-time-add' %>
    • - <% end %> -
    • <%= context_menu_link l(:button_copy), project_copy_issue_path(@project, @issue), - :class => 'icon icon-copy', :disabled => !@can[:copy] %>
    • -<% else %> -
    • <%= context_menu_link l(:button_copy), bulk_edit_issues_path(:ids => @issue_ids, :copy => '1'), - :class => 'icon icon-copy', :disabled => !@can[:copy] %>
    • -<% end %> -
    • <%= context_menu_link l(:button_delete), issues_path(:ids => @issue_ids, :back_url => @back), - :method => :delete, :data => {:confirm => issues_destroy_confirmation_message(@issues)}, :class => 'icon icon-del', :disabled => !@can[:delete] %>
    • - - <%= call_hook(:view_issues_context_menu_end, {:issues => @issues, :can => @can, :back => @back }) %> -
    diff --git a/app/views/context_menus/time_entries.html.erb b/app/views/context_menus/time_entries.html.erb deleted file mode 100644 index 0f40706..0000000 --- a/app/views/context_menus/time_entries.html.erb +++ /dev/null @@ -1,45 +0,0 @@ -
      - <% if !@time_entry.nil? -%> -
    • <%= context_menu_link l(:button_edit), {:controller => 'timelog', :action => 'edit', :id => @time_entry}, - :class => 'icon icon-edit', :disabled => !@can[:edit] %>
    • - <% else %> -
    • <%= context_menu_link l(:button_edit), {:controller => 'timelog', :action => 'bulk_edit', :ids => @time_entries.collect(&:id)}, - :class => 'icon icon-edit', :disabled => !@can[:edit] %>
    • - <% end %> - - <%= call_hook(:view_time_entries_context_menu_start, {:time_entries => @time_entries, :can => @can, :back => @back }) %> - - <% if @activities.present? -%> -
    • - <%= l(:field_activity) %> -
        - <% @activities.each do |u| -%> -
      • <%= context_menu_link u.name, {:controller => 'timelog', :action => 'bulk_update', :ids => @time_entries.collect(&:id), :time_entry => {'activity_id' => u}, :back_url => @back}, :method => :post, - :selected => (@time_entry && u == @time_entry.activity), :disabled => !@can[:edit] %>
      • - <% end -%> -
      -
    • - <% end %> - - <% @options_by_custom_field.each do |field, options| %> -
    • - <%= field.name %> -
        - <% options.each do |text, value| %> -
      • <%= bulk_update_time_entry_custom_field_context_menu_link(field, text, value || text) %>
      • - <% end %> - <% unless field.is_required? %> -
      • <%= bulk_update_time_entry_custom_field_context_menu_link(field, l(:label_none), '__none__') %>
      • - <% end %> -
      -
    • - <% end %> - - <%= call_hook(:view_time_entries_context_menu_end, {:time_entries => @time_entries, :can => @can, :back => @back }) %> - -
    • - <%= context_menu_link l(:button_delete), - {:controller => 'timelog', :action => 'destroy', :ids => @time_entries.collect(&:id), :back_url => @back}, - :method => :delete, :data => {:confirm => l(:text_time_entries_destroy_confirmation)}, :class => 'icon icon-del', :disabled => !@can[:delete] %> -
    • -
    diff --git a/app/views/custom_field_enumerations/create.js.erb b/app/views/custom_field_enumerations/create.js.erb deleted file mode 100644 index 9a9d404..0000000 --- a/app/views/custom_field_enumerations/create.js.erb +++ /dev/null @@ -1,2 +0,0 @@ -$('#content').html('<%= escape_javascript(render(:template => 'custom_field_enumerations/index')) %>'); -$('#custom_field_enumeration_name').focus(); diff --git a/app/views/custom_field_enumerations/destroy.html.erb b/app/views/custom_field_enumerations/destroy.html.erb deleted file mode 100644 index d2ae2ed..0000000 --- a/app/views/custom_field_enumerations/destroy.html.erb +++ /dev/null @@ -1,14 +0,0 @@ -<%= title [l(:label_custom_field_plural), custom_fields_path], - [l(@custom_field.type_name), custom_fields_path(:tab => @custom_field.class.name)], - @custom_field.name %> - -<%= form_tag(custom_field_enumeration_path(@custom_field, @value), :method => :delete) do %> -
    -

    <%= l(:text_enumeration_destroy_question, :name => @value.name, :count => @value.objects_count) %>

    -

    -<%= select_tag('reassign_to_id', content_tag('option', "--- #{l(:actionview_instancetag_blank_option)} ---", :value => '') + options_from_collection_for_select(@enumerations, 'id', 'name')) %>

    -
    - -<%= submit_tag l(:button_apply) %> -<%= link_to l(:button_cancel), custom_field_enumerations_path(@custom_field) %> -<% end %> diff --git a/app/views/custom_field_enumerations/index.html.erb b/app/views/custom_field_enumerations/index.html.erb deleted file mode 100644 index 66a0977..0000000 --- a/app/views/custom_field_enumerations/index.html.erb +++ /dev/null @@ -1,47 +0,0 @@ -<%= custom_field_title @custom_field %> - -<% if @custom_field.enumerations.any? %> -<%= form_tag custom_field_enumerations_path(@custom_field), :method => 'put' do %> -
    -
      - <% @custom_field.enumerations.each_with_index do |value, position| %> -
    • - - <%= hidden_field_tag "custom_field_enumerations[#{value.id}][position]", position, :class => 'position' %> - <%= text_field_tag "custom_field_enumerations[#{value.id}][name]", value.name, :size => 40 %> - <%= hidden_field_tag "custom_field_enumerations[#{value.id}][active]", 0 %> - - <%= delete_link custom_field_enumeration_path(@custom_field, value) %> -
    • - <% end %> -
    -
    -

    - <%= submit_tag(l(:button_save)) %> | - <%= link_to l(:button_back), edit_custom_field_path(@custom_field) %> -

    -<% end %> -<% end %> - -

    <%= l(:label_enumeration_new) %>

    - -<%= form_tag custom_field_enumerations_path(@custom_field), :method => 'post', :remote => true do %> -

    <%= text_field_tag 'custom_field_enumeration[name]', '', :size => 40 %> - <%= submit_tag(l(:button_add)) %>

    -<% end %> - -<%= javascript_tag do %> -$(function() { - $("#custom_field_enumerations").sortable({ - handle: ".sort-handle", - update: function(event, ui) { - $("#custom_field_enumerations li").each(function(){ - $(this).find("input.position").val($(this).index()+1); - }); - } - }); -}); -<% end %> diff --git a/app/views/custom_fields/_form.html.erb b/app/views/custom_fields/_form.html.erb deleted file mode 100644 index a7af54a..0000000 --- a/app/views/custom_fields/_form.html.erb +++ /dev/null @@ -1,68 +0,0 @@ -<%= error_messages_for 'custom_field' %> - -
    -
    -
    -

    <%= f.select :field_format, custom_field_formats_for_select(@custom_field), {}, :disabled => !@custom_field.new_record? %>

    -

    <%= f.text_field :name, :size => 50, :required => true %>

    -

    <%= f.text_area :description, :rows => 7 %>

    - -<% if @custom_field.format.multiple_supported %> -

    - <%= f.check_box :multiple %> - <% if !@custom_field.new_record? && @custom_field.multiple %> - <%= l(:text_turning_multiple_off) %> - <% end %> -

    -<% end %> - -<%= render_custom_field_format_partial f, @custom_field %> - -<%= call_hook(:view_custom_fields_form_upper_box, :custom_field => @custom_field, :form => f) %> -
    -

    - <% if @custom_field.new_record? %> - <%= submit_tag l(:button_create) %> - <%= submit_tag l(:button_create_and_continue), :name => 'continue' %> - <% else %> - <%= submit_tag l(:button_save) %> - <% end %> -

    -
    - -
    -
    -

    <%= f.check_box :is_required %>

    - - <% if %w(UserCustomField).include?(@custom_field.class.name) %> -

    <%= f.check_box :visible %>

    - <% end %> - - <% if @custom_field.is_a?(UserCustomField) %> -

    <%= f.check_box :editable %>

    - <% end %> - - <% if %w(IssueCustomField UserCustomField ProjectCustomField VersionCustomField GroupCustomField TimeEntryCustomField).include?(@custom_field.class.name) && - @custom_field.format.is_filter_supported %> -

    <%= f.check_box :is_filter %>

    - <% end %> - - <% if %w(IssueCustomField ProjectCustomField).include?(@custom_field.class.name) && @custom_field.format.searchable_supported %> -

    <%= f.check_box :searchable %>

    - <% end %> - <%= call_hook(:"view_custom_fields_form_#{@custom_field.type.to_s.underscore}", :custom_field => @custom_field, :form => f) %> -
    - - <% if %w(IssueCustomField TimeEntryCustomField ProjectCustomField VersionCustomField).include?(@custom_field.class.name) %> - <%= render :partial => 'visibility_by_role_selector', :locals => { :f => f } %> - <% end %> - - <% if @custom_field.is_a?(IssueCustomField) %> - <%= render :partial => 'visibility_by_tracker_selector', :locals => { :f => f } %> - - <%= render :partial => 'visibility_by_project_selector', :locals => { :f => f } %> - <% end %> -
    -
    - -<% include_calendar_headers_tags %> diff --git a/app/views/custom_fields/_index.html.erb b/app/views/custom_fields/_index.html.erb deleted file mode 100644 index 04d4aa2..0000000 --- a/app/views/custom_fields/_index.html.erb +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - <% if tab[:name] == 'IssueCustomField' %> - - - <% end %> - - - - <% (@custom_fields_by_type[tab[:name]] || []).sort.each do |custom_field| -%> - <% back_url = custom_fields_path(:tab => tab[:name]) %> - - - - - <% if tab[:name] == 'IssueCustomField' %> - - - <% end %> - - - <% end %> - -
    <%=l(:field_name)%><%=l(:field_field_format)%><%=l(:field_is_required)%><%=l(:field_is_for_all)%><%=l(:label_used_by)%>
    <%= link_to custom_field.name, edit_custom_field_path(custom_field) %><%= l(custom_field.format.label) %><%= checked_image custom_field.is_required? %><%= checked_image custom_field.is_for_all? %><%= l(:label_x_projects, :count => @custom_fields_projects_count[custom_field.id] || 0) if custom_field.is_a? IssueCustomField and !custom_field.is_for_all? %> - <%= reorder_handle(custom_field, :url => custom_field_path(custom_field), :param => 'custom_field') %> - <%= delete_link custom_field_path(custom_field) %> -
    diff --git a/app/views/custom_fields/_visibility_by_project_selector.html.erb b/app/views/custom_fields/_visibility_by_project_selector.html.erb deleted file mode 100644 index d92e5cd..0000000 --- a/app/views/custom_fields/_visibility_by_project_selector.html.erb +++ /dev/null @@ -1,11 +0,0 @@ -
    <%= toggle_checkboxes_link("#custom_field_project_ids input[type=checkbox]:enabled") %><%= l(:label_project_plural) %> -

    <%= f.check_box :is_for_all, :data => {:disables => '#custom_field_project_ids input'} %>

    - -
    - <% project_ids = @custom_field.project_ids.to_a %> - <%= render_project_nested_lists(Project.all) do |p| - content_tag('label', check_box_tag('custom_field[project_ids][]', p.id, project_ids.include?(p.id), :id => nil) + ' ' + p) - end %> - <%= hidden_field_tag('custom_field[project_ids][]', '', :id => nil) %> -
    -
    diff --git a/app/views/custom_fields/_visibility_by_role_selector.html.erb b/app/views/custom_fields/_visibility_by_role_selector.html.erb deleted file mode 100644 index 552bc79..0000000 --- a/app/views/custom_fields/_visibility_by_role_selector.html.erb +++ /dev/null @@ -1,20 +0,0 @@ -
    <%= l(:field_visible) %> - - - <% role_ids = @custom_field.role_ids %> - <% Role.givable.sorted.each do |role| %> - - <% end %> - <%= hidden_field_tag 'custom_field[role_ids][]', '' %> -
    diff --git a/app/views/custom_fields/_visibility_by_tracker_selector.html.erb b/app/views/custom_fields/_visibility_by_tracker_selector.html.erb deleted file mode 100644 index 289849d..0000000 --- a/app/views/custom_fields/_visibility_by_tracker_selector.html.erb +++ /dev/null @@ -1,13 +0,0 @@ -
    <%= toggle_checkboxes_link("#custom_field_tracker_ids input[type=checkbox]") %><%=l(:label_tracker_plural)%> - <% tracker_ids = @custom_field.tracker_ids %> - <% Tracker.sorted.each do |tracker| %> - <%= check_box_tag "custom_field[tracker_ids][]", - tracker.id, - tracker_ids.include?(tracker.id), - :id => "custom_field_tracker_ids_#{tracker.id}" %> - - <% end %> - <%= hidden_field_tag "custom_field[tracker_ids][]", '' %> -
    diff --git a/app/views/custom_fields/edit.html.erb b/app/views/custom_fields/edit.html.erb deleted file mode 100644 index 0cbef1f..0000000 --- a/app/views/custom_fields/edit.html.erb +++ /dev/null @@ -1,5 +0,0 @@ -<%= custom_field_title @custom_field %> - -<%= labelled_form_for :custom_field, @custom_field, :url => custom_field_path(@custom_field), :html => {:method => :put, :id => 'custom_field_form'} do |f| %> -<%= render :partial => 'form', :locals => { :f => f } %> -<% end %> diff --git a/app/views/custom_fields/formats/_attachment.html.erb b/app/views/custom_fields/formats/_attachment.html.erb deleted file mode 100644 index 263238a..0000000 --- a/app/views/custom_fields/formats/_attachment.html.erb +++ /dev/null @@ -1,4 +0,0 @@ -

    - <%= f.text_field :extensions_allowed, :size => 50, :label => :setting_attachment_extensions_allowed %> - <%= l(:text_comma_separated) %> <%= l(:label_example) %>: txt, png -

    diff --git a/app/views/custom_fields/formats/_bool.html.erb b/app/views/custom_fields/formats/_bool.html.erb deleted file mode 100644 index 3b791ac..0000000 --- a/app/views/custom_fields/formats/_bool.html.erb +++ /dev/null @@ -1,3 +0,0 @@ -

    <%= f.select :default_value, [[]]+@custom_field.possible_values_options %>

    -

    <%= f.text_field :url_pattern, :size => 50, :label => :label_link_values_to %>

    -

    <%= edit_tag_style_tag f, :include_radio => true %>

    diff --git a/app/views/custom_fields/formats/_date.html.erb b/app/views/custom_fields/formats/_date.html.erb deleted file mode 100644 index b52c063..0000000 --- a/app/views/custom_fields/formats/_date.html.erb +++ /dev/null @@ -1,3 +0,0 @@ -

    <%= f.date_field(:default_value, :value => @custom_field.default_value, :size => 10) %>

    -<%= calendar_for('custom_field_default_value') %> -

    <%= f.text_field :url_pattern, :size => 50, :label => :label_link_values_to %>

    diff --git a/app/views/custom_fields/formats/_enumeration.erb b/app/views/custom_fields/formats/_enumeration.erb deleted file mode 100644 index 07e4cf4..0000000 --- a/app/views/custom_fields/formats/_enumeration.erb +++ /dev/null @@ -1,12 +0,0 @@ -<% unless @custom_field.new_record? %> -

    - - <%= link_to l(:button_edit), custom_field_enumerations_path(@custom_field), :class => 'icon icon-edit' %> -

    -<% if @custom_field.enumerations.active.any? %> -

    <%= f.select :default_value, @custom_field.enumerations.active.map{|v| [v.name, v.id.to_s]}, :include_blank => true %>

    -<% end %> -<% end %> - -

    <%= f.text_field :url_pattern, :size => 50, :label => :label_link_values_to %>

    -

    <%= edit_tag_style_tag f %>

    diff --git a/app/views/custom_fields/formats/_link.html.erb b/app/views/custom_fields/formats/_link.html.erb deleted file mode 100644 index 9b7d342..0000000 --- a/app/views/custom_fields/formats/_link.html.erb +++ /dev/null @@ -1,3 +0,0 @@ -<%= render :partial => 'custom_fields/formats/regexp', :locals => {:f => f, :custom_field => custom_field} %> -

    <%= f.text_field :url_pattern, :size => 50, :label => :field_url %>

    -

    <%= f.text_field(:default_value) %>

    diff --git a/app/views/custom_fields/formats/_list.html.erb b/app/views/custom_fields/formats/_list.html.erb deleted file mode 100644 index f615e50..0000000 --- a/app/views/custom_fields/formats/_list.html.erb +++ /dev/null @@ -1,7 +0,0 @@ -

    - <%= f.text_area :possible_values, :value => @custom_field.possible_values.to_a.join("\n"), :rows => 15, :required => true %> - <%= l(:text_custom_field_possible_values_info) %> -

    -

    <%= f.text_field(:default_value) %>

    -

    <%= f.text_field :url_pattern, :size => 50, :label => :label_link_values_to %>

    -

    <%= edit_tag_style_tag f %>

    diff --git a/app/views/custom_fields/formats/_numeric.html.erb b/app/views/custom_fields/formats/_numeric.html.erb deleted file mode 100644 index cc0c798..0000000 --- a/app/views/custom_fields/formats/_numeric.html.erb +++ /dev/null @@ -1,3 +0,0 @@ -<%= render :partial => 'custom_fields/formats/regexp', :locals => {:f => f, :custom_field => custom_field} %> -

    <%= f.text_field(:default_value) %>

    -

    <%= f.text_field :url_pattern, :size => 50, :label => :label_link_values_to %>

    diff --git a/app/views/custom_fields/formats/_regexp.html.erb b/app/views/custom_fields/formats/_regexp.html.erb deleted file mode 100644 index 9630d5a..0000000 --- a/app/views/custom_fields/formats/_regexp.html.erb +++ /dev/null @@ -1,9 +0,0 @@ -

    - - <%= f.text_field :min_length, :size => 5, :no_label => true %> - - <%= f.text_field :max_length, :size => 5, :no_label => true %> -

    -

    - <%= f.text_field :regexp, :size => 50 %> - <%= l(:text_regexp_info) %> -

    diff --git a/app/views/custom_fields/formats/_string.html.erb b/app/views/custom_fields/formats/_string.html.erb deleted file mode 100644 index 08aac8e..0000000 --- a/app/views/custom_fields/formats/_string.html.erb +++ /dev/null @@ -1,4 +0,0 @@ -<%= render :partial => 'custom_fields/formats/regexp', :locals => {:f => f, :custom_field => custom_field} %> -

    <%= f.check_box :text_formatting, {:label => :setting_text_formatting, :data => {:disables => '#custom_field_url_pattern'}}, 'full', '' %>

    -

    <%= f.text_field(:default_value) %>

    -

    <%= f.text_field :url_pattern, :size => 50, :label => :label_link_values_to %>

    diff --git a/app/views/custom_fields/formats/_text.html.erb b/app/views/custom_fields/formats/_text.html.erb deleted file mode 100644 index 79ea7c5..0000000 --- a/app/views/custom_fields/formats/_text.html.erb +++ /dev/null @@ -1,6 +0,0 @@ -<%= render :partial => 'custom_fields/formats/regexp', :locals => {:f => f, :custom_field => custom_field} %> -

    <%= f.check_box :text_formatting, {:label => :setting_text_formatting}, 'full', '' %>

    -<% if @custom_field.class.name == "IssueCustomField" %> -

    <%= f.check_box :full_width_layout %>

    -<% end %> -

    <%= f.text_area(:default_value, :rows => 5) %>

    diff --git a/app/views/custom_fields/formats/_user.html.erb b/app/views/custom_fields/formats/_user.html.erb deleted file mode 100644 index 3bb4d29..0000000 --- a/app/views/custom_fields/formats/_user.html.erb +++ /dev/null @@ -1,24 +0,0 @@ -

    - - - - <% Role.givable.sorted.each do |role| %> - - <% end %> - <%= hidden_field_tag 'custom_field[user_role][]', '' %> -

    -

    <%= edit_tag_style_tag f %>

    diff --git a/app/views/custom_fields/formats/_version.html.erb b/app/views/custom_fields/formats/_version.html.erb deleted file mode 100644 index b8060d2..0000000 --- a/app/views/custom_fields/formats/_version.html.erb +++ /dev/null @@ -1,24 +0,0 @@ -

    - - - - <% Version::VERSION_STATUSES.each do |status| %> - - <% end %> - <%= hidden_field_tag 'custom_field[version_status][]', '' %> -

    -

    <%= edit_tag_style_tag f %>

    diff --git a/app/views/custom_fields/index.api.rsb b/app/views/custom_fields/index.api.rsb deleted file mode 100644 index 8233ed1..0000000 --- a/app/views/custom_fields/index.api.rsb +++ /dev/null @@ -1,44 +0,0 @@ -api.array :custom_fields do - @custom_fields.each do |field| - api.custom_field do - api.id field.id - api.name field.name - api.customized_type field.class.customized_class.name.underscore if field.class.customized_class - api.field_format field.field_format - api.regexp field.regexp - api.min_length field.min_length - api.max_length field.max_length - api.is_required field.is_required? - api.is_filter field.is_filter? - api.searchable field.searchable - api.multiple field.multiple? - api.default_value field.default_value - api.visible field.visible? - - values = field.possible_values_options - if values.present? - api.array :possible_values do - values.each do |label, value| - api.possible_value do - api.value value || label - api.label label - end - end - end - end - - if field.is_a?(IssueCustomField) - api.array :trackers do - field.trackers.each do |tracker| - api.tracker :id => tracker.id, :name => tracker.name - end - end - api.array :roles do - field.roles.each do |role| - api.role :id => role.id, :name => role.name - end - end - end - end - end -end diff --git a/app/views/custom_fields/index.html.erb b/app/views/custom_fields/index.html.erb deleted file mode 100644 index 0eecc60..0000000 --- a/app/views/custom_fields/index.html.erb +++ /dev/null @@ -1,15 +0,0 @@ -
    -<%= link_to_function l(:label_custom_field_new), "location.href = '#{new_custom_field_path}?tab=' + encodeURIComponent(($('.tabs a.selected').attr('id')||'').split('tab-').pop())", :class => 'icon icon-add' %> -
    - -<%= title l(:label_custom_field_plural) %> - -<% if @custom_fields_by_type.present? %> - <%= render_custom_fields_tabs(@custom_fields_by_type.keys) %> -<% else %> -

    <%= l(:label_no_data) %>

    -<% end %> - -<%= javascript_tag do %> - $(function() { $("table.custom_fields tbody").positionedItems(); }); -<% end %> \ No newline at end of file diff --git a/app/views/custom_fields/new.html.erb b/app/views/custom_fields/new.html.erb deleted file mode 100644 index db42229..0000000 --- a/app/views/custom_fields/new.html.erb +++ /dev/null @@ -1,17 +0,0 @@ -<%= custom_field_title @custom_field %> - -<%= labelled_form_for :custom_field, @custom_field, :url => custom_fields_path, :html => {:id => 'custom_field_form'} do |f| %> -<%= render :partial => 'form', :locals => { :f => f } %> -<%= hidden_field_tag 'type', @custom_field.type %> -<% end %> - -<%= javascript_tag do %> -$('#custom_field_field_format').change(function(){ - $.ajax({ - url: '<%= new_custom_field_path(:format => 'js') %>', - type: 'get', - data: $('#custom_field_form').serialize(), - complete: toggleDisabledInit - }); -}); -<% end %> diff --git a/app/views/custom_fields/new.js.erb b/app/views/custom_fields/new.js.erb deleted file mode 100644 index d77c97f..0000000 --- a/app/views/custom_fields/new.js.erb +++ /dev/null @@ -1 +0,0 @@ -$('#content').html('<%= escape_javascript(render :template => 'custom_fields/new', :layout => nil, :formats => [:html]) %>') diff --git a/app/views/custom_fields/select_type.html.erb b/app/views/custom_fields/select_type.html.erb deleted file mode 100644 index 78d3e94..0000000 --- a/app/views/custom_fields/select_type.html.erb +++ /dev/null @@ -1,11 +0,0 @@ -<%= custom_field_title @custom_field %> - -<%= form_tag new_custom_field_path, :method => 'get' do %> -
    -

    <%= l(:label_custom_field_select_type) %>:

    -

    - <%= select_type_radio_buttons(params[:tab]) %> -

    -
    -

    <%= submit_tag l(:label_next).html_safe + " »".html_safe, :name => nil %>

    -<% end %> diff --git a/app/views/documents/_document.html.erb b/app/views/documents/_document.html.erb deleted file mode 100644 index 9a96d5d..0000000 --- a/app/views/documents/_document.html.erb +++ /dev/null @@ -1,6 +0,0 @@ -

    <%= link_to document.title, document_path(document) %>

    -

    <%= format_time(document.updated_on) %>

    - -
    - <%= textilizable(truncate_lines(document.description), :object => document) %> -
    diff --git a/app/views/documents/_form.html.erb b/app/views/documents/_form.html.erb deleted file mode 100644 index 71ef202..0000000 --- a/app/views/documents/_form.html.erb +++ /dev/null @@ -1,22 +0,0 @@ -<%= error_messages_for @document %> - -
    -

    <%= f.select :category_id, DocumentCategory.active.collect {|c| [c.name, c.id]} %>

    -

    <%= f.text_field :title, :required => true, :size => 60 %>

    -

    <%= f.text_area :description, :cols => 60, :rows => 15, :class => 'wiki-edit', - :data => { - :auto_complete => true, - :issues_url => auto_complete_issues_path(:project_id => @project, :q => '') - } - %>

    - - <% @document.custom_field_values.each do |value| %> -

    <%= custom_field_tag_with_label :document, value %>

    - <% end %> - - <% if @document.new_record? %> -

    <%= render :partial => 'attachments/form', :locals => {:container => @document} %>

    - <% end %> -
    - -<%= wikitoolbar_for 'document_description' %> diff --git a/app/views/documents/edit.html.erb b/app/views/documents/edit.html.erb deleted file mode 100644 index 87e08e1..0000000 --- a/app/views/documents/edit.html.erb +++ /dev/null @@ -1,8 +0,0 @@ -

    <%=l(:label_document)%>

    - -<%= labelled_form_for @document, :html => {:multipart => true} do |f| %> - <%= render :partial => 'form', :locals => {:f => f} %> -

    <%= submit_tag l(:button_save) %>

    -<% end %> - - diff --git a/app/views/documents/index.html.erb b/app/views/documents/index.html.erb deleted file mode 100644 index c0458f8..0000000 --- a/app/views/documents/index.html.erb +++ /dev/null @@ -1,40 +0,0 @@ -
    -<%= link_to l(:label_document_new), new_project_document_path(@project), :class => 'icon icon-add', - :onclick => 'showAndScrollTo("add-document", "document_title"); return false;' if User.current.allowed_to?(:add_documents, @project) %> -
    - - - -

    <%=l(:label_document_plural)%>

    - -<% if @grouped.empty? %>

    <%= l(:label_no_data) %>

    <% end %> - -<% @grouped.keys.sort.__send__(@sort_by == 'date' ? :reverse_each : :each) do |group| %> -

    <%= group %>

    - <%= render :partial => 'documents/document', :collection => @grouped[group] %> -<% end %> - -<% content_for :sidebar do %> -

    <%= l(:label_sort_by, '') %>

    -
      -
    • <%= link_to(l(:field_category), {:sort_by => 'category'}, - :class => (@sort_by == 'category' ? 'selected' :nil)) %>
    • -
    • <%= link_to(l(:label_date), {:sort_by => 'date'}, - :class => (@sort_by == 'date' ? 'selected' :nil)) %>
    • -
    • <%= link_to(l(:field_title), {:sort_by => 'title'}, - :class => (@sort_by == 'title' ? 'selected' :nil)) %>
    • -
    • <%= link_to(l(:field_author), {:sort_by => 'author'}, - :class => (@sort_by == 'author' ? 'selected' :nil)) %>
    • -
    -<% end %> - -<% html_title(l(:label_document_plural)) -%> diff --git a/app/views/documents/new.html.erb b/app/views/documents/new.html.erb deleted file mode 100644 index a34391e..0000000 --- a/app/views/documents/new.html.erb +++ /dev/null @@ -1,6 +0,0 @@ -

    <%=l(:label_document_new)%>

    - -<%= labelled_form_for @document, :url => project_documents_path(@project), :html => {:multipart => true} do |f| %> - <%= render :partial => 'form', :locals => {:f => f} %> -

    <%= submit_tag l(:button_create) %>

    -<% end %> diff --git a/app/views/documents/show.html.erb b/app/views/documents/show.html.erb deleted file mode 100644 index 799803c..0000000 --- a/app/views/documents/show.html.erb +++ /dev/null @@ -1,41 +0,0 @@ -
    -<% if User.current.allowed_to?(:edit_documents, @project) %> -<%= link_to l(:button_edit), edit_document_path(@document), :class => 'icon icon-edit', :accesskey => accesskey(:edit) %> -<% end %> -<% if User.current.allowed_to?(:delete_documents, @project) %> -<%= delete_link document_path(@document) %> -<% end %> -
    - -

    <%= @document.title %>

    - -

    <%= @document.category.name %>
    -<%= format_date @document.created_on %>

    - -<% if @document.custom_field_values.any? %> -
      - <% render_custom_field_values(@document) do |custom_field, formatted| %> -
    • <%= custom_field.name %>: <%= formatted %>
    • - <% end %> -
    -<% end %> - -
    -<%= textilizable @document, :description, :attachments => @document.attachments %> -
    - -

    <%= l(:label_attachment_plural) %>

    -<%= link_to_attachments @document, :thumbnails => true %> - -<% if authorize_for('documents', 'add_attachment') %> -

    <%= link_to l(:label_attachment_new), {}, :onclick => "$('#add_attachment_form').show(); return false;", - :id => 'attach_files_link' %>

    - <%= form_tag({ :controller => 'documents', :action => 'add_attachment', :id => @document }, :multipart => true, :id => "add_attachment_form", :style => "display:none;") do %> -
    -

    <%= render :partial => 'attachments/form' %>

    -
    - <%= submit_tag l(:button_add) %> - <% end %> -<% end %> - -<% html_title @document.title -%> diff --git a/app/views/email_addresses/_index.html.erb b/app/views/email_addresses/_index.html.erb deleted file mode 100644 index 2fcf0b4..0000000 --- a/app/views/email_addresses/_index.html.erb +++ /dev/null @@ -1,26 +0,0 @@ -<% if @addresses.present? %> - - <% @addresses.each do |address| %> - - - - - <% end %> - -<% end %> - -<% unless @addresses.size >= Setting.max_additional_emails.to_i %> -
    - <%= form_for @address, :url => user_email_addresses_path(@user), :remote => true do |f| %> -

    <%= l(:label_email_address_add) %>

    - <%= error_messages_for @address %> -

    - <%= f.text_field :address, :size => 40 %> - <%= submit_tag l(:button_add) %> -

    - <% end %> -
    -<% end %> diff --git a/app/views/email_addresses/index.html.erb b/app/views/email_addresses/index.html.erb deleted file mode 100644 index 7de1d37..0000000 --- a/app/views/email_addresses/index.html.erb +++ /dev/null @@ -1,2 +0,0 @@ -

    <%= @user.name %>

    -<%= render :partial => 'email_addresses/index' %> diff --git a/app/views/email_addresses/index.js.erb b/app/views/email_addresses/index.js.erb deleted file mode 100644 index 2a7147f..0000000 --- a/app/views/email_addresses/index.js.erb +++ /dev/null @@ -1,3 +0,0 @@ -$('#ajax-modal').html('<%= escape_javascript(render :partial => 'email_addresses/index') %>'); -showModal('ajax-modal', '600px', '<%= escape_javascript l(:label_email_address_plural) %>'); -$('#email_address_address').focus(); diff --git a/app/views/enumerations/_form.html.erb b/app/views/enumerations/_form.html.erb deleted file mode 100644 index 8ff774d..0000000 --- a/app/views/enumerations/_form.html.erb +++ /dev/null @@ -1,11 +0,0 @@ -<%= error_messages_for 'enumeration' %> - -
    -

    <%= f.text_field :name %>

    -

    <%= f.check_box :active %>

    -

    <%= f.check_box :is_default %>

    - - <% @enumeration.custom_field_values.each do |value| %> -

    <%= custom_field_tag_with_label :enumeration, value %>

    - <% end %> -
    diff --git a/app/views/enumerations/destroy.html.erb b/app/views/enumerations/destroy.html.erb deleted file mode 100644 index 2757eed..0000000 --- a/app/views/enumerations/destroy.html.erb +++ /dev/null @@ -1,12 +0,0 @@ -<%= title [l(@enumeration.option_name), enumerations_path], @enumeration.name %> - -<%= form_tag({}, :method => :delete) do %> -
    -

    <%= l(:text_enumeration_destroy_question, :name => @enumeration.name, :count => @enumeration.objects_count) %>

    -

    -<%= select_tag 'reassign_to_id', (content_tag('option', "--- #{l(:actionview_instancetag_blank_option)} ---", :value => '') + options_from_collection_for_select(@enumerations, 'id', 'name')) %>

    -
    - -<%= submit_tag l(:button_apply) %> -<%= link_to l(:button_cancel), enumerations_path %> -<% end %> diff --git a/app/views/enumerations/edit.html.erb b/app/views/enumerations/edit.html.erb deleted file mode 100644 index a7d03ce..0000000 --- a/app/views/enumerations/edit.html.erb +++ /dev/null @@ -1,6 +0,0 @@ -<%= title [l(@enumeration.option_name), enumerations_path], @enumeration.name %> - -<%= labelled_form_for :enumeration, @enumeration, :url => enumeration_path(@enumeration), :html => {:method => :put, :multipart => true} do |f| %> - <%= render :partial => 'form', :locals => {:f => f} %> - <%= submit_tag l(:button_save) %> -<% end %> diff --git a/app/views/enumerations/index.api.rsb b/app/views/enumerations/index.api.rsb deleted file mode 100644 index 796e63a..0000000 --- a/app/views/enumerations/index.api.rsb +++ /dev/null @@ -1,11 +0,0 @@ -api.array @klass.name.underscore.pluralize do - @enumerations.each do |enumeration| - api.__send__ @klass.name.underscore do - api.id enumeration.id - api.name enumeration.name - api.is_default enumeration.is_default - api.active enumeration.active - render_api_custom_values enumeration.visible_custom_field_values, api - end - end -end diff --git a/app/views/enumerations/index.html.erb b/app/views/enumerations/index.html.erb deleted file mode 100644 index 09d13a0..0000000 --- a/app/views/enumerations/index.html.erb +++ /dev/null @@ -1,39 +0,0 @@ -

    <%=l(:label_enumerations)%>

    - -<% Enumeration.get_subclasses.each do |klass| %> -

    <%= l(klass::OptionName) %>

    - -<% enumerations = klass.shared %> - -

    <%= link_to l(:label_enumeration_new), new_enumeration_path(:type => klass.name), :class => 'icon icon-add' %>

    - -<% if enumerations.any? %> - - - - - - - -<% enumerations.each do |enumeration| %> - - - - - - -<% end %> -
    <%= l(:field_name) %><%= l(:field_is_default) %><%= l(:field_active) %>
    <%= link_to enumeration, edit_enumeration_path(enumeration) %><%= checked_image enumeration.is_default? %><%= checked_image enumeration.active? %> - <%= reorder_handle(enumeration, :url => enumeration_path(enumeration), :param => 'enumeration') %> - <%= delete_link enumeration_path(enumeration) %> -
    -<% else %> -

    <%= l(:label_no_data) %>

    -<% end %> -<% end %> - -<% html_title(l(:label_enumerations)) -%> - -<%= javascript_tag do %> - $(function() { $("table.enumerations tbody").positionedItems(); }); -<% end %> \ No newline at end of file diff --git a/app/views/enumerations/new.html.erb b/app/views/enumerations/new.html.erb deleted file mode 100644 index dcd9a49..0000000 --- a/app/views/enumerations/new.html.erb +++ /dev/null @@ -1,7 +0,0 @@ -<%= title [l(@enumeration.option_name), enumerations_path], l(:label_enumeration_new) %> - -<%= labelled_form_for :enumeration, @enumeration, :url => enumerations_path, :html => {:multipart => true} do |f| %> - <%= f.hidden_field :type %> - <%= render :partial => 'form', :locals => {:f => f} %> - <%= submit_tag l(:button_create) %> -<% end %> diff --git a/app/views/files/index.api.rsb b/app/views/files/index.api.rsb deleted file mode 100644 index 0a317e4..0000000 --- a/app/views/files/index.api.rsb +++ /dev/null @@ -1,14 +0,0 @@ -api.array :files do - @containers.each do |container| - container.attachments.each do |attachment| - api.file do - render_api_attachment_attributes(attachment, api) - if container.is_a?(Version) - api.version :id => container.id, :name => container.name - end - api.digest attachment.digest - api.downloads attachment.downloads - end - end - end -end diff --git a/app/views/files/index.html.erb b/app/views/files/index.html.erb deleted file mode 100644 index 3e8dda1..0000000 --- a/app/views/files/index.html.erb +++ /dev/null @@ -1,48 +0,0 @@ -
    -<%= link_to(l(:label_attachment_new), new_project_file_path(@project), :class => 'icon icon-add') if User.current.allowed_to?(:manage_files, @project) %> -
    - -

    <%=l(:label_attachment_plural)%>

    - -<% delete_allowed = User.current.allowed_to?(:manage_files, @project) %> - -
    - - - <%= sort_header_tag('filename', :caption => l(:field_filename)) %> - <%= sort_header_tag('created_on', :caption => l(:label_date), :default_order => 'desc') %> - <%= sort_header_tag('size', :caption => l(:field_filesize), :default_order => 'desc') %> - <%= sort_header_tag('downloads', :caption => l(:label_downloads_abbr), :default_order => 'desc') %> - - - - - <% @containers.each do |container| %> - <% next if container.attachments.empty? -%> - <% if container.is_a?(Version) -%> - - - - <% end -%> - <% container.attachments.each do |file| %> - - - - - - - - - <% end %> - <% end %> - -
    <%= l(:field_digest) %>
    - <%= link_to(container, {:controller => 'versions', :action => 'show', :id => container}, :class => "icon icon-package") %> -
    <%= link_to_attachment file, :title => file.description -%><%= format_time(file.created_on) %><%= number_to_human_size(file.filesize) %><%= file.downloads %><%= file.digest_type %>: <%= file.digest %> - <%= link_to_attachment file, class: 'icon-only icon-download', title: l(:button_download), download: true %> - <%= link_to(l(:button_delete), attachment_path(file), :class => 'icon-only icon-del', - :data => {:confirm => l(:text_are_you_sure)}, :method => :delete) if delete_allowed %> -
    -
    - -<% html_title(l(:label_attachment_plural)) -%> diff --git a/app/views/files/new.html.erb b/app/views/files/new.html.erb deleted file mode 100644 index ab38b44..0000000 --- a/app/views/files/new.html.erb +++ /dev/null @@ -1,16 +0,0 @@ -

    <%=l(:label_attachment_new)%>

    - -<%= error_messages_for 'attachment' %> -<%= form_tag(project_files_path(@project), :multipart => true, :class => "tabular") do %> -
    - -<% if @versions.any? %> -

    -<%= select_tag "version_id", content_tag('option', '') + - options_from_collection_for_select(@versions, "id", "name") %>

    -<% end %> - -

    <%= render :partial => 'attachments/form' %>

    -
    -<%= submit_tag l(:button_add) %> -<% end %> diff --git a/app/views/gantts/show.html.erb b/app/views/gantts/show.html.erb deleted file mode 100644 index 8265ccc..0000000 --- a/app/views/gantts/show.html.erb +++ /dev/null @@ -1,433 +0,0 @@ -<% @gantt.view = self %> -
    -
    - -

    <%= @query.new_record? ? l(:label_gantt) : @query.name %>

    - -<%= form_tag({:controller => 'gantts', :action => 'show', - :project_id => @project, :month => params[:month], - :year => params[:year], :months => params[:months]}, - :method => :get, :id => 'query_form') do %> -<%= hidden_field_tag 'set_filter', '1' %> -<%= hidden_field_tag 'gantt', '1' %> - -
    -
    -
    "> - "><%= l(:label_filter_plural) %> -
    "> - <%= render :partial => 'queries/filters', :locals => {:query => @query} %> -
    -
    - - -
    - -

    - - <%= gantt_zoom_link(@gantt, :in) %> - <%= gantt_zoom_link(@gantt, :out) %> - - - <%= link_to_previous_month(@gantt.year_from, @gantt.month_from, :accesskey => accesskey(:previous)) %> | <%= link_to_next_month(@gantt.year_from, @gantt.month_from, :accesskey => accesskey(:next)) %> - -

    - -

    - <%= number_field_tag 'months', @gantt.months, :min => 1, :max => Setting.gantt_months_limit.to_i, :autocomplete => false %> - <%= l(:label_months_from) %> - <%= select_month(@gantt.month_from, :prefix => "month", :discard_type => true) %> - <%= select_year(@gantt.year_from, :prefix => "year", :discard_type => true) %> - <%= hidden_field_tag 'zoom', @gantt.zoom %> - - <%= link_to_function l(:button_apply), '$("#query_form").submit()', - :class => 'icon icon-checked' %> - <%= link_to l(:button_clear), { :project_id => @project, :set_filter => 1 }, - :class => 'icon icon-reload' %> - <% if @query.new_record? && User.current.allowed_to?(:save_queries, @project, :global => true) %> - <%= link_to_function l(:button_save), - "$('#query_form').attr('action', '#{ @project ? new_project_query_path(@project) : new_query_path }').submit();", - :class => 'icon icon-save' %> - <% end %> -<% if !@query.new_record? && @query.editable_by?(User.current) %> - <%= link_to l(:button_edit), edit_query_path(@query, :gantt => 1), :class => 'icon icon-edit' %> - <%= delete_link query_path(@query, :gantt => 1) %> -<% end %> -

    -
    -<% end %> - -<%= error_messages_for 'query' %> -<% if @query.valid? %> -<% - zoom = 1 - @gantt.zoom.times { zoom = zoom * 2 } - - subject_width = 330 - header_height = 18 - - headers_height = header_height - show_weeks = false - show_days = false - show_day_num = false - - if @gantt.zoom > 1 - show_weeks = true - headers_height = 2 * header_height - if @gantt.zoom > 2 - show_days = true - headers_height = 3 * header_height - if @gantt.zoom > 3 - show_day_num = true - headers_height = 4 * header_height - end - end - end - - # Width of the entire chart - g_width = ((@gantt.date_to - @gantt.date_from + 1) * zoom).to_i - @gantt.render(:top => headers_height + 8, - :zoom => zoom, - :g_width => g_width, - :subject_width => subject_width) - g_height = [(20 * (@gantt.number_of_rows + 6)) + 150, 206].max - t_height = g_height + headers_height -%> - -<% if @gantt.truncated %> -

    <%= l(:notice_gantt_chart_truncated, :max => @gantt.max_rows) %>

    -<% end %> - - - - -<% - @query.columns.each do |column| - next if Redmine::Helpers::Gantt::UNAVAILABLE_COLUMNS.include?(column.name) - column_name = column.name.to_s.tr('.', '_') -%> - -<% end %> - - -
    - <% - style = "" - style += "position:relative;" - style += "height: #{t_height + 24}px;" - style += "width: #{subject_width + 1}px;" - %> - <%= content_tag(:div, :style => style, :class => "gantt_subjects_container #{'draw_selected_columns' if @query.draw_selected_columns}") do %> - <% - style = "" - style += "width: #{subject_width + 1}px;" - style += "height: #{headers_height}px;" - style += 'background: #eee;' - %> - <%= content_tag(:div, "", :style => style, :class => "gantt_hdr") %> - <% - style = "" - style += "z-index: 1;" - style += "width: #{subject_width + 1}px;" - style += "height: #{t_height}px;" - style += 'overflow: hidden;' - %> - <%= content_tag(:div, "", :style => style, :class => "gantt_hdr") %> - <%= content_tag(:div, :class => "gantt_subjects") do %> - <%= form_tag({}, :data => {:cm_url => issues_context_menu_path}) do -%> - <%= hidden_field_tag 'back_url', url_for(:params => request.query_parameters), :id => nil %> - <%= @gantt.subjects.html_safe %> - <% end %> - <% end %> - <% end %> - - <% - style = "position: relative;" - style += "height: #{t_height + 24}px;" - %> - <%= content_tag(:div, :style => style, :class => "gantt_#{column_name}_container gantt_selected_column_container") do %> - <% - style = "height: #{t_height}px;" - style += 'overflow: hidden;' - %> - <%= content_tag(:div, '', :style => style, :class => "gantt_hdr") %> - <% - style = "height: #{headers_height}px;" - style += 'background: #eee;' - %> - <%= content_tag(:div, content_tag(:p, column.caption, :class => 'gantt_hdr_selected_column_name'), :style => style, :class => "gantt_hdr") %> - <%= content_tag(:div, :class => "gantt_#{column_name} gantt_selected_column_content") do %> - <%= @gantt.selected_column_content({:column => column, :top => headers_height + 8, :zoom => zoom, :g_width => g_width}).html_safe %> - <% end %> - <% end %> - -
    -<% - style = "" - style += "width: #{g_width - 1}px;" - style += "height: #{headers_height}px;" - style += 'background: #eee;' -%> -<%= content_tag(:div, ' '.html_safe, :style => style, :class => "gantt_hdr") %> - -<% ###### Months headers ###### %> -<% - month_f = @gantt.date_from - left = 0 - height = (show_weeks ? header_height : header_height + g_height) -%> -<% @gantt.months.times do %> - <% - width = (((month_f >> 1) - month_f) * zoom - 1).to_i - style = "" - style += "left: #{left}px;" - style += "width: #{width}px;" - style += "height: #{height}px;" - %> - <%= content_tag(:div, :style => style, :class => "gantt_hdr") do %> - <%= link_to "#{month_f.year}-#{month_f.month}", - @gantt.params.merge(:year => month_f.year, :month => month_f.month), - :title => "#{month_name(month_f.month)} #{month_f.year}" %> - <% end %> - <% - left = left + width + 1 - month_f = month_f >> 1 - %> -<% end %> - -<% ###### Weeks headers ###### %> -<% if show_weeks %> - <% - left = 0 - height = (show_days ? header_height - 1 : header_height - 1 + g_height) - %> - <% if @gantt.date_from.cwday == 1 %> - <% - # @date_from is monday - week_f = @gantt.date_from - %> - <% else %> - <% - # find next monday after @date_from - week_f = @gantt.date_from + (7 - @gantt.date_from.cwday + 1) - width = (7 - @gantt.date_from.cwday + 1) * zoom - 1 - style = "" - style += "left: #{left}px;" - style += "top: 19px;" - style += "width: #{width}px;" - style += "height: #{height}px;" - %> - <%= content_tag(:div, ' '.html_safe, - :style => style, :class => "gantt_hdr") %> - <% left = left + width + 1 %> - <% end %> - <% while week_f <= @gantt.date_to %> - <% - width = ((week_f + 6 <= @gantt.date_to) ? - 7 * zoom - 1 : - (@gantt.date_to - week_f + 1) * zoom - 1).to_i - style = "" - style += "left: #{left}px;" - style += "top: 19px;" - style += "width: #{width}px;" - style += "height: #{height}px;" - %> - <%= content_tag(:div, :style => style, :class => "gantt_hdr") do %> - <%= content_tag(:small) do %> - <%= week_f.cweek if width >= 16 %> - <% end %> - <% end %> - <% - left = left + width + 1 - week_f = week_f + 7 - %> - <% end %> -<% end %> - -<% ###### Day numbers headers ###### %> -<% if show_day_num %> - <% - left = 0 - height = g_height + header_height*2 - 1 - wday = @gantt.date_from.cwday - day_num = @gantt.date_from - %> - <% (@gantt.date_to - @gantt.date_from + 1).to_i.times do %> - <% - width = zoom - 1 - style = "" - style += "left:#{left}px;" - style += "top:37px;" - style += "width:#{width}px;" - style += "height:#{height}px;" - style += "font-size:0.7em;" - clss = "gantt_hdr" - clss << " nwday" if @gantt.non_working_week_days.include?(wday) - %> - <%= content_tag(:div, :style => style, :class => clss) do %> - <%= day_num.day %> - <% end %> - <% - left = left + width+1 - day_num = day_num + 1 - wday = wday + 1 - wday = 1 if wday > 7 - %> - <% end %> -<% end %> - -<% ###### Days headers ####### %> -<% if show_days %> - <% - left = 0 - height = g_height + header_height - 1 - top = (show_day_num ? 55 : 37) - wday = @gantt.date_from.cwday - %> - <% (@gantt.date_to - @gantt.date_from + 1).to_i.times do %> - <% - width = zoom - 1 - style = "" - style += "left: #{left}px;" - style += "top: #{top}px;" - style += "width: #{width}px;" - style += "height: #{height}px;" - style += "font-size:0.7em;" - clss = "gantt_hdr" - clss << " nwday" if @gantt.non_working_week_days.include?(wday) - %> - <%= content_tag(:div, :style => style, :class => clss) do %> - <%= day_letter(wday) %> - <% end %> - <% - left = left + width + 1 - wday = wday + 1 - wday = 1 if wday > 7 - %> - <% end %> -<% end %> - -<%= form_tag({}, :data => {:cm_url => issues_context_menu_path}) do -%> - <%= hidden_field_tag 'back_url', url_for(:params => request.query_parameters), :id => nil %> - <%= @gantt.lines.html_safe %> -<% end %> - -<% ###### Today red line (excluded from cache) ###### %> -<% if User.current.today >= @gantt.date_from and User.current.today <= @gantt.date_to %> - <% - today_left = (((User.current.today - @gantt.date_from + 1) * zoom).floor() - 1).to_i - style = "" - style += "position: absolute;" - style += "height: #{g_height}px;" - style += "top: #{headers_height + 1}px;" - style += "left: #{today_left}px;" - style += "width:10px;" - style += "border-left: 1px dashed red;" - %> - <%= content_tag(:div, ' '.html_safe, :style => style, :id => 'today_line') %> -<% end %> -<% - style = "" - style += "position: absolute;" - style += "height: #{g_height}px;" - style += "top: #{headers_height + 1}px;" - style += "left: 0px;" - style += "width: #{g_width - 1}px;" -%> -<%= content_tag(:div, '', :style => style, :id => "gantt_draw_area") %> -
    -
    - - -
      - -
    -
    - -<% other_formats_links do |f| %> - <%= f.link_to_with_query_parameters 'PDF', @gantt.params %> - <%= f.link_to_with_query_parameters('PNG', @gantt.params) if @gantt.respond_to?('to_image') %> -<% end %> -<% end # query.valid? %> - -<% content_for :sidebar do %> - <%= render :partial => 'issues/sidebar' %> -<% end %> - -<% html_title(l(:label_gantt)) -%> - -<% content_for :header_tags do %> - <%= javascript_include_tag 'raphael' %> - <%= javascript_include_tag 'gantt' %> -<% end %> - -<%= javascript_tag do %> - var issue_relation_type = <%= raw Redmine::Helpers::Gantt::DRAW_TYPES.to_json %>; - $(function() { - disable_unavailable_columns('<%= Redmine::Helpers::Gantt::UNAVAILABLE_COLUMNS.map(&:to_s).join(',') %>'.split(',')); - drawGanttHandler(); - resizableSubjectColumn(); - drawSelectedColumns(); - $("#draw_relations, #draw_progress_line, #draw_selected_columns").change(drawGanttHandler); - $('div.gantt_subjects .expander').on('click', ganttEntryClick); - }); - $(window).resize(function() { - drawGanttHandler(); - resizableSubjectColumn(); - }); -<% end %> -<%= context_menu %> diff --git a/app/views/groups/_form.html.erb b/app/views/groups/_form.html.erb deleted file mode 100644 index 9d5b087..0000000 --- a/app/views/groups/_form.html.erb +++ /dev/null @@ -1,10 +0,0 @@ -<%= error_messages_for @group %> - -
    -

    <%= f.text_field :name, :required => true, :size => 60, - :disabled => !@group.safe_attribute?('name') %>

    - - <% @group.custom_field_values.each do |value| %> -

    <%= custom_field_tag_with_label :group, value %>

    - <% end %> -
    diff --git a/app/views/groups/_general.html.erb b/app/views/groups/_general.html.erb deleted file mode 100644 index 9cc5be6..0000000 --- a/app/views/groups/_general.html.erb +++ /dev/null @@ -1,4 +0,0 @@ -<%= labelled_form_for @group, :url => group_path(@group), :html => {:multipart => true} do |f| %> -<%= render :partial => 'form', :locals => { :f => f } %> -<%= submit_tag l(:button_save) %> -<% end %> diff --git a/app/views/groups/_memberships.html.erb b/app/views/groups/_memberships.html.erb deleted file mode 100644 index 1242bf6..0000000 --- a/app/views/groups/_memberships.html.erb +++ /dev/null @@ -1 +0,0 @@ -<%= render_principal_memberships @group %> diff --git a/app/views/groups/_new_users_form.html.erb b/app/views/groups/_new_users_form.html.erb deleted file mode 100644 index 5c33a96..0000000 --- a/app/views/groups/_new_users_form.html.erb +++ /dev/null @@ -1,9 +0,0 @@ -
    - <%= label_tag "user_search", l(:label_user_search) %> -

    <%= text_field_tag 'user_search', nil %>

    - <%= javascript_tag "observeSearchfield('user_search', null, '#{ escape_javascript autocomplete_for_user_group_path(@group) }')" %> - -
    - <%= render_principals_for_new_group_users(@group) %> -
    -
    diff --git a/app/views/groups/_new_users_modal.html.erb b/app/views/groups/_new_users_modal.html.erb deleted file mode 100644 index c68d3f0..0000000 --- a/app/views/groups/_new_users_modal.html.erb +++ /dev/null @@ -1,9 +0,0 @@ -

    <%= l(:label_user_new) %>

    - -<%= form_for(@group, :url => group_users_path(@group), :remote => true, :method => :post) do |f| %> - <%= render :partial => 'new_users_form' %> -

    - <%= submit_tag l(:button_add) %> - <%= link_to_function l(:button_cancel), "hideModal(this);" %> -

    -<% end %> diff --git a/app/views/groups/_users.html.erb b/app/views/groups/_users.html.erb deleted file mode 100644 index 8c2ab7e..0000000 --- a/app/views/groups/_users.html.erb +++ /dev/null @@ -1,22 +0,0 @@ -

    <%= link_to l(:label_user_new), new_group_users_path(@group), :remote => true, :class => "icon icon-add" %>

    - -<% if @group.users.any? %> - - - - - - - <% @group.users.sort.each do |user| %> - - - - - <% end %> - -
    <%= l(:label_user) %>
    <%= link_to_user user %> - <%= delete_link group_user_path(@group, :user_id => user), :remote => true %> -
    -<% else %> -

    <%= l(:label_no_data) %>

    -<% end %> diff --git a/app/views/groups/add_users.js.erb b/app/views/groups/add_users.js.erb deleted file mode 100644 index e4af93a..0000000 --- a/app/views/groups/add_users.js.erb +++ /dev/null @@ -1,5 +0,0 @@ -hideModal(); -$('#tab-content-users').html('<%= escape_javascript(render :partial => 'groups/users') %>'); -<% @users.each do |user| %> - $('#user-<%= user.id %>').effect("highlight"); -<% end %> diff --git a/app/views/groups/autocomplete_for_user.js.erb b/app/views/groups/autocomplete_for_user.js.erb deleted file mode 100644 index 9bb569e..0000000 --- a/app/views/groups/autocomplete_for_user.js.erb +++ /dev/null @@ -1 +0,0 @@ -$('#users').html('<%= escape_javascript(render_principals_for_new_group_users(@group)) %>'); diff --git a/app/views/groups/destroy_membership.js.erb b/app/views/groups/destroy_membership.js.erb deleted file mode 100644 index 30ab3b0..0000000 --- a/app/views/groups/destroy_membership.js.erb +++ /dev/null @@ -1 +0,0 @@ -$('#tab-content-memberships').html('<%= escape_javascript(render :partial => 'groups/memberships') %>'); diff --git a/app/views/groups/edit.html.erb b/app/views/groups/edit.html.erb deleted file mode 100644 index b2f37bd..0000000 --- a/app/views/groups/edit.html.erb +++ /dev/null @@ -1,3 +0,0 @@ -<%= title [l(:label_group_plural), groups_path], @group.name %> - -<%= render_tabs group_settings_tabs(@group) %> diff --git a/app/views/groups/edit_membership.js.erb b/app/views/groups/edit_membership.js.erb deleted file mode 100644 index 679c998..0000000 --- a/app/views/groups/edit_membership.js.erb +++ /dev/null @@ -1,6 +0,0 @@ -<% if @membership.valid? %> - $('#tab-content-memberships').html('<%= escape_javascript(render :partial => 'groups/memberships') %>'); - $('#member-<%= @membership.id %>').effect("highlight"); -<% else %> - alert('<%= raw(escape_javascript(l(:notice_failed_to_save_members, :errors => @membership.errors.full_messages.join(', ')))) %>'); -<% end %> diff --git a/app/views/groups/index.api.rsb b/app/views/groups/index.api.rsb deleted file mode 100644 index 8ebad1b..0000000 --- a/app/views/groups/index.api.rsb +++ /dev/null @@ -1,11 +0,0 @@ -api.array :groups do - @groups.each do |group| - api.group do - api.id group.id - api.name group.lastname - api.builtin group.builtin_type if group.builtin_type - - render_api_custom_values group.visible_custom_field_values, api - end - end -end diff --git a/app/views/groups/index.html.erb b/app/views/groups/index.html.erb deleted file mode 100644 index 7b77fec..0000000 --- a/app/views/groups/index.html.erb +++ /dev/null @@ -1,39 +0,0 @@ -
    -<%= link_to l(:label_group_new), new_group_path, :class => 'icon icon-add' %> -
    - -<%= title l(:label_group_plural) %> - -<%= form_tag(groups_path, :method => :get) do %> -
    <%= l(:label_filter_plural) %> - - <%= text_field_tag 'name', params[:name], :size => 30 %> - <%= submit_tag l(:button_apply), :class => "small", :name => nil %> - <%= link_to l(:button_clear), groups_path, :class => 'icon icon-reload' %> -
    -<% end %> -  - -<% if @groups.any? %> -
    - - - - - - - -<% @groups.each do |group| %> - "> - - - - -<% end %> - -
    <%=l(:label_group)%><%=l(:label_user_plural)%>
    <%= link_to group, edit_group_path(group) %><%= (@user_count_by_group_id[group.id] || 0) unless group.builtin? %><%= delete_link group unless group.builtin? %>
    -
    -<%= pagination_links_full @group_pages, @group_count %> -<% else %> -

    <%= l(:label_no_data) %>

    -<% end %> diff --git a/app/views/groups/new.html.erb b/app/views/groups/new.html.erb deleted file mode 100644 index c643161..0000000 --- a/app/views/groups/new.html.erb +++ /dev/null @@ -1,9 +0,0 @@ -<%= title [l(:label_group_plural), groups_path], l(:label_group_new) %> - -<%= labelled_form_for @group, :html => {:multipart => true} do |f| %> -<%= render :partial => 'form', :locals => { :f => f } %> -

    - <%= f.submit l(:button_create) %> - <%= f.submit l(:button_create_and_continue), :name => 'continue' %> -

    -<% end %> diff --git a/app/views/groups/new_users.html.erb b/app/views/groups/new_users.html.erb deleted file mode 100644 index 8875a83..0000000 --- a/app/views/groups/new_users.html.erb +++ /dev/null @@ -1,6 +0,0 @@ -

    <%= l(:label_user_new) %>

    - -<%= form_for(@group, :url => group_users_path(@group), :method => :post) do |f| %> - <%= render :partial => 'new_users_form' %> -

    <%= submit_tag l(:button_add) %>

    -<% end %> diff --git a/app/views/groups/new_users.js.erb b/app/views/groups/new_users.js.erb deleted file mode 100644 index 1775abe..0000000 --- a/app/views/groups/new_users.js.erb +++ /dev/null @@ -1,2 +0,0 @@ -$('#ajax-modal').html('<%= escape_javascript(render :partial => 'groups/new_users_modal') %>'); -showModal('ajax-modal', '700px'); diff --git a/app/views/groups/remove_user.js.erb b/app/views/groups/remove_user.js.erb deleted file mode 100644 index 88daa8f..0000000 --- a/app/views/groups/remove_user.js.erb +++ /dev/null @@ -1 +0,0 @@ -$('#tab-content-users').html('<%= escape_javascript(render :partial => 'groups/users') %>'); diff --git a/app/views/groups/show.api.rsb b/app/views/groups/show.api.rsb deleted file mode 100644 index db9dadb..0000000 --- a/app/views/groups/show.api.rsb +++ /dev/null @@ -1,31 +0,0 @@ -api.group do - api.id @group.id - api.name @group.lastname - api.builtin @group.builtin_type if @group.builtin_type - - render_api_custom_values @group.visible_custom_field_values, api - - api.array :users do - @group.users.each do |user| - api.user :id => user.id, :name => user.name - end - end if include_in_api_response?('users') && !@group.builtin? - - api.array :memberships do - @group.memberships.preload(:roles, :project).each do |membership| - api.membership do - api.id membership.id - api.project :id => membership.project.id, :name => membership.project.name - api.array :roles do - membership.member_roles.each do |member_role| - if member_role.role - attrs = {:id => member_role.role.id, :name => member_role.role.name} - attrs.merge!(:inherited => true) if member_role.inherited_from.present? - api.role attrs - end - end - end - end if membership.project - end - end if include_in_api_response?('memberships') -end diff --git a/app/views/groups/show.html.erb b/app/views/groups/show.html.erb deleted file mode 100644 index 4f413af..0000000 --- a/app/views/groups/show.html.erb +++ /dev/null @@ -1,16 +0,0 @@ -<%= title [l(:label_group_plural), groups_path], @group.name %> - -<% if @group.custom_field_values.any? %> -
      - <% render_custom_field_values(@group) do |custom_field, formatted| %> -
    • <%= custom_field.name %>: <%= formatted %>
    • - <% end %> -
    -<% end %> - -

    <%= l(:label_member_plural) %>

    -
      -<% @group.users.each do |user| %> -
    • <%= user %>
    • -<% end %> -
    diff --git a/app/views/imports/_issues_fields_mapping.html.erb b/app/views/imports/_issues_fields_mapping.html.erb deleted file mode 100644 index 05bf92e..0000000 --- a/app/views/imports/_issues_fields_mapping.html.erb +++ /dev/null @@ -1,102 +0,0 @@ -
    -
    -

    - - <%= select_tag 'import_settings[mapping][project_id]', - options_for_select(project_tree_options_for_select(@import.allowed_target_projects, :selected => @import.project)), - :id => 'import_mapping_project_id' %> -

    -

    - - <%= mapping_select_tag @import, 'tracker', :required => true, - :values => @import.allowed_target_trackers.sorted.map {|t| [t.name, t.id]} %> -

    -

    - - <%= mapping_select_tag @import, 'status' %> -

    -
    - -
    -

    -

    - - <%= mapping_select_tag @import, 'unique_id' %> -

    -
    -
    - -
    -
    -

    - - <%= mapping_select_tag @import, 'subject', :required => true %> -

    -

    - - <%= mapping_select_tag @import, 'description' %> -

    -

    - - <%= mapping_select_tag @import, 'priority' %> -

    -

    - - <%= mapping_select_tag @import, 'category' %> - <% if User.current.allowed_to?(:manage_categories, @import.project) %> - - <% end %> -

    -

    - - <%= mapping_select_tag @import, 'assigned_to' %> -

    -

    - - <%= mapping_select_tag @import, 'fixed_version' %> - <% if User.current.allowed_to?(:manage_versions, @import.project) %> - - <% end %> -

    -<% @custom_fields.each do |field| %> -

    - - <%= mapping_select_tag @import, "cf_#{field.id}" %> -

    -<% end %> -
    - -
    -

    - - <%= mapping_select_tag @import, 'is_private' %> -

    -

    - - <%= mapping_select_tag @import, 'parent_issue_id' %> -

    -

    - - <%= mapping_select_tag @import, 'start_date' %> -

    -

    - - <%= mapping_select_tag @import, 'due_date' %> -

    -

    - - <%= mapping_select_tag @import, 'estimated_hours' %> -

    -

    - - <%= mapping_select_tag @import, 'done_ratio' %> -

    -
    -
    - diff --git a/app/views/imports/_issues_mapping.html.erb b/app/views/imports/_issues_mapping.html.erb deleted file mode 100644 index dc97d9c..0000000 --- a/app/views/imports/_issues_mapping.html.erb +++ /dev/null @@ -1,16 +0,0 @@ -
    - <%= l(:label_fields_mapping) %> -
    - <%= render :partial => 'issues_fields_mapping' %> -
    -
    - -<%= javascript_tag do %> - $('#fields-mapping').on('change', '#import_mapping_project_id, #import_mapping_tracker', function(){ - $.ajax({ - url: '<%= import_mapping_path(@import, :format => 'js') %>', - type: 'post', - data: $('#import-form').serialize() - }); - }); -<% end %> diff --git a/app/views/imports/_issues_mapping.js.erb b/app/views/imports/_issues_mapping.js.erb deleted file mode 100644 index 012ccc5..0000000 --- a/app/views/imports/_issues_mapping.js.erb +++ /dev/null @@ -1 +0,0 @@ -$('#fields-mapping').html('<%= escape_javascript(render :partial => 'issues_fields_mapping') %>'); diff --git a/app/views/imports/_issues_saved_objects.html.erb b/app/views/imports/_issues_saved_objects.html.erb deleted file mode 100644 index f708a1c..0000000 --- a/app/views/imports/_issues_saved_objects.html.erb +++ /dev/null @@ -1,7 +0,0 @@ -
      - <% saved_objects.each do |issue| %> -
    • <%= link_to_issue issue %>
    • - <% end %> -
    - -

    <%= link_to l(:label_issue_view_all), issues_path(:set_filter => 1, :status_id => '*', :issue_id => saved_objects.map(&:id).join(',')) %>

    diff --git a/app/views/imports/_issues_sidebar.html.erb b/app/views/imports/_issues_sidebar.html.erb deleted file mode 100644 index e098175..0000000 --- a/app/views/imports/_issues_sidebar.html.erb +++ /dev/null @@ -1,3 +0,0 @@ -<% content_for :sidebar do %> - <%= render :partial => 'issues/sidebar' %> -<% end %> diff --git a/app/views/imports/_time_entries_fields_mapping.html.erb b/app/views/imports/_time_entries_fields_mapping.html.erb deleted file mode 100644 index 65d6d09..0000000 --- a/app/views/imports/_time_entries_fields_mapping.html.erb +++ /dev/null @@ -1,48 +0,0 @@ -

    - - <%= select_tag 'import_settings[mapping][project_id]', - options_for_select(project_tree_options_for_select(@import.allowed_target_projects, :selected => @import.project)), - :id => 'import_mapping_project_id' %> -

    -

    - - <%= mapping_select_tag @import, 'activity', :required => true, - :values => @import.allowed_target_activities.sorted.map {|t| [t.name, t.id]} %> -

    - -
    -
    - <% if User.current.allowed_to?(:log_time_for_other_users, @import.project) %> -

    - - <%= mapping_select_tag @import, 'user_id', :required => true, - :values => @import.allowed_target_users.map {|u| [u.name, u.id]}, :default_value => "value:#{User.current.id}" %> -

    - <% end %> -

    - - <%= mapping_select_tag @import, 'issue_id' %> -

    -

    - - <%= mapping_select_tag @import, 'spent_on', :required => true %> -

    -

    - - <%= mapping_select_tag @import, 'hours', :required => true %> -

    -

    - - <%= mapping_select_tag @import, 'comments' %> -

    -
    - -
    - <% @custom_fields.each do |field| %> -

    - - <%= mapping_select_tag @import, "cf_#{field.id}", :required => field.is_required? %> -

    - <% end %> -
    -
    diff --git a/app/views/imports/_time_entries_mapping.html.erb b/app/views/imports/_time_entries_mapping.html.erb deleted file mode 100644 index 15bc7dd..0000000 --- a/app/views/imports/_time_entries_mapping.html.erb +++ /dev/null @@ -1,18 +0,0 @@ -
    - <%= l(:label_fields_mapping) %> -
    - <%= render :partial => 'time_entries_fields_mapping' %> -
    -
    - -<%= javascript_tag do %> -$(document).ready(function() { - $('#fields-mapping').on('change', '#import_mapping_project_id', function(){ - $.ajax({ - url: '<%= import_mapping_path(@import, :format => 'js') %>', - type: 'post', - data: $('#import-form').serialize() - }); - }); -}); -<% end %> diff --git a/app/views/imports/_time_entries_mapping.js.erb b/app/views/imports/_time_entries_mapping.js.erb deleted file mode 100644 index 1448fc1..0000000 --- a/app/views/imports/_time_entries_mapping.js.erb +++ /dev/null @@ -1 +0,0 @@ -$('#fields-mapping').html('<%= escape_javascript(render :partial => 'time_entries_fields_mapping') %>'); diff --git a/app/views/imports/_time_entries_saved_objects.html.erb b/app/views/imports/_time_entries_saved_objects.html.erb deleted file mode 100644 index 0024015..0000000 --- a/app/views/imports/_time_entries_saved_objects.html.erb +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - <% saved_objects.each do |time_entry| %> - - - - - - - - - - <% end %> - -
    <%= t(:field_project) %><%= t(:field_user) %><%= t(:field_activity) %><%= t(:field_issue) %><%= t(:field_spent_on) %><%= t(:field_hours) %><%= t(:field_comments) %>
    <%= link_to_project(time_entry.project, :jump => 'time_entries') if time_entry.project %><%= link_to_user time_entry.user %><%= time_entry.activity.name if time_entry.activity %><%= link_to_issue time_entry.issue if time_entry.issue %><%= format_date(time_entry.spent_on) %><%= l_hours_short(time_entry.hours) %><%= time_entry.comments %>
    diff --git a/app/views/imports/_time_entries_sidebar.html.erb b/app/views/imports/_time_entries_sidebar.html.erb deleted file mode 100644 index 396e4ab..0000000 --- a/app/views/imports/_time_entries_sidebar.html.erb +++ /dev/null @@ -1,3 +0,0 @@ -<% content_for :sidebar do %> - <%= render :partial => 'timelog/sidebar' %> -<% end %> diff --git a/app/views/imports/mapping.html.erb b/app/views/imports/mapping.html.erb deleted file mode 100644 index d5095bf..0000000 --- a/app/views/imports/mapping.html.erb +++ /dev/null @@ -1,35 +0,0 @@ -

    <%= import_title %>

    - -<%= form_tag(import_mapping_path(@import), :id => "import-form") do %> - <%= render :partial => "#{import_partial_prefix}_mapping" %> - -
    - <%= l(:label_file_content_preview) %> - -
    - - <% @import.first_rows.each do |row| %> - - <%= row.map {|c| content_tag 'td', truncate(c.to_s, :length => 50) }.join("").html_safe %> - - <% end %> -
    -
    -
    - -

    - <%= button_tag("\xc2\xab " + l(:label_previous), :name => 'previous') %> - <%= submit_tag l(:button_import) %> -

    -<% end %> - -<%= render :partial => "#{import_partial_prefix}_sidebar" %> - -<%= javascript_tag do %> -$(document).ready(function() { - $('#import-form').submit(function(){ - $('#import-details').show().addClass('ajax-loading'); - $('#import-progress').progressbar({value: 0, max: <%= @import.total_items || 0 %>}); - }); -}); -<% end %> diff --git a/app/views/imports/mapping.js.erb b/app/views/imports/mapping.js.erb deleted file mode 100644 index 4a43584..0000000 --- a/app/views/imports/mapping.js.erb +++ /dev/null @@ -1 +0,0 @@ -<%= render :partial => "#{import_partial_prefix}_mapping" %> diff --git a/app/views/imports/new.html.erb b/app/views/imports/new.html.erb deleted file mode 100644 index e7ca824..0000000 --- a/app/views/imports/new.html.erb +++ /dev/null @@ -1,15 +0,0 @@ -

    <%= import_title %>

    - -<%= form_tag(imports_path, :multipart => true) do %> - <%= hidden_field_tag 'type', @import.type %> - <%= hidden_field_tag 'project_id', params[:project_id] %> -
    - <%= l(:label_select_file_to_import) %> (CSV) -

    - <%= file_field_tag 'file' %> -

    -
    -

    <%= submit_tag l(:label_next).html_safe + " »".html_safe, :name => nil %>

    -<% end %> - -<%= render :partial => "#{import_partial_prefix}_sidebar" %> diff --git a/app/views/imports/run.html.erb b/app/views/imports/run.html.erb deleted file mode 100644 index 50b4783..0000000 --- a/app/views/imports/run.html.erb +++ /dev/null @@ -1,18 +0,0 @@ -

    <%= import_title %>

    - -
    -
    0 / <%= @import.total_items.to_i %>
    -
    - -<%= render :partial => "#{import_partial_prefix}_sidebar" %> - -<%= javascript_tag do %> -$(document).ready(function() { - $('#import-details').addClass('ajax-loading'); - $('#import-progress').progressbar({value: 0, max: <%= @import.total_items.to_i %>}); - $.ajax({ - url: '<%= import_run_path(@import, :format => 'js') %>', - type: 'post' - }); -}); -<% end %> diff --git a/app/views/imports/run.js.erb b/app/views/imports/run.js.erb deleted file mode 100644 index 232904d..0000000 --- a/app/views/imports/run.js.erb +++ /dev/null @@ -1,11 +0,0 @@ -$('#import-progress').progressbar({value: <%= @current.to_i %>}); -$('#progress-label').text("<%= @current.to_i %> / <%= @import.total_items.to_i %>"); - -<% if @import.finished? %> -window.location.href='<%= import_path(@import) %>'; -<% else %> -$.ajax({ - url: '<%= import_run_path(@import, :format => 'js') %>', - type: 'post' -}); -<% end %> diff --git a/app/views/imports/settings.html.erb b/app/views/imports/settings.html.erb deleted file mode 100644 index c538ea9..0000000 --- a/app/views/imports/settings.html.erb +++ /dev/null @@ -1,34 +0,0 @@ -

    <%= import_title %>

    - -<%= form_tag(import_settings_path(@import), :id => "import-form") do %> -
    - <%= l(:label_options) %> -

    - - <%= select_tag 'import_settings[separator]', - options_for_select([[l(:label_comma_char), ','], [l(:label_semi_colon_char), ';']], @import.settings['separator']) %> -

    -

    - - <%= select_tag 'import_settings[wrapper]', - options_for_select([[l(:label_quote_char), "'"], [l(:label_double_quote_char), '"']], @import.settings['wrapper']) %> -

    -

    - - <%= select_tag 'import_settings[encoding]', options_for_select(Setting::ENCODINGS, @import.settings['encoding']) %> -

    -

    - - <%= select_tag 'import_settings[date_format]', options_for_select(date_format_options, @import.settings['date_format']) %> -

    -
    -

    - - <%= hidden_field_tag 'import_settings[notifications]', '0', :id => nil %> - <%= check_box_tag 'import_settings[notifications]', '1', "#{@import.settings['notifications']}" == '1' %> -

    -
    -

    <%= submit_tag l(:label_next).html_safe + " »".html_safe, :name => nil %>

    -<% end %> - -<%= render :partial => "#{import_partial_prefix}_sidebar" %> diff --git a/app/views/imports/show.html.erb b/app/views/imports/show.html.erb deleted file mode 100644 index ca963ab..0000000 --- a/app/views/imports/show.html.erb +++ /dev/null @@ -1,30 +0,0 @@ -

    <%= import_title %>

    - -<% if @import.saved_items.count > 0 %> -

    <%= l(:notice_import_finished, :count => @import.saved_items.count) %>:

    - - <%= render :partial => "#{import_partial_prefix}_saved_objects", :locals => { saved_objects: @import.saved_objects } %> -<% end %> - -<% if @import.unsaved_items.count > 0 %> -

    <%= l(:notice_import_finished_with_errors, :count => @import.unsaved_items.count, :total => @import.total_items) %>:

    - - - - - - - - - - <% @import.unsaved_items.each do |item| %> - - - - - <% end %> - -
    PositionMessage
    <%= item.position %><%= simple_format_without_paragraph item.message %>
    -<% end %> - -<%= render :partial => "#{import_partial_prefix}_sidebar" %> diff --git a/app/views/issue_categories/_form.html.erb b/app/views/issue_categories/_form.html.erb deleted file mode 100644 index 8a55d9e..0000000 --- a/app/views/issue_categories/_form.html.erb +++ /dev/null @@ -1,6 +0,0 @@ -<%= error_messages_for 'category' %> - -
    -

    <%= f.text_field :name, :size => 60, :required => true %>

    -

    <%= f.select :assigned_to_id, principals_options_for_select(@project.assignable_users, @category.assigned_to), :include_blank => true %>

    -
    diff --git a/app/views/issue_categories/_new_modal.html.erb b/app/views/issue_categories/_new_modal.html.erb deleted file mode 100644 index 9ab1595..0000000 --- a/app/views/issue_categories/_new_modal.html.erb +++ /dev/null @@ -1,9 +0,0 @@ -

    <%=l(:label_issue_category_new)%>

    - -<%= labelled_form_for @category, :as => 'issue_category', :url => project_issue_categories_path(@project), :remote => true do |f| %> -<%= render :partial => 'issue_categories/form', :locals => { :f => f } %> -

    - <%= submit_tag l(:button_create), :name => nil %> - <%= link_to_function l(:button_cancel), "hideModal(this);" %> -

    -<% end %> diff --git a/app/views/issue_categories/create.js.erb b/app/views/issue_categories/create.js.erb deleted file mode 100644 index c4253b9..0000000 --- a/app/views/issue_categories/create.js.erb +++ /dev/null @@ -1,3 +0,0 @@ -hideModal(); -<% select = content_tag('select', content_tag('option') + options_from_collection_for_select(@project.issue_categories, 'id', 'name', @category.id), :id => 'issue_category_id', :name => 'issue[category_id]') %> -$('#issue_category_id').replaceWith('<%= escape_javascript(select) %>'); diff --git a/app/views/issue_categories/destroy.html.erb b/app/views/issue_categories/destroy.html.erb deleted file mode 100644 index 5f13eed..0000000 --- a/app/views/issue_categories/destroy.html.erb +++ /dev/null @@ -1,16 +0,0 @@ -

    <%=l(:label_issue_category)%>: <%=h @category.name %>

    - -<%= form_tag(issue_category_path(@category), :method => :delete) do %> -
    -

    <%= l(:text_issue_category_destroy_question, @issue_count) %>

    -


    -<% if @categories.size > 0 %> -: -<%= label_tag "reassign_to_id", l(:description_issue_category_reassign), :class => "hidden-for-sighted" %> -<%= select_tag 'reassign_to_id', options_from_collection_for_select(@categories, 'id', 'name') %>

    -<% end %> -
    - -<%= submit_tag l(:button_apply) %> -<%= link_to l(:button_cancel), :controller => 'projects', :action => 'settings', :id => @project, :tab => 'categories' %> -<% end %> diff --git a/app/views/issue_categories/edit.html.erb b/app/views/issue_categories/edit.html.erb deleted file mode 100644 index c04aacb..0000000 --- a/app/views/issue_categories/edit.html.erb +++ /dev/null @@ -1,7 +0,0 @@ -

    <%=l(:label_issue_category)%>

    - -<%= labelled_form_for @category, :as => :issue_category, - :url => issue_category_path(@category), :html => {:method => :put} do |f| %> -<%= render :partial => 'issue_categories/form', :locals => { :f => f } %> -<%= submit_tag l(:button_save) %> -<% end %> diff --git a/app/views/issue_categories/index.api.rsb b/app/views/issue_categories/index.api.rsb deleted file mode 100644 index 685d8a5..0000000 --- a/app/views/issue_categories/index.api.rsb +++ /dev/null @@ -1,10 +0,0 @@ -api.array :issue_categories, api_meta(:total_count => @categories.size) do - @categories.each do |category| - api.issue_category do - api.id category.id - api.project(:id => category.project_id, :name => category.project.name) unless category.project.nil? - api.name category.name - api.assigned_to(:id => category.assigned_to_id, :name => category.assigned_to.name) unless category.assigned_to.nil? - end - end -end diff --git a/app/views/issue_categories/new.html.erb b/app/views/issue_categories/new.html.erb deleted file mode 100644 index b8ecf89..0000000 --- a/app/views/issue_categories/new.html.erb +++ /dev/null @@ -1,7 +0,0 @@ -

    <%=l(:label_issue_category_new)%>

    - -<%= labelled_form_for @category, :as => :issue_category, - :url => project_issue_categories_path(@project) do |f| %> -<%= render :partial => 'issue_categories/form', :locals => { :f => f } %> -<%= submit_tag l(:button_create) %> -<% end %> diff --git a/app/views/issue_categories/new.js.erb b/app/views/issue_categories/new.js.erb deleted file mode 100644 index 0d62349..0000000 --- a/app/views/issue_categories/new.js.erb +++ /dev/null @@ -1,2 +0,0 @@ -$('#ajax-modal').html('<%= escape_javascript(render :partial => 'issue_categories/new_modal') %>'); -showModal('ajax-modal', '600px'); diff --git a/app/views/issue_categories/show.api.rsb b/app/views/issue_categories/show.api.rsb deleted file mode 100644 index cefa7c8..0000000 --- a/app/views/issue_categories/show.api.rsb +++ /dev/null @@ -1,6 +0,0 @@ -api.issue_category do - api.id @category.id - api.project(:id => @category.project_id, :name => @category.project.name) unless @category.project.nil? - api.name @category.name - api.assigned_to(:id => @category.assigned_to_id, :name => @category.assigned_to.name) unless @category.assigned_to.nil? -end diff --git a/app/views/issue_relations/_form.html.erb b/app/views/issue_relations/_form.html.erb deleted file mode 100644 index 3a1018c..0000000 --- a/app/views/issue_relations/_form.html.erb +++ /dev/null @@ -1,14 +0,0 @@ -<%= error_messages_for 'relation' %> - -

    <%= f.select :relation_type, collection_for_relation_type_select, {}, :onchange => "setPredecessorFieldsVisibility();" %> -<%= l(:label_issue) %> #<%= f.text_field :issue_to_id, :size => 10 %> - -<%= submit_tag l(:button_add) %> -<%= link_to_function l(:button_cancel), '$("#new-relation-form").hide();'%> -

    - -<%= javascript_tag "observeAutocompleteField('relation_issue_to_id', '#{escape_javascript auto_complete_issues_path(:project_id => @project, :scope => (Setting.cross_project_issue_relations? ? 'all' : nil), :issue_id => @issue.id)}')" %> - -<%= javascript_tag "setPredecessorFieldsVisibility();" %> diff --git a/app/views/issue_relations/create.js.erb b/app/views/issue_relations/create.js.erb deleted file mode 100644 index 1572a91..0000000 --- a/app/views/issue_relations/create.js.erb +++ /dev/null @@ -1,7 +0,0 @@ -$('#relations').html('<%= escape_javascript(render :partial => 'issues/relations') %>'); -<% if @relation.errors.empty? %> - $('#relation_delay').val(''); - $('#relation_issue_to_id').val(''); -<% end %> -$('#new-relation-form').show(); -$('#relation_issue_to_id').focus(); diff --git a/app/views/issue_relations/destroy.js.erb b/app/views/issue_relations/destroy.js.erb deleted file mode 100644 index f5f29d3..0000000 --- a/app/views/issue_relations/destroy.js.erb +++ /dev/null @@ -1 +0,0 @@ -$('#relation-<%= @relation.id %>').remove(); diff --git a/app/views/issue_relations/index.api.rsb b/app/views/issue_relations/index.api.rsb deleted file mode 100644 index 11ff309..0000000 --- a/app/views/issue_relations/index.api.rsb +++ /dev/null @@ -1,11 +0,0 @@ -api.array :relations do - @relations.each do |relation| - api.relation do - api.id relation.id - api.issue_id relation.issue_from_id - api.issue_to_id relation.issue_to_id - api.relation_type relation.relation_type - api.delay relation.delay - end - end -end diff --git a/app/views/issue_relations/show.api.rsb b/app/views/issue_relations/show.api.rsb deleted file mode 100644 index bffad94..0000000 --- a/app/views/issue_relations/show.api.rsb +++ /dev/null @@ -1,7 +0,0 @@ -api.relation do - api.id @relation.id - api.issue_id @relation.issue_from_id - api.issue_to_id @relation.issue_to_id - api.relation_type @relation.relation_type - api.delay @relation.delay -end diff --git a/app/views/issue_statuses/_form.html.erb b/app/views/issue_statuses/_form.html.erb deleted file mode 100644 index 2c333a3..0000000 --- a/app/views/issue_statuses/_form.html.erb +++ /dev/null @@ -1,11 +0,0 @@ -<%= error_messages_for 'issue_status' %> - -
    -

    <%= f.text_field :name, :required => true %>

    -<% if Issue.use_status_for_done_ratio? %> -

    <%= f.select :default_done_ratio, ((0..10).to_a.collect {|r| ["#{r*10} %", r*10] }), :include_blank => true, :label => :field_done_ratio %>

    -<% end %> -

    <%= f.check_box :is_closed %>

    - -<%= call_hook(:view_issue_statuses_form, :issue_status => @issue_status) %> -
    diff --git a/app/views/issue_statuses/edit.html.erb b/app/views/issue_statuses/edit.html.erb deleted file mode 100644 index 425ab43..0000000 --- a/app/views/issue_statuses/edit.html.erb +++ /dev/null @@ -1,6 +0,0 @@ -<%= title [l(:label_issue_status_plural), issue_statuses_path], @issue_status.name %> - -<%= labelled_form_for @issue_status do |f| %> - <%= render :partial => 'form', :locals => {:f => f} %> - <%= submit_tag l(:button_save) %> -<% end %> diff --git a/app/views/issue_statuses/index.api.rsb b/app/views/issue_statuses/index.api.rsb deleted file mode 100644 index 4f3b732..0000000 --- a/app/views/issue_statuses/index.api.rsb +++ /dev/null @@ -1,9 +0,0 @@ -api.array :issue_statuses do - @issue_statuses.each do |status| - api.issue_status do - api.id status.id - api.name status.name - api.is_closed status.is_closed - end - end -end diff --git a/app/views/issue_statuses/index.html.erb b/app/views/issue_statuses/index.html.erb deleted file mode 100644 index b4802c2..0000000 --- a/app/views/issue_statuses/index.html.erb +++ /dev/null @@ -1,46 +0,0 @@ -
    -<%= link_to l(:label_issue_status_new), new_issue_status_path, :class => 'icon icon-add' %> -<%= link_to(l(:label_update_issue_done_ratios), update_issue_done_ratio_issue_statuses_path, :class => 'icon icon-multiple', :method => 'post', :data => {:confirm => l(:text_are_you_sure)}) if Issue.use_status_for_done_ratio? %> -
    - -

    <%=l(:label_issue_status_plural)%>

    - - - - - <% if Issue.use_status_for_done_ratio? %> - - <% end %> - - - - - -<% for status in @issue_statuses %> - - - <% if Issue.use_status_for_done_ratio? %> - - <% end %> - - - - -<% end %> - -
    <%=l(:field_status)%><%=l(:field_done_ratio)%><%=l(:field_is_closed)%>
    <%= link_to status.name, edit_issue_status_path(status) %><%= status.default_done_ratio %><%= checked_image status.is_closed? %> - <% unless WorkflowTransition.where('old_status_id = ? OR new_status_id = ?', status.id, status.id).exists? %> - - <%= l(:text_status_no_workflow) %> (<%= link_to l(:button_edit), workflows_edit_path(:used_statuses_only => 0) %>) - - <% end %> - - <%= reorder_handle(status) %> - <%= delete_link issue_status_path(status) %> -
    - -<% html_title(l(:label_issue_status_plural)) -%> - -<%= javascript_tag do %> - $(function() { $("table.issue_statuses tbody").positionedItems(); }); -<% end %> diff --git a/app/views/issue_statuses/new.html.erb b/app/views/issue_statuses/new.html.erb deleted file mode 100644 index 86f2131..0000000 --- a/app/views/issue_statuses/new.html.erb +++ /dev/null @@ -1,6 +0,0 @@ -<%= title [l(:label_issue_status_plural), issue_statuses_path], l(:label_issue_status_new) %> - -<%= labelled_form_for @issue_status do |f| %> - <%= render :partial => 'form', :locals => {:f => f} %> - <%= submit_tag l(:button_create) %> -<% end %> diff --git a/app/views/issues/_action_menu.html.erb b/app/views/issues/_action_menu.html.erb deleted file mode 100644 index bd7bcc0..0000000 --- a/app/views/issues/_action_menu.html.erb +++ /dev/null @@ -1,13 +0,0 @@ -
    -<%= link_to l(:button_edit), edit_issue_path(@issue), - :onclick => 'showAndScrollTo("update", "issue_notes"); return false;', - :class => 'icon icon-edit', :accesskey => accesskey(:edit) if @issue.editable? %> -<%= link_to l(:button_log_time), new_issue_time_entry_path(@issue), - :class => 'icon icon-time-add' if User.current.allowed_to?(:log_time, @project) %> -<%= watcher_link(@issue, User.current) %> -<%= link_to l(:button_copy), project_copy_issue_path(@project, @issue), - :class => 'icon icon-copy' if User.current.allowed_to?(:copy_issues, @project) && Issue.allowed_target_projects.any? %> -<%= link_to l(:button_delete), issue_path(@issue), - :data => {:confirm => issues_destroy_confirmation_message(@issue)}, - :method => :delete, :class => 'icon icon-del' if @issue.deletable? %> -
    diff --git a/app/views/issues/_action_menu_edit.html.erb b/app/views/issues/_action_menu_edit.html.erb deleted file mode 100644 index a189d7c..0000000 --- a/app/views/issues/_action_menu_edit.html.erb +++ /dev/null @@ -1,10 +0,0 @@ -
    -<%= render :partial => 'action_menu' %> - -
    -<% if @issue.editable? %> - -<% end %> diff --git a/app/views/issues/_attributes.html.erb b/app/views/issues/_attributes.html.erb deleted file mode 100644 index 332ecbf..0000000 --- a/app/views/issues/_attributes.html.erb +++ /dev/null @@ -1,88 +0,0 @@ -<%= labelled_fields_for :issue, @issue do |f| %> - -
    -
    -<% if @issue.safe_attribute?('status_id') && @allowed_statuses.present? %> -

    <%= f.select :status_id, (@allowed_statuses.collect {|p| [p.name, p.id]}), {:required => true}, - :onchange => "updateIssueFrom('#{escape_javascript(update_issue_form_path(@project, @issue))}', this)" %>

    -<%= hidden_field_tag 'was_default_status', @issue.status_id, :id => nil if @issue.status == @issue.default_status %> -<% else %> -

    <%= @issue.status %>

    -<% end %> - -<% if @issue.safe_attribute? 'priority_id' %> -

    <%= f.select :priority_id, (@priorities.collect {|p| [p.name, p.id]}), {:required => true} %>

    -<% end %> - -<% if @issue.safe_attribute? 'assigned_to_id' %> -

    <%= f.select :assigned_to_id, principals_options_for_select(@issue.assignable_users, @issue.assigned_to), - :include_blank => true, :required => @issue.required_attribute?('assigned_to_id') %>

    -<% end %> - -<% if @issue.safe_attribute?('category_id') && @issue.project.issue_categories.any? %> -

    <%= f.select :category_id, (@issue.project.issue_categories.collect {|c| [c.name, c.id]}), - {:include_blank => true, :required => @issue.required_attribute?('category_id')}, - :onchange => ("updateIssueFrom('#{escape_javascript(update_issue_form_path(@project, @issue))}', this)" if @issue.new_record?) %> -<%= link_to(l(:label_issue_category_new), - new_project_issue_category_path(@issue.project), - :remote => true, - :method => 'get', - :title => l(:label_issue_category_new), - :tabindex => 200, - :class => 'icon-only icon-add' - ) if User.current.allowed_to?(:manage_categories, @issue.project) %>

    -<% end %> - -<% if @issue.safe_attribute?('fixed_version_id') && @issue.assignable_versions.any? %> -

    <%= f.select :fixed_version_id, version_options_for_select(@issue.assignable_versions, @issue.fixed_version), - :include_blank => true, :required => @issue.required_attribute?('fixed_version_id') %> -<%= link_to(l(:label_version_new), - new_project_version_path(@issue.project), - :remote => true, - :method => 'get', - :title => l(:label_version_new), - :tabindex => 200, - :class => 'icon-only icon-add' - ) if User.current.allowed_to?(:manage_versions, @issue.project) %> -

    -<% end %> -
    - -
    -<% if @issue.safe_attribute? 'parent_issue_id' %> -

    <%= f.text_field :parent_issue_id, :size => 10, - :required => @issue.required_attribute?('parent_issue_id') %>

    -<%= javascript_tag "observeAutocompleteField('issue_parent_issue_id', '#{escape_javascript(auto_complete_issues_path(:project_id => @issue.project, :scope => Setting.cross_project_subtasks, :status => @issue.closed? ? 'c' : 'o', :issue_id => @issue.id))}')" %> -<% end %> - -<% if @issue.safe_attribute? 'start_date' %> -

    - <%= f.date_field(:start_date, :size => 10, :required => @issue.required_attribute?('start_date')) %> - <%= calendar_for('issue_start_date') %> -

    -<% end %> - -<% if @issue.safe_attribute? 'due_date' %> -

    - <%= f.date_field(:due_date, :size => 10, :required => @issue.required_attribute?('due_date')) %> - <%= calendar_for('issue_due_date') %> -

    -<% end %> - -<% if @issue.safe_attribute? 'estimated_hours' %> -

    <%= f.hours_field :estimated_hours, :size => 3, :required => @issue.required_attribute?('estimated_hours') %> <%= l(:field_hours) %>

    -<% end %> - -<% if @issue.safe_attribute?('done_ratio') && Issue.use_field_for_done_ratio? %> -

    <%= f.select :done_ratio, ((0..10).to_a.collect {|r| ["#{r*10} %", r*10] }), :required => @issue.required_attribute?('done_ratio') %>

    -<% end %> -
    -
    - -<% if @issue.safe_attribute? 'custom_field_values' %> -<%= render :partial => 'issues/form_custom_fields' %> -<% end %> - -<% end %> - -<% include_calendar_headers_tags %> diff --git a/app/views/issues/_conflict.html.erb b/app/views/issues/_conflict.html.erb deleted file mode 100644 index ea4c35d..0000000 --- a/app/views/issues/_conflict.html.erb +++ /dev/null @@ -1,30 +0,0 @@ -
    - <%= l(:notice_issue_update_conflict) %> - <% if @conflict_journals.present? %> -
    - <% @conflict_journals.sort_by(&:id).each do |journal| %> -
    -

    <%= authoring journal.created_on, journal.user, :label => :label_updated_time_by %>

    - <% if journal.details.any? %> -
      - <% details_to_strings(journal.details).each do |string| %> -
    • <%= string %>
    • - <% end %> -
    - <% end %> -
    - <%= textilizable(journal, :notes) unless journal.notes.blank? %> -
    -
    - <% end %> -
    - <% end %> -
    -

    -
    - <% if @issue.notes.present? %> -
    - <% end %> - -

    -

    <%= submit_tag l(:button_submit) %>

    diff --git a/app/views/issues/_edit.html.erb b/app/views/issues/_edit.html.erb deleted file mode 100644 index fa8486c..0000000 --- a/app/views/issues/_edit.html.erb +++ /dev/null @@ -1,82 +0,0 @@ -<%= labelled_form_for @issue, :html => {:id => 'issue-form', :multipart => true} do |f| %> - <%= error_messages_for 'issue', 'time_entry' %> - <%= render :partial => 'conflict' if @conflict %> -
    - <% if @issue.attributes_editable? %> -
    <%= l(:label_change_properties) %> -
    - <%= render :partial => 'form', :locals => {:f => f} %> -
    -
    - <% end %> - <% if User.current.allowed_to?(:log_time, @project) %> -
    <%= l(:button_log_time) %> - <%= labelled_fields_for :time_entry, @time_entry do |time_entry| %> -
    -
    -

    <%= time_entry.hours_field :hours, :size => 6, :label => :label_spent_time %> <%= l(:field_hours) %>

    -
    -
    -

    <%= time_entry.select :activity_id, activity_collection_for_select_options %>

    -
    -
    -

    <%= time_entry.text_field :comments, :size => 60 %>

    - <% @time_entry.editable_custom_field_values.each do |value| %> -

    <%= custom_field_tag_with_label :time_entry, value %>

    - <% end %> - <% end %> -
    - <% end %> - <% if @issue.notes_addable? %> -
    <%= l(:field_notes) %> - <%= f.text_area :notes, :cols => 60, :rows => 10, :class => 'wiki-edit', - :data => { - :auto_complete => true, - :issues_url => auto_complete_issues_path(:project_id => @issue.project, :q => '') - }, - :no_label => true %> - <%= wikitoolbar_for 'issue_notes', preview_issue_path(:project_id => @project, :issue_id => @issue) %> - - <% if @issue.safe_attribute? 'private_notes' %> - <%= f.check_box :private_notes, :no_label => true %> - <% end %> - - <%= call_hook(:view_issues_edit_notes_bottom, { :issue => @issue, :notes => @notes, :form => f }) %> -
    - -
    <%= l(:label_attachment_plural) %> - <% if @issue.attachments.any? && @issue.safe_attribute?('deleted_attachment_ids') %> -
    <%= link_to l(:label_edit_attachments), '#', :onclick => "$('#existing-attachments').toggle(); return false;" %>
    -
    - <% @issue.attachments.each do |attachment| %> - - <%= text_field_tag '', attachment.filename, :class => "icon icon-attachment filename", :disabled => true %> - - - <% end %> -
    -
    - <% end %> - -
    - <%= render :partial => 'attachments/form', :locals => {:container => @issue} %> -
    -
    - <% end %> -
    - - <%= f.hidden_field :lock_version %> - <%= hidden_field_tag 'last_journal_id', params[:last_journal_id] || @issue.last_journal_id %> - <%= submit_tag l(:button_submit) %> - <%= link_to l(:button_cancel), issue_path(id: @issue.id), :onclick => params[:action] == 'show' ? "$('#update').hide(); return false;" : '' %> - - <%= hidden_field_tag 'prev_issue_id', @prev_issue_id if @prev_issue_id %> - <%= hidden_field_tag 'next_issue_id', @next_issue_id if @next_issue_id %> - <%= hidden_field_tag 'issue_position', @issue_position if @issue_position %> - <%= hidden_field_tag 'issue_count', @issue_count if @issue_count %> -<% end %> diff --git a/app/views/issues/_form.html.erb b/app/views/issues/_form.html.erb deleted file mode 100644 index fdf7291..0000000 --- a/app/views/issues/_form.html.erb +++ /dev/null @@ -1,64 +0,0 @@ -<%= labelled_fields_for :issue, @issue do |f| %> -<%= call_hook(:view_issues_form_details_top, { :issue => @issue, :form => f }) %> -<%= hidden_field_tag 'form_update_triggered_by', '' %> -<%= hidden_field_tag 'back_url', params[:back_url], :id => nil if params[:back_url].present? %> - -<% if @issue.safe_attribute? 'is_private' %> -

    - <%= f.check_box :is_private, :no_label => true %> -

    -<% end %> - -<% projects = @issue.allowed_target_projects(User.current, @project) %> -<% if (@issue.safe_attribute?('project_id') || @issue.project_id_changed?) && (@project.nil? || projects.length > 1 || @issue.copy?) %> -

    <%= f.select :project_id, project_tree_options_for_select(projects, :selected => @issue.project), {:required => true}, - :onchange => "updateIssueFrom('#{escape_javascript update_issue_form_path(@project, @issue)}', this)" %>

    -<% end %> - -<% if @issue.safe_attribute?('tracker_id') || (@issue.persisted? && @issue.tracker_id_changed?) %> -

    - <%= f.select :tracker_id, trackers_options_for_select(@issue), {:required => true}, - :onchange => "updateIssueFrom('#{escape_javascript update_issue_form_path(@project, @issue)}', this)", - :title => @issue.tracker.description %> - <%= content_tag 'a', l(:label_open_trackers_description), :class => 'icon-only icon-help', :title => l(:label_open_trackers_description), :onclick => "showModal('trackers_description', '500px'); return false;", :href => '#' if trackers_for_select(@issue).any? {|t| t.description.present? } %> -

    - <%= render partial: 'issues/trackers_description', locals: {trackers: trackers_for_select(@issue)} %> -<% end %> - -<% if @issue.safe_attribute? 'subject' %> -

    <%= f.text_field :subject, :size => 80, :maxlength => 255, :required => true %>

    -<% end %> - -<% if @issue.safe_attribute? 'description' %> -

    - <%= f.label_for_field :description, :required => @issue.required_attribute?('description') %> - <%= link_to_function content_tag(:span, l(:button_edit), :class => 'icon icon-edit'), '$(this).hide(); $("#issue_description_and_toolbar").show()' unless @issue.new_record? %> - <%= content_tag 'span', :id => "issue_description_and_toolbar", :style => (@issue.new_record? ? nil : 'display:none') do %> - <%= f.text_area :description, :cols => 60, :accesskey => accesskey(:edit), :class => 'wiki-edit', - :rows => [[10, @issue.description.to_s.length / 50].max, 20].min, - :data => { - :auto_complete => true, - :issues_url => auto_complete_issues_path(:project_id => @issue.project, :q => '') - }, - :no_label => true %> - <% end %> -

    -<%= wikitoolbar_for 'issue_description', preview_issue_path(:project_id => @issue.project, :issue_id => @issue.id) %> -<% end %> - -
    - <%= render :partial => 'issues/attributes' %> -
    - -<%= call_hook(:view_issues_form_details_bottom, { :issue => @issue, :form => f }) %> -<% end %> - -<% heads_for_wiki_formatter %> - -<%= javascript_tag do %> -$(document).ready(function(){ - $("#issue_tracker_id, #issue_status_id").each(function(){ - $(this).val($(this).find("option[selected=selected]").val()); - }); -}); -<% end %> diff --git a/app/views/issues/_form_custom_fields.html.erb b/app/views/issues/_form_custom_fields.html.erb deleted file mode 100644 index fddcd74..0000000 --- a/app/views/issues/_form_custom_fields.html.erb +++ /dev/null @@ -1,24 +0,0 @@ -<% custom_field_values = @issue.editable_custom_field_values %> -<% custom_field_values_full_width = custom_field_values.select { |value| value.custom_field.full_width_layout? } %> -<% custom_field_values -= custom_field_values_full_width %> - -<% if custom_field_values.present? %> -
    -
    -<% i = 0 %> -<% split_on = (custom_field_values.size / 2.0).ceil - 1 %> -<% custom_field_values.each do |value| %> -

    <%= custom_field_tag_with_label :issue, value, :required => @issue.required_attribute?(value.custom_field_id) %>

    -<% if i == split_on -%> -
    -<% end -%> -<% i += 1 -%> -<% end -%> -
    -
    -<% end %> - -<% custom_field_values_full_width.each do |value| %> -

    <%= custom_field_tag_with_label :issue, value, :required => @issue.required_attribute?(value.custom_field_id) %>

    - <%= wikitoolbar_for "issue_custom_field_values_#{value.custom_field_id}", preview_issue_path(:project_id => @issue.project, :issue_id => @issue.id) if value.custom_field.full_text_formatting? %> -<% end %> diff --git a/app/views/issues/_list.html.erb b/app/views/issues/_list.html.erb deleted file mode 100644 index 4a7163f..0000000 --- a/app/views/issues/_list.html.erb +++ /dev/null @@ -1,57 +0,0 @@ -<% query_options = nil unless defined?(query_options) %> -<% query_options ||= {} %> - -<%= form_tag({}, :data => {:cm_url => issues_context_menu_path}) do -%> -<%= hidden_field_tag 'back_url', url_for(:params => request.query_parameters), :id => nil %> -<%= query_columns_hidden_tags(query) %> -
    - - - - - <% query.inline_columns.each do |column| %> - <%= column_header(query, column, query_options) %> - <% end %> - - - - - <% grouped_issue_list(issues, query) do |issue, level, group_name, group_count, group_totals| -%> - <% if group_name %> - <% reset_cycle %> - - - - <% end %> - "> - - <% query.inline_columns.each do |column| %> - <%= content_tag('td', column_content(column, issue), :class => column.css_classes) %> - <% end %> - - - <% query.block_columns.each do |column| - if (text = column_content(column, issue)) && text.present? -%> - - - - <% end -%> - <% end -%> - <% end -%> - -
    - <%= check_box_tag 'check_all', '', false, :class => 'toggle-selection', - :title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}" %> -
    -   - <%= group_name %> <%= group_count %> <%= group_totals %> - <%= link_to_function("#{l(:button_collapse_all)}/#{l(:button_expand_all)}", - "toggleAllRowGroups(this)", :class => 'toggle-all') %> -
    <%= check_box_tag("ids[]", issue.id, false, :id => nil) %><%= link_to_context_menu %>
    - <% if query.block_columns.count > 1 %> - <%= column.caption %> - <% end %> - <%= text %> -
    -
    -<% end -%> diff --git a/app/views/issues/_relations.html.erb b/app/views/issues/_relations.html.erb deleted file mode 100644 index 3825fe6..0000000 --- a/app/views/issues/_relations.html.erb +++ /dev/null @@ -1,22 +0,0 @@ -
    -<% if User.current.allowed_to?(:manage_issue_relations, @project) %> - <%= toggle_link l(:button_add), 'new-relation-form', {:focus => 'relation_issue_to_id'} %> -<% end %> -
    - -

    <%=l(:label_related_issues)%>

    - -<% if @relations.present? %> -<%= form_tag({}, :data => {:cm_url => issues_context_menu_path}) do %> - <%= render_issue_relations(@issue, @relations) %> -<% end %> -<% end %> - -<%= form_for @relation, { - :as => :relation, :remote => true, - :url => issue_relations_path(@issue), - :method => :post, - :html => {:id => 'new-relation-form', :style => 'display: none;'} - } do |f| %> -<%= render :partial => 'issue_relations/form', :locals => {:f => f}%> -<% end %> diff --git a/app/views/issues/_sidebar.html.erb b/app/views/issues/_sidebar.html.erb deleted file mode 100644 index 11174d3..0000000 --- a/app/views/issues/_sidebar.html.erb +++ /dev/null @@ -1,5 +0,0 @@ -<%= call_hook(:view_issues_sidebar_issues_bottom) %> -<%= call_hook(:view_issues_sidebar_planning_bottom) %> - -<%= render_sidebar_queries(IssueQuery, @project) %> -<%= call_hook(:view_issues_sidebar_queries_bottom) %> diff --git a/app/views/issues/_trackers_description.html.erb b/app/views/issues/_trackers_description.html.erb deleted file mode 100644 index a021141..0000000 --- a/app/views/issues/_trackers_description.html.erb +++ /dev/null @@ -1,22 +0,0 @@ -<% if trackers.any? {|t| t.description.present? } %> - -<% end %> -<%= javascript_tag do %> - function selectTracker(id) { - var target = $('#issue_tracker_id'); - target.attr("selected", false); - target.find('option[value="' + id + '"]').prop('selected', true); - target.trigger('change'); - hideModal('#trackers_description h3'); - } -<% end %> diff --git a/app/views/issues/_watchers_form.html.erb b/app/views/issues/_watchers_form.html.erb deleted file mode 100644 index b55e602..0000000 --- a/app/views/issues/_watchers_form.html.erb +++ /dev/null @@ -1,15 +0,0 @@ -<% if @issue.safe_attribute? 'watcher_user_ids' -%> - <%= hidden_field_tag 'issue[watcher_user_ids][]', '' %> -

    - - <%= watchers_checkboxes(@issue, users_for_new_issue_watchers(@issue)) %> - - - <%= link_to l(:label_search_for_watchers), - {:controller => 'watchers', :action => 'new', :project_id => @issue.project}, - :class => 'icon icon-add-bullet', - :remote => true, - :method => 'get' %> - -

    -<% end %> diff --git a/app/views/issues/bulk_edit.html.erb b/app/views/issues/bulk_edit.html.erb deleted file mode 100644 index f5590e9..0000000 --- a/app/views/issues/bulk_edit.html.erb +++ /dev/null @@ -1,249 +0,0 @@ -

    <%= @copy ? l(:button_copy) : l(:label_bulk_edit_selected_issues) %>

    - -<% if @saved_issues && @unsaved_issues.present? %> -
    - - <%= l(:notice_failed_to_save_issues, - :count => @unsaved_issues.size, - :total => @saved_issues.size, - :ids => @unsaved_issues.map {|i| "##{i.id}"}.join(', ')) %> - -
      - <% bulk_edit_error_messages(@unsaved_issues).each do |message| %> -
    • <%= message %>
    • - <% end %> -
    -
    -<% end %> - -
      -<% @issues.each do |issue| %> - <%= content_tag 'li', link_to_issue(issue) %> -<% end %> -
    - -<%= form_tag(bulk_update_issues_path, :id => 'bulk_edit_form') do %> -<%= @issues.collect {|i| hidden_field_tag('ids[]', i.id, :id => nil)}.join("\n").html_safe %> -
    -
    -<%= l(:label_change_properties) %> - -
    -
    -<% if @allowed_projects.present? %> -

    - - <%= select_tag('issue[project_id]', - project_tree_options_for_select(@allowed_projects, - :include_blank => ((!@copy || (@projects & @allowed_projects == @projects)) ? l(:label_no_change_option) : false), - :selected => @target_project), - :onchange => "updateBulkEditFrom('#{escape_javascript url_for(:action => 'bulk_edit', :format => 'js')}')") %> -

    -<% end %> -

    - - <%= select_tag('issue[tracker_id]', - content_tag('option', l(:label_no_change_option), :value => '') + - options_from_collection_for_select(@trackers, :id, :name, @issue_params[:tracker_id]), - :onchange => "updateBulkEditFrom('#{escape_javascript url_for(:action => 'bulk_edit', :format => 'js')}')") %> -

    -<% if @available_statuses.any? %> -

    - - <%= select_tag('issue[status_id]', - content_tag('option', l(:label_no_change_option), :value => '') + - options_from_collection_for_select(@available_statuses, :id, :name, @issue_params[:status_id]), - :onchange => "updateBulkEditFrom('#{escape_javascript url_for(:action => 'bulk_edit', :format => 'js')}')") %> -

    -<% end %> - -<% if @safe_attributes.include?('priority_id') -%> -

    - - <%= select_tag('issue[priority_id]', - content_tag('option', l(:label_no_change_option), :value => '') + - options_from_collection_for_select(IssuePriority.active, :id, :name, @issue_params[:priority_id])) %> -

    -<% end %> - -<% if @safe_attributes.include?('assigned_to_id') -%> -

    - - <%= select_tag('issue[assigned_to_id]', - content_tag('option', l(:label_no_change_option), :value => '') + - content_tag('option', l(:label_nobody), :value => 'none', :selected => (@issue_params[:assigned_to_id] == 'none')) + - principals_options_for_select(@assignables, @issue_params[:assigned_to_id])) %> -

    -<% end %> - -<% if @safe_attributes.include?('category_id') -%> -

    - - <%= select_tag('issue[category_id]', content_tag('option', l(:label_no_change_option), :value => '') + - content_tag('option', l(:label_none), :value => 'none', :selected => (@issue_params[:category_id] == 'none')) + - options_from_collection_for_select(@categories, :id, :name, @issue_params[:category_id])) %> -

    -<% end %> - -<% if @safe_attributes.include?('fixed_version_id') -%> -

    - - <%= select_tag('issue[fixed_version_id]', content_tag('option', l(:label_no_change_option), :value => '') + - content_tag('option', l(:label_none), :value => 'none', :selected => (@issue_params[:fixed_version_id] == 'none')) + - version_options_for_select(@versions.sort, @issue_params[:fixed_version_id])) %> -

    -<% end %> - -<% @custom_fields.each do |custom_field| %> -

    - - <%= custom_field_tag_for_bulk_edit('issue', custom_field, @issues, @issue_params[:custom_field_values][custom_field.id.to_s]) %> -

    -<% end %> - -<% if @copy && Setting.link_copied_issue == 'ask' %> -

    - - <%= hidden_field_tag 'link_copy', '0' %> - <%= check_box_tag 'link_copy', '1', params[:link_copy] != 0 %> -

    -<% end %> - -<% if @copy && (@attachments_present || @subtasks_present || @watchers_present) %> -

    - - <% if @attachments_present %> - - <% end %> - <% if @subtasks_present %> - - <% end %> - <% if @watchers_present %> - - <% end %> -

    -<% end %> - -<%= call_hook(:view_issues_bulk_edit_details_bottom, { :issues => @issues }) %> -
    - -
    -<% if @safe_attributes.include?('is_private') %> -

    - - <%= select_tag('issue[is_private]', content_tag('option', l(:label_no_change_option), :value => '') + - content_tag('option', l(:general_text_Yes), :value => '1', :selected => (@issue_params[:is_private] == '1')) + - content_tag('option', l(:general_text_No), :value => '0', :selected => (@issue_params[:is_private] == '0'))) %> -

    -<% end %> - -<% if @safe_attributes.include?('parent_issue_id') && @project %> -

    - - <%= text_field_tag 'issue[parent_issue_id]', '', :size => 10, :value => @issue_params[:parent_issue_id] %> - -

    -<%= javascript_tag "observeAutocompleteField('issue_parent_issue_id', '#{escape_javascript auto_complete_issues_path(:project_id => @project, :scope => Setting.cross_project_subtasks)}')" %> -<% end %> - -<% if @safe_attributes.include?('start_date') %> -

    - - <%= date_field_tag 'issue[start_date]', '', :value => @issue_params[:start_date], :size => 10 %><%= calendar_for('issue_start_date') %> - -

    -<% end %> - -<% if @safe_attributes.include?('due_date') %> -

    - - <%= date_field_tag 'issue[due_date]', '', :value => @issue_params[:due_date], :size => 10 %><%= calendar_for('issue_due_date') %> - -

    -<% end %> - -<% if @safe_attributes.include?('estimated_hours') %> -

    - - <%= text_field_tag 'issue[estimated_hours]', '', :value => @issue_params[:estimated_hours], :size => 10 %> - -

    -<% end %> - -<% if @safe_attributes.include?('done_ratio') && Issue.use_field_for_done_ratio? %> -

    - - <%= select_tag 'issue[done_ratio]', options_for_select([[l(:label_no_change_option), '']] + (0..10).to_a.collect {|r| ["#{r*10} %", r*10] }, @issue_params[:done_ratio]) %> -

    -<% end %> -
    -
    -
    - -
    -<%= l(:field_notes) %> -<%= text_area_tag 'notes', @notes, :cols => 60, :rows => 10, :class => 'wiki-edit', - :data => { - :auto_complete => true, - :issues_url => auto_complete_issues_path(:project_id => @project, :q => '') - } -%> -<%= wikitoolbar_for 'notes' %> - -<% if @safe_attributes.include?('private_notes') %> - -<% end %> -
    -
    - -<% if @values_by_custom_field.present? %> -
    - <%= l(:warning_fields_cleared_on_bulk_edit) %>:
    - <%= safe_join(@values_by_custom_field.map {|field, ids| content_tag "span", "#{field.name} (#{ids.size})"}, ', ') %> -
    -<% end %> - -

    - <% if @copy %> - <%= hidden_field_tag 'copy', '1' %> - <%= submit_tag l(:button_copy) %> - <%= submit_tag l(:button_copy_and_follow), :name => 'follow' %> - <% elsif @target_project %> - <%= submit_tag l(:button_move) %> - <%= submit_tag l(:button_move_and_follow), :name => 'follow' %> - <% else %> - <%= submit_tag l(:button_submit) %> - <% end %> -

    - -<% end %> - -<%= javascript_tag do %> -$(window).on('load', function(){ - $(document).on('change', 'input[data-disables]', function(){ - if ($(this).prop('checked')){ - $($(this).data('disables')).attr('disabled', true).val(''); - } else { - $($(this).data('disables')).attr('disabled', false); - } - }); -}); -$(document).ready(function(){ - $('input[data-disables]').trigger('change'); -}); -<% end %> diff --git a/app/views/issues/bulk_edit.js.erb b/app/views/issues/bulk_edit.js.erb deleted file mode 100644 index ac84ad1..0000000 --- a/app/views/issues/bulk_edit.js.erb +++ /dev/null @@ -1 +0,0 @@ -$('#content').html('<%= escape_javascript(render :template => 'issues/bulk_edit', :formats => [:html]) %>'); diff --git a/app/views/issues/destroy.html.erb b/app/views/issues/destroy.html.erb deleted file mode 100644 index 61b841a..0000000 --- a/app/views/issues/destroy.html.erb +++ /dev/null @@ -1,20 +0,0 @@ -

    <%= l(:label_confirmation) %>

    - -<%= form_tag({}, :method => :delete) do %> -<%= @issues.collect {|i| hidden_field_tag('ids[]', i.id, :id => nil)}.join("\n").html_safe %> -
    -

    <%= l(:text_destroy_time_entries_question, :hours => number_with_precision(@hours, :precision => 2)) %>

    -

    -
    -<% unless Setting.timelog_required_fields.include?('issue_id') %> -
    -<% end %> -<% if @project %> - -<%= text_field_tag 'reassign_to_id', params[:reassign_to_id], :size => 6, :onfocus => '$("#todo_reassign").attr("checked", true);' %> -<%= javascript_tag "observeAutocompleteField('reassign_to_id', '#{escape_javascript auto_complete_issues_path(:project_id => @project)}')" %> -<% end %> -

    -
    -<%= submit_tag l(:button_apply) %> -<% end %> diff --git a/app/views/issues/edit.html.erb b/app/views/issues/edit.html.erb deleted file mode 100644 index da80a08..0000000 --- a/app/views/issues/edit.html.erb +++ /dev/null @@ -1,6 +0,0 @@ -

    <%= "#{@issue.tracker_was} ##{@issue.id}" %>

    - -<%= render :partial => 'edit' %> -<% content_for :header_tags do %> - <%= robot_exclusion_tag %> -<% end %> diff --git a/app/views/issues/edit.js.erb b/app/views/issues/edit.js.erb deleted file mode 100644 index 8c94aec..0000000 --- a/app/views/issues/edit.js.erb +++ /dev/null @@ -1,7 +0,0 @@ -replaceIssueFormWith('<%= escape_javascript(render :partial => 'form') %>'); - -<% if User.current.allowed_to?(:log_time, @issue.project) %> - $('#log_time').show(); -<% else %> - $('#log_time').hide(); -<% end %> diff --git a/app/views/issues/index.api.rsb b/app/views/issues/index.api.rsb deleted file mode 100644 index 4bba325..0000000 --- a/app/views/issues/index.api.rsb +++ /dev/null @@ -1,42 +0,0 @@ -api.array :issues, api_meta(:total_count => @issue_count, :offset => @offset, :limit => @limit) do - @issues.each do |issue| - api.issue do - api.id issue.id - api.project(:id => issue.project_id, :name => issue.project.name) unless issue.project.nil? - api.tracker(:id => issue.tracker_id, :name => issue.tracker.name) unless issue.tracker.nil? - api.status(:id => issue.status_id, :name => issue.status.name) unless issue.status.nil? - api.priority(:id => issue.priority_id, :name => issue.priority.name) unless issue.priority.nil? - api.author(:id => issue.author_id, :name => issue.author.name) unless issue.author.nil? - api.assigned_to(:id => issue.assigned_to_id, :name => issue.assigned_to.name) unless issue.assigned_to.nil? - api.category(:id => issue.category_id, :name => issue.category.name) unless issue.category.nil? - api.fixed_version(:id => issue.fixed_version_id, :name => issue.fixed_version.name) unless issue.fixed_version.nil? - api.parent(:id => issue.parent_id) unless issue.parent.nil? - - api.subject issue.subject - api.description issue.description - api.start_date issue.start_date - api.due_date issue.due_date - api.done_ratio issue.done_ratio - api.is_private issue.is_private - api.estimated_hours issue.estimated_hours - - render_api_custom_values issue.visible_custom_field_values, api - - api.created_on issue.created_on - api.updated_on issue.updated_on - api.closed_on issue.closed_on - - api.array :attachments do - issue.attachments.each do |attachment| - render_api_attachment(attachment, api) - end - end if include_in_api_response?('attachments') - - api.array :relations do - issue.relations.each do |relation| - api.relation(:id => relation.id, :issue_id => relation.issue_from_id, :issue_to_id => relation.issue_to_id, :relation_type => relation.relation_type, :delay => relation.delay) - end - end if include_in_api_response?('relations') - end - end -end diff --git a/app/views/issues/index.html.erb b/app/views/issues/index.html.erb deleted file mode 100644 index b05b6cc..0000000 --- a/app/views/issues/index.html.erb +++ /dev/null @@ -1,92 +0,0 @@ -
    - <% if User.current.allowed_to?(:add_issues, @project, :global => true) && (@project.nil? || Issue.allowed_target_trackers(@project).any?) %> - <%= link_to l(:label_issue_new), _new_project_issue_path(@project), :class => 'icon icon-add new-issue' %> - <% end %> - <%= actions_dropdown do %> - <% if @project %> - <%= link_to l(:field_summary), project_issues_report_path(@project), :class => 'icon icon-stats' %> - <% end %> - - <% if User.current.allowed_to?(:import_issues, @project, :global => true) %> - <%= link_to l(:button_import), new_issues_import_path(:project_id => @project), :class => 'icon icon-import' %> - <% end %> - - <%= link_to_if_authorized l(:label_settings), - {:controller => 'projects', :action => 'settings', :id => @project, :tab => 'issues'}, - :class => 'icon icon-settings' if User.current.allowed_to?(:edit_project, @project) %> - <% end %> -
    - -

    <%= @query.new_record? ? l(:label_issue_plural) : @query.name %>

    -<% html_title(@query.new_record? ? l(:label_issue_plural) : @query.name) %> - -<%= form_tag(_project_issues_path(@project), :method => :get, :id => 'query_form') do %> - <%= render :partial => 'queries/query_form' %> -<% end %> - -<% if @query.valid? %> -<% if @issues.empty? %> -

    <%= l(:label_no_data) %>

    -<% else %> -<%= render_query_totals(@query) %> -<%= render :partial => 'issues/list', :locals => {:issues => @issues, :query => @query} %> -<%= pagination_links_full @issue_pages, @issue_count %> -<% end %> - -<% other_formats_links do |f| %> - <%= f.link_to_with_query_parameters 'Atom', :key => User.current.rss_key %> - <%= f.link_to_with_query_parameters 'CSV', {}, :onclick => "showModal('csv-export-options', '350px'); return false;" %> - <%= f.link_to_with_query_parameters 'PDF' %> -<% end %> - - - -<% end %> -<%= call_hook(:view_issues_index_bottom, { :issues => @issues, :project => @project, :query => @query }) %> - -<% content_for :sidebar do %> - <%= render :partial => 'issues/sidebar' %> -<% end %> - -<% content_for :header_tags do %> - <%= auto_discovery_link_tag(:atom, - {:query_id => @query, :format => 'atom', - :page => nil, :key => User.current.rss_key}, - :title => l(:label_issue_plural)) %> - <%= auto_discovery_link_tag(:atom, - {:controller => 'journals', :action => 'index', - :query_id => @query, :format => 'atom', - :page => nil, :key => User.current.rss_key}, - :title => l(:label_changes_details)) %> -<% end %> - -<%= context_menu %> diff --git a/app/views/issues/index.pdf.erb b/app/views/issues/index.pdf.erb deleted file mode 100644 index 810818a..0000000 --- a/app/views/issues/index.pdf.erb +++ /dev/null @@ -1 +0,0 @@ -<%= raw issues_to_pdf(@issues, @project, @query) %> \ No newline at end of file diff --git a/app/views/issues/new.html.erb b/app/views/issues/new.html.erb deleted file mode 100644 index 22a174a..0000000 --- a/app/views/issues/new.html.erb +++ /dev/null @@ -1,46 +0,0 @@ -<%= title l(:label_issue_new) %> - -<%= call_hook(:view_issues_new_top, {:issue => @issue}) %> - -<%= labelled_form_for @issue, :url => _project_issues_path(@project), - :html => {:id => 'issue-form', :multipart => true} do |f| %> - <%= error_messages_for 'issue' %> - <%= hidden_field_tag 'copy_from', params[:copy_from] if params[:copy_from] %> -
    -
    - <%= render :partial => 'issues/form', :locals => {:f => f} %> -
    - - <% if @copy_from && Setting.link_copied_issue == 'ask' %> -

    - - <%= check_box_tag 'link_copy', '1', @link_copy %> -

    - <% end %> - <% if @copy_from && @copy_from.attachments.any? %> -

    - - <%= check_box_tag 'copy_attachments', '1', @copy_attachments %> -

    - <% end %> - <% if @copy_from && !@copy_from.leaf? %> -

    - - <%= check_box_tag 'copy_subtasks', '1', @copy_subtasks %> -

    - <% end %> - -

    <%= render :partial => 'attachments/form', :locals => {:container => @issue} %>

    - -
    - <%= render :partial => 'issues/watchers_form' %> -
    -
    - - <%= submit_tag l(:button_create) %> - <%= submit_tag l(:button_create_and_continue), :name => 'continue' %> -<% end %> - -<% content_for :header_tags do %> - <%= robot_exclusion_tag %> -<% end %> diff --git a/app/views/issues/new.js.erb b/app/views/issues/new.js.erb deleted file mode 100644 index 702d922..0000000 --- a/app/views/issues/new.js.erb +++ /dev/null @@ -1,7 +0,0 @@ -replaceIssueFormWith('<%= escape_javascript(render :partial => 'form') %>'); -<% case params[:form_update_triggered_by] %> -<% when "issue_project_id" %> - $("#watchers_form_container").html('<%= escape_javascript(render :partial => 'issues/watchers_form') %>'); -<% when "issue_category_id" %> - $('#issue_assigned_to_id').find('option').first().html('<%= escape_javascript(@issue.category.try(:assigned_to).try(:name)).presence || ' '.html_safe %>'); -<% end %> diff --git a/app/views/issues/show.api.rsb b/app/views/issues/show.api.rsb deleted file mode 100644 index f474ed9..0000000 --- a/app/views/issues/show.api.rsb +++ /dev/null @@ -1,80 +0,0 @@ -api.issue do - api.id @issue.id - api.project(:id => @issue.project_id, :name => @issue.project.name) unless @issue.project.nil? - api.tracker(:id => @issue.tracker_id, :name => @issue.tracker.name) unless @issue.tracker.nil? - api.status(:id => @issue.status_id, :name => @issue.status.name) unless @issue.status.nil? - api.priority(:id => @issue.priority_id, :name => @issue.priority.name) unless @issue.priority.nil? - api.author(:id => @issue.author_id, :name => @issue.author.name) unless @issue.author.nil? - api.assigned_to(:id => @issue.assigned_to_id, :name => @issue.assigned_to.name) unless @issue.assigned_to.nil? - api.category(:id => @issue.category_id, :name => @issue.category.name) unless @issue.category.nil? - api.fixed_version(:id => @issue.fixed_version_id, :name => @issue.fixed_version.name) unless @issue.fixed_version.nil? - api.parent(:id => @issue.parent_id) unless @issue.parent.nil? - - api.subject @issue.subject - api.description @issue.description - api.start_date @issue.start_date - api.due_date @issue.due_date - api.done_ratio @issue.done_ratio - api.is_private @issue.is_private - api.estimated_hours @issue.estimated_hours - api.total_estimated_hours @issue.total_estimated_hours - if User.current.allowed_to?(:view_time_entries, @project) - api.spent_hours(@issue.spent_hours) - api.total_spent_hours(@issue.total_spent_hours) - end - - render_api_custom_values @issue.visible_custom_field_values, api - - api.created_on @issue.created_on - api.updated_on @issue.updated_on - api.closed_on @issue.closed_on - - render_api_issue_children(@issue, api) if include_in_api_response?('children') - - api.array :attachments do - @issue.attachments.each do |attachment| - render_api_attachment(attachment, api) - end - end if include_in_api_response?('attachments') - - api.array :relations do - @relations.each do |relation| - api.relation(:id => relation.id, :issue_id => relation.issue_from_id, :issue_to_id => relation.issue_to_id, :relation_type => relation.relation_type, :delay => relation.delay) - end - end if include_in_api_response?('relations') && @relations.present? - - api.array :changesets do - @changesets.each do |changeset| - api.changeset :revision => changeset.revision do - api.user(:id => changeset.user_id, :name => changeset.user.name) unless changeset.user.nil? - api.comments changeset.comments - api.committed_on changeset.committed_on - end - end - end if include_in_api_response?('changesets') - - api.array :journals do - @journals.each do |journal| - api.journal :id => journal.id do - api.user(:id => journal.user_id, :name => journal.user.name) unless journal.user.nil? - api.notes journal.notes - api.created_on journal.created_on - api.private_notes journal.private_notes - api.array :details do - journal.visible_details.each do |detail| - api.detail :property => detail.property, :name => detail.prop_key do - api.old_value detail.old_value - api.new_value detail.value - end - end - end - end - end - end if include_in_api_response?('journals') - - api.array :watchers do - @issue.watcher_users.each do |user| - api.user :id => user.id, :name => user.name - end - end if include_in_api_response?('watchers') && User.current.allowed_to?(:view_issue_watchers, @issue.project) -end diff --git a/app/views/issues/show.html.erb b/app/views/issues/show.html.erb deleted file mode 100644 index 7c180a4..0000000 --- a/app/views/issues/show.html.erb +++ /dev/null @@ -1,153 +0,0 @@ -<%= render :partial => 'action_menu' %> - -

    <%= issue_heading(@issue) %>

    - -
    - <% if @prev_issue_id || @next_issue_id %> - - <% end %> - -
    - <%= author_avatar(@issue.author, :size => "50") %> - <%= assignee_avatar(@issue.assigned_to, :size => "22", :class => "gravatar-child") if @issue.assigned_to %> -
    - -
    -<%= render_issue_subject_with_tree(@issue) %> -
    -

    - <%= authoring @issue.created_on, @issue.author %>. - <% if @issue.created_on != @issue.updated_on %> - <%= l(:label_updated_time, time_tag(@issue.updated_on)).html_safe %>. - <% end %> -

    - -
    -<%= issue_fields_rows do |rows| - rows.left l(:field_status), @issue.status.name, :class => 'status' - rows.left l(:field_priority), @issue.priority.name, :class => 'priority' - - unless @issue.disabled_core_fields.include?('assigned_to_id') - rows.left l(:field_assigned_to), (@issue.assigned_to ? link_to_user(@issue.assigned_to) : "-"), :class => 'assigned-to' - end - unless @issue.disabled_core_fields.include?('category_id') || (@issue.category.nil? && @issue.project.issue_categories.none?) - rows.left l(:field_category), (@issue.category ? @issue.category.name : "-"), :class => 'category' - end - unless @issue.disabled_core_fields.include?('fixed_version_id') || (@issue.fixed_version.nil? && @issue.assignable_versions.none?) - rows.left l(:field_fixed_version), (@issue.fixed_version ? link_to_version(@issue.fixed_version) : "-"), :class => 'fixed-version' - end - - unless @issue.disabled_core_fields.include?('start_date') - rows.right l(:field_start_date), format_date(@issue.start_date), :class => 'start-date' - end - unless @issue.disabled_core_fields.include?('due_date') - rows.right l(:field_due_date), issue_due_date_details(@issue), :class => 'due-date' - end - unless @issue.disabled_core_fields.include?('done_ratio') - rows.right l(:field_done_ratio), progress_bar(@issue.done_ratio, :legend => "#{@issue.done_ratio}%"), :class => 'progress' - end - unless @issue.disabled_core_fields.include?('estimated_hours') - rows.right l(:field_estimated_hours), issue_estimated_hours_details(@issue), :class => 'estimated-hours' - end - if User.current.allowed_to?(:view_time_entries, @project) && @issue.total_spent_hours > 0 - rows.right l(:label_spent_time), issue_spent_hours_details(@issue), :class => 'spent-time' - end -end %> -<%= render_half_width_custom_fields_rows(@issue) %> -<%= call_hook(:view_issues_show_details_bottom, :issue => @issue) %> -
    - -<% if @issue.description? %> -
    -
    -
    - <%= link_to l(:button_quote), quoted_issue_path(@issue), :remote => true, :method => 'post', :class => 'icon icon-comment' if @issue.notes_addable? %> -
    - -

    <%=l(:field_description)%>

    -
    - <%= textilizable @issue, :description, :attachments => @issue.attachments %> -
    -
    -<% end %> -<% if @issue.attachments.any? %> -
    -

    <%=l(:label_attachment_plural)%>

    - <%= link_to_attachments @issue, :thumbnails => true %> -<% end %> - -<%= render_full_width_custom_fields_rows(@issue) %> - -<%= call_hook(:view_issues_show_description_bottom, :issue => @issue) %> - -<% if !@issue.leaf? || User.current.allowed_to?(:manage_subtasks, @project) %> -
    -
    -
    - <%= link_to_new_subtask(@issue) if User.current.allowed_to?(:manage_subtasks, @project) %> -
    -

    <%=l(:label_subtask_plural)%>

    -<%= form_tag({}, :data => {:cm_url => issues_context_menu_path}) do %> -<%= render_descendants_tree(@issue) unless @issue.leaf? %> -<% end %> -
    -<% end %> - -<% if @relations.present? || User.current.allowed_to?(:manage_issue_relations, @project) %> -
    -
    -<%= render :partial => 'relations' %> -
    -<% end %> - -
    - -<%= render partial: 'action_menu_edit' if User.current.wants_comments_in_reverse_order? %> - -
    -<%= render_tabs issue_history_tabs, issue_history_default_tab %> -
    - -<%= render partial: 'action_menu_edit' unless User.current.wants_comments_in_reverse_order? %> - -<% other_formats_links do |f| %> - <%= f.link_to 'Atom', :url => {:key => User.current.rss_key} %> - <%= f.link_to 'PDF' %> -<% end %> - -<% html_title "#{@issue.tracker.name} ##{@issue.id}: #{@issue.subject}" %> - -<% content_for :sidebar do %> - <%= render :partial => 'issues/sidebar' %> - - <% if User.current.allowed_to?(:add_issue_watchers, @project) || - (@issue.watchers.present? && User.current.allowed_to?(:view_issue_watchers, @project)) %> -
    - <%= render :partial => 'watchers/watchers', :locals => {:watched => @issue} %> -
    - <% end %> -<% end %> - -<% content_for :header_tags do %> - <%= auto_discovery_link_tag(:atom, {:format => 'atom', :key => User.current.rss_key}, :title => "#{@issue.project} - #{@issue.tracker} ##{@issue.id}: #{@issue.subject}") %> -<% end %> - -<%= context_menu %> diff --git a/app/views/issues/show.pdf.erb b/app/views/issues/show.pdf.erb deleted file mode 100644 index f26589f..0000000 --- a/app/views/issues/show.pdf.erb +++ /dev/null @@ -1 +0,0 @@ -<%= raw issue_to_pdf(@issue, :journals => @journals) %> \ No newline at end of file diff --git a/app/views/issues/tabs/_history.html.erb b/app/views/issues/tabs/_history.html.erb deleted file mode 100644 index 0769f57..0000000 --- a/app/views/issues/tabs/_history.html.erb +++ /dev/null @@ -1,40 +0,0 @@ -<% - issue = tab[:locals][:issue] - journals = tab[:locals][:journals] -%> - -<% reply_links = issue.notes_addable? -%> -<% for journal in journals %> -
    -
    -
    - <%= render_journal_actions(issue, journal, :reply_links => reply_links) %> - #<%= journal.indice %> -
    -

    - <%= avatar(journal.user) %> - <%= authoring journal.created_on, journal.user, :label => :label_updated_time_by %> - <%= render_private_notes_indicator(journal) %> -

    - - <% if journal.details.any? %> -
      - <% details_to_strings(journal.visible_details).each do |string| %> -
    • <%= string %>
    • - <% end %> -
    - <% if Setting.thumbnails_enabled? && (thumbnail_attachments = journal_thumbnail_attachments(journal)).any? %> -
    - <% thumbnail_attachments.each do |attachment| %> -
    <%= thumbnail_tag(attachment) %>
    - <% end %> -
    - <% end %> - <% end %> - <%= render_notes(issue, journal, :reply_links => reply_links) unless journal.notes.blank? %> -
    -
    - <%= call_hook(:view_issues_history_journal_bottom, { :journal => journal }) %> -<% end %> - -<% heads_for_wiki_formatter if User.current.allowed_to?(:edit_issue_notes, issue.project) || User.current.allowed_to?(:edit_own_issue_notes, issue.project) %> diff --git a/app/views/issues/tabs/_time_entries.html.erb b/app/views/issues/tabs/_time_entries.html.erb deleted file mode 100644 index c34edc0..0000000 --- a/app/views/issues/tabs/_time_entries.html.erb +++ /dev/null @@ -1,28 +0,0 @@ -<% for time_entry in time_entries%> -
    - <% if time_entry.editable_by?(User.current) -%> -
    - <%= link_to l(:button_edit), edit_time_entry_path(time_entry), - :title => l(:button_edit), - :class => 'icon-only icon-edit' %> - <%= link_to l(:button_delete), time_entry_path(time_entry), - :data => {:confirm => l(:text_are_you_sure)}, - :method => :delete, - :title => l(:button_delete), - :class => 'icon-only icon-del' %> -
    - <% end -%> -

    - <%= avatar(time_entry.user, :size => "24") %> - <%= authoring time_entry.created_on, time_entry.user, :label => :label_added_time_by %> -

    -
      -
    • - <%= l(:label_time_entry_plural) %>: - <%= l_hours_short time_entry.hours %> -
    • -
    -

    <%= time_entry.comments %>

    -
    - <%= call_hook(:view_issues_history_time_entry_bottom, { :time_entry => time_entry }) %> -<% end %> \ No newline at end of file diff --git a/app/views/journals/_notes_form.html.erb b/app/views/journals/_notes_form.html.erb deleted file mode 100644 index aeb4b6a..0000000 --- a/app/views/journals/_notes_form.html.erb +++ /dev/null @@ -1,22 +0,0 @@ -<%= form_tag(journal_path(@journal), - :remote => true, - :method => 'put', - :id => "journal-#{@journal.id}-form") do %> - <%= label_tag "notes", l(:description_notes), :class => "hidden-for-sighted", :for => "journal_#{@journal.id}_notes" %> - <%= text_area_tag 'journal[notes]', @journal.notes, :id => "journal_#{@journal.id}_notes", :class => 'wiki-edit', - :rows => (@journal.notes.blank? ? 10 : [[10, @journal.notes.length / 50].max, 100].min), - :data => { - :auto_complete => true, - :issues_url => auto_complete_issues_path(:project_id => @project, :q => '') - } - %> - <% if @journal.safe_attribute? 'private_notes' %> - <%= hidden_field_tag 'journal[private_notes]', '0' %> - <%= check_box_tag 'journal[private_notes]', '1', @journal.private_notes, :id => "journal_#{@journal.id}_private_notes" %> - - <% end %> - <%= call_hook(:view_journals_notes_form_after_notes, { :journal => @journal}) %> -

    <%= submit_tag l(:button_save) %> - <%= link_to l(:button_cancel), '#', :onclick => "$('#journal-#{@journal.id}-form').remove(); $('#journal-#{@journal.id}-notes').show(); return false;" %>

    -<% end %> -<%= wikitoolbar_for "journal_#{@journal.id}_notes", preview_issue_path(:project_id => @project, :issue_id => @journal.issue) %> diff --git a/app/views/journals/diff.html.erb b/app/views/journals/diff.html.erb deleted file mode 100644 index c9b019d..0000000 --- a/app/views/journals/diff.html.erb +++ /dev/null @@ -1,11 +0,0 @@ -

    <%= @issue.tracker %> #<%= @issue.id %>

    -

    <%= authoring @journal.created_on, @journal.user, :label => :label_updated_time_by %>

    - -
    <%= @diff.to_html %>
    - -

    - <%= link_to(l(:button_back), issue_path(@issue), - :onclick => 'if (document.referrer != "") {history.back(); return false;}') %> -

    - -<% html_title "#{@issue.tracker.name} ##{@issue.id}: #{@issue.subject}" %> diff --git a/app/views/journals/edit.js.erb b/app/views/journals/edit.js.erb deleted file mode 100644 index 96cf6b4..0000000 --- a/app/views/journals/edit.js.erb +++ /dev/null @@ -1,8 +0,0 @@ -$("#journal-<%= @journal.id %>-notes").hide(); - -if ($("form#journal-<%= @journal.id %>-form").length > 0) { - // journal edit form already loaded - $("#journal-<%= @journal.id %>-form").show(); -} else { - $("#journal-<%= @journal.id %>-notes").after('<%= escape_javascript(render :partial => 'notes_form') %>'); -} diff --git a/app/views/journals/index.builder b/app/views/journals/index.builder deleted file mode 100644 index 45839ed..0000000 --- a/app/views/journals/index.builder +++ /dev/null @@ -1,33 +0,0 @@ -# frozen_string_literal: true - -xml.instruct! -xml.feed "xmlns" => "http://www.w3.org/2005/Atom" do - xml.title @title - xml.link "rel" => "self", "href" => url_for(:format => 'atom', :key => User.current.rss_key, :only_path => false) - xml.link "rel" => "alternate", "href" => home_url - xml.id home_url - xml.icon favicon_url - xml.updated((@journals.first ? @journals.first.event_datetime : Time.now).xmlschema) - xml.author { xml.name "#{Setting.app_title}" } - @journals.each do |change| - issue = change.issue - xml.entry do - xml.title "#{issue.project.name} - #{issue.tracker.name} ##{issue.id}: #{issue.subject}" - xml.link "rel" => "alternate", "href" => issue_url(issue) - xml.id issue_url(issue, :journal_id => change) - xml.updated change.created_on.xmlschema - xml.author do - xml.name change.user.name - xml.email(change.user.mail) if change.user.is_a?(User) && !change.user.mail.blank? && !change.user.pref.hide_mail - end - xml.content "type" => "html" do - xml.text! '
      ' - details_to_strings(change.visible_details, false).each do |string| - xml.text! '
    • ' + string + '
    • ' - end - xml.text! '
    ' - xml.text! textilizable(change, :notes, :only_path => false) unless change.notes.blank? - end - end - end -end diff --git a/app/views/journals/new.js.erb b/app/views/journals/new.js.erb deleted file mode 100644 index 0f832f3..0000000 --- a/app/views/journals/new.js.erb +++ /dev/null @@ -1,13 +0,0 @@ -showAndScrollTo("update"); - -var notes = $('#issue_notes').val(); -if (notes > "") { notes = notes + "\n\n"} - -$('#issue_notes').blur().focus().val(notes + "<%= raw escape_javascript(@content) %>"); -<% - # when quoting a private journal, check the private checkbox - if @journal && @journal.private_notes? -%> -$('#issue_private_notes').prop('checked', true); -<% end %> - diff --git a/app/views/journals/update.js.erb b/app/views/journals/update.js.erb deleted file mode 100644 index 47dfdeb..0000000 --- a/app/views/journals/update.js.erb +++ /dev/null @@ -1,12 +0,0 @@ -<% if @journal.frozen? %> - $("#change-<%= @journal.id %>").remove(); -<% else %> - $("#change-<%= @journal.id %>").attr('class', '<%= @journal.css_classes %>'); - $("#change-<%= @journal.id %> .journal-actions").html('<%= escape_javascript(render_journal_actions(@journal.issue, @journal, :reply_links => authorize_for('issues', 'edit'))) %>'); - $("#journal-<%= @journal.id %>-private_notes").replaceWith('<%= escape_javascript(render_private_notes_indicator(@journal)) %>'); - $("#journal-<%= @journal.id %>-notes").replaceWith('<%= escape_javascript(render_notes(@journal.issue, @journal, :reply_links => authorize_for('issues', 'edit'))) %>'); - $("#journal-<%= @journal.id %>-notes").show(); - $("#journal-<%= @journal.id %>-form").remove(); -<% end %> - -<%= call_hook(:view_journals_update_js_bottom, { :journal => @journal }) %> diff --git a/app/views/layouts/_file.html.erb b/app/views/layouts/_file.html.erb deleted file mode 100644 index 4a17bac..0000000 --- a/app/views/layouts/_file.html.erb +++ /dev/null @@ -1,25 +0,0 @@ -
    - <%= link_to_attachment @attachment, :text => "#{l(:button_download)} (#{number_to_human_size(@attachment.filesize)})", :download => true, :class => 'icon icon-download' -%> -
    - -

    - <%= safe_join([link_to_attachment_container(@attachment.container), @attachment.filename].compact, ' » ') %> -

    - -
    -

    <%= "#{@attachment.description} - " unless @attachment.description.blank? %> - <%= link_to_user(@attachment.author) %>, <%= format_time(@attachment.created_on) %>

    -
    -
    - <%= yield %> -
    - - - <%= render_pagination %> - - -<% html_title @attachment.filename %> - -<% content_for :header_tags do -%> - <%= stylesheet_link_tag "scm" -%> -<% end -%> diff --git a/app/views/layouts/admin.html.erb b/app/views/layouts/admin.html.erb deleted file mode 100644 index 8f23129..0000000 --- a/app/views/layouts/admin.html.erb +++ /dev/null @@ -1,8 +0,0 @@ -<% unless controller_name == 'admin' && action_name == 'index' %> - <% content_for :sidebar do %> -

    <%=l(:label_administration)%>

    - <%= render :partial => 'admin/menu' %> - <% end %> -<% end %> - -<%= render :file => "layouts/base" %> diff --git a/app/views/layouts/mailer.html.erb b/app/views/layouts/mailer.html.erb deleted file mode 100644 index f6a457e..0000000 --- a/app/views/layouts/mailer.html.erb +++ /dev/null @@ -1,62 +0,0 @@ - - - - - -<% if Setting.emails_header.present? -%> -<%= Redmine::WikiFormatting.to_html(Setting.text_formatting, Setting.emails_header).html_safe %> -<% end -%> -<%= yield %> -
    -<% if Setting.emails_footer.present? -%> -<%= Redmine::WikiFormatting.to_html(Setting.text_formatting, Setting.emails_footer).html_safe %> -<% end -%> - - diff --git a/app/views/layouts/mailer.text.erb b/app/views/layouts/mailer.text.erb deleted file mode 100644 index a4c6986..0000000 --- a/app/views/layouts/mailer.text.erb +++ /dev/null @@ -1,8 +0,0 @@ -<% if Setting.emails_header.present? -%> -<%= Setting.emails_header %> -<% end -%> -<%= yield %> -<% if Setting.emails_footer.present? -%> --- -<%= Setting.emails_footer %> -<% end -%> diff --git a/app/views/mail_handler/new.html.erb b/app/views/mail_handler/new.html.erb deleted file mode 100644 index 25cf05b..0000000 --- a/app/views/mail_handler/new.html.erb +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - -

    Redmine Mail Handler

    - -<%= form_tag({}, :multipart => true, :action => 'post') do %> - <%= hidden_field_tag 'key', params[:key] %> - -
    - Raw Email - <%= text_area_tag 'email', '', :style => 'width:95%; height:400px;' %> -
    - -
    - Options - - - - - -
    - -
    - Issue attributes options - - - - - - - - - -
    - -

    <%= submit_tag 'Submit Email' %>

    -<% end %> - - diff --git a/app/views/mailer/_issue.html.erb b/app/views/mailer/_issue.html.erb deleted file mode 100644 index 58287c6..0000000 --- a/app/views/mailer/_issue.html.erb +++ /dev/null @@ -1,14 +0,0 @@ -

    <%= link_to("#{issue.tracker.name} ##{issue.id}: #{issue.subject}", issue_url) %>

    - -<%= render_email_issue_attributes(issue, user, true) %> - -<%= textilizable(issue, :description, :only_path => false) %> - -<% if issue.attachments.any? %> -
    <%= l(:label_attachment_plural) %> - <% issue.attachments.each do |attachment| %> - <%= link_to_attachment attachment, :download => true, :only_path => false %> - (<%= number_to_human_size(attachment.filesize) %>)
    - <% end %> -
    -<% end %> diff --git a/app/views/mailer/_issue.text.erb b/app/views/mailer/_issue.text.erb deleted file mode 100644 index 819aeba..0000000 --- a/app/views/mailer/_issue.text.erb +++ /dev/null @@ -1,13 +0,0 @@ -<%= "#{issue.tracker.name} ##{issue.id}: #{issue.subject}" %> -<%= issue_url %> - -<%= render_email_issue_attributes(issue, user) %> ----------------------------------------- -<%= issue.description %> - -<% if issue.attachments.any? -%> ----<%= l(:label_attachment_plural).ljust(37, '-') %> -<% issue.attachments.each do |attachment| -%> -<%= attachment.filename %> (<%= number_to_human_size(attachment.filesize) %>) -<% end -%> -<% end -%> diff --git a/app/views/mailer/account_activated.html.erb b/app/views/mailer/account_activated.html.erb deleted file mode 100644 index 6dc9522..0000000 --- a/app/views/mailer/account_activated.html.erb +++ /dev/null @@ -1,2 +0,0 @@ -

    <%= l(:notice_account_activated) %>

    -

    <%= l(:label_login) %>: <%= link_to @login_url, @login_url %>

    diff --git a/app/views/mailer/account_activated.text.erb b/app/views/mailer/account_activated.text.erb deleted file mode 100644 index 4dac4fb..0000000 --- a/app/views/mailer/account_activated.text.erb +++ /dev/null @@ -1,2 +0,0 @@ -<%= l(:notice_account_activated) %> -<%= l(:label_login) %>: <%= @login_url %> diff --git a/app/views/mailer/account_activation_request.html.erb b/app/views/mailer/account_activation_request.html.erb deleted file mode 100644 index 5f95f82..0000000 --- a/app/views/mailer/account_activation_request.html.erb +++ /dev/null @@ -1,2 +0,0 @@ -

    <%= l(:mail_body_account_activation_request, h(@new_user.login)) %>

    -

    <%= link_to @url, @url %>

    diff --git a/app/views/mailer/account_activation_request.text.erb b/app/views/mailer/account_activation_request.text.erb deleted file mode 100644 index b35016b..0000000 --- a/app/views/mailer/account_activation_request.text.erb +++ /dev/null @@ -1,2 +0,0 @@ -<%= l(:mail_body_account_activation_request, @new_user.login) %> -<%= @url %> diff --git a/app/views/mailer/account_information.html.erb b/app/views/mailer/account_information.html.erb deleted file mode 100644 index d010431..0000000 --- a/app/views/mailer/account_information.html.erb +++ /dev/null @@ -1,13 +0,0 @@ -<% if @user.auth_source %> -

    <%= l(:mail_body_account_information_external, h(@user.auth_source.name)) %>

    -<% else %> -

    <%= l(:mail_body_account_information) %>:

    -
      -
    • <%= l(:field_login) %>: <%= @user.login %>
    • - <% if @password %> -
    • <%= l(:field_password) %>: <%= @password %>
    • - <% end %> -
    -<% end %> - -

    <%= l(:label_login) %>: <%= link_to @login_url, @login_url %>

    diff --git a/app/views/mailer/account_information.text.erb b/app/views/mailer/account_information.text.erb deleted file mode 100644 index f2f37d9..0000000 --- a/app/views/mailer/account_information.text.erb +++ /dev/null @@ -1,6 +0,0 @@ -<% if @user.auth_source %><%= l(:mail_body_account_information_external, @user.auth_source.name) %> -<% else %><%= l(:mail_body_account_information) %>: -* <%= l(:field_login) %>: <%= @user.login %> -<% if @password %>* <%= l(:field_password) %>: <%= @password %><% end %> -<% end %> -<%= l(:label_login) %>: <%= @login_url %> diff --git a/app/views/mailer/attachments_added.html.erb b/app/views/mailer/attachments_added.html.erb deleted file mode 100644 index d2355b1..0000000 --- a/app/views/mailer/attachments_added.html.erb +++ /dev/null @@ -1,5 +0,0 @@ -<%= link_to @added_to, @added_to_url %>
    - -
      <% @attachments.each do |attachment | %> -
    • <%= attachment.filename %>
    • -<% end %>
    diff --git a/app/views/mailer/attachments_added.text.erb b/app/views/mailer/attachments_added.text.erb deleted file mode 100644 index 28cb828..0000000 --- a/app/views/mailer/attachments_added.text.erb +++ /dev/null @@ -1,4 +0,0 @@ -<%= @added_to %><% @attachments.each do |attachment | %> -- <%= attachment.filename %><% end %> - -<%= @added_to_url %> diff --git a/app/views/mailer/document_added.html.erb b/app/views/mailer/document_added.html.erb deleted file mode 100644 index e3ece78..0000000 --- a/app/views/mailer/document_added.html.erb +++ /dev/null @@ -1,3 +0,0 @@ -<%= link_to(@document.title, @document_url) %> (<%= @document.category.name %>)
    -
    -<%= textilizable(@document, :description, :only_path => false) %> diff --git a/app/views/mailer/document_added.text.erb b/app/views/mailer/document_added.text.erb deleted file mode 100644 index a6a7282..0000000 --- a/app/views/mailer/document_added.text.erb +++ /dev/null @@ -1,4 +0,0 @@ -<%= @document.title %> (<%= @document.category.name %>) -<%= @document_url %> - -<%= @document.description %> diff --git a/app/views/mailer/issue_add.html.erb b/app/views/mailer/issue_add.html.erb deleted file mode 100644 index 7bb6115..0000000 --- a/app/views/mailer/issue_add.html.erb +++ /dev/null @@ -1,3 +0,0 @@ -<%= l(:text_issue_added, :id => link_to("##{@issue.id}", @issue_url), :author => h(@issue.author)).html_safe %> -
    -<%= render :partial => 'issue', :formats => [:html], :locals => { :issue => @issue, :user => @user, :issue_url => @issue_url } %> diff --git a/app/views/mailer/issue_add.text.erb b/app/views/mailer/issue_add.text.erb deleted file mode 100644 index b38111d..0000000 --- a/app/views/mailer/issue_add.text.erb +++ /dev/null @@ -1,4 +0,0 @@ -<%= l(:text_issue_added, :id => "##{@issue.id}", :author => @issue.author) %> - ----------------------------------------- -<%= render :partial => 'issue', :formats => [:text], :locals => { :issue => @issue, :user => @user, :issue_url => @issue_url } %> diff --git a/app/views/mailer/issue_edit.html.erb b/app/views/mailer/issue_edit.html.erb deleted file mode 100644 index b5bdd88..0000000 --- a/app/views/mailer/issue_edit.html.erb +++ /dev/null @@ -1,15 +0,0 @@ -<% if @journal.private_notes? %> - (<%= l(:field_private_notes) %>) -<% end %> -<%= l(:text_issue_updated, :id => link_to("##{@issue.id}", @issue_url), :author => h(@journal.user)).html_safe %> -
    - -
      -<% details_to_strings(@journal_details, false, :only_path => false).each do |string| %> -
    • <%= string %>
    • -<% end %> -
    - -<%= textilizable(@journal, :notes, :only_path => false) %> -
    -<%= render :partial => 'issue', :formats => [:html], :locals => { :issue => @issue, :user => @user, :issue_url => @issue_url } %> diff --git a/app/views/mailer/issue_edit.text.erb b/app/views/mailer/issue_edit.text.erb deleted file mode 100644 index 3542c17..0000000 --- a/app/views/mailer/issue_edit.text.erb +++ /dev/null @@ -1,12 +0,0 @@ -<%= "(#{l(:field_private_notes)}) " if @journal.private_notes? -%><%= l(:text_issue_updated, :id => "##{@issue.id}", :author => @journal.user) %> - -<% details_to_strings(@journal_details, true).each do |string| -%> -<%= string %> -<% end -%> - -<% if @journal.notes? -%> -<%= @journal.notes %> - -<% end -%> ----------------------------------------- -<%= render :partial => 'issue', :formats => [:text], :locals => { :issue => @issue, :user => @user, :issue_url => @issue_url } %> diff --git a/app/views/mailer/lost_password.html.erb b/app/views/mailer/lost_password.html.erb deleted file mode 100644 index 5ec7d09..0000000 --- a/app/views/mailer/lost_password.html.erb +++ /dev/null @@ -1,6 +0,0 @@ -

    <%= l(:mail_body_lost_password) %>
    -<%= link_to @url, @url %>

    - -

    <%= l(:mail_body_lost_password_validity) %>

    - -

    <%= l(:field_login) %>: <%= @token.user.login %>

    diff --git a/app/views/mailer/lost_password.text.erb b/app/views/mailer/lost_password.text.erb deleted file mode 100644 index 005ae62..0000000 --- a/app/views/mailer/lost_password.text.erb +++ /dev/null @@ -1,6 +0,0 @@ -<%= l(:mail_body_lost_password) %> -<%= @url %> - -<%= l(:mail_body_lost_password_validity) %> - -<%= l(:field_login) %>: <%= @token.user.login %> diff --git a/app/views/mailer/message_posted.html.erb b/app/views/mailer/message_posted.html.erb deleted file mode 100644 index 3401b18..0000000 --- a/app/views/mailer/message_posted.html.erb +++ /dev/null @@ -1,4 +0,0 @@ -

    <%= @message.board.project.name %> - <%= @message.board.name %>: <%= link_to(@message.subject, @message_url) %>

    -<%= @message.author %> - -<%= textilizable(@message, :content, :only_path => false) %> diff --git a/app/views/mailer/message_posted.text.erb b/app/views/mailer/message_posted.text.erb deleted file mode 100644 index ef6a3b3..0000000 --- a/app/views/mailer/message_posted.text.erb +++ /dev/null @@ -1,4 +0,0 @@ -<%= @message_url %> -<%= @message.author %> - -<%= @message.content %> diff --git a/app/views/mailer/news_added.html.erb b/app/views/mailer/news_added.html.erb deleted file mode 100644 index daf250a..0000000 --- a/app/views/mailer/news_added.html.erb +++ /dev/null @@ -1,4 +0,0 @@ -

    <%= link_to(@news.title, @news_url) %>

    -<%= @news.author.name %> - -<%= textilizable(@news, :description, :only_path => false) %> diff --git a/app/views/mailer/news_added.text.erb b/app/views/mailer/news_added.text.erb deleted file mode 100644 index c8ae303..0000000 --- a/app/views/mailer/news_added.text.erb +++ /dev/null @@ -1,5 +0,0 @@ -<%= @news.title %> -<%= @news_url %> -<%= @news.author.name %> - -<%= @news.description %> diff --git a/app/views/mailer/news_comment_added.html.erb b/app/views/mailer/news_comment_added.html.erb deleted file mode 100644 index c9cc2a7..0000000 --- a/app/views/mailer/news_comment_added.html.erb +++ /dev/null @@ -1,5 +0,0 @@ -

    <%= link_to(@news.title, @news_url) %>

    - -

    <%= l(:text_user_wrote, :value => h(@comment.author)) %>

    - -<%= textilizable @comment, :comments, :only_path => false %> diff --git a/app/views/mailer/news_comment_added.text.erb b/app/views/mailer/news_comment_added.text.erb deleted file mode 100644 index aadbc37..0000000 --- a/app/views/mailer/news_comment_added.text.erb +++ /dev/null @@ -1,6 +0,0 @@ -<%= @news.title %> -<%= @news_url %> - -<%= l(:text_user_wrote, :value => @comment.author) %> - -<%= @comment.comments %> diff --git a/app/views/mailer/register.html.erb b/app/views/mailer/register.html.erb deleted file mode 100644 index 5e8f6df..0000000 --- a/app/views/mailer/register.html.erb +++ /dev/null @@ -1,2 +0,0 @@ -

    <%= l(:mail_body_register) %>
    -<%= link_to @url, @url %>

    diff --git a/app/views/mailer/register.text.erb b/app/views/mailer/register.text.erb deleted file mode 100644 index 102a15e..0000000 --- a/app/views/mailer/register.text.erb +++ /dev/null @@ -1,2 +0,0 @@ -<%= l(:mail_body_register) %> -<%= @url %> diff --git a/app/views/mailer/reminder.html.erb b/app/views/mailer/reminder.html.erb deleted file mode 100644 index 6f86fcb..0000000 --- a/app/views/mailer/reminder.html.erb +++ /dev/null @@ -1,9 +0,0 @@ -

    <%= l(:mail_body_reminder, :count => @issues.size, :days => @days) %>

    - -
      -<% @issues.each do |issue| -%> -
    • <%= link_to_issue(issue, :project => true, :only_path => false) %> (<%= due_date_distance_in_words(issue.due_date) %>)
    • -<% end -%> -
    - -

    <%= link_to l(:label_issue_view_all), @issues_url %> (<%= l(:label_x_open_issues_abbr, :count => @open_issues_count) %>)

    diff --git a/app/views/mailer/reminder.text.erb b/app/views/mailer/reminder.text.erb deleted file mode 100644 index 5d38d1a..0000000 --- a/app/views/mailer/reminder.text.erb +++ /dev/null @@ -1,8 +0,0 @@ -<%= l(:mail_body_reminder, :count => @issues.size, :days => @days) %>: - -<% @issues.each do |issue| -%> -* <%= "#{issue.project} - #{issue.tracker} ##{issue.id}: #{issue.subject} (#{due_date_distance_in_words(issue.due_date)})" %> -<% end -%> - -<%= l(:label_issue_view_all)%> (<%= l(:label_x_open_issues_abbr, :count => @open_issues_count) %>) -<%= @issues_url %> diff --git a/app/views/mailer/security_notification.html.erb b/app/views/mailer/security_notification.html.erb deleted file mode 100644 index 762bbf0..0000000 --- a/app/views/mailer/security_notification.html.erb +++ /dev/null @@ -1,12 +0,0 @@ -

    <%= @message %>
    -<% if @url && @title -%> -<%= link_to @title, @url -%> -<% elsif @url -%> -<%= link_to @url -%> -<% elsif @title -%> -<%= content_tag :h1, @title -%> -<% end %>

    - -

    <%= l(:field_user) %>: <%= @sender.login %>
    -<%= l(:field_remote_ip) %>: <%= @remote_ip %>
    -<%= l(:label_date) %>: <%= format_time Time.now, true %>

    diff --git a/app/views/mailer/security_notification.text.erb b/app/views/mailer/security_notification.text.erb deleted file mode 100644 index e5c143e..0000000 --- a/app/views/mailer/security_notification.text.erb +++ /dev/null @@ -1,7 +0,0 @@ -<%= @message %> - -<%= @url || @title %> - -<%= l(:field_user) %>: <%= @sender.login %> -<%= l(:field_remote_ip) %>: <%= @remote_ip %> -<%= l(:label_date) %>: <%= format_time Time.now, true %> diff --git a/app/views/mailer/settings_updated.html.erb b/app/views/mailer/settings_updated.html.erb deleted file mode 100644 index 999719f..0000000 --- a/app/views/mailer/settings_updated.html.erb +++ /dev/null @@ -1,14 +0,0 @@ -

    <%= l(:mail_body_settings_updated) %>

    - -
      -<% @changes.each do |name| %> -
    • <%= l("setting_#{name}") %>
    • -<% end %> -
    - -<%= link_to @url, @url %> - -

    <%= l(:field_user) %>: <%= @sender.login %>
    -<%= l(:field_remote_ip) %>: <%= @remote_ip %>
    -<%= l(:label_date) %>: <%= format_time Time.now, true %>

    - diff --git a/app/views/mailer/settings_updated.text.erb b/app/views/mailer/settings_updated.text.erb deleted file mode 100644 index 8987fd0..0000000 --- a/app/views/mailer/settings_updated.text.erb +++ /dev/null @@ -1,12 +0,0 @@ -<%= l(:mail_body_settings_updated) %> - -<% @changes.each do |name| %> - * <%= l("setting_#{name}") %> -<% end %> - -<%= @url %> - -<%= l(:field_user) %>: <%= @sender.login %> -<%= l(:field_remote_ip) %>: <%= @remote_ip %> -<%= l(:label_date) %>: <%= format_time Time.now, true %> - diff --git a/app/views/mailer/test_email.html.erb b/app/views/mailer/test_email.html.erb deleted file mode 100644 index c73f0e3..0000000 --- a/app/views/mailer/test_email.html.erb +++ /dev/null @@ -1,2 +0,0 @@ -

    This is a test email sent by Redmine.
    -Redmine URL: <%= link_to @url, @url %>

    diff --git a/app/views/mailer/test_email.text.erb b/app/views/mailer/test_email.text.erb deleted file mode 100644 index 790d6ab..0000000 --- a/app/views/mailer/test_email.text.erb +++ /dev/null @@ -1,2 +0,0 @@ -This is a test email sent by Redmine. -Redmine URL: <%= @url %> diff --git a/app/views/mailer/wiki_content_added.html.erb b/app/views/mailer/wiki_content_added.html.erb deleted file mode 100644 index f6d92a9..0000000 --- a/app/views/mailer/wiki_content_added.html.erb +++ /dev/null @@ -1,3 +0,0 @@ -

    <%= l(:mail_body_wiki_content_added, :id => link_to(@wiki_content.page.pretty_title, @wiki_content_url), - :author => h(@wiki_content.author)).html_safe %>
    -<%= @wiki_content.comments %>

    diff --git a/app/views/mailer/wiki_content_added.text.erb b/app/views/mailer/wiki_content_added.text.erb deleted file mode 100644 index 5e8c77f..0000000 --- a/app/views/mailer/wiki_content_added.text.erb +++ /dev/null @@ -1,5 +0,0 @@ -<%= l(:mail_body_wiki_content_added, :id => h(@wiki_content.page.pretty_title), - :author => h(@wiki_content.author)) %> -<%= @wiki_content.comments %> - -<%= @wiki_content_url %> diff --git a/app/views/mailer/wiki_content_updated.html.erb b/app/views/mailer/wiki_content_updated.html.erb deleted file mode 100644 index 83a9a16..0000000 --- a/app/views/mailer/wiki_content_updated.html.erb +++ /dev/null @@ -1,6 +0,0 @@ -

    <%= l(:mail_body_wiki_content_updated, :id => link_to(@wiki_content.page.pretty_title, @wiki_content_url), - :author => h(@wiki_content.author)).html_safe %>
    -<%= @wiki_content.comments %>

    - -

    <%= l(:label_view_diff) %>:
    -<%= link_to @wiki_diff_url, @wiki_diff_url %>

    diff --git a/app/views/mailer/wiki_content_updated.text.erb b/app/views/mailer/wiki_content_updated.text.erb deleted file mode 100644 index 4b3a973..0000000 --- a/app/views/mailer/wiki_content_updated.text.erb +++ /dev/null @@ -1,8 +0,0 @@ -<%= l(:mail_body_wiki_content_updated, :id => h(@wiki_content.page.pretty_title), - :author => h(@wiki_content.author)) %> -<%= @wiki_content.comments %> - -<%= @wiki_content.page.pretty_title %>: -<%= @wiki_content_url %> -<%= l(:label_view_diff) %>: -<%= @wiki_diff_url %> diff --git a/app/views/members/_edit.html.erb b/app/views/members/_edit.html.erb deleted file mode 100644 index 8b05ae9..0000000 --- a/app/views/members/_edit.html.erb +++ /dev/null @@ -1,22 +0,0 @@ -<%= form_for(@member, :url => membership_path(@member), - :as => :membership, - :remote => request.xhr?, - :method => :put) do |f| %> -

    - <% @roles.each do |role| %> - - <% end %> -

    - <%= hidden_field_tag 'membership[role_ids][]', '', :id => nil %> -

    - <%= submit_tag l(:button_save) %> - <%= link_to_function l(:button_cancel), - "$('#member-#{@member.id}-roles').show(); $('#member-#{@member.id}-form').empty(); return false;" if request.xhr? %> -

    -<% end %> diff --git a/app/views/members/_new_form.html.erb b/app/views/members/_new_form.html.erb deleted file mode 100644 index 70caa26..0000000 --- a/app/views/members/_new_form.html.erb +++ /dev/null @@ -1,16 +0,0 @@ -
    - <%= label_tag("principal_search", l(:label_principal_search)) %> -

    <%= text_field_tag('principal_search', nil) %>

    - <%= javascript_tag "observeSearchfield('principal_search', null, '#{ escape_javascript autocomplete_project_memberships_path(@project, :format => 'js') }')" %> -
    - <%= render_principals_for_new_members(@project) %> -
    -
    -
    - <%= toggle_checkboxes_link('.roles-selection input') %><%= l(:label_role_plural) %> -
    - <% User.current.managed_roles(@project).each do |role| %> - - <% end %> -
    -
    diff --git a/app/views/members/_new_modal.html.erb b/app/views/members/_new_modal.html.erb deleted file mode 100644 index 3cb3360..0000000 --- a/app/views/members/_new_modal.html.erb +++ /dev/null @@ -1,9 +0,0 @@ -

    <%= l(:label_member_new) %>

    - -<%= form_for @member, :as => :membership, :url => project_memberships_path(@project), :remote => true, :method => :post do |f| %> - <%= render :partial => 'new_form' %> -

    - <%= submit_tag l(:button_add), :id => 'member-add-submit' %> - <%= link_to_function l(:button_cancel), "hideModal(this);" %> -

    -<% end %> diff --git a/app/views/members/autocomplete.js.erb b/app/views/members/autocomplete.js.erb deleted file mode 100644 index ba98983..0000000 --- a/app/views/members/autocomplete.js.erb +++ /dev/null @@ -1 +0,0 @@ -$('#principals_for_new_member').html('<%= escape_javascript(render_principals_for_new_members(@project)) %>'); diff --git a/app/views/members/create.js.erb b/app/views/members/create.js.erb deleted file mode 100644 index d716743..0000000 --- a/app/views/members/create.js.erb +++ /dev/null @@ -1,12 +0,0 @@ -$('#tab-content-members').html('<%= escape_javascript(render :partial => 'projects/settings/members') %>'); -hideOnLoad(); - -<% if @members.present? && @members.all? {|m| m.valid? } %> - hideModal(); - <% @members.each do |member| %> - $("#member-<%= member.id %>").effect("highlight"); - <% end %> -<% elsif @members.present? %> - <% errors = @members.collect {|m| m.errors.full_messages}.flatten.uniq.join(', ') %> - alert('<%= raw(escape_javascript(l(:notice_failed_to_save_members, :errors => errors))) %>'); -<% end %> diff --git a/app/views/members/destroy.js.erb b/app/views/members/destroy.js.erb deleted file mode 100644 index 17beff4..0000000 --- a/app/views/members/destroy.js.erb +++ /dev/null @@ -1,2 +0,0 @@ -$('#tab-content-members').html('<%= escape_javascript(render :partial => 'projects/settings/members') %>'); -hideOnLoad(); diff --git a/app/views/members/edit.html.erb b/app/views/members/edit.html.erb deleted file mode 100644 index 99ef316..0000000 --- a/app/views/members/edit.html.erb +++ /dev/null @@ -1,3 +0,0 @@ -<%= title "#{@member.principal} - #{@member.project}" %> - -<%= render :partial => 'edit' %> diff --git a/app/views/members/edit.js.erb b/app/views/members/edit.js.erb deleted file mode 100644 index 379ed3e..0000000 --- a/app/views/members/edit.js.erb +++ /dev/null @@ -1,3 +0,0 @@ -$("#member-<%= @member.id %>-roles").hide(); -$("#member-<%= @member.id %>-form").html("<%= escape_javascript(render :partial => "edit") %>"); - diff --git a/app/views/members/index.api.rsb b/app/views/members/index.api.rsb deleted file mode 100644 index dd591ea..0000000 --- a/app/views/members/index.api.rsb +++ /dev/null @@ -1,18 +0,0 @@ -api.array :memberships, api_meta(:total_count => @member_count, :offset => @offset, :limit => @limit) do - @members.each do |membership| - api.membership do - api.id membership.id - api.project :id => membership.project.id, :name => membership.project.name - api.__send__ membership.principal.class.name.underscore, :id => membership.principal.id, :name => membership.principal.name - api.array :roles do - membership.member_roles.each do |member_role| - if member_role.role - attrs = {:id => member_role.role.id, :name => member_role.role.name} - attrs.merge!(:inherited => true) if member_role.inherited_from.present? - api.role attrs - end - end - end - end - end -end diff --git a/app/views/members/new.html.erb b/app/views/members/new.html.erb deleted file mode 100644 index 97dd380..0000000 --- a/app/views/members/new.html.erb +++ /dev/null @@ -1,6 +0,0 @@ -

    <%= l(:label_member_new) %>

    - -<%= form_for @member, :as => :membership, :url => project_memberships_path(@project), :method => :post do |f| %> - <%= render :partial => 'new_form' %> -

    <%= submit_tag l(:button_add), :name => nil %>

    -<% end %> diff --git a/app/views/members/new.js.erb b/app/views/members/new.js.erb deleted file mode 100644 index ba74783..0000000 --- a/app/views/members/new.js.erb +++ /dev/null @@ -1,2 +0,0 @@ -$('#ajax-modal').html('<%= escape_javascript(render :partial => 'members/new_modal') %>'); -showModal('ajax-modal', '90%'); diff --git a/app/views/members/show.api.rsb b/app/views/members/show.api.rsb deleted file mode 100644 index 55def9e..0000000 --- a/app/views/members/show.api.rsb +++ /dev/null @@ -1,14 +0,0 @@ -api.membership do - api.id @member.id - api.project :id => @member.project.id, :name => @member.project.name - api.__send__ @member.principal.class.name.underscore, :id => @member.principal.id, :name => @member.principal.name - api.array :roles do - @member.member_roles.each do |member_role| - if member_role.role - attrs = {:id => member_role.role.id, :name => member_role.role.name} - attrs.merge!(:inherited => true) if member_role.inherited_from.present? - api.role attrs - end - end - end -end diff --git a/app/views/members/update.js.erb b/app/views/members/update.js.erb deleted file mode 100644 index 245828a..0000000 --- a/app/views/members/update.js.erb +++ /dev/null @@ -1,3 +0,0 @@ -$('#tab-content-members').html('<%= escape_javascript(render :partial => 'projects/settings/members') %>'); -hideOnLoad(); -$("#member-<%= @member.id %>").effect("highlight"); diff --git a/app/views/messages/_form.html.erb b/app/views/messages/_form.html.erb deleted file mode 100644 index 7d3a9c5..0000000 --- a/app/views/messages/_form.html.erb +++ /dev/null @@ -1,38 +0,0 @@ -<%= error_messages_for 'message' %> -<% replying ||= false %> - -
    - -


    -<%= f.text_field :subject, :size => 120, :id => "message_subject" %> - -<% unless replying %> - <% if @message.safe_attribute? 'sticky' %> - <%= f.check_box :sticky %> <%= label_tag 'message_sticky', l(:label_board_sticky) %> - <% end %> - <% if @message.safe_attribute? 'locked' %> - <%= f.check_box :locked %> <%= label_tag 'message_locked', l(:label_board_locked) %> - <% end %> -<% end %> -

    - -<% if !replying && !@message.new_record? && @message.safe_attribute?('board_id') %> -


    - <%= f.select :board_id, boards_options_for_select(@message.project.boards) %>

    -<% end %> - -

    -<%= label_tag "message_content", l(:description_message_content), :class => "hidden-for-sighted" %> -<%= f.text_area :content, :cols => 80, :rows => 15, :class => 'wiki-edit', :id => 'message_content', - :accesskey => accesskey(:edit), - :data => { - :auto_complete => true, - :issues_url => auto_complete_issues_path(:project_id => @project, :q => '') - } -%>

    -<%= wikitoolbar_for 'message_content', preview_board_message_path(:board_id => @board, :id => @message) %> - - -

    <%= l(:label_attachment_plural) %>
    -<%= render :partial => 'attachments/form', :locals => {:container => @message} %>

    -
    diff --git a/app/views/messages/edit.html.erb b/app/views/messages/edit.html.erb deleted file mode 100644 index 559afc6..0000000 --- a/app/views/messages/edit.html.erb +++ /dev/null @@ -1,15 +0,0 @@ -<%= board_breadcrumb(@message) %> - -

    <%= avatar(@topic.author) %><%= @topic.subject %>

    - -<%= form_for @message, { - :as => :message, - :url => {:action => 'edit'}, - :html => {:multipart => true, - :id => 'message-form', - :method => :post} - } do |f| %> - <%= render :partial => 'form', - :locals => {:f => f, :replying => !@message.parent.nil?} %> - <%= submit_tag l(:button_save) %> -<% end %> diff --git a/app/views/messages/new.html.erb b/app/views/messages/new.html.erb deleted file mode 100644 index be63814..0000000 --- a/app/views/messages/new.html.erb +++ /dev/null @@ -1,6 +0,0 @@ -

    <%= link_to @board.name, :controller => 'boards', :action => 'show', :project_id => @project, :id => @board %> » <%= l(:label_message_new) %>

    - -<%= form_for @message, :url => {:action => 'new'}, :html => {:multipart => true, :id => 'message-form'} do |f| %> - <%= render :partial => 'form', :locals => {:f => f} %> - <%= submit_tag l(:button_create) %> -<% end %> diff --git a/app/views/messages/quote.js.erb b/app/views/messages/quote.js.erb deleted file mode 100644 index fe4bed9..0000000 --- a/app/views/messages/quote.js.erb +++ /dev/null @@ -1,4 +0,0 @@ -$('#message_subject').val("<%= raw escape_javascript(@subject) %>"); -$('#message_content').val("<%= raw escape_javascript(@content) %>"); -showAndScrollTo("reply", "message_content"); -$('#message_content').scrollTop = $('#message_content').scrollHeight - $('#message_content').clientHeight; diff --git a/app/views/messages/show.html.erb b/app/views/messages/show.html.erb deleted file mode 100644 index b8abf03..0000000 --- a/app/views/messages/show.html.erb +++ /dev/null @@ -1,92 +0,0 @@ -<%= board_breadcrumb(@message) %> - -
    - <%= watcher_link(@topic, User.current) %> - <%= link_to( - l(:button_quote), - {:action => 'quote', :id => @topic}, - :method => 'get', - :class => 'icon icon-comment', - :remote => true) if !@topic.locked? && authorize_for('messages', 'reply') %> - <%= link_to( - l(:button_edit), - {:action => 'edit', :id => @topic}, - :class => 'icon icon-edit' - ) if @message.editable_by?(User.current) %> - <%= link_to( - l(:button_delete), - {:action => 'destroy', :id => @topic}, - :method => :post, - :data => {:confirm => l(:text_are_you_sure)}, - :class => 'icon icon-del' - ) if @message.destroyable_by?(User.current) %> -
    - -

    <%= avatar(@topic.author) %><%= @topic.subject %>

    - -
    -

    <%= authoring @topic.created_on, @topic.author %>

    -
    -<%= textilizable(@topic, :content) %> -
    -<%= link_to_attachments @topic, :author => false, :thumbnails => true %> -
    -
    - -<% unless @replies.empty? %> -
    -

    <%= l(:label_reply_plural) %> (<%= @reply_count %>)

    -<% if !@topic.locked? && authorize_for('messages', 'reply') && @replies.size >= 3 %> -

    <%= toggle_link l(:button_reply), "reply", :focus => 'message_content', :scroll => "message_content" %>

    -<% end %> -<% @replies.each do |message| %> -
    "> -
    - <%= link_to( - '', - {:action => 'quote', :id => message}, - :remote => true, - :method => 'get', - :title => l(:button_quote), - :class => 'icon icon-comment' - ) if !@topic.locked? && authorize_for('messages', 'reply') %> - <%= link_to( - '', - {:action => 'edit', :id => message}, - :title => l(:button_edit), - :class => 'icon icon-edit' - ) if message.editable_by?(User.current) %> - <%= link_to( - '', - {:action => 'destroy', :id => message}, - :method => :post, - :data => {:confirm => l(:text_are_you_sure)}, - :title => l(:button_delete), - :class => 'icon icon-del' - ) if message.destroyable_by?(User.current) %> -
    -

    - <%= avatar(message.author) %> - <%= link_to message.subject, { :controller => 'messages', :action => 'show', :board_id => @board, :id => @topic, :r => message, :anchor => "message-#{message.id}" } %> - - - <%= authoring message.created_on, message.author %> -

    -
    <%= textilizable message, :content, :attachments => message.attachments %>
    - <%= link_to_attachments message, :author => false, :thumbnails => true %> -
    -<% end %> -
    -<%= pagination_links_full @reply_pages, @reply_count, :per_page_links => false %> -<% end %> - -<% if !@topic.locked? && authorize_for('messages', 'reply') %> -

    <%= toggle_link l(:button_reply), "reply", :focus => 'message_content' %>

    - -<% end %> - -<% html_title @topic.subject %> diff --git a/app/views/my/_sidebar.html.erb b/app/views/my/_sidebar.html.erb deleted file mode 100644 index e372425..0000000 --- a/app/views/my/_sidebar.html.erb +++ /dev/null @@ -1,36 +0,0 @@ -

    <%=l(:label_my_account)%>

    - -

    <%=l(:field_login)%>: <%= link_to_user(@user, :format => :username) %>
    -<%=l(:field_created_on)%>: <%= format_time(@user.created_on) %>

    - -<% if @user.own_account_deletable? %> -

    <%= link_to(l(:button_delete_my_account), {:action => 'destroy'}, :class => 'icon icon-del') %>

    -<% end %> - -

    <%= l(:label_feeds_access_key) %>

    - -

    -<% if @user.rss_token %> -<%= l(:label_feeds_access_key_created_on, distance_of_time_in_words(Time.now, @user.rss_token.created_on)) %> -<% else %> -<%= l(:label_missing_feeds_access_key) %> -<% end %> -(<%= link_to l(:button_reset), my_rss_key_path, :method => :post %>) -

    - -<% if Setting.rest_api_enabled? %> -

    <%= l(:label_api_access_key) %>

    -
    - <%= link_to l(:button_show), my_api_key_path, :remote => true %> -
    
    -
    -<%= javascript_tag("$('#api-access-key').hide();") %> -

    -<% if @user.api_token %> -<%= l(:label_api_access_key_created_on, distance_of_time_in_words(Time.now, @user.api_token.created_on)) %> -<% else %> -<%= l(:label_missing_api_access_key) %> -<% end %> -(<%= link_to l(:button_reset), my_api_key_path, :method => :post %>) -

    -<% end %> diff --git a/app/views/my/account.api.rsb b/app/views/my/account.api.rsb deleted file mode 100644 index c1cac2b..0000000 --- a/app/views/my/account.api.rsb +++ /dev/null @@ -1,13 +0,0 @@ -api.user do - api.id @user.id - api.login @user.login - api.admin @user.admin? - api.firstname @user.firstname - api.lastname @user.lastname - api.mail @user.mail - api.created_on @user.created_on - api.last_login_on @user.last_login_on - api.api_key @user.api_key - - render_api_custom_values @user.visible_custom_field_values, api -end diff --git a/app/views/my/account.html.erb b/app/views/my/account.html.erb deleted file mode 100644 index 87b2d7c..0000000 --- a/app/views/my/account.html.erb +++ /dev/null @@ -1,62 +0,0 @@ -
    -<%= additional_emails_link(@user) %> -<%= link_to(l(:button_change_password), {:action => 'password'}, :class => 'icon icon-passwd') if @user.change_password_allowed? %> -<%= call_hook(:view_my_account_contextual, :user => @user)%> -
    - -

    - <%= avatar_edit_link(@user, :size => "50") %> - <%=l(:label_my_account)%> -

    - -<%= error_messages_for 'user' %> - -<%= labelled_form_for :user, @user, - :url => { :action => "account" }, - :html => { :id => 'my_account_form', - :method => :put, :multipart => true } do |f| %> -
    -
    -
    - <%=l(:label_information_plural)%> -

    <%= f.text_field :firstname, :required => true %>

    -

    <%= f.text_field :lastname, :required => true %>

    -

    <%= f.text_field :mail, :required => true %>

    - <% unless @user.force_default_language? %> -

    <%= f.select :language, lang_options_for_select %>

    - <% end %> - <% if Setting.openid? %> -

    <%= f.text_field :identity_url %>

    - <% end %> - - <% @user.custom_field_values.select(&:editable?).each do |value| %> -

    <%= custom_field_tag_with_label :user, value %>

    - <% end %> - <%= call_hook(:view_my_account, :user => @user, :form => f) %> -
    - -

    <%= submit_tag l(:button_save) %>

    -
    - -
    -
    - <%=l(:field_mail_notification)%> - <%= render :partial => 'users/mail_notifications' %> -
    - -
    - <%=l(:label_preferences)%> - <%= render :partial => 'users/preferences' %> - <%= call_hook(:view_my_account_preferences, :user => @user, :form => f) %> -
    - -

    <%= submit_tag l(:button_save) %>

    -
    -
    -<% end %> - -<% content_for :sidebar do %> -<%= render :partial => 'sidebar' %> -<% end %> - -<% html_title(l(:label_my_account)) -%> diff --git a/app/views/my/add_block.js.erb b/app/views/my/add_block.js.erb deleted file mode 100644 index c2382ee..0000000 --- a/app/views/my/add_block.js.erb +++ /dev/null @@ -1,3 +0,0 @@ -$("#block-<%= escape_javascript @block %>").remove(); -$("#list-top").prepend("<%= escape_javascript render_blocks([@block], @user) %>"); -$("#block-select").replaceWith("<%= escape_javascript block_select_tag(@user) %>"); diff --git a/app/views/my/blocks/_activity.html.erb b/app/views/my/blocks/_activity.html.erb deleted file mode 100644 index 40f4355..0000000 --- a/app/views/my/blocks/_activity.html.erb +++ /dev/null @@ -1,5 +0,0 @@ -

    <%= link_to l(:label_activity), :controller => 'activities', - :action => 'index', :id => nil, :user_id => User.current, - :from => events_by_day.keys.first %>

    - -<%= render :partial => 'activities/activities', :locals => {:events_by_day => events_by_day} %> diff --git a/app/views/my/blocks/_calendar.html.erb b/app/views/my/blocks/_calendar.html.erb deleted file mode 100644 index c85190f..0000000 --- a/app/views/my/blocks/_calendar.html.erb +++ /dev/null @@ -1,3 +0,0 @@ -

    <%= l(:label_calendar) %>

    - -<%= render :partial => 'common/calendar', :locals => {:calendar => calendar } %> diff --git a/app/views/my/blocks/_documents.html.erb b/app/views/my/blocks/_documents.html.erb deleted file mode 100644 index 560adca..0000000 --- a/app/views/my/blocks/_documents.html.erb +++ /dev/null @@ -1,3 +0,0 @@ -

    <%=l(:label_document_plural)%>

    - -<%= render :partial => 'documents/document', :collection => documents %> diff --git a/app/views/my/blocks/_issue_query_selection.html.erb b/app/views/my/blocks/_issue_query_selection.html.erb deleted file mode 100644 index 640f049..0000000 --- a/app/views/my/blocks/_issue_query_selection.html.erb +++ /dev/null @@ -1,19 +0,0 @@ -

    - <%= l(:label_issue_plural) %> -

    - -
    - <%= form_tag(my_page_path, :remote => true) do %> -
    -

    - -

    -
    -

    - <%= submit_tag l(:button_save) %> -

    - <% end %> -
    diff --git a/app/views/my/blocks/_issues.erb b/app/views/my/blocks/_issues.erb deleted file mode 100644 index 845ef5b..0000000 --- a/app/views/my/blocks/_issues.erb +++ /dev/null @@ -1,41 +0,0 @@ -
    - <%= link_to_function l(:label_options), "$('##{block}-settings').toggle();", :class => 'icon-only icon-settings', :title => l(:label_options) %> -
    - -

    - <%= "#{query.project} |" if query.project %> - <%= link_to query.name, _project_issues_path(query.project, query.as_params) %> - (<%= query.issue_count %>) -

    - - - -<% if issues.any? %> - <%= render :partial => 'issues/list', - :locals => { - :issues => issues, - :query => query, - :query_options => { - :sort_param => "settings[#{block}][sort]", - :sort_link_options => {:method => :post, :remote => true} - } - } %> -<% else %> -

    <%= l(:label_no_data) %>

    -<% end %> - -<% content_for :header_tags do %> -<%= auto_discovery_link_tag(:atom, - _project_issues_path(query.project, query.as_params.merge(:format => 'atom', :key => User.current.rss_key)), - {:title => query.name}) %> -<% end %> diff --git a/app/views/my/blocks/_news.html.erb b/app/views/my/blocks/_news.html.erb deleted file mode 100644 index 62a6186..0000000 --- a/app/views/my/blocks/_news.html.erb +++ /dev/null @@ -1,3 +0,0 @@ -

    <%=l(:label_news_latest)%>

    - -<%= render :partial => 'news/news', :collection => news %> diff --git a/app/views/my/blocks/_timelog.html.erb b/app/views/my/blocks/_timelog.html.erb deleted file mode 100644 index 7354c75..0000000 --- a/app/views/my/blocks/_timelog.html.erb +++ /dev/null @@ -1,66 +0,0 @@ -
    - <%= link_to_function l(:label_options), "$('#timelog-settings').toggle();", :class => 'icon-only icon-settings', :title => l(:label_options) %> -
    - -

    - <%= link_to l(:label_spent_time), time_entries_path(:user_id => 'me') %> - (<%= l(:label_last_n_days, days) %>: <%= l_hours_short entries.sum(&:hours) %>) - <%= link_to l(:button_log_time), new_time_entry_path, :class => "icon-only icon-add", :title => l(:button_log_time) if User.current.allowed_to?(:log_time, nil, :global => true) %> -

    - - - - -<% if entries.any? %> -<%= form_tag({}, :data => {:cm_url => time_entries_context_menu_path}) do %> - - - - - - - - - -<% entries_by_day.keys.sort.reverse_each do |day| %> - - - - - - - <% entries_by_day[day].each do |entry| -%> - - - - - - - - <% end -%> -<% end -%> - -
    <%= l(:label_activity) %><%= l(:label_project) %><%= l(:field_comments) %><%= l(:field_hours) %>
    <%= day == User.current.today ? l(:label_today).titleize : format_date(day) %><%= html_hours(format_hours(entries_by_day[day].sum(&:hours))) %>
    - <%= check_box_tag("ids[]", entry.id, false, :style => 'display:none;', :id => nil) %> - <%= entry.activity %> - <%= entry.project %> <%= h(' - ') + link_to_issue(entry.issue, :truncate => 50) if entry.issue %><%= entry.comments %><%= html_hours(format_hours(entry.hours)) %><%= link_to_context_menu %>
    -<% end %> -<% else %> -

    <%= l(:label_no_data) %>

    -<% end %> diff --git a/app/views/my/destroy.html.erb b/app/views/my/destroy.html.erb deleted file mode 100644 index c944355..0000000 --- a/app/views/my/destroy.html.erb +++ /dev/null @@ -1,11 +0,0 @@ -

    <%=l(:label_confirmation)%>

    -
    -

    <%= simple_format l(:text_account_destroy_confirmation)%>

    -

    - <%= form_tag({}) do %> - - <%= submit_tag l(:button_delete_my_account) %> | - <%= link_to l(:button_cancel), :action => 'account' %> - <% end %> -

    -
    diff --git a/app/views/my/page.html.erb b/app/views/my/page.html.erb deleted file mode 100644 index f7a2f55..0000000 --- a/app/views/my/page.html.erb +++ /dev/null @@ -1,46 +0,0 @@ -
    - <%= form_tag({:action => "add_block"}, :remote => true, :id => "block-form", authenticity_token: true) do %> - <%= label_tag('block-select', l(:button_add)) %>: - <%= block_select_tag(@user) %> - <% end %> -
    - -

    <%=l(:label_my_page)%>

    - -
    -<% @groups.each do |group| %> -
    - <%= render_blocks(@blocks[group], @user) %> -
    -<% end %> -
    - -<%= context_menu %> - -<%= javascript_tag do %> -$(document).ready(function(){ - $('#block-select').val(''); - $('.block-receiver').sortable({ - connectWith: '.block-receiver', - tolerance: 'pointer', - handle: '.sort-handle', - start: function(event, ui){$(this).parent().addClass('dragging');}, - stop: function(event, ui){$(this).parent().removeClass('dragging');}, - update: function(event, ui){ - // trigger the call on the list that receives the block only - if ($(this).find(ui.item).length > 0) { - $.ajax({ - url: "<%= escape_javascript url_for(:action => "order_blocks") %>", - type: 'post', - data: { - 'group': $(this).attr('id').replace(/^list-/, ''), - 'blocks': $.map($(this).children(), function(el){return $(el).attr('id').replace(/^block-/, '');}) - } - }); - } - } - }); -}); -<% end %> - -<% html_title(l(:label_my_page)) -%> diff --git a/app/views/my/password.html.erb b/app/views/my/password.html.erb deleted file mode 100644 index 4e123db..0000000 --- a/app/views/my/password.html.erb +++ /dev/null @@ -1,28 +0,0 @@ -

    <%=l(:button_change_password)%>

    - -<%= error_messages_for 'user' %> - -<%= form_tag({}, :class => "tabular") do %> -
    -

    -<%= password_field_tag 'password', nil, :size => 25 %>

    - -

    -<%= password_field_tag 'new_password', nil, :size => 25 %> - <%= l(:text_caracters_minimum, :count => Setting.password_min_length) %> - <% if Setting.password_required_char_classes.any? %> - <%= l(:text_characters_must_contain, :character_classes => Setting.password_required_char_classes.collect{|c| l("label_password_char_class_#{c}")}.join(", ")) %> - <% end %> -

    - -

    -<%= password_field_tag 'new_password_confirmation', nil, :size => 25 %>

    -
    -<%= submit_tag l(:button_apply) %> -<% end %> - -<% unless @user.must_change_password? %> -<% content_for :sidebar do %> -<%= render :partial => 'sidebar' %> -<% end %> -<% end %> diff --git a/app/views/my/remove_block.js.erb b/app/views/my/remove_block.js.erb deleted file mode 100644 index 275e9e1..0000000 --- a/app/views/my/remove_block.js.erb +++ /dev/null @@ -1,2 +0,0 @@ -$("#block-<%= escape_javascript @block %>").remove(); -$("#block-select").replaceWith("<%= escape_javascript block_select_tag(@user) %>"); diff --git a/app/views/my/show_api_key.html.erb b/app/views/my/show_api_key.html.erb deleted file mode 100644 index cea8289..0000000 --- a/app/views/my/show_api_key.html.erb +++ /dev/null @@ -1,7 +0,0 @@ -

    <%= l :label_api_access_key %>

    - -
    -
    <%= @user.api_key %>
    -
    - -

    <%= link_to l(:button_back), action: 'account' %>

    diff --git a/app/views/my/show_api_key.js.erb b/app/views/my/show_api_key.js.erb deleted file mode 100644 index 73b0ee0..0000000 --- a/app/views/my/show_api_key.js.erb +++ /dev/null @@ -1 +0,0 @@ -$('#api-access-key').html('<%= escape_javascript @user.api_key %>').toggle(); diff --git a/app/views/my/update_page.js.erb b/app/views/my/update_page.js.erb deleted file mode 100644 index d51ab81..0000000 --- a/app/views/my/update_page.js.erb +++ /dev/null @@ -1,3 +0,0 @@ -<% @updated_blocks.each do |block| %> - $("#block-<%= block %>").replaceWith("<%= escape_javascript render_block(block.to_s, @user) %>"); -<% end %> diff --git a/app/views/news/_form.html.erb b/app/views/news/_form.html.erb deleted file mode 100644 index 58f68e1..0000000 --- a/app/views/news/_form.html.erb +++ /dev/null @@ -1,15 +0,0 @@ -<%= error_messages_for @news %> - -
    -

    <%= f.text_field :title, :required => true, :size => 60 %>

    -

    <%= f.text_area :summary, :cols => 60, :rows => 2 %>

    -

    <%= f.text_area :description, :required => true, :cols => 60, :rows => 15, :class => 'wiki-edit', - :data => { - :auto_complete => true, - :issues_url => auto_complete_issues_path(:project_id => @project, :q => '') - } -%>

    -

    <%= render :partial => 'attachments/form', :locals => {:container => @news} %>

    -
    - -<%= wikitoolbar_for 'news_description', preview_news_path(:project_id => @project, :id => @news) %> diff --git a/app/views/news/_news.html.erb b/app/views/news/_news.html.erb deleted file mode 100644 index 391d9a9..0000000 --- a/app/views/news/_news.html.erb +++ /dev/null @@ -1,6 +0,0 @@ -

    <%= link_to_project(news.project) + ': ' unless @project %> -<%= link_to news.title, news_path(news) %> -<% if news.comments_count > 0 %>(<%= l(:label_x_comments, :count => news.comments_count) %>)<% end %> -
    -<% unless news.summary.blank? %><%= news.summary %>
    <% end %> -<%= authoring news.created_on, news.author %>

    diff --git a/app/views/news/edit.html.erb b/app/views/news/edit.html.erb deleted file mode 100644 index 50b8973..0000000 --- a/app/views/news/edit.html.erb +++ /dev/null @@ -1,10 +0,0 @@ -

    <%=l(:label_news)%>

    - -<%= labelled_form_for @news, :html => { :id => 'news-form', :multipart => true, :method => :put } do |f| %> -<%= render :partial => 'form', :locals => { :f => f } %> -<%= submit_tag l(:button_save) %> -<% end %> - -<% content_for :header_tags do %> - <%= stylesheet_link_tag 'scm' %> -<% end %> diff --git a/app/views/news/index.api.rsb b/app/views/news/index.api.rsb deleted file mode 100644 index 5786cee..0000000 --- a/app/views/news/index.api.rsb +++ /dev/null @@ -1,14 +0,0 @@ -api.array :news, api_meta(:total_count => @news_count, :offset => @offset, :limit => @limit) do - @newss.each do |news| - api.news do - api.id news.id - api.project(:id => news.project_id, :name => news.project.name) unless news.project.nil? - api.author(:id => news.author_id, :name => news.author.name) unless news.author.nil? - - api.title news.title - api.summary news.summary - api.description news.description - api.created_on news.created_on - end - end -end diff --git a/app/views/news/index.html.erb b/app/views/news/index.html.erb deleted file mode 100644 index 073099f..0000000 --- a/app/views/news/index.html.erb +++ /dev/null @@ -1,49 +0,0 @@ -
    -<%= link_to(l(:label_news_new), - new_project_news_path(@project), - :class => 'icon icon-add', - :onclick => 'showAndScrollTo("add-news", "news_title"); return false;') if @project && User.current.allowed_to?(:manage_news, @project) %> -<%= watcher_link(@project.enabled_module('news'), User.current) if @project && User.current.logged? %> -
    - - - -

    <%=l(:label_news_plural)%>

    - -<% if @newss.empty? %> -

    <%= l(:label_no_data) %>

    -<% else %> -<% @newss.each do |news| %> -
    -
    -

    <%= avatar(news.author) %><%= link_to_project(news.project) + ': ' unless news.project == @project %> - <%= link_to h(news.title), news_path(news) %> - <%= "(#{l(:label_x_comments, :count => news.comments_count)})" if news.comments_count > 0 %>

    -

    <%= authoring news.created_on, news.author %>

    -
    -
    - <%= textilizable(news, :description) %> -
    -
    -<% end %> -<% end %> -<%= pagination_links_full @news_pages %> - -<% other_formats_links do |f| %> - <%= f.link_to 'Atom', :url => {:project_id => @project, :key => User.current.rss_key} %> -<% end %> - -<% content_for :header_tags do %> - <%= auto_discovery_link_tag(:atom, _project_news_path(@project, :key => User.current.rss_key, :format => 'atom')) %> - <%= stylesheet_link_tag 'scm' %> -<% end %> - -<% html_title(l(:label_news_plural)) -%> diff --git a/app/views/news/new.html.erb b/app/views/news/new.html.erb deleted file mode 100644 index cf57140..0000000 --- a/app/views/news/new.html.erb +++ /dev/null @@ -1,7 +0,0 @@ -

    <%=l(:label_news_new)%>

    - -<%= labelled_form_for @news, :url => project_news_index_path(@project), - :html => { :id => 'news-form', :multipart => true } do |f| %> - <%= render :partial => 'news/form', :locals => { :f => f } %> - <%= submit_tag l(:button_create) %> -<% end %> diff --git a/app/views/news/show.api.rsb b/app/views/news/show.api.rsb deleted file mode 100644 index 0dd3a3b..0000000 --- a/app/views/news/show.api.rsb +++ /dev/null @@ -1,24 +0,0 @@ -api.news do - api.id @news.id - api.project(:id => @news.project_id, :name => @news.project.name) unless @news.project.nil? - api.author(:id => @news.author_id, :name => @news.author.name) unless @news.author.nil? - api.title @news.title - api.summary @news.summary unless @news.summary.blank? - api.description @news.description - api.created_on @news.created_on - - api.array :attachments do - @news.attachments.each do |attachment| - render_api_attachment(attachment, api) - end - end if include_in_api_response?('attachments') - - api.array :comments do - @comments.each do |comment| - api.comment :id => comment.id do - api.author(:id => comment.author_id, :name => comment.author.name) unless comment.author.nil? - api.content comment.content - end - end - end if include_in_api_response?('comments') -end diff --git a/app/views/news/show.html.erb b/app/views/news/show.html.erb deleted file mode 100644 index 04ea54a..0000000 --- a/app/views/news/show.html.erb +++ /dev/null @@ -1,72 +0,0 @@ -
    -<%= watcher_link(@news, User.current) %> -<%= link_to(l(:button_edit), - edit_news_path(@news), - :class => 'icon icon-edit', - :accesskey => accesskey(:edit), - :onclick => '$("#edit-news").show(); return false;') if User.current.allowed_to?(:manage_news, @project) %> -<%= delete_link news_path(@news) if User.current.allowed_to?(:manage_news, @project) %> -
    - -

    <%= avatar(@news.author) %> <%=h @news.title %>

    - -<% if authorize_for('news', 'edit') %> - -<% end %> - -

    <% unless @news.summary.blank? %><%= @news.summary %>
    <% end %> -<%= authoring @news.created_on, @news.author %>

    -
    -<%= textilizable(@news, :description) %> -
    -<%= link_to_attachments @news %> -
    - -
    -

    <%= l(:label_comment_plural) %>

    -<% if @news.commentable? && @comments.size >= 3 %> -

    <%= toggle_link l(:label_comment_add), "add_comment_form", :focus => "comment_comments", :scroll => "comment_comments" %>

    -<% end %> -<% @comments.each do |comment| %> - <% next if comment.new_record? %> -
    - <%= link_to_if_authorized l(:button_delete), {:controller => 'comments', :action => 'destroy', :id => @news, :comment_id => comment}, - :data => {:confirm => l(:text_are_you_sure)}, :method => :delete, - :title => l(:button_delete), - :class => 'icon-only icon-del' %> -
    -

    <%= avatar(comment.author) %><%= authoring comment.created_on, comment.author %>

    -
    - <%= textilizable(comment.comments) %> -
    -<% end if @comments.any? %> -
    - -<% if @news.commentable? %> -

    <%= toggle_link l(:label_comment_add), "add_comment_form", :focus => "comment_comments" %>

    -<%= form_tag({:controller => 'comments', :action => 'create', :id => @news}, :id => "add_comment_form", :style => "display:none;") do %> -
    - <%= text_area 'comment', 'comments', :cols => 80, :rows => 15, :class => 'wiki-edit', - :data => { - :auto_complete => true, - :issues_url => auto_complete_issues_path(:project_id => @project, :q => '') - } - %> - <%= wikitoolbar_for 'comment_comments', preview_news_path(:project_id => @project, :id => @news) %> -
    -

    <%= submit_tag l(:button_add) %>

    -<% end %> -<% end %> - -<% html_title @news.title -%> - -<% content_for :header_tags do %> - <%= stylesheet_link_tag 'scm' %> -<% end %> diff --git a/app/views/previews/.gitkeep b/app/views/previews/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/app/views/principal_memberships/_edit.html.erb b/app/views/principal_memberships/_edit.html.erb deleted file mode 100644 index 224303b..0000000 --- a/app/views/principal_memberships/_edit.html.erb +++ /dev/null @@ -1,22 +0,0 @@ -<%= form_for(@membership, :url => principal_membership_path(@principal, @membership), - :as => :membership, - :remote => request.xhr?, - :method => :put) do %> -

    - <% @roles.each do |role| %> - - <% end %> -

    - <%= hidden_field_tag 'membership[role_ids][]', '', :id => nil %> -

    - <%= submit_tag l(:button_save) %> - <%= link_to_function l(:button_cancel), - "$('#member-#{@membership.id}-roles').show(); $('#member-#{@membership.id}-form').empty(); return false;" if request.xhr? %> -

    -<% end %> diff --git a/app/views/principal_memberships/_index.html.erb b/app/views/principal_memberships/_index.html.erb deleted file mode 100644 index c55a195..0000000 --- a/app/views/principal_memberships/_index.html.erb +++ /dev/null @@ -1,39 +0,0 @@ -<% memberships = principal.memberships.preload(:member_roles, :roles).sorted_by_project.to_a %> - -

    <%= link_to l(:label_add_projects), new_principal_membership_path(principal), :remote => true, :class => "icon icon-add" %>

    - -<% if memberships.any? %> - - - - - - <%= call_table_header_hook principal %> - - - <% memberships.each do |membership| %> - <% next if membership.new_record? %> - - - - - <%= call_table_row_hook principal, membership %> - - <% end %> - -
    <%= l(:label_project) %><%= l(:label_role_plural) %>
    - <%= link_to_project membership.project %> - - <%=h membership.roles.sort.collect(&:to_s).join(', ') %> -
    -
    - <%= link_to l(:button_edit), - edit_principal_membership_path(principal, membership), - :remote => true, - :class => 'icon icon-edit' - %> - <%= delete_link principal_membership_path(principal, membership), :remote => true if membership.deletable? %> -
    -<% else %> -

    <%= l(:label_no_data) %>

    -<% end %> diff --git a/app/views/principal_memberships/_new_form.html.erb b/app/views/principal_memberships/_new_form.html.erb deleted file mode 100644 index 90d91fc..0000000 --- a/app/views/principal_memberships/_new_form.html.erb +++ /dev/null @@ -1,24 +0,0 @@ -
    - <%= toggle_checkboxes_link('.projects-selection input:enabled') %><%= l(:label_project_plural) %> -
    -
    - <%= render_project_nested_lists(@projects) do |p| %> - - <% end %> -
    -
    -
    - -
    - <%= toggle_checkboxes_link('.roles-selection input') %><%= l(:label_role_plural) %> -
    - <% @roles.each do |role| %> - - <% end %> -
    -
    diff --git a/app/views/principal_memberships/_new_modal.html.erb b/app/views/principal_memberships/_new_modal.html.erb deleted file mode 100644 index 945eff7..0000000 --- a/app/views/principal_memberships/_new_modal.html.erb +++ /dev/null @@ -1,9 +0,0 @@ -

    <%= l(:label_add_projects) %>

    - -<%= form_for :membership, :remote => true, :url => user_memberships_path(@principal), :method => :post do |f| %> - <%= render :partial => 'new_form' %> -

    - <%= submit_tag l(:button_add), :name => nil %> - <%= link_to_function l(:button_cancel), "hideModal(this);" %> -

    -<% end %> diff --git a/app/views/principal_memberships/create.js.erb b/app/views/principal_memberships/create.js.erb deleted file mode 100644 index 17d7ee1..0000000 --- a/app/views/principal_memberships/create.js.erb +++ /dev/null @@ -1,12 +0,0 @@ -$('#tab-content-memberships').html('<%= escape_javascript(render :partial => 'principal_memberships/index', :locals => {:principal => @principal}) %>'); -hideOnLoad(); - -<% if @members.present? && @members.all? {|m| m.persisted? } %> - hideModal(); - <% @members.each do |member| %> - $("#member-<%= member.id %>").effect("highlight"); - <% end %> -<% elsif @members.present? %> - <% errors = @members.collect {|m| m.errors.full_messages}.flatten.uniq.join(', ') %> - alert('<%= raw(escape_javascript(l(:notice_failed_to_save_members, :errors => errors))) %>'); -<% end %> diff --git a/app/views/principal_memberships/destroy.js.erb b/app/views/principal_memberships/destroy.js.erb deleted file mode 100644 index c8564f4..0000000 --- a/app/views/principal_memberships/destroy.js.erb +++ /dev/null @@ -1 +0,0 @@ -$('#tab-content-memberships').html('<%= escape_javascript(render :partial => 'principal_memberships/index', :locals => {:principal => @principal}) %>'); diff --git a/app/views/principal_memberships/edit.html.erb b/app/views/principal_memberships/edit.html.erb deleted file mode 100644 index 15e6412..0000000 --- a/app/views/principal_memberships/edit.html.erb +++ /dev/null @@ -1,3 +0,0 @@ -<%= title "#{@membership.principal} - #{@membership.project}" %> - -<%= render :partial => 'edit' %> diff --git a/app/views/principal_memberships/edit.js.erb b/app/views/principal_memberships/edit.js.erb deleted file mode 100644 index 083bac5..0000000 --- a/app/views/principal_memberships/edit.js.erb +++ /dev/null @@ -1,2 +0,0 @@ -$("#member-<%= @membership.id %>-roles").hide(); -$("#member-<%= @membership.id %>-form").html("<%= escape_javascript(render :partial => "edit") %>"); diff --git a/app/views/principal_memberships/new.html.erb b/app/views/principal_memberships/new.html.erb deleted file mode 100644 index 64d2ebe..0000000 --- a/app/views/principal_memberships/new.html.erb +++ /dev/null @@ -1,6 +0,0 @@ -

    <%= l(:label_add_projects) %>

    - -<%= form_for :membership, :url => user_memberships_path(@principal), :method => :post do |f| %> - <%= render :partial => 'new_form' %> -

    <%= submit_tag l(:button_add), :name => nil %>

    -<% end %> diff --git a/app/views/principal_memberships/new.js.erb b/app/views/principal_memberships/new.js.erb deleted file mode 100644 index 625eeaf..0000000 --- a/app/views/principal_memberships/new.js.erb +++ /dev/null @@ -1,13 +0,0 @@ -$('#ajax-modal').html('<%= escape_javascript(render :partial => 'principal_memberships/new_modal') %>'); -showModal('ajax-modal', '700px'); - -$('.projects-selection').on('click', 'input[type=checkbox]', function(e){ - if (!$(this).is(':checked')) { - if ($(this).closest('li').find('ul input[type=checkbox]:not(:checked)').length > 0) { - $(this).closest('li').find('ul input[type=checkbox]:not(:checked)').attr('checked', 'checked'); - e.preventDefault(); - } else { - $(this).closest('li').find('ul input[type=checkbox]:checked').removeAttr('checked'); - } - } -}); diff --git a/app/views/principal_memberships/update.js.erb b/app/views/principal_memberships/update.js.erb deleted file mode 100644 index 2b720ff..0000000 --- a/app/views/principal_memberships/update.js.erb +++ /dev/null @@ -1,9 +0,0 @@ -<% if @membership.destroyed? %> - $("#member-<%= @membership.id %>").remove(); -<% elsif @membership.valid? %> - $("#member-<%= @membership.id %>-form").empty(); - $("#member-<%= @membership.id %>-roles").html("<%= escape_javascript @membership.roles.sort.collect(&:to_s).join(', ') %>").show(); - $("#member-<%= @membership.id %>").effect("highlight"); -<% else %> - alert('<%= raw(escape_javascript(l(:notice_failed_to_save_members, :errors => @membership.errors.full_messages.join(', ')))) %>'); -<% end %> diff --git a/app/views/projects/_board.html.erb b/app/views/projects/_board.html.erb deleted file mode 100644 index 7d63a53..0000000 --- a/app/views/projects/_board.html.erb +++ /dev/null @@ -1,3 +0,0 @@ -
    - <%= render_project_hierarchy(@entries) %> -
    diff --git a/app/views/projects/_edit.html.erb b/app/views/projects/_edit.html.erb deleted file mode 100644 index 5c60b17..0000000 --- a/app/views/projects/_edit.html.erb +++ /dev/null @@ -1,4 +0,0 @@ -<%= labelled_form_for @project, :html => {:multipart => true} do |f| %> -<%= render :partial => 'form', :locals => { :f => f } %> -<%= submit_tag l(:button_save) %> -<% end %> diff --git a/app/views/projects/_form.html.erb b/app/views/projects/_form.html.erb deleted file mode 100644 index 7c988fb..0000000 --- a/app/views/projects/_form.html.erb +++ /dev/null @@ -1,65 +0,0 @@ -<%= error_messages_for 'project' %> - -
    - -

    <%= f.text_field :name, :required => true, :size => 60 %>

    - -

    <%= f.text_area :description, :rows => 8, :class => 'wiki-edit' %>

    -

    <%= f.text_field :identifier, :required => true, :size => 60, :disabled => @project.identifier_frozen?, :maxlength => Project::IDENTIFIER_MAX_LENGTH %> -<% unless @project.identifier_frozen? %> - <%= l(:text_length_between, :min => 1, :max => Project::IDENTIFIER_MAX_LENGTH) %> <%= l(:text_project_identifier_info).html_safe %> -<% end %>

    -

    <%= f.text_field :homepage, :size => 60 %>

    -

    - <%= f.check_box :is_public %> - <%= Setting.login_required? ? l(:text_project_is_public_non_member) : l(:text_project_is_public_anonymous) %> -

    - -<% unless @project.allowed_parents.compact.empty? %> -

    <%= label(:project, :parent_id, l(:field_parent)) %><%= parent_project_select_tag(@project) %>

    -<% end %> - -<% if @project.safe_attribute? 'inherit_members' %> -

    <%= f.check_box :inherit_members %>

    -<% end %> - -<%= wikitoolbar_for 'project_description' %> - -<% @project.visible_custom_field_values.each do |value| %> -

    <%= custom_field_tag_with_label :project, value %>

    -<% end %> -<%= call_hook(:view_projects_form, :project => @project, :form => f) %> -
    - -<% if @project.safe_attribute?('enabled_module_names') %> -
    <%= toggle_checkboxes_link('#project_modules input[type="checkbox"]') %><%= l(:label_module_plural) %> -<% Redmine::AccessControl.available_project_modules.each do |m| %> - -<% end %> -<%= hidden_field_tag 'project[enabled_module_names][]', '' %> -
    -<% end %> - - -<% unless @project.identifier_frozen? %> - <% content_for :header_tags do %> - <%= javascript_include_tag 'project_identifier' %> - <% end %> -<% end %> - -<% if !User.current.admin? && @project.inherit_members? && @project.parent && User.current.member_of?(@project.parent) %> - <%= javascript_tag do %> - $(document).ready(function() { - $("#project_inherit_members").change(function(){ - if (!$(this).is(':checked')) { - if (!confirm("<%= escape_javascript(l(:text_own_membership_delete_confirmation)) %>")) { - $("#project_inherit_members").attr("checked", true); - } - } - }); - }); - <% end %> -<% end %> diff --git a/app/views/projects/_list.html.erb b/app/views/projects/_list.html.erb deleted file mode 100644 index 3c90921..0000000 --- a/app/views/projects/_list.html.erb +++ /dev/null @@ -1,53 +0,0 @@ -<%= render_query_totals(@query) %> -
    - - - - <% @query.inline_columns.each do |column| %> - <%= column_header(@query, column) %> - <% end %> - - - -<% grouped_project_list(entries, @query) do |entry, level, group_name, group_count, group_totals| -%> - <% if group_name %> - <% reset_cycle %> - - - - <% end %> - "> - <% @query.inline_columns.each do |column| %> - <%= content_tag('td', column_content(column, entry), :class => column.css_classes) %> - <% end %> - -<% end -%> - -
    -   - <%= group_name %> - <% if group_count %> - <%= group_count %> - <% end %> - <%= group_totals %> - <%= link_to_function("#{l(:button_collapse_all)}/#{l(:button_expand_all)}", - "toggleAllRowGroups(this)", :class => 'toggle-all') %> -
    -
    -<%= pagination_links_full @entry_pages, @entry_count %> - - diff --git a/app/views/projects/_members_box.html.erb b/app/views/projects/_members_box.html.erb deleted file mode 100644 index 1a088ea..0000000 --- a/app/views/projects/_members_box.html.erb +++ /dev/null @@ -1,8 +0,0 @@ - <% if @users_by_role.any? %> -
    -

    <%=l(:label_member_plural)%>

    - <% @users_by_role.keys.sort.each do |role| %> -

    <%= role %>: <%= @users_by_role[role].sort.collect{|u| link_to_user u}.join(", ").html_safe %>

    - <% end %> -
    - <% end %> diff --git a/app/views/projects/_sidebar.html.erb b/app/views/projects/_sidebar.html.erb deleted file mode 100644 index f9518e6..0000000 --- a/app/views/projects/_sidebar.html.erb +++ /dev/null @@ -1,2 +0,0 @@ -<%= render_sidebar_queries(ProjectQuery, @project) %> -<%= call_hook(:view_projects_sidebar_queries_bottom) %> diff --git a/app/views/projects/autocomplete.js.erb b/app/views/projects/autocomplete.js.erb deleted file mode 100644 index 03f7fa6..0000000 --- a/app/views/projects/autocomplete.js.erb +++ /dev/null @@ -1,9 +0,0 @@ -<% - s = '' - if @projects.any? - s = render_projects_for_jump_box(@projects) - elsif params[:q].present? - s = content_tag('span', l(:label_no_data)) - end -%> -$('#project-jump .drdn-items.projects').html('<%= escape_javascript s %>'); diff --git a/app/views/projects/bookmark.js.erb b/app/views/projects/bookmark.js.erb deleted file mode 100644 index 559585c..0000000 --- a/app/views/projects/bookmark.js.erb +++ /dev/null @@ -1,2 +0,0 @@ -$('#project-jump div.drdn-items.projects').html('<%= j render_projects_for_jump_box(projects_for_jump_box(User.current), @project) %>'); -$('.contextual a.icon.bookmark').replaceWith('<%= j bookmark_link @project %>'); diff --git a/app/views/projects/copy.html.erb b/app/views/projects/copy.html.erb deleted file mode 100644 index 8a7805e..0000000 --- a/app/views/projects/copy.html.erb +++ /dev/null @@ -1,30 +0,0 @@ -

    <%=l(:label_project_new)%>

    - -<%= labelled_form_for @project, :url => { :action => "copy" } do |f| %> -<%= render :partial => 'form', :locals => { :f => f } %> - -
    <%= toggle_checkboxes_link('.box input[type="checkbox"][name="only[]"]') %><%= l(:button_copy) %> - - - - - - - - - <%= call_hook :view_projects_copy_only_items, project: @source_project, f: f %> - <%= hidden_field_tag 'only[]', '' %> -
    - -
    - -<% @project.tracker_ids.each do |tracker_id| %> - <%= hidden_field_tag 'project[tracker_ids][]', tracker_id %> -<% end %> - -<% @project.issue_custom_field_ids.each do |issue_custom_field_id| %> - <%= hidden_field_tag 'project[issue_custom_field_ids][]', issue_custom_field_id %> -<% end %> - -<%= submit_tag l(:button_copy) %> -<% end %> diff --git a/app/views/projects/destroy.html.erb b/app/views/projects/destroy.html.erb deleted file mode 100644 index 11137f7..0000000 --- a/app/views/projects/destroy.html.erb +++ /dev/null @@ -1,24 +0,0 @@ -<%= title l(:label_confirmation) %> - -<%= form_tag(project_path(@project_to_destroy), :method => :delete) do %> -
    -

    <%=h @project_to_destroy %>

    - -

    -<%=l(:text_project_destroy_confirmation)%> -<% if @project_to_destroy.descendants.any? %> -
    - <%= l(:text_subprojects_destroy_warning, - content_tag('strong', @project_to_destroy.descendants.collect{|p| p.to_s}.join(', '))).html_safe %> -<% end %> -

    -

    - -

    -
    - -

    - <%= submit_tag l(:button_delete) %> - <%= link_to l(:button_cancel), :controller => 'admin', :action => 'projects' %> -

    -<% end %> diff --git a/app/views/projects/index.api.rsb b/app/views/projects/index.api.rsb deleted file mode 100644 index 03c7c0c..0000000 --- a/app/views/projects/index.api.rsb +++ /dev/null @@ -1,20 +0,0 @@ -api.array :projects, api_meta(:total_count => @project_count, :offset => @offset, :limit => @limit) do - @projects.each do |project| - api.project do - api.id project.id - api.name project.name - api.identifier project.identifier - api.description project.description - api.parent(:id => project.parent.id, :name => project.parent.name) if project.parent && project.parent.visible? - api.status project.status - api.is_public project.is_public? - api.inherit_members project.inherit_members? - - render_api_custom_values project.visible_custom_field_values, api - render_api_includes(project, api) - - api.created_on project.created_on - api.updated_on project.updated_on - end - end -end diff --git a/app/views/projects/index.html.erb b/app/views/projects/index.html.erb deleted file mode 100644 index 051bc05..0000000 --- a/app/views/projects/index.html.erb +++ /dev/null @@ -1,38 +0,0 @@ -
    - <%= form_tag({}, :method => :get) do %> - <% end %> - <%= render_project_action_links %> -
    - -

    <%= @query.new_record? ? l(:label_project_plural) : @query.name %>

    - -<%= form_tag(projects_path(@project, nil), :method => :get, :id => 'query_form') do %> -<%= render :partial => 'queries/query_form' %> -<% end %> - -<% if @query.valid? %> - <% if @entries.empty? %> -

    <%= l(:label_no_data) %>

    - <% else %> - <%= render :partial => @query.display_type, :locals => { :entries => @entries }%> - <% end %> -<% end %> - -<% if User.current.logged? %> -

    -<%= l(:label_my_projects) %> -

    -<% end %> - -<% content_for :sidebar do %> - <%= render :partial => 'projects/sidebar' %> -<% end %> - -<% other_formats_links do |f| %> - <%= f.link_to 'Atom', :url => {:key => User.current.rss_key} %> - <% if @query.display_type == 'list' %> - <%= f.link_to_with_query_parameters 'CSV', {}, :onclick => "showModal('csv-export-options', '350px'); return false;" %> - <% end %> -<% end %> - -<% html_title(l(:label_project_plural)) -%> diff --git a/app/views/projects/new.html.erb b/app/views/projects/new.html.erb deleted file mode 100644 index e593822..0000000 --- a/app/views/projects/new.html.erb +++ /dev/null @@ -1,7 +0,0 @@ -<%= title l(:label_project_new) %> - -<%= labelled_form_for @project, :html => {:multipart => true} do |f| %> -<%= render :partial => 'form', :locals => { :f => f } %> -<%= submit_tag l(:button_create) %> -<%= submit_tag l(:button_create_and_continue), :name => 'continue' %> -<% end %> diff --git a/app/views/projects/settings.html.erb b/app/views/projects/settings.html.erb deleted file mode 100644 index eefcb7b..0000000 --- a/app/views/projects/settings.html.erb +++ /dev/null @@ -1,5 +0,0 @@ -

    <%=l(:label_settings)%>

    - -<%= render_tabs project_settings_tabs %> - -<% html_title(l(:label_settings)) -%> diff --git a/app/views/projects/settings/_activities.html.erb b/app/views/projects/settings/_activities.html.erb deleted file mode 100644 index dce68df..0000000 --- a/app/views/projects/settings/_activities.html.erb +++ /dev/null @@ -1,45 +0,0 @@ -
    -<%= link_to(l(:button_reset), project_enumerations_path(@project), - :method => :delete, - :data => {:confirm => l(:text_are_you_sure)}, - :class => 'icon icon-del') %> -<% if User.current.admin? %> -<%= link_to l(:label_administration), enumerations_path, :class => "icon icon-settings" %> -<% end %> -
    - -<%= form_tag(project_enumerations_path(@project), :method => :put, :class => "tabular") do %> - - - - - - <% TimeEntryActivity.new.available_custom_fields.each do |value| %> - - <% end %> - - - - <% @project.activities(true).each do |enumeration| %> - <%= fields_for "enumerations[#{enumeration.id}]", enumeration do |ff| %> - - - - <% enumeration.custom_field_values.each do |value| %> - - <% end %> - - - <% end %> - <% end %> -
    <%= l(:field_name) %><%= l(:enumeration_system_activity) %><%= value.name %><%= toggle_checkboxes_link('input.enumerations_active') %> <%= l(:field_active) %>
    - <%= ff.hidden_field :parent_id, :value => enumeration.id unless enumeration.project %> - <%= enumeration %> - <%= checked_image !enumeration.project %> - <%= custom_field_tag "enumerations[#{enumeration.id}]", value %> - - <%= ff.check_box :active, :class => 'enumerations_active' %> -
    - -<%= submit_tag l(:button_save) %> -<% end %> diff --git a/app/views/projects/settings/_boards.html.erb b/app/views/projects/settings/_boards.html.erb deleted file mode 100644 index bf0b786..0000000 --- a/app/views/projects/settings/_boards.html.erb +++ /dev/null @@ -1,33 +0,0 @@ -<% if User.current.allowed_to?(:manage_boards, @project) %> -

    <%= link_to l(:label_board_new), new_project_board_path(@project), :class => 'icon icon-add' %>

    -<% end %> - -<% if @project.boards.any? %> -
    -
    -
    <%= l(:label_board) %>
    -
    - <%= render_boards_tree(@project.boards) do |board, level| %> -
    -
    - <%= link_to board.name, project_board_path(@project, board) %> -
    -
    <%= board.description %>
    -
    - <% if User.current.allowed_to?(:manage_boards, @project) %> - <%= reorder_handle(board) %> - <%= link_to l(:button_edit), edit_project_board_path(@project, board), :class => 'icon icon-edit' %> - <%= delete_link project_board_path(@project, board) %> - <% end %> -
    -
    - <% end %> -
    - -<%= javascript_tag do %> - $(function() { $("div.sort-level").positionedItems(); }); -<% end %> - -<% else %> -

    <%= l(:label_no_data) %>

    -<% end %> diff --git a/app/views/projects/settings/_issue_categories.html.erb b/app/views/projects/settings/_issue_categories.html.erb deleted file mode 100644 index 3cd78e3..0000000 --- a/app/views/projects/settings/_issue_categories.html.erb +++ /dev/null @@ -1,29 +0,0 @@ -

    <%= link_to l(:label_issue_category_new), new_project_issue_category_path(@project), :class => 'icon icon-add' if User.current.allowed_to?(:manage_categories, @project) %>

    - -<% if @project.issue_categories.any? %> - - - - - - - -<% for category in @project.issue_categories %> - <% unless category.new_record? %> - - - - - - <% end %> -<% end %> - -
    <%= l(:label_issue_category) %><%= l(:field_assigned_to) %>
    <%= category.name %><%= category.assigned_to.name if category.assigned_to %> - <% if User.current.allowed_to?(:manage_categories, @project) %> - <%= link_to l(:button_edit), edit_issue_category_path(category), :class => 'icon icon-edit' %> - <%= delete_link issue_category_path(category) %> - <% end %> -
    -<% else %> -

    <%= l(:label_no_data) %>

    -<% end %> diff --git a/app/views/projects/settings/_issues.html.erb b/app/views/projects/settings/_issues.html.erb deleted file mode 100644 index 5b2db29..0000000 --- a/app/views/projects/settings/_issues.html.erb +++ /dev/null @@ -1,47 +0,0 @@ -<%= labelled_form_for @project do |f| %> - <%= hidden_field_tag 'tab', 'issues' %> - - <% unless @trackers.empty? %> -
    <%= toggle_checkboxes_link('#project_trackers input[type=checkbox]') %><%= l(:label_tracker_plural)%> - <% if User.current.admin? %> -
    <%= link_to l(:label_administration), trackers_path, :class => "icon icon-settings" %>
    - <% end %> - <% @trackers.each do |tracker| %> - - <% end %> - <%= hidden_field_tag 'project[tracker_ids][]', '' %> -
    - <% end %> - - <% unless @issue_custom_fields.empty? %> -
    <%= toggle_checkboxes_link('#project_issue_custom_fields input[type=checkbox]:enabled') %><%=l(:label_custom_field_plural)%> - <% if User.current.admin? %> -
    <%= link_to l(:label_administration), custom_fields_path, :class => "icon icon-settings" %>
    - <% end %> - <% @issue_custom_fields.each do |custom_field| %> - - <% end %> - <%= hidden_field_tag 'project[issue_custom_field_ids][]', '' %> -
    - <% end %> - -
    - <% if @project.safe_attribute?('default_version_id') %> -

    <%= f.select :default_version_id, project_default_version_options(@project), include_blank: l(:label_none) %>

    - <% end %> - - <% if @project.safe_attribute?('default_assigned_to_id') %> -

    <%= f.select :default_assigned_to_id, project_default_assigned_to_options(@project), include_blank: l(:label_none) %>

    - <% end %> -
    - -

    <%= submit_tag l(:button_save) %>

    -<% end %> diff --git a/app/views/projects/settings/_members.html.erb b/app/views/projects/settings/_members.html.erb deleted file mode 100644 index 6dab1c2..0000000 --- a/app/views/projects/settings/_members.html.erb +++ /dev/null @@ -1,43 +0,0 @@ -<% members = @project.memberships.preload(:project).sorted.to_a %> - -<% if User.current.admin? %> -
    <%= link_to l(:label_administration), users_path, :class => "icon icon-settings" %>
    -<% end %> -

    <%= link_to l(:label_member_new), new_project_membership_path(@project), :remote => true, :class => "icon icon-add" %>

    - -<% if members.any? %> - - - - - - - <%= call_hook(:view_projects_settings_members_table_header, :project => @project) %> - - - - <% members.each do |member| %> - <% next if member.new_record? %> - - - - - <%= call_hook(:view_projects_settings_members_table_row, { :project => @project, :member => member}) %> - -<% end %> - -
    <%= l(:label_user) %> / <%= l(:label_group) %><%= l(:label_role_plural) %>
    <%= link_to_user member.principal %> - <%= member.roles.sort.collect(&:to_s).join(', ') %> -
    -
    - <%= link_to l(:button_edit), - edit_membership_path(member), - :remote => true, - :class => 'icon icon-edit' %> - <%= delete_link membership_path(member), - :remote => true, - :data => (!User.current.admin? && member.include?(User.current) ? {:confirm => l(:text_own_membership_delete_confirmation)} : {}) if member.deletable? %> -
    -<% else %> -

    <%= l(:label_no_data) %>

    -<% end %> diff --git a/app/views/projects/settings/_repositories.html.erb b/app/views/projects/settings/_repositories.html.erb deleted file mode 100644 index 8ae2ba2..0000000 --- a/app/views/projects/settings/_repositories.html.erb +++ /dev/null @@ -1,43 +0,0 @@ -<% if User.current.allowed_to?(:manage_repository, @project) %> -

    <%= link_to l(:label_repository_new), new_project_repository_path(@project), :class => 'icon icon-add' %>

    -<% end %> - -<% if @project.repositories.any? %> -
    - - - - - - - - - - - - <% @project.repositories.sort.each do |repository| %> - - - - - - - - <% end %> - -
    <%= l(:field_identifier) %><%= l(:field_repository_is_default) %><%= l(:label_scm) %><%= l(:label_repository) %>
    - <%= link_to repository.identifier, - {:controller => 'repositories', :action => 'show',:id => @project, :repository_id => repository.identifier_param} if repository.identifier.present? %> - <%= checked_image repository.is_default? %><%= repository.scm_name %><%= repository.url %> - <% if User.current.allowed_to?(:manage_repository, @project) %> - <%= link_to(l(:label_user_plural), committers_repository_path(repository), - :class => 'icon icon-user') %> - <%= link_to(l(:button_edit), edit_repository_path(repository), - :class => 'icon icon-edit') %> - <%= delete_link repository_path(repository) %> - <% end %> -
    -
    -<% else %> -

    <%= l(:label_no_data) %>

    -<% end %> diff --git a/app/views/projects/settings/_versions.html.erb b/app/views/projects/settings/_versions.html.erb deleted file mode 100644 index 80d67cc..0000000 --- a/app/views/projects/settings/_versions.html.erb +++ /dev/null @@ -1,56 +0,0 @@ -<% if @versions.any? %> -
    - <%= link_to l(:label_close_versions), close_completed_project_versions_path(@project), :class => 'icon icon-locked', :method => :put %> -
    -<% end %> -

    - <%= link_to l(:label_version_new), new_project_version_path(@project, :back_url => ''), :class => 'icon icon-add' if User.current.allowed_to?(:manage_versions, @project) %> -

    - -<%= form_tag(settings_project_path(@project, :tab => 'versions'), :method => :get) do %> -
    <%= l(:label_filter_plural) %> - -<%= select_tag 'version_status', options_for_select([[l(:label_all), '']] + Version::VERSION_STATUSES.collect {|s| [l("version_status_#{s}"), s]}, @version_status), :onchange => "this.form.submit(); return false;" %> - -<%= text_field_tag 'version_name', @version_name, :size => 30 %> -<%= submit_tag l(:button_apply), :name => nil %> -<%= link_to l(:button_clear), settings_project_path(@project, :tab => 'versions'), :class => 'icon icon-reload' %> -
    -<% end %> -  - -<% if @versions.present? %> - - - - - - - - - - - - -<% @versions.each do |version| %> - - - - - - - - - - -<% end %> - -
    <%= l(:label_version) %><%= l(:field_default_version) %><%= l(:field_effective_date) %><%= l(:field_description) %><%= l(:field_status) %><%= l(:field_sharing) %><%= l(:label_wiki_page) %>
    <%= link_to_version version %><%= checked_image(version.id == @project.default_version_id) %><%= format_date(version.effective_date) %><%= version.description %><%= l("version_status_#{version.status}") %><%= link_to_if_authorized(version.wiki_page_title, {:controller => 'wiki', :action => 'show', :project_id => version.project, :id => Wiki.titleize(version.wiki_page_title)}) || h(version.wiki_page_title) unless version.wiki_page_title.blank? || version.project.wiki.nil? %> - <% if version.project == @project && User.current.allowed_to?(:manage_versions, @project) %> - <%= link_to l(:button_edit), edit_version_path(version), :class => 'icon icon-edit' %> - <%= delete_link version_path(version) %> - <% end %> -
    -<% else %> -

    <%= l(:label_no_data) %>

    -<% end %> diff --git a/app/views/projects/show.api.rsb b/app/views/projects/show.api.rsb deleted file mode 100644 index 7ad4ecc..0000000 --- a/app/views/projects/show.api.rsb +++ /dev/null @@ -1,19 +0,0 @@ -api.project do - api.id @project.id - api.name @project.name - api.identifier @project.identifier - api.description @project.description - api.homepage @project.homepage - api.parent(:id => @project.parent.id, :name => @project.parent.name) if @project.parent && @project.parent.visible? - api.status @project.status - api.is_public @project.is_public? - api.inherit_members @project.inherit_members? - api.default_version(:id => @project.default_version.id, :name => @project.default_version.name) if @project.default_version - api.default_assignee(:id => @project.project.default_assigned_to.id, :name => @project.project.default_assigned_to.name) if @project.default_assigned_to - - render_api_custom_values @project.visible_custom_field_values, api - render_api_includes(@project, api) - - api.created_on @project.created_on - api.updated_on @project.updated_on -end diff --git a/app/views/projects/show.html.erb b/app/views/projects/show.html.erb deleted file mode 100644 index c8745be..0000000 --- a/app/views/projects/show.html.erb +++ /dev/null @@ -1,154 +0,0 @@ -
    - <%= bookmark_link @project %> - - <%= actions_dropdown do %> - <% if User.current.allowed_to?(:add_subprojects, @project) %> - <%= link_to l(:label_subproject_new), new_project_path(:parent_id => @project), :class => 'icon icon-add' %> - <% end %> - <% if User.current.allowed_to?(:close_project, @project) %> - <% if @project.active? %> - <%= link_to l(:button_close), close_project_path(@project), :data => {:confirm => l(:text_are_you_sure)}, :method => :post, :class => 'icon icon-lock' %> - <% else %> - <%= link_to l(:button_reopen), reopen_project_path(@project), :data => {:confirm => l(:text_are_you_sure)}, :method => :post, :class => 'icon icon-unlock' %> - <% end %> - <% end %> - <%= link_to_if_authorized l(:label_settings), - {:controller => 'projects', :action => 'settings', :id => @project}, - :class => 'icon icon-settings' if User.current.allowed_to?(:edit_project, @project) %> - <% end %> -
    - -

    <%=l(:label_overview)%>

    - -<% unless @project.active? %> -

    <%= l(:text_project_closed) %>

    -<% end %> - -
    -
    - <% if @project.description.present? %> -
    - <%= textilizable @project.description %> -
    - <% end %> - <% if @project.homepage.present? || @project.visible_custom_field_values.any? { |o| o.value.present? } %> -
      - <% unless @project.homepage.blank? %> -
    • <%=l(:field_homepage)%>: <%= link_to_if uri_with_safe_scheme?(@project.homepage), @project.homepage, @project.homepage %>
    • - <% end %> - <% render_custom_field_values(@project) do |custom_field, formatted| %> -
    • <%= custom_field.name %>: <%= formatted %>
    • - <% end %> -
    - <% end %> - - <% if User.current.allowed_to?(:view_issues, @project) %> -
    -

    - <%=l(:label_issue_tracking)%>  - <%= link_to l(:label_details), - project_issues_report_details_path(@project, :detail => 'tracker'), - :class => 'icon-only icon-zoom-in', - :title => l(:label_details) %> -

    - <% if @trackers.present? %> - - - - - - - - - - - <% @trackers.each do |tracker| %> - - - - - - - <% end %> - -
    <%=l(:label_open_issues_plural)%><%=l(:label_closed_issues_plural)%><%=l(:label_total)%>
    - <%= link_to tracker.name, project_issues_path(@project, :set_filter => 1, :tracker_id => tracker.id), :title => tracker.description %> - - <%= link_to @open_issues_by_tracker[tracker].to_i, project_issues_path(@project, :set_filter => 1, :tracker_id => tracker.id) %> - - <%= link_to (@total_issues_by_tracker[tracker].to_i - @open_issues_by_tracker[tracker].to_i), project_issues_path(@project, :set_filter => 1, :tracker_id => tracker.id, :status_id => 'c') %> - - <%= link_to @total_issues_by_tracker[tracker].to_i, project_issues_path(@project, :set_filter => 1, :tracker_id => tracker.id, :status_id => '*') %> -
    - <% end %> -

    - <%= link_to l(:label_issue_view_all), project_issues_path(@project, :set_filter => 1) %> - | <%= link_to l(:field_summary), project_issues_report_path(@project) %> - <% if User.current.allowed_to?(:view_calendar, @project, :global => true) %> - | <%= link_to l(:label_calendar), project_calendar_path(@project) %> - <% end %> - <% if User.current.allowed_to?(:view_gantt, @project, :global => true) %> - | <%= link_to l(:label_gantt), project_gantt_path(@project) %> - <% end %> -

    -
    - <% end %> - - <% if User.current.allowed_to?(:view_time_entries, @project) %> -
    -

    <%= l(:label_time_tracking) %>

    -
      - <% if @total_estimated_hours.present? %> -
    • <%= l(:field_estimated_hours) %>: <%= l_hours(@total_estimated_hours) %> - <% end %> - <% if @total_hours.present? %> -
    • <%= l(:label_spent_time) %>: <%= l_hours(@total_hours) %> - <% end %> -
    -

    - <% if User.current.allowed_to?(:log_time, @project) %> - <%= link_to l(:button_log_time), new_project_time_entry_path(@project) %> | - <% end %> - <%= link_to(l(:label_details), project_time_entries_path(@project)) %> | - <%= link_to(l(:label_report), report_project_time_entries_path(@project)) %> -

    -
    -<% end %> - <%= call_hook(:view_projects_show_left, :project => @project) %> -
    - -
    - <% if @news.any? && authorize_for('news', 'index') %> -
    -

    <%=l(:label_news_latest)%>

    - <%= render :partial => 'news/news', :collection => @news %> -

    <%= link_to l(:label_news_view_all), project_news_index_path(@project) %>

    -
    - <% end %> - - <%= render :partial => 'members_box' %> - - <% if @subprojects.any? %> -
    -

    <%=l(:label_subproject_plural)%>

    -
      - <% @subprojects.each do |project| %> -
    • <%= link_to(project.name, project_path(project), :class => project.css_classes).html_safe %>
    • - <% end %> -
    -
    - <% end %> - - <%= call_hook(:view_projects_show_right, :project => @project) %> -
    -
    - -<% content_for :sidebar do %> - <%= call_hook(:view_projects_show_sidebar_bottom, :project => @project) %> -<% end %> - -<% content_for :header_tags do %> -<%= auto_discovery_link_tag(:atom, {:controller => 'activities', :action => 'index', :id => @project, :format => 'atom', :key => User.current.rss_key}) %> -<% end %> - -<% html_title(l(:label_overview)) -%> diff --git a/app/views/queries/_columns.html.erb b/app/views/queries/_columns.html.erb deleted file mode 100644 index 18443de..0000000 --- a/app/views/queries/_columns.html.erb +++ /dev/null @@ -1,42 +0,0 @@ -<% tag_id = tag_name.gsub(/[\[\]]+/, '_').sub(/_+$/, '') %> -<% available_tag_id = "available_#{tag_id}" %> -<% selected_tag_id = "selected_#{tag_id}" %> - - - - <%= label_tag available_tag_id, l(:description_available_columns) %> - <%= select_tag 'available_columns', - options_for_select(query_available_inline_columns_options(query)), - :id => available_tag_id, - :multiple => true, :size => 10, - :ondblclick => "moveOptions(this.form.#{available_tag_id}, this.form.#{selected_tag_id});" %> - - - - - - - <%= label_tag selected_tag_id, l(:description_selected_columns) %> - <%= select_tag tag_name, - options_for_select(query_selected_inline_columns_options(query)), - :id => selected_tag_id, - :multiple => true, :size => 10, - :ondblclick => "moveOptions(this.form.#{selected_tag_id}, this.form.#{available_tag_id});" %> - - - - - - - - - -<%= javascript_tag do %> -$(document).ready(function(){ - $('.query-columns').closest('form').submit(function(){ - $('#<%= selected_tag_id %> option:not(:disabled)').prop('selected', true); - }); -}); -<% end %> diff --git a/app/views/queries/_filters.html.erb b/app/views/queries/_filters.html.erb deleted file mode 100644 index cb95df1..0000000 --- a/app/views/queries/_filters.html.erb +++ /dev/null @@ -1,26 +0,0 @@ -<%= javascript_tag do %> -var operatorLabels = <%= raw_json Query.operators_labels %>; -var operatorByType = <%= raw_json Query.operators_by_filter_type %>; -var availableFilters = <%= raw_json query.available_filters_as_json %>; -var labelDayPlural = <%= raw_json l(:label_day_plural) %>; - -var filtersUrl = <%= raw_json queries_filter_path(:project_id => @query.project.try(:id), :type => @query.type) %>; - -$(document).ready(function(){ - initFilters(); - <% query.filters.each do |field, options| %> - addFilter("<%= field %>", <%= raw_json query.operator_for(field) %>, <%= raw_json query.values_for(field) %>); - <% end %> -}); -<% end %> - - -
    - -
    -<%= label_tag('add_filter_select', l(:label_filter_add)) %> -<%= select_tag 'add_filter_select', filters_options_for_select(query), :name => nil %> -
    - -<%= hidden_field_tag 'f[]', '' %> -<% include_calendar_headers_tags %> diff --git a/app/views/queries/_form.html.erb b/app/views/queries/_form.html.erb deleted file mode 100644 index 7227a6c..0000000 --- a/app/views/queries/_form.html.erb +++ /dev/null @@ -1,118 +0,0 @@ -<%= error_messages_for 'query' %> - -
    -
    -<%= hidden_field_tag 'gantt', '1' if params[:gantt] %> - -

    -<%= text_field 'query', 'name', :size => 80 %>

    - -<% if User.current.admin? || - User.current.allowed_to?(:manage_public_queries, @query.project) %> -

    - - - <% unless @query.type == 'ProjectQuery' %> - - <% Role.givable.sorted.each do |role| %> - - <% end %> - <%= hidden_field_tag 'query[role_ids][]', '' %> - <% end %> -

    -<% end %> - -<% unless @query.type == 'ProjectQuery' %> -

    - <%= check_box_tag 'query_is_for_all', 1, @query.project.nil?, :class => (User.current.admin? ? '' : 'disable-unless-private') %>

    -<% end %> - -
    <%= l(:label_options) %> - <% if @query.available_display_types.size > 1 %> -

    - <%= available_display_types_tags(@query) %> -

    -<% end %> - -

    -<%= check_box_tag 'default_columns', 1, @query.has_default_columns?, :id => 'query_default_columns', - :data => {:disables => "#columns, .block_columns input"} %>

    - -<% unless params[:gantt] %> -

    - <%= select 'query', 'group_by', @query.groupable_columns.collect {|c| [c.caption, c.name.to_s]}, :include_blank => true %>

    - - <% unless @query.available_block_columns.empty? %> -

    - <%= available_block_columns_tags(@query) %>

    - <% end %> - - <% unless @query.available_totalable_columns.empty? %> -

    - <%= available_totalable_columns_tags(@query) %>

    - <% end %> -<% else %> -

    - <%= hidden_field_tag 'query[draw_relations]', '0' %> - <%= hidden_field_tag 'query[draw_progress_line]', '0' %> - <%= hidden_field_tag 'query[draw_selected_columns]', '0' %> - - - -

    -<% end %> -
    -
    - -
    <%= l(:label_filter_plural) %> -<%= render :partial => 'queries/filters', :locals => {:query => query}%> -
    - -<% unless params[:gantt] %> -
    <%= l(:label_sort) %> -<% 3.times do |i| %> -<%= content_tag(:span, "#{i+1}:", :class => 'query_sort_criteria_count')%> -<%= label_tag "query_sort_criteria_attribute_" + i.to_s, - l(:description_query_sort_criteria_attribute), :class => "hidden-for-sighted" %> -<%= select_tag("query[sort_criteria][#{i}][]", - options_for_select([[]] + query.available_columns.select(&:sortable?).collect {|column| [column.caption, column.name.to_s]}, @query.sort_criteria_key(i)), - :id => "query_sort_criteria_attribute_" + i.to_s)%> -<%= label_tag "query_sort_criteria_direction_" + i.to_s, - l(:description_query_sort_criteria_direction), :class => "hidden-for-sighted" %> -<%= select_tag("query[sort_criteria][#{i}][]", - options_for_select([[], [l(:label_ascending), 'asc'], [l(:label_descending), 'desc']], @query.sort_criteria_order(i)), - :id => "query_sort_criteria_direction_" + i.to_s) %> -
    -<% end %> -
    -<% end %> - -<%= content_tag 'fieldset', :id => 'columns' do %> -<%= l(:field_column_names) %> -<%= render_query_columns_selection(query) %> -<% end %> - -
    - -<%= javascript_tag do %> -$(document).ready(function(){ - $("input[name='query[visibility]']").change(function(){ - var roles_checked = $('#query_visibility_1').is(':checked'); - var private_checked = $('#query_visibility_0').is(':checked'); - $("input[name='query[role_ids][]'][type=checkbox]").attr('disabled', !roles_checked); - if (!private_checked) $("input.disable-unless-private").attr('checked', false); - $("input.disable-unless-private").attr('disabled', !private_checked); - }).trigger('change'); -}); - -$(function ($) { - $('input[name=display_type]').change(function () { - var option = $('input[name=display_type]:checked').val(); - if (option == 'board') { - $('fieldset#columns, fieldset#sort, p#default_columns, p#group_by').hide(); - } else { - $('fieldset#columns, fieldset#sort, p#default_columns, p#group_by').show(); - } - }).change(); -}); -<% end %> diff --git a/app/views/queries/_query_form.html.erb b/app/views/queries/_query_form.html.erb deleted file mode 100644 index bb29827..0000000 --- a/app/views/queries/_query_form.html.erb +++ /dev/null @@ -1,87 +0,0 @@ -<%= hidden_field_tag 'set_filter', '1' %> -<%= hidden_field_tag 'type', @query.type, :disabled => true, :id => 'query_type' %> -<%= query_hidden_sort_tag(@query) %> - -
    -
    -
    "> - "><%= l(:label_filter_plural) %> -
    "> - <%= render :partial => 'queries/filters', :locals => {:query => @query} %> -
    -
    - - <% if @query.available_columns.any? %> - - <% end %> -
    - -

    - <%= link_to_function l(:button_apply), '$("#query_form").submit()', :class => 'icon icon-checked' %> - <%= link_to l(:button_clear), { :set_filter => 1, :sort => '', :project_id => @project }, :class => 'icon icon-reload' %> - <% if @query.new_record? %> - <% if User.current.allowed_to?(:save_queries, @project, :global => true) %> - <%= link_to_function l(:button_save), - "$('#query_type').prop('disabled',false);$('#query_form').attr('action', '#{ @project ? new_project_query_path(@project) : new_query_path }').submit()", - :class => 'icon icon-save' %> - <% end %> - <% else %> - <% if @query.editable_by?(User.current) %> - <%= link_to l(:button_edit), edit_query_path(@query), :class => 'icon icon-edit' %> - <%= delete_link query_path(@query) %> - <% end %> - <% end %> -

    -
    - -<%= error_messages_for @query %> - -<%= javascript_tag do %> -$(function ($) { - $('input[name=display_type]').change(function (e) { - if ($("#display_type_list").is(':checked')) { - $('table#list-definition').show(); - } else { - $('table#list-definition').hide(); - } - - }) -}); - -<% end %> diff --git a/app/views/queries/edit.html.erb b/app/views/queries/edit.html.erb deleted file mode 100644 index 9db5137..0000000 --- a/app/views/queries/edit.html.erb +++ /dev/null @@ -1,6 +0,0 @@ -

    <%= l(:label_query) %>

    - -<%= form_tag(query_path(@query), :method => :put, :id => "query-form") do %> - <%= render :partial => 'form', :locals => {:query => @query} %> - <%= submit_tag l(:button_save) %> -<% end %> diff --git a/app/views/queries/index.api.rsb b/app/views/queries/index.api.rsb deleted file mode 100644 index cdf8e40..0000000 --- a/app/views/queries/index.api.rsb +++ /dev/null @@ -1,10 +0,0 @@ -api.array :queries, api_meta(:total_count => @query_count, :offset => @offset, :limit => @limit) do - @queries.each do |query| - api.query do - api.id query.id - api.name query.name - api.is_public query.is_public? - api.project_id query.project_id - end - end -end diff --git a/app/views/queries/index.html.erb b/app/views/queries/index.html.erb deleted file mode 100644 index c36c0ca..0000000 --- a/app/views/queries/index.html.erb +++ /dev/null @@ -1,25 +0,0 @@ -
    -<%= link_to_if_authorized l(:label_query_new), new_project_query_path(:project_id => @project), :class => 'icon icon-add' %> -
    - -

    <%= l(:label_query_plural) %>

    - -<% if @queries.empty? %> -

    <%=l(:label_no_data)%>

    -<% else %> - - <% @queries.each do |query| %> - - - - - <% end %> -
    - <%= link_to query.name, :controller => 'issues', :action => 'index', :project_id => @project, :query_id => query %> - - <% if query.editable_by?(User.current) %> - <%= link_to l(:button_edit), edit_query_path(query), :class => 'icon icon-edit' %> - <%= delete_link query_path(query) %> - <% end %> -
    -<% end %> diff --git a/app/views/queries/new.html.erb b/app/views/queries/new.html.erb deleted file mode 100644 index 6df43db..0000000 --- a/app/views/queries/new.html.erb +++ /dev/null @@ -1,7 +0,0 @@ -

    <%= l(:label_query_new) %>

    - -<%= form_tag(@project ? project_queries_path(@project) : queries_path, :id => "query-form") do %> - <%= hidden_field_tag 'type', @query.class.name %> - <%= render :partial => 'form', :locals => {:query => @query} %> - <%= submit_tag l(:button_save) %> -<% end %> diff --git a/app/views/reports/_details.html.erb b/app/views/reports/_details.html.erb deleted file mode 100644 index 701591c..0000000 --- a/app/views/reports/_details.html.erb +++ /dev/null @@ -1,79 +0,0 @@ -<% if @statuses.empty? or rows.empty? %> -

    <%=l(:label_no_data)%>

    -<% else %> - - - -<% for status in @statuses %> - -<% end %> - - - - - -<% for row in rows %> - - - <% for status in @statuses %> - - <% end %> - - - - -<% end %> - -
    <%= status.name %><%=l(:label_open_issues_plural)%><%=l(:label_closed_issues_plural)%><%=l(:label_total)%>
    <%= link_to row.name, aggregate_path(@project, field_name, row, :subproject_id => nil) %><%= aggregate_link data, { field_name => row.id, "status_id" => status.id }, aggregate_path(@project, field_name, row, :status_id => status.id, :subproject_id => nil) %><%= aggregate_link data, { field_name => row.id, "closed" => 0 }, aggregate_path(@project, field_name, row, :status_id => "o", :subproject_id => nil) %><%= aggregate_link data, { field_name => row.id, "closed" => 1 }, aggregate_path(@project, field_name, row, :status_id => "c", :subproject_id => nil) %><%= aggregate_link data, { field_name => row.id }, aggregate_path(@project, field_name, row, :status_id => "*", :subproject_id => nil) %>
    -
    - -
    -
    - -
    -<%= javascript_tag do %> - function renderChart(canvas_id, title, chartData){ - var backgroundColors = ['rgba(255, 99, 132, 0.2)', 'rgba(54, 162, 235, 0.2)', 'rgba(255, 206, 86, 0.2)', 'rgba(75, 192, 192, 0.2)', 'rgba(153, 102, 255, 0.2)', 'rgba(255, 159, 64, 0.2)']; - var borderColors = ['rgba(255, 99, 132, 1)', 'rgba(54, 162, 235, 1)', 'rgba(255, 206, 86, 1)', 'rgba(75, 192, 192, 1)', 'rgba(153, 102, 255, 1)', 'rgba(255, 159, 64, 1)']; - for (var i = 0; i < chartData.datasets.length; i++) { - chartData.datasets[i].backgroundColor = backgroundColors[i % backgroundColors.length]; - chartData.datasets[i].borderColor = borderColors[i % borderColors.length]; - chartData.datasets[i].borderWidth = 1; - } - new Chart($(canvas_id), { - type: 'horizontalBar', - data: chartData, - options: { - elements: { - rectangle: {borderWidth: 2} - }, - responsive: true, - legend: {position: 'right'}, - title: { - display: true, - text: title - }, - scales: { - yAxes: [{ stacked: true }], - xAxes: [{ stacked: true }] - } - } - }); - } - $(document).ready(function(){ - var chartData1 = { - labels: <%= raw rows.collect{|row| row.name}.to_json %>, - datasets: <%= raw @statuses.collect{|status| {"label" => status.name, "hidden" => status.is_closed?, "data" => rows.collect{|row| aggregate(data, {field_name => row.id, "status_id" => status.id})}}}.to_json %> - }; - var chartData2 = { - labels: <%= raw @statuses.collect{|status| status.name}.to_json %>, - datasets: <%= raw rows.collect{|row| {"label" => row.name, "data" => @statuses.collect{|status| aggregate(data, {field_name => row.id, "status_id" => status.id})}}}.to_json %> - }; - renderChart("#issues_by_<%= params[:detail] %>", "<%= l(:label_issues_by, @report_title) %>", chartData1); - renderChart("#issues_by_status", "<%= l(:label_issues_by, l(:field_status)) %>", chartData2); - }); -<% end %> -<% content_for :header_tags do %> - <%= javascript_include_tag "Chart.bundle.min" %> -<% end %> -<% end %> diff --git a/app/views/reports/_simple.html.erb b/app/views/reports/_simple.html.erb deleted file mode 100644 index 754b1f2..0000000 --- a/app/views/reports/_simple.html.erb +++ /dev/null @@ -1,22 +0,0 @@ -<% if @statuses.empty? or rows.empty? %> -

    <%=l(:label_no_data)%>

    -<% else %> - - - - - - - - -<% for row in rows %> - - - - - - -<% end %> - -
    <%=l(:label_open_issues_plural)%><%=l(:label_closed_issues_plural)%><%=l(:label_total)%>
    <%= link_to row.name, aggregate_path(@project, field_name, row, :subproject_id => nil) %><%= aggregate_link data, { field_name => row.id, "closed" => 0 }, aggregate_path(@project, field_name, row, :status_id => "o", :subproject_id => nil) %><%= aggregate_link data, { field_name => row.id, "closed" => 1 }, aggregate_path(@project, field_name, row, :status_id => "c", :subproject_id => nil) %><%= aggregate_link data, { field_name => row.id }, aggregate_path(@project, field_name, row, :status_id => "*", :subproject_id => nil) %>
    -<% end %> diff --git a/app/views/reports/issue_report.html.erb b/app/views/reports/issue_report.html.erb deleted file mode 100644 index 63d05e6..0000000 --- a/app/views/reports/issue_report.html.erb +++ /dev/null @@ -1,76 +0,0 @@ -

    <%=l(:label_report_plural)%>

    - -
    -
    -

    - <%=l(:field_tracker)%>  - <%= link_to l(:label_details), - project_issues_report_details_path(@project, :detail => 'tracker'), - :class => 'icon-only icon-zoom-in', - :title => l(:label_details) %> -

    -<%= render :partial => 'simple', :locals => { :data => @issues_by_tracker, :field_name => "tracker_id", :rows => @trackers } %> -
    -

    - <%=l(:field_priority)%>  - <%= link_to l(:label_details), - project_issues_report_details_path(@project, :detail => 'priority'), - :class => 'icon-only icon-zoom-in', - :title => l(:label_details) %> -

    -<%= render :partial => 'simple', :locals => { :data => @issues_by_priority, :field_name => "priority_id", :rows => @priorities } %> -
    -

    - <%=l(:field_assigned_to)%>  - <%= link_to l(:label_details), - project_issues_report_details_path(@project, :detail => 'assigned_to'), - :class => 'icon-only icon-zoom-in', - :title => l(:label_details) %> -

    -<%= render :partial => 'simple', :locals => { :data => @issues_by_assigned_to, :field_name => "assigned_to_id", :rows => @assignees } %> -
    -

    - <%=l(:field_author)%>  - <%= link_to l(:label_details), - project_issues_report_details_path(@project, :detail => 'author'), - :class => 'icon-only icon-zoom-in', - :title => l(:label_details) %> -

    -<%= render :partial => 'simple', :locals => { :data => @issues_by_author, :field_name => "author_id", :rows => @authors } %> -
    -<%= call_hook(:view_reports_issue_report_split_content_left, :project => @project) %> -
    - -
    -

    - <%=l(:field_version)%>  - <%= link_to l(:label_details), - project_issues_report_details_path(@project, :detail => 'version'), - :class => 'icon-only icon-zoom-in', - :title => l(:label_details) %> -

    -<%= render :partial => 'simple', :locals => { :data => @issues_by_version, :field_name => "fixed_version_id", :rows => @versions } %> -
    -<% if @project.children.any? %> -

    - <%=l(:field_subproject)%>  - <%= link_to l(:label_details), - project_issues_report_details_path(@project, :detail => 'subproject'), - :class => 'icon-only icon-zoom-in', - :title => l(:label_details) %> -

    -<%= render :partial => 'simple', :locals => { :data => @issues_by_subproject, :field_name => "project_id", :rows => @subprojects } %> -
    -<% end %> -

    - <%=l(:field_category)%>  - <%= link_to l(:label_details), - project_issues_report_details_path(@project, :detail => 'category'), - :class => 'icon-only icon-zoom-in', - :title => l(:label_details) %> -

    -<%= render :partial => 'simple', :locals => { :data => @issues_by_category, :field_name => "category_id", :rows => @categories } %> -
    -<%= call_hook(:view_reports_issue_report_split_content_right, :project => @project) %> -
    -
    diff --git a/app/views/reports/issue_report_details.html.erb b/app/views/reports/issue_report_details.html.erb deleted file mode 100644 index 201ba1b..0000000 --- a/app/views/reports/issue_report_details.html.erb +++ /dev/null @@ -1,6 +0,0 @@ -

    <%= link_to l(:label_report_plural), project_issues_report_path(@project) %> »

    - -

    <%=@report_title%>

    -<%= render :partial => 'details', :locals => { :data => @data, :field_name => @field, :rows => @rows } %> -
    -<%= link_to l(:button_back), project_issues_report_path(@project) %> diff --git a/app/views/repositories/_breadcrumbs.html.erb b/app/views/repositories/_breadcrumbs.html.erb deleted file mode 100644 index 82f25d4..0000000 --- a/app/views/repositories/_breadcrumbs.html.erb +++ /dev/null @@ -1,31 +0,0 @@ -<%= link_to(@repository.identifier.present? ? @repository.identifier : 'root', - :action => 'show', :id => @project, - :repository_id => @repository.identifier_param, - :path => nil, :rev => @rev) %> -<% -dirs = path.split('/') -if 'file' == kind - filename = dirs.pop -end -link_path = '' -dirs.each do |dir| - next if dir.blank? - link_path << '/' unless link_path.empty? - link_path << "#{dir}" - %> - / <%= link_to dir, :action => 'show', :id => @project, :repository_id => @repository.identifier_param, - :path => to_path_param(link_path), :rev => @rev %> -<% end %> -<% if filename %> - / <%= link_to filename, - :action => 'entry', :id => @project, :repository_id => @repository.identifier_param, - :path => to_path_param("#{link_path}/#{filename}"), :rev => @rev %> -<% end %> -<% - # @rev is revsion or Git and Mercurial branch or tag. - # For Mercurial *tip*, @rev and @changeset are nil. - rev_text = @changeset.nil? ? @rev : format_revision(@changeset) -%> -<%= "@ #{rev_text}" unless rev_text.blank? %> - -<% html_title(with_leading_slash(path)) -%> diff --git a/app/views/repositories/_dir_list.html.erb b/app/views/repositories/_dir_list.html.erb deleted file mode 100644 index 26ba05b..0000000 --- a/app/views/repositories/_dir_list.html.erb +++ /dev/null @@ -1,19 +0,0 @@ -
    - - - - - -<% if @repository.report_last_commit %> - - - - -<% end %> - - - -<%= render :partial => 'dir_list_content' %> - -
    <%= l(:field_name) %><%= l(:field_filesize) %><%= l(:label_revision) %><%= l(:label_age) %><%= l(:field_author) %><%= l(:field_comments) %>
    -
    diff --git a/app/views/repositories/_dir_list_content.html.erb b/app/views/repositories/_dir_list_content.html.erb deleted file mode 100644 index ee68c1b..0000000 --- a/app/views/repositories/_dir_list_content.html.erb +++ /dev/null @@ -1,31 +0,0 @@ -<% @entries.each do |entry| %> -<% tr_id = Digest::MD5.hexdigest(entry.path) - depth = params[:depth].to_i %> -<% ent_path = Redmine::CodesetUtil.replace_invalid_utf8(entry.path) %> -<% ent_name = Redmine::CodesetUtil.replace_invalid_utf8(entry.name) %> - -"> -<% if entry.is_dir? %> -  -<% end %> -<%= link_to ent_name, - {:action => (entry.is_dir? ? 'show' : 'entry'), :id => @project, :repository_id => @repository.identifier_param, :path => to_path_param(ent_path), :rev => @rev}, - :class => (entry.is_dir? ? 'icon icon-folder' : "icon icon-file #{Redmine::MimeType.css_class_of(ent_name)}")%> - -<%= (entry.size ? number_to_human_size(entry.size) : "?") unless entry.is_dir? %> -<% if @repository.report_last_commit %> -<%= link_to_revision(entry.changeset, @repository) if entry.changeset %> -<%= distance_of_time_in_words(entry.lastrev.time, Time.now) if entry.lastrev && entry.lastrev.time %> -<%= entry.author %> -<%= entry.changeset.comments.truncate(50) if entry.changeset %> -<% end %> - -<% end %> diff --git a/app/views/repositories/_form.html.erb b/app/views/repositories/_form.html.erb deleted file mode 100644 index b0f145a..0000000 --- a/app/views/repositories/_form.html.erb +++ /dev/null @@ -1,31 +0,0 @@ -<%= error_messages_for 'repository' %> - -
    -

    -<%= label_tag('repository_scm', l(:label_scm)) %><%= scm_select_tag(@repository) %> -<% if @repository && ! @repository.class.scm_available %> - <%= l(:text_scm_command_not_available) %> -<% end %> -

    - -

    <%= f.check_box :is_default, :label => :field_repository_is_default %>

    -

    -<%= f.text_field :identifier, :disabled => @repository.identifier_frozen? %> -<% unless @repository.identifier_frozen? %> - - <%= l(:text_length_between, :min => 1, :max => Repository::IDENTIFIER_MAX_LENGTH) %> <%= l(:text_repository_identifier_info).html_safe %> - -<% end %> -

    - -<% button_disabled = true %> -<% if @repository %> - <% button_disabled = ! @repository.class.scm_available %> - <%= repository_field_tags(f, @repository) %> -<% end %> -
    - -

    - <%= submit_tag(@repository.new_record? ? l(:button_create) : l(:button_save), :disabled => button_disabled) %> - <%= link_to l(:button_cancel), settings_project_path(@project, :tab => 'repositories') %> -

    diff --git a/app/views/repositories/_link_to_functions.html.erb b/app/views/repositories/_link_to_functions.html.erb deleted file mode 100644 index 9c89561..0000000 --- a/app/views/repositories/_link_to_functions.html.erb +++ /dev/null @@ -1,19 +0,0 @@ -<% if @entry && @entry.kind == 'file' %> - -<% -tabs = [] -tabs << { name: 'entry', label: :button_view, - url: {:action => 'entry', :id => @project, :repository_id => @repository.identifier_param, :path => to_path_param(@path), :rev => @rev } - } if @repository.supports_cat? - -tabs << { name: 'changes', label: :label_history, - url: {:action => 'changes', :id => @project, :repository_id => @repository.identifier_param, :path => to_path_param(@path), :rev => @rev } - } -tabs << { name: 'annotate', label: :button_annotate, - url: {:action => 'annotate', :id => @project, :repository_id => @repository.identifier_param, :path => to_path_param(@path), :rev => @rev } - } if @repository.supports_annotate? -%> - -<%= render :partial => 'common/tabs', :locals => {:tabs => tabs, :selected_tab => action_name} %> - -<% end %> diff --git a/app/views/repositories/_navigation.html.erb b/app/views/repositories/_navigation.html.erb deleted file mode 100644 index 730cec4..0000000 --- a/app/views/repositories/_navigation.html.erb +++ /dev/null @@ -1,49 +0,0 @@ -<% content_for :header_tags do %> - <%= javascript_include_tag 'repository_navigation' %> -<% end %> - -<% if @entry && !@entry.is_dir? && @repository.supports_cat? %> - <% download_label = @entry.size ? "#{l :button_download} (#{number_to_human_size @entry.size})" : l(:button_download) %> - <%= link_to(download_label, - {:action => 'raw', :id => @project, - :repository_id => @repository.identifier_param, - :path => to_path_param(@path), - :rev => @rev}, class: 'icon icon-download') %> -<% end %> - -<%= link_to l(:label_statistics), - {:action => 'stats', :id => @project, :repository_id => @repository.identifier_param}, - :class => 'icon icon-stats' if @repository.supports_all_revisions? %> - -<%= actions_dropdown do %> - <%= link_to_if_authorized l(:label_settings), - {:controller => 'projects', :action => 'settings', :id => @project, :tab => 'repositories'}, - :class => 'icon icon-settings' if User.current.allowed_to?(:manage_repository, @project) %> -<% end %> - -<%= form_tag({:action => controller.action_name, - :id => @project, - :repository_id => @repository.identifier_param, - :path => to_path_param(@path), - :rev => nil}, - {:method => :get, :id => 'revision_selector'}) do -%> - - <% if !@repository.branches.nil? && @repository.branches.length > 0 -%> - | <%= l(:label_branch) %>: - <%= select_tag :branch, - options_for_select([''] + @repository.branches, @rev), - :id => 'branch' %> - <% end -%> - - <% if !@repository.tags.nil? && @repository.tags.length > 0 -%> - | <%= l(:label_tag) %>: - <%= select_tag :tag, - options_for_select([''] + @repository.tags, @rev), - :id => 'tag' %> - <% end -%> - - <% if @repository.supports_all_revisions? %> - | <%= l(:label_revision) %>: - <%= text_field_tag 'rev', @rev, :size => 8 %> - <% end %> -<% end -%> diff --git a/app/views/repositories/_related_issues.html.erb b/app/views/repositories/_related_issues.html.erb deleted file mode 100644 index a90fbc3..0000000 --- a/app/views/repositories/_related_issues.html.erb +++ /dev/null @@ -1,42 +0,0 @@ -<% manage_allowed = User.current.allowed_to?(:manage_related_issues, @repository.project) %> - - - -<%= javascript_tag "observeAutocompleteField('issue_id', '#{escape_javascript auto_complete_issues_path(:project_id => @project, :scope => 'all')}')" %> diff --git a/app/views/repositories/_revision_graph.html.erb b/app/views/repositories/_revision_graph.html.erb deleted file mode 100644 index ebda63b..0000000 --- a/app/views/repositories/_revision_graph.html.erb +++ /dev/null @@ -1,18 +0,0 @@ -<%= javascript_tag do %> -function revisionGraphHandler(){ - drawRevisionGraph( - document.getElementById('holder'), - <%= commits.to_json.html_safe %>, - <%= space %> - ); -} -$(document).ready(revisionGraphHandler); -$(window).resize(revisionGraphHandler); -<% end %> - -
    - -<% content_for :header_tags do %> - <%= javascript_include_tag 'raphael' %> - <%= javascript_include_tag 'revision_graph' %> -<% end %> diff --git a/app/views/repositories/_revisions.html.erb b/app/views/repositories/_revisions.html.erb deleted file mode 100644 index 95c6898..0000000 --- a/app/views/repositories/_revisions.html.erb +++ /dev/null @@ -1,62 +0,0 @@ -
    -<% show_revision_graph = ( @repository.supports_revision_graph? && path.blank? ) %> -<%= if show_revision_graph && revisions && revisions.any? - indexed_commits, graph_space = index_commits(revisions, @repository.branches) do |scmid| - url_for( - :controller => 'repositories', - :action => 'revision', - :id => project, - :repository_id => @repository.identifier_param, - :rev => scmid) - end - render :partial => 'revision_graph', - :locals => { - :commits => indexed_commits, - :space => graph_space - } -end %> -<%= form_tag( - {:controller => 'repositories', :action => 'diff', :id => project, - :repository_id => @repository.identifier_param, :path => to_path_param(path)}, - :method => :get - ) do %> -<% show_diff = revisions.size > 1 && User.current.allowed_to?(:browse_repository, @repository.project) %> -<% if show_diff %> -

    - <%= submit_tag(l(:label_view_diff), :name => nil) %> -

    -<% end %> - - - - - - - - - - -<% line_num = 1 %> -<% revisions.each do |changeset| %> - -<% id_style = (show_revision_graph ? "padding-left:#{(graph_space + 1) * 20}px" : nil) %> -<%= content_tag(:td, :class => 'id', :style => id_style) do %> - <%= link_to_revision(changeset, @repository) %> -<% end %> - - - - - - -<% line_num += 1 %> -<% end %> - -
    #<%= l(:label_date) %><%= l(:field_author) %><%= l(:field_comments) %>
    <%= radio_button_tag('rev', changeset.identifier, (line_num==1), :id => "cb-#{line_num}", :onclick => "$('#cbto-#{line_num+1}').prop('checked',true);") if show_diff && (line_num < revisions.size) %><%= radio_button_tag('rev_to', changeset.identifier, (line_num==2), :id => "cbto-#{line_num}", :onclick => "if ($('#cb-#{line_num}').prop('checked')) {$('#cb-#{line_num-1}').prop('checked',true);}") if show_diff && (line_num > 1) %><%= format_time(changeset.committed_on) %><%= changeset.user.blank? ? changeset.author.to_s.truncate(30) : link_to_user(changeset.user) %><%= textilizable(truncate_at_line_break(changeset.comments), :formatting => Setting.commit_logs_formatting?) %>
    -<% if show_diff %> -

    - <%= submit_tag(l(:label_view_diff), :name => nil) %> -

    -<% end %> -<% end %> -
    diff --git a/app/views/repositories/add_related_issue.js.erb b/app/views/repositories/add_related_issue.js.erb deleted file mode 100644 index f3864d3..0000000 --- a/app/views/repositories/add_related_issue.js.erb +++ /dev/null @@ -1,7 +0,0 @@ -<% if @issue %> - $('#related-issues').html('<%= escape_javascript(render :partial => "related_issues") %>'); - $('#related-issue-<%= @issue.id %>').effect("highlight"); - $('#issue_id').focus(); -<% else %> - alert("<%= raw(escape_javascript(l(:label_issue) + ' ' + l('activerecord.errors.messages.invalid'))) %>"); -<% end %> diff --git a/app/views/repositories/annotate.html.erb b/app/views/repositories/annotate.html.erb deleted file mode 100644 index 038f01e..0000000 --- a/app/views/repositories/annotate.html.erb +++ /dev/null @@ -1,49 +0,0 @@ -<%= call_hook(:view_repositories_show_contextual, { :repository => @repository, :project => @project }) %> - -
    - <%= render :partial => 'navigation' %> -
    - -

    <%= render :partial => 'breadcrumbs', :locals => { :path => @path, :kind => 'file', :revision => @rev } %>

    - -<%= render :partial => 'link_to_functions' %> - -<% if @annotate %> -<% colors = Hash.new {|k,v| k[v] = (k.size % 12) } %> -
    - - - <% line_num = 1; previous_revision = nil %> - <% syntax_highlight_lines(@path, Redmine::CodesetUtil.to_utf8_by_setting(@annotate.content)).each do |line| %> - <% revision = @annotate.revisions[line_num - 1] %> - - - - - - - <% line_num += 1; previous_revision = revision %> - <% end %> - -
    <%= line_num %> - <% if revision && revision != previous_revision %> - <%= revision.identifier ? - link_to_revision(revision, @repository) : format_revision(revision) %> - <% end %> - - <% if revision && revision != previous_revision %> - <% author = Redmine::CodesetUtil.to_utf8(revision.author.to_s, - @repository.repo_log_encoding) %> - <%= author.split('<').first %> - <% end %> -
    <%= line.html_safe %>
    -
    -<% else %> -

    <%= @error_message %>

    -<% end %> - -<% html_title(l(:button_annotate)) -%> - -<% content_for :header_tags do %> -<%= stylesheet_link_tag 'scm' %> -<% end %> diff --git a/app/views/repositories/changes.html.erb b/app/views/repositories/changes.html.erb deleted file mode 100644 index cd5a955..0000000 --- a/app/views/repositories/changes.html.erb +++ /dev/null @@ -1,20 +0,0 @@ -<%= call_hook(:view_repositories_show_contextual, { :repository => @repository, :project => @project }) %> - -
    - <%= render :partial => 'navigation' %> -
    - -

    <%= render :partial => 'breadcrumbs', :locals => { :path => @path, :kind => (@entry ? @entry.kind : nil), :revision => @rev } %>

    - -<%= render :partial => 'link_to_functions' %> - -<%= render_properties(@properties) %> - -<%= render(:partial => 'revisions', - :locals => {:project => @project, :path => @path, :revisions => @changesets, :entry => @entry }) unless @changesets.empty? %> - -<% content_for :header_tags do %> -<%= stylesheet_link_tag "scm" %> -<% end %> - -<% html_title(l(:label_change_plural)) -%> diff --git a/app/views/repositories/committers.html.erb b/app/views/repositories/committers.html.erb deleted file mode 100644 index f23e102..0000000 --- a/app/views/repositories/committers.html.erb +++ /dev/null @@ -1,42 +0,0 @@ -

    <%= l(:label_repository) %>

    - -<%= simple_format(l(:text_repository_usernames_mapping)) %> - -<% if @committers.empty? %> -

    <%= l(:label_no_data) %>

    -<% else %> - -<%= form_tag({}) do %> - - - - - - - - -<% i = 0 -%> -<% @committers.each do |committer, user_id| -%> - - - - - <% i += 1 -%> -<% end -%> - -
    <%= l(:field_login) %><%= l(:label_user) %>
    <%= committer %> - <%= hidden_field_tag "committers[#{i}][]", committer, :id => nil %> - <%= select_tag "committers[#{i}][]", - content_tag( - 'option', - "-- #{l :actionview_instancetag_blank_option} --", - :value => '' - ) + - options_from_collection_for_select( - @users, 'id', 'name', user_id.to_i - ) %> -
    -

    <%= submit_tag(l(:button_save)) %>

    -<% end %> - -<% end %> diff --git a/app/views/repositories/diff.html.erb b/app/views/repositories/diff.html.erb deleted file mode 100644 index 3dcc0fd..0000000 --- a/app/views/repositories/diff.html.erb +++ /dev/null @@ -1,58 +0,0 @@ -<% if @changeset && @changeset_to.nil? %> -
    - « - <% unless @changeset.previous.nil? -%> - <%= link_to_revision(@changeset.previous, @repository, - :text => l(:label_previous), :accesskey => accesskey(:previous)) %> - <% else -%> - <%= l(:label_previous) %> - <% end -%> -| - <% unless @changeset.next.nil? -%> - <%= link_to_revision(@changeset.next, @repository, - :text => l(:label_next), :accesskey => accesskey(:next)) %> - <% else -%> - <%= l(:label_next) %> - <% end -%> - »  - - <%= form_tag({:controller => 'repositories', - :action => 'revision', - :id => @project, - :repository_id => @repository.identifier_param, - :rev => nil}, - :method => :get) do %> - <%= text_field_tag 'rev', @rev, :size => 8 %> - <%= submit_tag 'OK', :name => nil %> - <% end %> -
    -<%= render :partial => 'changeset' %> -<% else %> -

    <%= l(:label_revision) %> <%= @diff_format_revisions %> <%= @path %>

    -<% end %> - - -<%= form_tag({:action => 'diff', :id => @project, - :repository_id => @repository.identifier_param, - :path => to_path_param(@path), :rev=> @rev}, :method => 'get') do %> - <%= hidden_field_tag('rev_to', params[:rev_to]) if params[:rev_to] %> -

    - <%= l(:label_view_diff) %>: - - -

    -<% end %> - -<% cache(@cache_key) do -%> -<%= render :partial => 'common/diff', :locals => {:diff => @diff, :diff_type => @diff_type, :diff_style => @repository.class.scm_name} %> -<% end -%> - -<% other_formats_links do |f| %> - <%= f.link_to_with_query_parameters 'Diff', {}, :caption => 'Unified diff' %> -<% end %> - -<% html_title(with_leading_slash(@path), 'Diff') -%> - -<% content_for :header_tags do %> -<%= stylesheet_link_tag "scm" %> -<% end %> diff --git a/app/views/repositories/edit.html.erb b/app/views/repositories/edit.html.erb deleted file mode 100644 index 2192615..0000000 --- a/app/views/repositories/edit.html.erb +++ /dev/null @@ -1,5 +0,0 @@ -

    <%= l(:label_repository) %>

    - -<%= labelled_form_for :repository, @repository, :url => repository_path(@repository), :html => {:method => :put, :id => 'repository-form'} do |f| %> - <%= render :partial => 'form', :locals => {:f => f} %> -<% end %> diff --git a/app/views/repositories/entry.html.erb b/app/views/repositories/entry.html.erb deleted file mode 100644 index 940bb2d..0000000 --- a/app/views/repositories/entry.html.erb +++ /dev/null @@ -1,44 +0,0 @@ -<%= call_hook(:view_repositories_show_contextual, { :repository => @repository, :project => @project }) %> - -
    - <%= render :partial => 'navigation' %> -
    - -

    <%= render :partial => 'breadcrumbs', :locals => { :path => @path, :kind => 'file', :revision => @rev } %>

    - -<%= render :partial => 'link_to_functions' %> - -<% if Redmine::MimeType.is_type?('image', @path) %> - <%= render :partial => 'common/image', :locals => {:path => url_for(:action => 'raw', - :id => @project, - :repository_id => @repository.identifier_param, - :path => @path, - :rev => @rev), :alt => @path} %> -<% elsif @content %> - <%= render :partial => 'common/file', :locals => {:filename => @path, :content => @content} %> -<% else %> - <% kind = if Redmine::MimeType.is_type?('video', @path) - 'video' - elsif Redmine::MimeType.is_type?('audio', @path) - 'audio' - end %> - <%= render :partial => 'common/other', - :locals => { - :path => (url_for(params.merge(:action => 'raw')) if @allow_download), - :kind => kind, - :download_link => @repository.supports_cat? ? link_to( - l(:label_no_preview_download), - { :action => 'raw', :id => @project, - :repository_id => @repository.identifier_param, - :path => to_path_param(@path), - :rev => @rev }, - :class => 'icon icon-download') : nil } %> -<% end %> - - - <%= render_pagination %> - - -<% content_for :header_tags do %> -<%= stylesheet_link_tag "scm" %> -<% end %> diff --git a/app/views/repositories/new.html.erb b/app/views/repositories/new.html.erb deleted file mode 100644 index df2b2c6..0000000 --- a/app/views/repositories/new.html.erb +++ /dev/null @@ -1,5 +0,0 @@ -

    <%= l(:label_repository_new) %>

    - -<%= labelled_form_for :repository, @repository, :url => project_repositories_path(@project), :html => {:id => 'repository-form'} do |f| %> - <%= render :partial => 'form', :locals => {:f => f} %> -<% end %> diff --git a/app/views/repositories/new.js.erb b/app/views/repositories/new.js.erb deleted file mode 100644 index 00fd9cf..0000000 --- a/app/views/repositories/new.js.erb +++ /dev/null @@ -1 +0,0 @@ -$('#content').html('<%= escape_javascript(render :template => 'repositories/new', :formats => [:html]) %>'); diff --git a/app/views/repositories/remove_related_issue.js.erb b/app/views/repositories/remove_related_issue.js.erb deleted file mode 100644 index c4dc0e9..0000000 --- a/app/views/repositories/remove_related_issue.js.erb +++ /dev/null @@ -1 +0,0 @@ -$('#related-issue-<%= @issue.id %>').remove(); diff --git a/app/views/repositories/revision.html.erb b/app/views/repositories/revision.html.erb deleted file mode 100644 index 5c215c0..0000000 --- a/app/views/repositories/revision.html.erb +++ /dev/null @@ -1,53 +0,0 @@ -
    - « - <% unless @changeset.previous.nil? -%> - <%= link_to_revision(@changeset.previous, @repository, - :text => l(:label_previous), :accesskey => accesskey(:previous)) %> - <% else -%> - <%= l(:label_previous) %> - <% end -%> -| - <% unless @changeset.next.nil? -%> - <%= link_to_revision(@changeset.next, @repository, - :text => l(:label_next), :accesskey => accesskey(:next)) %> - <% else -%> - <%= l(:label_next) %> - <% end -%> - »  - - <%= form_tag({:controller => 'repositories', - :action => 'revision', - :id => @project, - :repository_id => @repository.identifier_param, - :rev => nil}, - :method => :get) do %> - <%= text_field_tag 'rev', @rev, :size => 8 %> - <%= submit_tag 'OK', :name => nil %> - <% end %> -
    - -<%= render :partial => 'changeset' %> - -<% if User.current.allowed_to?(:browse_repository, @project) %> -
      -
    • <%= l(:label_added) %>
    • -
    • <%= l(:label_modified) %>
    • -
    • <%= l(:label_copied) %>
    • -
    • <%= l(:label_renamed) %>
    • -
    • <%= l(:label_deleted) %>
    • -
    - -
    -<%= render_changeset_changes %> -
    -<% end %> - -<% content_for :header_tags do %> -<%= stylesheet_link_tag "scm" %> -<% end %> - -<% - title = "#{l(:label_revision)} #{format_revision(@changeset)}" - title << " - #{@changeset.comments.truncate(80)}" - html_title(title) - -%> diff --git a/app/views/repositories/revisions.html.erb b/app/views/repositories/revisions.html.erb deleted file mode 100644 index fc22210..0000000 --- a/app/views/repositories/revisions.html.erb +++ /dev/null @@ -1,34 +0,0 @@ -
    -<%= form_tag( - {:controller => 'repositories', :action => 'revision', :id => @project, - :repository_id => @repository.identifier_param}, - :method => :get - ) do %> - <%= l(:label_revision) %>: <%= text_field_tag 'rev', nil, :size => 8 %> - <%= submit_tag 'OK' %> -<% end %> -
    - -

    <%= l(:label_revision_plural) %>

    - -<%= render :partial => 'revisions', - :locals => {:project => @project, - :path => '', - :revisions => @changesets, - :entry => nil } %> - -<%= pagination_links_full @changeset_pages,@changeset_count %> - -<% content_for :header_tags do %> - <%= stylesheet_link_tag "scm" %> - <%= auto_discovery_link_tag( - :atom, - :params => request.query_parameters.merge(:page => nil, :key => User.current.rss_key), - :format => 'atom') %> -<% end %> - -<% other_formats_links do |f| %> - <%= f.link_to 'Atom', :url => {:key => User.current.rss_key} %> -<% end %> - -<% html_title(l(:label_revision_plural)) -%> diff --git a/app/views/repositories/show.html.erb b/app/views/repositories/show.html.erb deleted file mode 100644 index d96a737..0000000 --- a/app/views/repositories/show.html.erb +++ /dev/null @@ -1,78 +0,0 @@ -<%= call_hook(:view_repositories_show_contextual, { :repository => @repository, :project => @project }) %> - -
    - <%= render :partial => 'navigation' %> -
    - -

    <%= render :partial => 'breadcrumbs', - :locals => { :path => @path, :kind => 'dir', :revision => @rev } %>

    - -<% if !@entries.nil? && authorize_for('repositories', 'browse') %> - <%= render :partial => 'dir_list' %> -<% end %> - -<%= render_properties(@properties) %> - -<% if authorize_for('repositories', 'revisions') %> - <% if @changesets && !@changesets.empty? %> -

    <%= l(:label_latest_revision_plural) %>

    - <%= render :partial => 'revisions', - :locals => {:project => @project, :path => @path, - :revisions => @changesets, :entry => nil }%> - <% end %> -

    - <% has_branches = (!@repository.branches.nil? && @repository.branches.length > 0) - sep = '' %> - <% if @repository.supports_all_revisions? && @path.blank? %> - <%= link_to l(:label_view_all_revisions), :action => 'revisions', :id => @project, - :repository_id => @repository.identifier_param %> - <% sep = '|' %> - <% end %> - <% if @repository.supports_directory_revisions? && - ( has_branches || !@path.blank? || !@rev.blank? ) %> - <%= sep %> - <%= link_to l(:label_view_revisions), - :action => 'changes', - :path => to_path_param(@path), - :id => @project, - :repository_id => @repository.identifier_param, - :rev => @rev %> - <% end %> -

    - <% if @repository.supports_all_revisions? %> - <% content_for :header_tags do %> - <%= auto_discovery_link_tag( - :atom, - :action => 'revisions', :id => @project, - :repository_id => @repository.identifier_param, - :key => User.current.rss_key) %> - <% end %> - - <% other_formats_links do |f| %> - <%= f.link_to 'Atom', - :url => {:action => 'revisions', :id => @project, - :repository_id => @repository.identifier_param, - :key => User.current.rss_key} %> - <% end %> - <% end %> -<% end %> - -<% if @repositories.size > 1 %> - <% content_for :sidebar do %> -

    <%= l(:label_repository_plural) %>

    -

    - <%= @repositories.sort.collect {|repo| - link_to repo.name, - {:controller => 'repositories', :action => 'show', - :id => @project, :repository_id => repo.identifier_param, :rev => nil, :path => nil}, - :class => 'repository' + (repo == @repository ? ' selected' : '') - }.join('
    ').html_safe %> -

    - <% end %> -<% end %> - -<% content_for :header_tags do %> - <%= stylesheet_link_tag "scm" %> -<% end %> - -<% html_title(l(:label_repository)) -%> diff --git a/app/views/repositories/stats.html.erb b/app/views/repositories/stats.html.erb deleted file mode 100644 index 2020976..0000000 --- a/app/views/repositories/stats.html.erb +++ /dev/null @@ -1,98 +0,0 @@ -

    <%= l(:label_statistics) %>

    - -
    - -
    - -
    - -
    - - -<%= javascript_tag do %> -$(document).ready(function(){ - $.getJSON(<%= raw url_for(:controller => 'repositories', - :action => 'graph', :id => @project, - :repository_id => @repository.identifier_param, - :graph => "commits_per_month").to_json %>, function(data){ - - var chartData = { - labels: data['labels'], - datasets: [{ - label: <%= raw l(:label_revision_plural).to_json %>, - backgroundColor: 'rgba(255, 99, 132, 0.7)', - borderColor: 'rgb(255, 99, 132)', - borderWidth: 1, - data: data['commits'] - }, { - label: <%= raw l(:label_change_plural).to_json %>, - backgroundColor: 'rgba(54, 162, 235, 0.7)', - borderColor: 'rgb(54, 162, 235)', - data: data['changes'] - }] - }; - new Chart(document.getElementById("commits_per_month").getContext("2d"), { - type: 'bar', - data: chartData, - options: { - elements: { - rectangle: {borderWidth: 2} - }, - responsive: true, - legend: {position: 'right'}, - title: { - display: true, - text: <%= raw l(:label_commits_per_month).to_json %> - } - } - }); - }); - - $.getJSON(<%= raw url_for(:controller => 'repositories', - :action => 'graph', :id => @project, - :repository_id => @repository.identifier_param, - :graph => "commits_per_author").to_json %>, function(data){ - - var chartData = { - labels: data['labels'], - datasets: [{ - label: <%= raw l(:label_revision_plural).to_json %>, - backgroundColor: 'rgba(255, 99, 132, 0.7)', - borderColor: 'rgb(255, 99, 132)', - borderWidth: 1, - data: data['commits'] - }, { - label: <%= raw l(:label_change_plural).to_json %>, - backgroundColor: 'rgba(54, 162, 235, 0.7)', - borderColor: 'rgb(54, 162, 235)', - data: data['changes'] - }] - }; - - new Chart(document.getElementById("commits_per_author").getContext("2d"), { - type: 'horizontalBar', - data: chartData, - options: { - elements: { - rectangle: {borderWidth: 2} - }, - responsive: true, - legend: {position: 'right'}, - title: { - display: true, - text: <%= raw l(:label_commits_per_author).to_json %> - } - } - }); - }); -}); -<% end %> - - -

    <%= link_to l(:button_back), :action => 'show', :id => @project %>

    - -<% html_title(l(:label_repository), l(:label_statistics)) -%> - -<% content_for :header_tags do %> - <%= javascript_include_tag "Chart.bundle.min" %> -<% end %> diff --git a/app/views/roles/_form.html.erb b/app/views/roles/_form.html.erb deleted file mode 100644 index e149b00..0000000 --- a/app/views/roles/_form.html.erb +++ /dev/null @@ -1,115 +0,0 @@ -<%= error_messages_for 'role' %> - -
    - <% unless @role.builtin? %> -

    <%= f.text_field :name, :required => true %>

    -

    <%= f.check_box :assignable %>

    - <% end %> - - <% unless @role.anonymous? %> -

    <%= f.select :issues_visibility, Role::ISSUES_VISIBILITY_OPTIONS.collect {|v| [l(v.last), v.first]} %>

    - <% end %> - - <% unless @role.anonymous? %> -

    <%= f.select :time_entries_visibility, Role::TIME_ENTRIES_VISIBILITY_OPTIONS.collect {|v| [l(v.last), v.first]} %>

    - <% end %> - -

    <%= f.select :users_visibility, Role::USERS_VISIBILITY_OPTIONS.collect {|v| [l(v.last), v.first]} %>

    - - <% unless @role.builtin? %> -

    - - - - <% Role.givable.sorted.each do |role| %> - - <% end %> - <%= hidden_field_tag 'role[managed_role_ids][]', '' %> -

    - <% end %> - - <% if @role.new_record? && @roles.any? %> -

    - <%= select_tag(:copy_workflow_from, content_tag("option") + options_from_collection_for_select(@roles, :id, :name, params[:copy_workflow_from] || @copy_from.try(:id))) %>

    - <% end %> -
    - -

    <%= l(:label_permissions) %>

    -
    -<% setable_permissions = @role.setable_permissions %> -<% perms_by_module = setable_permissions.group_by {|p| p.project_module.to_s} %> -<% perms_by_module.keys.sort.each do |mod| %> - <% module_name = mod.blank? ? 'module_project' : "module_#{mod}" %> -
    <%= toggle_checkboxes_link("##{module_name}\ input") %><%= mod.blank? ? l(:label_project) : l_or_humanize(mod, :prefix => 'project_module_') %> - <% perms_by_module[mod].each do |permission| %> - - <% end %> -
    -<% end %> -
    <%= check_all_links 'permissions' %> -<%= hidden_field_tag 'role[permissions][]', '' %> -
    - -
    -

    <%= l(:label_issue_tracking) %>

    -<% permissions = [:view_issues, :add_issues, :edit_issues, :add_issue_notes, :delete_issues] & setable_permissions.collect(&:name) %> - -
    - - - - - <% permissions.each do |permission| %> - - <% end %> - - - - - <% permissions.each do |permission| %> - - <% end %> - - <% Tracker.sorted.all.each do |tracker| %> - - - <% permissions.each do |permission| %> - - <% end %> - - <% end %> - -
    <%= l(:label_tracker) %>"><%= l("permission_#{permission}") %>
    <%= toggle_checkboxes_link('tr.permissions-all-trackers input[type="checkbox"]') %><%= l(:label_tracker_all) %>"> - <%= hidden_field_tag "role[permissions_all_trackers][#{permission}]", '0', :id => nil %> - <%= check_box_tag "role[permissions_all_trackers][#{permission}]", - '1', - @role.permissions_all_trackers?(permission), - :class => "#{permission}_shown", - :data => {:disables => ".#{permission}_tracker"} %> -
    <%= toggle_checkboxes_link("tr.permissions-tracker-#{tracker.id} input:enabled") %><%= tracker.name %>"><%= check_box_tag "role[permissions_tracker_ids][#{permission}][]", - tracker.id, - @role.permissions_tracker_ids?(permission, tracker.id), - :class => "#{permission}_tracker", - :id => "role_permissions_tracker_ids_add_issues_#{tracker.id}" %>
    -
    - -<% permissions.each do |permission| %> - <%= hidden_field_tag "role[permissions_tracker_ids][#{permission}][]", '' %> -<% end %> -
    diff --git a/app/views/roles/edit.html.erb b/app/views/roles/edit.html.erb deleted file mode 100644 index dc52202..0000000 --- a/app/views/roles/edit.html.erb +++ /dev/null @@ -1,6 +0,0 @@ -<%= title [l(:label_role_plural), roles_path], @role.name %> - -<%= labelled_form_for @role do |f| %> -<%= render :partial => 'form', :locals => { :f => f } %> -<%= submit_tag l(:button_save) %> -<% end %> diff --git a/app/views/roles/index.api.rsb b/app/views/roles/index.api.rsb deleted file mode 100644 index 56adc76..0000000 --- a/app/views/roles/index.api.rsb +++ /dev/null @@ -1,8 +0,0 @@ -api.array :roles do - @roles.each do |role| - api.role do - api.id role.id - api.name role.name - end - end -end diff --git a/app/views/roles/index.html.erb b/app/views/roles/index.html.erb deleted file mode 100644 index bc8cc9c..0000000 --- a/app/views/roles/index.html.erb +++ /dev/null @@ -1,39 +0,0 @@ -
    -<%= link_to l(:label_role_new), new_role_path, :class => 'icon icon-add' %> -<%= link_to l(:label_permissions_report), permissions_roles_path, :class => 'icon icon-summary' %> -
    - -

    <%=l(:label_role_plural)%>

    - - - - - - - - -<% for role in @roles %> - "> - - - - -<% end %> - -
    <%=l(:label_role)%>
    <%= content_tag(role.builtin? ? 'em' : 'span', link_to(role.name, edit_role_path(role))) %> - <% unless role.builtin? || role.workflow_rules.exists? %> - - <%= l(:text_role_no_workflow) %> (<%= link_to l(:button_edit), workflows_edit_path(:role_id => role) %>) - - <% end %> - - <%= reorder_handle(role) unless role.builtin? %> - <%= link_to l(:button_copy), new_role_path(:copy => role), :class => 'icon icon-copy' %> - <%= delete_link role_path(role) unless role.builtin? %> -
    - -<% html_title(l(:label_role_plural)) -%> - -<%= javascript_tag do %> - $(function() { $("table.roles tbody").positionedItems({items: ".givable"}); }); -<% end %> \ No newline at end of file diff --git a/app/views/roles/new.html.erb b/app/views/roles/new.html.erb deleted file mode 100644 index 752992c..0000000 --- a/app/views/roles/new.html.erb +++ /dev/null @@ -1,6 +0,0 @@ -<%= title [l(:label_role_plural), roles_path], l(:label_role_new) %> - -<%= labelled_form_for @role do |f| %> -<%= render :partial => 'form', :locals => { :f => f } %> -<%= submit_tag l(:button_create) %> -<% end %> diff --git a/app/views/roles/permissions.html.erb b/app/views/roles/permissions.html.erb deleted file mode 100644 index 0d57d6e..0000000 --- a/app/views/roles/permissions.html.erb +++ /dev/null @@ -1,84 +0,0 @@ -<%= title [l(:label_role_plural), roles_path], l(:label_permissions_report) %> - -
    - -
    - -<%= form_tag(permissions_roles_path, :id => 'permissions_form') do %> -<% @roles.each do |role| %> - <%= hidden_field_tag "permissions[#{role.id}][]", '', :id => nil %> -<% end %> -
    - - - - - <% @roles.each do |role| %> - - <% end %> - - - -<% perms_by_module = @permissions.group_by {|p| p.project_module.to_s} %> -<% perms_by_module.keys.sort.each do |mod| %> - <% unless mod.blank? %> - - - <% @roles.each do |role| %> - - <% end %> - - <% end %> - <% perms_by_module[mod].each do |permission| %> - <% humanized_perm_name = l_or_humanize(permission.name, :prefix => 'permission_') %> - - - <% @roles.each do |role| %> - <% if role.setable_permissions.include? permission %> - - <% else %> - - <% end %> - <% end %> - - <% end %> -<% end %> - -
    <%=l(:label_permissions)%> - <%= link_to_function('', - "toggleCheckboxesBySelector('input.role-#{role.id}')", - :title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}", - :class => 'icon-only icon-checked') %> - <%= content_tag(role.builtin? ? 'em' : 'span', role.name) %> -
    -   - <%= l_or_humanize(mod, :prefix => 'project_module_') %> - <%= role.name %>
    - <%= link_to_function('', - "toggleCheckboxesBySelector('.permission-#{permission.name} input')", - :title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}", - :class => 'icon-only icon-checked') %> - <%= humanized_perm_name %> - "> - <%= check_box_tag "permissions[#{role.id}][]", permission.name, (role.permissions.include? permission.name), :id => nil, :class => "role-#{role.id}" %> -
    -
    -

    <%= check_all_links 'permissions_form' %>

    -

    <%= submit_tag l(:button_save) %>

    -<% end %> diff --git a/app/views/roles/show.api.rsb b/app/views/roles/show.api.rsb deleted file mode 100644 index b1b23bb..0000000 --- a/app/views/roles/show.api.rsb +++ /dev/null @@ -1,13 +0,0 @@ -api.role do - api.id @role.id - api.name @role.name - api.assignable @role.assignable - api.issues_visibility @role.issues_visibility - api.time_entries_visibility @role.time_entries_visibility - api.users_visibility @role.users_visibility - api.array :permissions do - @role.permissions.each do |perm| - api.permission(perm.to_s) - end - end -end diff --git a/app/views/search/index.api.rsb b/app/views/search/index.api.rsb deleted file mode 100644 index 6619c00..0000000 --- a/app/views/search/index.api.rsb +++ /dev/null @@ -1,12 +0,0 @@ -api.array :results, api_meta(:total_count => @result_count, :offset => @offset, :limit => @limit) do - @results.each do |result| - api.result do - api.id result.id - api.title result.event_title - api.type result.event_type - api.url url_for(result.event_url(:only_path => false)) - api.description result.event_description - api.datetime result.event_datetime - end - end -end diff --git a/app/views/search/index.html.erb b/app/views/search/index.html.erb deleted file mode 100644 index 5160f04..0000000 --- a/app/views/search/index.html.erb +++ /dev/null @@ -1,85 +0,0 @@ -

    <%= l(:label_search) %>

    - -<%= form_tag({}, :method => :get, :id => 'search-form') do %> -
    -<%= label_tag "search-input", l(:description_search), :class => "hidden-for-sighted" %> -

    <%= text_field_tag 'q', @question, :size => 60, :id => 'search-input', - :data => { - :auto_complete => true, - :issues_url => auto_complete_issues_path(:q => '') - } %> -<%= project_select_tag %> -<%= hidden_field_tag 'all_words', '', :id => nil %> - -<%= hidden_field_tag 'titles_only', '', :id => nil %> - -

    - -
    - <%= toggle_checkboxes_link('p#search-types input') %> -

    - <% @object_types.each do |t| %> - - <% end %> -

    -
    - - -<%= hidden_field_tag 'options', '', :id => 'show-options' %> - -
    -

    <%= submit_tag l(:label_search) %>

    -<% end %> - -<% if @results %> -
    - <%= render_results_by_type(@result_count_by_type) unless @scope.size == 1 %> -
    -

    <%= l(:label_result_plural) %> (<%= @result_count %>)

    -
    - <% @results.each do |e| %> -
    - <%= content_tag('span', e.project, :class => 'project') unless @project == e.project %> - <%= link_to(highlight_tokens(e.event_title.truncate(255), @tokens), e.event_url) %> -
    -
    <%= highlight_tokens(e.event_description, @tokens) %> - <%= format_time(e.event_datetime) %>
    - <% end %> -
    -<% end %> - -<% if @result_pages %> -<%= pagination_links_full @result_pages, @result_count, :per_page_links => false %> -<% end %> - -<% html_title(l(:label_search)) -%> - -<%= javascript_tag do %> -$("#search-types a").click(function(e){ - e.preventDefault(); - $("#search-types input[type=checkbox]").prop('checked', false); - $(this).siblings("input[type=checkbox]").prop('checked', true); - if ($("#search-input").val() != "") { - $("#search-form").submit(); - } -}); - -$("#search-form").submit(function(){ - $("#show-options").val($("#options-content").is(":visible") ? '1' : '0'); -}); - -<% if params[:options] == '1' %> -toggleFieldset($("#options-content")); -<% end %> -<% end %> diff --git a/app/views/settings/_api.html.erb b/app/views/settings/_api.html.erb deleted file mode 100644 index 6ee4010..0000000 --- a/app/views/settings/_api.html.erb +++ /dev/null @@ -1,10 +0,0 @@ -<%= form_tag({:action => 'edit', :tab => 'api'}) do %> - -
    -

    <%= setting_check_box :rest_api_enabled %>

    - -

    <%= setting_check_box :jsonp_enabled %>

    -
    - -<%= submit_tag l(:button_save) %> -<% end %> diff --git a/app/views/settings/_attachments.html.erb b/app/views/settings/_attachments.html.erb deleted file mode 100644 index 818845e..0000000 --- a/app/views/settings/_attachments.html.erb +++ /dev/null @@ -1,21 +0,0 @@ -<%= form_tag({:action => 'edit', :tab => 'attachments'}) do %> - -
    -

    <%= setting_text_field :attachment_max_size, :size => 6 %> <%= l(:"number.human.storage_units.units.kb") %>

    - -

    <%= setting_text_area :attachment_extensions_allowed %> -<%= l(:text_comma_separated) %> <%= l(:label_example) %>: txt, png

    - -

    <%= setting_text_area :attachment_extensions_denied %> -<%= l(:text_comma_separated) %> <%= l(:label_example) %>: js, swf

    - -

    <%= setting_text_field :file_max_size_displayed, :size => 6 %> <%= l(:"number.human.storage_units.units.kb") %>

    - -

    <%= setting_text_field :diff_max_lines_displayed, :size => 6 %>

    - -

    <%= setting_text_field :repositories_encodings, :size => 60 %> -<%= l(:text_comma_separated) %>

    -
    - -<%= submit_tag l(:button_save) %> -<% end %> diff --git a/app/views/settings/_authentication.html.erb b/app/views/settings/_authentication.html.erb deleted file mode 100644 index 9a39497..0000000 --- a/app/views/settings/_authentication.html.erb +++ /dev/null @@ -1,46 +0,0 @@ -<%= form_tag({:action => 'edit', :tab => 'authentication'}) do %> - -
    -

    <%= setting_select :login_required, [[l(:label_login_required_yes), "1"], - [l(:label_login_required_no), "0"]] %> - <%= t(:text_login_required_html, anonymous_role_path: edit_role_path(Role.anonymous)) %> -

    - -

    <%= setting_select :autologin, [[l(:label_disabled), 0]] + [1, 7, 30, 365].collect{|days| [l('datetime.distance_in_words.x_days', :count => days), days.to_s]} %>

    - -

    <%= setting_select :self_registration, [[l(:label_disabled), "0"], - [l(:label_registration_activation_by_email), "1"], - [l(:label_registration_manual_activation), "2"], - [l(:label_registration_automatic_activation), "3"]], - :onchange => - "if (this.value != '0') { $('#settings_show_custom_fields_on_registration').removeAttr('disabled'); } else { $('#settings_show_custom_fields_on_registration').attr('disabled', true); }" %>

    - -

    <%= setting_check_box :show_custom_fields_on_registration, - :disabled => !Setting.self_registration? %>

    - -

    <%= setting_text_field :password_min_length, :size => 6 %>

    - -

    <%= setting_multiselect :password_required_char_classes, Setting::PASSWORD_CHAR_CLASSES.keys.collect {|c| [l("label_password_char_class_#{c}"), c]} , :inline => true %>

    - -

    - <%= setting_select :password_max_age, [[l(:label_disabled), 0]] + [7, 30, 60, 90, 180, 365].collect{|days| [l('datetime.distance_in_words.x_days', :count => days), days.to_s]} %> -

    - -

    <%= setting_check_box :lost_password %>

    - -

    <%= setting_check_box :openid, :disabled => !Object.const_defined?(:OpenID) %>

    -
    - -
    - <%= l(:label_session_expiration) %> - -
    -

    <%= setting_select :session_lifetime, session_lifetime_options %>

    -

    <%= setting_select :session_timeout, session_timeout_options %>

    -
    - -

    <%= l(:text_session_expiration_settings) %>

    -
    - -<%= submit_tag l(:button_save) %> -<% end %> diff --git a/app/views/settings/_display.html.erb b/app/views/settings/_display.html.erb deleted file mode 100644 index 30e6525..0000000 --- a/app/views/settings/_display.html.erb +++ /dev/null @@ -1,35 +0,0 @@ -<%= form_tag({:action => 'edit', :tab => 'display'}) do %> - -
    -

    <%= setting_select :ui_theme, Redmine::Themes.themes.collect {|t| [t.name, t.id]}, :blank => :label_default, :label => :label_theme %>

    - -

    <%= setting_select :default_language, lang_options_for_select(false) %>

    - -

    <%= setting_check_box :force_default_language_for_anonymous %>

    - -

    <%= setting_check_box :force_default_language_for_loggedin %>

    - -

    <%= setting_select :start_of_week, [[day_name(1),'1'], [day_name(6),'6'], [day_name(7),'7']], :blank => :label_language_based %>

    -<% locale = User.current.language.blank? ? ::I18n.locale : User.current.language %> -

    <%= setting_select :date_format, date_format_setting_options(locale), :blank => :label_language_based %>

    - -

    <%= setting_select :time_format, Setting::TIME_FORMATS.collect {|f| [::I18n.l(Time.now, :locale => locale, :format => f), f]}, :blank => :label_language_based %>

    - -

    <%= setting_select :timespan_format, [["%.2f" % 0.75, 'decimal'], ['0:45 h', 'minutes']], :blank => false %>

    - -

    <%= setting_select :user_format, @options[:user_format] %>

    - -

    <%= setting_check_box :gravatar_enabled, :data => {:enables => '#settings_gravatar_default'} %> -<%= t(:text_avatar_server_config_html, :url => Redmine::Configuration['avatar_server_url']) %>

    - -

    <%= setting_select :gravatar_default, gravatar_default_setting_options, :blank => :label_none %>

    - -

    <%= setting_check_box :thumbnails_enabled, :data => {:enables => '#settings_thumbnails_size'} %>

    - -

    <%= setting_text_field :thumbnails_size, :size => 6 %>

    - -

    <%= setting_select :new_item_menu_tab, [[l(:label_none), '0'], [l(:label_new_project_issue_tab_enabled), '1'], [l(:label_new_object_tab_enabled), '2']] %>

    -
    - -<%= submit_tag l(:button_save) %> -<% end %> diff --git a/app/views/settings/_general.html.erb b/app/views/settings/_general.html.erb deleted file mode 100644 index 23abdb3..0000000 --- a/app/views/settings/_general.html.erb +++ /dev/null @@ -1,34 +0,0 @@ -<%= form_tag({:action => 'edit'}) do %> - -
    -

    <%= setting_text_field :app_title, :size => 30 %>

    - -

    <%= setting_text_area :welcome_text, :cols => 60, :rows => 5, :class => 'wiki-edit' %>

    -<%= wikitoolbar_for 'settings_welcome_text' %> - - -

    <%= setting_text_field :per_page_options, :size => 20 %> -<%= l(:text_comma_separated) %>

    - -

    <%= setting_text_field :search_results_per_page, :size => 6 %> - -

    <%= setting_text_field :activity_days_default, :size => 6 %> <%= l(:label_day_plural) %>

    - -

    <%= setting_text_field :host_name, :size => 60 %> -<%= l(:label_example) %>: <%= @guessed_host_and_path %>

    - -

    <%= setting_select :protocol, [['HTTP', 'http'], ['HTTPS', 'https']] %>

    - -

    <%= setting_select :text_formatting, Redmine::WikiFormatting.formats_for_select, :blank => :label_none %>

    - -

    <%= setting_check_box :cache_formatted_text %>

    - -

    <%= setting_select :wiki_compression, [['Gzip', 'gzip']], :blank => :label_none %>

    - -

    <%= setting_text_field :feeds_limit, :size => 6 %>

    - -<%= call_hook(:view_settings_general_form) %> -
    - -<%= submit_tag l(:button_save) %> -<% end %> diff --git a/app/views/settings/_issues.html.erb b/app/views/settings/_issues.html.erb deleted file mode 100644 index b4e50d8..0000000 --- a/app/views/settings/_issues.html.erb +++ /dev/null @@ -1,53 +0,0 @@ -<%= form_tag({:action => 'edit', :tab => 'issues'}) do %> - -
    -

    <%= setting_check_box :cross_project_issue_relations %>

    - -

    <%= setting_select :link_copied_issue, link_copied_issue_options %>

    - -

    <%= setting_select :cross_project_subtasks, cross_project_subtasks_options %>

    - -

    <%= setting_check_box :close_duplicate_issues %>

    - -

    <%= setting_check_box :issue_group_assignment %>

    - -

    <%= setting_check_box :default_issue_start_date_to_creation_date %>

    - -

    <%= setting_check_box :display_subprojects_issues %>

    - -

    <%= setting_select :issue_done_ratio, Issue::DONE_RATIO_OPTIONS.collect {|i| [l("setting_issue_done_ratio_#{i}"), i]} %>

    - -

    <%= setting_multiselect :non_working_week_days, (1..7).map {|d| [day_name(d), d.to_s]}, :inline => true %>

    - -

    <%= setting_text_field :issues_export_limit, :size => 6 %>

    - -

    <%= setting_text_field :gantt_items_limit, :size => 6 %>

    - -

    <%= setting_text_field :gantt_months_limit, :size => 6 %>

    -
    - -
    - <%= l(:label_parent_task_attributes) %> -
    -

    <%= setting_select :parent_issue_dates, parent_issue_dates_options, :label => "#{l(:field_start_date)} / #{l(:field_due_date)}" %>

    - -

    <%= setting_select :parent_issue_priority, parent_issue_priority_options, :label => :field_priority %>

    - -

    <%= setting_select :parent_issue_done_ratio, parent_issue_done_ratio_options, :label => :field_done_ratio %>

    -
    -
    - -
    - <%= l(:setting_issue_list_default_columns) %> - <%= render_query_columns_selection( - IssueQuery.new(:column_names => Setting.issue_list_default_columns), - :name => 'settings[issue_list_default_columns]') %> - -

    <%= setting_multiselect :issue_list_default_totals, - IssueQuery.new(:totalable_names => Setting.issue_list_default_totals).available_totalable_columns.map {|c| [c.caption, c.name.to_s]}, - :inline => true, - :label => :label_total_plural %>

    -
    - -<%= submit_tag l(:button_save) %> -<% end %> diff --git a/app/views/settings/_mail_handler.html.erb b/app/views/settings/_mail_handler.html.erb deleted file mode 100644 index 3b2bb80..0000000 --- a/app/views/settings/_mail_handler.html.erb +++ /dev/null @@ -1,37 +0,0 @@ -<%= form_tag({:action => 'edit', :tab => 'mail_handler'}) do %> - -
    -

    - <%= setting_text_area :mail_handler_body_delimiters, :rows => 5 %> - - <%= l(:text_line_separated) %> -

    -

    - <%= setting_text_area :mail_handler_excluded_filenames %> - - <%= l(:text_comma_separated) %> - <%= l(:label_example) %>: smime.p7s, *.vcf -

    -

    <%= setting_select :mail_handler_preferred_body_part, [[l(:label_preferred_body_part_text), 'plain'], [l(:label_preferred_body_part_html), 'html']] %>

    -
    - -
    -

    <%= setting_check_box :mail_handler_api_enabled, - :onclick => "if (this.checked) { $('#settings_mail_handler_api_key').removeAttr('disabled'); } else { $('#settings_mail_handler_api_key').attr('disabled', true); }"%>

    - -

    <%= setting_text_field :mail_handler_api_key, :size => 30, - :id => 'settings_mail_handler_api_key', - :disabled => !Setting.mail_handler_api_enabled? %> - <%= link_to_function l(:label_generate_key), "if (!$('#settings_mail_handler_api_key').attr('disabled')) { $('#settings_mail_handler_api_key').val(randomKey(20)) }" %> -

    -
    - -<%= submit_tag l(:button_save) %> - -<% end %> diff --git a/app/views/settings/_notifications.html.erb b/app/views/settings/_notifications.html.erb deleted file mode 100644 index 5eb73d8..0000000 --- a/app/views/settings/_notifications.html.erb +++ /dev/null @@ -1,43 +0,0 @@ -<% if @deliveries %> -<%= form_tag({:action => 'edit', :tab => 'notifications'}) do %> - -
    -

    <%= setting_text_field :mail_from, :size => 60 %>

    - -

    <%= setting_check_box :bcc_recipients %>

    - -

    <%= setting_check_box :plain_text_mail %>

    - -

    <%= setting_check_box :show_status_changes_in_mail_subject %>

    -
    - -
    <%=l(:text_select_mail_notifications)%> -<%= hidden_field_tag 'settings[notified_events][]', '' %> -<% @notifiables.each do |notifiable| %> -<%= notification_field notifiable %> -
    -<% end %> -

    <%= check_all_links('notified_events') %>

    -
    - -
    <%= l(:setting_emails_header) %> -<%= setting_text_area :emails_header, :label => false, :class => 'wiki-edit', :rows => 5 %> -<%= wikitoolbar_for 'settings_emails_header' %> -
    - -
    <%= l(:setting_emails_footer) %> -<%= setting_text_area :emails_footer, :label => false, :class => 'wiki-edit', :rows => 5 %> -<%= wikitoolbar_for 'settings_emails_footer' %> -
    - -
    -<%= link_to l(:label_send_test_email), test_email_path, :method => :post %> -
    - -<%= submit_tag l(:button_save) %> -<% end %> -<% else %> -
    -<%= simple_format(l(:text_email_delivery_not_configured)) %> -
    -<% end %> diff --git a/app/views/settings/_projects.html.erb b/app/views/settings/_projects.html.erb deleted file mode 100644 index 230e280..0000000 --- a/app/views/settings/_projects.html.erb +++ /dev/null @@ -1,28 +0,0 @@ -<%= form_tag({:action => 'edit', :tab => 'projects'}) do %> - -
    -

    <%= setting_check_box :default_projects_public %>

    - -

    <%= setting_multiselect(:default_projects_modules, - Redmine::AccessControl.available_project_modules.collect {|m| [l_or_humanize(m, :prefix => "project_module_"), m.to_s]}) %>

    - -

    <%= setting_multiselect(:default_projects_tracker_ids, - Tracker.sorted.collect {|t| [t.name, t.id.to_s]}) %>

    - -

    <%= setting_check_box :sequential_project_identifiers %>

    - -

    <%= setting_select :new_project_user_role_id, - Role.find_all_givable.collect {|r| [r.name, r.id.to_s]}, - :blank => "--- #{l(:actionview_instancetag_blank_option)} ---" %>

    -
    - -
    - <%= l(:setting_project_list_defaults) %> - <% query = ProjectQuery.new(Setting.project_list_defaults) %> - <%= render_query_columns_selection(query, - :name => 'settings[project_list_defaults][column_names]') %> -
    - - -<%= submit_tag l(:button_save) %> -<% end %> diff --git a/app/views/settings/_repositories.html.erb b/app/views/settings/_repositories.html.erb deleted file mode 100644 index adac52f..0000000 --- a/app/views/settings/_repositories.html.erb +++ /dev/null @@ -1,160 +0,0 @@ -<%= form_tag({:action => 'edit', :tab => 'repositories'}) do %> - -
    -<%= l(:setting_enabled_scm) %> -<%= hidden_field_tag 'settings[enabled_scm][]', '' %> - - - - - - - <% Redmine::Scm::Base.all.collect do |choice| %> - <% scm_class = "Repository::#{choice}".constantize %> - <% text, value = (choice.is_a?(Array) ? choice : [choice, choice]) %> - <% setting = :enabled_scm %> - <% enabled = Setting.send(setting).include?(value) %> - - - - - - <% end %> -
    <%= l(:text_scm_command) %><%= l(:text_scm_command_version) %>
    - - - <% if enabled %> - - <%= scm_class.scm_command %> - <% end %> - - <%= scm_class.scm_version_string if enabled %> -
    -

    <%= l(:text_scm_config) %>

    -
    - -
    -

    <%= setting_check_box :autofetch_changesets %>

    - -

    <%= setting_check_box :sys_api_enabled, - :onclick => - "if (this.checked) { $('#settings_sys_api_key').removeAttr('disabled'); } else { $('#settings_sys_api_key').attr('disabled', true); }" %>

    - -

    <%= setting_text_field :sys_api_key, - :size => 30, - :id => 'settings_sys_api_key', - :disabled => !Setting.sys_api_enabled? %> - <%= link_to_function l(:label_generate_key), - "if (!$('#settings_sys_api_key').attr('disabled')) { $('#settings_sys_api_key').val(randomKey(20)) }" %> -

    - -

    <%= setting_text_field :repository_log_display_limit, :size => 6 %>

    - -

    <%= setting_check_box :commit_logs_formatting %>

    -
    - -
    -<%= l(:text_issues_ref_in_commit_messages) %> -

    <%= setting_text_field :commit_ref_keywords, :size => 30 %> -<%= l(:text_comma_separated) %>

    - -

    <%= setting_check_box :commit_cross_project_ref %>

    - -

    <%= setting_check_box :commit_logtime_enabled, - :onclick => - "if (this.checked) { $('#settings_commit_logtime_activity_id').removeAttr('disabled'); } else { $('#settings_commit_logtime_activity_id').attr('disabled', true); }"%>

    - -

    <%= setting_select :commit_logtime_activity_id, - [[l(:label_default), 0]] + - TimeEntryActivity.shared.active.collect{|activity| [activity.name, activity.id.to_s]}, - :disabled => !Setting.commit_logtime_enabled?%>

    -
    - - - - - - - - - - - - - <% @commit_update_keywords.each do |rule| %> - - - - - - - - <% end %> - - - - - - - - -
    <%= l(:label_tracker) %><%= l(:setting_commit_fix_keywords) %><%= l(:label_applied_status) %><%= l(:field_done_ratio) %>
    - <%= select_tag( - "settings[commit_update_keywords][if_tracker_id][]", - options_for_select( - [[l(:label_all), ""]] + - Tracker.sorted.map {|t| [t.name, t.id.to_s]}, - rule['if_tracker_id']), - :id => nil - ) %> - - <%= text_field_tag("settings[commit_update_keywords][keywords][]", - rule['keywords'], :id => nil, :size => 30) %> - - <%= select_tag("settings[commit_update_keywords][status_id][]", - options_for_select( - [["", 0]] + - IssueStatus.sorted. - collect{|status| [status.name, status.id.to_s]}, - rule['status_id']), - :id => nil - ) %> - - <%= select_tag("settings[commit_update_keywords][done_ratio][]", - options_for_select( - [["", ""]] + - (0..10).to_a.collect {|r| ["#{r*10} %", "#{r*10}"] }, - rule['done_ratio']), - :id => nil - ) %> - - <%= link_to(l(:button_delete), '#', - :class => 'delete-commit-keywords icon-only icon-del', - :title => l(:button_delete)) %> -
    <%= l(:text_comma_separated) %> - <%= link_to(l(:button_add), '#', - :class => 'add-commit-keywords icon-only icon-add', - :title => l(:button_add)) %> -
    - -

    <%= submit_tag l(:button_save) %>

    -<% end %> - -<%= javascript_tag do %> -$('#commit-keywords').on('click', 'a.delete-commit-keywords', function(e){ - e.preventDefault(); - if ($('#commit-keywords tbody tr.commit-keywords').length > 1) { - $(this).parents('#commit-keywords tr').remove(); - } else { - $('#commit-keywords tbody tr.commit-keywords').find('input, select').val(''); - } -}); -$('#commit-keywords').on('click', 'a.add-commit-keywords', function(e){ - e.preventDefault(); - var row = $('#commit-keywords tr.commit-keywords:last'); - row.clone().insertAfter(row).find('input, select').val(''); -}); -<% end %> diff --git a/app/views/settings/_timelog.html.erb b/app/views/settings/_timelog.html.erb deleted file mode 100644 index 01d4238..0000000 --- a/app/views/settings/_timelog.html.erb +++ /dev/null @@ -1,29 +0,0 @@ -<%= form_tag({:action => 'edit', :tab => 'timelog'}) do %> - -
    -

    <%= setting_multiselect(:timelog_required_fields, - [[l(:field_issue), 'issue_id'], [l(:field_comments), 'comments'] ]) %>

    - -

    <%= setting_text_field :timelog_max_hours_per_day, :size => 6 %>

    - -

    <%= setting_check_box :timelog_accept_0_hours %>

    - -

    <%= setting_check_box :timelog_accept_future_dates %>

    -
    - -
    - <%= l(:setting_time_entry_list_defaults) %> - - <% query = TimeEntryQuery.new(Setting.time_entry_list_defaults) %> - <%= hidden_field_tag('settings[time_entry_list_defaults][column_names][]', '') %> - <%= render_query_columns_selection(query, - :name => 'settings[time_entry_list_defaults][column_names]') %> -

    - - <%= available_totalable_columns_tags(query, - :name => 'settings[time_entry_list_defaults][totalable_names]') %> -

    -
    - -<%= submit_tag l(:button_save) %> -<% end %> diff --git a/app/views/settings/_users.html.erb b/app/views/settings/_users.html.erb deleted file mode 100644 index ab61d7c..0000000 --- a/app/views/settings/_users.html.erb +++ /dev/null @@ -1,20 +0,0 @@ -<%= form_tag({:action => 'edit', :tab => 'users'}) do %> - -
    -

    <%= setting_text_field :max_additional_emails, :size => 6 %>

    - -

    <%= setting_check_box :unsubscribe %>

    -
    - -
    - <%= l(:label_default_values_for_new_users) %> - -

    <%= setting_check_box :default_users_hide_mail, :label => :field_hide_mail %>

    - -

    <%= setting_select(:default_notification_option, User.valid_notification_options.collect {|o| [l(o.last), o.first.to_s]}) %>

    - -

    <%= setting_select :default_users_time_zone, ActiveSupport::TimeZone.all.collect {|z| [ z.to_s, z.name ]}, :label => :field_time_zone, :blank => :label_none %>

    -
    - - <%= submit_tag l(:button_save) %> -<% end %> diff --git a/app/views/settings/edit.html.erb b/app/views/settings/edit.html.erb deleted file mode 100644 index 3db255e..0000000 --- a/app/views/settings/edit.html.erb +++ /dev/null @@ -1,7 +0,0 @@ -

    <%= l(:label_settings) %>

    - -<%= render_settings_error @setting_errors %> - -<%= render_tabs administration_settings_tabs %> - -<% html_title(l(:label_settings), l(:label_administration)) -%> diff --git a/app/views/settings/plugin.html.erb b/app/views/settings/plugin.html.erb deleted file mode 100644 index 0d5b837..0000000 --- a/app/views/settings/plugin.html.erb +++ /dev/null @@ -1,10 +0,0 @@ -<%= title [l(:label_plugins), {:controller => 'admin', :action => 'plugins'}], @plugin.name %> - -
    -<%= form_tag({:action => 'plugin'}) do %> -
    -<%= render :partial => @partial, :locals => {:settings => @settings}%> -
    -<%= submit_tag l(:button_apply) %> -<% end %> -
    diff --git a/app/views/sudo_mode/_new_modal.html.erb b/app/views/sudo_mode/_new_modal.html.erb deleted file mode 100644 index bc780be..0000000 --- a/app/views/sudo_mode/_new_modal.html.erb +++ /dev/null @@ -1,18 +0,0 @@ -

    <%= l(:label_password_required) %>

    -<%= form_tag({}, remote: true) do %> - - <%= hidden_field_tag '_method', request.request_method %> - <%= hash_to_hidden_fields @sudo_form.original_fields %> - <%= render_flash_messages %> -
    -

    - - <%= password_field_tag :sudo_password, nil, size: 25 %> -

    -
    - -

    - <%= submit_tag l(:button_submit), onclick: "hideModal(this);" %> - <%= link_to_function l(:button_cancel), "hideModal(this);" %> -

    -<% end %> diff --git a/app/views/sudo_mode/new.html.erb b/app/views/sudo_mode/new.html.erb deleted file mode 100644 index 323a455..0000000 --- a/app/views/sudo_mode/new.html.erb +++ /dev/null @@ -1,15 +0,0 @@ -

    <%= l :label_password_required %>

    -<%= form_tag({}, method: :post, class: 'tabular', id: 'sudo-form') do %> - - <%= hidden_field_tag '_method', request.request_method %> - <%= hash_to_hidden_fields @sudo_form.original_fields %> - -
    -

    - - <%= password_field_tag :sudo_password, nil, size: 25 %> -

    -
    - <%= submit_tag l(:button_submit) %> -<% end %> -<%= javascript_tag "$('#sudo_password').focus();" %> diff --git a/app/views/sudo_mode/new.js.erb b/app/views/sudo_mode/new.js.erb deleted file mode 100644 index 2eda9b8..0000000 --- a/app/views/sudo_mode/new.js.erb +++ /dev/null @@ -1,4 +0,0 @@ -var sudo_modal = $('#sudo-modal').length ? $('#sudo-modal') : $("
    ", {id: "sudo-modal"}).appendTo($("body")); -sudo_modal.hide().html('<%= escape_javascript render partial: 'sudo_mode/new_modal' %>'); -showModal('sudo-modal', '400px'); -$('#sudo_password').focus(); diff --git a/app/views/timelog/_date_range.html.erb b/app/views/timelog/_date_range.html.erb deleted file mode 100644 index db07c46..0000000 --- a/app/views/timelog/_date_range.html.erb +++ /dev/null @@ -1,11 +0,0 @@ -<%= render :partial => 'queries/query_form' %> - -
    -<% query_params = request.query_parameters %> -
      -
    • <%= link_to(l(:label_details), _time_entries_path(@project, nil, :params => query_params), - :class => (action_name == 'index' ? 'selected' : nil)) %>
    • -
    • <%= link_to(l(:label_report), _report_time_entries_path(@project, nil, :params => query_params), - :class => (action_name == 'report' ? 'selected' : nil)) %>
    • -
    -
    diff --git a/app/views/timelog/_form.html.erb b/app/views/timelog/_form.html.erb deleted file mode 100644 index 24bce8b..0000000 --- a/app/views/timelog/_form.html.erb +++ /dev/null @@ -1,85 +0,0 @@ -<%= error_messages_for 'time_entry' %> -<%= back_url_hidden_field_tag %> - -
    - <% if @time_entry.new_record? && params[:project_id] %> - <%= hidden_field_tag 'project_id', params[:project_id] %> - <% elsif @time_entry.new_record? && params[:issue_id] %> - <%= hidden_field_tag 'issue_id', params[:issue_id] %> - <% else %> -

    <%= f.select :project_id, project_tree_options_for_select(Project.allowed_to(:log_time).to_a, :selected => @time_entry.project, :include_blank => true), :required => true %>

    - <% end %> - -

    - <%= f.text_field :issue_id, :size => 6, :required => Setting.timelog_required_fields.include?('issue_id') %> - - <%= link_to_issue(@time_entry.issue) if @time_entry.issue.try(:visible?) %> - -

    - - <% if User.current.allowed_to?(:log_time_for_other_users, @project) %> -

    <%= f.select :user_id, user_collection_for_select_options(@time_entry), :required => true %>

    - <% elsif !@time_entry.new_record? %> -

    - <%= f.label_for_field :user_id %> - <%= link_to_user(@time_entry.user) %> -

    - <% end %> -

    <%= f.date_field :spent_on, :size => 10, :required => true %><%= calendar_for('time_entry_spent_on') %>

    -

    <%= f.hours_field :hours, :size => 6, :required => true %>

    -

    <%= f.text_field :comments, :size => 100, :maxlength => 1024, :required => Setting.timelog_required_fields.include?('comments') %>

    -

    <%= f.select :activity_id, activity_collection_for_select_options(@time_entry), :required => true %>

    - <% @time_entry.editable_custom_field_values.each do |value| %> -

    <%= custom_field_tag_with_label :time_entry, value %>

    - <% end %> - <%= call_hook(:view_timelog_edit_form_bottom, { :time_entry => @time_entry, :form => f }) %> -
    - -<%= javascript_tag do %> - $(document).ready(function(){ - $('#time_entry_project_id').change(function(){ - $('#time_entry_issue_id').val(''); - }); - $('#time_entry_project_id, #time_entry_issue_id').change(function(){ - $.ajax({ - url: '<%= escape_javascript(@time_entry.new_record? ? new_time_entry_path(:format => 'js') : edit_time_entry_path(:format => 'js')) %>', - type: 'post', - data: $(this).closest('form').serialize() - }); - }); - }); - - observeAutocompleteField('time_entry_issue_id', - function(request, callback) { - var url = '<%= j auto_complete_issues_path %>'; - var data = { - term: request.term - }; - var project_id; - <% if @time_entry.new_record? && @project %> - project_id = '<%= @project.id %>'; - <% else %> - project_id = $('#time_entry_project_id').val(); - <% end %> - if(project_id){ - data['project_id'] = project_id; - } else { - data['scope'] = 'all'; - } - - $.get(url, data, null, 'json') - .done(function(data){ - callback(data); - }) - .fail(function(jqXHR, status, error){ - callback([]); - }); - }, - { - select: function(event, ui) { - $('#time_entry_issue').text(''); - $('#time_entry_issue_id').val(ui.item.value).change(); - } - } - ); -<% end %> diff --git a/app/views/timelog/_list.html.erb b/app/views/timelog/_list.html.erb deleted file mode 100644 index 582d120..0000000 --- a/app/views/timelog/_list.html.erb +++ /dev/null @@ -1,72 +0,0 @@ -<%= form_tag({}, :data => {:cm_url => time_entries_context_menu_path}) do -%> -<%= hidden_field_tag 'back_url', url_for(:params => request.query_parameters), :id => nil %> -
    - - - - - <% @query.inline_columns.each do |column| %> - <%= column_header(@query, column) %> - <% end %> - - - - -<% grouped_query_results(entries, @query) do |entry, group_name, group_count, group_totals| -%> - <% if group_name %> - <% reset_cycle %> - - - - <% end %> - hascontextmenu"> - - <% @query.inline_columns.each do |column| %> - <%= content_tag('td', column_content(column, entry), :class => column.css_classes) %> - <% end %> - - - - <% @query.block_columns.each do |column| - if (text = column_content(column, entry)) && text.present? -%> - - - - <% end -%> - <% end -%> -<% end -%> - -
    - <%= check_box_tag 'check_all', '', false, :class => 'toggle-selection', - :title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}" %> -
    -   - <%= group_name %> - <% if group_count %> - <%= group_count %> - <% end %> - <%= group_totals %> - <%= link_to_function("#{l(:button_collapse_all)}/#{l(:button_expand_all)}", - "toggleAllRowGroups(this)", :class => 'toggle-all') %> -
    <%= check_box_tag("ids[]", entry.id, false, :id => nil) %> - <% if entry.editable_by?(User.current) -%> - <%= link_to l(:button_edit), edit_time_entry_path(entry), - :title => l(:button_edit), - :class => 'icon-only icon-edit' %> - <%= link_to l(:button_delete), time_entry_path(entry), - :data => {:confirm => l(:text_are_you_sure)}, - :method => :delete, - :title => l(:button_delete), - :class => 'icon-only icon-del' %> - <% end -%> - <%= link_to_context_menu %> -
    - <% if @query.block_columns.count > 1 %> - <%= column.caption %> - <% end %> - <%= text %> -
    -
    -<% end -%> - -<%= context_menu %> diff --git a/app/views/timelog/_report_criteria.html.erb b/app/views/timelog/_report_criteria.html.erb deleted file mode 100644 index 6af122e..0000000 --- a/app/views/timelog/_report_criteria.html.erb +++ /dev/null @@ -1,19 +0,0 @@ -<% @report.hours.collect {|h| h[criterias[level]].to_s}.uniq.each do |value| %> -<% hours_for_value = select_hours(hours, criterias[level], value) -%> -<% next if hours_for_value.empty? -%> - -<%= ("" * level).html_safe %> -<%= format_criteria_value(@report.available_criteria[criterias[level]], value) %> -<%= ("" * (criterias.length - level - 1)).html_safe -%> - <% total = 0 -%> - <% @report.periods.each do |period| -%> - <% sum = sum_hours(select_hours(hours_for_value, @report.columns, period.to_s)); total += sum -%> - <%= html_hours(format_hours(sum)) if sum > 0 %> - <% end -%> - <%= html_hours(format_hours(total)) if total > 0 %> - -<% if criterias.length > level+1 -%> - <%= render(:partial => 'report_criteria', :locals => {:criterias => criterias, :hours => hours_for_value, :level => (level + 1)}) %> -<% end -%> - -<% end %> diff --git a/app/views/timelog/_sidebar.html.erb b/app/views/timelog/_sidebar.html.erb deleted file mode 100644 index b9ffe73..0000000 --- a/app/views/timelog/_sidebar.html.erb +++ /dev/null @@ -1 +0,0 @@ -<%= render_sidebar_queries(TimeEntryQuery, @project) %> diff --git a/app/views/timelog/bulk_edit.html.erb b/app/views/timelog/bulk_edit.html.erb deleted file mode 100644 index bb7caa1..0000000 --- a/app/views/timelog/bulk_edit.html.erb +++ /dev/null @@ -1,123 +0,0 @@ -

    <%= l(:label_bulk_edit_selected_time_entries) %>

    - -<% if @unsaved_time_entries.present? %> -
    - - <%= l(:notice_failed_to_save_time_entries, - :count => @unsaved_time_entries.size, - :total => @saved_time_entries.size, - :ids => @unsaved_time_entries.map {|i| "##{i.id}"}.join(', ')) %> - -
      - <% bulk_edit_error_messages(@unsaved_time_entries).each do |message| %> -
    • <%= message %>
    • - <% end %> -
    -
    -<% end %> - -
      -<% @time_entries.each do |entry| %> - <%= - content_tag 'li', - link_to( - "#{format_date(entry.spent_on)} - #{entry.project}: #{l(:label_f_hour_plural, :value => entry.hours)} (#{entry.user})", - edit_time_entry_path(entry) - ) - %> -<% end %> -
    - -<%= form_tag(bulk_update_time_entries_path, :id => 'bulk_edit_form') do %> -<%= @time_entries.collect {|i| hidden_field_tag('ids[]', i.id, :id => nil)}.join.html_safe %> -
    -
    -

    - - <%= select_tag('time_entry[project_id]', project_tree_options_for_select(@target_projects, - :include_blank => l(:label_no_change_option), :selected => @target_project), - :onchange => "updateBulkEditFrom('#{escape_javascript url_for(:action => 'bulk_edit', :format => 'js')}')" ) %> -

    -

    - - <%= text_field :time_entry, :issue_id, :size => 6 %> - - -

    - -

    - - <%= date_field :time_entry, :spent_on, :size => 10, :value => @time_entry_params[:spent_on] %><%= calendar_for('time_entry_spent_on') %> -

    - -

    - - <%= text_field :time_entry, :hours, :size => 6, :value => @time_entry_params[:hours] %> -

    - - <% if @available_activities.any? %> -

    - - <%= select_tag('time_entry[activity_id]', content_tag('option', l(:label_no_change_option), :value => '') + options_from_collection_for_select(@available_activities, :id, :name, @time_entry_params[:activity_id])) %> -

    - <% end %> - -

    - - <%= text_field(:time_entry, :comments, :size => 100, :value => @time_entry_params[:comments]) %> -

    - - <% @custom_fields.each do |custom_field| %> -

    <%= custom_field_tag_for_bulk_edit('time_entry', custom_field, @time_entries, @time_entry_params[:custom_field_values][custom_field.id.to_s]) %>

    - <% end %> - - <%= call_hook(:view_time_entries_bulk_edit_details_bottom, { :time_entries => @time_entries }) %> -
    -
    - -

    <%= submit_tag l(:button_submit) %>

    -<% end %> - -<%= javascript_tag do %> - $(document).ready(function(){ - $('#time_entry_project_id').change(function(){ - - $('#time_entry_issue').text(''); - }); - }); - - <% if @project || @target_project %> - observeAutocompleteField('time_entry_issue_id', - function(request, callback) { - var url = '<%= j auto_complete_issues_path %>'; - var data = { - term: request.term - }; - var project_id; - <% if @project %> - project_id = '<%= @project.id %>'; - <% end %> - - current_project_id = $('#time_entry_project_id').val(); - if(current_project_id === ''){ - data['project_id'] = project_id; - } else { - data['project_id'] = current_project_id; - } - - $.get(url, data, null, 'json') - .done(function(data){ - callback(data); - }) - .fail(function(jqXHR, status, error){ - callback([]); - }); - }, - { - select: function(event, ui, data) { - $('#time_entry_issue').text(ui.item.label); - } - } - ); - <% end %> -<% end %> diff --git a/app/views/timelog/bulk_edit.js.erb b/app/views/timelog/bulk_edit.js.erb deleted file mode 100644 index ab07f01..0000000 --- a/app/views/timelog/bulk_edit.js.erb +++ /dev/null @@ -1 +0,0 @@ -$('#content').html('<%= escape_javascript(render :template => 'timelog/bulk_edit', :formats => [:html]) %>'); diff --git a/app/views/timelog/edit.html.erb b/app/views/timelog/edit.html.erb deleted file mode 100644 index 3cc96df..0000000 --- a/app/views/timelog/edit.html.erb +++ /dev/null @@ -1,7 +0,0 @@ -

    <%= l(:label_spent_time) %>

    - -<%= labelled_form_for @time_entry, :url => time_entry_path(@time_entry), :html => {:multipart => true} do |f| %> - <%= render :partial => 'form', :locals => {:f => f} %> - <%= submit_tag l(:button_save) %> - <%= cancel_button_tag_for_time_entry(@project) %> -<% end %> diff --git a/app/views/timelog/edit.js.erb b/app/views/timelog/edit.js.erb deleted file mode 100644 index 4cba8cf..0000000 --- a/app/views/timelog/edit.js.erb +++ /dev/null @@ -1,2 +0,0 @@ -$('#time_entry_activity_id').html('<%= escape_javascript options_for_select(activity_collection_for_select_options(@time_entry), @time_entry.activity_id) %>'); -$('#time_entry_issue').html('<%= escape_javascript link_to_issue(@time_entry.issue) if @time_entry.issue.try(:visible?) %>'); diff --git a/app/views/timelog/index.api.rsb b/app/views/timelog/index.api.rsb deleted file mode 100644 index 9767148..0000000 --- a/app/views/timelog/index.api.rsb +++ /dev/null @@ -1,18 +0,0 @@ -api.array :time_entries, api_meta(:total_count => @entry_count, :offset => @offset, :limit => @limit) do - @entries.each do |time_entry| - api.time_entry do - api.id time_entry.id - api.project(:id => time_entry.project_id, :name => time_entry.project.name) unless time_entry.project.nil? - api.issue(:id => time_entry.issue_id) unless time_entry.issue.nil? - api.user(:id => time_entry.user_id, :name => time_entry.user.name) unless time_entry.user.nil? - api.activity(:id => time_entry.activity_id, :name => time_entry.activity.name) unless time_entry.activity.nil? - api.hours time_entry.hours - api.comments time_entry.comments - api.spent_on time_entry.spent_on - api.created_on time_entry.created_on - api.updated_on time_entry.updated_on - - render_api_custom_values time_entry.visible_custom_field_values, api - end - end -end diff --git a/app/views/timelog/index.html.erb b/app/views/timelog/index.html.erb deleted file mode 100644 index 7b9778d..0000000 --- a/app/views/timelog/index.html.erb +++ /dev/null @@ -1,71 +0,0 @@ -
    -<%= link_to l(:button_log_time), - _new_time_entry_path(@project, @query.filtered_issue_id), - :class => 'icon icon-time-add' if User.current.allowed_to?(:log_time, @project, :global => true) %> -<%= actions_dropdown do %> - <% if User.current.allowed_to?(:import_time_entries, @project, :global => true) %> - <%= link_to l(:button_import), new_time_entries_import_path(:project_id => @project), :class => 'icon icon-import' %> - <% end %> - - <%= link_to_if_authorized l(:label_settings), - {:controller => 'projects', :action => 'settings', :id => @project, :tab => 'activities'}, - :class => 'icon icon-settings' if User.current.allowed_to?(:manage_project_activities, @project) %> -<% end %> -
    - -

    <%= @query.new_record? ? l(:label_spent_time) : @query.name %>

    - -<%= form_tag(_time_entries_path(@project, nil), :method => :get, :id => 'query_form') do %> -<%= render :partial => 'date_range' %> -<% end %> - -<% if @query.valid? %> -<% if @entries.empty? %> -

    <%= l(:label_no_data) %>

    -<% else %> -<%= render_query_totals(@query) %> -<%= render :partial => 'list', :locals => { :entries => @entries }%> -<%= pagination_links_full @entry_pages, @entry_count %> - -<% other_formats_links do |f| %> - <%= f.link_to_with_query_parameters 'Atom', :key => User.current.rss_key %> - <%= f.link_to_with_query_parameters 'CSV', {}, :onclick => "showModal('csv-export-options', '330px'); return false;" %> -<% end %> - - -<% end %> -<% end %> - -<% content_for :sidebar do %> - <%= render :partial => 'timelog/sidebar' %> -<% end %> - -<% html_title(@query.new_record? ? l(:label_spent_time) : @query.name, l(:label_details)) %> - -<% content_for :header_tags do %> - <%= auto_discovery_link_tag(:atom, {:issue_id => @issue, :format => 'atom', :key => User.current.rss_key}, :title => l(:label_spent_time)) %> -<% end %> diff --git a/app/views/timelog/new.html.erb b/app/views/timelog/new.html.erb deleted file mode 100644 index 9ec89d5..0000000 --- a/app/views/timelog/new.html.erb +++ /dev/null @@ -1,8 +0,0 @@ -

    <%= l(:label_spent_time) %>

    - -<%= labelled_form_for @time_entry, :url => time_entries_path, :html => {:multipart => true} do |f| %> - <%= render :partial => 'form', :locals => {:f => f} %> - <%= submit_tag l(:button_create) %> - <%= submit_tag l(:button_create_and_continue), :name => 'continue' %> - <%= cancel_button_tag_for_time_entry(@project) %> -<% end %> diff --git a/app/views/timelog/new.js.erb b/app/views/timelog/new.js.erb deleted file mode 100644 index 4cba8cf..0000000 --- a/app/views/timelog/new.js.erb +++ /dev/null @@ -1,2 +0,0 @@ -$('#time_entry_activity_id').html('<%= escape_javascript options_for_select(activity_collection_for_select_options(@time_entry), @time_entry.activity_id) %>'); -$('#time_entry_issue').html('<%= escape_javascript link_to_issue(@time_entry.issue) if @time_entry.issue.try(:visible?) %>'); diff --git a/app/views/timelog/report.html.erb b/app/views/timelog/report.html.erb deleted file mode 100644 index ee6f0f8..0000000 --- a/app/views/timelog/report.html.erb +++ /dev/null @@ -1,99 +0,0 @@ -
    -<%= link_to l(:button_log_time), - _new_time_entry_path(@project, @issue), - :class => 'icon icon-time-add' if User.current.allowed_to?(:log_time, @project, :global => true) %> -<%= link_to_if_authorized l(:label_settings), - {:controller => 'projects', :action => 'settings', :id => @project, :tab => 'activities'}, - :class => 'icon icon-settings' if User.current.allowed_to?(:manage_project_activities, @project) %> -
    - -

    <%= @query.new_record? ? l(:label_spent_time) : @query.name %>

    - -<%= form_tag(_report_time_entries_path(@project, nil), :method => :get, :id => 'query_form') do %> - <% @report.criteria.each do |criterion| %> - <%= hidden_field_tag 'criteria[]', criterion, :id => nil %> - <% end %> - <%= render :partial => 'timelog/date_range' %> - -

    : <%= select_tag 'columns', options_for_select([[l(:label_year), 'year'], - [l(:label_month), 'month'], - [l(:label_week), 'week'], - [l(:label_day_plural).titleize, 'day']], @report.columns), - :onchange => "this.form.submit();" %> - - : <%= select_tag('criteria[]', options_for_select([[]] + (@report.available_criteria.keys - @report.criteria).collect{|k| [l_or_humanize(@report.available_criteria[k][:label]), k]}), - :onchange => "this.form.submit();", - :style => 'width: 200px', - :disabled => (@report.criteria.length >= 3), - :id => "criterias") %> - <%= link_to l(:button_clear), {:params => request.query_parameters.merge(:criteria => nil)}, :class => 'icon icon-reload' %>

    - <%= hidden_field_tag 'encoding', l(:general_csv_encoding) unless l(:general_csv_encoding).casecmp('UTF-8') == 0 %> -<% end %> - -<% if @query.valid? %> -<% unless @report.criteria.empty? %> -<% if @report.hours.empty? %> -

    <%= l(:label_no_data) %>

    -<% else %> -
    - - - -<% @report.criteria.each do |criteria| %> - -<% end %> -<% columns_width = (40 / (@report.periods.length+1)).to_i %> -<% @report.periods.each do |period| %> - -<% end %> - - - - -<%= render :partial => 'report_criteria', :locals => {:criterias => @report.criteria, :hours => @report.hours, :level => 0} %> - - - <%= ('' * (@report.criteria.size - 1)).html_safe %> - <% total = 0 -%> - <% @report.periods.each do |period| -%> - <% sum = sum_hours(select_hours(@report.hours, @report.columns, period.to_s)); total += sum -%> - - <% end -%> - - - -
    <%= l_or_humanize(@report.available_criteria[criteria][:label]) %><%= period %><%= l(:label_total_time) %>
    <%= l(:label_total_time) %><%= html_hours(format_hours(sum)) if sum > 0 %><%= html_hours(format_hours(total)) if total > 0 %>
    -
    - -<% other_formats_links do |f| %> - <%= f.link_to_with_query_parameters 'CSV', {}, :onclick => "showModal('csv-export-options', '330px'); return false;" %> -<% end %> -<% end %> - -<% end %> -<% end %> - -<% content_for :sidebar do %> - <%= render :partial => 'sidebar' %> -<% end %> - -<% html_title(@query.new_record? ? l(:label_spent_time) : @query.name, l(:label_report)) %> - - -<%= javascript_tag do %> -$(document).ready(function(){ - $('input#csv-export-button').click(function(){ - $('form input#encoding').val($('select#encoding option:selected').val()); - $('form#query_form').attr('action', '<%= _report_time_entries_path(@project, nil, :format => 'csv') %>').submit(); - $('form#query_form').attr('action', '<%= _report_time_entries_path(@project, nil) %>'); - hideModal(this); - }); -}); -<% end %> diff --git a/app/views/timelog/show.api.rsb b/app/views/timelog/show.api.rsb deleted file mode 100644 index 7fce252..0000000 --- a/app/views/timelog/show.api.rsb +++ /dev/null @@ -1,14 +0,0 @@ -api.time_entry do - api.id @time_entry.id - api.project(:id => @time_entry.project_id, :name => @time_entry.project.name) unless @time_entry.project.nil? - api.issue(:id => @time_entry.issue_id) unless @time_entry.issue.nil? - api.user(:id => @time_entry.user_id, :name => @time_entry.user.name) unless @time_entry.user.nil? - api.activity(:id => @time_entry.activity_id, :name => @time_entry.activity.name) unless @time_entry.activity.nil? - api.hours @time_entry.hours - api.comments @time_entry.comments - api.spent_on @time_entry.spent_on - api.created_on @time_entry.created_on - api.updated_on @time_entry.updated_on - - render_api_custom_values @time_entry.custom_field_values, api -end diff --git a/app/views/trackers/_form.html.erb b/app/views/trackers/_form.html.erb deleted file mode 100644 index 27e086e..0000000 --- a/app/views/trackers/_form.html.erb +++ /dev/null @@ -1,60 +0,0 @@ -<%= error_messages_for 'tracker' %> - -
    -
    -
    - -

    <%= f.text_field :name, :required => true %>

    -

    <%= f.select :default_status_id, - IssueStatus.sorted.map {|s| [s.name, s.id]}, - :include_blank => @tracker.default_status.nil?, - :required => true %> -

    -

    <%= f.check_box :is_in_roadmap %>

    -

    <%= f.text_area :description, :rows => 4 %>

    -

    - - <% Tracker::CORE_FIELDS.each do |field| %> - - <% end %> -

    -<%= hidden_field_tag 'tracker[core_fields][]', '' %> - -<% @issue_custom_fields = IssueCustomField.sorted %> -<% if @issue_custom_fields.present? %> -

    - - <% @issue_custom_fields.each do |field| %> - - <% end %> -

    -<%= hidden_field_tag 'tracker[custom_field_ids][]', '' %> -<% end %> - -<% if @tracker.new_record? && @trackers.any? %> -

    -<%= select_tag(:copy_workflow_from, content_tag("option") + options_from_collection_for_select(@trackers, :id, :name)) %>

    -<% end %> - -
    -<%= submit_tag l(@tracker.new_record? ? :button_create : :button_save) %> -
    - -
    -<% if @projects.any? %> -
    <%= toggle_checkboxes_link("#tracker_project_ids input[type=checkbox]") %><%= l(:label_project_plural) %> -<% project_ids = @tracker.project_ids.to_a %> -<%= render_project_nested_lists(@projects) do |p| - content_tag('label', check_box_tag('tracker[project_ids][]', p.id, project_ids.include?(p.id), :id => nil) + ' ' + h(p)) -end %> -<%= hidden_field_tag('tracker[project_ids][]', '', :id => nil) %> -
    -<% end %> -
    -
    diff --git a/app/views/trackers/edit.html.erb b/app/views/trackers/edit.html.erb deleted file mode 100644 index 857c6ac..0000000 --- a/app/views/trackers/edit.html.erb +++ /dev/null @@ -1,5 +0,0 @@ -<%= title [l(:label_tracker_plural), trackers_path], @tracker.name %> - -<%= labelled_form_for @tracker do |f| %> -<%= render :partial => 'form', :locals => { :f => f } %> -<% end %> diff --git a/app/views/trackers/fields.html.erb b/app/views/trackers/fields.html.erb deleted file mode 100644 index 4a27ef2..0000000 --- a/app/views/trackers/fields.html.erb +++ /dev/null @@ -1,79 +0,0 @@ -<%= title [l(:label_tracker_plural), trackers_path], l(:field_summary) %> - -<% if @trackers.any? %> - <%= form_tag fields_trackers_path do %> -
    - - - - - <% @trackers.each do |tracker| %> - - <% end %> - - - - - - - <% Tracker::CORE_FIELDS.each do |field| %> - - <% field_name = l("field_#{field}".sub(/_id$/, '')) %> - - <% @trackers.each do |tracker| %> - - <% end %> - - <% end %> - <% if @custom_fields.any? %> - - - - <% @custom_fields.each do |field| %> - - - <% @trackers.each do |tracker| %> - - <% end %> - - <% end %> - <% end %> - -
    - <%= link_to_function('', "toggleCheckboxesBySelector('input.tracker-#{tracker.id}')", - :title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}", - :class => 'icon-only icon-checked') %> - <%= tracker.name %> -
    -   - <%= l(:field_core_fields) %> -
    - <%= link_to_function('', "toggleCheckboxesBySelector('input.core-field-#{field}')", - :title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}", - :class => 'icon-only icon-checked') %> - <%= field_name %> - "> - <%= check_box_tag "trackers[#{tracker.id}][core_fields][]", field, tracker.core_fields.include?(field), - :class => "tracker-#{tracker.id} core-field-#{field}", :id => nil %> -
    -   - <%= l(:label_custom_field_plural) %> -
    - <%= link_to_function('', "toggleCheckboxesBySelector('input.custom-field-#{field.id}')", - :title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}", - :class => 'icon-only icon-checked') %> - <%= field.name %> - "> - <%= check_box_tag "trackers[#{tracker.id}][custom_field_ids][]", field.id, tracker.custom_fields.include?(field), - :class => "tracker-#{tracker.id} custom-field-#{field.id}", :id => nil %> -
    -
    -

    <%= submit_tag l(:button_save) %>

    - <% @trackers.each do |tracker| %> - <%= hidden_field_tag "trackers[#{tracker.id}][core_fields][]", '' %> - <%= hidden_field_tag "trackers[#{tracker.id}][custom_field_ids][]", '' %> - <% end %> - <% end %> -<% else %> -

    <%= l(:label_no_data) %>

    -<% end %> diff --git a/app/views/trackers/index.api.rsb b/app/views/trackers/index.api.rsb deleted file mode 100644 index 59affd7..0000000 --- a/app/views/trackers/index.api.rsb +++ /dev/null @@ -1,10 +0,0 @@ -api.array :trackers do - @trackers.each do |tracker| - api.tracker do - api.id tracker.id - api.name tracker.name - api.default_status(:id => tracker.default_status.id, :name => tracker.default_status.name) unless tracker.default_status.nil? - api.description tracker.description - end - end -end diff --git a/app/views/trackers/index.html.erb b/app/views/trackers/index.html.erb deleted file mode 100644 index 20d0975..0000000 --- a/app/views/trackers/index.html.erb +++ /dev/null @@ -1,42 +0,0 @@ -
    -<%= link_to l(:label_tracker_new), new_tracker_path, :class => 'icon icon-add' %> -<%= link_to l(:field_summary), fields_trackers_path, :class => 'icon icon-summary' %> -
    - -

    <%=l(:label_tracker_plural)%>

    - - - - - - - - - - -<% for tracker in @trackers %> - - - - - - - -<% end %> - -
    <%=l(:label_tracker)%><%=l(:field_default_status)%><%=l(:field_description)%>
    <%= link_to tracker.name, edit_tracker_path(tracker) %><%= tracker.default_status.name %><%= tracker.description %> - <% unless tracker.workflow_rules.exists? %> - - <%= l(:text_tracker_no_workflow) %> (<%= link_to l(:button_edit), workflows_edit_path(:tracker_id => tracker) %>) - - <% end %> - - <%= reorder_handle(tracker) %> - <%= delete_link tracker_path(tracker) %> -
    - -<% html_title(l(:label_tracker_plural)) -%> - -<%= javascript_tag do %> - $(function() { $("table.trackers tbody").positionedItems(); }); -<% end %> diff --git a/app/views/trackers/new.html.erb b/app/views/trackers/new.html.erb deleted file mode 100644 index 4fe1efe..0000000 --- a/app/views/trackers/new.html.erb +++ /dev/null @@ -1,5 +0,0 @@ -<%= title [l(:label_tracker_plural), trackers_path], l(:label_tracker_new) %> - -<%= labelled_form_for @tracker do |f| %> -<%= render :partial => 'form', :locals => { :f => f } %> -<% end %> diff --git a/app/views/users/_form.html.erb b/app/views/users/_form.html.erb deleted file mode 100644 index d423f61..0000000 --- a/app/views/users/_form.html.erb +++ /dev/null @@ -1,76 +0,0 @@ -<%= error_messages_for 'user' %> - -
    - -
    -
    -
    - <%=l(:label_information_plural)%> -

    <%= f.text_field :login, :required => true, :size => 25 %>

    -

    <%= f.text_field :firstname, :required => true %>

    -

    <%= f.text_field :lastname, :required => true %>

    -

    <%= f.text_field :mail, :required => true %>

    - <% unless @user.force_default_language? %> -

    <%= f.select :language, lang_options_for_select %>

    - <% end %> - <% if Setting.openid? %> -

    <%= f.text_field :identity_url %>

    - <% end %> - - <% @user.custom_field_values.each do |value| %> -

    <%= custom_field_tag_with_label :user, value %>

    - <% end %> - -

    <%= f.check_box :admin, :disabled => (@user == User.current) %>

    - <%= call_hook(:view_users_form, :user => @user, :form => f) %> -
    - -
    - <%=l(:label_authentication)%> - <% unless @auth_sources.empty? %> -

    <%= f.select :auth_source_id, ([[l(:label_internal), ""]] + @auth_sources.collect { |a| [a.name, a.id] }), {}, :onchange => "if (this.value=='') {$('#password_fields').show();} else {$('#password_fields').hide();}" %>

    - <% end %> -
    -

    - <%= f.password_field :password, :required => @user.new_record?, :size => 25 %> - <%= l(:text_caracters_minimum, :count => Setting.password_min_length) %> - <% if Setting.password_required_char_classes.any? %> - <%= l(:text_characters_must_contain, :character_classes => Setting.password_required_char_classes.collect{|c| l("label_password_char_class_#{c}")}.join(", ")) %> - <% end %> -

    -

    <%= f.password_field :password_confirmation, :required => @user.new_record?, :size => 25 %>

    -

    <%= f.check_box :generate_password %>

    -

    <%= f.check_box :must_change_passwd %>

    -
    -
    -
    - -
    -
    - <%=l(:field_mail_notification)%> - <%= render :partial => 'users/mail_notifications' %> -
    - -
    - <%=l(:label_preferences)%> - <%= render :partial => 'users/preferences' %> - <%= call_hook(:view_users_form_preferences, :user => @user, :form => f) %> -
    -
    -
    -
    -
    - - -<%= javascript_tag do %> -$(document).ready(function(){ - $('#user_generate_password').change(function(){ - var passwd = $('#user_password, #user_password_confirmation'); - if ($(this).is(':checked')){ - passwd.val('').attr('disabled', true); - }else{ - passwd.removeAttr('disabled'); - } - }).trigger('change'); -}); -<% end %> diff --git a/app/views/users/_general.html.erb b/app/views/users/_general.html.erb deleted file mode 100644 index c939857..0000000 --- a/app/views/users/_general.html.erb +++ /dev/null @@ -1,7 +0,0 @@ -<%= labelled_form_for @user, :html => {:multipart => true} do |f| %> - <%= render :partial => 'form', :locals => { :f => f } %> - <% if @user.active? && email_delivery_enabled? && @user != User.current -%> -

    - <% end -%> -

    <%= submit_tag l(:button_save) %>

    -<% end %> diff --git a/app/views/users/_groups.html.erb b/app/views/users/_groups.html.erb deleted file mode 100644 index 5429f9b..0000000 --- a/app/views/users/_groups.html.erb +++ /dev/null @@ -1,13 +0,0 @@ -<%= form_for(:user, :url => { :action => 'update' }, :html => {:method => :put}) do %> -
    -
    -<% user_group_ids = @user.group_ids %> -<% Group.givable.sort.each do |group| %> -
    -<% end %> -<%= hidden_field_tag 'user[group_ids][]', '' %> -
    -

    <%= check_all_links 'user_group_ids' %>

    -
    -<%= submit_tag l(:button_save) %> -<% end %> diff --git a/app/views/users/_mail_notifications.html.erb b/app/views/users/_mail_notifications.html.erb deleted file mode 100644 index 85842de..0000000 --- a/app/views/users/_mail_notifications.html.erb +++ /dev/null @@ -1,31 +0,0 @@ -

    -<%= label_tag "user_mail_notification", l(:description_user_mail_notification), :class => "hidden-for-sighted" %> -<%= select_tag( - 'user[mail_notification]', - options_for_select( - user_mail_notification_options(@user), @user.mail_notification), - :onchange => 'if (this.value == "selected") {$("#notified-projects").show();} else {$("#notified-projects").hide();}' - ) %> -

    -<%= content_tag 'fieldset', :id => 'notified-projects', :style => (@user.mail_notification == 'selected' ? '' : 'display:none;') do %> - <%= toggle_checkboxes_link("#notified-projects input[type=checkbox]") %><%=l(:label_project_plural)%> - <%= render_project_nested_lists(@user.projects) do |project| - content_tag('label', - check_box_tag( - 'user[notified_project_ids][]', - project.id, - @user.notified_projects_ids.include?(project.id), - :id => nil - ) + ' ' + h(project.name) - ) - end %> - <%= hidden_field_tag 'user[notified_project_ids][]', '' %> -

    <%= l(:text_user_mail_option) %>

    -<% end %> - -<%= fields_for :pref, @user.pref do |pref_fields| %> -

    - <%= pref_fields.check_box :no_self_notified %> - -

    -<% end %> diff --git a/app/views/users/_memberships.html.erb b/app/views/users/_memberships.html.erb deleted file mode 100644 index 75871d6..0000000 --- a/app/views/users/_memberships.html.erb +++ /dev/null @@ -1 +0,0 @@ -<%= render_principal_memberships @user %> diff --git a/app/views/users/_preferences.html.erb b/app/views/users/_preferences.html.erb deleted file mode 100644 index 6397c3a..0000000 --- a/app/views/users/_preferences.html.erb +++ /dev/null @@ -1,9 +0,0 @@ -<%= labelled_fields_for :pref, @user.pref do |pref_fields| %> -

    <%= pref_fields.check_box :hide_mail %>

    -

    <%= pref_fields.time_zone_select :time_zone, nil, :include_blank => true %>

    -

    <%= pref_fields.select :comments_sorting, [[l(:label_chronological_order), 'asc'], [l(:label_reverse_chronological_order), 'desc']] %>

    -

    <%= pref_fields.check_box :warn_on_leaving_unsaved %>

    -

    <%= pref_fields.select :textarea_font, textarea_font_options %>

    -

    <%= pref_fields.text_field :recently_used_projects, :size => 2 %>

    -

    <%= pref_fields.select :history_default_tab, history_default_tab_options %>

    -<% end %> diff --git a/app/views/users/destroy_membership.js.erb b/app/views/users/destroy_membership.js.erb deleted file mode 100644 index 53b769a..0000000 --- a/app/views/users/destroy_membership.js.erb +++ /dev/null @@ -1 +0,0 @@ -$('#tab-content-memberships').html('<%= escape_javascript(render :partial => 'users/memberships') %>'); diff --git a/app/views/users/edit.html.erb b/app/views/users/edit.html.erb deleted file mode 100644 index 7866308..0000000 --- a/app/views/users/edit.html.erb +++ /dev/null @@ -1,13 +0,0 @@ -
    -<%= link_to l(:label_profile), user_path(@user), :class => 'icon icon-user' %> -<%= additional_emails_link(@user) %> -<%= change_status_link(@user) %> -<%= delete_link user_path(@user) if User.current != @user %> -
    - -<%= - page_title = title [l(:label_user_plural), users_path], @user.login - page_title.insert(page_title.rindex(' ') + 1, avatar(@user).to_s) -%> - -<%= render_tabs user_settings_tabs %> diff --git a/app/views/users/edit_membership.js.erb b/app/views/users/edit_membership.js.erb deleted file mode 100644 index d9ad2f3..0000000 --- a/app/views/users/edit_membership.js.erb +++ /dev/null @@ -1,6 +0,0 @@ -<% if @membership.valid? %> - $('#tab-content-memberships').html('<%= escape_javascript(render :partial => 'users/memberships') %>'); - $("#member-<%= @membership.id %>").effect("highlight"); -<% else %> - alert('<%= raw(escape_javascript(l(:notice_failed_to_save_members, :errors => @membership.errors.full_messages.join(', ')))) %>'); -<% end %> diff --git a/app/views/users/index.api.rsb b/app/views/users/index.api.rsb deleted file mode 100644 index 23e3839..0000000 --- a/app/views/users/index.api.rsb +++ /dev/null @@ -1,16 +0,0 @@ -api.array :users, api_meta(:total_count => @user_count, :offset => @offset, :limit => @limit) do - @users.each do |user| - api.user do - api.id user.id - api.login user.login - api.admin user.admin? - api.firstname user.firstname - api.lastname user.lastname - api.mail user.mail - api.created_on user.created_on - api.last_login_on user.last_login_on - - render_api_custom_values user.visible_custom_field_values, api - end - end -end diff --git a/app/views/users/index.html.erb b/app/views/users/index.html.erb deleted file mode 100644 index 75c9eb4..0000000 --- a/app/views/users/index.html.erb +++ /dev/null @@ -1,84 +0,0 @@ -
    -<%= link_to l(:label_user_new), new_user_path, :class => 'icon icon-add' %> -
    - -

    <%=l(:label_user_plural)%>

    - -<%= form_tag(users_path, { :method => :get, :id => 'users_form' }) do %> -
    <%= l(:label_filter_plural) %> - -<%= select_tag 'status', users_status_options_for_select(@status), :class => "small", :onchange => "this.form.submit(); return false;" %> - -<% if @groups.present? %> - -<%= select_tag 'group_id', content_tag('option') + options_from_collection_for_select(@groups, :id, :name, params[:group_id].to_i), :onchange => "this.form.submit(); return false;" %> -<% end %> - - -<%= text_field_tag 'name', params[:name], :size => 30 %> -<%= submit_tag l(:button_apply), :class => "small", :name => nil %> -<%= link_to l(:button_clear), users_path, :class => 'icon icon-reload' %> -
    -<%= hidden_field_tag 'encoding', l(:general_csv_encoding) unless l(:general_csv_encoding).casecmp('UTF-8') == 0 %> -<% end %> -  - -<% if @users.any? %> -
    - - - <%= sort_header_tag('login', :caption => l(:field_login)) %> - <%= sort_header_tag('firstname', :caption => l(:field_firstname)) %> - <%= sort_header_tag('lastname', :caption => l(:field_lastname)) %> - - <%= sort_header_tag('admin', :caption => l(:field_admin), :default_order => 'desc') %> - <%= sort_header_tag('created_on', :caption => l(:field_created_on), :default_order => 'desc') %> - <%= sort_header_tag('last_login_on', :caption => l(:field_last_login_on), :default_order => 'desc') %> - - - -<% for user in @users -%> - - - - - - - - - - -<% end -%> - -
    <%= l(:field_mail) %>
    <%= avatar(user, :size => "14") %><%= link_to user.login, edit_user_path(user) %><%= user.firstname %><%= user.lastname %><%= checked_image user.admin? %><%= format_time(user.created_on) %> - <%= change_status_link(user) %> - <%= delete_link user_path(user, :back_url => request.original_fullpath) unless User.current == user %> -
    -
    -<%= pagination_links_full @user_pages, @user_count %> -<% other_formats_links do |f| %> - <%= f.link_to_with_query_parameters 'CSV', {}, :onclick => "showModal('csv-export-options', '330px'); return false;" %> -<% end %> - -<%= javascript_tag do %> -$(document).ready(function(){ - $('input#csv-export-button').click(function(){ - $('form input#encoding').val($('select#encoding option:selected').val()); - $('form#users_form').attr('action', "<%= users_path(:format => 'csv') %>").submit(); - $('form#users_form').attr('action', '<%= users_path %>'); - hideModal(this); - }); -}); -<% end %> -<% else %> -

    <%= l(:label_no_data) %>

    -<% end %> - -<% html_title(l(:label_user_plural)) -%> diff --git a/app/views/users/new.html.erb b/app/views/users/new.html.erb deleted file mode 100644 index f65bea1..0000000 --- a/app/views/users/new.html.erb +++ /dev/null @@ -1,30 +0,0 @@ -<%= title [l(:label_user_plural), users_path], l(:label_user_new) %> - -<%= labelled_form_for @user, :html => {:multipart => true} do |f| %> - <%= render :partial => 'form', :locals => { :f => f } %> - <% if email_delivery_enabled? %> -

    - <% end %> -

    - <%= submit_tag l(:button_create) %> - <%= submit_tag l(:button_create_and_continue), :name => 'continue' %> -

    -<% end %> - -<% if @auth_sources.present? && @auth_sources.any?(&:searchable?) %> - <%= javascript_tag do %> - observeAutocompleteField('user_login', '<%= escape_javascript autocomplete_for_new_user_auth_sources_path %>', { - select: function(event, ui) { - $('input#user_firstname').val(ui.item.firstname); - $('input#user_lastname').val(ui.item.lastname); - $('input#user_mail').val(ui.item.mail); - $('select#user_auth_source_id option').each(function(){ - if ($(this).attr('value') == ui.item.auth_source_id) { - $(this).prop('selected', true); - $('select#user_auth_source_id').trigger('change'); - } - }); - } - }); - <% end %> -<% end %> diff --git a/app/views/users/show.api.rsb b/app/views/users/show.api.rsb deleted file mode 100644 index 1a3041d..0000000 --- a/app/views/users/show.api.rsb +++ /dev/null @@ -1,38 +0,0 @@ -api.user do - api.id @user.id - api.login @user.login - api.admin @user.admin? if User.current.admin? || (User.current == @user) - api.firstname @user.firstname - api.lastname @user.lastname - api.mail @user.mail if User.current.admin? || !@user.pref.hide_mail - api.created_on @user.created_on - api.last_login_on @user.last_login_on - api.api_key @user.api_key if User.current.admin? || (User.current == @user) - api.status @user.status if User.current.admin? - - render_api_custom_values @user.visible_custom_field_values, api - - api.array :groups do |groups| - @user.groups.each do |group| - api.group :id => group.id, :name => group.name - end - end if User.current.admin? && include_in_api_response?('groups') - - api.array :memberships do - @memberships.each do |membership| - api.membership do - api.id membership.id - api.project :id => membership.project.id, :name => membership.project.name - api.array :roles do - membership.member_roles.each do |member_role| - if member_role.role - attrs = {:id => member_role.role.id, :name => member_role.role.name} - attrs.merge!(:inherited => true) if member_role.inherited_from.present? - api.role attrs - end - end - end - end if membership.project - end - end if include_in_api_response?('memberships') && @memberships -end diff --git a/app/views/users/show.html.erb b/app/views/users/show.html.erb deleted file mode 100644 index e97119b..0000000 --- a/app/views/users/show.html.erb +++ /dev/null @@ -1,135 +0,0 @@ -
    -<%= link_to(l(:button_edit), edit_user_path(@user), :class => 'icon icon-edit') if User.current.admin? && @user.logged? %> -
    - -

    <%= avatar @user, :size => "50" %> <%= @user.name %>

    - -
    -
    -
      -
    • <%=l(:field_login)%>: <%= @user.login %>
    • - <% unless @user.pref.hide_mail %> -
    • <%=l(:field_mail)%>: <%= mail_to(@user.mail, nil, :encode => 'javascript') %>
    • - <% end %> - <% @user.visible_custom_field_values.each do |custom_value| %> - <% if !custom_value.value.blank? %> -
    • <%= custom_value.custom_field.name %>: <%= show_value(custom_value) %>
    • - <% end %> - <% end %> -
    • <%=l(:label_registered_on)%>: <%= format_date(@user.created_on) %>
    • - <% unless @user.last_login_on.nil? %> -
    • <%=l(:field_last_login_on)%>: <%= format_date(@user.last_login_on) %>
    • - <% end %> -
    - -

    <%=l(:label_issue_plural)%>

    - - - - - - - - - - - - <% assigned_to_ids = ([@user.id] + @user.group_ids).join("|") %> - <% sort_cond = 'priority:desc,updated_on:desc' %> - - - - - - - - - - - - - -
    <%=l(:label_open_issues_plural)%><%=l(:label_closed_issues_plural)%><%=l(:label_total)%>
    - <%= link_to l(:label_assigned_issues), - issues_path(:set_filter => 1, :assigned_to_id => assigned_to_ids, :sort => sort_cond) %> - - <%= link_to @issue_counts[:assigned][:open], - issues_path(:set_filter => 1, :assigned_to_id => assigned_to_ids, :sort => sort_cond) %> - - <%= link_to @issue_counts[:assigned][:total] - @issue_counts[:assigned][:open], - issues_path(:set_filter => 1, :status_id => 'c', :assigned_to_id => assigned_to_ids, :sort => sort_cond) %> - - <%= link_to @issue_counts[:assigned][:total], - issues_path(:set_filter => 1, :status_id => '*', :assigned_to_id => assigned_to_ids, :sort => sort_cond) %> -
    - <%= link_to l(:label_reported_issues), - issues_path(:set_filter => 1, :author_id => @user.id, :sort => sort_cond) %> - - <%= link_to @issue_counts[:reported][:open], - issues_path(:set_filter => 1, :author_id => @user.id, :sort => sort_cond) %> - - <%= link_to @issue_counts[:reported][:total] - @issue_counts[:reported][:open], - issues_path(:set_filter => 1, :status_id => 'c', :author_id => @user.id, :sort => sort_cond) %> - - <%= link_to @issue_counts[:reported][:total], - issues_path(:set_filter => 1, :status_id => '*', :author_id => @user.id, :sort => sort_cond) %> -
    - -<% unless @memberships.empty? %> -

    <%=l(:label_project_plural)%>

    - - - - - - - - - -<% memberships_by_project = @memberships.group_by(&:project) %> -<% project_tree(memberships_by_project.keys, :init_level => true) do |project, level| %> - <% membership = memberships_by_project[project].first %> - "> - - - - -<% end %> - -
    <%=l(:label_project)%><%=l(:label_role_plural)%><%=l(:label_registered_on)%>
    <%= link_to_project(project) %><%= membership.roles.sort.collect(&:to_s).join(', ') %><%= format_date(membership.created_on) %>
    -<% end %> - -<% if (User.current == @user || User.current.admin?) && @user.groups.any? %> -
    -

    <%=l(:label_group_plural)%>

    -
      - <% for group in @user.groups %> -
    • <%= link_to_group(group) %> - <% end %> -
    -
    -<% end %> - -<%= call_hook :view_account_left_bottom, :user => @user %> -
    - -
    - -<% unless @events_by_day.empty? %> -

    <%= link_to l(:label_activity), :controller => 'activities', - :action => 'index', :id => nil, :user_id => @user, - :from => @events_by_day.keys.first %>

    -<%= render :partial => 'activities/activities', :locals => {:events_by_day => @events_by_day} %> - -<% other_formats_links do |f| %> - <%= f.link_to 'Atom', :url => {:controller => 'activities', :action => 'index', :id => nil, :user_id => @user, :key => User.current.rss_key} %> -<% end %> - -<% content_for :header_tags do %> - <%= auto_discovery_link_tag(:atom, :controller => 'activities', :action => 'index', :user_id => @user, :format => :atom, :key => User.current.rss_key) %> -<% end %> -<% end %> -<%= call_hook :view_account_right_bottom, :user => @user %> -
    -
    -<% html_title @user.name %> diff --git a/app/views/versions/_form.html.erb b/app/views/versions/_form.html.erb deleted file mode 100644 index 6211976..0000000 --- a/app/views/versions/_form.html.erb +++ /dev/null @@ -1,21 +0,0 @@ -<%= back_url_hidden_field_tag %> -<%= error_messages_for 'version' %> - -
    -

    <%= f.text_field :name, :maxlength => 60, :size => 60, :required => true %>

    -

    <%= f.text_field :description, :size => 60 %>

    -<% unless @version.new_record? %> -

    <%= f.select :status, Version::VERSION_STATUSES.collect {|s| [l("version_status_#{s}"), s]} %>

    -<% end %> -

    <%= f.text_field :wiki_page_title, :label => :label_wiki_page, :size => 60, :disabled => @project.wiki.nil? %>

    -

    <%= f.date_field :effective_date, :size => 10 %><%= calendar_for('version_effective_date') %>

    -

    <%= f.select :sharing, @version.allowed_sharings.collect {|v| [format_version_sharing(v), v]} %>

    -<% if @version.new_record? %> -

    <%= f.check_box :default_project_version, :label => :field_default_version %>

    -<% end %> - -<% @version.visible_custom_field_values.each do |value| %> -

    <%= custom_field_tag_with_label :version, value %>

    -<% end %> - -
    diff --git a/app/views/versions/_issue_counts.html.erb b/app/views/versions/_issue_counts.html.erb deleted file mode 100644 index 398b2d3..0000000 --- a/app/views/versions/_issue_counts.html.erb +++ /dev/null @@ -1,32 +0,0 @@ -<%= form_tag({}, :id => "status_by_form") do -%> -
    - -<%= l(:label_issues_by, - select_tag('status_by', - status_by_options_for_select(criteria), - :id => 'status_by_select', - :data => {:remote => true, :method => 'post', :url => status_by_version_path(version)})).html_safe %> - -<% if counts.empty? %> -

    <%= l(:label_no_data) %>

    -<% else %> - - <% counts.each do |count| %> - - - - - <% end %> -
    - <% if count[:group] -%> - <%= link_to(count[:group], project_issues_path(version.project, :set_filter => 1, :status_id => '*', :fixed_version_id => version, "#{criteria}_id" => count[:group])) %> - <% else -%> - <%= link_to(l(:label_none), project_issues_path(version.project, :set_filter => 1, :status_id => '*', :fixed_version_id => version, "#{criteria}_id" => "!*")) %> - <% end %> - - <%= progress_bar((count[:closed].to_f / count[:total])*100, - :legend => "#{count[:closed]}/#{count[:total]}") %> -
    -<% end %> -
    -<% end %> diff --git a/app/views/versions/_new_modal.html.erb b/app/views/versions/_new_modal.html.erb deleted file mode 100644 index 052a739..0000000 --- a/app/views/versions/_new_modal.html.erb +++ /dev/null @@ -1,9 +0,0 @@ -

    <%=l(:label_version_new)%>

    - -<%= labelled_form_for @version, :url => project_versions_path(@project), :remote => true do |f| %> -<%= render :partial => 'versions/form', :locals => { :f => f } %> -

    - <%= submit_tag l(:button_create), :name => nil %> - <%= link_to_function l(:button_cancel), "hideModal(this);" %> -

    -<% end %> diff --git a/app/views/versions/_overview.html.erb b/app/views/versions/_overview.html.erb deleted file mode 100644 index 48c6b59..0000000 --- a/app/views/versions/_overview.html.erb +++ /dev/null @@ -1,38 +0,0 @@ -
    -<% if version.completed? %> -

    <%= format_date(version.effective_date) %>

    -<% elsif version.effective_date %> -

    <%= due_date_distance_in_words(version.effective_date) %> (<%= format_date(version.effective_date) %>)

    -<% end %> - -

    <%=h version.description %>

    -<% if version.custom_field_values.any? %> -
      - <% render_custom_field_values(version) do |custom_field, formatted| %> -
    • <%= custom_field.name %>: <%= formatted %>
    • - <% end %> -
    -<% end %> - -<% if version.visible_fixed_issues.count > 0 %> - <%= progress_bar([version.visible_fixed_issues.closed_percent, version.visible_fixed_issues.completed_percent], - :titles => - ["%s: %i%%" % [l(:label_closed_issues_plural), version.visible_fixed_issues.closed_percent], - "%s: %i%%" % [l(:field_done_ratio), version.visible_fixed_issues.completed_percent]], - :legend => ('%i%%' % version.visible_fixed_issues.completed_percent)) %> -

    - <%= link_to(l(:label_x_issues, :count => version.visible_fixed_issues.count), - version_filtered_issues_path(version, :status_id => '*')) %> -   - (<%= link_to_if(version.visible_fixed_issues.closed_count > 0, - l(:label_x_closed_issues_abbr, :count => version.visible_fixed_issues.closed_count), - version_filtered_issues_path(version, :status_id => 'c')) %> - — - <%= link_to_if(version.visible_fixed_issues.open_count > 0, - l(:label_x_open_issues_abbr, :count => version.visible_fixed_issues.open_count), - version_filtered_issues_path(version, :status_id => 'o')) %>) -

    -<% else %> -

    <%= l(:label_roadmap_no_issues) %>

    -<% end %> -
    diff --git a/app/views/versions/create.js.erb b/app/views/versions/create.js.erb deleted file mode 100644 index e6e0bec..0000000 --- a/app/views/versions/create.js.erb +++ /dev/null @@ -1,3 +0,0 @@ -hideModal(); -<% select = content_tag('select', content_tag('option') + version_options_for_select(@project.shared_versions.open, @version), :id => 'issue_fixed_version_id', :name => 'issue[fixed_version_id]') %> -$('#issue_fixed_version_id').replaceWith('<%= escape_javascript(select) %>'); diff --git a/app/views/versions/edit.html.erb b/app/views/versions/edit.html.erb deleted file mode 100644 index db6bb84..0000000 --- a/app/views/versions/edit.html.erb +++ /dev/null @@ -1,7 +0,0 @@ -

    <%=l(:label_version)%>

    - -<%= labelled_form_for @version, :html => {:multipart => true} do |f| %> -<%= render :partial => 'form', :locals => { :f => f } %> -<%= submit_tag l(:button_save) %> -<% end %> - diff --git a/app/views/versions/index.api.rsb b/app/views/versions/index.api.rsb deleted file mode 100644 index 6535455..0000000 --- a/app/views/versions/index.api.rsb +++ /dev/null @@ -1,20 +0,0 @@ -api.array :versions, api_meta(:total_count => @versions.size) do - @versions.each do |version| - api.version do - api.id version.id - api.project(:id => version.project_id, :name => version.project.name) unless version.project.nil? - - api.name version.name - api.description version.description - api.status version.status - api.due_date version.effective_date - api.sharing version.sharing - api.wiki_page_title version.wiki_page_title - - render_api_custom_values version.visible_custom_field_values, api - - api.created_on version.created_on - api.updated_on version.updated_on - end - end -end diff --git a/app/views/versions/index.html.erb b/app/views/versions/index.html.erb deleted file mode 100644 index afe9b46..0000000 --- a/app/views/versions/index.html.erb +++ /dev/null @@ -1,110 +0,0 @@ -
    - <%= link_to(l(:label_version_new), new_project_version_path(@project), - :class => 'icon icon-add') if User.current.allowed_to?(:manage_versions, @project) %> - <%= actions_dropdown do %> - <%= link_to_if_authorized l(:label_settings), - {:controller => 'projects', :action => 'settings', :id => @project, :tab => 'versions'}, - :class => 'icon icon-settings' if User.current.allowed_to?(:manage_versions, @project) %> - <% end %> -
    - -

    <%=l(:label_roadmap)%>

    - -<% if @versions.empty? %> -

    <%= l(:label_no_data) %>

    -<% else %> -
    - <% @versions.each do |version| %> -
    - <% if User.current.allowed_to?(:manage_versions, version.project) %> -
    - <%= link_to l(:button_edit), edit_version_path(version), :title => l(:button_edit), :class => 'icon-only icon-edit' %> -
    - <% end %> -
    -

    <%= link_to_version version, :name => version_anchor(version) %>

    - <%= l("version_status_#{version.status}") %> -
    - <%= render :partial => 'versions/overview', :locals => {:version => version} %> - <%= render(:partial => "wiki/content", - :locals => {:content => version.wiki_page.content}) if version.wiki_page %> - <% if (issues = @issues_by_version[version]) && issues.size > 0 %> - <%= form_tag({}, :data => {:cm_url => issues_context_menu_path}) do -%> - - - <% issues.each do |issue| -%> - - - - - - - <% end -%> - - <% end %> - <% end %> - <%= call_hook :view_projects_roadmap_version_bottom, :version => version %> -
    - <% end %> -
    -<% end %> - -<% content_for :sidebar do %> -<%= form_tag({}, :method => :get) do %> -

    <%= l(:label_roadmap) %>

    -
      -<% @trackers.each do |tracker| %> -
    • - -
    • -<% end %> -
    -

    -
      -
    • - -
    • - <% if @project.descendants.active.any? %> -
    • - <%= hidden_field_tag 'with_subprojects', 0, :id => nil %> - -
    • - <% end %> -
    -

    <%= submit_tag l(:button_apply), :class => 'button-small', :name => nil %>

    -<% end %> - -

    <%= l(:label_version_plural) %>

    -
      -<% @versions.each do |version| %> -
    • - <%= link_to(format_version_name(version), "##{version_anchor(version)}") %> -
    • -<% end %> -
    -<% if @completed_versions.present? %> -

    - <%= link_to_function l(:label_completed_versions), - '$("#toggle-completed-versions").toggleClass("icon-collapsed icon-expended"); $("#completed-versions").toggle()', - :id => 'toggle-completed-versions', :class => 'icon icon-collapsed collapsible' %> -

    -

    -<% end %> -<% end %> - -<% html_title(l(:label_roadmap)) %> - -<%= context_menu %> diff --git a/app/views/versions/new.html.erb b/app/views/versions/new.html.erb deleted file mode 100644 index b52436d..0000000 --- a/app/views/versions/new.html.erb +++ /dev/null @@ -1,6 +0,0 @@ -

    <%=l(:label_version_new)%>

    - -<%= labelled_form_for @version, :url => project_versions_path(@project), :html => {:multipart => true} do |f| %> -<%= render :partial => 'versions/form', :locals => { :f => f } %> -<%= submit_tag l(:button_create) %> -<% end %> diff --git a/app/views/versions/new.js.erb b/app/views/versions/new.js.erb deleted file mode 100644 index 114b9c7..0000000 --- a/app/views/versions/new.js.erb +++ /dev/null @@ -1,2 +0,0 @@ -$('#ajax-modal').html('<%= escape_javascript(render :partial => 'versions/new_modal') %>'); -showModal('ajax-modal', '600px'); diff --git a/app/views/versions/show.api.rsb b/app/views/versions/show.api.rsb deleted file mode 100644 index 2fa0f12..0000000 --- a/app/views/versions/show.api.rsb +++ /dev/null @@ -1,20 +0,0 @@ -api.version do - api.id @version.id - api.project(:id => @version.project_id, :name => @version.project.name) unless @version.project.nil? - - api.name @version.name - api.description @version.description - api.status @version.status - api.due_date @version.effective_date - api.sharing @version.sharing - api.wiki_page_title @version.wiki_page_title - if User.current.allowed_to?(:view_time_entries, @project) - api.estimated_hours(@version.visible_fixed_issues.estimated_hours) - api.spent_hours(@version.spent_hours) - end - - render_api_custom_values @version.visible_custom_field_values, api - - api.created_on @version.created_on - api.updated_on @version.updated_on -end diff --git a/app/views/versions/show.html.erb b/app/views/versions/show.html.erb deleted file mode 100644 index d73485a..0000000 --- a/app/views/versions/show.html.erb +++ /dev/null @@ -1,61 +0,0 @@ -
    -<%= link_to(l(:button_edit), edit_version_path(@version), :class => 'icon icon-edit') if User.current.allowed_to?(:manage_versions, @version.project) %> -<%= link_to_if_authorized(l(:button_edit_associated_wikipage, :page_title => @version.wiki_page_title), {:controller => 'wiki', :action => 'edit', :project_id => @version.project, :id => Wiki.titleize(@version.wiki_page_title)}, :class => 'icon icon-edit') unless @version.wiki_page_title.blank? || @version.project.wiki.nil? %> -<%= delete_link version_path(@version, :back_url => url_for(:controller => 'versions', :action => 'index', :project_id => @version.project)) if User.current.allowed_to?(:manage_versions, @version.project) %> -<%= link_to_new_issue(@version, @project) %> -<%= call_hook(:view_versions_show_contextual, { :version => @version, :project => @project }) %> -
    - -
    -

    <%= @version.name %>

    - <%= l("version_status_#{@version.status}") %> - -<%= render :partial => 'versions/overview', :locals => {:version => @version} %> -<%= render(:partial => "wiki/content", :locals => {:content => @version.wiki_page.content}) if @version.wiki_page %> - -
    -<% if @version.visible_fixed_issues.estimated_hours > 0 || User.current.allowed_to?(:view_time_entries, @project) %> -
    <%= l(:label_time_tracking) %> - - - - - -<% if User.current.allowed_to_view_all_time_entries?(@project) %> - - - - -<% end %> -
    <%= l(:field_estimated_hours) %><%= link_to html_hours(l_hours(@version.visible_fixed_issues.estimated_hours)), - project_issues_path(@version.project, :set_filter => 1, :status_id => '*', :fixed_version_id => @version.id, :c => [:tracker, :status, :subject, :estimated_hours], :t => [:estimated_hours]) %>
    <%= l(:label_spent_time) %><%= link_to html_hours(l_hours(@version.spent_hours)), - project_time_entries_path(@version.project, :set_filter => 1, :"issue.fixed_version_id" => @version.id) %>
    -
    -<% end %> - -
    -<%= render_issue_status_by(@version, params[:status_by]) if @version.fixed_issues.exists? %> -
    -
    - -<% if @issues.present? %> -<%= form_tag({}, :data => {:cm_url => issues_context_menu_path}) do -%> - - - <%- @issues.each do |issue| -%> - - - - - - - <% end %> - -<% end %> -<%= context_menu %> -<% end %> -
    - -<%= call_hook :view_versions_show_bottom, :version => @version %> - -<% html_title @version.name %> diff --git a/app/views/versions/status_by.js.erb b/app/views/versions/status_by.js.erb deleted file mode 100644 index 94e0127..0000000 --- a/app/views/versions/status_by.js.erb +++ /dev/null @@ -1 +0,0 @@ -$('#status_by').html('<%= escape_javascript(render_issue_status_by(@version, params[:status_by])) %>'); diff --git a/app/views/watchers/_new.html.erb b/app/views/watchers/_new.html.erb deleted file mode 100644 index 3bd7953..0000000 --- a/app/views/watchers/_new.html.erb +++ /dev/null @@ -1,31 +0,0 @@ -

    <%= l(:permission_add_issue_watchers) %>

    - -<%= form_tag(watchables.present? ? watchers_path : watchers_append_path, - :remote => true, - :method => :post, - :id => 'new-watcher-form') do %> - - <% if watchables.present? %> - <%= hidden_field_tag 'object_type', watchables.first.class.name.underscore %> - <% watchables.each do |watchable| %> - <%= hidden_field_tag 'object_id[]', watchable.id %> - <% end %> - <% end %> - <%= hidden_field_tag 'project_id', @project.id if @project %> - -

    <%= label_tag 'user_search', l(:label_user_search) %><%= text_field_tag 'user_search', nil %>

    - <%= javascript_tag "observeSearchfield('user_search', 'users_for_watcher', '#{ escape_javascript url_for(:controller => 'watchers', - :action => 'autocomplete_for_user', - :object_type => (watchables.present? ? watchables.first.class.name.underscore : nil), - :object_id => (watchables.present? && watchables.size == 1 ? watchables.first.id : nil), - :project_id => @project) }')" %> - -
    - <%= principals_check_box_tags('watcher[user_ids][]', users) %> -
    - -

    - <%= submit_tag l(:button_add), :name => nil, :onclick => "hideModal(this);" %> - <%= link_to_function l(:button_cancel), "hideModal(this);" %> -

    -<% end %> diff --git a/app/views/watchers/_set_watcher.js.erb b/app/views/watchers/_set_watcher.js.erb deleted file mode 100644 index 4090ef6..0000000 --- a/app/views/watchers/_set_watcher.js.erb +++ /dev/null @@ -1,3 +0,0 @@ -<% selector = ".#{watcher_css(watched)}" %> -$("<%= selector %>").each(function(){$(this).replaceWith("<%= escape_javascript watcher_link(watched, user) %>")}); -$('#watchers').html('<%= escape_javascript(render(:partial => 'watchers/watchers', :locals => {:watched => watched.first})) %>'); diff --git a/app/views/watchers/_watchers.html.erb b/app/views/watchers/_watchers.html.erb deleted file mode 100644 index 2489662..0000000 --- a/app/views/watchers/_watchers.html.erb +++ /dev/null @@ -1,12 +0,0 @@ -<% if User.current.allowed_to?(:add_issue_watchers, watched.project) %> -
    -<%= link_to l(:button_add), - new_watchers_path(:object_type => watched.class.name.underscore, :object_id => watched), - :remote => true, - :method => 'get' %> -
    -<% end %> - -

    <%= l(:label_issue_watchers) %> (<%= watched.watcher_users.size %>)

    - -<%= watchers_list(watched) %> diff --git a/app/views/watchers/append.js.erb b/app/views/watchers/append.js.erb deleted file mode 100644 index 934865d..0000000 --- a/app/views/watchers/append.js.erb +++ /dev/null @@ -1,4 +0,0 @@ -<% @users.each do |user| %> - $("#issue_watcher_user_ids_<%= user.id %>").remove(); -<% end %> -$('#watchers_inputs').append('<%= escape_javascript(watchers_checkboxes(nil, @users, true)) %>'); diff --git a/app/views/watchers/autocomplete_for_user.html.erb b/app/views/watchers/autocomplete_for_user.html.erb deleted file mode 100644 index a24d28e..0000000 --- a/app/views/watchers/autocomplete_for_user.html.erb +++ /dev/null @@ -1 +0,0 @@ -<%= principals_check_box_tags 'watcher[user_ids][]', @users %> diff --git a/app/views/watchers/create.js.erb b/app/views/watchers/create.js.erb deleted file mode 100644 index 7541d20..0000000 --- a/app/views/watchers/create.js.erb +++ /dev/null @@ -1,11 +0,0 @@ -$('#ajax-modal').html( - '<%= escape_javascript( - render(:partial => 'watchers/new', - :locals => {:watchables => @watchables, :users => @users})) %>'); - -<% if @watchables.size == 1 %> - $('#watchers').html( - '<%= escape_javascript( - render(:partial => 'watchers/watchers', - :locals => {:watched => @watchables.first})) %>'); -<% end %> diff --git a/app/views/watchers/destroy.js.erb b/app/views/watchers/destroy.js.erb deleted file mode 100644 index 413797d..0000000 --- a/app/views/watchers/destroy.js.erb +++ /dev/null @@ -1,3 +0,0 @@ -<% if @watchables.size == 1 %> -$('#watchers').html('<%= escape_javascript(render(:partial => 'watchers/watchers', :locals => {:watched => @watchables.first})) %>'); -<% end %> diff --git a/app/views/watchers/new.js.erb b/app/views/watchers/new.js.erb deleted file mode 100644 index a4a91a7..0000000 --- a/app/views/watchers/new.js.erb +++ /dev/null @@ -1,3 +0,0 @@ -$('#ajax-modal').html('<%= escape_javascript(render :partial => 'watchers/new', :locals => {:watchables => @watchables, :users => @users}) %>'); -showModal('ajax-modal', '400px'); -$('#ajax-modal').addClass('new-watcher'); diff --git a/app/views/welcome/index.html.erb b/app/views/welcome/index.html.erb deleted file mode 100644 index 32e338f..0000000 --- a/app/views/welcome/index.html.erb +++ /dev/null @@ -1,28 +0,0 @@ -

    <%= l(:label_home) %>

    - -
    -
    -
    - <%= textilizable Setting.welcome_text %> -
    - <%= call_hook(:view_welcome_index_left) %> -
    - -
    - <% if @news.any? %> -
    -

    <%=l(:label_news_latest)%>

    - <%= render :partial => 'news/news', :collection => @news %> - <%= link_to l(:label_news_view_all), :controller => 'news' %> -
    - <% end %> - <%= call_hook(:view_welcome_index_right) %> -
    -
    - -<% content_for :header_tags do %> -<%= auto_discovery_link_tag(:atom, {:controller => 'news', :action => 'index', :key => User.current.rss_key, :format => 'atom'}, - :title => "#{Setting.app_title}: #{l(:label_news_latest)}") %> -<%= auto_discovery_link_tag(:atom, {:controller => 'activities', :action => 'index', :key => User.current.rss_key, :format => 'atom'}, - :title => "#{Setting.app_title}: #{l(:label_activity)}") %> -<% end %> diff --git a/app/views/welcome/robots.text.erb b/app/views/welcome/robots.text.erb deleted file mode 100644 index 16acc81..0000000 --- a/app/views/welcome/robots.text.erb +++ /dev/null @@ -1,15 +0,0 @@ -User-agent: * -<% @projects.each do |project| -%> -<% [project, project.id].each do |p| -%> -Disallow: <%= url_for(:controller => 'repositories', :action => :show, :id => p) %> -Disallow: <%= url_for(project_issues_path(:project_id => p)) %> -Disallow: <%= url_for(project_activity_path(:id => p)) %> -<% end -%> -<% end -%> -Disallow: <%= url_for(issues_gantt_path) %> -Disallow: <%= url_for(issues_calendar_path) %> -Disallow: <%= url_for(activity_path) %> -Disallow: <%= url_for(search_path) %> -Disallow: <%= url_for(issues_path(:sort => '')) %> -Disallow: <%= url_for(issues_path(:query_id => '')) %> -Disallow: <%= url_for(issues_path) %>?*set_filter= diff --git a/app/views/wiki/_content.html.erb b/app/views/wiki/_content.html.erb deleted file mode 100644 index 60b6a74..0000000 --- a/app/views/wiki/_content.html.erb +++ /dev/null @@ -1,4 +0,0 @@ -
    - <%= textilizable content, :text, :attachments => content.page.attachments, - :edit_section_links => (@sections_editable && {:controller => 'wiki', :action => 'edit', :project_id => @page.project, :id => @page.title}) %> -
    diff --git a/app/views/wiki/_new_modal.html.erb b/app/views/wiki/_new_modal.html.erb deleted file mode 100644 index 108c6ad..0000000 --- a/app/views/wiki/_new_modal.html.erb +++ /dev/null @@ -1,29 +0,0 @@ -

    <%=l(:label_wiki_page_new)%>

    - -<%= labelled_form_for :page, @page, - :url => new_project_wiki_page_path(@project), - :method => 'post', - :remote => true do |f| %> - - <%= render_error_messages @page.errors.full_messages_for(:title) %> - -
    -

    - <%= f.text_field :title, :name => 'title', :size => 60, :required => true %> - <%= l(:text_unallowed_characters) %>: , . / ? ; : | -

    -

    - <% if params[:parent].present? %> - - <% end %> -

    -
    - -

    - <%= submit_tag l(:label_next), :name => nil %> - <%= link_to_function l(:button_cancel), "hideModal(this);" %> -

    -<% end %> diff --git a/app/views/wiki/_sidebar.html.erb b/app/views/wiki/_sidebar.html.erb deleted file mode 100644 index 16e8be1..0000000 --- a/app/views/wiki/_sidebar.html.erb +++ /dev/null @@ -1,16 +0,0 @@ -<% if @wiki && @wiki.sidebar -%> -
    - <%= textilizable @wiki.sidebar.content, :text %> -
    -<% end -%> - -

    <%= l(:label_wiki) %>

    -
      -
    • <%= link_to(l(:field_start_page), {:action => 'show', :id => nil}) %>
    • -
    • <%= link_to(l(:label_index_by_title), {:action => 'index'}) %>
    • -
    • <%= link_to(l(:label_index_by_date), - {:controller => 'wiki', :project_id => @project, - :action => 'date_index'}) %>
    • -
    - -<%= call_hook(:view_wiki_show_sidebar_bottom, :wiki => @wiki, :page => @page) %> diff --git a/app/views/wiki/annotate.html.erb b/app/views/wiki/annotate.html.erb deleted file mode 100644 index 1b48f5d..0000000 --- a/app/views/wiki/annotate.html.erb +++ /dev/null @@ -1,40 +0,0 @@ -
    -<%= link_to(l(:button_edit), {:action => 'edit', :id => @page.title}, :class => 'icon icon-edit') %> -<%= link_to(l(:label_history), - {:action => 'history', :id => @page.title}, :class => 'icon icon-history') %> -
    - -<%= wiki_page_breadcrumb(@page) %> - -<%= title [@page.pretty_title, project_wiki_page_path(@page.project, @page.title, :version => nil)], - [l(:label_history), history_project_wiki_page_path(@page.project, @page.title)], - "#{l(:label_version)} #{@annotate.content.version}" %> - -

    - <%= @annotate.content.author ? link_to_user(@annotate.content.author) : l(:label_user_anonymous) - %>, <%= format_time(@annotate.content.updated_on) %>
    - <%= @annotate.content.comments %> -

    - -<% colors = Hash.new {|k,v| k[v] = (k.size % 12) } %> - - - -<% line_num = 1; prev_version = nil %> -<% @annotate.lines.each do |line| -%> - - - - - - -<% line_num += 1; prev_version = line[0] %> -<% end -%> - -
    <%= line_num %><%= link_to line[0], :controller => 'wiki', - :action => 'show', :project_id => @project, - :id => @page.title, :version => line[0] unless prev_version == line[0] %><%= line[1] unless prev_version == line[0] %>
    <%= line[2] %>
    - -<% content_for :header_tags do %> -<%= stylesheet_link_tag 'scm' %> -<% end %> diff --git a/app/views/wiki/date_index.html.erb b/app/views/wiki/date_index.html.erb deleted file mode 100644 index 274f19a..0000000 --- a/app/views/wiki/date_index.html.erb +++ /dev/null @@ -1,42 +0,0 @@ -
    -<% if User.current.allowed_to?(:edit_wiki_pages, @project) %> -<%= link_to l(:label_wiki_page_new), new_project_wiki_page_path(@project), :remote => true, :class => 'icon icon-add' %> -<% end %> -<%= watcher_link(@wiki, User.current) %> -<% if User.current.allowed_to?(:manage_wiki, @project) %> -<%= link_to l(:button_delete), {:controller => 'wikis', :action => 'destroy', :id => @project}, :class => 'icon icon-del' %> -<% end %> -
    - -

    <%= l(:label_index_by_date) %>

    - -<% if @pages.empty? %> -

    <%= l(:label_no_data) %>

    -<% end %> - -<% @pages_by_date.keys.sort.reverse_each do |date| %> -

    <%= format_date(date) %>

    -
      -<% @pages_by_date[date].each do |page| %> -
    • <%= link_to page.pretty_title, :action => 'show', :id => page.title, :project_id => page.project %>
    • -<% end %> -
    -<% end %> - -<% content_for :sidebar do %> - <%= render :partial => 'sidebar' %> -<% end %> - -<% unless @pages.empty? %> -<% other_formats_links do |f| %> - <%= f.link_to 'Atom', :url => {:controller => 'activities', :action => 'index', :id => @project, :show_wiki_edits => 1, :key => User.current.rss_key} %> - <% if User.current.allowed_to?(:export_wiki_pages, @project) %> - <%= f.link_to('PDF', :url => {:action => 'export', :format => 'pdf'}) %> - <%= f.link_to('HTML', :url => {:action => 'export'}) %> - <% end %> -<% end %> -<% end %> - -<% content_for :header_tags do %> -<%= auto_discovery_link_tag(:atom, :controller => 'activities', :action => 'index', :id => @project, :show_wiki_edits => 1, :format => 'atom', :key => User.current.rss_key) %> -<% end %> diff --git a/app/views/wiki/destroy.html.erb b/app/views/wiki/destroy.html.erb deleted file mode 100644 index d6270b6..0000000 --- a/app/views/wiki/destroy.html.erb +++ /dev/null @@ -1,22 +0,0 @@ -<%= wiki_page_breadcrumb(@page) %> - -

    <%= @page.pretty_title %>

    - -<%= form_tag({}, :method => :delete) do %> -
    -

    <%= l(:text_wiki_page_destroy_question, :descendants => @descendants_count) %>

    -


    - -<% if @reassignable_to.any? %> -
    -: -<%= label_tag "reassign_to_id", l(:description_wiki_subpages_reassign), :class => "hidden-for-sighted" %> -<%= select_tag 'reassign_to_id', wiki_page_options_for_select(@reassignable_to), - :onclick => "$('#todo_reassign').prop('checked', true);" %> -<% end %> -

    -
    - -<%= submit_tag l(:button_apply) %> -<%= link_to l(:button_cancel), :controller => 'wiki', :action => 'show', :project_id => @project, :id => @page.title %> -<% end %> diff --git a/app/views/wiki/diff.html.erb b/app/views/wiki/diff.html.erb deleted file mode 100644 index 765e51a..0000000 --- a/app/views/wiki/diff.html.erb +++ /dev/null @@ -1,27 +0,0 @@ -
    -<%= link_to(l(:label_history), {:action => 'history', :id => @page.title}, - :class => 'icon icon-history') %> -
    - -<%= wiki_page_breadcrumb(@page) %> - -<%= title [@page.pretty_title, project_wiki_page_path(@page.project, @page.title, :version => nil)], - [l(:label_history), history_project_wiki_page_path(@page.project, @page.title)], - "#{l(:label_revision)} #{@diff.content_to.version}" %> - -

    -<%= l(:label_revision) %> <%= link_to @diff.content_from.version, :action => 'show', :id => @page.title, :project_id => @page.project, :version => @diff.content_from.version %> -(<%= @diff.content_from.author ? - @diff.content_from.author.name : l(:label_user_anonymous) - %>, <%= format_time(@diff.content_from.updated_on) %>) -→ -<%= l(:label_revision) %> <%= link_to @diff.content_to.version, :action => 'show', - :id => @page.title, :project_id => @page.project, - :version => @diff.content_to.version - %>/<%= @page.content.version %> -(<%= @diff.content_to.author ? - link_to_user(@diff.content_to.author.name) : l(:label_user_anonymous) - %>, <%= format_time(@diff.content_to.updated_on) %>) -

    - -
    <%= @diff.to_html %>
    diff --git a/app/views/wiki/edit.html.erb b/app/views/wiki/edit.html.erb deleted file mode 100644 index 0e1c23c..0000000 --- a/app/views/wiki/edit.html.erb +++ /dev/null @@ -1,74 +0,0 @@ -<%= wiki_page_breadcrumb(@page) %> - -

    <%= @page.pretty_title %>

    - -<%= form_for @content, :as => :content, - :url => {:action => 'update', :id => @page.title}, - :html => {:method => :put, :multipart => true, :id => 'wiki_form'} do |f| %> -<%= f.hidden_field :version %> -<% if @section %> -<%= hidden_field_tag 'section', @section %> -<%= hidden_field_tag 'section_hash', @section_hash %> -<% end %> -<%= error_messages_for 'content' %> - -
    -<%= text_area_tag 'content[text]', @text, :cols => 100, :rows => 25, :accesskey => accesskey(:edit), - :class => 'wiki-edit', - :data => { - :auto_complete => true, - :issues_url => auto_complete_issues_path(:project_id => @project, :q => '') - } -%> - -<% if @page.safe_attribute_names.include?('parent_id') && @wiki.pages.any? %> - <%= fields_for @page do |fp| %> -

    - - <%= fp.select :parent_id, - content_tag('option', '', :value => '') + - wiki_page_options_for_select( - @wiki.pages.includes(:parent).to_a - - @page.self_and_descendants, @page.parent) %> -

    - <% end %> -<% end %> - -

    <%= f.text_field :comments, :size => 120, :maxlength => 1024 %>

    -
    -<%=l(:label_attachment_plural)%> -<% if @page.attachments.any? && @page.safe_attribute?('deleted_attachment_ids') %> -
    <%= link_to l(:label_edit_attachments), '#', :onclick => "$('#existing-attachments').toggle(); return false;" %>
    -
    - <% @page.attachments.each do |attachment| %> - - <%= text_field_tag '', attachment.filename, :class => "icon icon-attachment filename", :disabled => true %> - - - <% end %> -
    -
    -<% end %> -
    - <%= render :partial => 'attachments/form' %> -
    -
    -
    - -

    - <%= submit_tag l(:button_save) %> - <%= link_to l(:button_cancel), wiki_page_edit_cancel_path(@page) %> -

    -<%= wikitoolbar_for 'content_text', preview_project_wiki_page_path(:project_id => @project, :id => @page.title) %> -<% end %> - -<% content_for :header_tags do %> - <%= robot_exclusion_tag %> -<% end %> - -<% html_title @page.pretty_title %> diff --git a/app/views/wiki/export.html.erb b/app/views/wiki/export.html.erb deleted file mode 100644 index e3c76fe..0000000 --- a/app/views/wiki/export.html.erb +++ /dev/null @@ -1,21 +0,0 @@ - - - -<%= @page.pretty_title %> - - - - -<%= textilizable @content, :text, :wiki_links => :local, :only_path => false %> - - diff --git a/app/views/wiki/export.pdf.erb b/app/views/wiki/export.pdf.erb deleted file mode 100644 index 84d596a..0000000 --- a/app/views/wiki/export.pdf.erb +++ /dev/null @@ -1 +0,0 @@ -<%= raw wiki_pages_to_pdf(@pages, @project) %> \ No newline at end of file diff --git a/app/views/wiki/export_multiple.html.erb b/app/views/wiki/export_multiple.html.erb deleted file mode 100644 index 6a9cf0f..0000000 --- a/app/views/wiki/export_multiple.html.erb +++ /dev/null @@ -1,30 +0,0 @@ - - - -<%= @wiki.project.name %> - - - - - -<%= l(:label_index_by_title) %> -<%= render_page_hierarchy(@pages.group_by(&:parent_id), nil, :timestamp => true) %> - -<% @pages.each do |page| %> -
    - -<%= textilizable page.content ,:text, :wiki_links => :anchor, :only_path => false %> -<% end %> - - - diff --git a/app/views/wiki/history.html.erb b/app/views/wiki/history.html.erb deleted file mode 100644 index 3e638a8..0000000 --- a/app/views/wiki/history.html.erb +++ /dev/null @@ -1,45 +0,0 @@ -<%= wiki_page_breadcrumb(@page) %> - -<%= title [@page.pretty_title, project_wiki_page_path(@page.project, @page.title, :version => nil)], l(:label_history) %> - -<%= form_tag({:controller => 'wiki', :action => 'diff', - :project_id => @page.project, :id => @page.title}, - :method => :get) do %> -<% show_diff = @versions.size > 1 %> -<% if show_diff %> -

    <%= submit_tag l(:label_view_diff) %>

    -<% end %> - - - - - - - - - - - -<% line_num = 1 %> -<% @versions.each do |ver| %> - - - - - - - - - -<% line_num += 1 %> -<% end %> - -
    #<%= l(:field_updated_on) %><%= l(:field_author) %><%= l(:field_comments) %>
    <%= link_to ver.version, :action => 'show', :id => @page.title, :project_id => @page.project, :version => ver.version %><%= radio_button_tag('version', ver.version, (line_num==1), :id => "cb-#{line_num}", :onclick => "$('#cbto-#{line_num+1}').prop('checked', true);") if show_diff && (line_num < @versions.size) %><%= radio_button_tag('version_from', ver.version, (line_num==2), :id => "cbto-#{line_num}") if show_diff && (line_num > 1) %><%= format_time(ver.updated_on) %><%= link_to_user ver.author %><%= ver.comments %> - <%= link_to l(:button_annotate), :action => 'annotate', :id => @page.title, :version => ver.version %> - <%= delete_link wiki_page_path(@page, :version => ver.version) if User.current.allowed_to?(:delete_wiki_pages, @page.project) && @version_count > 1 %> -
    -<% if show_diff %> -

    <%= submit_tag l(:label_view_diff) %>

    -<% end %> -<%= pagination_links_full @version_pages, @version_count %> -<% end %> diff --git a/app/views/wiki/index.api.rsb b/app/views/wiki/index.api.rsb deleted file mode 100644 index f1035c8..0000000 --- a/app/views/wiki/index.api.rsb +++ /dev/null @@ -1,13 +0,0 @@ -api.array :wiki_pages do - @pages.each do |page| - api.wiki_page do - api.title page.title - if page.parent - api.parent :title => page.parent.title - end - api.version page.version - api.created_on page.created_on - api.updated_on page.updated_on - end - end -end diff --git a/app/views/wiki/index.html.erb b/app/views/wiki/index.html.erb deleted file mode 100644 index bb60868..0000000 --- a/app/views/wiki/index.html.erb +++ /dev/null @@ -1,41 +0,0 @@ -
    -<% if User.current.allowed_to?(:edit_wiki_pages, @project) %> -<%= link_to l(:label_wiki_page_new), new_project_wiki_page_path(@project), :remote => true, :class => 'icon icon-add' %> -<% end %> -<%= watcher_link(@wiki, User.current) %> -<% if User.current.allowed_to?(:manage_wiki, @project) %> -<%= link_to l(:button_delete), {:controller => 'wikis', :action => 'destroy', :id => @project}, :class => 'icon icon-del' %> -<% end %> -
    - -

    <%= l(:label_index_by_title) %>

    - -<% if @pages.empty? %> -

    <%= l(:label_no_data) %>

    -<% end %> - -<%= render_page_hierarchy(@pages_by_parent_id, nil, :timestamp => true) %> - -<% content_for :sidebar do %> - <%= render :partial => 'sidebar' %> -<% end %> - -<% unless @pages.empty? %> -<% other_formats_links do |f| %> - <%= f.link_to 'Atom', - :url => {:controller => 'activities', :action => 'index', - :id => @project, :show_wiki_edits => 1, - :key => User.current.rss_key} %> - <% if User.current.allowed_to?(:export_wiki_pages, @project) %> - <%= f.link_to('PDF', :url => {:action => 'export', :format => 'pdf'}) %> - <%= f.link_to('HTML', :url => {:action => 'export'}) %> - <% end %> -<% end %> -<% end %> - -<% content_for :header_tags do %> -<%= auto_discovery_link_tag( - :atom, :controller => 'activities', :action => 'index', - :id => @project, :show_wiki_edits => 1, :format => 'atom', - :key => User.current.rss_key) %> -<% end %> diff --git a/app/views/wiki/new.html.erb b/app/views/wiki/new.html.erb deleted file mode 100644 index d067420..0000000 --- a/app/views/wiki/new.html.erb +++ /dev/null @@ -1,17 +0,0 @@ -<%= title l(:label_wiki_page_new) %> - -<%= labelled_form_for :page, @page, - :url => new_project_wiki_page_path(@project) do |f| %> - - <%= render_error_messages @page.errors.full_messages_for(:title) %> - -
    -

    - <%= f.text_field :title, :name => 'title', :size => 60, :required => true %> - <%= l(:text_unallowed_characters) %>: , . / ? ; : | -

    -
    - - <%= submit_tag(l(:label_next)) %> - -<% end %> diff --git a/app/views/wiki/new.js.erb b/app/views/wiki/new.js.erb deleted file mode 100644 index c12b353..0000000 --- a/app/views/wiki/new.js.erb +++ /dev/null @@ -1,2 +0,0 @@ -$('#ajax-modal').html('<%= escape_javascript(render :partial => 'wiki/new_modal') %>'); -showModal('ajax-modal', '600px'); diff --git a/app/views/wiki/rename.html.erb b/app/views/wiki/rename.html.erb deleted file mode 100644 index 13fb41a..0000000 --- a/app/views/wiki/rename.html.erb +++ /dev/null @@ -1,38 +0,0 @@ -<%= wiki_page_breadcrumb(@page) %> - -

    <%= @original_title %>

    - -<%= error_messages_for 'page' %> - -<%= labelled_form_for :wiki_page, @page, - :url => { :action => 'rename' }, - :html => { :method => :post } do |f| %> -
    -

    <%= f.text_field :title, :required => true, :size => 100 %>

    -<% if @page.safe_attribute? 'is_start_page' %> -

    <%= f.check_box :is_start_page, :label => :field_start_page, :disabled => @page.is_start_page %>

    -<% end %> -

    <%= f.check_box :redirect_existing_links %>

    -<% if @page.safe_attribute? 'wiki_id' %> -

    <%= f.select :wiki_id, wiki_page_wiki_options_for_select(@page), :label => :label_project %>

    -<% end %> -

    <%= f.select :parent_id, - content_tag('option', '', :value => '') + - wiki_page_options_for_select( - @wiki.pages.includes(:parent).to_a - @page.self_and_descendants, - @page.parent), - :label => :field_parent_title %>

    - -
    -<%= submit_tag l(:button_rename) %> -<% end %> - -<%= javascript_tag do %> -$('#wiki_page_wiki_id').change(function() { - $.ajax({ - url: '<%= rename_project_wiki_page_path(@wiki, :format => 'js') %>', - type: 'get', - data: { 'wiki_page[wiki_id]': $('#wiki_page_wiki_id').val() } - }); -}); -<% end %> diff --git a/app/views/wiki/show.api.rsb b/app/views/wiki/show.api.rsb deleted file mode 100644 index 6165a94..0000000 --- a/app/views/wiki/show.api.rsb +++ /dev/null @@ -1,18 +0,0 @@ -api.wiki_page do - api.title @page.title - if @page.parent - api.parent :title => @page.parent.title - end - api.text @content.text - api.version @content.version - api.author(:id => @content.author_id, :name => @content.author.name) unless @content.author_id.nil? - api.comments @content.comments - api.created_on @page.created_on - api.updated_on @content.updated_on - - api.array :attachments do - @page.attachments.each do |attachment| - render_api_attachment(attachment, api) - end - end if include_in_api_response?('attachments') -end diff --git a/app/views/wiki/show.pdf.erb b/app/views/wiki/show.pdf.erb deleted file mode 100644 index b1f738d..0000000 --- a/app/views/wiki/show.pdf.erb +++ /dev/null @@ -1 +0,0 @@ -<%= raw wiki_page_to_pdf(@page, @project) %> \ No newline at end of file diff --git a/app/views/wikis/destroy.html.erb b/app/views/wikis/destroy.html.erb deleted file mode 100644 index d996da5..0000000 --- a/app/views/wikis/destroy.html.erb +++ /dev/null @@ -1,12 +0,0 @@ -

    <%=l(:label_confirmation)%>

    - -
    -

    <%= @project.name %>
    <%=l(:text_wiki_destroy_confirmation)%>

    -
    - -<%= form_tag({:controller => 'wikis', :action => 'destroy', :id => @project}) do %> - <%= hidden_field_tag "confirm", 1 %> - <%= submit_tag l(:button_delete) %> - <%= link_to l(:button_cancel), :back %> -<% end %> - diff --git a/app/views/wikis/edit.js.erb b/app/views/wikis/edit.js.erb deleted file mode 100644 index 2c765d1..0000000 --- a/app/views/wikis/edit.js.erb +++ /dev/null @@ -1 +0,0 @@ -$('#tab-content-wiki').html('<%= escape_javascript(render :partial => 'projects/settings/wiki') %>'); diff --git a/app/views/workflows/_action_menu.html.erb b/app/views/workflows/_action_menu.html.erb deleted file mode 100644 index 6961b27..0000000 --- a/app/views/workflows/_action_menu.html.erb +++ /dev/null @@ -1,4 +0,0 @@ -
    -<%= link_to l(:button_copy), {:action => 'copy'}, :class => 'icon icon-copy' %> -<%= link_to l(:field_summary), {:action => 'index'}, :class => 'icon icon-summary' %> -
    diff --git a/app/views/workflows/_form.html.erb b/app/views/workflows/_form.html.erb deleted file mode 100644 index d565a02..0000000 --- a/app/views/workflows/_form.html.erb +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - - <% for new_status in @statuses %> - - <% end %> - - -<% transition_counts = workflows.each_with_object(Hash.new(0)) {|w,memo| memo[[w.old_status, w.new_status]] += 1} %> - - <% for old_status in [nil] + @statuses %> - <% next if old_status.nil? && name != 'always' %> - - - <% for new_status in @statuses -%> - <% checked = (old_status == new_status) || (transition_counts[[old_status, new_status]] > 0) %> - - <% end -%> - - <% end %> - -
    - <%= link_to_function('', "toggleCheckboxesBySelector('table.transitions-#{name} input[type=checkbox]:not(:disabled)')", - :title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}", - :class => 'no-tooltip icon-only icon-checked') %> - <%=l(:label_current_status)%> - <%=l(:label_new_statuses_allowed)%>
    - <%= link_to_function('', "toggleCheckboxesBySelector('table.transitions-#{name} input[type=checkbox]:not(:disabled).new-status-#{new_status.id}')", - :title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}", - :class => 'no-tooltip icon-only icon-checked') %> - <%= new_status.name %> -
    - <%= link_to_function('', "toggleCheckboxesBySelector('table.transitions-#{name} input[type=checkbox]:not(:disabled).old-status-#{old_status.try(:id) || 0}')", - :title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}", - :class => 'no-tooltip icon-only icon-checked') %> - <% if old_status %> - <% old_status_name = old_status.name %> - <%= old_status_name %> - <% else %> - <% old_status_name = l(:label_issue_new) %> - <%= content_tag('em', old_status_name) %> - <% end %> - - <%= transition_tag transition_counts[[old_status, new_status]], old_status, new_status, name %> -
    diff --git a/app/views/workflows/copy.html.erb b/app/views/workflows/copy.html.erb deleted file mode 100644 index 78997ca..0000000 --- a/app/views/workflows/copy.html.erb +++ /dev/null @@ -1,38 +0,0 @@ -<%= title [l(:label_workflow), workflows_edit_path], l(:button_copy) %> - -<%= form_tag({}, :id => 'workflow_copy_form') do %> -
    -<%= l(:label_copy_source) %> -

    - - <%= select_tag('source_tracker_id', - content_tag('option', "--- #{l(:actionview_instancetag_blank_option)} ---", :value => '') + - content_tag('option', "--- #{ l(:label_copy_same_as_target) } ---", :value => 'any') + - options_from_collection_for_select(@trackers, 'id', 'name', @source_tracker && @source_tracker.id)) %> -

    -

    - - <%= select_tag('source_role_id', - content_tag('option', "--- #{l(:actionview_instancetag_blank_option)} ---", :value => '') + - content_tag('option', "--- #{ l(:label_copy_same_as_target) } ---", :value => 'any') + - options_from_collection_for_select(@roles, 'id', 'name', @source_role && @source_role.id)) %> -

    -
    - -
    -<%= l(:label_copy_target) %> -

    - - <%= select_tag 'target_tracker_ids', - content_tag('option', "--- #{l(:actionview_instancetag_blank_option)} ---", :value => '', :disabled => true) + - options_from_collection_for_select(@trackers, 'id', 'name', @target_trackers && @target_trackers.map(&:id)), :multiple => true %> -

    -

    - - <%= select_tag 'target_role_ids', - content_tag('option', "--- #{l(:actionview_instancetag_blank_option)} ---", :value => '', :disabled => true) + - options_from_collection_for_select(@roles, 'id', 'name', @target_roles && @target_roles.map(&:id)), :multiple => true %> -

    -
    -<%= submit_tag l(:button_copy) %> -<% end %> diff --git a/app/views/workflows/edit.html.erb b/app/views/workflows/edit.html.erb deleted file mode 100644 index 3f3e3c2..0000000 --- a/app/views/workflows/edit.html.erb +++ /dev/null @@ -1,77 +0,0 @@ -<%= render :partial => 'action_menu' %> - -<%= title l(:label_workflow) %> - -
    -
      -
    • <%= link_to l(:label_status_transitions), workflows_edit_path(:role_id => @roles, :tracker_id => @trackers), :class => 'selected' %>
    • -
    • <%= link_to l(:label_fields_permissions), workflows_permissions_path(:role_id => @roles, :tracker_id => @trackers) %>
    • -
    -
    - -

    <%=l(:text_workflow_edit)%>:

    - -<%= form_tag({}, :method => 'get') do %> -

    - - - - - - - <%= submit_tag l(:button_edit), :name => nil %> - - <%= hidden_field_tag 'used_statuses_only', '0', :id => nil %> - - -

    -<% end %> - -<% if @trackers && @roles && @statuses.any? %> - <%= form_tag({}, :id => 'workflow_form' ) do %> - <%= @trackers.map {|tracker| hidden_field_tag 'tracker_id[]', tracker.id, :id => nil}.join.html_safe %> - <%= @roles.map {|role| hidden_field_tag 'role_id[]', role.id, :id => nil}.join.html_safe %> - <%= hidden_field_tag 'used_statuses_only', params[:used_statuses_only], :id => nil %> -
    - <%= render :partial => 'form', :locals => {:name => 'always', :workflows => @workflows['always']} %> - -
    - <%= l(:label_additional_workflow_transitions_for_author) %> -
    - <%= render :partial => 'form', :locals => {:name => 'author', :workflows => @workflows['author']} %> -
    -
    - <%= javascript_tag "hideFieldset($('#author_workflows'))" unless @workflows['author'].present? %> - -
    - <%= l(:label_additional_workflow_transitions_for_assignee) %> -
    - <%= render :partial => 'form', :locals => {:name => 'assignee', :workflows => @workflows['assignee']} %> -
    -
    - <%= javascript_tag "hideFieldset($('#assignee_workflows'))" unless @workflows['assignee'].present? %> -
    - <%= submit_tag l(:button_save) %> - <% end %> -<% end %> - -<%= javascript_tag do %> -$("a[data-expands]").click(function(e){ - e.preventDefault(); - var target = $($(this).attr("data-expands")); - if (target.attr("multiple")) { - $(this).find('span').switchClass('icon-toggle-minus', 'icon-toggle-plus'); - target.attr("multiple", false); - target.find("option[value=all]").show(); - } else { - $(this).find('span').switchClass('icon-toggle-plus', 'icon-toggle-minus'); - target.attr("multiple", true); - target.find("option[value=all]").attr("selected", false).hide(); - } -}); - -<% end %> diff --git a/app/views/workflows/index.html.erb b/app/views/workflows/index.html.erb deleted file mode 100644 index 66785a4..0000000 --- a/app/views/workflows/index.html.erb +++ /dev/null @@ -1,35 +0,0 @@ -<%= title [l(:label_workflow), workflows_edit_path], l(:field_summary) %> - -<% if @roles.empty? || @trackers.empty? %> -

    <%= l(:label_no_data) %>

    -<% else %> -
    - - - - - <% @roles.each do |role| %> - - <% end %> - - - -<% @trackers.each do |tracker| -%> - - - <% @roles.each do |role| -%> - <% count = @workflow_counts[[tracker.id, role.id]] || 0 %> - - <% end -%> - -<% end -%> - -
    - <%= content_tag(role.builtin? ? 'em' : 'span', role.name) %> -
    <%= tracker.name %> - <%= link_to((count > 0 ? count : content_tag(:span, nil, :class => 'icon-only icon-not-ok')), - {:action => 'edit', :role_id => role, :tracker_id => tracker}, - :title => l(:button_edit)) %> -
    -
    -<% end %> diff --git a/app/views/workflows/permissions.html.erb b/app/views/workflows/permissions.html.erb deleted file mode 100644 index 66c8f28..0000000 --- a/app/views/workflows/permissions.html.erb +++ /dev/null @@ -1,125 +0,0 @@ -<%= render :partial => 'action_menu' %> - -<%= title l(:label_workflow) %> - -
    -
      -
    • <%= link_to l(:label_status_transitions), workflows_edit_path(:role_id => @roles, :tracker_id => @trackers) %>
    • -
    • <%= link_to l(:label_fields_permissions), workflows_permissions_path(:role_id => @roles, :tracker_id => @trackers), :class => 'selected' %>
    • -
    -
    - -

    <%=l(:text_workflow_edit)%>:

    - -<%= form_tag({}, :method => 'get') do %> -

    - - - - - - - <%= submit_tag l(:button_edit), :name => nil %> - - <%= hidden_field_tag 'used_statuses_only', '0', :id => nil %> - -

    -<% end %> - -<% if @trackers && @roles && @statuses.any? %> - <%= form_tag({}, :id => 'workflow_form' ) do %> - <%= @trackers.map {|tracker| hidden_field_tag 'tracker_id[]', tracker.id, :id => nil}.join.html_safe %> - <%= @roles.map {|role| hidden_field_tag 'role_id[]', role.id, :id => nil}.join.html_safe %> - <%= hidden_field_tag 'used_statuses_only', params[:used_statuses_only], :id => nil %> -
    - - - - - - - - - <% for status in @statuses %> - - <% end %> - - - - - - - <% @fields.each do |field, name| %> - - - <% for status in @statuses -%> - - <% end -%> - - <% end %> - <% if @custom_fields.any? %> - - - - <% @custom_fields.each do |field| %> - - - <% for status in @statuses -%> - - <% end -%> - - <% end %> - <% end %> - -
    - <%=l(:label_issue_status)%>
    - <%= status.name %> -
    -   - <%= l(:field_core_fields) %> -
    - <%= name %> <%= content_tag('span', '*', :class => 'required') if field_required?(field) %> - - <%= field_permission_tag(@permissions, status, field, @roles) %> - <% unless status == @statuses.last %>»<% end %> -
    -   - <%= l(:label_custom_field_plural) %> -
    - <%= field.name %> <%= content_tag('span', '*', :class => 'required') if field_required?(field) %> - - <%= field_permission_tag(@permissions, status, field, @roles) %> - <% unless status == @statuses.last %>»<% end %> -
    -
    - <%= submit_tag l(:button_save) %> - <% end %> -<% end %> - -<%= javascript_tag do %> -$("a.repeat-value").click(function(e){ - e.preventDefault(); - var td = $(this).closest('td'); - var selected = td.find("select").find(":selected").val(); - td.nextAll('td').find("select").val(selected); -}); - -$("a[data-expands]").click(function(e){ - e.preventDefault(); - var target = $($(this).attr("data-expands")); - if (target.attr("multiple")) { - $(this).find('span').switchClass('icon-toggle-minus', 'icon-toggle-plus'); - target.attr("multiple", false); - target.find("option[value=all]").show(); - } else { - $(this).find('span').switchClass('icon-toggle-plus', 'icon-toggle-minus'); - target.attr("multiple", true); - target.find("option[value=all]").attr("selected", false).hide(); - } -}); - -<% end %> diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index c5818a6..0000000 --- a/appveyor.yml +++ /dev/null @@ -1,37 +0,0 @@ -# Redmine runs tests on own continuous integration server. -# http://www.redmine.org/projects/redmine/wiki/Continuous_integration -# You can also run tests on your environment. - -install: - - SET PATH=C:\Ruby%ruby_version%\bin;%PATH% - - ruby --version - - gem --version - - git --version - - hg --version - - chcp - -build: off - -test_script: - - bundle install --without minimagick - - set SCMS=mercurial - - set RUN_ON_NOT_OFFICIAL= - - set RUBY_VER=1.9 - - set BRANCH=trunk - - bundle exec rake config/database.yml - - bundle install - - bundle exec rake ci:setup - - bundle exec rake test - -environment: - global: - RAILS_ENV: test - DATABASE_ADAPTER: sqlite3 - matrix: - - ruby_version: "193" - - ruby_version: "200" - - ruby_version: "200-x64" - - ruby_version: "21" - - ruby_version: "21-x64" - - ruby_version: "22" - - ruby_version: "22-x64" diff --git a/bin/about b/bin/about deleted file mode 100755 index cfec3b4..0000000 --- a/bin/about +++ /dev/null @@ -1,6 +0,0 @@ -#!/usr/bin/env ruby - -ENV["RAILS_ENV"] ||= "production" -require File.expand_path(File.dirname(__FILE__) + "/../config/environment") -puts -puts Redmine::Info.environment diff --git a/bin/bundle b/bin/bundle deleted file mode 100755 index a169c9d..0000000 --- a/bin/bundle +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env ruby - -ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) -load Gem.bin_path('bundler', 'bundle') diff --git a/bin/changelog.rb b/bin/changelog.rb deleted file mode 100644 index 2e17f22..0000000 --- a/bin/changelog.rb +++ /dev/null @@ -1,337 +0,0 @@ -#!/usr/bin/env ruby -require 'optparse' -require 'ostruct' -require 'date' - -VERSION = '1.0.0' - -ARGV << '-h' if ARGV.empty? - -class OptionsParser - def self.parse(args) - options = OpenStruct.new - options.version_name = '' - options.release_date = '' - options.new_branch = 'auto' - - opt_parser = OptionParser.new do |opts| - opts.banner = 'Usage: changelog_generator.rb [options]' - - opts.separator '' - opts.separator 'Required specific options:' - - opts.on('-i', '--version_id VERSIONID', - 'Numerical id of the version [int]') do |i| - options.version_id = i - end - - opts.separator '' - opts.separator 'Optional specific options:' - - opts.on('-n', '--version_name VERSIONNAME', - 'Name of the version [string]') do |n| - options.version_name = n - end - opts.on('-d', '--release_date RELEASEDATE', - 'Date of the release [string: YYYY-MM-DD]') do |d| - options.release_date = d - end - opts.on('-b', '--new_branch NEWBRANCH', - 'New release branch indicator [string: true/false/auto (default)]') do |b| - options.new_branch = b - end - - opts.separator '' - opts.separator 'Common options:' - - opts.on_tail('-h', '--help', 'Prints this help') do - puts opts - exit - end - - opts.on_tail('-v', '--version', 'Show version') do - puts VERSION - exit - end - end - - opt_parser.parse!(args) - options - end -end - -# Gracely handle missing required options -begin - options = OptionsParser.parse(ARGV) - required = [:version_id] - missing = required.select{ |param| options[param].nil? } - unless missing.empty? - raise OptionParser::MissingArgument.new(missing.join(', ')) - end -rescue OptionParser::ParseError => e - puts e - exit -end - -# Extract options values into global variables -$v_id = options[:version_id] -$v_name = options[:version_name] -$r_date = options[:release_date] -$n_branch = options[:new_branch] - -module Redmine - module ChangelogGenerator - require 'nokogiri' - require 'open-uri' - - @v_id = $v_id - @v_name = $v_name - @r_date = $r_date - @n_branch = $n_branch - - ISSUES_URL = 'http://www.redmine.org/projects/redmine/issues' + - '?utf8=%E2%9C%93&set_filter=1' + - '&f%5B%5D=status_id&op%5Bstatus_id%5D=*' + - '&f%5B%5D=fixed_version_id&op%5Bfixed_version_id%5D=%3D' + - '&v%5Bfixed_version_id%5D%5B%5D=' + @v_id + - '&f%5B%5D=&c%5B%5D=tracker&c%5B%5D=subject' + - '&c%5B%5D=category&group_by=' - VERSIONS_URL = 'http://www.redmine.org/versions/' + @v_id - - PAGINATION_ITEMS_SPAN_SELECTOR = 'div#content p.pagination > span.items' - ISSUE_TR_SELECTOR = 'div#content table.list.issues > tbody > tr' - VERSION_DETAILS_SELECTOR = 'div#content' - VERSION_NAME_SELECTOR = 'div#content > h2' - RELEASE_DATE_SELECTOR = 'div#content > div#roadmap > p' - - PAGINATION_ITEMS_SPAN_REGEX = %r{(?:[(])([\d]+)(?:-)([\d]+)(?:[\/])([\d]+)(?:[)])} - RELEASE_DATE_REGEX_INCOMPLETE = %r{\((\d{4}-\d{2}-\d{2})\)} - RELEASE_DATE_REGEX_COMPLETE = %r{^(\d{4}-\d{2}-\d{2})} - VERSION_REGEX = %r{^(\d+)(?:\.(\d+))?(?:\.(\d+))?} - - CONNECTION_ERROR_MSG = "Connection error: couldn't retrieve data from " + - "https://www.redmine.org.\n" + - "Please try again later..." - - class << self - def generate - parse_pagination_items_span_content - get_changelog_items(@no_of_pages) - sort_changelog_items - build_output(@changelog_items, @no_of_issues, version_name, release_date, - new_branch?, 'packaged_file') - build_output(@changelog_items, @no_of_issues, version_name, release_date, - new_branch?, 'website') - end - - def parse_pagination_items_span_content - items_span = retrieve_pagination_items_span_content - items_span = items_span.match(PAGINATION_ITEMS_SPAN_REGEX) - - items_per_page = items_span[2].to_i - @no_of_issues = items_span[3].to_i - - begin - raise if items_per_page == 0 || @no_of_issues == 0 - rescue => e - puts "No changelog items to process.\n" + - "Make sure to provide a valid version id as the -i parameter." - exit - end - - @no_of_pages = @no_of_issues / items_per_page - @no_of_pages += 1 if @no_of_issues % items_per_page > 0 - end - - def retrieve_pagination_items_span_content - begin - Nokogiri::HTML(open(ISSUES_URL)).css(PAGINATION_ITEMS_SPAN_SELECTOR).text - rescue OpenURI::HTTPError - puts CONNECTION_ERROR_MSG - exit - end - end - - def get_changelog_items(no_of_pages) - # Initialize @changelog_items hash - # - # We'll store categories as hash keys and issues, as nested - # hashes, in nested arrays as the hash'es values: - # - # {"categoryX"=> - # [{"id"=>1, "tracker"=>"tracker1", "subject"=>"subject1"}, - # {"id"=>2, "tracker"=>"tracker2", "subject"=>"subject2"}], - # "categoryY"=> - # [{"id"=>3, "tracker"=>"tracker3", "subject"=>"subject3"}, - # {"id"=>4, "tracker"=>"tracker4", "subject"=>"subject4"}]} - # - @changelog_items = Hash.new - - (1..no_of_pages).each do |page_number| - page = retrieve_issues_list_page(page_number) - page_trs = page.css(ISSUE_TR_SELECTOR).to_a - store_changelog_items(page_trs) - end - end - - def retrieve_issues_list_page(page_number) - begin - Nokogiri::HTML(open(ISSUES_URL + '&page=' + page_number.to_s)) - rescue OpenURI::HTTPError - puts CONNECTION_ERROR_MSG - exit - end - end - - def store_changelog_items(page_trs) - page_trs.each do |tr| - cat = tr.css('td.category').text - unless @changelog_items.keys.include?(cat) - @changelog_items.store(cat, []) - end - - issue_hash = { 'id' => tr.css('td.id > a').text.to_i, - 'tracker' => tr.css('td.tracker').text, - 'subject' => tr.css('td.subject> a').text.strip } - @changelog_items[cat].push(issue_hash) - end - end - - # Sort the changelog items hash - def sort_changelog_items - # Sort changelog items hash values; first by tracker, then by id - @changelog_items.each do |key, value| - @changelog_items[key] = value.sort_by{ |a| [a['tracker'], a['id']] } - end - # Sort changelog items hash keys; by category - @changelog_items = @changelog_items.sort - end - - def version_name - @v_name.empty? ? (@version_name || parse_version_name) : @v_name - end - - def parse_version_name - version_details = retrieve_version_details - @version_name = version_details.css(VERSION_NAME_SELECTOR).text - end - - def release_date - @r_date.empty? ? (@release_date || Date.today.strftime("%Y-%m-%d")) : @r_date - end - - def retrieve_version_details - begin - Nokogiri::HTML(open(VERSIONS_URL)).css(VERSION_DETAILS_SELECTOR) - rescue OpenURI::HTTPError - puts CONNECTION_ERROR_MSG - exit - end - end - - def new_branch? - @new_branch.nil? ? parse_new_branch : @new_branch - end - - def parse_new_branch - @version_name =~ VERSION_REGEX - version = Array.new([$1, $2, $3]) - - case @n_branch - when 'auto' - # New branch version detection logic: - # - # [x.x.0] => true - # [x.x.>0] => false - # [x.x] => true - # [x] => true - # - if (version[2] != nil && version[2] == '0') || - (version[2] == nil && version[1] != nil) || - (version[2] == nil && version[1] == nil && version[0] != nil) - new_branch = true - end - when 'true' - new_branch = true - when 'false' - new_branch = false - end - @new_branch = new_branch - end - - # Build and write the changelog file - def build_output(items, no_of_issues, v_name, r_date, n_branch, target) - target = target - - output_filename = v_name + '_changelog_for_' + target + '.txt' - out_file = File.new(output_filename, 'w') - - # Categories counter - c_cnt = 0 - # Issues with category counter - i_cnt = 0 - # Issues without category counter - nc_i_cnt = 0 - - if target == 'packaged_file' - out_file << "== #{r_date} v#{v_name}\n\n" - elsif target == 'website' - out_file << "h1. Changelog #{v_name}\n\n" if n_branch == true - out_file << "h2. version:#{v_name} (#{r_date})\n\n" - end - - # Print the categories... - items.each do |key, values| - key = key.empty? ? '-none-' : key - - if target == 'packaged_file' - out_file << "=== [#{key}]\n" - elsif target == 'website' - out_file << "h3. [#{key}]\n" - end - out_file << "\n" - (c_cnt += 1) unless key == '-none-' - - # ...and their associated issues - values.each do |val| - out_file << "* #{val['tracker']} ##{val['id']}: #{val['subject']}\n" - key == '-none-' ? (nc_i_cnt += 1) : (i_cnt += 1) - end - out_file << "\n" - end - - summary(v_name, target, i_cnt, nc_i_cnt, no_of_issues, c_cnt) - - out_file.close - end - - def summary(v_name, target, i_cnt, nc_i_cnt, no_of_issues, c_cnt) - summary = (('-' * 72) + "\n") - summary << "Generation of the #{v_name} changelog for '#{target}' has " + - "#{result_label(i_cnt, nc_i_cnt, no_of_issues)}:\n" - summary << "* #{i_cnt} #{issue_label(i_cnt)} within #{c_cnt} issue " + - "#{category_label(c_cnt)}\n" - if nc_i_cnt > 0 - summary << "* #{nc_i_cnt} #{issue_label(nc_i_cnt)} without issue category\n" - end - puts summary - return summary - end - - def result_label(i_cnt, nc_i_cnt, no_of_issues) - result = i_cnt + nc_i_cnt == no_of_issues ? 'succeeded' : 'failed' - result.upcase - end - - def issue_label(count) - count > 1 ? 'issues' : 'issue' - end - - def category_label(count) - count > 1 ? 'categories' : 'category' - end - end - end -end - -Redmine::ChangelogGenerator.generate diff --git a/bin/rails b/bin/rails deleted file mode 100755 index 728cd85..0000000 --- a/bin/rails +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env ruby -APP_PATH = File.expand_path('../../config/application', __FILE__) -require_relative '../config/boot' -require 'rails/commands' diff --git a/bin/rake b/bin/rake deleted file mode 100755 index 1724048..0000000 --- a/bin/rake +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env ruby -require_relative '../config/boot' -require 'rake' -Rake.application.run diff --git a/config.ru b/config.ru deleted file mode 100644 index 5bc2a61..0000000 --- a/config.ru +++ /dev/null @@ -1,4 +0,0 @@ -# This file is used by Rack-based servers to start the application. - -require ::File.expand_path('../config/environment', __FILE__) -run Rails.application diff --git a/config/additional_environment.rb.example b/config/additional_environment.rb.example deleted file mode 100644 index 2a317a3..0000000 --- a/config/additional_environment.rb.example +++ /dev/null @@ -1,10 +0,0 @@ -# Copy this file to additional_environment.rb and add any statements -# that need to be passed to the Rails::Initializer. `config` is -# available in this context. -# -# Example: -# -# config.log_level = :debug -# ... -# - diff --git a/config/application.rb b/config/application.rb deleted file mode 100644 index c40a580..0000000 --- a/config/application.rb +++ /dev/null @@ -1,89 +0,0 @@ -# frozen_string_literal: true - -require File.expand_path('../boot', __FILE__) - -require 'rails' -# Pick the frameworks you want: -require 'active_model/railtie' -require 'active_job/railtie' -require 'active_record/railtie' -require 'active_storage/engine' -require 'action_controller/railtie' -require 'action_mailer/railtie' -require 'action_view/railtie' -require 'action_cable/engine' -# require 'sprockets/railtie' -require 'rails/test_unit/railtie' - -Bundler.require(*Rails.groups) - -module RedmineApp - class Application < Rails::Application - # Settings in config/environments/* take precedence over those specified here. - # Application configuration should go into files in config/initializers - # -- all .rb files in that directory are automatically loaded. - - # Custom directories with classes and modules you want to be autoloadable. - config.autoload_paths += %W(#{config.root}/lib) - - # Only load the plugins named here, in the order given (default is alphabetical). - # :all can be used as a placeholder for all plugins not explicitly named. - # config.plugins = [ :exception_notification, :ssl_requirement, :all ] - - config.active_record.store_full_sti_class = true - config.active_record.default_timezone = :local - - # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone. - # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC. - # config.time_zone = 'Central Time (US & Canada)' - - # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded. - # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s] - # config.i18n.default_locale = :de - - config.i18n.enforce_available_locales = true - config.i18n.fallbacks = true - config.i18n.default_locale = 'en' - - # Configure the default encoding used in templates for Ruby 1.9. - config.encoding = "utf-8" - - # Configure sensitive parameters which will be filtered from the log file. - config.filter_parameters += [:password] - - config.action_mailer.perform_deliveries = false - - # Do not include all helpers - config.action_controller.include_all_helpers = false - - # Since Redmine 4.0, boolean values are stored in sqlite3 databases as 1 and 0 - config.active_record.sqlite3.represent_boolean_as_integer = true - - # Sets the Content-Length header on responses with fixed-length bodies - config.middleware.insert_before Rack::Sendfile, Rack::ContentLength - - # Verify validity of user sessions - config.redmine_verify_sessions = true - - # Specific cache for search results, the default file store cache is not - # a good option as it could grow fast. A memory store (32MB max) is used - # as the default. If you're running multiple server processes, it's - # recommended to switch to a shared cache store (eg. mem_cache_store). - # See http://guides.rubyonrails.org/caching_with_rails.html#cache-stores - # for more options (same options as config.cache_store). - config.redmine_search_cache_store = :memory_store - - # Configure log level here so that additional environment file - # can change it (environments/ENV.rb would take precedence over it) - config.log_level = Rails.env.production? ? :info : :debug - - config.session_store :cookie_store, - :key => '_redmine_session', - :path => config.relative_url_root || '/', - :same_site => :lax - - if File.exists?(File.join(File.dirname(__FILE__), 'additional_environment.rb')) - instance_eval File.read(File.join(File.dirname(__FILE__), 'additional_environment.rb')) - end - end -end diff --git a/config/boot.rb b/config/boot.rb deleted file mode 100644 index 4bb97ac..0000000 --- a/config/boot.rb +++ /dev/null @@ -1,6 +0,0 @@ -# frozen_string_literal: true - -# Set up gems listed in the Gemfile. -ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) - -require 'bundler/setup' if File.exists?(ENV['BUNDLE_GEMFILE']) diff --git a/config/ckeditor.yml b/config/ckeditor.yml deleted file mode 100644 index c2adb24..0000000 --- a/config/ckeditor.yml +++ /dev/null @@ -1,143 +0,0 @@ -# CKEditor configuration: -contentsCss: '/themes/circlepro/stylesheets/editor.css' -allowedContent: true -bodyClass: 'wiki' -removePlugins: 'codemirror,div,flash,forms,iframe,copyformatting,elementspath' -forcePasteAsPlainText: false -entities: false - -# CodeSnipet plugin configuration: -codeSnippet_languages: { - apache: 'Apache', - awk: 'Awk', - bash: 'Bash', - bat: '.bat / DOS', - cpp: 'C++', - css: 'CSS', - diff: 'Diff', - dockerfile: 'Dockerfile', - html: 'HTML', - ini: '.ini / TOML', - java: 'Java', - javascript: 'JavaScript', - json: 'JSON', - makefile: 'Makefile', - markdown: 'Markdown', - nginx: 'Nginx', - php: 'PHP', - perl: 'Perl', - ruby: 'Ruby', - rust: 'Rust', - sql: 'SQL', - xhtml: 'XHTML', - xml: 'XML', - yaml: 'YAML' -} - -# Youtube plugin defaults: -youtube_responsive: true - -# HTML sanitizer configuration: -allowedProtocols: - - afs - - aim - - callto - - ed2k - - feed - - ftp - - gopher - - http - - https - - irc - - mailto - - news - - nntp - - rsync - - rtsp - - sftp - - ssh - - tag - - telnet - - urn - - webcal - - xmpp - -allowedTags: - - a - - abbr - - acronym - - address - - b - - big - - blockquote - - br - - caption - - cite - - code - - dd - - del - - dfn - - div - - dt - - em - - h1 - - h2 - - h3 - - h4 - - h5 - - h6 - - hr - - i - - iframe - - img - - ins - - kbd - - li - - ol - - p - - pre - - s - - samp - - small - - span - - strike - - strong - - sub - - sup - - table - - tbody - - td - - tfoot - - th - - thead - - tr - - tt - - u - - ul - - var - -allowedAttributes: - - abbr - - align - - alt - - border - - cellpadding - - cellspacing - - cite - - class - - colspan - - datetime - - dir - - height - - href - - name - - nowrap - - reversed - - rowspan - - src - - start - - style - - title - - valign - - width - - xml:lang diff --git a/config/configuration.yml.example b/config/configuration.yml.example deleted file mode 100644 index 5dbb717..0000000 --- a/config/configuration.yml.example +++ /dev/null @@ -1,232 +0,0 @@ -# = Redmine configuration file -# -# Each environment has its own configuration options. If you are only -# running in production, only the production block needs to be configured. -# Environment specific configuration options override the default ones. -# -# Note that this file needs to be a valid YAML file. -# DO NOT USE TABS! Use 2 spaces instead of tabs for indentation. - -# default configuration options for all environments -default: - # Outgoing emails configuration - # See the examples below and the Rails guide for more configuration options: - # http://guides.rubyonrails.org/action_mailer_basics.html#action-mailer-configuration - email_delivery: - - # ==== Simple SMTP server at localhost - # - # email_delivery: - # delivery_method: :smtp - # smtp_settings: - # address: "localhost" - # port: 25 - # - # ==== SMTP server at example.com using LOGIN authentication and checking HELO for foo.com - # - # email_delivery: - # delivery_method: :smtp - # smtp_settings: - # address: "example.com" - # port: 25 - # authentication: :login - # domain: 'foo.com' - # user_name: 'myaccount' - # password: 'password' - # - # ==== SMTP server at example.com using PLAIN authentication - # - # email_delivery: - # delivery_method: :smtp - # smtp_settings: - # address: "example.com" - # port: 25 - # authentication: :plain - # domain: 'example.com' - # user_name: 'myaccount' - # password: 'password' - # - # ==== SMTP server at using TLS (GMail) - # This might require some additional configuration. See the guides at: - # http://www.redmine.org/projects/redmine/wiki/EmailConfiguration - # - # email_delivery: - # delivery_method: :smtp - # smtp_settings: - # enable_starttls_auto: true - # address: "smtp.gmail.com" - # port: 587 - # domain: "smtp.gmail.com" # 'your.domain.com' for GoogleApps - # authentication: :plain - # user_name: "your_email@gmail.com" - # password: "your_password" - # - # ==== Sendmail command - # - # email_delivery: - # delivery_method: :sendmail - - # Absolute path to the directory where attachments are stored. - # The default is the 'files' directory in your Redmine instance. - # Your Redmine instance needs to have write permission on this - # directory. - # Examples: - # attachments_storage_path: /var/redmine/files - # attachments_storage_path: D:/redmine/files - attachments_storage_path: - - # Configuration of the autologin cookie. - # autologin_cookie_name: the name of the cookie (default: autologin) - # autologin_cookie_path: the cookie path (default: /) - # autologin_cookie_secure: true sets the cookie secure flag (default: false) - autologin_cookie_name: - autologin_cookie_path: - autologin_cookie_secure: - - # Configuration of SCM executable command. - # - # Absolute path (e.g. /usr/local/bin/hg) or command name (e.g. hg.exe, bzr.exe) - # On Windows + CRuby, *.cmd, *.bat (e.g. hg.cmd, bzr.bat) does not work. - # - # On Windows + JRuby 1.6.2, path which contains spaces does not work. - # For example, "C:\Program Files\TortoiseHg\hg.exe". - # If you want to this feature, you need to install to the path which does not contains spaces. - # For example, "C:\TortoiseHg\hg.exe". - # - # Examples: - # scm_subversion_command: svn # (default: svn) - # scm_mercurial_command: C:\Program Files\TortoiseHg\hg.exe # (default: hg) - # scm_git_command: /usr/local/bin/git # (default: git) - # scm_cvs_command: cvs # (default: cvs) - # scm_bazaar_command: bzr.exe # (default: bzr) - # - scm_subversion_command: - scm_mercurial_command: - scm_git_command: - scm_cvs_command: - scm_bazaar_command: - - # SCM paths validation. - # - # You can configure a regular expression for each SCM that will be used to - # validate the path of new repositories (eg. path entered by users with the - # "Manage repositories" permission and path returned by reposman.rb). - # The regexp will be wrapped with \A \z, so it must match the whole path. - # And the regexp is case sensitive. - # - # You can match the project identifier by using %project% in the regexp. - # - # You can also set a custom hint message for each SCM that will be displayed - # on the repository form instead of the default one. - # - # Examples: - # scm_subversion_path_regexp: file:///svnpath/[a-z0-9_]+ - # scm_subversion_path_info: SVN URL (eg. file:///svnpath/foo) - # - # scm_git_path_regexp: /gitpath/%project%(\.[a-z0-9_])?/ - # - scm_subversion_path_regexp: - scm_mercurial_path_regexp: - scm_git_path_regexp: - scm_cvs_path_regexp: - scm_bazaar_path_regexp: - scm_filesystem_path_regexp: - - # Absolute path to the SCM commands errors (stderr) log file. - # The default is to log in the 'log' directory of your Redmine instance. - # Example: - # scm_stderr_log_file: /var/log/redmine_scm_stderr.log - scm_stderr_log_file: - - # Key used to encrypt sensitive data in the database (SCM and LDAP passwords). - # If you don't want to enable data encryption, just leave it blank. - # WARNING: losing/changing this key will make encrypted data unreadable. - # - # If you want to encrypt existing passwords in your database: - # * set the cipher key here in your configuration file - # * encrypt data using 'rake db:encrypt RAILS_ENV=production' - # - # If you have encrypted data and want to change this key, you have to: - # * decrypt data using 'rake db:decrypt RAILS_ENV=production' first - # * change the cipher key here in your configuration file - # * encrypt data using 'rake db:encrypt RAILS_ENV=production' - database_cipher_key: - - # Set this to false to disable plugins' assets mirroring on startup. - # You can use `rake redmine:plugins:assets` to manually mirror assets - # to public/plugin_assets when you install/upgrade a Redmine plugin. - # - #mirror_plugins_assets_on_startup: false - - # Your secret key for verifying cookie session data integrity. If you - # change this key, all old sessions will become invalid! Make sure the - # secret is at least 30 characters and all random, no regular words or - # you'll be exposed to dictionary attacks. - # - # If you have a load-balancing Redmine cluster, you have to use the - # same secret token on each machine. - #secret_token: 'change it to a long random string' - - # Requires users to re-enter their password for sensitive actions (editing - # of account data, project memberships, application settings, user, group, - # role, auth source management and project deletion). Disabled by default. - # Timeout is set in minutes. - # - #sudo_mode: true - #sudo_mode_timeout: 15 - - # Absolute path (e.g. /usr/bin/convert, c:/im/convert.exe) to - # the ImageMagick's `convert` binary. Used to generate attachment thumbnails. - #imagemagick_convert_command: - - # Absolute path (e.g. /usr/bin/gs, c:/ghostscript/gs.exe) to - # the `gs` binary. Used to generate attachment thumbnails of PDF files. - #gs_command: - - # Configuration of MiniMagick font. - # - # Redmine uses MiniMagick in order to export a gantt chart to a PNG image. - # This setting is necessary to properly display CJK (Chinese, Japanese, - # and Korean) characters in the PNG image. Please make sure that the - # specified font is installed in the Redmine server. - # - # This setting is necessary only when CJK characters are used in gantt. - # - # Note that rmagick_font_path in prior to Redmine 4.1.0 has been renamed - # to minimagick_font_path. - # - # Examples for Japanese: - # Windows: - # minimagick_font_path: C:\windows\fonts\msgothic.ttc - # Linux: - # minimagick_font_path: /usr/share/fonts/ipa-mincho/ipam.ttf - # - minimagick_font_path: - - # Maximum number of simultaneous AJAX uploads - #max_concurrent_ajax_uploads: 2 - - # Configure OpenIdAuthentication.store - # - # allowed values: :memory, :file, :memcache - #openid_authentication_store: :memory - - # URL of the avatar server - # - # By default, Redmine uses Gravatar as the avatar server for displaying - # user icons. You can switch to another Gravatar-compatible server such - # as Libravatar and opensource servers listed on - # https://wiki.libravatar.org/running_your_own/ - # - # URL of each avatar is: #{avatar_server_url}/avatar/#{hash} - # - #avatar_server_url: https://www.gravatar.com # default - #avatar_server_url: https://seccdn.libravatar.org - -# specific configuration options for production environment -# that overrides the default ones -production: - -# specific configuration options for development environment -# that overrides the default ones -development: diff --git a/config/database.yml.example b/config/database.yml.example deleted file mode 100644 index 727b4d8..0000000 --- a/config/database.yml.example +++ /dev/null @@ -1,54 +0,0 @@ -# Default setup is given for MySQL 5.7.7 or later. -# Examples for PostgreSQL, SQLite3 and SQL Server can be found at the end. -# Line indentation must be 2 spaces (no tabs). - -production: - adapter: mysql2 - database: redmine - host: localhost - username: root - password: "" - # Use "utf8" instead of "utfmb4" for MySQL prior to 5.7.7 - encoding: utf8mb4 - -development: - adapter: mysql2 - database: redmine_development - host: localhost - username: root - password: "" - # Use "utf8" instead of "utfmb4" for MySQL prior to 5.7.7 - encoding: utf8mb4 - -# Warning: The database defined as "test" will be erased and -# re-generated from your development database when you run "rake". -# Do not set this db to the same as development or production. -test: - adapter: mysql2 - database: redmine_test - host: localhost - username: root - password: "" - # Use "utf8" instead of "utfmb4" for MySQL prior to 5.7.7 - encoding: utf8mb4 - -# PostgreSQL configuration example -#production: -# adapter: postgresql -# database: redmine -# host: localhost -# username: postgres -# password: "postgres" - -# SQLite3 configuration example -#production: -# adapter: sqlite3 -# database: db/redmine.sqlite3 - -# SQL Server configuration example -#production: -# adapter: sqlserver -# database: redmine -# host: localhost -# username: jenkins -# password: jenkins diff --git a/config/environment.rb b/config/environment.rb deleted file mode 100644 index 52cdf16..0000000 --- a/config/environment.rb +++ /dev/null @@ -1,16 +0,0 @@ -# frozen_string_literal: true - -# Load the Rails application -require File.expand_path('../application', __FILE__) - -# Make sure there's no plugin in vendor/plugin before starting -vendor_plugins_dir = File.join(Rails.root, "vendor", "plugins") -if Dir.glob(File.join(vendor_plugins_dir, "*")).any? - $stderr.puts "Plugins in vendor/plugins (#{vendor_plugins_dir}) are no longer allowed. " \ - "Please, put your Redmine plugins in the `plugins` directory at the root of your " \ - "Redmine directory (#{File.join(Rails.root, "plugins")})" - exit 1 -end - -# Initialize the Rails application -Rails.application.initialize! diff --git a/config/environments/development.rb b/config/environments/development.rb deleted file mode 100644 index fe07871..0000000 --- a/config/environments/development.rb +++ /dev/null @@ -1,23 +0,0 @@ -# frozen_string_literal: true - -Rails.application.configure do - # Settings specified here will take precedence over those in config/application.rb - - # In the development environment your application's code is reloaded on - # every request. This slows down response time but is perfect for development - # since you don't have to restart the webserver when you make code changes. - config.cache_classes = false - - # Do not eager load code on boot. - config.eager_load = false - - # Show full error reports and disable caching - config.consider_all_requests_local = true - config.action_controller.perform_caching = false - - # Disable delivery errors - config.action_mailer.raise_delivery_errors = false - - # Print deprecation notices to stderr and the Rails logger. - config.active_support.deprecation = [:stderr, :log] -end diff --git a/config/environments/production.rb b/config/environments/production.rb deleted file mode 100644 index 16d9fc2..0000000 --- a/config/environments/production.rb +++ /dev/null @@ -1,27 +0,0 @@ -# frozen_string_literal: true - -Rails.application.configure do - # Settings specified here will take precedence over those in config/application.rb - - # Code is not reloaded between requests. - config.cache_classes = true - - # Eager load code on boot. This eager loads most of Rails and - # your application in memory, allowing both threaded web servers - # and those relying on copy on write to perform better. - # Rake tasks automatically ignore this option for performance. - config.eager_load = true - - # Full error reports are disabled and caching is turned on. - config.consider_all_requests_local = false - config.action_controller.perform_caching = true - - # Disable delivery errors - config.action_mailer.raise_delivery_errors = false - - # No email in production log - config.action_mailer.logger = nil - - # Print deprecation notices to the Rails logger. - config.active_support.deprecation = :log -end diff --git a/config/environments/test.rb b/config/environments/test.rb deleted file mode 100644 index 0444ff5..0000000 --- a/config/environments/test.rb +++ /dev/null @@ -1,43 +0,0 @@ -# frozen_string_literal: true - -Rails.application.configure do - # Settings specified here will take precedence over those in config/application.rb - - # The test environment is used exclusively to run your application's - # test suite. You never need to work with it otherwise. Remember that - # your test database is "scratch space" for the test suite and is wiped - # and recreated between test runs. Don't rely on the data there! - config.cache_classes = true - - # Do not eager load code on boot. This avoids loading your whole application - # just for the purpose of running a single test. If you are using a tool that - # preloads Rails for running tests, you may have to set it to true. - config.eager_load = false - - # Show full error reports and disable caching - config.consider_all_requests_local = true - config.action_controller.perform_caching = false - - config.action_mailer.perform_deliveries = true - - # Tell Action Mailer not to deliver emails to the real world. - # The :test delivery method accumulates sent emails in the - # ActionMailer::Base.deliveries array. - config.action_mailer.delivery_method = :test - - # Disable Async delivery - config.active_job.queue_adapter = :inline - - # Disable request forgery protection in test environment. - config.action_controller.allow_forgery_protection = false - - # Disable sessions verifications in test environment. - config.redmine_verify_sessions = false - - # Print deprecation notices to stderr and the Rails logger. - config.active_support.deprecation = [:stderr, :log] - - config.secret_key_base = 'a secret token for running the tests' - - config.active_support.test_order = :random -end diff --git a/config/environments/test_pgsql.rb b/config/environments/test_pgsql.rb deleted file mode 100644 index ff997f7..0000000 --- a/config/environments/test_pgsql.rb +++ /dev/null @@ -1,4 +0,0 @@ -# frozen_string_literal: true - -# Same as test.rb -instance_eval File.read(File.join(File.dirname(__FILE__), 'test.rb')) diff --git a/config/environments/test_sqlite3.rb b/config/environments/test_sqlite3.rb deleted file mode 100644 index ff997f7..0000000 --- a/config/environments/test_sqlite3.rb +++ /dev/null @@ -1,4 +0,0 @@ -# frozen_string_literal: true - -# Same as test.rb -instance_eval File.read(File.join(File.dirname(__FILE__), 'test.rb')) diff --git a/config/initializers/00-core_plugins.rb b/config/initializers/00-core_plugins.rb deleted file mode 100644 index 3bcd00b..0000000 --- a/config/initializers/00-core_plugins.rb +++ /dev/null @@ -1,17 +0,0 @@ -# frozen_string_literal: true - -# Loads the core plugins located in lib/plugins -Dir.glob(File.join(Rails.root, "lib/plugins/*")).sort.each do |directory| - if File.directory?(directory) - lib = File.join(directory, "lib") - if File.directory?(lib) - $:.unshift lib - ActiveSupport::Dependencies.autoload_paths += [lib] - end - initializer = File.join(directory, "init.rb") - if File.file?(initializer) - config = RedmineApp::Application.config - eval(File.read(initializer), binding, initializer) - end - end -end diff --git a/config/initializers/10-patches.rb b/config/initializers/10-patches.rb deleted file mode 100644 index 204caba..0000000 --- a/config/initializers/10-patches.rb +++ /dev/null @@ -1,229 +0,0 @@ -# frozen_string_literal: true - -require 'active_record' - -module ActiveRecord - class Base - include Redmine::I18n - # Translate attribute names for validation errors display - def self.human_attribute_name(attr, options = {}) - prepared_attr = attr.to_s.sub(/_id$/, '').sub(/^.+\./, '') - class_prefix = name.underscore.tr('/', '_') - - redmine_default = [ - :"field_#{class_prefix}_#{prepared_attr}", - :"field_#{prepared_attr}" - ] - - options[:default] = redmine_default + Array(options[:default]) - - super - end - end - - # Undefines private Kernel#open method to allow using `open` scopes in models. - # See Defect #11545 (http://www.redmine.org/issues/11545) for details. - class Base - class << self - undef open - end - end - class Relation ; undef open ; end -end - -module ActionView - module Helpers - module DateHelper - # distance_of_time_in_words breaks when difference is greater than 30 years - def distance_of_date_in_words(from_date, to_date = 0, options = {}) - from_date = from_date.to_date if from_date.respond_to?(:to_date) - to_date = to_date.to_date if to_date.respond_to?(:to_date) - distance_in_days = (to_date - from_date).abs - - I18n.with_options :locale => options[:locale], :scope => :'datetime.distance_in_words' do |locale| - case distance_in_days - when 0..60 then locale.t :x_days, :count => distance_in_days.round - when 61..720 then locale.t :about_x_months, :count => (distance_in_days / 30).round - else locale.t :over_x_years, :count => (distance_in_days / 365).floor - end - end - end - end - end - - class Resolver - def find_all(name, prefix=nil, partial=false, details={}, key=nil, locals=[]) - cached(key, [name, prefix, partial], details, locals) do - if (details[:formats] & [:xml, :json]).any? - details = details.dup - details[:formats] = details[:formats].dup + [:api] - end - find_templates(name, prefix, partial, details) - end - end - end -end - -ActionView::Base.field_error_proc = Proc.new{ |html_tag, instance| html_tag || ''.html_safe } - -# HTML5: is invalid, use instead -module ActionView - module Helpers - module Tags - class Base - private - alias :add_options_without_non_empty_blank_option :add_options - def add_options(option_tags, options, value = nil) - if options[:include_blank] == true - options = options.dup - options[:include_blank] = ' '.html_safe - end - add_options_without_non_empty_blank_option(option_tags, options, value) - end - end - end - - module FormTagHelper - alias :select_tag_without_non_empty_blank_option :select_tag - def select_tag(name, option_tags = nil, options = {}) - if options.delete(:include_blank) - options[:prompt] = ' '.html_safe - end - select_tag_without_non_empty_blank_option(name, option_tags, options) - end - end - - module FormOptionsHelper - alias :options_for_select_without_non_empty_blank_option :options_for_select - def options_for_select(container, selected = nil) - if container.is_a?(Array) - container = container.map {|element| element.presence || [" ".html_safe, ""]} - end - options_for_select_without_non_empty_blank_option(container, selected) - end - end - end -end - -require 'mail' - -module DeliveryMethods - class TmpFile - def initialize(*args); end - - def deliver!(mail) - dest_dir = File.join(Rails.root, 'tmp', 'emails') - Dir.mkdir(dest_dir) unless File.directory?(dest_dir) - filename = "#{Time.now.to_i}_#{mail.message_id.gsub(/[<>]/, '')}.eml" - File.open(File.join(dest_dir, filename), 'wb') {|f| f.write(mail.encoded) } - end - end -end - -ActionMailer::Base.add_delivery_method :tmp_file, DeliveryMethods::TmpFile - -# Changes how sent emails are logged -# Rails doesn't log cc and bcc which is misleading when using bcc only (#12090) -module ActionMailer - class LogSubscriber < ActiveSupport::LogSubscriber - def deliver(event) - recipients = [:to, :cc, :bcc].inject(+"") do |s, header| - r = Array.wrap(event.payload[header]) - if r.any? - s << "\n #{header}: #{r.join(', ')}" - end - s - end - info("\nSent email \"#{event.payload[:subject]}\" (%1.fms)#{recipients}" % event.duration) - debug(event.payload[:mail]) - end - end -end - -module ActionController - module MimeResponds - class Collector - def api(&block) - any(:xml, :json, &block) - end - end - end -end - -module ActionController - class Base - # Displays an explicit message instead of a NoMethodError exception - # when trying to start Redmine with an old session_store.rb - # TODO: remove it in a later version - def self.session=(*args) - $stderr.puts "Please remove config/initializers/session_store.rb and run `rake generate_secret_token`.\n" + - "Setting the session secret with ActionController.session= is no longer supported." - exit 1 - end - end -end - -# Adds asset_id parameters to assets like Rails 3 to invalidate caches in browser -module ActionView - module Helpers - module AssetUrlHelper - @@cache_asset_timestamps = Rails.env.production? - @@asset_timestamps_cache = {} - @@asset_timestamps_cache_guard = Mutex.new - - def asset_path_with_asset_id(source, options = {}) - asset_id = rails_asset_id(source, options) - unless asset_id.blank? - source += "?#{asset_id}" - end - asset_path(source, options.merge(skip_pipeline: true)) - end - alias :path_to_asset :asset_path_with_asset_id - - def rails_asset_id(source, options = {}) - if asset_id = ENV["RAILS_ASSET_ID"] - asset_id - else - if @@cache_asset_timestamps && (asset_id = @@asset_timestamps_cache[source]) - asset_id - else - extname = compute_asset_extname(source, options) - path = File.join(Rails.public_path, "#{source}#{extname}") - exist = false - if File.exist? path - exist = true - else - path = File.join(Rails.public_path, public_compute_asset_path("#{source}#{extname}", options)) - if File.exist? path - exist = true - end - end - asset_id = exist ? File.mtime(path).to_i.to_s : '' - - if @@cache_asset_timestamps - @@asset_timestamps_cache_guard.synchronize do - @@asset_timestamps_cache[source] = asset_id - end - end - - asset_id - end - end - end - end - end -end - -# https://github.com/rack/rack/pull/1703 -# TODO: remove this when Rack is updated to 3.0.0 -require 'rack' -module Rack - class RewindableInput - unless method_defined?(:size) - def size - make_rewindable unless @rewindable_io - @rewindable_io.size - end - end - end -end diff --git a/config/initializers/20-mime_types.rb b/config/initializers/20-mime_types.rb deleted file mode 100644 index 3367334..0000000 --- a/config/initializers/20-mime_types.rb +++ /dev/null @@ -1,3 +0,0 @@ -# frozen_string_literal: true - -# Add new mime types for use in respond_to blocks: diff --git a/config/initializers/30-redmine.rb b/config/initializers/30-redmine.rb deleted file mode 100644 index 73cd080..0000000 --- a/config/initializers/30-redmine.rb +++ /dev/null @@ -1,40 +0,0 @@ -# frozen_string_literal: true - -I18n.backend = Redmine::I18n::Backend.new -# Forces I18n to load available locales from the backend -I18n.config.available_locales = nil - -require 'redmine' - -# Load the secret token from the Redmine configuration file -secret = Redmine::Configuration['secret_token'] -if secret.present? - RedmineApp::Application.config.secret_token = secret -end - -if Object.const_defined?(:OpenIdAuthentication) - openid_authentication_store = Redmine::Configuration['openid_authentication_store'] - OpenIdAuthentication.store = openid_authentication_store.presence || :memory -end - -Redmine::Plugin.load - -plugin_assets_dirs = {} -Redmine::Plugin.all.each do |plugin| - plugin_assets_dirs[plugin.assets_directory] = ["*"] -end -plugin_assets_reloader = ActiveSupport::FileUpdateChecker.new([], plugin_assets_dirs) do - Redmine::Plugin.mirror_assets -end -Rails.application.reloaders << plugin_assets_reloader -unless Redmine::Configuration['mirror_plugins_assets_on_startup'] == false - plugin_assets_reloader.execute -end - -Rails.application.config.to_prepare do - Redmine::FieldFormat::RecordList.subclasses.each do |klass| - klass.instance.reset_target_class - end - - plugin_assets_reloader.execute_if_updated -end diff --git a/config/initializers/backtrace_silencers.rb b/config/initializers/backtrace_silencers.rb deleted file mode 100644 index 92da832..0000000 --- a/config/initializers/backtrace_silencers.rb +++ /dev/null @@ -1,13 +0,0 @@ -# frozen_string_literal: true - -# Be sure to restart your server when you modify this file. - -# You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces. -# Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ } - -# You can also remove all the silencers if you're trying do debug a problem that might steem from framework code. -# Rails.backtrace_cleaner.remove_silencers! - -# Do not remove plugins backtrace -Rails.backtrace_cleaner.remove_silencers! -Rails.backtrace_cleaner.add_silencer { |line| line !~ /^\/?(app|config|lib|plugins|test)/ } diff --git a/config/initializers/inflections.rb b/config/initializers/inflections.rb deleted file mode 100644 index 73732d8..0000000 --- a/config/initializers/inflections.rb +++ /dev/null @@ -1,12 +0,0 @@ -# frozen_string_literal: true - -# Be sure to restart your server when you modify this file. - -# Add new inflection rules using the following format -# (all these examples are active by default): -# ActiveSupport::Inflector.inflections do |inflect| -# inflect.plural /^(ox)$/i, '\1en' -# inflect.singular /^(ox)en/i, '\1' -# inflect.irregular 'person', 'people' -# inflect.uncountable %w( fish sheep ) -# end diff --git a/config/locales/ar.yml b/config/locales/ar.yml deleted file mode 100644 index b1a5126..0000000 --- a/config/locales/ar.yml +++ /dev/null @@ -1,1315 +0,0 @@ -ar: - # Text direction: Left-to-Right (ltr) or Right-to-Left (rtl) - direction: rtl - date: - formats: - # Use the strftime parameters for formats. - # When no format has been given, it uses default. - # You can provide other formats here if you like! - default: "%m/%d/%Y" - short: "%b %d" - long: "%B %d, %Y" - - day_names: [الاحد, الاثنين, الثلاثاء, الاربعاء, الخميس, الجمعة, السبت] - abbr_day_names: [أح, اث, ث, ار, خ, ج, س] - - # Don't forget the nil at the beginning; there's no such thing as a 0th month - month_names: [~, كانون الثاني, شباط, آذار, نيسان, أيار, حزيران, تموز, آب, أيلول, تشرين الأول, تشرين الثاني, كانون الأول] - abbr_month_names: [~, كانون الثاني, شباط, آذار, نيسان, أيار, حزيران, تموز, آب, أيلول, تشرين الأول, تشرين الثاني, كانون الأول] - # Used in date_select and datime_select. - order: - - :السنة - - :الشهر - - :اليوم - - time: - formats: - default: "%m/%d/%Y %I:%M %p" - time: "%I:%M %p" - short: "%d %b %H:%M" - long: "%B %d, %Y %H:%M" - am: "صباحا" - pm: "مساءاً" - - datetime: - distance_in_words: - half_a_minute: "نصف دقيقة" - less_than_x_seconds: - one: "أقل من ثانية" - other: "ثواني %{count}أقل من " - x_seconds: - one: "ثانية" - other: "%{count}ثواني " - less_than_x_minutes: - one: "أقل من دقيقة" - other: "دقائق%{count}أقل من " - x_minutes: - one: "دقيقة" - other: "%{count} دقائق" - about_x_hours: - one: "حوالي ساعة" - other: "ساعات %{count}حوالي " - x_hours: - one: "%{count} ساعة" - other: "%{count} ساعات" - x_days: - one: "يوم" - other: "%{count} أيام" - about_x_months: - one: "حوالي شهر" - other: "أشهر %{count} حوالي" - x_months: - one: "شهر" - other: "%{count} أشهر" - about_x_years: - one: "حوالي سنة" - other: "سنوات %{count}حوالي " - over_x_years: - one: "اكثر من سنة" - other: "سنوات %{count}أكثر من " - almost_x_years: - one: "تقريبا سنة" - other: "سنوات %{count} نقريبا" - number: - format: - separator: "." - delimiter: "" - precision: 3 - - human: - format: - delimiter: "" - precision: 3 - storage_units: - format: "%n %u" - units: - byte: - one: "Byte" - other: "Bytes" - kb: "KB" - mb: "MB" - gb: "GB" - tb: "TB" - -# Used in array.to_sentence. - support: - array: - sentence_connector: "و" - skip_last_comma: false - - activerecord: - errors: - template: - header: - one: " %{model} خطأ يمنع تخزين" - other: " %{model} يمنع تخزين%{count}خطأ رقم " - messages: - inclusion: "غير مدرجة على القائمة" - exclusion: "محجوز" - invalid: "غير صالح" - confirmation: "غير متطابق" - accepted: "مقبولة" - empty: "لا يمكن ان تكون فارغة" - blank: "لا يمكن ان تكون فارغة" - too_long: " %{count} طويلة جدا، الحد الاقصى هو " - too_short: " %{count} قصيرة جدا، الحد الادنى هو " - wrong_length: " %{count} خطأ في الطول، يجب ان يكون " - taken: "لقد اتخذت سابقا" - not_a_number: "ليس رقما" - not_a_date: "ليس تاريخا صالحا" - greater_than: "%{count}يجب ان تكون اكثر من " - greater_than_or_equal_to: "%{count} يجب ان تكون اكثر من او تساوي" - equal_to: "%{count}يجب ان تساوي" - less_than: " %{count}يجب ان تكون اقل من" - less_than_or_equal_to: " %{count} يجب ان تكون اقل من او تساوي" - odd: "must be odd" - even: "must be even" - greater_than_start_date: "يجب ان تكون اكثر من تاريخ البداية" - not_same_project: "لا ينتمي الى نفس المشروع" - circular_dependency: "هذه العلاقة سوف تخلق علاقة تبعية دائرية" - cant_link_an_issue_with_a_descendant: "لا يمكن ان تكون المشكلة مرتبطة بواحدة من المهام الفرعية" - earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" - not_a_regexp: "is not a valid regular expression" - open_issue_with_closed_parent: "An open issue cannot be attached to a closed parent task" - must_contain_uppercase: "must contain uppercase letters (A-Z)" - must_contain_lowercase: "must contain lowercase letters (a-z)" - must_contain_digits: "must contain digits (0-9)" - must_contain_special_chars: "must contain special characters (!, $, %, ...)" - - actionview_instancetag_blank_option: الرجاء التحديد - - general_text_No: 'لا' - general_text_Yes: 'نعم' - general_text_no: 'لا' - general_text_yes: 'نعم' - general_lang_name: 'Arabic (عربي)' - general_csv_separator: ',' - general_csv_decimal_separator: '.' - general_csv_encoding: ISO-8859-1 - general_pdf_fontname: DejaVuSans - general_pdf_monospaced_fontname: DejaVuSansMono - general_first_day_of_week: '7' - - notice_account_updated: لقد تم تجديد الحساب بنجاح. - notice_account_invalid_credentials: اسم المستخدم او كلمة المرور غير صحيحة - notice_account_password_updated: لقد تم تجديد كلمة المرور بنجاح. - notice_account_wrong_password: كلمة المرور غير صحيحة - notice_account_register_done: لقد تم انشاء حسابك بنجاح، الرجاء تأكيد الطلب من البريد الالكتروني - notice_account_unknown_email: مستخدم غير معروف. - notice_can_t_change_password: هذا الحساب يستخدم جهاز خارجي غير مصرح به لا يمكن تغير كلمة المرور - notice_account_lost_email_sent: لقد تم ارسال رسالة على بريدك بالتعليمات اللازمة لتغير كلمة المرور - notice_account_activated: لقد تم تفعيل حسابك، يمكنك الدخول الان - notice_successful_create: لقد تم الانشاء بنجاح - notice_successful_update: لقد تم التحديث بنجاح - notice_successful_delete: لقد تم الحذف بنجاح - notice_successful_connection: لقد تم الربط بنجاح - notice_file_not_found: الصفحة التي تحاول الدخول اليها غير موجوده او تم حذفها - notice_locking_conflict: تم تحديث البيانات عن طريق مستخدم آخر. - notice_not_authorized: غير مصرح لك الدخول الى هذه المنطقة. - notice_not_authorized_archived_project: المشروع الذي تحاول الدخول اليه تم ارشفته - notice_email_sent: "%{value}تم ارسال رسالة الى " - notice_email_error: " (%{value})لقد حدث خطأ ما اثناء ارسال الرسالة الى " - notice_feeds_access_key_reseted: كلمة الدخول Atomلقد تم تعديل . - notice_api_access_key_reseted: كلمة الدخولAPIلقد تم تعديل . - notice_failed_to_save_issues: "فشل في حفظ الملف" - notice_failed_to_save_members: "فشل في حفظ الاعضاء: %{errors}." - notice_no_issue_selected: "لم يتم تحديد شيء، الرجاء تحديد المسألة التي تريد" - notice_account_pending: "لقد تم انشاء حسابك، الرجاء الانتظار حتى تتم الموافقة" - notice_default_data_loaded: تم تحميل التكوين الافتراضي بنجاح - notice_unable_delete_version: غير قادر على مسح النسخة. - notice_unable_delete_time_entry: غير قادر على مسح وقت الدخول. - notice_issue_done_ratios_updated: لقد تم تحديث النسب. - notice_gantt_chart_truncated: " (%{max})لقد تم اقتطاع الرسم البياني لانه تجاوز الاحد الاقصى لعدد العناصر المسموح عرضها " - notice_issue_successful_create: "%{id}لقد تم انشاء " - - - error_can_t_load_default_data: "لم يتم تحميل التكوين الافتراضي كاملا %{value}" - error_scm_not_found: "لم يتم العثور على ادخال في المستودع" - error_scm_command_failed: "حدث خطأ عند محاولة الوصول الى المستودع: %{value}" - error_scm_annotate: "الادخال غير موجود." - error_scm_annotate_big_text_file: "لا يمكن حفظ الادخال لانه تجاوز الحد الاقصى لحجم الملف." - error_issue_not_found_in_project: 'لم يتم العثور على المخرج او انه ينتمي الى مشروع اخر' - error_no_tracker_in_project: 'لا يوجد انواع بنود عمل لهذا المشروع، الرجاء التحقق من إعدادات المشروع. ' - error_no_default_issue_status: 'لم يتم التعرف على اي وضع افتراضي، الرجاء التحقق من التكوين الخاص بك (اذهب الى إدارة-إصدار الحالات)' - error_can_not_delete_custom_field: غير قادر على حذف الحقل المظلل - error_can_not_delete_tracker: "هذا النوع من بنود العمل يحتوي على بنود نشطة ولا يمكن حذفه" - error_can_not_remove_role: "هذا الدور قيد الاستخدام، لا يمكن حذفه" - error_can_not_reopen_issue_on_closed_version: 'لا يمكن إعادة فتح بند عمل معين لاصدار مقفل' - error_can_not_archive_project: لا يمكن ارشفة هذا المشروع - error_issue_done_ratios_not_updated: "لم يتم تحديث النسب" - error_workflow_copy_source: 'الرجاء اختيار نوع بند العمل او الادوار' - error_workflow_copy_target: 'الرجاء اختيار نوع بند العمل المستهدف او الادوار المستهدفة' - error_unable_delete_issue_status: 'غير قادر على حذف حالة بند العمل (%{value})' - error_unable_to_connect: "تعذر الاتصال(%{value})" - error_attachment_too_big: " (%{max_size})لا يمكن تحميل هذا الملف، لقد تجاوز الحد الاقصى المسموح به " - warning_attachments_not_saved: "%{count}تعذر حفظ الملف" - - mail_subject_lost_password: " %{value}كلمة المرور الخاصة بك " - mail_body_lost_password: 'لتغير كلمة المرور، انقر على الروابط التالية:' - mail_subject_register: " %{value}تفعيل حسابك " - mail_body_register: 'لتفعيل حسابك، انقر على الروابط التالية:' - mail_body_account_information_external: " %{value}اصبح بامكانك استخدام حسابك للدخول" - mail_body_account_information: معلومات حسابك - mail_subject_account_activation_request: "%{value}طلب تفعيل الحساب " - mail_body_account_activation_request: " (%{value})تم تسجيل حساب جديد، بانتظار الموافقة:" - mail_subject_reminder: "%{count}تم تأجيل المهام التالية " - mail_body_reminder: "%{count}يجب ان تقوم بتسليم المهام التالية:" - mail_subject_wiki_content_added: "'%{id}' تم اضافة صفحة ويكي" - mail_body_wiki_content_added: "The '%{id}' تم اضافة صفحة ويكي من قبل %{author}." - mail_subject_wiki_content_updated: "'%{id}' تم تحديث صفحة ويكي" - mail_body_wiki_content_updated: "The '%{id}'تم تحديث صفحة ويكي من قبل %{author}." - - - field_name: الاسم - field_description: الوصف - field_summary: الملخص - field_is_required: مطلوب - field_firstname: الاسم الاول - field_lastname: الاسم الاخير - field_mail: البريد الالكتروني - field_filename: اسم الملف - field_filesize: حجم الملف - field_downloads: التنزيل - field_author: المؤلف - field_created_on: تم الانشاء في - field_updated_on: تم التحديث - field_field_format: تنسيق الحقل - field_is_for_all: لكل المشروعات - field_possible_values: قيم محتملة - field_regexp: التعبير العادي - field_min_length: الحد الادنى للطول - field_max_length: الحد الاعلى للطول - field_value: القيمة - field_category: الفئة - field_title: العنوان - field_project: المشروع - field_issue: بند العمل - field_status: الحالة - field_notes: ملاحظات - field_is_closed: بند العمل مغلق - field_is_default: القيمة الافتراضية - field_tracker: نوع بند العمل - field_subject: الموضوع - field_due_date: تاريخ النهاية - field_assigned_to: المحال اليه - field_priority: الأولوية - field_fixed_version: الاصدار المستهدف - field_user: المستخدم - field_principal: الرئيسي - field_role: دور - field_homepage: الصفحة الرئيسية - field_is_public: عام - field_parent: مشروع فرعي من - field_is_in_roadmap: معروض في خارطة الطريق - field_login: تسجيل الدخول - field_mail_notification: ملاحظات على البريد الالكتروني - field_admin: المدير - field_last_login_on: اخر اتصال - field_language: لغة - field_effective_date: تاريخ - field_password: كلمة المرور - field_new_password: كلمة المرور الجديدة - field_password_confirmation: تأكيد - field_version: إصدار - field_type: نوع - field_host: المضيف - field_port: المنفذ - field_account: الحساب - field_base_dn: DN قاعدة - field_attr_login: سمة الدخول - field_attr_firstname: سمة الاسم الاول - field_attr_lastname: سمة الاسم الاخير - field_attr_mail: سمة البريد الالكتروني - field_onthefly: إنشاء حساب مستخدم على تحرك - field_start_date: تاريخ البداية - field_done_ratio: "نسبة الانجاز" - field_auth_source: وضع المصادقة - field_hide_mail: إخفاء بريدي الإلكتروني - field_comments: تعليق - field_url: رابط - field_start_page: صفحة البداية - field_subproject: المشروع الفرعي - field_hours: ساعات - field_activity: النشاط - field_spent_on: تاريخ - field_identifier: المعرف - field_is_filter: استخدم كتصفية - field_issue_to: بنود العمل المتصلة - field_delay: تأخير - field_assignable: يمكن اسناد بنود العمل الى هذا الدور - field_redirect_existing_links: إعادة توجيه الروابط الموجودة - field_estimated_hours: الوقت المتوقع - field_column_names: أعمدة - field_time_entries: وقت الدخول - field_time_zone: المنطقة الزمنية - field_searchable: يمكن البحث فيه - field_default_value: القيمة الافتراضية - field_comments_sorting: اعرض التعليقات - field_parent_title: صفحة الوالدين - field_editable: يمكن اعادة تحريره - field_watcher: مراقب - field_identity_url: افتح الرابط الخاص بالهوية الشخصية - field_content: المحتويات - field_group_by: تصنيف النتائج بواسطة - field_sharing: مشاركة - field_parent_issue: بند العمل الأصلي - field_member_of_group: "مجموعة المحال" - field_assigned_to_role: "دور المحال" - field_text: حقل نصي - field_visible: غير مرئي - field_warn_on_leaving_unsaved: "الرجاء التحذير عند مغادرة صفحة والنص غير محفوظ" - field_issues_visibility: بنود العمل المرئية - field_is_private: خاص - field_commit_logs_encoding: رسائل الترميز - field_scm_path_encoding: ترميز المسار - field_path_to_repository: مسار المستودع - field_root_directory: دليل الجذر - field_cvsroot: CVSجذر - field_cvs_module: وحدة - - setting_app_title: عنوان التطبيق - setting_welcome_text: نص الترحيب - setting_default_language: اللغة الافتراضية - setting_login_required: مطلوب المصادقة - setting_self_registration: التسجيل الذاتي - setting_attachment_max_size: الحد الاقصى للملفات المرفقة - setting_issues_export_limit: الحد الاقصى لتصدير بنود العمل لملفات خارجية - setting_mail_from: انبعاثات عنوان بريدك - setting_bcc_recipients: مستلمين النسخ المخفية (bcc) - setting_plain_text_mail: نص عادي (no HTML) - setting_host_name: اسم ومسار المستخدم - setting_text_formatting: تنسيق النص - setting_wiki_compression: ضغط تاريخ الويكي - setting_feeds_limit: Atom feeds الحد الاقصى لعدد البنود في - setting_default_projects_public: المشاريع الجديده متاحة للجميع افتراضيا - setting_autofetch_changesets: الإحضار التلقائي - setting_sys_api_enabled: من ادارة المستودع WS تمكين - setting_commit_ref_keywords: مرجعية الكلمات المفتاحية - setting_commit_fix_keywords: تصحيح الكلمات المفتاحية - setting_autologin: الدخول التلقائي - setting_date_format: تنسيق التاريخ - setting_time_format: تنسيق الوقت - setting_cross_project_issue_relations: السماح بإدراج بنود العمل في هذا المشروع - setting_issue_list_default_columns: الاعمدة الافتراضية المعروضة في قائمة بند العمل - setting_repositories_encodings: ترميز المرفقات والمستودعات - setting_emails_header: رأس رسائل البريد الإلكتروني - setting_emails_footer: ذيل رسائل البريد الإلكتروني - setting_protocol: بروتوكول - setting_per_page_options: الكائنات لكل خيارات الصفحة - setting_user_format: تنسيق عرض المستخدم - setting_activity_days_default: الايام المعروضة على نشاط المشروع - setting_display_subprojects_issues: عرض بنود العمل للمشارع الرئيسية بشكل افتراضي - setting_enabled_scm: SCM تمكين - setting_mail_handler_body_delimiters: "اقتطاع رسائل البريد الإلكتروني بعد هذه الخطوط" - setting_mail_handler_api_enabled: للرسائل الواردةWS تمكين - setting_mail_handler_api_key: API مفتاح - setting_sequential_project_identifiers: انشاء معرفات المشروع المتسلسلة - setting_gravatar_enabled: كأيقونة مستخدمGravatar استخدام - setting_gravatar_default: الافتراضيةGravatar صورة - setting_diff_max_lines_displayed: الحد الاقصى لعدد الخطوط - setting_file_max_size_displayed: الحد الأقصى لحجم النص المعروض على الملفات المرفقة - setting_repository_log_display_limit: الحد الاقصى لعدد التنقيحات المعروضة على ملف السجل - setting_openid: السماح بدخول اسم المستخدم المفتوح والتسجيل - setting_password_min_length: الحد الادني لطول كلمة المرور - setting_new_project_user_role_id: الدور المسند الى المستخدم غير المسؤول الذي يقوم بإنشاء المشروع - setting_default_projects_modules: تمكين الوحدات النمطية للمشاريع الجديدة بشكل افتراضي - setting_issue_done_ratio: حساب نسبة بند العمل المنتهية - setting_issue_done_ratio_issue_field: استخدم حقل بند العمل - setting_issue_done_ratio_issue_status: استخدم وضع بند العمل - setting_start_of_week: بدأ التقويم - setting_rest_api_enabled: تمكين باقي خدمات الويب - setting_cache_formatted_text: النص المسبق تنسيقه في ذاكرة التخزين المؤقت - setting_default_notification_option: خيار الاعلام الافتراضي - setting_commit_logtime_enabled: تميكن وقت الدخول - setting_commit_logtime_activity_id: النشاط في وقت الدخول - setting_gantt_items_limit: الحد الاقصى لعدد العناصر المعروضة على مخطط جانت - setting_issue_group_assignment: السماح للإحالة الى المجموعات - setting_default_issue_start_date_to_creation_date: استخدام التاريخ الحالي كتاريخ بدأ لبنود العمل الجديدة - - permission_add_project: إنشاء مشروع - permission_add_subprojects: إنشاء مشاريع فرعية - permission_edit_project: تعديل مشروع - permission_select_project_modules: تحديد شكل المشروع - permission_manage_members: إدارة الاعضاء - permission_manage_project_activities: ادارة اصدارات المشروع - permission_manage_versions: ادارة الاصدارات - permission_manage_categories: ادارة انواع بنود العمل - permission_view_issues: عرض بنود العمل - permission_add_issues: اضافة بنود العمل - permission_edit_issues: تعديل بنود العمل - permission_manage_issue_relations: ادارة علاقات بنود العمل - permission_set_issues_private: تعين بنود العمل عامة او خاصة - permission_set_own_issues_private: تعين بنود العمل الخاصة بك كبنود عمل عامة او خاصة - permission_add_issue_notes: اضافة ملاحظات - permission_edit_issue_notes: تعديل ملاحظات - permission_edit_own_issue_notes: تعديل ملاحظاتك - permission_delete_issues: حذف بنود العمل - permission_manage_public_queries: ادارة الاستعلامات العامة - permission_save_queries: حفظ الاستعلامات - permission_view_gantt: عرض طريقة"جانت" - permission_view_calendar: عرض التقويم - permission_view_issue_watchers: عرض قائمة المراقبين - permission_add_issue_watchers: اضافة مراقبين - permission_delete_issue_watchers: حذف مراقبين - permission_log_time: الوقت المستغرق بالدخول - permission_view_time_entries: عرض الوقت المستغرق - permission_edit_time_entries: تعديل الدخولات الزمنية - permission_edit_own_time_entries: تعديل الدخولات الشخصية - permission_manage_news: ادارة الاخبار - permission_comment_news: اخبار التعليقات - permission_view_documents: عرض المستندات - permission_manage_files: ادارة الملفات - permission_view_files: عرض الملفات - permission_manage_wiki: ادارة ويكي - permission_rename_wiki_pages: اعادة تسمية صفحات ويكي - permission_delete_wiki_pages: حذق صفحات ويكي - permission_view_wiki_pages: عرض ويكي - permission_view_wiki_edits: عرض تاريخ ويكي - permission_edit_wiki_pages: تعديل صفحات ويكي - permission_delete_wiki_pages_attachments: حذف المرفقات - permission_protect_wiki_pages: حماية صفحات ويكي - permission_manage_repository: ادارة المستودعات - permission_browse_repository: استعراض المستودعات - permission_view_changesets: عرض طاقم التغيير - permission_commit_access: الوصول - permission_manage_boards: ادارة المنتديات - permission_view_messages: عرض الرسائل - permission_add_messages: نشر الرسائل - permission_edit_messages: تحرير الرسائل - permission_edit_own_messages: تحرير الرسائل الخاصة - permission_delete_messages: حذف الرسائل - permission_delete_own_messages: حذف الرسائل الخاصة - permission_export_wiki_pages: تصدير صفحات ويكي - permission_manage_subtasks: ادارة المهام الفرعية - - project_module_issue_tracking: تعقب بنود العمل - project_module_time_tracking: التعقب الزمني - project_module_news: الاخبار - project_module_documents: المستندات - project_module_files: الملفات - project_module_wiki: ويكي - project_module_repository: المستودع - project_module_boards: المنتديات - project_module_calendar: التقويم - project_module_gantt: جانت - - label_user: المستخدم - label_user_plural: المستخدمين - label_user_new: مستخدم جديد - label_user_anonymous: مجهول الهوية - label_project: مشروع - label_project_new: مشروع جديد - label_project_plural: مشاريع - label_x_projects: - zero: لا يوجد مشاريع - one: مشروع واحد - other: "%{count} مشاريع" - label_project_all: كل المشاريع - label_project_latest: احدث المشاريع - label_issue: بند عمل - label_issue_new: بند عمل جديد - label_issue_plural: بنود عمل - label_issue_view_all: عرض كل بنود العمل - label_issues_by: " %{value}بند العمل لصحابها" - label_issue_added: تم اضافة بند العمل - label_issue_updated: تم تحديث بند العمل - label_issue_note_added: تم اضافة الملاحظة - label_issue_status_updated: تم تحديث الحالة - label_issue_priority_updated: تم تحديث الاولويات - label_document: مستند - label_document_new: مستند جديد - label_document_plural: مستندات - label_document_added: تم اضافة مستند - label_role: دور - label_role_plural: ادوار - label_role_new: دور جديد - label_role_and_permissions: الأدوار والصلاحيات - label_role_anonymous: مجهول الهوية - label_role_non_member: ليس عضو - label_member: عضو - label_member_new: عضو جديد - label_member_plural: اعضاء - label_tracker: نوع بند عمل - label_tracker_plural: أنواع بنود العمل - label_tracker_new: نوع بند عمل جديد - label_workflow: سير العمل - label_issue_status: حالة بند العمل - label_issue_status_plural: حالات بند العمل - label_issue_status_new: حالة جديدة - label_issue_category: فئة بند العمل - label_issue_category_plural: فئات بنود العمل - label_issue_category_new: فئة جديدة - label_custom_field: تخصيص حقل - label_custom_field_plural: تخصيص حقول - label_custom_field_new: حقل مخصص جديد - label_enumerations: التعدادات - label_enumeration_new: قيمة جديدة - label_information: معلومة - label_information_plural: معلومات - label_register: تسجيل - label_login_with_open_id_option: او الدخول بهوية مفتوحة - label_password_lost: فقدت كلمة السر - label_home: "الصفحة الرئيسية" - label_my_page: الصفحة الخاصة بي - label_my_account: حسابي - label_my_projects: مشاريعي الخاصة - label_administration: إدارة النظام - label_login: تسجيل الدخول - label_logout: تسجيل الخروج - label_help: مساعدة - label_reported_issues: بنود العمل التي أدخلتها - label_assigned_to_me_issues: بنود العمل المسندة إلي - label_last_login: آخر اتصال - label_registered_on: مسجل على - label_activity: النشاط - label_overall_activity: النشاط العام - label_user_activity: "قيمة النشاط" - label_new: جديدة - label_logged_as: تم تسجيل دخولك - label_environment: البيئة - label_authentication: المصادقة - label_auth_source: وضع المصادقة - label_auth_source_new: وضع مصادقة جديدة - label_auth_source_plural: أوضاع المصادقة - label_subproject_plural: مشاريع فرعية - label_subproject_new: مشروع فرعي جديد - label_and_its_subprojects: "قيمة المشاريع الفرعية الخاصة بك" - label_min_max_length: الحد الاقصى والادنى للطول - label_list: قائمة - label_date: تاريخ - label_integer: عدد صحيح - label_float: عدد كسري - label_boolean: "نعم/لا" - label_string: نص - label_text: نص طويل - label_attribute: سمة - label_attribute_plural: السمات - label_no_data: لا توجد بيانات للعرض - label_change_status: تغيير الحالة - label_history: التاريخ - label_attachment: الملف - label_attachment_new: ملف جديد - label_attachment_delete: حذف الملف - label_attachment_plural: الملفات - label_file_added: الملف المضاف - label_report: تقرير - label_report_plural: التقارير - label_news: الأخبار - label_news_new: إضافة الأخبار - label_news_plural: الأخبار - label_news_latest: آخر الأخبار - label_news_view_all: عرض كل الأخبار - label_news_added: الأخبار المضافة - label_news_comment_added: إضافة التعليقات على أخبار - label_settings: إعدادات - label_overview: لمحة عامة - label_version: الإصدار - label_version_new: الإصدار الجديد - label_version_plural: الإصدارات - label_close_versions: أكملت إغلاق الإصدارات - label_confirmation: تأكيد - label_export_to: 'متوفرة أيضا في:' - label_read: القراءة... - label_public_projects: المشاريع العامة - label_open_issues: مفتوح - label_open_issues_plural: بنود عمل مفتوحة - label_closed_issues: مغلق - label_closed_issues_plural: بنود عمل مغلقة - label_x_open_issues_abbr: - zero: 0 مفتوح - one: 1 مقتوح - other: "%{count} مفتوح" - label_x_closed_issues_abbr: - zero: 0 مغلق - one: 1 مغلق - other: "%{count} مغلق" - label_total: الإجمالي - label_permissions: صلاحيات - label_current_status: الحالة الحالية - label_new_statuses_allowed: يسمح بادراج حالات جديدة - label_all: جميع - label_none: لا شيء - label_nobody: لا أحد - label_next: القادم - label_previous: السابق - label_used_by: التي يستخدمها - label_details: التفاصيل - label_add_note: إضافة ملاحظة - label_calendar: التقويم - label_months_from: بعد أشهر من - label_gantt: جانت - label_internal: الداخلية - label_last_changes: "آخر التغييرات %{count}" - label_change_view_all: عرض كافة التغييرات - label_comment: تعليق - label_comment_plural: تعليقات - label_x_comments: - zero: لا يوجد تعليقات - one: تعليق واحد - other: "%{count} تعليقات" - label_comment_add: إضافة تعليق - label_comment_added: تم إضافة التعليق - label_comment_delete: حذف التعليقات - label_query: استعلام مخصص - label_query_plural: استعلامات مخصصة - label_query_new: استعلام جديد - label_my_queries: استعلاماتي المخصصة - label_filter_add: إضافة عامل تصفية - label_filter_plural: عوامل التصفية - label_equals: يساوي - label_not_equals: لا يساوي - label_in_less_than: أقل من - label_in_more_than: أكثر من - label_greater_or_equal: '>=' - label_less_or_equal: '< =' - label_between: بين - label_in: في - label_today: اليوم - label_yesterday: بالأمس - label_this_week: هذا الأسبوع - label_last_week: الأسبوع الماضي - label_last_n_days: "آخر %{count} أيام" - label_this_month: هذا الشهر - label_last_month: الشهر الماضي - label_this_year: هذا العام - label_date_range: نطاق التاريخ - label_less_than_ago: أقل من عدد أيام - label_more_than_ago: أكثر من عدد أيام - label_ago: منذ أيام - label_contains: يحتوي على - label_not_contains: لا يحتوي على - label_day_plural: أيام - label_repository: المستودع - label_repository_plural: المستودعات - label_browse: تصفح - label_branch: فرع - label_tag: ربط - label_revision: مراجعة - label_revision_plural: تنقيحات - label_revision_id: " %{value}مراجعة" - label_associated_revisions: التنقيحات المرتبطة - label_added: مضاف - label_modified: معدل - label_copied: منسوخ - label_renamed: إعادة تسمية - label_deleted: محذوف - label_latest_revision: آخر تنقيح - label_latest_revision_plural: أحدث المراجعات - label_view_revisions: عرض التنقيحات - label_view_all_revisions: عرض كافة المراجعات - label_max_size: الحد الأقصى للحجم - label_sort_highest: التحرك لأعلى مرتبة - label_sort_higher: تحريك لأعلى - label_sort_lower: تحريك لأسفل - label_sort_lowest: التحرك لأسفل مرتبة - label_roadmap: خارطة الطريق - label_roadmap_due_in: " %{value}تستحق في " - label_roadmap_overdue: "%{value}تأخير" - label_roadmap_no_issues: لا يوجد بنود عمل لهذا الإصدار - label_search: البحث - label_result_plural: النتائج - label_all_words: كل الكلمات - label_wiki: ويكي - label_wiki_edit: تحرير ويكي - label_wiki_edit_plural: عمليات تحرير ويكي - label_wiki_page: صفحة ويكي - label_wiki_page_plural: ويكي صفحات - label_index_by_title: الفهرس حسب العنوان - label_index_by_date: الفهرس حسب التاريخ - label_current_version: الإصدار الحالي - label_preview: معاينة - label_feed_plural: موجز ويب - label_changes_details: تفاصيل جميع التغييرات - label_issue_tracking: تعقب بنود العمل - label_spent_time: ما تم إنفاقه من الوقت - label_overall_spent_time: الوقت الذي تم انفاقه كاملا - label_f_hour: "%{value} ساعة" - label_f_hour_plural: "%{value} ساعات" - label_time_tracking: تعقب الوقت - label_change_plural: التغييرات - label_statistics: إحصاءات - label_commits_per_month: يثبت في الشهر - label_commits_per_author: يثبت لكل مؤلف - label_diff: الاختلافات - label_view_diff: عرض الاختلافات - label_diff_inline: مضمنة - label_diff_side_by_side: جنبا إلى جنب - label_options: خيارات - label_copy_workflow_from: نسخ سير العمل من - label_permissions_report: تقرير الصلاحيات - label_watched_issues: بنود العمل المتابعة بريدياً - label_related_issues: بنود العمل ذات الصلة - label_applied_status: الحالة المطبقة - label_loading: تحميل... - label_relation_new: علاقة جديدة - label_relation_delete: حذف العلاقة - label_relates_to: ذات علاقة بـ - label_duplicates: مكرر من - label_duplicated_by: مكرر بواسطة - label_blocks: يجب تنفيذه قبل - label_blocked_by: لا يمكن تنفيذه إلا بعد - label_precedes: يسبق - label_follows: يتبع - label_stay_logged_in: تسجيل الدخول في - label_disabled: تعطيل - label_show_completed_versions: إظهار الإصدارات الكاملة - label_me: لي - label_board: المنتدى - label_board_new: منتدى جديد - label_board_plural: المنتديات - label_board_locked: تأمين - label_board_sticky: لزجة - label_topic_plural: المواضيع - label_message_plural: رسائل - label_message_last: آخر رسالة - label_message_new: رسالة جديدة - label_message_posted: تم اضافة الرسالة - label_reply_plural: الردود - label_send_information: إرسال معلومات الحساب للمستخدم - label_year: سنة - label_month: شهر - label_week: أسبوع - label_date_from: من - label_date_to: إلى - label_language_based: استناداً إلى لغة المستخدم - label_sort_by: " %{value}الترتيب حسب " - label_send_test_email: ارسل رسالة الكترونية كاختبار - label_feeds_access_key: Atom مفتاح دخول - label_missing_feeds_access_key: مفقودAtom مفتاح دخول - label_feeds_access_key_created_on: "Atom تم انشاء مفتاح %{value} منذ" - label_module_plural: الوحدات النمطية - label_added_time_by: " تم اضافته من قبل %{author} منذ %{age}" - label_updated_time_by: " تم تحديثه من قبل %{author} منذ %{age}" - label_updated_time: "تم التحديث منذ %{value}" - label_jump_to_a_project: الانتقال إلى مشروع... - label_file_plural: الملفات - label_changeset_plural: اعدادات التغير - label_default_columns: الاعمدة الافتراضية - label_no_change_option: (لا تغيير) - label_bulk_edit_selected_issues: تحرير بنود العمل المظللة - label_bulk_edit_selected_time_entries: تعديل بنود الأوقات المظللة - label_theme: الموضوع - label_default: الافتراضي - label_search_titles_only: البحث في العناوين فقط - label_user_mail_option_all: "جميع الخيارات" - label_user_mail_option_selected: "الخيارات المظللة فقط" - label_user_mail_option_none: "لم يتم تحديد اي خيارات" - label_user_mail_option_only_my_events: "السماح لي فقط بمشاهدة الاحداث الخاصة" - label_user_mail_no_self_notified: "لا تريد إعلامك بالتغيرات التي تجريها بنفسك" - label_registration_activation_by_email: حساب التنشيط عبر البريد الإلكتروني - label_registration_manual_activation: تنشيط الحساب اليدوي - label_registration_automatic_activation: تنشيط الحساب التلقائي - label_display_per_page: "لكل صفحة: %{value}" - label_age: العمر - label_change_properties: تغيير الخصائص - label_general: عامة - label_scm: scm - label_plugins: الإضافات - label_ldap_authentication: مصادقة LDAP - label_downloads_abbr: تنزيل - label_optional_description: وصف اختياري - label_add_another_file: إضافة ملف آخر - label_preferences: تفضيلات - label_chronological_order: في ترتيب زمني - label_reverse_chronological_order: في ترتيب زمني عكسي - label_incoming_emails: رسائل البريد الإلكتروني الوارد - label_generate_key: إنشاء مفتاح - label_issue_watchers: المراقبون - label_example: مثال - label_display: العرض - label_sort: فرز - label_ascending: تصاعدي - label_descending: تنازلي - label_date_from_to: من %{start} الى %{end} - label_wiki_content_added: إضافة صفحة ويكي - label_wiki_content_updated: تحديث صفحة ويكي - label_group: مجموعة - label_group_plural: المجموعات - label_group_new: مجموعة جديدة - label_time_entry_plural: الأوقات المنفقة - label_version_sharing_none: غير متاح - label_version_sharing_descendants: متاح للمشاريع الفرعية - label_version_sharing_hierarchy: متاح للتسلسل الهرمي للمشروع - label_version_sharing_tree: مع شجرة المشروع - label_version_sharing_system: مع جميع المشاريع - label_update_issue_done_ratios: تحديث نسبة الأداء لبند العمل - label_copy_source: المصدر - label_copy_target: الهدف - label_copy_same_as_target: مطابق للهدف - label_display_used_statuses_only: عرض الحالات المستخدمة من قبل هذا النوع من بنود العمل فقط - label_api_access_key: مفتاح الوصول إلى API - label_missing_api_access_key: API لم يتم الحصول على مفتاح الوصول - label_api_access_key_created_on: " API إنشاء مفتاح الوصول إلى" - label_profile: الملف الشخصي - label_subtask_plural: المهام الفرعية - label_project_copy_notifications: إرسال إشعار الى البريد الإلكتروني عند نسخ المشروع - label_principal_search: "البحث عن مستخدم أو مجموعة:" - label_user_search: "البحث عن المستخدم:" - label_additional_workflow_transitions_for_author: الانتقالات الإضافية المسموح بها عند المستخدم صاحب البلاغ - label_additional_workflow_transitions_for_assignee: الانتقالات الإضافية المسموح بها عند المستخدم المحال إليه - label_issues_visibility_all: جميع بنود العمل - label_issues_visibility_public: جميع بنود العمل الخاصة - label_issues_visibility_own: بنود العمل التي أنشأها المستخدم - label_git_report_last_commit: اعتماد التقرير الأخير للملفات والدلائل - label_parent_revision: الوالدين - label_child_revision: الطفل - label_export_options: "%{export_format} خيارات التصدير" - - button_login: دخول - button_submit: تثبيت - button_save: حفظ - button_check_all: تحديد الكل - button_uncheck_all: عدم تحديد الكل - button_collapse_all: تقليص الكل - button_expand_all: عرض الكل - button_delete: حذف - button_create: إنشاء - button_create_and_continue: إنشاء واستمرار - button_test: اختبار - button_edit: تعديل - button_edit_associated_wikipage: "تغير صفحة ويكي: %{page_title}" - button_add: إضافة - button_change: تغيير - button_apply: تطبيق - button_clear: إخلاء الحقول - button_lock: قفل - button_unlock: الغاء القفل - button_download: تنزيل - button_list: قائمة - button_view: عرض - button_move: تحرك - button_move_and_follow: تحرك واتبع - button_back: رجوع - button_cancel: إلغاء - button_activate: تنشيط - button_sort: ترتيب - button_log_time: وقت الدخول - button_rollback: الرجوع الى هذا الاصدار - button_watch: تابع عبر البريد - button_unwatch: إلغاء المتابعة عبر البريد - button_reply: رد - button_archive: أرشفة - button_unarchive: إلغاء الأرشفة - button_reset: إعادة - button_rename: إعادة التسمية - button_change_password: تغير كلمة المرور - button_copy: نسخ - button_copy_and_follow: نسخ واتباع - button_annotate: تعليق - button_update: تحديث - button_configure: تكوين - button_quote: اقتباس - button_show: إظهار - button_edit_section: تعديل هذا الجزء - button_export: تصدير لملف - - status_active: نشيط - status_registered: مسجل - status_locked: مقفل - - version_status_open: مفتوح - version_status_locked: مقفل - version_status_closed: مغلق - - field_active: فعال - - text_select_mail_notifications: حدد الامور التي يجب ابلاغك بها عن طريق البريد الالكتروني - text_regexp_info: مثال. ^[A-Z0-9]+$ - text_min_max_length_info: الحد الاقصى والادني لطول المعلومات - text_project_destroy_confirmation: هل أنت متأكد من أنك تريد حذف هذا المشروع والبيانات ذات الصلة؟ - text_subprojects_destroy_warning: "المشاريع الفرعية: %{value} سيتم حذفها أيضاً." - text_workflow_edit: حدد دوراً و نوع بند عمل لتحرير سير العمل - text_are_you_sure: هل أنت متأكد؟ - text_journal_changed: "%{label} تغير %{old} الى %{new}" - text_journal_changed_no_detail: "%{label} تم التحديث" - text_journal_set_to: "%{label} تغير الى %{value}" - text_journal_deleted: "%{label} تم الحذف (%{old})" - text_journal_added: "%{label} %{value} تم الاضافة" - text_tip_issue_begin_day: بند عمل بدأ اليوم - text_tip_issue_end_day: بند عمل انتهى اليوم - text_tip_issue_begin_end_day: بند عمل بدأ وانتهى اليوم - text_caracters_maximum: "%{count} الحد الاقصى." - text_caracters_minimum: "الحد الادنى %{count}" - text_length_between: "الطول %{min} بين %{max} رمز" - text_tracker_no_workflow: لم يتم تحديد سير العمل لهذا النوع من بنود العمل - text_unallowed_characters: رموز غير مسموحة - text_comma_separated: مسموح رموز متنوعة يفصلها فاصلة . - text_line_separated: مسموح رموز متنوعة يفصلها سطور - text_issues_ref_in_commit_messages: الارتباط وتغيير حالة بنود العمل في رسائل تحرير الملفات - text_issue_added: "بند العمل %{id} تم ابلاغها عن طريق %{author}." - text_issue_updated: "بند العمل %{id} تم تحديثها عن طريق %{author}." - text_wiki_destroy_confirmation: هل انت متأكد من رغبتك في حذف هذا الويكي ومحتوياته؟ - text_issue_category_destroy_question: "بعض بنود العمل (%{count}) مرتبطة بهذه الفئة، ماذا تريد ان تفعل بها؟" - text_issue_category_destroy_assignments: حذف الفئة - text_issue_category_reassign_to: اعادة تثبيت البنود في الفئة - text_user_mail_option: "بالنسبة للمشاريع غير المحددة، سوف يتم ابلاغك عن المشاريع التي تشاهدها او تشارك بها فقط!" - text_no_configuration_data: "الادوار والمتتبع وحالات بند العمل ومخطط سير العمل لم يتم تحديد وضعها الافتراضي بعد. " - text_load_default_configuration: تحميل الاعدادات الافتراضية - text_status_changed_by_changeset: " طبق التغيرات المعينة على %{value}." - text_time_logged_by_changeset: "تم تطبيق التغيرات المعينة على %{value}." - text_issues_destroy_confirmation: هل انت متأكد من حذف البنود المظللة؟' - text_issues_destroy_descendants_confirmation: "سوف يؤدي هذا الى حذف %{count} المهام الفرعية ايضا." - text_time_entries_destroy_confirmation: "هل انت متأكد من رغبتك في حذف الادخالات الزمنية المحددة؟" - text_select_project_modules: قم بتحديد الوضع المناسب لهذا المشروع:' - text_default_administrator_account_changed: تم تعديل الاعدادات الافتراضية لحساب المدير - text_file_repository_writable: المرفقات قابلة للكتابة - text_plugin_assets_writable: الدليل المساعد قابل للكتابة - text_destroy_time_entries_question: " ساعة على بند العمل التي تود حذفها، ماذا تريد ان تفعل؟ %{hours} تم تثبيت" - text_destroy_time_entries: قم بحذف الساعات المسجلة - text_assign_time_entries_to_project: ثبت الساعات المسجلة على التقرير - text_reassign_time_entries: 'اعادة تثبيت الساعات المسجلة لبند العمل هذا:' - text_user_wrote: "%{value} كتب:" - text_user_wrote_in: "%{value} كتب (%{link}):" - text_enumeration_destroy_question: "%{count} الكائنات المعنية لهذه القيمة" - text_enumeration_category_reassign_to: اعادة تثبيت الكائنات التالية لهذه القيمة:' - text_email_delivery_not_configured: "لم يتم تسليم البريد الالكتروني" - text_diff_truncated: '... لقد تم اقتطاع هذا الجزء لانه تجاوز الحد الاقصى المسموح بعرضه' - text_custom_field_possible_values_info: 'سطر لكل قيمة' - text_wiki_page_nullify_children: "الاحتفاظ بصفحات الابن كصفحات جذر" - text_wiki_page_destroy_children: "حذف صفحات الابن وجميع أولادهم" - text_wiki_page_reassign_children: "إعادة تعيين صفحات تابعة لهذه الصفحة الأصلية" - text_own_membership_delete_confirmation: "انت على وشك إزالة بعض أو كافة الصلاحيات الخاصة بك، لن تكون قادراً على تحرير هذا المشروع بعد ذلك. هل أنت متأكد من أنك تريد المتابعة؟" - text_zoom_in: تصغير - text_zoom_out: تكبير - text_warn_on_leaving_unsaved: "الصفحة تحتوي على نص غير مخزن، سوف يفقد النص اذا تم الخروج من الصفحة." - text_scm_path_encoding_note: "الافتراضي: UTF-8" - text_git_repository_note: مستودع فارغ ومحلي - text_mercurial_repository_note: مستودع محلي - text_scm_command: امر - text_scm_command_version: اصدار - text_scm_config: الرجاء اعادة تشغيل التطبيق - text_scm_command_not_available: الامر غير متوفر، الرجاء التحقق من لوحة التحكم - - default_role_manager: مدير - default_role_developer: مطور - default_role_reporter: مراسل - default_tracker_bug: الشوائب - default_tracker_feature: خاصية - default_tracker_support: دعم - default_issue_status_new: جديد - default_issue_status_in_progress: جاري التحميل - default_issue_status_resolved: الحل - default_issue_status_feedback: التغذية الراجعة - default_issue_status_closed: مغلق - default_issue_status_rejected: مرفوض - default_doc_category_user: مستندات المستخدم - default_doc_category_tech: المستندات التقنية - default_priority_low: قليل - default_priority_normal: عادي - default_priority_high: عالي - default_priority_urgent: طارئ - default_priority_immediate: طارئ الآن - default_activity_design: تصميم - default_activity_development: تطوير - - enumeration_issue_priorities: الاولويات - enumeration_doc_categories: تصنيف المستندات - enumeration_activities: الانشطة - enumeration_system_activity: نشاط النظام - description_filter: فلترة - description_search: حقل البحث - description_choose_project: المشاريع - description_project_scope: مجال البحث - description_notes: ملاحظات - description_message_content: محتويات الرسالة - description_query_sort_criteria_attribute: نوع الترتيب - description_query_sort_criteria_direction: اتجاه الترتيب - description_user_mail_notification: إعدادات البريد الالكتروني - description_available_columns: الاعمدة المتوفرة - description_selected_columns: الاعمدة المحددة - description_all_columns: كل الاعمدة - description_issue_category_reassign: اختر التصنيف - description_wiki_subpages_reassign: اختر صفحة جديدة - text_minimagick_available: MiniMagick available (optional) - text_wiki_page_destroy_question: This page has %{descendants} child page(s) and descendant(s). What do you want to do? - text_repository_usernames_mapping: |- - Select or update the Redmine user mapped to each username found in the repository log. - Users with the same Redmine and repository username or email are automatically mapped. - notice_failed_to_save_time_entries: "Failed to save %{count} time entrie(s) on %{total} selected: %{ids}." - label_x_issues: - zero: لا يوجد بنود عمل - one: بند عمل واحد - other: "%{count} بنود عمل" - label_repository_new: New repository - field_repository_is_default: Main repository - label_copy_attachments: Copy attachments - label_item_position: "%{position}/%{count}" - label_completed_versions: Completed versions - text_project_identifier_info: Only lower case letters (a-z), numbers, dashes and underscores are allowed.
    Once saved, the identifier cannot be changed. - field_multiple: Multiple values - setting_commit_cross_project_ref: Allow issues of all the other projects to be referenced and fixed - text_issue_conflict_resolution_add_notes: Add my notes and discard my other changes - text_issue_conflict_resolution_overwrite: Apply my changes anyway (previous notes will be kept but some changes may be overwritten) - notice_issue_update_conflict: The issue has been updated by an other user while you were editing it. - text_issue_conflict_resolution_cancel: Discard all my changes and redisplay %{link} - permission_manage_related_issues: Manage related issues - field_auth_source_ldap_filter: LDAP filter - label_search_for_watchers: Search for watchers to add - notice_account_deleted: Your account has been permanently deleted. - setting_unsubscribe: Allow users to delete their own account - button_delete_my_account: Delete my account - text_account_destroy_confirmation: |- - Are you sure you want to proceed? - Your account will be permanently deleted, with no way to reactivate it. - error_session_expired: Your session has expired. Please login again. - text_session_expiration_settings: "Warning: changing these settings may expire the current sessions including yours." - setting_session_lifetime: Session maximum lifetime - setting_session_timeout: Session inactivity timeout - label_session_expiration: Session expiration - permission_close_project: Close / reopen the project - button_close: Close - button_reopen: Reopen - project_status_active: active - project_status_closed: closed - project_status_archived: archived - text_project_closed: This project is closed and read-only. - notice_user_successful_create: User %{id} created. - field_core_fields: Standard fields - field_timeout: Timeout (in seconds) - setting_thumbnails_enabled: Display attachment thumbnails - setting_thumbnails_size: Thumbnails size (in pixels) - label_status_transitions: Status transitions - label_fields_permissions: Fields permissions - label_readonly: Read-only - label_required: Required - text_repository_identifier_info: Only lower case letters (a-z), numbers, dashes and underscores are allowed.
    Once saved, the identifier cannot be changed. - field_board_parent: Parent forum - label_attribute_of_project: Project's %{name} - label_attribute_of_author: Author's %{name} - label_attribute_of_assigned_to: Assignee's %{name} - label_attribute_of_fixed_version: Target version's %{name} - label_copy_subtasks: Copy subtasks - label_copied_to: منسوخ لـ - label_copied_from: منسوخ من - label_any_issues_in_project: any issues in project - label_any_issues_not_in_project: any issues not in project - field_private_notes: Private notes - permission_view_private_notes: View private notes - permission_set_notes_private: Set notes as private - label_no_issues_in_project: no issues in project - label_any: جميع - label_last_n_weeks: آخر %{count} أسبوع/أسابيع - setting_cross_project_subtasks: Allow cross-project subtasks - label_cross_project_descendants: متاح للمشاريع الفرعية - label_cross_project_tree: متاح مع شجرة المشروع - label_cross_project_hierarchy: متاح مع التسلسل الهرمي للمشروع - label_cross_project_system: متاح مع جميع المشاريع - button_hide: إخفاء - setting_non_working_week_days: "أيام أجازة/راحة أسبوعية" - label_in_the_next_days: في الأيام المقبلة - label_in_the_past_days: في الأيام الماضية - label_attribute_of_user: User's %{name} - text_turning_multiple_off: If you disable multiple values, multiple values will be - removed in order to preserve only one value per item. - label_attribute_of_issue: Issue's %{name} - permission_add_documents: Add documents - permission_edit_documents: Edit documents - permission_delete_documents: Delete documents - label_gantt_progress_line: Progress line - setting_jsonp_enabled: Enable JSONP support - field_inherit_members: Inherit members - field_closed_on: Closed - field_generate_password: Generate password - setting_default_projects_tracker_ids: Default trackers for new projects - label_total_time: الإجمالي - notice_account_not_activated_yet: You haven't activated your account yet. If you want - to receive a new activation email, please click this link. - notice_account_locked: Your account is locked. - label_hidden: Hidden - label_visibility_private: to me only - label_visibility_roles: to these roles only - label_visibility_public: to any users - field_must_change_passwd: Must change password at next logon - notice_new_password_must_be_different: The new password must be different from the - current password - setting_mail_handler_excluded_filenames: Exclude attachments by name - text_convert_available: ImageMagick convert available (optional) - label_link: Link - label_only: only - label_drop_down_list: drop-down list - label_checkboxes: checkboxes - label_link_values_to: Link values to URL - setting_force_default_language_for_anonymous: Force default language for anonymous - users - setting_force_default_language_for_loggedin: Force default language for logged-in - users - label_custom_field_select_type: Select the type of object to which the custom field - is to be attached - label_issue_assigned_to_updated: Assignee updated - label_check_for_updates: Check for updates - label_latest_compatible_version: Latest compatible version - label_unknown_plugin: Unknown plugin - label_radio_buttons: radio buttons - label_group_anonymous: Anonymous users - label_group_non_member: Non member users - label_add_projects: Add projects - field_default_status: Default status - text_subversion_repository_note: 'Examples: file:///, http://, https://, svn://, svn+[tunnelscheme]://' - field_users_visibility: Users visibility - label_users_visibility_all: All active users - label_users_visibility_members_of_visible_projects: Members of visible projects - label_edit_attachments: Edit attached files - setting_link_copied_issue: Link issues on copy - label_link_copied_issue: Link copied issue - label_ask: Ask - label_search_attachments_yes: Search attachment filenames and descriptions - label_search_attachments_no: Do not search attachments - label_search_attachments_only: Search attachments only - label_search_open_issues_only: Open issues only - field_address: البريد الالكتروني - setting_max_additional_emails: Maximum number of additional email addresses - label_email_address_plural: Emails - label_email_address_add: Add email address - label_enable_notifications: Enable notifications - label_disable_notifications: Disable notifications - setting_search_results_per_page: Search results per page - label_blank_value: blank - permission_copy_issues: Copy issues - error_password_expired: Your password has expired or the administrator requires you - to change it. - field_time_entries_visibility: Time logs visibility - setting_password_max_age: Require password change after - label_parent_task_attributes: Parent tasks attributes - label_parent_task_attributes_derived: Calculated from subtasks - label_parent_task_attributes_independent: Independent of subtasks - label_time_entries_visibility_all: All time entries - label_time_entries_visibility_own: Time entries created by the user - label_member_management: Member management - label_member_management_all_roles: All roles - label_member_management_selected_roles_only: Only these roles - label_password_required: Confirm your password to continue - label_total_spent_time: الوقت الذي تم انفاقه كاملا - notice_import_finished: "%{count} items have been imported" - notice_import_finished_with_errors: "%{count} out of %{total} items could not be imported" - error_invalid_file_encoding: The file is not a valid %{encoding} encoded file - error_invalid_csv_file_or_settings: The file is not a CSV file or does not match the - settings below - error_can_not_read_import_file: An error occurred while reading the file to import - permission_import_issues: Import issues - label_import_issues: Import issues - label_select_file_to_import: Select the file to import - label_fields_separator: Field separator - label_fields_wrapper: Field wrapper - label_encoding: Encoding - label_comma_char: Comma - label_semi_colon_char: Semicolon - label_quote_char: Quote - label_double_quote_char: Double quote - label_fields_mapping: Fields mapping - label_file_content_preview: File content preview - label_create_missing_values: Create missing values - button_import: Import - field_total_estimated_hours: Total estimated time - label_api: API - label_total_plural: Totals - label_assigned_issues: Assigned issues - label_field_format_enumeration: Key/value list - label_f_hour_short: '%{value} h' - field_default_version: Default version - error_attachment_extension_not_allowed: Attachment extension %{extension} is not allowed - setting_attachment_extensions_allowed: Allowed extensions - setting_attachment_extensions_denied: Disallowed extensions - label_any_open_issues: any open issues - label_no_open_issues: no open issues - label_default_values_for_new_users: Default values for new users - error_ldap_bind_credentials: Invalid LDAP Account/Password - setting_sys_api_key: API مفتاح - setting_lost_password: فقدت كلمة السر - mail_subject_security_notification: Security notification - mail_body_security_notification_change: ! '%{field} was changed.' - mail_body_security_notification_change_to: ! '%{field} was changed to %{value}.' - mail_body_security_notification_add: ! '%{field} %{value} was added.' - mail_body_security_notification_remove: ! '%{field} %{value} was removed.' - mail_body_security_notification_notify_enabled: Email address %{value} now receives - notifications. - mail_body_security_notification_notify_disabled: Email address %{value} no longer - receives notifications. - mail_body_settings_updated: ! 'The following settings were changed:' - field_remote_ip: IP address - label_wiki_page_new: New wiki page - label_relations: Relations - button_filter: Filter - mail_body_password_updated: Your password has been changed. - label_no_preview: No preview available - error_no_tracker_allowed_for_new_issue_in_project: The project doesn't have any trackers - for which you can create an issue - label_tracker_all: All trackers - label_new_project_issue_tab_enabled: Display the "New issue" tab - setting_new_item_menu_tab: Project menu tab for creating new objects - label_new_object_tab_enabled: Display the "+" drop-down - error_no_projects_with_tracker_allowed_for_new_issue: There are no projects with trackers - for which you can create an issue - field_textarea_font: Font used for text areas - label_font_default: Default font - label_font_monospace: Monospaced font - label_font_proportional: Proportional font - setting_timespan_format: Time span format - label_table_of_contents: Table of contents - setting_commit_logs_formatting: Apply text formatting to commit messages - setting_mail_handler_enable_regex: Enable regular expressions - error_move_of_child_not_possible: 'Subtask %{child} could not be moved to the new - project: %{errors}' - error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted: Spent time cannot - be reassigned to an issue that is about to be deleted - setting_timelog_required_fields: Required fields for time logs - label_attribute_of_object: '%{object_name}''s %{name}' - label_user_mail_option_only_assigned: Only for things I watch or I am assigned to - label_user_mail_option_only_owner: Only for things I watch or I am the owner of - warning_fields_cleared_on_bulk_edit: Changes will result in the automatic deletion - of values from one or more fields on the selected objects - field_updated_by: Updated by - field_last_updated_by: Last updated by - field_full_width_layout: Full width layout - label_last_notes: Last notes - field_digest: Checksum - field_default_assigned_to: Default assignee - setting_show_custom_fields_on_registration: Show custom fields on registration - permission_view_news: View news - label_no_preview_alternative_html: No preview available. %{link} the file instead. - label_no_preview_download: Download - setting_close_duplicate_issues: Close duplicate issues automatically - error_exceeds_maximum_hours_per_day: Cannot log more than %{max_hours} hours on the - same day (%{logged_hours} hours have already been logged) - setting_time_entry_list_defaults: Timelog list defaults - setting_timelog_accept_0_hours: Accept time logs with 0 hours - setting_timelog_max_hours_per_day: Maximum hours that can be logged per day and user - label_x_revisions: "%{count} revisions" - error_can_not_delete_auth_source: This authentication mode is in use and cannot be - deleted. - button_actions: Actions - mail_body_lost_password_validity: Please be aware that you may change the password - only once using this link. - text_login_required_html: When not requiring authentication, public projects and their - contents are openly available on the network. You can edit - the applicable permissions. - label_login_required_yes: 'Yes' - label_login_required_no: No, allow anonymous access to public projects - text_project_is_public_non_member: Public projects and their contents are available - to all logged-in users. - text_project_is_public_anonymous: Public projects and their contents are openly available - on the network. - label_version_and_files: Versions (%{count}) and Files - label_ldap: LDAP - label_ldaps_verify_none: LDAPS (without certificate check) - label_ldaps_verify_peer: LDAPS - label_ldaps_warning: It is recommended to use an encrypted LDAPS connection with certificate - check to prevent any manipulation during the authentication process. - label_nothing_to_preview: Nothing to preview - error_token_expired: This password recovery link has expired, please try again. - error_spent_on_future_date: Cannot log time on a future date - setting_timelog_accept_future_dates: Accept time logs on future dates - label_delete_link_to_subtask: حذف العلاقة - error_not_allowed_to_log_time_for_other_users: You are not allowed to log time - for other users - permission_log_time_for_other_users: Log spent time for other users - label_tomorrow: tomorrow - label_next_week: next week - label_next_month: next month - text_role_no_workflow: No workflow defined for this role - text_status_no_workflow: No tracker uses this status in the workflows - setting_mail_handler_preferred_body_part: Preferred part of multipart (HTML) emails - setting_show_status_changes_in_mail_subject: Show status changes in issue mail notifications - subject - label_inherited_from_parent_project: Inherited from parent project - label_inherited_from_group: Inherited from group %{name} - label_trackers_description: Trackers description - label_open_trackers_description: View all trackers description - label_preferred_body_part_text: Text - label_preferred_body_part_html: HTML (experimental) - field_parent_issue_subject: Parent task subject - permission_edit_own_issues: Edit own issues - text_select_apply_tracker: Select tracker - label_updated_issues: Updated issues - text_avatar_server_config_html: The current avatar server is %{url}. - You can configure it in config/configuration.yml. - setting_gantt_months_limit: Maximum number of months displayed on the gantt chart - permission_import_time_entries: Import time entries - label_import_notifications: Send email notifications during the import - text_gs_available: ImageMagick PDF support available (optional) - field_recently_used_projects: Number of recently used projects in jump box - label_optgroup_bookmarks: Bookmarks - label_optgroup_others: Other projects - label_optgroup_recents: Recently used - button_project_bookmark: Add bookmark - button_project_bookmark_delete: Remove bookmark - field_history_default_tab: Issue's history default tab - label_issue_history_properties: Property changes - label_issue_history_notes: Notes - label_last_tab_visited: Last visited tab - field_unique_id: Unique ID - text_no_subject: no subject - setting_password_required_char_classes: Required character classes for passwords - label_password_char_class_uppercase: uppercase letters - label_password_char_class_lowercase: lowercase letters - label_password_char_class_digits: digits - label_password_char_class_special_chars: special characters - text_characters_must_contain: Must contain %{character_classes}. - label_starts_with: starts with - label_ends_with: ends with - label_issue_fixed_version_updated: Target version updated - setting_project_list_defaults: Projects list defaults - label_display_type: Display results as - label_display_type_list: List - label_display_type_board: Board - label_my_bookmarks: My bookmarks - label_import_time_entries: Import time entries diff --git a/config/locales/az.yml b/config/locales/az.yml deleted file mode 100644 index e0b75a6..0000000 --- a/config/locales/az.yml +++ /dev/null @@ -1,1407 +0,0 @@ -# -# Translated by Saadat Mutallimova -# Data Processing Center of the Ministry of Communication and Information Technologies -# -az: - direction: ltr - date: - formats: - default: "%d.%m.%Y" - short: "%d %b" - long: "%d %B %Y" - - day_names: [bazar, bazar ertəsi, çərşənbə axşamı, çərşənbə, cümə axşamı, cümə, şənbə] - standalone_day_names: [Bazar, Bazar ertəsi, Çərşənbə axşamı, Çərşənbə, Cümə axşamı, Cümə, Şənbə] - abbr_day_names: [B, Be, Ça, Ç, Ca, C, Ş] - - month_names: [~, yanvar, fevral, mart, aprel, may, iyun, iyul, avqust, sentyabr, oktyabr, noyabr, dekabr] - # see russian gem for info on "standalone" day names - standalone_month_names: [~, Yanvar, Fevral, Mart, Aprel, May, İyun, İyul, Avqust, Sentyabr, Oktyabr, Noyabr, Dekabr] - abbr_month_names: [~, yan., fev., mart, apr., may, iyun, iyul, avq., sent., okt., noy., dek.] - standalone_abbr_month_names: [~, yan., fev., mart, apr., may, iyun, iyul, avq., sent., okt., noy., dek.] - - order: - - :day - - :month - - :year - - time: - formats: - default: "%a, %d %b %Y, %H:%M:%S %z" - time: "%H:%M" - short: "%d %b, %H:%M" - long: "%d %B %Y, %H:%M" - - am: "səhər" - pm: "axşam" - - number: - format: - separator: "," - delimiter: " " - precision: 3 - - currency: - format: - format: "%n %u" - unit: "man." - separator: "." - delimiter: " " - precision: 2 - - percentage: - format: - delimiter: "" - - precision: - format: - delimiter: "" - - human: - format: - delimiter: "" - precision: 3 - # Rails 2.2 - # storage_units: [байт, КБ, МБ, ГБ, ТБ] - - # Rails 2.3 - storage_units: - # Storage units output formatting. - # %u is the storage unit, %n is the number (default: 2 MB) - format: "%n %u" - units: - byte: - one: "bayt" - few: "bayt" - many: "bayt" - other: "bayt" - kb: "KB" - mb: "MB" - gb: "GB" - tb: "TB" - - datetime: - distance_in_words: - half_a_minute: "bir dəqiqədən az" - less_than_x_seconds: - one: "%{count} saniyədən az" - few: "%{count} saniyədən az" - many: "%{count} saniyədən az" - other: "%{count} saniyədən az" - x_seconds: - one: "%{count} saniyə" - few: "%{count} saniyə" - many: "%{count} saniyə" - other: "%{count} saniyə" - less_than_x_minutes: - one: "%{count} dəqiqədən az" - few: "%{count} dəqiqədən az" - many: "%{count} dəqiqədən az" - other: "%{count} dəqiqədən az" - x_minutes: - one: "%{count} dəqiqə" - few: "%{count} dəqiqə" - many: "%{count} dəqiqə" - other: "%{count} dəqiqə" - about_x_hours: - one: "təxminən %{count} saat" - few: "təxminən %{count} saat" - many: "təxminən %{count} saat" - other: "təxminən %{count} saat" - x_hours: - one: "1 saat" - other: "%{count} saat" - x_days: - one: "%{count} gün" - few: "%{count} gün" - many: "%{count} gün" - other: "%{count} gün" - about_x_months: - one: "təxminən %{count} ay" - few: "təxminən %{count} ay" - many: "təxminən %{count} ay" - other: "təxminən %{count} ay" - x_months: - one: "%{count} ay" - few: "%{count} ay" - many: "%{count} ay" - other: "%{count} ay" - about_x_years: - one: "təxminən %{count} il" - few: "təxminən %{count} il" - many: "təxminən %{count} il" - other: "təxminən %{count} il" - over_x_years: - one: "%{count} ildən çox" - few: "%{count} ildən çox" - many: "%{count} ildən çox" - other: "%{count} ildən çox" - almost_x_years: - one: "təxminən 1 il" - few: "təxminən %{count} il" - many: "təxminən %{count} il" - other: "təxminən %{count} il" - prompts: - year: "İl" - month: "Ay" - day: "Gün" - hour: "Saat" - minute: "Dəqiqə" - second: "Saniyə" - - activerecord: - errors: - template: - header: - one: "%{model}: %{count} səhvə görə yadda saxlamaq mümkün olmadı" - few: "%{model}: %{count} səhvlərə görə yadda saxlamaq mümkün olmadı" - many: "%{model}: %{count} səhvlərə görə yadda saxlamaq mümkün olmadı" - other: "%{model}: %{count} səhvə görə yadda saxlamaq mümkün olmadı" - - body: "Problemlər aşağıdakı sahələrdə yarandı:" - - messages: - inclusion: "nəzərdə tutulmamış təyinata malikdir" - exclusion: "ehtiyata götürülməmiş təyinata malikdir" - invalid: "düzgün təyinat deyildir" - confirmation: "təsdiq ilə üst-üstə düşmür" - accepted: "təsdiq etmək lazımdır" - empty: "boş saxlanıla bilməz" - blank: "boş saxlanıla bilməz" - too_long: - one: "çox böyük uzunluq (%{count} simvoldan çox ola bilməz)" - few: "çox böyük uzunluq (%{count} simvoldan çox ola bilməz)" - many: "çox böyük uzunluq (%{count} simvoldan çox ola bilməz)" - other: "çox böyük uzunluq (%{count} simvoldan çox ola bilməz)" - too_short: - one: "uzunluq kifayət qədər deyildir (%{count} simvoldan az ola bilməz)" - few: "uzunluq kifayət qədər deyildir (%{count} simvoldan az ola bilməz)" - many: "uzunluq kifayət qədər deyildir (%{count} simvoldan az ola bilməz)" - other: "uzunluq kifayət qədər deyildir (%{count} simvoldan az ola bilməz)" - wrong_length: - one: "düzgün olmayan uzunluq (tam %{count} simvol ola bilər)" - few: "düzgün olmayan uzunluq (tam %{count} simvol ola bilər)" - many: "düzgün olmayan uzunluq (tam %{count} simvol ola bilər)" - other: "düzgün olmayan uzunluq (tam %{count} simvol ola bilər)" - taken: "artıq mövcuddur" - not_a_number: "say kimi hesab edilmir" - greater_than: "%{count} çox təyinata malik ola bilər" - greater_than_or_equal_to: "%{count} çox və ya ona bərabər təyinata malik ola bilər" - equal_to: "yalnız %{count} bərabər təyinata malik ola bilər" - less_than: "%{count} az təyinata malik ola bilər" - less_than_or_equal_to: "%{count} az və ya ona bərabər təyinata malik ola bilər" - odd: "yalnız tək təyinata malik ola bilər" - even: "yalnız cüt təyinata malik ola bilər" - greater_than_start_date: "başlanğıc tarixindən sonra olmalıdır" - not_same_project: "təkcə bir layihəyə aid deyildir" - circular_dependency: "Belə əlaqə dövri asılılığa gətirib çıxaracaq" - cant_link_an_issue_with_a_descendant: "Tapşırıq özünün alt tapşırığı ilə əlaqəli ola bilməz" - earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" - not_a_regexp: "is not a valid regular expression" - open_issue_with_closed_parent: "An open issue cannot be attached to a closed parent task" - must_contain_uppercase: "must contain uppercase letters (A-Z)" - must_contain_lowercase: "must contain lowercase letters (a-z)" - must_contain_digits: "must contain digits (0-9)" - must_contain_special_chars: "must contain special characters (!, $, %, ...)" - - support: - array: - # Rails 2.2 - sentence_connector: "və" - skip_last_comma: true - - # Rails 2.3 - words_connector: ", " - two_words_connector: " və" - last_word_connector: " və " - - actionview_instancetag_blank_option: Seçim edin - - button_activate: Aktivləşdirmək - button_add: Əlavə etmək - button_annotate: Müəlliflik - button_apply: Tətbiq etmək - button_archive: Arxivləşdirmək - button_back: Geriyə - button_cancel: İmtina - button_change_password: Parolu dəyişmək - button_change: Dəyişmək - button_check_all: Hamını qeyd etmək - button_clear: Təmizləmək - button_configure: Parametlər - button_copy: Sürətini çıxarmaq - button_create: Yaratmaq - button_create_and_continue: Yaratmaq və davam etmək - button_delete: Silmək - button_download: Yükləmək - button_edit: Redaktə etmək - button_edit_associated_wikipage: "Əlaqəli wiki-səhifəni redaktə etmək: %{page_title}" - button_list: Siyahı - button_lock: Bloka salmaq - button_login: Giriş - button_log_time: Sərf olunan vaxt - button_move: Yerini dəyişmək - button_quote: Sitat gətirmək - button_rename: Adını dəyişmək - button_reply: Cavablamaq - button_reset: Sıfırlamaq - button_rollback: Bu versiyaya qayıtmaq - button_save: Yadda saxlamaq - button_sort: Çeşidləmək - button_submit: Qəbul etmək - button_test: Yoxlamaq - button_unarchive: Arxivdən çıxarmaq - button_uncheck_all: Təmizləmək - button_unlock: Blokdan çıxarmaq - button_unwatch: İzləməmək - button_update: Yeniləmək - button_view: Baxmaq - button_watch: İzləmək - - default_activity_design: Layihənin hazırlanması - default_activity_development: Hazırlanma prosesi - default_doc_category_tech: Texniki sənədləşmə - default_doc_category_user: İstifadəçi sənədi - default_issue_status_in_progress: İşlənməkdədir - default_issue_status_closed: Bağlanıb - default_issue_status_feedback: Əks əlaqə - default_issue_status_new: Yeni - default_issue_status_rejected: Rədd etmə - default_issue_status_resolved: Həll edilib - default_priority_high: Yüksək - default_priority_immediate: Təxirsiz - default_priority_low: Aşağı - default_priority_normal: Normal - default_priority_urgent: Təcili - default_role_developer: Hazırlayan - default_role_manager: Menecer - default_role_reporter: Reportyor - default_tracker_bug: Səhv - default_tracker_feature: Təkmilləşmə - default_tracker_support: Dəstək - - enumeration_activities: Hərəkətlər (vaxtın uçotu) - enumeration_doc_categories: Sənədlərin kateqoriyası - enumeration_issue_priorities: Tapşırıqların prioriteti - - error_can_not_remove_role: Bu rol istifadə edilir və silinə bilməz. - error_can_not_delete_custom_field: Sazlanmış sahəni silmək mümkün deyildir - error_can_not_delete_tracker: Bu treker tapşırıqlardan ibarət olduğu üçün silinə bilməz. - error_can_t_load_default_data: "Susmaya görə konfiqurasiya yüklənməmişdir: %{value}" - error_issue_not_found_in_project: Tapşırıq tapılmamışdır və ya bu layihəyə bərkidilməmişdir - error_scm_annotate: "Verilənlər mövcud deyildir və ya imzalana bilməz." - error_scm_command_failed: "Saxlayıcıya giriş imkanı səhvi: %{value}" - error_scm_not_found: Saxlayıcıda yazı və/ və ya düzəliş yoxdur. - error_unable_to_connect: Qoşulmaq mümkün deyildir (%{value}) - error_unable_delete_issue_status: Tapşırığın statusunu silmək mümkün deyildir (%{value}) - - field_account: İstifadəçi hesabı - field_activity: Fəaliyyət - field_admin: İnzibatçı - field_assignable: Tapşırıq bu rola təyin edilə bilər - field_assigned_to: Təyin edilib - field_attr_firstname: Ad - field_attr_lastname: Soyad - field_attr_login: Atribut Login - field_attr_mail: e-poçt - field_author: Müəllif - field_auth_source: Autentifikasiya rejimi - field_base_dn: BaseDN - field_category: Kateqoriya - field_column_names: Sütunlar - field_comments: Şərhlər - field_comments_sorting: Şərhlərin təsviri - field_content: Content - field_created_on: Yaradılıb - field_default_value: Susmaya görə təyinat - field_delay: Təxirə salmaq - field_description: Təsvir - field_done_ratio: Hazırlıq - field_downloads: Yükləmələr - field_due_date: Yerinə yetirilmə tarixi - field_editable: Redaktə edilən - field_effective_date: Tarix - field_estimated_hours: Vaxtın dəyərləndirilməsi - field_field_format: Format - field_filename: Fayl - field_filesize: Ölçü - field_firstname: Ad - field_fixed_version: Variant - field_hide_mail: E-poçtumu gizlət - field_homepage: Başlanğıc səhifə - field_host: Kompyuter - field_hours: saat - field_identifier: Unikal identifikator - field_identity_url: OpenID URL - field_is_closed: Tapşırıq bağlanıb - field_is_default: Susmaya görə tapşırıq - field_is_filter: Filtr kimi istifadə edilir - field_is_for_all: Bütün layihələr üçün - field_is_in_roadmap: Operativ planda əks olunan tapşırıqlar - field_is_public: Ümümaçıq - field_is_required: Mütləq - field_issue_to: Əlaqəli tapşırıqlar - field_issue: Tapşırıq - field_language: Dil - field_last_login_on: Son qoşulma - field_lastname: Soyad - field_login: İstifadəçi - field_mail: e-poçt - field_mail_notification: e-poçt ilə bildiriş - field_max_length: maksimal uzunluq - field_min_length: minimal uzunluq - field_name: Ad - field_new_password: Yeni parol - field_notes: Qeyd - field_onthefly: Tez bir zamanda istifadəçinin yaradılması - field_parent_title: Valideyn səhifə - field_parent: Valideyn layihə - field_parent_issue: Valideyn tapşırıq - field_password_confirmation: Təsdiq - field_password: Parol - field_port: Port - field_possible_values: Mümkün olan təyinatlar - field_priority: Prioritet - field_project: Layihə - field_redirect_existing_links: Mövcud olan istinadları istiqamətləndirmək - field_regexp: Müntəzəm ifadə - field_role: Rol - field_searchable: Axtarış üçün açıqdır - field_spent_on: Tarix - field_start_date: Başlanıb - field_start_page: Başlanğıc səhifə - field_status: Status - field_subject: Mövzu - field_subproject: Altlayihə - field_summary: Qısa təsvir - field_text: Mətn sahəsi - field_time_entries: Sərf olunan zaman - field_time_zone: Saat qurşağı - field_title: Başlıq - field_tracker: Treker - field_type: Tip - field_updated_on: Yenilənib - field_url: URL - field_user: İstifadəçi - field_value: Təyinat - field_version: Variant - field_watcher: Nəzarətçi - - general_csv_decimal_separator: ',' - general_csv_encoding: UTF-8 - general_csv_separator: ';' - general_pdf_fontname: freesans - general_pdf_monospaced_fontname: freemono - general_first_day_of_week: '1' - general_lang_name: 'Azerbaijani (Azeri)' - general_text_no: 'xeyr' - general_text_No: 'Xeyr' - general_text_yes: 'bəli' - general_text_Yes: 'Bəli' - - label_activity: Görülən işlər - label_add_another_file: Bir fayl daha əlavə etmək - label_added_time_by: "Əlavə etdi %{author} %{age} əvvəl" - label_added: əlavə edilib - label_add_note: Qeydi əlavə etmək - label_administration: İnzibatçılıq - label_age: Yaş - label_ago: gün əvvəl - label_all_words: Bütün sözlər - label_all: hamı - label_and_its_subprojects: "%{value} və bütün altlayihələr" - label_applied_status: Tətbiq olunan status - label_ascending: Artmaya görə - label_assigned_to_me_issues: Mənim tapşırıqlarım - label_associated_revisions: Əlaqəli redaksiyalar - label_attachment: Fayl - label_attachment_delete: Faylı silmək - label_attachment_new: Yeni fayl - label_attachment_plural: Fayllar - label_attribute: Atribut - label_attribute_plural: Atributlar - label_authentication: Autentifikasiya - label_auth_source: Autentifikasiyanın rejimi - label_auth_source_new: Autentifikasiyanın yeni rejimi - label_auth_source_plural: Autentifikasiyanın rejimləri - label_blocked_by: bloklanır - label_blocks: bloklayır - label_board: Forum - label_board_new: Yeni forum - label_board_plural: Forumlar - label_boolean: Məntiqi - label_browse: Baxış - label_bulk_edit_selected_issues: Seçilən bütün tapşırıqları redaktə etmək - label_calendar: Təqvim - label_change_plural: Dəyişikliklər - label_change_properties: Xassələri dəyişmək - label_change_status: Statusu dəyişmək - label_change_view_all: Bütün dəyişikliklərə baxmaq - label_changes_details: Bütün dəyişikliklərə görə təfsilatlar - label_changeset_plural: Dəyişikliklər - label_chronological_order: Xronoloji ardıcıllıq ilə - label_closed_issues: Bağlıdır - label_closed_issues_plural: bağlıdır - label_closed_issues_plural2: bağlıdır - label_closed_issues_plural5: bağlıdır - label_comment: şərhlər - label_comment_add: Şərhləri qeyd etmək - label_comment_added: Əlavə olunmuş şərhlər - label_comment_delete: Şərhi silmək - label_comment_plural: Şərhlər - label_comment_plural2: Şərhlər - label_comment_plural5: şərhlərin - label_commits_per_author: İstifadəçi üzərində dəyişikliklər - label_commits_per_month: Ay üzərində dəyişikliklər - label_confirmation: Təsdiq - label_contains: tərkibi - label_copied: surəti köçürülüb - label_copy_workflow_from: görülən işlərin ardıcıllığının surətini köçürmək - label_current_status: Cari status - label_current_version: Cari variant - label_custom_field: Sazlanan sahə - label_custom_field_new: Yeni sazlanan sahə - label_custom_field_plural: Sazlanan sahələr - label_date_from: С - label_date_from_to: С %{start} по %{end} - label_date_range: vaxt intervalı - label_date_to: üzrə - label_date: Tarix - label_day_plural: gün - label_default: Susmaya görə - label_default_columns: Susmaya görə sütunlar - label_deleted: silinib - label_descending: Azalmaya görə - label_details: Təfsilatlar - label_diff_inline: mətndə - label_diff_side_by_side: Yanaşı - label_disabled: söndürülüb - label_display: Təsvir - label_display_per_page: "Səhifəyə: %{value}" - label_document: Sənəd - label_document_added: Sənəd əlavə edilib - label_document_new: Yeni sənəd - label_document_plural: Sənədlər - label_downloads_abbr: Yükləmələr - label_duplicated_by: çoxaldılır - label_duplicates: çoxaldır - label_enumeration_new: Yeni qiymət - label_enumerations: Qiymətlərin siyahısı - label_environment: Mühit - label_equals: sayılır - label_example: Nümunə - label_export_to: ixrac etmək - label_feed_plural: Atom - label_feeds_access_key_created_on: "Atom-ə giriş açarı %{value} əvvəl yaradılıb" - label_f_hour: "%{value} saat" - label_f_hour_plural: "%{value} saat" - label_file_added: Fayl əlavə edilib - label_file_plural: Fayllar - label_filter_add: Filtr əlavə etmək - label_filter_plural: Filtrlər - label_float: Həqiqi ədəd - label_follows: Əvvəlki - label_gantt: Qant diaqramması - label_general: Ümumi - label_generate_key: Açarı generasiya etmək - label_greater_or_equal: ">=" - label_help: Kömək - label_history: Tarixçə - label_home: Ana səhifə - label_incoming_emails: Məlumatların qəbulu - label_index_by_date: Səhifələrin tarixçəsi - label_index_by_title: Başlıq - label_information_plural: İnformasiya - label_information: İnformasiya - label_in_less_than: az - label_in_more_than: çox - label_integer: Tam - label_internal: Daxili - label_in: da (də) - label_issue: Tapşırıq - label_issue_added: Tapşırıq əlavə edilib - label_issue_category_new: Yeni kateqoriya - label_issue_category_plural: Tapşırığın kateqoriyası - label_issue_category: Tapşırığın kateqoriyası - label_issue_new: Yeni tapşırıq - label_issue_plural: Tapşırıqlar - label_issues_by: "%{value} üzrə çeşidləmək" - label_issue_status_new: Yeni status - label_issue_status_plural: Tapşırıqların statusu - label_issue_status: Tapşırığın statusu - label_issue_tracking: Tapşırıqlar - label_issue_updated: Tapşırıq yenilənib - label_issue_view_all: Bütün tapşırıqlara baxmaq - label_issue_watchers: Nəzarətçilər - label_jump_to_a_project: ... layihəyə keçid - label_language_based: Dilin əsasında - label_last_changes: "%{count} az dəyişiklik" - label_last_login: Sonuncu qoşulma - label_last_month: sonuncu ay - label_last_n_days: "son %{count} gün" - label_last_week: sonuncu həftə - label_latest_revision: Sonuncu redaksiya - label_latest_revision_plural: Sonuncu redaksiyalar - label_ldap_authentication: LDAP vasitəsilə avtorizasiya - label_less_or_equal: <= - label_less_than_ago: gündən az - label_list: Siyahı - label_loading: Yükləmə... - label_logged_as: Daxil olmusunuz - label_login: Daxil olmaq - label_login_with_open_id_option: və ya OpenID vasitəsilə daxil olmaq - label_logout: Çıxış - label_max_size: Maksimal ölçü - label_member_new: Yeni iştirakçı - label_member: İştirakçı - label_member_plural: İştirakçılar - label_message_last: Sonuncu məlumat - label_message_new: Yeni məlumat - label_message_plural: Məlumatlar - label_message_posted: Məlumat əlavə olunub - label_me: mənə - label_min_max_length: Minimal - maksimal uzunluq - label_modified: dəyişilib - label_module_plural: Modullar - label_months_from: ay - label_month: Ay - label_more_than_ago: gündən əvvəl - label_my_account: Mənim hesabım - label_my_page: Mənim səhifəm - label_my_projects: Mənim layihələrim - label_new: Yeni - label_new_statuses_allowed: İcazə verilən yeni statuslar - label_news_added: Xəbər əlavə edilib - label_news_latest: Son xəbərlər - label_news_new: Xəbər əlavə etmək - label_news_plural: Xəbərlər - label_news_view_all: Bütün xəbərlərə baxmaq - label_news: Xəbərlər - label_next: Növbəti - label_nobody: heç kim - label_no_change_option: (Dəyişiklik yoxdur) - label_no_data: Təsvir üçün verilənlər yoxdur - label_none: yoxdur - label_not_contains: mövcud deyil - label_not_equals: sayılmır - label_open_issues: açıqdır - label_open_issues_plural: açıqdır - label_open_issues_plural2: açıqdır - label_open_issues_plural5: açıqdır - label_optional_description: Təsvir (vacib deyil) - label_options: Opsiyalar - label_overall_activity: Görülən işlərin toplu hesabatı - label_overview: Baxış - label_password_lost: Parolun bərpası - label_permissions_report: Giriş hüquqları üzrə hesabat - label_permissions: Giriş hüquqları - label_plugins: Modullar - label_precedes: növbəti - label_preferences: Üstünlük - label_preview: İlkin baxış - label_previous: Əvvəlki - label_profile: Profil - label_project: Layihə - label_project_all: Bütün layihələr - label_project_copy_notifications: Layihənin surətinin çıxarılması zamanı elektron poçt ilə bildiriş göndərmək - label_project_latest: Son layihələr - label_project_new: Yeni layihə - label_project_plural: Layihələr - label_project_plural2: layihəni - label_project_plural5: layihələri - label_public_projects: Ümumi layihələr - label_query: Yadda saxlanılmış sorğu - label_query_new: Yeni sorğu - label_query_plural: Yadda saxlanılmış sorğular - label_read: Oxu... - label_register: Qeydiyyat - label_registered_on: Qeydiyyatdan keçib - label_registration_activation_by_email: e-poçt üzrə hesabımın aktivləşdirilməsi - label_registration_automatic_activation: uçot qeydlərinin avtomatik aktivləşdirilməsi - label_registration_manual_activation: uçot qeydlərini əl ilə aktivləşdirmək - label_related_issues: Əlaqəli tapşırıqlar - label_relates_to: əlaqəlidir - label_relation_delete: Əlaqəni silmək - label_relation_new: Yeni münasibət - label_renamed: adını dəyişmək - label_reply_plural: Cavablar - label_report: Hesabat - label_report_plural: Hesabatlar - label_reported_issues: Yaradılan tapşırıqlar - label_repository: Saxlayıcı - label_repository_plural: Saxlayıcı - label_result_plural: Nəticələr - label_reverse_chronological_order: Əks ardıcıllıqda - label_revision: Redaksiya - label_revision_plural: Redaksiyalar - label_roadmap: Operativ plan - label_roadmap_due_in: "%{value} müddətində" - label_roadmap_no_issues: bu versiya üçün tapşırıq yoxdur - label_roadmap_overdue: "gecikmə %{value}" - label_role: Rol - label_role_and_permissions: Rollar və giriş hüquqları - label_role_new: Yeni rol - label_role_plural: Rollar - label_scm: Saxlayıcının tipi - label_search: Axtarış - label_search_titles_only: Ancaq adlarda axtarmaq - label_send_information: İstifadəçiyə uçot qeydləri üzrə informasiyanı göndərmək - label_send_test_email: Yoxlama üçün email göndərmək - label_settings: Sazlamalar - label_show_completed_versions: Bitmiş variantları göstərmək - label_sort: Çeşidləmək - label_sort_by: "%{value} üzrə çeşidləmək" - label_sort_higher: Yuxarı - label_sort_highest: Əvvələ qayıt - label_sort_lower: Aşağı - label_sort_lowest: Sona qayıt - label_spent_time: Sərf olunan vaxt - label_statistics: Statistika - label_stay_logged_in: Sistemdə qalmaq - label_string: Mətn - label_subproject_plural: Altlayihələr - label_subtask_plural: Alt tapşırıqlar - label_text: Uzun mətn - label_theme: Mövzu - label_this_month: bu ay - label_this_week: bu həftə - label_this_year: bu il - label_time_tracking: Vaxtın uçotu - label_today: bu gün - label_topic_plural: Mövzular - label_total: Cəmi - label_tracker: Treker - label_tracker_new: Yeni treker - label_tracker_plural: Trekerlər - label_updated_time: "%{value} əvvəl yenilənib" - label_updated_time_by: "%{author} %{age} əvvəl yenilənib" - label_used_by: İstifadə olunur - label_user: İstifasdəçi - label_user_activity: "İstifadəçinin gördüyü işlər %{value}" - label_user_mail_no_self_notified: "Tərəfimdən edilən dəyişikliklər haqqında məni xəbərdar etməmək" - label_user_mail_option_all: "Mənim layihələrimdəki bütün hadisələr haqqında" - label_user_mail_option_selected: "Yalnız seçilən layihədəki bütün hadisələr haqqında..." - label_user_mail_option_only_my_events: Yalnız izlədiyim və ya iştirak etdiyim obyektlər üçün - label_user_new: Yeni istifadəçi - label_user_plural: İstifadəçilər - label_version: Variant - label_version_new: Yeni variant - label_version_plural: Variantlar - label_view_diff: Fərqlərə baxmaq - label_view_revisions: Redaksiyalara baxmaq - label_watched_issues: Tapşırığın izlənilməsi - label_week: Həftə - label_wiki: Wiki - label_wiki_edit: Wiki-nin redaktəsi - label_wiki_edit_plural: Wiki - label_wiki_page: Wiki səhifəsi - label_wiki_page_plural: Wiki səhifələri - label_workflow: Görülən işlərin ardıcıllığı - label_x_closed_issues_abbr: - zero: "0 bağlıdır" - one: "1 bağlanıb" - few: "%{count} bağlıdır" - many: "%{count} bağlıdır" - other: "%{count} bağlıdır" - label_x_comments: - zero: "şərh yoxdur" - one: "1 şərh" - few: "%{count} şərhlər" - many: "%{count} şərh" - other: "%{count} şərh" - label_x_open_issues_abbr: - zero: "0 açıqdır" - one: "1 açıq" - few: "%{count} açıqdır" - many: "%{count} açıqdır" - other: "%{count} açıqdır" - label_x_projects: - zero: "layihələr yoxdur" - one: "1 layihə" - few: "%{count} layihə" - many: "%{count} layihə" - other: "%{count} layihə" - label_year: İl - label_yesterday: dünən - - mail_body_account_activation_request: "Yeni istifadəçi qeydiyyatdan keçib (%{value}). Uçot qeydi Sizin təsdiqinizi gözləyir:" - mail_body_account_information: Sizin uçot qeydiniz haqqında informasiya - mail_body_account_information_external: "Siz özünüzün %{value} uçot qeydinizi giriş üçün istifadə edə bilərsiniz." - mail_body_lost_password: 'Parolun dəyişdirilməsi üçün aşağıdakı linkə keçin:' - mail_body_register: 'Uçot qeydinin aktivləşdirilməsi üçün aşağıdakı linkə keçin:' - mail_body_reminder: "növbəti %{days} gün üçün Sizə təyin olunan %{count}:" - mail_subject_account_activation_request: "Sistemdə istifadəçinin aktivləşdirilməsi üçün sorğu %{value}" - mail_subject_lost_password: "Sizin %{value} parolunuz" - mail_subject_register: "Uçot qeydinin aktivləşdirilməsi %{value}" - mail_subject_reminder: "yaxın %{days} gün üçün Sizə təyin olunan %{count}" - - notice_account_activated: Sizin uçot qeydiniz aktivləşdirilib. Sistemə daxil ola bilərsiniz. - notice_account_invalid_credentials: İstifadəçi adı və ya parolu düzgün deyildir - notice_account_lost_email_sent: Sizə yeni parolun seçimi ilə bağlı təlimatı əks etdirən məktub göndərilmişdir. - notice_account_password_updated: Parol müvəffəqiyyətlə yeniləndi. - notice_account_pending: "Sizin uçot qeydiniz yaradıldı və inzibatçının təsdiqini gözləyir." - notice_account_register_done: Uçot qeydi müvəffəqiyyətlə yaradıldı. Sizin uçot qeydinizin aktivləşdirilməsi üçün elektron poçtunuza göndərilən linkə keçin. - notice_account_unknown_email: Naməlum istifadəçi. - notice_account_updated: Uçot qeydi müvəffəqiyyətlə yeniləndi. - notice_account_wrong_password: Parol düzgün deyildir - notice_can_t_change_password: Bu uçot qeydi üçün xarici autentifikasiya mənbəyi istifadə olunur. Parolu dəyişmək mümkün deyildir. - notice_default_data_loaded: Susmaya görə konfiqurasiya yüklənilmişdir. - notice_email_error: "Məktubun göndərilməsi zamanı səhv baş vermişdi (%{value})" - notice_email_sent: "Məktub göndərilib %{value}" - notice_failed_to_save_issues: "Seçilən %{total} içərisindən %{count} bəndləri saxlamaq mümkün olmadı: %{ids}." - notice_failed_to_save_members: "İştirakçını (ları) yadda saxlamaq mümkün olmadı: %{errors}." - notice_feeds_access_key_reseted: Sizin Atom giriş açarınız sıfırlanmışdır. - notice_file_not_found: Daxil olmağa çalışdığınız səhifə mövcud deyildir və ya silinib. - notice_locking_conflict: İnformasiya digər istifadəçi tərəfindən yenilənib. - notice_no_issue_selected: "Heç bir tapşırıq seçilməyib! Xahiş edirik, redaktə etmək istədiyiniz tapşırığı qeyd edin." - notice_not_authorized: Sizin bu səhifəyə daxil olmaq hüququnuz yoxdur. - notice_successful_connection: Qoşulma müvəffəqiyyətlə yerinə yetirilib. - notice_successful_create: Yaratma müvəffəqiyyətlə yerinə yetirildi. - notice_successful_delete: Silinmə müvəffəqiyyətlə yerinə yetirildi. - notice_successful_update: Yeniləmə müvəffəqiyyətlə yerinə yetirildi. - notice_unable_delete_version: Variantı silmək mümkün olmadı. - - permission_add_issues: Tapşırıqların əlavə edilməsi - permission_add_issue_notes: Qeydlərin əlavə edilməsi - permission_add_issue_watchers: Nəzarətçilərin əlavə edilməsi - permission_add_messages: Məlumatların göndərilməsi - permission_browse_repository: Saxlayıcıya baxış - permission_comment_news: Xəbərlərə şərh - permission_commit_access: Saxlayıcıda faylların dəyişdirilməsi - permission_delete_issues: Tapşırıqların silinməsi - permission_delete_messages: Məlumatların silinməsi - permission_delete_own_messages: Şəxsi məlumatların silinməsi - permission_delete_wiki_pages: Wiki-səhifələrin silinməsi - permission_delete_wiki_pages_attachments: Bərkidilən faylların silinməsi - permission_edit_issue_notes: Qeydlərin redaktə edilməsi - permission_edit_issues: Tapşırıqların redaktə edilməsi - permission_edit_messages: Məlumatların redaktə edilməsi - permission_edit_own_issue_notes: Şəxsi qeydlərin redaktə edilməsi - permission_edit_own_messages: Şəxsi məlumatların redaktə edilməsi - permission_edit_own_time_entries: Şəxsi vaxt uçotunun redaktə edilməsi - permission_edit_project: Layihələrin redaktə edilməsi - permission_edit_time_entries: Vaxt uçotunun redaktə edilməsi - permission_edit_wiki_pages: Wiki-səhifənin redaktə edilməsi - permission_export_wiki_pages: Wiki-səhifənin ixracı - permission_log_time: Sərf olunan vaxtın uçotu - permission_view_changesets: Saxlayıcı dəyişikliklərinə baxış - permission_view_time_entries: Sərf olunan vaxta baxış - permission_manage_project_activities: Layihə üçün hərəkət tiplərinin idarə edilməsi - permission_manage_boards: Forumların idarə edilməsi - permission_manage_categories: Tapşırıq kateqoriyalarının idarə edilməsi - permission_manage_files: Faylların idarə edilməsi - permission_manage_issue_relations: Tapşırıq bağlantılarının idarə edilməsi - permission_manage_members: İştirakçıların idarə edilməsi - permission_manage_news: Xəbərlərin idarə edilməsi - permission_manage_public_queries: Ümumi sorğuların idarə edilməsi - permission_manage_repository: Saxlayıcının idarə edilməsi - permission_manage_subtasks: Alt tapşırıqların idarə edilməsi - permission_manage_versions: Variantların idarə edilməsi - permission_manage_wiki: Wiki-nin idarə edilməsi - permission_protect_wiki_pages: Wiki-səhifələrin bloklanması - permission_rename_wiki_pages: Wiki-səhifələrin adının dəyişdirilməsi - permission_save_queries: Sorğuların yadda saxlanılması - permission_select_project_modules: Layihə modulunun seçimi - permission_view_calendar: Təqvimə baxış - permission_view_documents: Sənədlərə baxış - permission_view_files: Fayllara baxış - permission_view_gantt: Qant diaqramına baxış - permission_view_issue_watchers: Nəzarətçilərin siyahılarına baxış - permission_view_messages: Məlumatlara baxış - permission_view_wiki_edits: Wiki tarixçəsinə baxış - permission_view_wiki_pages: Wiki-yə baxış - - project_module_boards: Forumlar - project_module_documents: Sənədlər - project_module_files: Fayllar - project_module_issue_tracking: Tapşırıqlar - project_module_news: Xəbərlər - project_module_repository: Saxlayıcı - project_module_time_tracking: Vaxtın uçotu - project_module_wiki: Wiki - project_module_gantt: Qant diaqramı - project_module_calendar: Təqvim - - setting_activity_days_default: Görülən işlərdə əks olunan günlərin sayı - setting_app_title: Əlavənin adı - setting_attachment_max_size: Yerləşdirmənin maksimal ölçüsü - setting_autofetch_changesets: Saxlayıcının dəyişikliklərini avtomatik izləmək - setting_autologin: Avtomatik giriş - setting_bcc_recipients: Gizli surətləri istifadə etmək (BCC) - setting_cache_formatted_text: Formatlaşdırılmış mətnin heşlənməsi - setting_commit_fix_keywords: Açar sözlərin təyini - setting_commit_ref_keywords: Axtarış üçün açar sözlər - setting_cross_project_issue_relations: Layihələr üzrə tapşırıqların kəsişməsinə icazə vermək - setting_date_format: Tarixin formatı - setting_default_language: Susmaya görə dil - setting_default_notification_option: Susmaya görə xəbərdarlıq üsulu - setting_default_projects_public: Yeni layihələr ümumaçıq hesab edilir - setting_diff_max_lines_displayed: diff üçün sətirlərin maksimal sayı - setting_display_subprojects_issues: Susmaya görə altlayihələrin əks olunması - setting_emails_footer: Məktubun sətiraltı qeydləri - setting_enabled_scm: Daxil edilən SCM - setting_feeds_limit: Atom axını üçün başlıqların sayının məhdudlaşdırılması - setting_file_max_size_displayed: Əks olunma üçün mətn faylının maksimal ölçüsü - setting_gravatar_enabled: İstifadəçi avatarını Gravatar-dan istifadə etmək - setting_host_name: Kompyuterin adı - setting_issue_list_default_columns: Susmaya görə tapşırıqların siyahısında əks oluna sütunlar - setting_issues_export_limit: İxrac olunan tapşırıqlar üzrə məhdudiyyətlər - setting_login_required: Autentifikasiya vacibdir - setting_mail_from: Çıxan e-poçt ünvanı - setting_mail_handler_api_enabled: Daxil olan məlumatlar üçün veb-servisi qoşmaq - setting_mail_handler_api_key: API açar - setting_openid: Giriş və qeydiyyat üçün OpenID izacə vermək - setting_per_page_options: Səhifə üçün qeydlərin sayı - setting_plain_text_mail: Yalnız sadə mətn (HTML olmadan) - setting_protocol: Protokol - setting_repository_log_display_limit: Dəyişikliklər jurnalında əks olunan redaksiyaların maksimal sayı - setting_self_registration: Özünüqeydiyyat - setting_sequential_project_identifiers: Layihələrin ardıcıl identifikatorlarını generasiya etmək - setting_sys_api_enabled: Saxlayıcının idarə edilməsi üçün veb-servisi qoşmaq - setting_text_formatting: Mətnin formatlaşdırılması - setting_time_format: Vaxtın formatı - setting_user_format: Adın əks olunma formatı - setting_welcome_text: Salamlama mətni - setting_wiki_compression: Wiki tarixçəsinin sıxlaşdırılması - - status_active: aktivdir - status_locked: bloklanıb - status_registered: qeydiyyatdan keçib - - text_are_you_sure: Siz əminsinizmi? - text_assign_time_entries_to_project: Qeydiyyata alınmış vaxtı layihəyə bərkitmək - text_caracters_maximum: "Maksimum %{count} simvol." - text_caracters_minimum: "%{count} simvoldan az olmamalıdır." - text_comma_separated: Bir neçə qiymət mümkündür (vergül vasitəsilə). - text_custom_field_possible_values_info: 'Hər sətirə bir qiymət' - text_default_administrator_account_changed: İnzibatçının uçot qeydi susmaya görə dəyişmişdir - text_destroy_time_entries_question: "Bu tapşırıq üçün sərf olunan vaxta görə %{hours} saat qeydiyyata alınıb. Siz nə etmək istəyirsiniz?" - text_destroy_time_entries: Qeydiyyata alınmış vaxtı silmək - text_diff_truncated: '... Bu diff məhduddur, çünki əks olunan maksimal ölçünü keçir.' - text_email_delivery_not_configured: "Poçt serveri ilə işin parametrləri sazlanmayıb və e-poçt ilə bildiriş funksiyası aktiv deyildir.\nSizin SMTP-server üçün parametrləri config/configuration.yml faylından sazlaya bilərsiniz. Dəyişikliklərin tətbiq edilməsi üçün əlavəni yenidən başladın." - text_enumeration_category_reassign_to: 'Onlara aşağıdakı qiymətləri təyin etmək:' - text_enumeration_destroy_question: "%{count} obyekt bu qiymətlə bağlıdır." - text_file_repository_writable: Qeydə giriş imkanı olan saxlayıcı - text_issue_added: "Yeni tapşırıq yaradılıb %{id} (%{author})." - text_issue_category_destroy_assignments: Kateqoriyanın təyinatını silmək - text_issue_category_destroy_question: "Bir neçə tapşırıq (%{count}) bu kateqoriya üçün təyin edilib. Siz nə etmək istəyirsiniz?" - text_issue_category_reassign_to: Bu kateqoriya üçün tapşırığı yenidən təyin etmək - text_issues_destroy_confirmation: 'Seçilən tapşırıqları silmək istədiyinizə əminsinizmi?' - text_issues_ref_in_commit_messages: Məlumatın mətnindən çıxış edərək tapşırıqların statuslarının tutuşdurulması və dəyişdirilməsi - text_issue_updated: "Tapşırıq %{id} yenilənib (%{author})." - text_journal_changed: "Parametr %{label} %{old} - %{new} dəyişib" - text_journal_deleted: "Parametrin %{old} qiyməti %{label} silinib" - text_journal_set_to: "%{label} parametri %{value} dəyişib" - text_length_between: "%{min} və %{max} simvollar arasındakı uzunluq." - text_load_default_configuration: Susmaya görə konfiqurasiyanı yükləmək - text_min_max_length_info: 0 məhdudiyyətlərin olmadığını bildirir - text_no_configuration_data: "Rollar, trekerlər, tapşırıqların statusları və operativ plan konfiqurasiya olunmayıblar.\nSusmaya görə konfiqurasiyanın yüklənməsi təkidlə xahiş olunur. Siz onu sonradan dəyişə bilərsiniz." - text_plugin_assets_writable: Modullar kataloqu qeyd üçün açıqdır - text_project_destroy_confirmation: Siz bu layihə və ona aid olan bütün informasiyanı silmək istədiyinizə əminsinizmi? - text_reassign_time_entries: 'Qeydiyyata alınmış vaxtı aşağıdakı tapşırığa keçir:' - text_regexp_info: "məsələn: ^[A-Z0-9]+$" - text_repository_usernames_mapping: "Saxlayıcının jurnalında tapılan adlarla bağlı olan Redmine istifadəçisini seçin və ya yeniləyin.\nEyni ad və e-poçta sahib olan istifadəçilər Redmine və saxlayıcıda avtomatik əlaqələndirilir." - text_minimagick_available: MiniMagick istifadəsi mümkündür (opsional olaraq) - text_select_mail_notifications: Elektron poçta bildirişlərin göndərilməsi seçim edəcəyiniz hərəkətlərdən asılıdır. - text_select_project_modules: 'Layihədə istifadə olunacaq modulları seçin:' - text_status_changed_by_changeset: "%{value} redaksiyada reallaşdırılıb." - text_subprojects_destroy_warning: "Altlayihələr: %{value} həmçinin silinəcək." - text_tip_issue_begin_day: tapşırığın başlanğıc tarixi - text_tip_issue_begin_end_day: elə həmin gün tapşırığın başlanğıc və bitmə tarixi - text_tip_issue_end_day: tapşırığın başa çatma tarixi - text_tracker_no_workflow: Bu treker üçün hərəkətlərin ardıcıllığı müəyyən ediməyib - text_unallowed_characters: Qadağan edilmiş simvollar - text_user_mail_option: "Seçilməyən layihələr üçün Siz yalnız baxdığınız və ya iştirak etdiyiniz layihələr barədə bildiriş alacaqsınız məsələn, müəllifi olduğunuz layihələr və ya o layihələr ki, Sizə təyin edilib)." - text_user_wrote: "%{value} yazıb:" - text_user_wrote_in: "%{value} yazıb (%{link}):" - text_wiki_destroy_confirmation: Siz bu Wiki və onun tərkibindəkiləri silmək istədiyinizə əminsinizmi? - text_workflow_edit: Vəziyyətlərin ardıcıllığını redaktə etmək üçün rol və trekeri seçin - - warning_attachments_not_saved: "faylın (ların) %{count} yadda saxlamaq mümkün deyildir." - text_wiki_page_destroy_question: Bu səhifə %{descendants} yaxın və çox yaxın səhifələrə malikdir. Siz nə etmək istəyirsiniz? - text_wiki_page_reassign_children: Cari səhifə üçün yaxın səhifələri yenidən təyin etmək - text_wiki_page_nullify_children: Yaxın səhifələri baş səhifələr etmək - text_wiki_page_destroy_children: Yaxın və çox yaxın səhifələri silmək - setting_password_min_length: Parolun minimal uzunluğu - field_group_by: Nəticələri qruplaşdırmaq - mail_subject_wiki_content_updated: "Wiki-səhifə '%{id}' yenilənmişdir" - label_wiki_content_added: Wiki-səhifə əlavə olunub - mail_subject_wiki_content_added: "Wiki-səhifə '%{id}' əlavə edilib" - mail_body_wiki_content_added: "%{author} Wiki-səhifəni '%{id}' əlavə edib." - label_wiki_content_updated: Wiki-səhifə yenilənib - mail_body_wiki_content_updated: "%{author} Wiki-səhifəni '%{id}' yeniləyib." - permission_add_project: Layihənin yaradılması - setting_new_project_user_role_id: Layihəni yaradan istifadəçiyə təyin olunan rol - label_view_all_revisions: Bütün yoxlamaları göstərmək - label_tag: Nişan - label_branch: Şöbə - error_no_tracker_in_project: Bu layihə ilə heç bir treker assosiasiya olunmayıb. Layihənin sazlamalarını yoxlayın. - error_no_default_issue_status: Susmaya görə tapşırıqların statusu müəyyən edilməyib. Sazlamaları yoxlayın (bax. "İnzibatçılıq -> Tapşırıqların statusu"). - label_group_plural: Qruplar - label_group: Qrup - label_group_new: Yeni qrup - label_time_entry_plural: Sərf olunan vaxt - text_journal_added: "%{label} %{value} əlavə edilib" - field_active: Aktiv - enumeration_system_activity: Sistemli - permission_delete_issue_watchers: Nəzarətçilərin silinməsi - version_status_closed: Bağlanıb - version_status_locked: bloklanıb - version_status_open: açıqdır - error_can_not_reopen_issue_on_closed_version: Bağlı varianta təyin edilən tapşırıq yenidən açıq ola bilməz - label_user_anonymous: Anonim - button_move_and_follow: Yerləşdirmək və keçid - setting_default_projects_modules: Yeni layihələr üçün susmaya görə daxil edilən modullar - setting_gravatar_default: Susmaya görə Gravatar təsviri - field_sharing: Birgə istifadə - label_version_sharing_hierarchy: Layihələrin iyerarxiyasına görə - label_version_sharing_system: bütün layihələr ilə - label_version_sharing_descendants: Alt layihələr ilə - label_version_sharing_tree: Layihələrin iyerarxiyası ilə - label_version_sharing_none: Birgə istifadə olmadan - error_can_not_archive_project: Bu layihə arxivləşdirilə bilməz - button_copy_and_follow: Surətini çıxarmaq və davam etmək - label_copy_source: Mənbə - setting_issue_done_ratio: Sahənin köməyi ilə tapşırığın hazırlığını nəzərə almaq - setting_issue_done_ratio_issue_status: Tapşırığın statusu - error_issue_done_ratios_not_updated: Tapşırıqların hazırlıq parametri yenilənməyib - error_workflow_copy_target: Məqsədə uyğun trekerləri və rolları seçin - setting_issue_done_ratio_issue_field: Tapşırığın hazırlıq səviyyəsi - label_copy_same_as_target: Məqsəddə olduğu kimi - label_copy_target: Məqsəd - notice_issue_done_ratios_updated: Parametr «hazırlıq» yenilənib. - error_workflow_copy_source: Cari trekeri və ya rolu seçin - label_update_issue_done_ratios: Tapşırığın hazırlıq səviyyəsini yeniləmək - setting_start_of_week: Həftənin birinci günü - label_api_access_key: API-yə giriş açarı - text_line_separated: Bİr neçə qiymət icazə verilib (hər sətirə bir qiymət). - label_revision_id: Yoxlama %{value} - permission_view_issues: Tapşırıqlara baxış - label_display_used_statuses_only: Yalnız bu trekerdə istifadə olunan statusları əks etdirmək - label_api_access_key_created_on: API-yə giriş açarı %{value} əvvəl aradılıb - label_feeds_access_key: Atom giriş açarı - notice_api_access_key_reseted: Sizin API giriş açarınız sıfırlanıb. - setting_rest_api_enabled: REST veb-servisini qoşmaq - button_show: Göstərmək - label_missing_api_access_key: API-yə giriş açarı mövcud deyildir - label_missing_feeds_access_key: Atom-ə giriş açarı mövcud deyildir - setting_mail_handler_body_delimiters: Bu sətirlərin birindən sonra məktubu qısaltmaq - permission_add_subprojects: Alt layihələrin yaradılması - label_subproject_new: Yeni alt layihə - text_own_membership_delete_confirmation: |- - Siz bəzi və ya bütün hüquqları silməyə çalışırsınız, nəticədə bu layihəni redaktə etmək hüququnu da itirə bilərsiniz. Davam etmək istədiyinizə əminsinizmi? - - label_close_versions: Başa çatmış variantları bağlamaq - label_board_sticky: Bərkidilib - label_board_locked: Bloklanıb - field_principal: Ad - text_zoom_out: Uzaqlaşdırmaq - text_zoom_in: Yaxınlaşdırmaq - notice_unable_delete_time_entry: Jurnalın qeydini silmək mümkün deyildir. - label_overall_spent_time: Cəmi sərf olunan vaxt - label_user_mail_option_none: Hadisə yoxdur - field_member_of_group: Təyin olunmuş qrup - field_assigned_to_role: Təyin olunmuş rol - notice_not_authorized_archived_project: Sorğulanan layihə arxivləşdirilib. - label_principal_search: "İstifadəçini və ya qrupu tapmaq:" - label_user_search: "İstifadəçini tapmaq:" - field_visible: Görünmə dərəcəsi - setting_emails_header: Məktubun başlığı - - setting_commit_logtime_activity_id: Vaxtın uçotu üçün görülən hərəkətlər - text_time_logged_by_changeset: "%{value} redaksiyada nəzərə alınıb." - setting_commit_logtime_enabled: Vaxt uçotunu qoşmaq - notice_gantt_chart_truncated: Əks oluna biləcək elementlərin maksimal sayı artdığına görə diaqram kəsiləcək (%{max}) - setting_gantt_items_limit: Qant diaqramında əks olunan elementlərin maksimal sayı - field_warn_on_leaving_unsaved: Yadda saxlanılmayan mətnin səhifəsi bağlanan zaman xəbərdarlıq etmək - text_warn_on_leaving_unsaved: Tərk etmək istədiyiniz cari səhifədə yadda saxlanılmayan və itə biləcək mətn vardır. - label_my_queries: Mənim yadda saxlanılan sorğularım - text_journal_changed_no_detail: "%{label} yenilənib" - label_news_comment_added: Xəbərə şərh əlavə olunub - button_expand_all: Hamısını aç - button_collapse_all: Hamısını çevir - label_additional_workflow_transitions_for_assignee: İstifadəçi icraçı olduğu zaman əlavə keçidlər - label_additional_workflow_transitions_for_author: İstifadəçi müəllif olduğu zaman əlavə keçidlər - label_bulk_edit_selected_time_entries: Sərf olunan vaxtın seçilən qeydlərinin kütləvi şəkildə dəyişdirilməsi - text_time_entries_destroy_confirmation: Siz sərf olunan vaxtın seçilən qeydlərini silmək istədiyinizə əminsinizmi? - label_role_anonymous: Anonim - label_role_non_member: İştirakçı deyil - label_issue_note_added: Qeyd əlavə olunub - label_issue_status_updated: Status yenilənib - label_issue_priority_updated: Prioritet yenilənib - label_issues_visibility_own: İstifadəçi üçün yaradılan və ya ona təyin olunan tapşırıqlar - field_issues_visibility: Tapşırıqların görünmə dərəcəsi - label_issues_visibility_all: Bütün tapşırıqlar - permission_set_own_issues_private: Şəxsi tapşırıqlar üçün görünmə dərəcəsinin (ümumi/şəxsi) qurulması - field_is_private: Şəxsi - permission_set_issues_private: Tapşırıqlar üçün görünmə dərəcəsinin (ümumi/şəxsi) qurulması - label_issues_visibility_public: Yalnız ümumi tapşırıqlar - text_issues_destroy_descendants_confirmation: Həmçinin %{count} tapşırıq (lar) silinəcək. - field_commit_logs_encoding: Saxlayıcıda şərhlərin kodlaşdırılması - field_scm_path_encoding: Yolun kodlaşdırılması - text_scm_path_encoding_note: "Susmaya görə: UTF-8" - field_path_to_repository: Saxlayıcıya yol - field_root_directory: Kök direktoriya - field_cvs_module: Modul - field_cvsroot: CVSROOT - text_mercurial_repository_note: Lokal saxlayıcı (məsələn, /hgrepo, c:\hgrepo) - text_scm_command: Komanda - text_scm_command_version: Variant - label_git_report_last_commit: Fayllar və direktoriyalar üçün son dəyişiklikləri göstərmək - text_scm_config: Siz config/configuration.yml faylında SCM komandasını sazlaya bilərsiniz. Xahiş olunur, bu faylın redaktəsindən sonra əlavəni işə salın. - text_scm_command_not_available: Variantların nəzarət sisteminin komandasına giriş mümkün deyildir. Xahiş olunur, inzibatçı panelindəki sazlamaları yoxlayın. - notice_issue_successful_create: Tapşırıq %{id} yaradılıb. - label_between: arasında - setting_issue_group_assignment: İstifadəçi qruplarına təyinata icazə vermək - label_diff: Fərq(diff) - text_git_repository_note: "Saxlama yerini göstərin (məs: /gitrepo, c:\\gitrepo)" - description_query_sort_criteria_direction: Çeşidləmə qaydası - description_project_scope: Layihənin həcmi - description_filter: Filtr - description_user_mail_notification: E-poçt Mail xəbərdarlıqlarının sazlaması - description_message_content: Mesajın kontenti - description_available_columns: Mövcud sütunlar - description_issue_category_reassign: Məsələnin kateqoriyasını seçin - description_search: Axtarış sahəsi - description_notes: Qeyd - description_choose_project: Layihələr - description_query_sort_criteria_attribute: Çeşidləmə meyarları - description_wiki_subpages_reassign: Yeni valideyn səhifəsini seçmək - description_selected_columns: Seçilmiş sütunlar - label_parent_revision: Valideyn - label_child_revision: Əsas - error_scm_annotate_big_text_file: Mətn faylının maksimal ölçüsü artdığına görə şərh mümkün deyildir. - setting_default_issue_start_date_to_creation_date: Yeni tapşırıqlar üçün cari tarixi başlanğıc tarixi kimi istifadə etmək - button_edit_section: Bu bölməni redaktə etmək - setting_repositories_encodings: Əlavələrin və saxlayıcıların kodlaşdırılması - description_all_columns: Bütün sütunlar - button_export: İxrac - label_export_options: "%{export_format} ixracın parametrləri" - error_attachment_too_big: Faylın maksimal ölçüsü artdığına görə bu faylı yükləmək mümkün deyildir (%{max_size}) - notice_failed_to_save_time_entries: "Səhv N %{ids}. %{total} girişdən %{count} yaddaşa saxlanıla bilmədi." - label_x_issues: - zero: 0 Tapşırıq - one: 1 Tapşırıq - few: "%{count} Tapşırıq" - many: "%{count} Tapşırıq" - other: "%{count} Tapşırıq" - label_repository_new: Yeni saxlayıcı - field_repository_is_default: Susmaya görə saxlayıcı - label_copy_attachments: Əlavənin surətini çıxarmaq - label_item_position: "%{position}/%{count}" - label_completed_versions: Başa çatdırılmış variantlar - text_project_identifier_info: Yalnız kiçik latın hərflərinə (a-z), rəqəmlərə, tire və çicgilərə icazə verilir.
    Yadda saxladıqdan sonra identifikatoru dəyişmək olmaz. - field_multiple: Çoxsaylı qiymətlər - setting_commit_cross_project_ref: Digər bütün layihələrdə tapşırıqları düzəltmək və istinad etmək - text_issue_conflict_resolution_add_notes: Qeydlərimi əlavə etmək və mənim dəyişikliklərimdən imtina etmək - text_issue_conflict_resolution_overwrite: Dəyişikliklərimi tətbiq etmək (əvvəlki bütün qeydlər yadda saxlanacaq, lakin bəzi qeydlər yenidən yazıla bilər) - notice_issue_update_conflict: Tapşırığı redaktə etdiyiniz zaman kimsə onu artıq dəyişib. - text_issue_conflict_resolution_cancel: Mənim dəyişikliklərimi ləğv etmək və tapşırığı yenidən göstərmək %{link} - permission_manage_related_issues: Əlaqəli tapşırıqların idarə edilməsi - field_auth_source_ldap_filter: LDAP filtri - label_search_for_watchers: Nəzarətçiləri axtarmaq - notice_account_deleted: "Sizin uçot qeydiniz tam olaraq silinib" - setting_unsubscribe: "İstifadəçilərə şəxsi uçot qeydlərini silməyə icazə vermək" - button_delete_my_account: "Mənim uçot qeydlərimi silmək" - text_account_destroy_confirmation: "Sizin uçot qeydiniz bir daha bərpa edilmədən tam olaraq silinəcək.\nDavam etmək istədiyinizə əminsinizmi?" - error_session_expired: Sizin sessiya bitmişdir. Xahiş edirik yenidən daxil olun. - text_session_expiration_settings: "Diqqət: bu sazlamaların dəyişməyi cari sessiyanın bağlanmasına çıxara bilər." - setting_session_lifetime: Sessiyanın maksimal Session maximum həyat müddəti - setting_session_timeout: Sessiyanın qeyri aktivlik müddəti - label_session_expiration: Sessiyanın bitməsi - permission_close_project: Layihəni bağla / yenidən aç - button_close: Bağla - button_reopen: Yenidən aç - project_status_active: aktiv - project_status_closed: bağlı - project_status_archived: arxiv - text_project_closed: Bu layihə bağlıdı və yalnız oxuma olar. - notice_user_successful_create: İstifadəçi %{id} yaradıldı. - field_core_fields: Standart sahələr - field_timeout: Zaman aşımı (saniyə ilə) - setting_thumbnails_enabled: Əlavələrin kiçik şəklini göstər - setting_thumbnails_size: Kiçik şəkillərin ölçüsü (piksel ilə) - label_status_transitions: Status keçidləri - label_fields_permissions: Sahələrin icazələri - label_readonly: Ancaq oxumaq üçün - label_required: Tələb olunur - text_repository_identifier_info: Yalnız kiçik latın hərflərinə (a-z), rəqəmlərə, tire və çicgilərə icazə verilir.
    Yadda saxladıqdan sonra identifikatoru dəyişmək olmaz. - field_board_parent: Ana forum - label_attribute_of_project: Layihə %{name} - label_attribute_of_author: Müəllif %{name} - label_attribute_of_assigned_to: Təyin edilib %{name} - label_attribute_of_fixed_version: Əsas versiya %{name} - label_copy_subtasks: Alt tapşırığın surətini çıxarmaq - label_cross_project_hierarchy: With project hierarchy - permission_edit_documents: Edit documents - button_hide: Hide - text_turning_multiple_off: If you disable multiple values, multiple values will be removed in order to preserve only one value per item. - label_any: any - label_cross_project_system: With all projects - label_last_n_weeks: last %{count} weeks - label_in_the_past_days: in the past - label_copied_to: Copied to - permission_set_notes_private: Set notes as private - label_in_the_next_days: in the next - label_attribute_of_issue: Issue's %{name} - label_any_issues_in_project: any issues in project - label_cross_project_descendants: With subprojects - field_private_notes: Private notes - setting_jsonp_enabled: Enable JSONP support - label_gantt_progress_line: Progress line - permission_add_documents: Add documents - permission_view_private_notes: View private notes - label_attribute_of_user: User's %{name} - permission_delete_documents: Delete documents - field_inherit_members: Inherit members - setting_cross_project_subtasks: Allow cross-project subtasks - label_no_issues_in_project: no issues in project - label_copied_from: Copied from - setting_non_working_week_days: Non-working days - label_any_issues_not_in_project: any issues not in project - label_cross_project_tree: With project tree - field_closed_on: Closed - field_generate_password: Generate password - setting_default_projects_tracker_ids: Default trackers for new projects - label_total_time: Cəmi - notice_account_not_activated_yet: You haven't activated your account yet. If you want - to receive a new activation email, please click this link. - notice_account_locked: Your account is locked. - label_hidden: Hidden - label_visibility_private: to me only - label_visibility_roles: to these roles only - label_visibility_public: to any users - field_must_change_passwd: Must change password at next logon - notice_new_password_must_be_different: The new password must be different from the - current password - setting_mail_handler_excluded_filenames: Exclude attachments by name - text_convert_available: ImageMagick convert available (optional) - label_link: Link - label_only: only - label_drop_down_list: drop-down list - label_checkboxes: checkboxes - label_link_values_to: Link values to URL - setting_force_default_language_for_anonymous: Force default language for anonymous - users - setting_force_default_language_for_loggedin: Force default language for logged-in - users - label_custom_field_select_type: Select the type of object to which the custom field - is to be attached - label_issue_assigned_to_updated: Assignee updated - label_check_for_updates: Check for updates - label_latest_compatible_version: Latest compatible version - label_unknown_plugin: Unknown plugin - label_radio_buttons: radio buttons - label_group_anonymous: Anonymous users - label_group_non_member: Non member users - label_add_projects: Add projects - field_default_status: Default status - text_subversion_repository_note: 'Examples: file:///, http://, https://, svn://, svn+[tunnelscheme]://' - field_users_visibility: Users visibility - label_users_visibility_all: All active users - label_users_visibility_members_of_visible_projects: Members of visible projects - label_edit_attachments: Edit attached files - setting_link_copied_issue: Link issues on copy - label_link_copied_issue: Link copied issue - label_ask: Ask - label_search_attachments_yes: Search attachment filenames and descriptions - label_search_attachments_no: Do not search attachments - label_search_attachments_only: Search attachments only - label_search_open_issues_only: Open issues only - field_address: e-poçt - setting_max_additional_emails: Maximum number of additional email addresses - label_email_address_plural: Emails - label_email_address_add: Add email address - label_enable_notifications: Enable notifications - label_disable_notifications: Disable notifications - setting_search_results_per_page: Search results per page - label_blank_value: blank - permission_copy_issues: Copy issues - error_password_expired: Your password has expired or the administrator requires you - to change it. - field_time_entries_visibility: Time logs visibility - setting_password_max_age: Require password change after - label_parent_task_attributes: Parent tasks attributes - label_parent_task_attributes_derived: Calculated from subtasks - label_parent_task_attributes_independent: Independent of subtasks - label_time_entries_visibility_all: All time entries - label_time_entries_visibility_own: Time entries created by the user - label_member_management: Member management - label_member_management_all_roles: All roles - label_member_management_selected_roles_only: Only these roles - label_password_required: Confirm your password to continue - label_total_spent_time: Cəmi sərf olunan vaxt - notice_import_finished: "%{count} items have been imported" - notice_import_finished_with_errors: "%{count} out of %{total} items could not be imported" - error_invalid_file_encoding: The file is not a valid %{encoding} encoded file - error_invalid_csv_file_or_settings: The file is not a CSV file or does not match the - settings below - error_can_not_read_import_file: An error occurred while reading the file to import - permission_import_issues: Import issues - label_import_issues: Import issues - label_select_file_to_import: Select the file to import - label_fields_separator: Field separator - label_fields_wrapper: Field wrapper - label_encoding: Encoding - label_comma_char: Comma - label_semi_colon_char: Semicolon - label_quote_char: Quote - label_double_quote_char: Double quote - label_fields_mapping: Fields mapping - label_file_content_preview: File content preview - label_create_missing_values: Create missing values - button_import: Import - field_total_estimated_hours: Total estimated time - label_api: API - label_total_plural: Totals - label_assigned_issues: Assigned issues - label_field_format_enumeration: Key/value list - label_f_hour_short: '%{value} h' - field_default_version: Default version - error_attachment_extension_not_allowed: Attachment extension %{extension} is not allowed - setting_attachment_extensions_allowed: Allowed extensions - setting_attachment_extensions_denied: Disallowed extensions - label_any_open_issues: any open issues - label_no_open_issues: no open issues - label_default_values_for_new_users: Default values for new users - error_ldap_bind_credentials: Invalid LDAP Account/Password - setting_sys_api_key: API açar - setting_lost_password: Parolun bərpası - mail_subject_security_notification: Security notification - mail_body_security_notification_change: ! '%{field} was changed.' - mail_body_security_notification_change_to: ! '%{field} was changed to %{value}.' - mail_body_security_notification_add: ! '%{field} %{value} was added.' - mail_body_security_notification_remove: ! '%{field} %{value} was removed.' - mail_body_security_notification_notify_enabled: Email address %{value} now receives - notifications. - mail_body_security_notification_notify_disabled: Email address %{value} no longer - receives notifications. - mail_body_settings_updated: ! 'The following settings were changed:' - field_remote_ip: IP address - label_wiki_page_new: New wiki page - label_relations: Relations - button_filter: Filter - mail_body_password_updated: Your password has been changed. - label_no_preview: No preview available - error_no_tracker_allowed_for_new_issue_in_project: The project doesn't have any trackers - for which you can create an issue - label_tracker_all: All trackers - label_new_project_issue_tab_enabled: Display the "New issue" tab - setting_new_item_menu_tab: Project menu tab for creating new objects - label_new_object_tab_enabled: Display the "+" drop-down - error_no_projects_with_tracker_allowed_for_new_issue: There are no projects with trackers - for which you can create an issue - field_textarea_font: Font used for text areas - label_font_default: Default font - label_font_monospace: Monospaced font - label_font_proportional: Proportional font - setting_timespan_format: Time span format - label_table_of_contents: Table of contents - setting_commit_logs_formatting: Apply text formatting to commit messages - setting_mail_handler_enable_regex: Enable regular expressions - error_move_of_child_not_possible: 'Subtask %{child} could not be moved to the new - project: %{errors}' - error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted: Spent time cannot - be reassigned to an issue that is about to be deleted - setting_timelog_required_fields: Required fields for time logs - label_attribute_of_object: '%{object_name}''s %{name}' - label_user_mail_option_only_assigned: Only for things I watch or I am assigned to - label_user_mail_option_only_owner: Only for things I watch or I am the owner of - warning_fields_cleared_on_bulk_edit: Changes will result in the automatic deletion - of values from one or more fields on the selected objects - field_updated_by: Updated by - field_last_updated_by: Last updated by - field_full_width_layout: Full width layout - label_last_notes: Last notes - field_digest: Checksum - field_default_assigned_to: Default assignee - setting_show_custom_fields_on_registration: Show custom fields on registration - permission_view_news: View news - label_no_preview_alternative_html: No preview available. %{link} the file instead. - label_no_preview_download: Download - setting_close_duplicate_issues: Close duplicate issues automatically - error_exceeds_maximum_hours_per_day: Cannot log more than %{max_hours} hours on the - same day (%{logged_hours} hours have already been logged) - setting_time_entry_list_defaults: Timelog list defaults - setting_timelog_accept_0_hours: Accept time logs with 0 hours - setting_timelog_max_hours_per_day: Maximum hours that can be logged per day and user - label_x_revisions: "%{count} revisions" - error_can_not_delete_auth_source: This authentication mode is in use and cannot be - deleted. - button_actions: Actions - mail_body_lost_password_validity: Please be aware that you may change the password - only once using this link. - text_login_required_html: When not requiring authentication, public projects and their - contents are openly available on the network. You can edit - the applicable permissions. - label_login_required_yes: 'Yes' - label_login_required_no: No, allow anonymous access to public projects - text_project_is_public_non_member: Public projects and their contents are available - to all logged-in users. - text_project_is_public_anonymous: Public projects and their contents are openly available - on the network. - label_version_and_files: Versions (%{count}) and Files - label_ldap: LDAP - label_ldaps_verify_none: LDAPS (without certificate check) - label_ldaps_verify_peer: LDAPS - label_ldaps_warning: It is recommended to use an encrypted LDAPS connection with certificate - check to prevent any manipulation during the authentication process. - label_nothing_to_preview: Nothing to preview - error_token_expired: This password recovery link has expired, please try again. - error_spent_on_future_date: Cannot log time on a future date - setting_timelog_accept_future_dates: Accept time logs on future dates - label_delete_link_to_subtask: Əlaqəni silmək - error_not_allowed_to_log_time_for_other_users: You are not allowed to log time - for other users - permission_log_time_for_other_users: Log spent time for other users - label_tomorrow: tomorrow - label_next_week: next week - label_next_month: next month - text_role_no_workflow: No workflow defined for this role - text_status_no_workflow: No tracker uses this status in the workflows - setting_mail_handler_preferred_body_part: Preferred part of multipart (HTML) emails - setting_show_status_changes_in_mail_subject: Show status changes in issue mail notifications - subject - label_inherited_from_parent_project: Inherited from parent project - label_inherited_from_group: Inherited from group %{name} - label_trackers_description: Trackers description - label_open_trackers_description: View all trackers description - label_preferred_body_part_text: Text - label_preferred_body_part_html: HTML (experimental) - field_parent_issue_subject: Parent task subject - permission_edit_own_issues: Edit own issues - text_select_apply_tracker: Select tracker - label_updated_issues: Updated issues - text_avatar_server_config_html: The current avatar server is %{url}. - You can configure it in config/configuration.yml. - setting_gantt_months_limit: Maximum number of months displayed on the gantt chart - permission_import_time_entries: Import time entries - label_import_notifications: Send email notifications during the import - text_gs_available: ImageMagick PDF support available (optional) - field_recently_used_projects: Number of recently used projects in jump box - label_optgroup_bookmarks: Bookmarks - label_optgroup_others: Other projects - label_optgroup_recents: Recently used - button_project_bookmark: Add bookmark - button_project_bookmark_delete: Remove bookmark - field_history_default_tab: Issue's history default tab - label_issue_history_properties: Property changes - label_issue_history_notes: Notes - label_last_tab_visited: Last visited tab - field_unique_id: Unique ID - text_no_subject: no subject - setting_password_required_char_classes: Required character classes for passwords - label_password_char_class_uppercase: uppercase letters - label_password_char_class_lowercase: lowercase letters - label_password_char_class_digits: digits - label_password_char_class_special_chars: special characters - text_characters_must_contain: Must contain %{character_classes}. - label_starts_with: starts with - label_ends_with: ends with - label_issue_fixed_version_updated: Target version updated - setting_project_list_defaults: Projects list defaults - label_display_type: Display results as - label_display_type_list: List - label_display_type_board: Board - label_my_bookmarks: My bookmarks - label_import_time_entries: Import time entries diff --git a/config/locales/bg.yml b/config/locales/bg.yml deleted file mode 100644 index 0e0ea32..0000000 --- a/config/locales/bg.yml +++ /dev/null @@ -1,1289 +0,0 @@ -# Bulgarian translation by Nikolay Solakov and Ivan Cenov -bg: - # Text direction: Left-to-Right (ltr) or Right-to-Left (rtl) - direction: ltr - date: - formats: - # Use the strftime parameters for formats. - # When no format has been given, it uses default. - # You can provide other formats here if you like! - default: "%d-%m-%Y" - short: "%b %d" - long: "%B %d, %Y" - - day_names: [Неделя, Понеделник, Вторник, Сряда, Четвъртък, Петък, Събота] - abbr_day_names: [Нед, Пон, Вто, Сря, Чет, Пет, Съб] - - # Don't forget the nil at the beginning; there's no such thing as a 0th month - month_names: [~, Януари, Февруари, Март, Април, Май, Юни, Юли, Август, Септември, Октомври, Ноември, Декември] - abbr_month_names: [~, Яну, Фев, Мар, Апр, Май, Юни, Юли, Авг, Сеп, Окт, Ное, Дек] - # Used in date_select and datime_select. - order: - - :year - - :month - - :day - - time: - formats: - default: "%a, %d %b %Y %H:%M:%S %z" - time: "%H:%M" - short: "%d %b %H:%M" - long: "%B %d, %Y %H:%M" - am: "am" - pm: "pm" - - datetime: - distance_in_words: - half_a_minute: "half a minute" - less_than_x_seconds: - one: "по-малко от 1 секунда" - other: "по-малко от %{count} секунди" - x_seconds: - one: "1 секунда" - other: "%{count} секунди" - less_than_x_minutes: - one: "по-малко от 1 минута" - other: "по-малко от %{count} минути" - x_minutes: - one: "1 минута" - other: "%{count} минути" - about_x_hours: - one: "около 1 час" - other: "около %{count} часа" - x_hours: - one: "1 час" - other: "%{count} часа" - x_days: - one: "1 ден" - other: "%{count} дена" - about_x_months: - one: "около 1 месец" - other: "около %{count} месеца" - x_months: - one: "1 месец" - other: "%{count} месеца" - about_x_years: - one: "около 1 година" - other: "около %{count} години" - over_x_years: - one: "над 1 година" - other: "над %{count} години" - almost_x_years: - one: "почти 1 година" - other: "почти %{count} години" - - number: - format: - separator: "." - delimiter: "" - precision: 3 - - human: - format: - delimiter: "" - precision: 3 - storage_units: - format: "%n %u" - units: - byte: - one: байт - other: байта - kb: "KB" - mb: "MB" - gb: "GB" - tb: "TB" - -# Used in array.to_sentence. - support: - array: - sentence_connector: "и" - skip_last_comma: false - - activerecord: - errors: - template: - header: - one: "1 грешка попречи този %{model} да бъде записан" - other: "%{count} грешки попречиха този %{model} да бъде записан" - messages: - inclusion: "не съществува в списъка" - exclusion: "е запазено" - invalid: "е невалидно" - confirmation: "липсва одобрение" - accepted: "трябва да се приеме" - empty: "не може да е празно" - blank: "не може да е празно" - too_long: "е прекалено дълго" - too_short: "е прекалено късо" - wrong_length: "е с грешна дължина" - taken: "вече съществува" - not_a_number: "не е число" - not_a_date: "е невалидна дата" - greater_than: "трябва да бъде по-голям[a/о] от %{count}" - greater_than_or_equal_to: "трябва да бъде по-голям[a/о] от или равен[a/o] на %{count}" - equal_to: "трябва да бъде равен[a/o] на %{count}" - less_than: "трябва да бъде по-малък[a/o] от %{count}" - less_than_or_equal_to: "трябва да бъде по-малък[a/o] от или равен[a/o] на %{count}" - odd: "трябва да бъде нечетен[a/o]" - even: "трябва да бъде четен[a/o]" - greater_than_start_date: "трябва да е след началната дата" - not_same_project: "не е от същия проект" - circular_dependency: "Тази релация ще доведе до безкрайна зависимост" - cant_link_an_issue_with_a_descendant: "Една задача не може да бъде свързвана към своя подзадача" - earlier_than_minimum_start_date: "не може да бъде по-рано от %{date} поради предхождащи задачи" - not_a_regexp: "не е валиден регулярен израз" - open_issue_with_closed_parent: "Отворена задача не може да бъде асоциирана към затворена родителска задача" - must_contain_uppercase: "трябва да съдържа големи букви (A-Z)" - must_contain_lowercase: "трябва да съдържа малки букви (a-z)" - must_contain_digits: "трябва да съдържа цифри (0-9)" - must_contain_special_chars: "трябва да съдържа специални символи (!, $, %, ...)" - - actionview_instancetag_blank_option: Изберете - - general_text_No: 'Не' - general_text_Yes: 'Да' - general_text_no: 'не' - general_text_yes: 'да' - general_lang_name: 'Bulgarian (Български)' - general_csv_separator: ',' - general_csv_decimal_separator: '.' - general_csv_encoding: UTF-8 - general_pdf_fontname: freesans - general_pdf_monospaced_fontname: freemono - general_first_day_of_week: '1' - - notice_account_updated: Профилът е обновен успешно. - notice_account_invalid_credentials: Невалиден потребител или парола. - notice_account_password_updated: Паролата е успешно променена. - notice_account_wrong_password: Грешна парола - notice_account_register_done: Профилът е създаден успешно. E-mail, съдържащ инструкции за активиране на профила - е изпратен на %{email}. - notice_account_unknown_email: Непознат e-mail. - notice_account_not_activated_yet: Вие не сте активирали вашия профил все още. Ако искате да - получите нов e-mail за активиране, моля натиснете тази връзка. - notice_account_locked: Вашият профил е блокиран. - notice_can_t_change_password: Този профил е с външен метод за оторизация. Невъзможна смяна на паролата. - notice_account_lost_email_sent: Изпратен ви е e-mail с инструкции за избор на нова парола. - notice_account_activated: Профилът ви е активиран. Вече може да влезете в Redmine. - notice_successful_create: Успешно създаване. - notice_successful_update: Успешно обновяване. - notice_successful_delete: Успешно изтриване. - notice_successful_connection: Успешно свързване. - notice_file_not_found: Несъществуваща или преместена страница. - notice_locking_conflict: Друг потребител променя тези данни в момента. - notice_not_authorized: Нямате право на достъп до тази страница. - notice_not_authorized_archived_project: Проектът, който се опитвате да видите е архивиран. Ако смятате, че това не е правилно, обърнете се към администратора за разархивиране. - notice_email_sent: "Изпратен e-mail на %{value}" - notice_email_error: "Грешка при изпращане на e-mail (%{value})" - notice_feeds_access_key_reseted: Вашия ключ за Atom достъп беше променен. - notice_api_access_key_reseted: Вашият API ключ за достъп беше изчистен. - notice_failed_to_save_issues: "Неуспешен запис на %{count} задачи от %{total} избрани: %{ids}." - notice_failed_to_save_time_entries: "Невъзможност за запис на %{count} записа за използвано време от %{total} избрани: %{ids}." - notice_failed_to_save_members: "Невъзможност за запис на член(ове): %{errors}." - notice_no_issue_selected: "Няма избрани задачи." - notice_account_pending: "Профилът Ви е създаден и очаква одобрение от администратор." - notice_default_data_loaded: Примерната информация е заредена успешно. - notice_unable_delete_version: Невъзможност за изтриване на версия - notice_unable_delete_time_entry: Невъзможност за изтриване на запис за използвано време. - notice_issue_done_ratios_updated: Обновен процент на завършените задачи. - notice_gantt_chart_truncated: Мрежовият график е съкратен, понеже броят на обектите, които могат да бъдат показани е твърде голям (%{max}) - notice_issue_successful_create: Задача %{id} е създадена. - notice_issue_update_conflict: Задачата е била променена от друг потребител, докато вие сте я редактирали. - notice_account_deleted: Вашият профил беше премахнат без възможност за възстановяване. - notice_user_successful_create: Потребител %{id} е създаден. - notice_new_password_must_be_different: Новата парола трябва да бъде различна от сегашната парола - notice_import_finished: "%{count} обекта бяха импортирани" - notice_import_finished_with_errors: "%{count} от общо %{total} обекта не бяха инпортирани" - error_can_t_load_default_data: "Грешка при зареждане на началната информация: %{value}" - error_scm_not_found: Несъществуващ обект в хранилището. - error_scm_command_failed: "Грешка при опит за комуникация с хранилище: %{value}" - error_scm_annotate: "Обектът не съществува или не може да бъде анотиран." - error_scm_annotate_big_text_file: "Файлът не може да бъде анотиран, понеже надхвърля максималния размер за текстови файлове." - error_issue_not_found_in_project: 'Задачата не е намерена или не принадлежи на този проект' - error_no_tracker_in_project: Няма асоциирани тракери с този проект. Проверете настройките на проекта. - error_no_default_issue_status: Няма установено подразбиращо се състояние за задачите. Моля проверете вашата конфигурация (Вижте "Администрация -> Състояния на задачи"). - error_can_not_delete_custom_field: Невъзможност за изтриване на потребителско поле - error_can_not_delete_tracker: Този тракер съдържа задачи и не може да бъде изтрит. - error_can_not_remove_role: Тази роля се използва и не може да бъде изтрита. - error_can_not_reopen_issue_on_closed_version: Задача, асоциирана със затворена версия не може да бъде отворена отново - error_can_not_archive_project: Този проект не може да бъде архивиран - error_issue_done_ratios_not_updated: Процентът на завършените задачи не е обновен. - error_workflow_copy_source: Моля изберете source тракер или роля - error_workflow_copy_target: Моля изберете тракер(и) и роля (роли). - error_unable_delete_issue_status: Невъзможност за изтриване на състояние на задача (%{value}) - error_unable_to_connect: Невъзможност за свързване с (%{value}) - error_attachment_too_big: Този файл не може да бъде качен, понеже надхвърля максималната възможна големина (%{max_size}) - error_session_expired: Вашата сесия е изтекла. Моля влезете в Redmine отново. - error_token_expired: Връзката за възстановяване на паролата вече е невалидна. Опитайте отново. - warning_attachments_not_saved: "%{count} файла не бяха записани." - error_password_expired: Вашата парола е с изтекъл срок или администраторът изисква да я смените. - error_invalid_file_encoding: Файлът няма валидно %{encoding} кодиране. - error_invalid_csv_file_or_settings: Файлът не е CSV файл или не съответства на зададеното по-долу - error_can_not_read_import_file: Грешка по време на четене на импортирания файл - error_attachment_extension_not_allowed: Файлове от тип %{extension} не са позволени - error_ldap_bind_credentials: Невалидни LDAP име/парола - error_no_tracker_allowed_for_new_issue_in_project: Проектът няма тракери, за които да създавате задачи - error_no_projects_with_tracker_allowed_for_new_issue: Няма проекти с тракери за които можете да създавате задачи - error_move_of_child_not_possible: 'Подзадача %{child} не беше преместена в новия проект: %{errors}' - error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted: Употребеното време не може да бъде прехвърлено на задача, която ще бъде изтрита - warning_fields_cleared_on_bulk_edit: Промените ще предизвикат автоматично изтриване на стойности от едно или повече полета на избраните обекти - error_exceeds_maximum_hours_per_day: Не можете да запишете повече от %{max_hours} часа на един ден (%{logged_hours} часове вече са записани) - error_can_not_delete_auth_source: Този режим за идентификация се използва и не може да бъде премахнат. - error_spent_on_future_date: Не е възможно да се отчете изразходвано време на дата в бъдещето - error_not_allowed_to_log_time_for_other_users: Вие нямате разрешение да записвате изразходвано време за други потребители - - mail_subject_lost_password: "Вашата парола (%{value})" - mail_body_lost_password: 'За да смените паролата си, използвайте следния линк:' - mail_body_lost_password_validity: Моля имайте предвид, че можете да използвате тази връзка само един път, за да промените паролата. - mail_subject_register: "Активация на профил (%{value})" - mail_body_register: 'За да активирате профила си използвайте следния линк:' - mail_body_account_information_external: "Можете да използвате вашия %{value} профил за вход." - mail_body_account_information: Информацията за профила ви - mail_subject_account_activation_request: "Заявка за активиране на профил в %{value}" - mail_body_account_activation_request: "Има новорегистриран потребител (%{value}), очакващ вашето одобрение:" - mail_subject_reminder: "%{count} задачи с краен срок с следващите %{days} дни" - mail_body_reminder: "%{count} задачи, назначени на вас са с краен срок в следващите %{days} дни:" - mail_subject_wiki_content_added: "Wiki страницата '%{id}' беше добавена" - mail_body_wiki_content_added: Wiki страницата '%{id}' беше добавена от %{author}. - mail_subject_wiki_content_updated: "Wiki страницата '%{id}' беше обновена" - mail_body_wiki_content_updated: Wiki страницата '%{id}' беше обновена от %{author}. - mail_subject_security_notification: Известие за промяна в сигурността - mail_body_security_notification_change: ! '%{field} беше променено.' - mail_body_security_notification_change_to: ! '%{field} беше променено на %{value}.' - mail_body_security_notification_add: ! '%{field} %{value} беше добавено.' - mail_body_security_notification_remove: ! '%{field} %{value} беше премахнато.' - mail_body_security_notification_notify_enabled: Имейл адрес %{value} вече получава известия. - mail_body_security_notification_notify_disabled: Имейл адрес %{value} вече не получава известия. - mail_body_settings_updated: ! 'Изменения в конфигурацията:' - mail_body_password_updated: Вашата парола е сменена. - - field_name: Име - field_description: Описание - field_summary: Анотация - field_is_required: Задължително - field_firstname: Име - field_lastname: Фамилия - field_mail: Имейл - field_address: Имейл - field_filename: Файл - field_filesize: Големина - field_downloads: Изтеглени файлове - field_author: Автор - field_created_on: От дата - field_updated_on: Обновена - field_closed_on: Затворена - field_field_format: Тип - field_is_for_all: За всички проекти - field_possible_values: Възможни стойности - field_regexp: Регулярен израз - field_min_length: Мин. дължина - field_max_length: Макс. дължина - field_value: Стойност - field_category: Категория - field_title: Заглавие - field_project: Проект - field_issue: Задача - field_status: Състояние - field_notes: Бележка - field_is_closed: Затворена задача - field_is_default: Състояние по подразбиране - field_tracker: Тракер - field_subject: Заглавие - field_due_date: Крайна дата - field_assigned_to: Възложена на - field_priority: Приоритет - field_fixed_version: Планувана версия - field_user: Потребител - field_principal: Principal - field_role: Роля - field_homepage: Начална страница - field_is_public: Публичен - field_parent: Подпроект на - field_is_in_roadmap: Да се вижда ли в Пътна карта - field_login: Потребител - field_mail_notification: Известия по пощата - field_admin: Администратор - field_last_login_on: Последно свързване - field_language: Език - field_effective_date: Дата - field_password: Парола - field_new_password: Нова парола - field_password_confirmation: Потвърждение - field_version: Версия - field_type: Тип - field_host: Хост - field_port: Порт - field_account: Профил - field_base_dn: Base DN - field_attr_login: Атрибут Login - field_attr_firstname: Атрибут Първо име (Firstname) - field_attr_lastname: Атрибут Фамилия (Lastname) - field_attr_mail: Атрибут Email - field_onthefly: Динамично създаване на потребител - field_start_date: Начална дата - field_done_ratio: "% Прогрес" - field_auth_source: Начин на оторизация - field_hide_mail: Скрий e-mail адреса ми - field_comments: Коментар - field_url: Адрес - field_start_page: Начална страница - field_subproject: Подпроект - field_hours: Часове - field_activity: Дейност - field_spent_on: Дата - field_identifier: Идентификатор - field_is_filter: Използва се за филтър - field_issue_to: Свързана задача - field_delay: Отместване - field_assignable: Възможно е възлагане на задачи за тази роля - field_redirect_existing_links: Пренасочване на съществуващи линкове - field_estimated_hours: Изчислено време - field_column_names: Колони - field_time_entries: Log time - field_time_zone: Часова зона - field_searchable: С възможност за търсене - field_default_value: Стойност по подразбиране - field_comments_sorting: Сортиране на коментарите - field_parent_title: Родителска страница - field_editable: Editable - field_watcher: Наблюдател - field_identity_url: OpenID URL - field_content: Съдържание - field_group_by: Групиране на резултатите по - field_sharing: Sharing - field_parent_issue: Родителска задача - field_parent_issue_subject: Заглавие на родителската задача - field_member_of_group: Член на група - field_assigned_to_role: Assignee's role - field_text: Текстово поле - field_visible: Видим - field_warn_on_leaving_unsaved: Предупреди ме, когато напускам страница с незаписано съдържание - field_issues_visibility: Видимост на задачите - field_is_private: Лична - field_commit_logs_encoding: Кодова таблица на съобщенията при поверяване - field_scm_path_encoding: Кодова таблица на пътищата (path) - field_path_to_repository: Път до хранилището - field_root_directory: Коренна директория (папка) - field_cvsroot: CVSROOT - field_cvs_module: Модул - field_repository_is_default: Главно хранилище - field_multiple: Избор на повече от една стойност - field_auth_source_ldap_filter: LDAP филтър - field_core_fields: Стандартни полета - field_timeout: Таймаут (в секунди) - field_board_parent: Родителски форум - field_private_notes: Лични бележки - field_inherit_members: Наследяване на членовете на родителския проект - field_generate_password: Генериране на парола - field_must_change_passwd: Паролата трябва да бъде сменена при следващото влизане в Redmine - field_default_status: Състояние по подразбиране - field_users_visibility: Видимост на потребителите - field_time_entries_visibility: Видимост на записи за използвано време - field_total_estimated_hours: Общо изчислено време - field_default_version: Версия по подразбиране - field_remote_ip: IP адрес - field_textarea_font: Шрифт за текстови блокове - field_updated_by: Обновено от - field_last_updated_by: Последно обновено от - field_full_width_layout: Пълна широчина - field_digest: Контролна сума - field_default_assigned_to: Назначение по подразбиране - field_recently_used_projects: Брой на последно използваните проекти в списъка за бърз избор на проекти - field_history_default_tab: Таб по подразбиране в историята на задачите - field_unique_id: Уникален ID - - setting_app_title: Заглавие - setting_welcome_text: Допълнителен текст - setting_default_language: Език по подразбиране - setting_login_required: Изискване за вход в Redmine - setting_self_registration: Регистрация от потребители - setting_show_custom_fields_on_registration: Показване на потребителските полета при регистрацията - setting_attachment_max_size: Максимална големина на прикачен файл - setting_issues_export_limit: Максимален брой задачи за експорт - setting_mail_from: E-mail адрес за емисии - setting_bcc_recipients: Получатели на скрито копие (bcc) - setting_plain_text_mail: само чист текст (без HTML) - setting_host_name: Хост - setting_text_formatting: Форматиране на текста - setting_wiki_compression: Компресиране на Wiki историята - setting_feeds_limit: Максимален брой записи в ATOM емисии - setting_default_projects_public: Новите проекти са публични по подразбиране - setting_autofetch_changesets: Автоматично извличане на ревизиите - setting_sys_api_enabled: Разрешаване на WS за управление - setting_commit_ref_keywords: Отбелязващи ключови думи - setting_commit_fix_keywords: Приключващи ключови думи - setting_autologin: Автоматичен вход - setting_date_format: Формат на датата - setting_time_format: Формат на часа - setting_timespan_format: Формат на интервал от време - setting_cross_project_issue_relations: Релации на задачи между проекти - setting_cross_project_subtasks: Подзадачи от други проекти - setting_issue_list_default_columns: Показвани колони по подразбиране - setting_repositories_encodings: Кодова таблица на прикачените файлове и хранилищата - setting_emails_header: Email header - setting_emails_footer: Подтекст за e-mail - setting_protocol: Протокол - setting_per_page_options: Опции за страниране - setting_user_format: Потребителски формат - setting_activity_days_default: Брой дни показвани на таб Дейност - setting_display_subprojects_issues: Задачите от подпроектите по подразбиране се показват в главните проекти - setting_enabled_scm: Разрешена SCM - setting_mail_handler_body_delimiters: Отрязване на e-mail-ите след един от тези редове - setting_mail_handler_enable_regex: Разрешаванен на регулярни изрази - setting_mail_handler_api_enabled: Разрешаване на WS за входящи e-mail-и - setting_mail_handler_api_key: API ключ за входящи e-mail-и - setting_mail_handler_preferred_body_part: Предпочитана част от multipart (HTML) имейли - setting_sys_api_key: API ключ за хранилища - setting_sequential_project_identifiers: Генериране на последователни проектни идентификатори - setting_gravatar_enabled: Използване на портребителски икони от Gravatar - setting_gravatar_default: Подразбиращо се изображение от Gravatar - setting_diff_max_lines_displayed: Максимален брой показвани diff редове - setting_file_max_size_displayed: Максимален размер на текстовите файлове, показвани inline - setting_repository_log_display_limit: Максимален брой на показванете ревизии в лог файла - setting_openid: Рарешаване на OpenID вход и регистрация - setting_password_max_age: Изискване за смяна на паролата след - setting_password_min_length: Минимална дължина на парола - setting_password_required_char_classes: Задължителни символни класове за пароли - setting_lost_password: Забравена парола - setting_new_project_user_role_id: Роля, давана на потребител, създаващ проекти, който не е администратор - setting_default_projects_modules: Активирани модули по подразбиране за нов проект - setting_issue_done_ratio: Изчисление на процента на готови задачи с - setting_issue_done_ratio_issue_field: Използване на поле '% Прогрес' - setting_issue_done_ratio_issue_status: Използване на състоянието на задачите - setting_start_of_week: Първи ден на седмицата - setting_rest_api_enabled: Разрешаване на REST web сървис - setting_cache_formatted_text: Кеширане на форматираните текстове - setting_default_notification_option: Подразбиращ се начин за известяване - setting_commit_logtime_enabled: Разрешаване на отчитането на работното време - setting_commit_logtime_activity_id: Дейност при отчитане на работното време - setting_gantt_items_limit: Максимален брой обекти, които да се показват в мрежов график - setting_gantt_months_limit: Максимален брой месеци, които да се показват в мрежов график - setting_issue_group_assignment: Разрешено назначаването на задачи на групи - setting_default_issue_start_date_to_creation_date: Начална дата на новите задачи по подразбиране да бъде днешната дата - setting_commit_cross_project_ref: Отбелязване и приключване на задачи от други проекти, несвързани с конкретното хранилище - setting_unsubscribe: Потребителите могат да премахват профилите си - setting_session_lifetime: Максимален живот на сесиите - setting_session_timeout: Таймаут за неактивност преди прекратяване на сесиите - setting_thumbnails_enabled: Показване на миниатюри на прикачените изображения - setting_thumbnails_size: Размер на миниатюрите (в пиксели) - setting_non_working_week_days: Не работни дни - setting_jsonp_enabled: Разрешаване на поддръжка на JSONP - setting_default_projects_tracker_ids: Тракери по подразбиране за нови проекти - setting_mail_handler_excluded_filenames: Имена на прикачени файлове, които да се пропускат при приемане на e-mail-и (например *.vcf, companylogo.gif). - setting_force_default_language_for_anonymous: Задължително език по подразбиране за анонимните потребители - setting_force_default_language_for_loggedin: Задължително език по подразбиране за потребителите, влезли в Redmine - setting_link_copied_issue: Свързване на задачите при копиране - setting_max_additional_emails: Максимален брой на допълнителните имейл адреси - setting_search_results_per_page: Резултати от търсене на страница - setting_attachment_extensions_allowed: Позволени типове на файлове - setting_attachment_extensions_denied: Разрешени типове на файлове - setting_new_item_menu_tab: Меню-елемент за добавяне на нови обекти (+) - setting_commit_logs_formatting: Прилагане на форматиране за съобщенията при поверяване - setting_timelog_required_fields: Задължителни полета за записи за изразходваното време - setting_close_duplicate_issues: Затваряне на дублираните задачи автоматично - setting_time_entry_list_defaults: Конфигурация по подразбиране за записите за изразходваното време - setting_timelog_accept_0_hours: Приемане на записи с 0 часа - setting_timelog_max_hours_per_day: Максимум часове, които могат да бъдат записани за ден и за потребител - setting_timelog_accept_future_dates: Разрешено отчитане на изразходвано време на дата в бъдещето - setting_show_status_changes_in_mail_subject: Показване на промените на състоянието на задачите в поле Относно на имейлите - setting_project_list_defaults: Проектен списък - - permission_add_project: Създаване на проект - permission_add_subprojects: Създаване на подпроекти - permission_edit_project: Редактиране на проект - permission_close_project: Затваряне / отваряне на проект - permission_select_project_modules: Избор на проектни модули - permission_manage_members: Управление на членовете (на екип) - permission_manage_project_activities: Управление на дейностите на проекта - permission_manage_versions: Управление на версиите - permission_manage_categories: Управление на категориите - permission_view_issues: Разглеждане на задачите - permission_add_issues: Добавяне на задачи - permission_edit_issues: Редактиране на задачи - permission_edit_own_issues: Редактиране на собствените задачи - permission_copy_issues: Копиране на задачи - permission_manage_issue_relations: Управление на връзките между задачите - permission_set_own_issues_private: Установяване на собствените задачи публични или лични - permission_set_issues_private: Установяване на задачите публични или лични - permission_add_issue_notes: Добавяне на бележки - permission_edit_issue_notes: Редактиране на бележки - permission_edit_own_issue_notes: Редактиране на собствени бележки - permission_view_private_notes: Разглеждане на лични бележки - permission_set_notes_private: Установяване на бележките лични - permission_delete_issues: Изтриване на задачи - permission_manage_public_queries: Управление на публичните заявки - permission_save_queries: Запис на запитвания (queries) - permission_view_gantt: Разглеждане на мрежов график - permission_view_calendar: Разглеждане на календари - permission_view_issue_watchers: Разглеждане на списък с наблюдатели - permission_add_issue_watchers: Добавяне на наблюдатели - permission_delete_issue_watchers: Изтриване на наблюдатели - permission_log_time: Log spent time - permission_view_time_entries: Разглеждане на записите за изразходваното време - permission_edit_time_entries: Редактиране на записите за изразходваното време - permission_edit_own_time_entries: Редактиране на собствените записи за изразходваното време - permission_view_news: Разглеждане на новини - permission_manage_news: Управление на новини - permission_comment_news: Коментиране на новини - permission_view_documents: Разглеждане на документи - permission_add_documents: Добавяне на документи - permission_edit_documents: Редактиране на документи - permission_delete_documents: Изтриване на документи - permission_manage_files: Управление на файлове - permission_view_files: Разглеждане на файлове - permission_manage_wiki: Управление на wiki - permission_rename_wiki_pages: Преименуване на wiki страници - permission_delete_wiki_pages: Изтриване на wiki страници - permission_view_wiki_pages: Разглеждане на wiki - permission_view_wiki_edits: Разглеждане на wiki история - permission_edit_wiki_pages: Редактиране на wiki страници - permission_delete_wiki_pages_attachments: Изтриване на прикачени файлове към wiki страници - permission_protect_wiki_pages: Заключване на wiki страници - permission_manage_repository: Управление на хранилища - permission_browse_repository: Разглеждане на хранилища - permission_view_changesets: Разглеждане на changesets - permission_commit_access: Поверяване - permission_manage_boards: Управление на boards - permission_view_messages: Разглеждане на съобщения - permission_add_messages: Публикуване на съобщения - permission_edit_messages: Редактиране на съобщения - permission_edit_own_messages: Редактиране на собствени съобщения - permission_delete_messages: Изтриване на съобщения - permission_delete_own_messages: Изтриване на собствени съобщения - permission_export_wiki_pages: Експорт на wiki страници - permission_manage_subtasks: Управление на подзадачите - permission_manage_related_issues: Управление на връзките между задачи и ревизии - permission_import_issues: Импорт на задачи - permission_log_time_for_other_users: Записване на изразходвано време за други потребители - - project_module_issue_tracking: Тракинг - project_module_time_tracking: Отделяне на време - project_module_news: Новини - project_module_documents: Документи - project_module_files: Файлове - project_module_wiki: Wiki - project_module_repository: Хранилище - project_module_boards: Форуми - project_module_calendar: Календар - project_module_gantt: Мрежов график - - label_user: Потребител - label_user_plural: Потребители - label_user_new: Нов потребител - label_user_anonymous: Анонимен - label_project: Проект - label_project_new: Нов проект - label_project_plural: Проекти - label_x_projects: - zero: 0 проекта - one: 1 проект - other: "%{count} проекта" - label_project_all: Всички проекти - label_project_latest: Последни проекти - label_issue: Задача - label_issue_new: Нова задача - label_issue_plural: Задачи - label_issue_view_all: Всички задачи - label_issues_by: "Задачи по %{value}" - label_issue_added: Добавена задача - label_issue_updated: Обновена задача - label_issue_note_added: Добавена бележка - label_issue_status_updated: Обновено състояние - label_issue_assigned_to_updated: Задачата е с назначен нов изпълнител - label_issue_priority_updated: Обновен приоритет - label_issue_fixed_version_updated: Променена версия - label_document: Документ - label_document_new: Нов документ - label_document_plural: Документи - label_document_added: Добавен документ - label_role: Роля - label_role_plural: Роли - label_role_new: Нова роля - label_role_and_permissions: Роли и права - label_role_anonymous: Анонимен - label_role_non_member: Не член - label_member: Член - label_member_new: Нов член - label_member_plural: Членове - label_tracker: Тракер - label_tracker_plural: Тракери - label_tracker_all: Всички тракери - label_tracker_new: Нов тракер - label_workflow: Работен процес - label_issue_status: Състояние на задача - label_issue_status_plural: Състояния на задачи - label_issue_status_new: Ново състояние - label_issue_category: Категория задача - label_issue_category_plural: Категории задачи - label_issue_category_new: Нова категория - label_custom_field: Потребителско поле - label_custom_field_plural: Потребителски полета - label_custom_field_new: Ново потребителско поле - label_enumerations: Списъци - label_enumeration_new: Нова стойност - label_information: Информация - label_information_plural: Информация - label_register: Регистрация - label_login_with_open_id_option: или вход чрез OpenID - label_password_lost: Забравена парола - label_password_required: Потвърдете вашата парола, за да продължите - label_home: Начало - label_my_page: Лична страница - label_my_account: Профил - label_my_projects: Проекти, в които участвам - label_administration: Администрация - label_login: Вход - label_logout: Изход - label_help: Помощ - label_reported_issues: Публикувани задачи - label_assigned_issues: Назначени задачи - label_assigned_to_me_issues: Възложени на мен - label_updated_issues: Задачи с промени - label_last_login: Последно свързване - label_registered_on: Регистрация - label_activity: Дейност - label_overall_activity: Цялостна дейност - label_user_activity: "Активност на %{value}" - label_new: Нов - label_logged_as: Здравейте, - label_environment: Среда - label_authentication: Удостоверяване - label_auth_source: Начин на удостоверяване - label_auth_source_new: Нов начин на удостоверяване - label_auth_source_plural: Начини на удостоверяване - label_subproject_plural: Подпроекти - label_subproject_new: Нов подпроект - label_and_its_subprojects: "%{value} и неговите подпроекти" - label_min_max_length: Минимална - максимална дължина - label_list: Списък - label_date: Дата - label_integer: Целочислен - label_float: Дробно - label_boolean: Чекбокс - label_string: Текст - label_text: Дълъг текст - label_attribute: Атрибут - label_attribute_plural: Атрибути - label_no_data: Няма изходни данни - label_no_preview: Няма наличен преглед (preview) - label_no_preview_alternative_html: Няма наличен преглед (preview). %{link} файл вместо това. - label_no_preview_download: Изтегляне - label_change_status: Промяна на състоянието - label_history: История - label_attachment: Файл - label_attachment_new: Нов файл - label_attachment_delete: Изтриване - label_attachment_plural: Файлове - label_file_added: Добавен файл - label_report: Справка - label_report_plural: Справки - label_news: Новини - label_news_new: Нова новина - label_news_plural: Новини - label_news_latest: Последни новини - label_news_view_all: Виж всички - label_news_added: Добавена новина - label_news_comment_added: Добавен коментар към новина - label_settings: Настройки - label_overview: Общ изглед - label_version: Версия - label_version_new: Нова версия - label_version_plural: Версии - label_version_and_files: Версии (%{count}) и файлове - label_close_versions: Затваряне на завършените версии - label_confirmation: Одобрение - label_export_to: Експорт към - label_read: Read... - label_public_projects: Публични проекти - label_open_issues: отворена - label_open_issues_plural: отворени - label_closed_issues: затворена - label_closed_issues_plural: затворени - label_x_open_issues_abbr: - zero: 0 отворени - one: 1 отворена - other: "%{count} отворени" - label_x_closed_issues_abbr: - zero: 0 затворени - one: 1 затворена - other: "%{count} затворени" - label_x_issues: - zero: 0 задачи - one: 1 задача - other: "%{count} задачи" - label_total: Общо - label_total_plural: Общо - label_total_time: Общо - label_permissions: Права - label_current_status: Текущо състояние - label_new_statuses_allowed: Позволени състояния - label_all: всички - label_any: без значение - label_none: никакви - label_nobody: никой - label_next: Следващ - label_previous: Предишен - label_used_by: Използва се от - label_details: Детайли - label_add_note: Добавяне на бележка - label_calendar: Календар - label_months_from: месеца от - label_gantt: Мрежов график - label_internal: Вътрешен - label_last_changes: "последни %{count} промени" - label_change_view_all: Виж всички промени - label_comment: Коментар - label_comment_plural: Коментари - label_x_comments: - zero: 0 коментара - one: 1 коментар - other: "%{count} коментара" - label_comment_add: Добавяне на коментар - label_comment_added: Добавен коментар - label_comment_delete: Изтриване на коментари - label_query: Потребителска справка - label_query_plural: Потребителски справки - label_query_new: Нова заявка - label_my_queries: Моите заявки - label_filter_add: Добави филтър - label_filter_plural: Филтри - label_equals: е - label_not_equals: не е - label_in_less_than: след по-малко от - label_in_more_than: след повече от - label_in_the_next_days: в следващите - label_in_the_past_days: в предишните - label_greater_or_equal: ">=" - label_less_or_equal: <= - label_between: между - label_in: в следващите - label_today: днес - label_yesterday: вчера - label_tomorrow: утре - label_this_week: тази седмица - label_last_week: последната седмица - label_next_week: следващата седмица - label_last_n_weeks: последните %{count} седмици - label_last_n_days: "последните %{count} дни" - label_this_month: текущия месец - label_last_month: последния месец - label_next_month: следващият месец - label_this_year: текущата година - label_date_range: Период - label_less_than_ago: преди по-малко от - label_more_than_ago: преди повече от - label_ago: преди - label_contains: съдържа - label_not_contains: не съдържа - label_starts_with: започва с - label_ends_with: завършва с - label_any_issues_in_project: задачи от проект - label_any_issues_not_in_project: задачи, които не са в проект - label_no_issues_in_project: никакви задачи в проект - label_any_open_issues: отворени задачи - label_no_open_issues: без отворени задачи - label_day_plural: дни - label_repository: Хранилище - label_repository_new: Ново хранилище - label_repository_plural: Хранилища - label_browse: Разглеждане - label_branch: работен вариант - label_tag: Версия - label_revision: Ревизия - label_revision_plural: Ревизии - label_revision_id: Ревизия %{value} - label_associated_revisions: Асоциирани ревизии - label_added: добавено - label_modified: променено - label_copied: копирано - label_renamed: преименувано - label_deleted: изтрито - label_latest_revision: Последна ревизия - label_latest_revision_plural: Последни ревизии - label_view_revisions: Виж ревизиите - label_view_all_revisions: Разглеждане на всички ревизии - label_x_revisions: "%{count} ревизии" - label_max_size: Максимална големина - label_sort_highest: Премести най-горе - label_sort_higher: Премести по-горе - label_sort_lower: Премести по-долу - label_sort_lowest: Премести най-долу - label_roadmap: Пътна карта - label_roadmap_due_in: "Излиза след %{value}" - label_roadmap_overdue: "%{value} закъснение" - label_roadmap_no_issues: Няма задачи за тази версия - label_search: Търсене - label_result_plural: Pезултати - label_all_words: Всички думи - label_wiki: Wiki - label_wiki_edit: Wiki редакция - label_wiki_edit_plural: Wiki редакции - label_wiki_page: Wiki страница - label_wiki_page_plural: Wiki страници - label_wiki_page_new: Нова wiki страница - label_index_by_title: Индекс - label_index_by_date: Индекс по дата - label_current_version: Текуща версия - label_preview: Преглед - label_feed_plural: Емисии - label_changes_details: Подробни промени - label_issue_tracking: Тракинг - label_spent_time: Отделено време - label_total_spent_time: Общо употребено време - label_overall_spent_time: Общо употребено време - label_f_hour: "%{value} час" - label_f_hour_plural: "%{value} часа" - label_f_hour_short: '%{value} час' - label_time_tracking: Отделяне на време - label_change_plural: Промени - label_statistics: Статистика - label_commits_per_month: Ревизии по месеци - label_commits_per_author: Ревизии по автор - label_diff: diff - label_view_diff: Виж разликите - label_diff_inline: хоризонтално - label_diff_side_by_side: вертикално - label_options: Опции - label_copy_workflow_from: Копирай работния процес от - label_permissions_report: Справка за права - label_watched_issues: Наблюдавани задачи - label_related_issues: Свързани задачи - label_applied_status: Установено състояние - label_loading: Зареждане... - label_relation_new: Нова релация - label_relation_delete: Изтриване на релация - label_relates_to: свързана със - label_delete_link_to_subtask: Изтриване на релация - label_duplicates: дублира - label_duplicated_by: дублирана от - label_blocks: блокира - label_blocked_by: блокирана от - label_precedes: предшества - label_follows: изпълнява се след - label_copied_to: копирана в - label_copied_from: копирана от - label_stay_logged_in: Запомни ме - label_disabled: забранено - label_show_completed_versions: Показване на реализирани версии - label_me: аз - label_board: Форум - label_board_new: Нов форум - label_board_plural: Форуми - label_board_locked: Заключена - label_board_sticky: Sticky - label_topic_plural: Теми - label_message_plural: Съобщения - label_message_last: Последно съобщение - label_message_new: Нова тема - label_message_posted: Добавено съобщение - label_reply_plural: Отговори - label_send_information: Изпращане на информацията до потребителя - label_year: Година - label_month: Месец - label_week: Седмица - label_date_from: От - label_date_to: До - label_language_based: В зависимост от езика - label_sort_by: "Сортиране по %{value}" - label_send_test_email: Изпращане на тестов e-mail - label_feeds_access_key: Atom access ключ - label_missing_feeds_access_key: Липсващ Atom ключ за достъп - label_feeds_access_key_created_on: "%{value} от създаването на Atom ключа" - label_module_plural: Модули - label_added_time_by: "Публикувана от %{author} преди %{age}" - label_updated_time_by: "Обновена от %{author} преди %{age}" - label_updated_time: "Обновена преди %{value}" - label_jump_to_a_project: Проект... - label_file_plural: Файлове - label_changeset_plural: Ревизии - label_default_columns: По подразбиране - label_no_change_option: (Без промяна) - label_bulk_edit_selected_issues: Групово редактиране на задачи - label_bulk_edit_selected_time_entries: Групово редактиране на записи за използвано време - label_theme: Тема - label_default: По подразбиране - label_search_titles_only: Само в заглавията - label_user_mail_option_all: "За всяко събитие в проектите, в които участвам" - label_user_mail_option_selected: "За всички събития само в избраните проекти..." - label_user_mail_option_none: "Само за наблюдавани или в които участвам (автор или назначени на мен)" - label_user_mail_option_only_my_events: Само за неща, в които съм включен/а - label_user_mail_option_only_assigned: Само за неща, които наблюдавам или са назначени на мен - label_user_mail_option_only_owner: Само за неща, които наблюдавам или съм техен собственик - label_user_mail_no_self_notified: "Не искам известия за извършени от мен промени" - label_registration_activation_by_email: активиране на профила по email - label_registration_manual_activation: ръчно активиране - label_registration_automatic_activation: автоматично активиране - label_display_per_page: "На страница по: %{value}" - label_age: Възраст - label_change_properties: Промяна на настройки - label_general: Основни - label_scm: SCM (Система за контрол на версиите) - label_plugins: Плъгини - label_ldap: LDAP - label_ldap_authentication: LDAP удостоверяване - label_ldaps_verify_none: LDAP удостоверяване - label_ldaps_verify_peer: LDAPS - label_ldaps_warning: Препоръчително е да се използва криптирана LDAPS връзка със сертификат за предотвратяване на намеса по време на процеса на удостоверяване. - label_downloads_abbr: D/L - label_optional_description: Незадължително описание - label_add_another_file: Добавяне на друг файл - label_preferences: Предпочитания - label_chronological_order: Хронологичен ред - label_reverse_chronological_order: Обратен хронологичен ред - label_incoming_emails: Входящи e-mail-и - label_generate_key: Генериране на ключ - label_issue_watchers: Наблюдатели - label_example: Пример - label_display: Показване - label_sort: Сортиране - label_ascending: Нарастващ - label_descending: Намаляващ - label_date_from_to: От %{start} до %{end} - label_wiki_content_added: Wiki страница беше добавена - label_wiki_content_updated: Wiki страница беше обновена - label_group: Група - label_group_plural: Групи - label_group_new: Нова група - label_group_anonymous: Анонимни потребители - label_group_non_member: Потребители, които не са членове на проекта - label_time_entry_plural: Използвано време - label_version_sharing_none: Не споделен - label_version_sharing_descendants: С подпроекти - label_version_sharing_hierarchy: С проектна йерархия - label_version_sharing_tree: С дърво на проектите - label_version_sharing_system: С всички проекти - label_update_issue_done_ratios: Обновяване на процента на завършените задачи - label_copy_source: Източник - label_copy_target: Цел - label_copy_same_as_target: Също като целта - label_display_used_statuses_only: Показване само на състоянията, използвани от този тракер - label_api_access_key: API ключ за достъп - label_missing_api_access_key: Липсващ API ключ - label_api_access_key_created_on: API ключ за достъп е създаден преди %{value} - label_profile: Профил - label_subtask_plural: Подзадачи - label_project_copy_notifications: Изпращане на e-mail известия по време на копирането на проекта - label_import_notifications: Изпращане e-mail известия по време на импортирането - label_principal_search: "Търсене на потребител или група:" - label_user_search: "Търсене на потребител:" - label_additional_workflow_transitions_for_author: Позволени са допълнителни преходи, когато потребителят е авторът - label_additional_workflow_transitions_for_assignee: Позволени са допълнителни преходи, когато потребителят е назначеният към задачата - label_issues_visibility_all: Всички задачи - label_issues_visibility_public: Всички не-лични задачи - label_issues_visibility_own: Задачи, създадени от или назначени на потребителя - label_git_report_last_commit: Извеждане на последното поверяване за файлове и папки - label_parent_revision: Ревизия родител - label_child_revision: Ревизия наследник - label_export_options: "%{export_format} опции за експорт" - label_copy_attachments: Копиране на прикачените файлове - label_copy_subtasks: Копиране на подзадачите - label_item_position: "%{position}/%{count}" - label_completed_versions: Завършени версии - label_search_for_watchers: Търсене на потребители за наблюдатели - label_session_expiration: Изтичане на сесиите - label_status_transitions: Преходи между състоянията - label_fields_permissions: Видимост на полетата - label_readonly: Само за четене - label_required: Задължително - label_hidden: Скрит - label_attribute_of_project: Project's %{name} - label_attribute_of_issue: Issue's %{name} - label_attribute_of_author: Author's %{name} - label_attribute_of_assigned_to: Assignee's %{name} - label_attribute_of_user: User's %{name} - label_attribute_of_fixed_version: Target version's %{name} - label_attribute_of_object: "%{name} на %{object_name}" - label_cross_project_descendants: С подпроекти - label_cross_project_tree: С дърво на проектите - label_cross_project_hierarchy: С проектна йерархия - label_cross_project_system: С всички проекти - label_gantt_progress_line: Линия на изпълнението - label_visibility_private: лични (само за мен) - label_visibility_roles: само за тези роли - label_visibility_public: за всички потребители - label_link: Връзка - label_only: само - label_drop_down_list: drop-down списък - label_checkboxes: чек-бокс - label_radio_buttons: радио-бутони - label_link_values_to: URL (опция) - label_custom_field_select_type: "Изберете тип на обект, към който потребителското поле да бъде асоциирано" - label_check_for_updates: Проверка за нови версии - label_latest_compatible_version: Последна съвместима версия - label_unknown_plugin: Непознат плъгин - label_add_projects: Добавяне на проекти - label_users_visibility_all: Всички активни потребители - label_users_visibility_members_of_visible_projects: Членовете на видимите проекти - label_edit_attachments: Редактиране на прикачените файлове - label_link_copied_issue: Създаване на връзка между задачите - label_ask: Питане преди копиране - label_search_attachments_yes: Търсене на имената на прикачените файлове и техните описания - label_search_attachments_no: Да не се претърсват прикачените файлове - label_search_attachments_only: Търсене само на прикачените файлове - label_search_open_issues_only: Търсене само на задачите - label_email_address_plural: Имейли - label_email_address_add: Добавяне на имейл адрес - label_enable_notifications: Разрешаване на известията - label_disable_notifications: Забрана на известията - label_blank_value: празно - label_parent_task_attributes: Атрибути на родителските задачи - label_parent_task_attributes_derived: Изчислени от подзадачите - label_parent_task_attributes_independent: Независими от подзадачите - label_time_entries_visibility_all: Всички записи за използвано време - label_time_entries_visibility_own: Записи за използвано време създадени от потребителя - label_member_management: Управление на членовете - label_member_management_all_roles: Всички роли - label_member_management_selected_roles_only: Само тези роли - label_import_issues: Импорт на задачи - permission_import_time_entries: Импортиране на записи за използвано време - label_select_file_to_import: Файл за импортиране - label_fields_separator: Разделител между полетата - label_fields_wrapper: Разделител в полетата (wrapper) - label_encoding: Кодиране - label_comma_char: Запетая - label_semi_colon_char: Точка и запетая - label_quote_char: Кавичка - label_double_quote_char: Двойна кавичка - label_fields_mapping: Съответствие между полетата - label_file_content_preview: Предварителен преглед на съдържанието на файла - label_create_missing_values: Създаване на липсващи стойности - label_api: API - label_field_format_enumeration: Списък ключ/стойност - label_default_values_for_new_users: Стойности по подразбиране за нови потребители - label_relations: Релации - label_new_project_issue_tab_enabled: Показване на меню-елемент "Нова задача" - label_new_object_tab_enabled: Показване на изпадащ списък за меню-елемент "+" - label_table_of_contents: Съдържание - label_font_default: Шрифт по подразбиране - label_font_monospace: Monospaced шрифт - label_font_proportional: Пропорционален шрифт - label_optgroup_bookmarks: Отметки - label_optgroup_others: Други проекти - label_optgroup_recents: Последно използвани - label_last_notes: Последни коментари - label_nothing_to_preview: Няма нищо за предварителен преглед - label_inherited_from_parent_project: Наследени от родителския проект - label_inherited_from_group: Наследени от група %{name} - label_trackers_description: Описание на тракерите - label_open_trackers_description: Показване на описанията на всички тракери - label_preferred_body_part_text: Текст - label_preferred_body_part_html: HTML (експериментално) - label_issue_history_properties: Промени в състоянието (състояние, версии, категории, процент на изпълнение...) - label_issue_history_notes: Коментари - label_last_tab_visited: Последно посетен таб - label_password_char_class_uppercase: големи букви - label_password_char_class_lowercase: малки букви - label_password_char_class_digits: цифри - label_password_char_class_special_chars: специални символи - label_display_type: Показване на резултатите като - label_display_type_list: Списък - label_display_type_board: Таблица - label_my_bookmarks: Моите отметки - - button_login: Вход - button_submit: Изпращане - button_save: Запис - button_check_all: Избор на всички - button_uncheck_all: Изчистване на всички - button_collapse_all: Скриване всички - button_expand_all: Разгъване всички - button_delete: Изтриване - button_create: Създаване - button_create_and_continue: Създаване и продължаване - button_test: Тест - button_edit: Редакция - button_edit_associated_wikipage: "Редактиране на асоциираната Wiki страница: %{page_title}" - button_add: Добавяне - button_change: Промяна - button_apply: Приложи - button_clear: Изчисти - button_lock: Заключване - button_unlock: Отключване - button_download: Изтегляне - button_list: Списък - button_view: Преглед - button_move: Преместване - button_move_and_follow: Преместване и продължаване - button_back: Назад - button_cancel: Отказ - button_activate: Активация - button_sort: Сортиране - button_log_time: Отделяне на време - button_rollback: Върни се към тази ревизия - button_watch: Наблюдаване - button_unwatch: Край на наблюдението - button_reply: Отговор - button_archive: Архивиране - button_unarchive: Разархивиране - button_reset: Генериране наново - button_rename: Преименуване - button_change_password: Промяна на парола - button_copy: Копиране - button_copy_and_follow: Копиране и продължаване - button_annotate: Анотация - button_update: Обновяване - button_configure: Конфигуриране - button_quote: Цитат - button_show: Показване - button_hide: Скриване - button_edit_section: Редактиране на тази секция - button_export: Експорт - button_delete_my_account: Премахване на моя профил - button_close: Затваряне - button_reopen: Отваряне - button_import: Импорт - button_project_bookmark: Добавяне на отметка - button_project_bookmark_delete: Премахване на отметка - button_filter: Филтър - button_actions: Действия - - status_active: активен - status_registered: регистриран - status_locked: заключен - - project_status_active: активен - project_status_closed: затворен - project_status_archived: архивиран - - version_status_open: отворена - version_status_locked: заключена - version_status_closed: затворена - - field_active: Активен - - text_select_mail_notifications: Изберете събития за изпращане на e-mail. - text_regexp_info: пр. ^[A-Z0-9]+$ - text_min_max_length_info: 0 - без ограничения - text_project_destroy_confirmation: Сигурни ли сте, че искате да изтриете проекта и данните в него? - text_subprojects_destroy_warning: "Неговите подпроекти: %{value} също ще бъдат изтрити." - text_workflow_edit: Изберете роля и тракер за да редактирате работния процес - text_are_you_sure: Сигурни ли сте? - text_journal_changed: "%{label} променен от %{old} на %{new}" - text_journal_changed_no_detail: "%{label} променен" - text_journal_set_to: "%{label} установен на %{value}" - text_journal_deleted: "%{label} изтрит (%{old})" - text_journal_added: "Добавено %{label} %{value}" - text_tip_issue_begin_day: задача, започваща този ден - text_tip_issue_end_day: задача, завършваща този ден - text_tip_issue_begin_end_day: задача, започваща и завършваща този ден - text_project_identifier_info: 'Позволени са малки букви (a-z), цифри, тирета и _.
    Промяна след създаването му не е възможна.' - text_caracters_maximum: "До %{count} символа." - text_caracters_minimum: "Минимум %{count} символа." - text_characters_must_contain: Трябва да съдържа %{character_classes}. - text_length_between: "От %{min} до %{max} символа." - text_tracker_no_workflow: Няма дефиниран работен процес за този тракер - text_role_no_workflow: Няма дефиниран работен процес за тази роля - text_status_no_workflow: Нито един тракер не използва това състояние в работен процес - text_unallowed_characters: Непозволени символи - text_comma_separated: Позволено е изброяване (с разделител запетая). - text_line_separated: Позволени са много стойности (по едно на ред). - text_issues_ref_in_commit_messages: Отбелязване и приключване на задачи от ревизии - text_issue_added: "Публикувана е нова задача с номер %{id} (от %{author})." - text_issue_updated: "Задача %{id} е обновена (от %{author})." - text_wiki_destroy_confirmation: Сигурни ли сте, че искате да изтриете това Wiki и цялото му съдържание? - text_issue_category_destroy_question: "Има задачи (%{count}) обвързани с тази категория. Какво ще изберете?" - text_issue_category_destroy_assignments: Премахване на връзките с категорията - text_issue_category_reassign_to: Преобвързване с категория - text_user_mail_option: "За неизбраните проекти, ще получавате известия само за наблюдавани дейности или в които участвате (т.е. автор или назначени на мен)." - text_no_configuration_data: "Все още не са конфигурирани Роли, тракери, състояния на задачи и работен процес.\nСтрого се препоръчва зареждането на примерната информация. Веднъж заредена ще имате възможност да я редактирате." - text_load_default_configuration: Зареждане на примерна информация - text_status_changed_by_changeset: "Приложено с ревизия %{value}." - text_time_logged_by_changeset: Приложено в ревизия %{value}. - text_issues_destroy_confirmation: 'Сигурни ли сте, че искате да изтриете избраните задачи?' - text_issues_destroy_descendants_confirmation: Тази операция ще премахне и %{count} подзадача(и). - text_time_entries_destroy_confirmation: Сигурен ли сте, че изтриете избраните записи за изразходвано време? - text_select_project_modules: 'Изберете активните модули за този проект:' - text_default_administrator_account_changed: Сменен фабричния администраторски профил - text_file_repository_writable: Възможност за писане в хранилището с файлове - text_plugin_assets_writable: Папката на приставките е разрешена за запис - text_minimagick_available: Наличен MiniMagick (по избор) - text_convert_available: Наличен ImageMagick convert (по избор) - text_gs_available: Налична поддръжка за ImageMagick PDF (по избор) - text_destroy_time_entries_question: "%{hours} часа са отделени на задачите, които искате да изтриете. Какво избирате?" - text_destroy_time_entries: Изтриване на отделеното време - text_assign_time_entries_to_project: Прехвърляне на отделеното време към проект - text_reassign_time_entries: 'Прехвърляне на отделеното време към задача:' - text_user_wrote: "%{value} написа:" - text_user_wrote_in: "%{value} написа (%{link}):" - text_enumeration_destroy_question: "%{count} обекта са свързани с тази стойност." - text_enumeration_category_reassign_to: 'Пресвържете ги към тази стойност:' - text_email_delivery_not_configured: "Изпращането на e-mail-и не е конфигурирано и известията не са разрешени.\nКонфигурирайте вашия SMTP сървър в config/configuration.yml и рестартирайте Redmine, за да ги разрешите." - text_repository_usernames_mapping: "Изберете или променете потребителите в Redmine, съответстващи на потребителите в дневника на хранилището (repository).\nПотребителите с еднакви имена в Redmine и хранилищата се съвместяват автоматично." - text_diff_truncated: '... Този diff не е пълен, понеже е надхвърля максималния размер, който може да бъде показан.' - text_custom_field_possible_values_info: 'Една стойност на ред' - text_wiki_page_destroy_question: Тази страница има %{descendants} страници деца и descendant(s). Какво желаете да правите? - text_wiki_page_nullify_children: Запазване на тези страници като коренни страници - text_wiki_page_destroy_children: Изтриване на страниците деца и всички техни descendants - text_wiki_page_reassign_children: Преназначаване на страниците деца на тази родителска страница - text_own_membership_delete_confirmation: "Вие сте на път да премахнете някои или всички ваши разрешения и е възможно след това да не можете да редактирате този проект.\nСигурен ли сте, че искате да продължите?" - text_zoom_in: Увеличаване - text_zoom_out: Намаляване - text_warn_on_leaving_unsaved: Страницата съдържа незаписано съдържание, което може да бъде загубено, ако я напуснете. - text_scm_path_encoding_note: "По подразбиране: UTF-8" - text_subversion_repository_note: 'Примери: file:///, http://, https://, svn://, svn+[tunnelscheme]://' - text_git_repository_note: Празно и локално хранилище (например /gitrepo, c:\gitrepo) - text_mercurial_repository_note: Локално хранилище (например /hgrepo, c:\hgrepo) - text_scm_command: SCM команда - text_scm_command_version: Версия - text_scm_config: Можете да конфигурирате SCM командите в config/configuration.yml. За да активирате промените, рестартирайте Redmine. - text_scm_command_not_available: SCM командата не е налична или достъпна. Проверете конфигурацията в административния панел. - text_issue_conflict_resolution_overwrite: Прилагане на моите промени (предишните коментари ще бъдат запазени, но някои други промени може да бъдат презаписани) - text_issue_conflict_resolution_add_notes: Добавяне на моите коментари и отхвърляне на другите мои промени - text_issue_conflict_resolution_cancel: Отхвърляне на всички мои промени и презареждане на %{link} - text_account_destroy_confirmation: "Сигурен/на ли сте, че желаете да продължите?\nВашият профил ще бъде премахнат без възможност за възстановяване." - text_session_expiration_settings: "Внимание: промяната на тези установяваноя може да прекрати всички активни сесии, включително и вашата." - text_project_closed: Този проект е затворен и е само за четене. - text_turning_multiple_off: Ако забраните възможността за повече от една стойност, повечето стойности ще бъдат - премахнати с цел да остане само по една стойност за поле. - text_select_apply_tracker: Изберете тракер - text_avatar_server_config_html: Текущият сървър на аватари е %{url}. - Бие можете да го конфигурирате в config/configuration.yml. - - default_role_manager: Мениджър - default_role_developer: Разработчик - default_role_reporter: Публикуващ - default_tracker_bug: Грешка - default_tracker_feature: Функционалност - default_tracker_support: Поддръжка - default_issue_status_new: Нова - default_issue_status_in_progress: Изпълнение - default_issue_status_resolved: Приключена - default_issue_status_feedback: Обратна връзка - default_issue_status_closed: Затворена - default_issue_status_rejected: Отхвърлена - default_doc_category_user: Документация за потребителя - default_doc_category_tech: Техническа документация - default_priority_low: Нисък - default_priority_normal: Нормален - default_priority_high: Висок - default_priority_urgent: Спешен - default_priority_immediate: Веднага - default_activity_design: Дизайн - default_activity_development: Разработка - text_no_subject: няма заглавие - - enumeration_issue_priorities: Приоритети на задачи - enumeration_doc_categories: Категории документи - enumeration_activities: Дейности (time tracking) - enumeration_system_activity: Системна активност - description_filter: Филтър - description_search: Търсене - description_choose_project: Проекти - description_project_scope: Обхват на търсенето - description_notes: Бележки - description_message_content: Съдържание на съобщението - description_query_sort_criteria_attribute: Атрибут на сортиране - description_query_sort_criteria_direction: Посока на сортиране - description_user_mail_notification: Конфигурация известията по пощата - description_available_columns: Налични колони - description_selected_columns: Избрани колони - description_all_columns: Всички колони - description_issue_category_reassign: Изберете категория - description_wiki_subpages_reassign: Изберете нова родителска страница - text_repository_identifier_info: 'Позволени са малки букви (a-z), цифри, тирета и _.
    Промяна след създаването му не е възможна.' - text_login_required_html: Когато не се изисква удостоверяване, публичните проекти и тяхното съдържание са видими без ограничения в мрежата. Вие можете да редактирате приложимите права. - label_login_required_yes: 'Да' - label_login_required_no: Не, разрешаване на анонимен достъп до публичните проекти. - text_project_is_public_non_member: Публичните проекти са достъпни за всички влезли в Redmine потребители. - text_project_is_public_anonymous: Публичните проекти са достъпни и тяхното съдържание е видимо без ограничения в мрежата. - label_import_time_entries: Импортиране на записи за използвано време diff --git a/config/locales/bs.yml b/config/locales/bs.yml deleted file mode 100644 index fb3bb34..0000000 --- a/config/locales/bs.yml +++ /dev/null @@ -1,1328 +0,0 @@ -#Ernad Husremovic hernad@bring.out.ba - -bs: - direction: ltr - date: - formats: - default: "%d.%m.%Y" - short: "%e. %b" - long: "%e. %B %Y" - only_day: "%e" - - - day_names: [Nedjelja, Ponedjeljak, Utorak, Srijeda, Četvrtak, Petak, Subota] - abbr_day_names: [Ned, Pon, Uto, Sri, Čet, Pet, Sub] - - month_names: [~, Januar, Februar, Mart, April, Maj, Jun, Jul, Avgust, Septembar, Oktobar, Novembar, Decembar] - abbr_month_names: [~, Jan, Feb, Mar, Apr, Maj, Jun, Jul, Avg, Sep, Okt, Nov, Dec] - order: - - :day - - :month - - :year - - time: - formats: - default: "%A, %e. %B %Y, %H:%M" - short: "%e. %B, %H:%M Uhr" - long: "%A, %e. %B %Y, %H:%M" - time: "%H:%M" - - am: "prijepodne" - pm: "poslijepodne" - - datetime: - distance_in_words: - half_a_minute: "pola minute" - less_than_x_seconds: - one: "manje od 1 sekunde" - other: "manje od %{count} sekudni" - x_seconds: - one: "1 sekunda" - other: "%{count} sekundi" - less_than_x_minutes: - one: "manje od 1 minute" - other: "manje od %{count} minuta" - x_minutes: - one: "1 minuta" - other: "%{count} minuta" - about_x_hours: - one: "oko 1 sahat" - other: "oko %{count} sahata" - x_hours: - one: "1 sahat" - other: "%{count} sahata" - x_days: - one: "1 dan" - other: "%{count} dana" - about_x_months: - one: "oko 1 mjesec" - other: "oko %{count} mjeseci" - x_months: - one: "1 mjesec" - other: "%{count} mjeseci" - about_x_years: - one: "oko 1 godine" - other: "oko %{count} godina" - over_x_years: - one: "preko 1 godine" - other: "preko %{count} godina" - almost_x_years: - one: "almost 1 year" - other: "almost %{count} years" - - - number: - format: - precision: 2 - separator: ',' - delimiter: '.' - currency: - format: - unit: 'KM' - format: '%u %n' - negative_format: '%u -%n' - delimiter: '' - percentage: - format: - delimiter: "" - precision: - format: - delimiter: "" - human: - format: - delimiter: "" - precision: 3 - storage_units: - format: "%n %u" - units: - byte: - one: "Byte" - other: "Bytes" - kb: "KB" - mb: "MB" - gb: "GB" - tb: "TB" - -# Used in array.to_sentence. - support: - array: - sentence_connector: "i" - skip_last_comma: false - - activerecord: - errors: - template: - header: - one: "1 error prohibited this %{model} from being saved" - other: "%{count} errors prohibited this %{model} from being saved" - messages: - inclusion: "nije uključeno u listu" - exclusion: "je rezervisano" - invalid: "nije ispravno" - confirmation: "ne odgovara potvrdi" - accepted: "mora se prihvatiti" - empty: "ne može biti prazno" - blank: "ne može biti znak razmaka" - too_long: "je predugačko" - too_short: "je prekratko" - wrong_length: "je pogrešne dužine" - taken: "već je zauzeto" - not_a_number: "nije broj" - not_a_date: "nije ispravan datum" - greater_than: "mora bit veći od %{count}" - greater_than_or_equal_to: "mora bit veći ili jednak %{count}" - equal_to: "mora biti jednak %{count}" - less_than: "mora biti manji od %{count}" - less_than_or_equal_to: "mora bit manji ili jednak %{count}" - odd: "mora biti neparan" - even: "mora biti paran" - greater_than_start_date: "mora biti veći nego početni datum" - not_same_project: "ne pripada istom projektu" - circular_dependency: "Ova relacija stvar cirkularnu zavisnost" - cant_link_an_issue_with_a_descendant: "An issue can not be linked to one of its subtasks" - earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" - not_a_regexp: "is not a valid regular expression" - open_issue_with_closed_parent: "An open issue cannot be attached to a closed parent task" - must_contain_uppercase: "must contain uppercase letters (A-Z)" - must_contain_lowercase: "must contain lowercase letters (a-z)" - must_contain_digits: "must contain digits (0-9)" - must_contain_special_chars: "must contain special characters (!, $, %, ...)" - - actionview_instancetag_blank_option: Molimo odaberite - - general_text_No: 'Da' - general_text_Yes: 'Ne' - general_text_no: 'ne' - general_text_yes: 'da' - general_lang_name: 'Bosnian (Bosanski)' - general_csv_separator: ',' - general_csv_decimal_separator: '.' - general_csv_encoding: UTF-8 - general_pdf_fontname: freesans - general_pdf_monospaced_fontname: freemono - general_first_day_of_week: '7' - - notice_account_activated: Vaš nalog je aktiviran. Možete se prijaviti. - notice_account_invalid_credentials: Pogrešan korisnik ili lozinka - notice_account_lost_email_sent: Email sa uputstvima o izboru nove šifre je poslat na vašu adresu. - notice_account_password_updated: Lozinka je uspješno promjenjena. - notice_account_pending: "Vaš nalog je kreiran i čeka odobrenje administratora." - notice_account_register_done: Nalog je uspješno kreiran. Da bi ste aktivirali vaš nalog kliknite na link koji vam je poslat. - notice_account_unknown_email: Nepoznati korisnik. - notice_account_updated: Nalog je uspješno promjenen. - notice_account_wrong_password: Pogrešna lozinka - notice_can_t_change_password: Ovaj nalog koristi eksterni izvor prijavljivanja. Ne mogu da promjenim šifru. - notice_default_data_loaded: Podrazumjevana konfiguracija uspječno učitana. - notice_email_error: Došlo je do greške pri slanju emaila (%{value}) - notice_email_sent: "Email je poslan %{value}" - notice_failed_to_save_issues: "Neuspješno snimanje %{count} aktivnosti na %{total} izabrano: %{ids}." - notice_feeds_access_key_reseted: Vaš Atom pristup je resetovan. - notice_file_not_found: Stranica kojoj pokušavate da pristupite ne postoji ili je uklonjena. - notice_locking_conflict: "Konflikt: podaci su izmjenjeni od strane drugog korisnika." - notice_no_issue_selected: "Nijedna aktivnost nije izabrana! Molim, izaberite aktivnosti koje želite za ispravljate." - notice_not_authorized: Niste ovlašćeni da pristupite ovoj stranici. - notice_successful_connection: Uspješna konekcija. - notice_successful_create: Uspješno kreiranje. - notice_successful_delete: Brisanje izvršeno. - notice_successful_update: Promjene uspješno izvršene. - - error_can_t_load_default_data: "Podrazumjevane postavke se ne mogu učitati %{value}" - error_scm_command_failed: "Desila se greška pri pristupu repozitoriju: %{value}" - error_scm_not_found: "Unos i/ili revizija ne postoji u repozitoriju." - - error_scm_annotate: "Ova stavka ne postoji ili nije označena." - error_issue_not_found_in_project: 'Aktivnost nije nađena ili ne pripada ovom projektu' - - warning_attachments_not_saved: "%{count} fajl(ovi) ne mogu biti snimljen(i)." - - mail_subject_lost_password: "Vaša %{value} lozinka" - mail_body_lost_password: 'Za promjenu lozinke, kliknite na sljedeći link:' - mail_subject_register: "Aktivirajte %{value} vaš korisnički račun" - mail_body_register: 'Za aktivaciju vašeg korisničkog računa, kliknite na sljedeći link:' - mail_body_account_information_external: "Možete koristiti vaš %{value} korisnički račun za prijavu na sistem." - mail_body_account_information: Informacija o vašem korisničkom računu - mail_subject_account_activation_request: "%{value} zahtjev za aktivaciju korisničkog računa" - mail_body_account_activation_request: "Novi korisnik (%{value}) se registrovao. Korisnički račun čeka vaše odobrenje za aktivaciju:" - mail_subject_reminder: "%{count} aktivnost(i) u kašnjenju u narednim %{days} danima" - mail_body_reminder: "%{count} aktivnost(i) koje su dodjeljenje vama u narednim %{days} danima:" - - - field_name: Ime - field_description: Opis - field_summary: Pojašnjenje - field_is_required: Neophodno popuniti - field_firstname: Ime - field_lastname: Prezime - field_mail: Email - field_filename: Fajl - field_filesize: Veličina - field_downloads: Downloadi - field_author: Autor - field_created_on: Kreirano - field_updated_on: Izmjenjeno - field_field_format: Format - field_is_for_all: Za sve projekte - field_possible_values: Moguće vrijednosti - field_regexp: '"Regularni izraz"' - field_min_length: Minimalna veličina - field_max_length: Maksimalna veličina - field_value: Vrijednost - field_category: Kategorija - field_title: Naslov - field_project: Projekat - field_issue: Aktivnost - field_status: Status - field_notes: Bilješke - field_is_closed: Aktivnost zatvorena - field_is_default: Podrazumjevana vrijednost - field_tracker: Područje aktivnosti - field_subject: Subjekat - field_due_date: Završiti do - field_assigned_to: Dodijeljeno - field_priority: Prioritet - field_fixed_version: Ciljna verzija - field_user: Korisnik - field_role: Uloga - field_homepage: Naslovna strana - field_is_public: Javni - field_parent: Podprojekt od - field_is_in_roadmap: Aktivnosti prikazane u planu realizacije - field_login: Prijava - field_mail_notification: Email notifikacije - field_admin: Administrator - field_last_login_on: Posljednja konekcija - field_language: Jezik - field_effective_date: Datum - field_password: Lozinka - field_new_password: Nova lozinka - field_password_confirmation: Potvrda - field_version: Verzija - field_type: Tip - field_host: Host - field_port: Port - field_account: Korisnički račun - field_base_dn: Base DN - field_attr_login: Attribut za prijavu - field_attr_firstname: Attribut za ime - field_attr_lastname: Atribut za prezime - field_attr_mail: Atribut za email - field_onthefly: 'Kreiranje korisnika "On-the-fly"' - field_start_date: Početak - field_done_ratio: "% Realizovano" - field_auth_source: Mod za authentifikaciju - field_hide_mail: Sakrij moju email adresu - field_comments: Komentar - field_url: URL - field_start_page: Početna stranica - field_subproject: Podprojekat - field_hours: Sahata - field_activity: Operacija - field_spent_on: Datum - field_identifier: Identifikator - field_is_filter: Korišteno kao filter - field_issue_to: Povezana aktivnost - field_delay: Odgađanje - field_assignable: Aktivnosti dodijeljene ovoj ulozi - field_redirect_existing_links: Izvrši redirekciju postojećih linkova - field_estimated_hours: Procjena vremena - field_column_names: Kolone - field_time_zone: Vremenska zona - field_searchable: Pretraživo - field_default_value: Podrazumjevana vrijednost - field_comments_sorting: Prikaži komentare - field_parent_title: 'Stranica "roditelj"' - field_editable: Može se mijenjati - field_watcher: Posmatrač - field_identity_url: OpenID URL - field_content: Sadržaj - - setting_app_title: Naslov aplikacije - setting_welcome_text: Tekst dobrodošlice - setting_default_language: Podrazumjevani jezik - setting_login_required: Authentifikacija neophodna - setting_self_registration: Samo-registracija - setting_attachment_max_size: Maksimalna veličina prikačenog fajla - setting_issues_export_limit: Limit za eksport aktivnosti - setting_mail_from: Mail adresa - pošaljilac - setting_bcc_recipients: '"BCC" (blind carbon copy) primaoci ' - setting_plain_text_mail: Email sa običnim tekstom (bez HTML-a) - setting_host_name: Ime hosta i putanja - setting_text_formatting: Formatiranje teksta - setting_wiki_compression: Kompresija Wiki istorije - - setting_feeds_limit: 'Limit za "Atom" feed-ove' - setting_default_projects_public: Podrazumjeva se da je novi projekat javni - setting_autofetch_changesets: 'Automatski kupi "commit"-e' - setting_sys_api_enabled: 'Omogući "WS" za upravljanje repozitorijom' - setting_commit_ref_keywords: Ključne riječi za reference - setting_commit_fix_keywords: 'Ključne riječi za status "zatvoreno"' - setting_autologin: Automatski login - setting_date_format: Format datuma - setting_time_format: Format vremena - setting_cross_project_issue_relations: Omogući relacije između aktivnosti na različitim projektima - setting_issue_list_default_columns: Podrazumjevane koleone za prikaz na listi aktivnosti - setting_emails_footer: Potpis na email-ovima - setting_protocol: Protokol - setting_per_page_options: Broj objekata po stranici - setting_user_format: Format korisničkog prikaza - setting_activity_days_default: Prikaz promjena na projektu - opseg dana - setting_display_subprojects_issues: Prikaz podprojekata na glavnom projektima (podrazumjeva se) - setting_enabled_scm: Omogući SCM (source code management) - setting_mail_handler_api_enabled: Omogući automatsku obradu ulaznih emailova - setting_mail_handler_api_key: API ključ (obrada ulaznih mailova) - setting_sequential_project_identifiers: Generiši identifikatore projekta sekvencijalno - setting_gravatar_enabled: 'Koristi "gravatar" korisničke ikone' - setting_diff_max_lines_displayed: Maksimalan broj linija za prikaz razlika između dva fajla - setting_file_max_size_displayed: Maksimalna veličina fajla kod prikaza razlika unutar fajla (inline) - setting_repository_log_display_limit: Maksimalna veličina revizija prikazanih na log fajlu - setting_openid: Omogući OpenID prijavu i registraciju - - permission_edit_project: Ispravke projekta - permission_select_project_modules: Odaberi module projekta - permission_manage_members: Upravljanje članovima - permission_manage_versions: Upravljanje verzijama - permission_manage_categories: Upravljanje kategorijama aktivnosti - permission_add_issues: Dodaj aktivnosti - permission_edit_issues: Ispravka aktivnosti - permission_manage_issue_relations: Upravljaj relacijama među aktivnostima - permission_add_issue_notes: Dodaj bilješke - permission_edit_issue_notes: Ispravi bilješke - permission_edit_own_issue_notes: Ispravi sopstvene bilješke - permission_delete_issues: Izbriši aktivnosti - permission_manage_public_queries: Upravljaj javnim upitima - permission_save_queries: Snimi upite - permission_view_gantt: Pregled gantograma - permission_view_calendar: Pregled kalendara - permission_view_issue_watchers: Pregled liste korisnika koji prate aktivnost - permission_add_issue_watchers: Dodaj onoga koji prati aktivnost - permission_log_time: Evidentiraj utrošak vremena - permission_view_time_entries: Pregled utroška vremena - permission_edit_time_entries: Ispravka utroška vremena - permission_edit_own_time_entries: Ispravka svog utroška vremena - permission_manage_news: Upravljaj novostima - permission_comment_news: Komentiraj novosti - permission_view_documents: Pregled dokumenata - permission_manage_files: Upravljaj fajlovima - permission_view_files: Pregled fajlova - permission_manage_wiki: Upravljaj wiki stranicama - permission_rename_wiki_pages: Ispravi wiki stranicu - permission_delete_wiki_pages: Izbriši wiki stranicu - permission_view_wiki_pages: Pregled wiki sadržaja - permission_view_wiki_edits: Pregled wiki istorije - permission_edit_wiki_pages: Ispravka wiki stranica - permission_delete_wiki_pages_attachments: Brisanje fajlova prikačenih wiki-ju - permission_protect_wiki_pages: Zaštiti wiki stranicu - permission_manage_repository: Upravljaj repozitorijem - permission_browse_repository: Pregled repozitorija - permission_view_changesets: Pregled setova promjena - permission_commit_access: 'Pristup "commit"-u' - permission_manage_boards: Upravljaj forumima - permission_view_messages: Pregled poruka - permission_add_messages: Šalji poruke - permission_edit_messages: Ispravi poruke - permission_edit_own_messages: Ispravka sopstvenih poruka - permission_delete_messages: Prisanje poruka - permission_delete_own_messages: Brisanje sopstvenih poruka - - project_module_issue_tracking: Praćenje aktivnosti - project_module_time_tracking: Praćenje vremena - project_module_news: Novosti - project_module_documents: Dokumenti - project_module_files: Fajlovi - project_module_wiki: Wiki stranice - project_module_repository: Repozitorij - project_module_boards: Forumi - - label_user: Korisnik - label_user_plural: Korisnici - label_user_new: Novi korisnik - label_project: Projekat - label_project_new: Novi projekat - label_project_plural: Projekti - label_x_projects: - zero: 0 projekata - one: 1 projekat - other: "%{count} projekata" - label_project_all: Svi projekti - label_project_latest: Posljednji projekti - label_issue: Aktivnost - label_issue_new: Nova aktivnost - label_issue_plural: Aktivnosti - label_issue_view_all: Vidi sve aktivnosti - label_issues_by: "Aktivnosti po %{value}" - label_issue_added: Aktivnost je dodana - label_issue_updated: Aktivnost je izmjenjena - label_document: Dokument - label_document_new: Novi dokument - label_document_plural: Dokumenti - label_document_added: Dokument je dodan - label_role: Uloga - label_role_plural: Uloge - label_role_new: Nove uloge - label_role_and_permissions: Uloge i dozvole - label_member: Izvršilac - label_member_new: Novi izvršilac - label_member_plural: Izvršioci - label_tracker: Područje aktivnosti - label_tracker_plural: Područja aktivnosti - label_tracker_new: Novo područje aktivnosti - label_workflow: Tok promjena na aktivnosti - label_issue_status: Status aktivnosti - label_issue_status_plural: Statusi aktivnosti - label_issue_status_new: Novi status - label_issue_category: Kategorija aktivnosti - label_issue_category_plural: Kategorije aktivnosti - label_issue_category_new: Nova kategorija - label_custom_field: Proizvoljno polje - label_custom_field_plural: Proizvoljna polja - label_custom_field_new: Novo proizvoljno polje - label_enumerations: Enumeracije - label_enumeration_new: Nova vrijednost - label_information: Informacija - label_information_plural: Informacije - label_register: Registracija - label_login_with_open_id_option: ili prijava sa OpenID-om - label_password_lost: Izgubljena lozinka - label_home: Početna stranica - label_my_page: Moja stranica - label_my_account: Moj korisnički račun - label_my_projects: Moji projekti - label_administration: Administracija - label_login: Prijavi se - label_logout: Odjavi se - label_help: Pomoć - label_reported_issues: Prijavljene aktivnosti - label_assigned_to_me_issues: Aktivnosti dodjeljene meni - label_last_login: Posljednja konekcija - label_registered_on: Registrovan na - label_activity_plural: Promjene - label_activity: Operacija - label_overall_activity: Pregled svih promjena - label_user_activity: "Promjene izvršene od: %{value}" - label_new: Novi - label_logged_as: Prijavljen kao - label_environment: Sistemsko okruženje - label_authentication: Authentifikacija - label_auth_source: Mod authentifikacije - label_auth_source_new: Novi mod authentifikacije - label_auth_source_plural: Modovi authentifikacije - label_subproject_plural: Podprojekti - label_and_its_subprojects: "%{value} i njegovi podprojekti" - label_min_max_length: Min - Maks dužina - label_list: Lista - label_date: Datum - label_integer: Cijeli broj - label_float: Float - label_boolean: Logička varijabla - label_string: Tekst - label_text: Dugi tekst - label_attribute: Atribut - label_attribute_plural: Atributi - label_no_data: Nema podataka za prikaz - label_change_status: Promjeni status - label_history: Istorija - label_attachment: Fajl - label_attachment_new: Novi fajl - label_attachment_delete: Izbriši fajl - label_attachment_plural: Fajlovi - label_file_added: Fajl je dodan - label_report: Izvještaj - label_report_plural: Izvještaji - label_news: Novosti - label_news_new: Dodaj novosti - label_news_plural: Novosti - label_news_latest: Posljednje novosti - label_news_view_all: Pogledaj sve novosti - label_news_added: Novosti su dodane - label_settings: Postavke - label_overview: Pregled - label_version: Verzija - label_version_new: Nova verzija - label_version_plural: Verzije - label_confirmation: Potvrda - label_export_to: 'Takođe dostupno u:' - label_read: Čitaj... - label_public_projects: Javni projekti - label_open_issues: otvoren - label_open_issues_plural: otvoreni - label_closed_issues: zatvoren - label_closed_issues_plural: zatvoreni - label_x_open_issues_abbr: - zero: 0 otvoreno - one: 1 otvorena - other: "%{count} otvorene" - label_x_closed_issues_abbr: - zero: 0 zatvoreno - one: 1 zatvorena - other: "%{count} zatvorene" - label_total: Ukupno - label_permissions: Dozvole - label_current_status: Tekući status - label_new_statuses_allowed: Novi statusi dozvoljeni - label_all: sve - label_none: ništa - label_nobody: niko - label_next: Sljedeće - label_previous: Predhodno - label_used_by: Korišteno od - label_details: Detalji - label_add_note: Dodaj bilješku - label_calendar: Kalendar - label_months_from: mjeseci od - label_gantt: Gantt - label_internal: Interno - label_last_changes: "posljednjih %{count} promjena" - label_change_view_all: Vidi sve promjene - label_comment: Komentar - label_comment_plural: Komentari - label_x_comments: - zero: bez komentara - one: 1 komentar - other: "%{count} komentari" - label_comment_add: Dodaj komentar - label_comment_added: Komentar je dodan - label_comment_delete: Izbriši komentar - label_query: Proizvoljan upit - label_query_plural: Proizvoljni upiti - label_query_new: Novi upit - label_filter_add: Dodaj filter - label_filter_plural: Filteri - label_equals: je - label_not_equals: nije - label_in_less_than: je manji nego - label_in_more_than: je više nego - label_in: u - label_today: danas - label_yesterday: juče - label_this_week: ova hefta - label_last_week: zadnja hefta - label_last_n_days: "posljednjih %{count} dana" - label_this_month: ovaj mjesec - label_last_month: posljednji mjesec - label_this_year: ova godina - label_date_range: Datumski opseg - label_less_than_ago: ranije nego (dana) - label_more_than_ago: starije nego (dana) - label_ago: prije (dana) - label_contains: sadrži - label_not_contains: ne sadrži - label_day_plural: dani - label_repository: Repozitorij - label_repository_plural: Repozitoriji - label_browse: Listaj - label_revision: Revizija - label_revision_plural: Revizije - label_associated_revisions: Doddjeljene revizije - label_added: dodano - label_modified: izmjenjeno - label_copied: kopirano - label_renamed: preimenovano - label_deleted: izbrisano - label_latest_revision: Posljednja revizija - label_latest_revision_plural: Posljednje revizije - label_view_revisions: Vidi revizije - label_max_size: Maksimalna veličina - label_sort_highest: Pomjeri na vrh - label_sort_higher: Pomjeri gore - label_sort_lower: Pomjeri dole - label_sort_lowest: Pomjeri na dno - label_roadmap: Plan realizacije - label_roadmap_due_in: "Obavezan do %{value}" - label_roadmap_overdue: "%{value} kasni" - label_roadmap_no_issues: Nema aktivnosti za ovu verziju - label_search: Traži - label_result_plural: Rezultati - label_all_words: Sve riječi - label_wiki: Wiki stranice - label_wiki_edit: ispravka wiki-ja - label_wiki_edit_plural: ispravke wiki-ja - label_wiki_page: Wiki stranica - label_wiki_page_plural: Wiki stranice - label_index_by_title: Indeks prema naslovima - label_index_by_date: Indeks po datumima - label_current_version: Tekuća verzija - label_preview: Pregled - label_feed_plural: Feeds - label_changes_details: Detalji svih promjena - label_issue_tracking: Evidencija aktivnosti - label_spent_time: Utrošak vremena - label_f_hour: "%{value} sahat" - label_f_hour_plural: "%{value} sahata" - label_time_tracking: Evidencija vremena - label_change_plural: Promjene - label_statistics: Statistika - label_commits_per_month: '"Commit"-a po mjesecu' - label_commits_per_author: '"Commit"-a po autoru' - label_view_diff: Pregled razlika - label_diff_inline: zajedno - label_diff_side_by_side: jedna pored druge - label_options: Opcije - label_copy_workflow_from: Kopiraj tok promjena statusa iz - label_permissions_report: Izvještaj - label_watched_issues: Aktivnosti koje pratim - label_related_issues: Korelirane aktivnosti - label_applied_status: Status je primjenjen - label_loading: Učitavam... - label_relation_new: Nova relacija - label_relation_delete: Izbriši relaciju - label_relates_to: korelira sa - label_duplicates: duplikat - label_duplicated_by: duplicirano od - label_blocks: blokira - label_blocked_by: blokirano on - label_precedes: predhodi - label_follows: slijedi - label_stay_logged_in: Ostani prijavljen - label_disabled: onemogućen - label_show_completed_versions: Prikaži završene verzije - label_me: ja - label_board: Forum - label_board_new: Novi forum - label_board_plural: Forumi - label_topic_plural: Teme - label_message_plural: Poruke - label_message_last: Posljednja poruka - label_message_new: Nova poruka - label_message_posted: Poruka je dodana - label_reply_plural: Odgovori - label_send_information: Pošalji informaciju o korisničkom računu - label_year: Godina - label_month: Mjesec - label_week: Hefta - label_date_from: Od - label_date_to: Do - label_language_based: Bazirano na korisnikovom jeziku - label_sort_by: "Sortiraj po %{value}" - label_send_test_email: Pošalji testni email - label_feeds_access_key_created_on: "Atom pristupni ključ kreiran prije %{value} dana" - label_module_plural: Moduli - label_added_time_by: "Dodano od %{author} prije %{age}" - label_updated_time_by: "Izmjenjeno od %{author} prije %{age}" - label_updated_time: "Izmjenjeno prije %{value}" - label_jump_to_a_project: Skoči na projekat... - label_file_plural: Fajlovi - label_changeset_plural: Setovi promjena - label_default_columns: Podrazumjevane kolone - label_no_change_option: (Bez promjene) - label_bulk_edit_selected_issues: Ispravi odjednom odabrane aktivnosti - label_theme: Tema - label_default: Podrazumjevano - label_search_titles_only: Pretraži samo naslove - label_user_mail_option_all: "Za bilo koji događaj na svim mojim projektima" - label_user_mail_option_selected: "Za bilo koji događaj na odabranim projektima..." - label_user_mail_no_self_notified: "Ne želim notifikaciju za promjene koje sam ja napravio" - label_registration_activation_by_email: aktivacija korisničkog računa email-om - label_registration_manual_activation: ručna aktivacija korisničkog računa - label_registration_automatic_activation: automatska kreacija korisničkog računa - label_display_per_page: "Po stranici: %{value}" - label_age: Starost - label_change_properties: Promjena osobina - label_general: Generalno - label_scm: SCM - label_plugins: Plugin-ovi - label_ldap_authentication: LDAP authentifikacija - label_downloads_abbr: D/L - label_optional_description: Opis (opciono) - label_add_another_file: Dodaj još jedan fajl - label_preferences: Postavke - label_chronological_order: Hronološki poredak - label_reverse_chronological_order: Reverzni hronološki poredak - label_incoming_emails: Dolazni email-ovi - label_generate_key: Generiši ključ - label_issue_watchers: Praćeno od - label_example: Primjer - label_display: Prikaz - - button_apply: Primjeni - button_add: Dodaj - button_archive: Arhiviranje - button_back: Nazad - button_cancel: Odustani - button_change: Izmjeni - button_change_password: Izmjena lozinke - button_check_all: Označi sve - button_clear: Briši - button_copy: Kopiraj - button_create: Novi - button_delete: Briši - button_download: Download - button_edit: Ispravka - button_list: Lista - button_lock: Zaključaj - button_log_time: Utrošak vremena - button_login: Prijava - button_move: Pomjeri - button_rename: Promjena imena - button_reply: Odgovor - button_reset: Resetuj - button_rollback: Vrati predhodno stanje - button_save: Snimi - button_sort: Sortiranje - button_submit: Pošalji - button_test: Testiraj - button_unarchive: Otpakuj arhivu - button_uncheck_all: Isključi sve - button_unlock: Otključaj - button_unwatch: Prekini notifikaciju - button_update: Promjena na aktivnosti - button_view: Pregled - button_watch: Notifikacija - button_configure: Konfiguracija - button_quote: Citat - - status_active: aktivan - status_registered: registrovan - status_locked: zaključan - - text_select_mail_notifications: Odaberi događaje za koje će se slati email notifikacija. - text_regexp_info: npr. ^[A-Z0-9]+$ - text_min_max_length_info: 0 znači bez restrikcije - text_project_destroy_confirmation: Sigurno želite izbrisati ovaj projekat i njegove podatke ? - text_subprojects_destroy_warning: "Podprojekt(i): %{value} će takođe biti izbrisani." - text_workflow_edit: Odaberite ulogu i područje aktivnosti za ispravku toka promjena na aktivnosti - text_are_you_sure: Da li ste sigurni ? - text_tip_issue_begin_day: zadatak počinje danas - text_tip_issue_end_day: zadatak završava danas - text_tip_issue_begin_end_day: zadatak započinje i završava danas - text_caracters_maximum: "maksimum %{count} karaktera." - text_caracters_minimum: "Dužina mora biti najmanje %{count} znakova." - text_length_between: "Broj znakova između %{min} i %{max}." - text_tracker_no_workflow: Tok statusa nije definisan za ovo područje aktivnosti - text_unallowed_characters: Nedozvoljeni znakovi - text_comma_separated: Višestruke vrijednosti dozvoljene (odvojiti zarezom). - text_issues_ref_in_commit_messages: 'Referenciranje i zatvaranje aktivnosti putem "commit" poruka' - text_issue_added: "Aktivnost %{id} je prijavljena od %{author}." - text_issue_updated: "Aktivnost %{id} je izmjenjena od %{author}." - text_wiki_destroy_confirmation: Sigurno želite izbrisati ovaj wiki i čitav njegov sadržaj ? - text_issue_category_destroy_question: "Neke aktivnosti (%{count}) pripadaju ovoj kategoriji. Sigurno to želite uraditi ?" - text_issue_category_destroy_assignments: Ukloni kategoriju - text_issue_category_reassign_to: Ponovo dodijeli ovu kategoriju - text_user_mail_option: "Za projekte koje niste odabrali, primićete samo notifikacije o stavkama koje pratite ili ste u njih uključeni (npr. vi ste autor ili su vama dodjeljenje)." - text_no_configuration_data: "Uloge, područja aktivnosti, statusi aktivnosti i tok promjena statusa nisu konfigurisane.\nKrajnje je preporučeno da učitate tekuđe postavke. Kasnije ćete ih moći mjenjati po svojim potrebama." - text_load_default_configuration: Učitaj tekuću konfiguraciju - text_status_changed_by_changeset: "Primjenjeno u setu promjena %{value}." - text_issues_destroy_confirmation: 'Sigurno želite izbrisati odabranu/e aktivnost/i ?' - text_select_project_modules: 'Odaberi module koje želite u ovom projektu:' - text_default_administrator_account_changed: Tekući administratorski račun je promjenjen - text_file_repository_writable: U direktorij sa fajlovima koji su prilozi se može pisati - text_plugin_assets_writable: U direktorij plugin-ova se može pisati - text_minimagick_available: MiniMagick je dostupan (opciono) - text_destroy_time_entries_question: "%{hours} sahata je prijavljeno na aktivnostima koje želite brisati. Želite li to učiniti ?" - text_destroy_time_entries: Izbriši prijavljeno vrijeme - text_assign_time_entries_to_project: Dodaj prijavljenoo vrijeme projektu - text_reassign_time_entries: 'Preraspodjeli prijavljeno vrijeme na ovu aktivnost:' - text_user_wrote: "%{value} je napisao/la:" - text_user_wrote_in: "%{value} je napisao/la (%{link}):" - text_enumeration_destroy_question: "Za %{count} objekata je dodjeljenja ova vrijednost." - text_enumeration_category_reassign_to: 'Ponovo im dodjeli ovu vrijednost:' - text_email_delivery_not_configured: "Email dostava nije konfiguraisana, notifikacija je onemogućena.\nKonfiguriši SMTP server u config/configuration.yml i restartuj aplikaciju nakon toga." - text_repository_usernames_mapping: "Odaberi ili ispravi redmine korisnika mapiranog za svako korisničko ima nađeno u logu repozitorija.\nKorisnici sa istim imenom u redmineu i u repozitoruju se automatski mapiraju." - text_diff_truncated: '... Ovaj prikaz razlike je odsječen pošto premašuje maksimalnu veličinu za prikaz' - text_custom_field_possible_values_info: 'Jedna linija za svaku vrijednost' - - default_role_manager: Menadžer - default_role_developer: Programer - default_role_reporter: Reporter - default_tracker_bug: Greška - default_tracker_feature: Nova funkcija - default_tracker_support: Podrška - default_issue_status_new: Novi - default_issue_status_in_progress: In Progress - default_issue_status_resolved: Riješen - default_issue_status_feedback: Čeka se povratna informacija - default_issue_status_closed: Zatvoren - default_issue_status_rejected: Odbijen - default_doc_category_user: Korisnička dokumentacija - default_doc_category_tech: Tehnička dokumentacija - default_priority_low: Nizak - default_priority_normal: Normalan - default_priority_high: Visok - default_priority_urgent: Urgentno - default_priority_immediate: Odmah - default_activity_design: Dizajn - default_activity_development: Programiranje - - enumeration_issue_priorities: Prioritet aktivnosti - enumeration_doc_categories: Kategorije dokumenata - enumeration_activities: Operacije (utrošak vremena) - notice_unable_delete_version: Ne mogu izbrisati verziju. - button_create_and_continue: Kreiraj i nastavi - button_annotate: Zabilježi - button_activate: Aktiviraj - label_sort: Sortiranje - label_date_from_to: Od %{start} do %{end} - label_ascending: Rastuće - label_descending: Opadajuće - label_greater_or_equal: ">=" - label_less_or_equal: <= - text_wiki_page_destroy_question: This page has %{descendants} child page(s) and descendant(s). What do you want to do? - text_wiki_page_reassign_children: Reassign child pages to this parent page - text_wiki_page_nullify_children: Keep child pages as root pages - text_wiki_page_destroy_children: Delete child pages and all their descendants - setting_password_min_length: Minimum password length - field_group_by: Group results by - mail_subject_wiki_content_updated: "'%{id}' wiki page has been updated" - label_wiki_content_added: Wiki page added - mail_subject_wiki_content_added: "'%{id}' wiki page has been added" - mail_body_wiki_content_added: The '%{id}' wiki page has been added by %{author}. - label_wiki_content_updated: Wiki page updated - mail_body_wiki_content_updated: The '%{id}' wiki page has been updated by %{author}. - permission_add_project: Create project - setting_new_project_user_role_id: Role given to a non-admin user who creates a project - label_view_all_revisions: View all revisions - label_tag: Tag - label_branch: Branch - error_no_tracker_in_project: No tracker is associated to this project. Please check the Project settings. - error_no_default_issue_status: No default issue status is defined. Please check your configuration (Go to "Administration -> Issue statuses"). - text_journal_changed: "%{label} changed from %{old} to %{new}" - text_journal_set_to: "%{label} set to %{value}" - text_journal_deleted: "%{label} deleted (%{old})" - label_group_plural: Groups - label_group: Group - label_group_new: New group - label_time_entry_plural: Spent time - text_journal_added: "%{label} %{value} added" - field_active: Active - enumeration_system_activity: System Activity - permission_delete_issue_watchers: Delete watchers - version_status_closed: closed - version_status_locked: locked - version_status_open: open - error_can_not_reopen_issue_on_closed_version: An issue assigned to a closed version can not be reopened - label_user_anonymous: Anonymous - button_move_and_follow: Move and follow - setting_default_projects_modules: Default enabled modules for new projects - setting_gravatar_default: Default Gravatar image - field_sharing: Sharing - label_version_sharing_hierarchy: With project hierarchy - label_version_sharing_system: With all projects - label_version_sharing_descendants: With subprojects - label_version_sharing_tree: With project tree - label_version_sharing_none: Not shared - error_can_not_archive_project: This project can not be archived - button_copy_and_follow: Copy and follow - label_copy_source: Source - setting_issue_done_ratio: Calculate the issue done ratio with - setting_issue_done_ratio_issue_status: Use the issue status - error_issue_done_ratios_not_updated: Issue done ratios not updated. - error_workflow_copy_target: Please select target tracker(s) and role(s) - setting_issue_done_ratio_issue_field: Use the issue field - label_copy_same_as_target: Same as target - label_copy_target: Target - notice_issue_done_ratios_updated: Issue done ratios updated. - error_workflow_copy_source: Please select a source tracker or role - label_update_issue_done_ratios: Update issue done ratios - setting_start_of_week: Start calendars on - permission_view_issues: View Issues - label_display_used_statuses_only: Only display statuses that are used by this tracker - label_revision_id: Revision %{value} - label_api_access_key: API access key - label_api_access_key_created_on: API access key created %{value} ago - label_feeds_access_key: Atom access key - notice_api_access_key_reseted: Your API access key was reset. - setting_rest_api_enabled: Enable REST web service - label_missing_api_access_key: Missing an API access key - label_missing_feeds_access_key: Missing a Atom access key - button_show: Show - text_line_separated: Multiple values allowed (one line for each value). - setting_mail_handler_body_delimiters: Truncate emails after one of these lines - permission_add_subprojects: Create subprojects - label_subproject_new: New subproject - 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. - Are you sure you want to continue? - label_close_versions: Close completed versions - label_board_sticky: Sticky - label_board_locked: Locked - permission_export_wiki_pages: Export wiki pages - setting_cache_formatted_text: Cache formatted text - permission_manage_project_activities: Manage project activities - error_unable_delete_issue_status: Unable to delete issue status (%{value}) - label_profile: Profile - permission_manage_subtasks: Manage subtasks - field_parent_issue: Parent task - label_subtask_plural: Subtasks - label_project_copy_notifications: Send email notifications during the project copy - error_can_not_delete_custom_field: Unable to delete custom field - error_unable_to_connect: Unable to connect (%{value}) - error_can_not_remove_role: This role is in use and can not be deleted. - error_can_not_delete_tracker: This tracker contains issues and cannot be deleted. - field_principal: Principal - notice_failed_to_save_members: "Failed to save member(s): %{errors}." - text_zoom_out: Zoom out - text_zoom_in: Zoom in - notice_unable_delete_time_entry: Unable to delete time log entry. - label_overall_spent_time: Overall spent time - field_time_entries: Log time - project_module_gantt: Gantt - project_module_calendar: Calendar - button_edit_associated_wikipage: "Edit associated Wiki page: %{page_title}" - field_text: Text field - setting_default_notification_option: Default notification option - label_user_mail_option_only_my_events: Only for things I watch or I'm involved in - label_user_mail_option_none: No events - field_member_of_group: Assignee's group - field_assigned_to_role: Assignee's role - notice_not_authorized_archived_project: The project you're trying to access has been archived. - label_principal_search: "Search for user or group:" - label_user_search: "Search for user:" - field_visible: Visible - setting_commit_logtime_activity_id: Activity for logged time - text_time_logged_by_changeset: Applied in changeset %{value}. - setting_commit_logtime_enabled: Enable time logging - notice_gantt_chart_truncated: The chart was truncated because it exceeds the maximum number of items that can be displayed (%{max}) - setting_gantt_items_limit: Maximum number of items displayed on the gantt chart - field_warn_on_leaving_unsaved: Warn me when leaving a page with unsaved text - text_warn_on_leaving_unsaved: The current page contains unsaved text that will be lost if you leave this page. - label_my_queries: My custom queries - text_journal_changed_no_detail: "%{label} updated" - label_news_comment_added: Comment added to a news - button_expand_all: Expand all - button_collapse_all: Collapse all - label_additional_workflow_transitions_for_assignee: Additional transitions allowed when the user is the assignee - label_additional_workflow_transitions_for_author: Additional transitions allowed when the user is the author - label_bulk_edit_selected_time_entries: Bulk edit selected time entries - text_time_entries_destroy_confirmation: Are you sure you want to delete the selected time entr(y/ies)? - label_role_anonymous: Anonymous - label_role_non_member: Non member - label_issue_note_added: Note added - label_issue_status_updated: Status updated - label_issue_priority_updated: Priority updated - label_issues_visibility_own: Issues created by or assigned to the user - field_issues_visibility: Issues visibility - label_issues_visibility_all: All issues - permission_set_own_issues_private: Set own issues public or private - field_is_private: Private - permission_set_issues_private: Set issues public or private - label_issues_visibility_public: All non private issues - text_issues_destroy_descendants_confirmation: This will also delete %{count} subtask(s). - field_commit_logs_encoding: 'Enkodiranje "commit" poruka' - field_scm_path_encoding: Path encoding - text_scm_path_encoding_note: "Default: UTF-8" - field_path_to_repository: Path to repository - field_root_directory: Root directory - field_cvs_module: Module - field_cvsroot: CVSROOT - text_mercurial_repository_note: Local repository (e.g. /hgrepo, c:\hgrepo) - text_scm_command: Command - text_scm_command_version: Version - label_git_report_last_commit: Report last commit for files and directories - notice_issue_successful_create: Issue %{id} created. - label_between: between - setting_issue_group_assignment: Allow issue assignment to groups - label_diff: diff - text_git_repository_note: Repository is bare and local (e.g. /gitrepo, c:\gitrepo) - description_query_sort_criteria_direction: Sort direction - description_project_scope: Search scope - description_filter: Filter - description_user_mail_notification: Mail notification settings - description_message_content: Message content - description_available_columns: Available Columns - description_issue_category_reassign: Choose issue category - description_search: Searchfield - description_notes: Notes - description_choose_project: Projects - description_query_sort_criteria_attribute: Sort attribute - description_wiki_subpages_reassign: Choose new parent page - description_selected_columns: Selected Columns - label_parent_revision: Parent - label_child_revision: Child - error_scm_annotate_big_text_file: The entry cannot be annotated, as it exceeds the maximum text file size. - setting_default_issue_start_date_to_creation_date: Use current date as start date for new issues - button_edit_section: Edit this section - setting_repositories_encodings: Attachments and repositories encodings - description_all_columns: All Columns - button_export: Export - label_export_options: "%{export_format} export options" - error_attachment_too_big: This file cannot be uploaded because it exceeds the maximum allowed file size (%{max_size}) - notice_failed_to_save_time_entries: "Failed to save %{count} time entrie(s) on %{total} selected: %{ids}." - label_x_issues: - zero: 0 aktivnost - one: 1 aktivnost - other: "%{count} aktivnosti" - label_repository_new: New repository - field_repository_is_default: Main repository - label_copy_attachments: Copy attachments - label_item_position: "%{position}/%{count}" - label_completed_versions: Completed versions - text_project_identifier_info: Only lower case letters (a-z), numbers, dashes and underscores are allowed.
    Once saved, the identifier cannot be changed. - field_multiple: Multiple values - setting_commit_cross_project_ref: Allow issues of all the other projects to be referenced and fixed - text_issue_conflict_resolution_add_notes: Add my notes and discard my other changes - text_issue_conflict_resolution_overwrite: Apply my changes anyway (previous notes will be kept but some changes may be overwritten) - notice_issue_update_conflict: The issue has been updated by an other user while you were editing it. - text_issue_conflict_resolution_cancel: Discard all my changes and redisplay %{link} - permission_manage_related_issues: Manage related issues - field_auth_source_ldap_filter: LDAP filter - label_search_for_watchers: Search for watchers to add - notice_account_deleted: Your account has been permanently deleted. - setting_unsubscribe: Allow users to delete their own account - button_delete_my_account: Delete my account - text_account_destroy_confirmation: |- - Are you sure you want to proceed? - Your account will be permanently deleted, with no way to reactivate it. - error_session_expired: Your session has expired. Please login again. - text_session_expiration_settings: "Warning: changing these settings may expire the current sessions including yours." - setting_session_lifetime: Session maximum lifetime - setting_session_timeout: Session inactivity timeout - label_session_expiration: Session expiration - permission_close_project: Close / reopen the project - button_close: Close - button_reopen: Reopen - project_status_active: active - project_status_closed: closed - project_status_archived: archived - text_project_closed: This project is closed and read-only. - notice_user_successful_create: User %{id} created. - field_core_fields: Standard fields - field_timeout: Timeout (in seconds) - setting_thumbnails_enabled: Display attachment thumbnails - setting_thumbnails_size: Thumbnails size (in pixels) - label_status_transitions: Status transitions - label_fields_permissions: Fields permissions - label_readonly: Read-only - label_required: Required - text_repository_identifier_info: Only lower case letters (a-z), numbers, dashes and underscores are allowed.
    Once saved, the identifier cannot be changed. - field_board_parent: Parent forum - label_attribute_of_project: Project's %{name} - label_attribute_of_author: Author's %{name} - label_attribute_of_assigned_to: Assignee's %{name} - label_attribute_of_fixed_version: Target version's %{name} - label_copy_subtasks: Copy subtasks - label_copied_to: copied to - label_copied_from: copied from - label_any_issues_in_project: any issues in project - label_any_issues_not_in_project: any issues not in project - field_private_notes: Private notes - permission_view_private_notes: View private notes - permission_set_notes_private: Set notes as private - label_no_issues_in_project: no issues in project - label_any: sve - label_last_n_weeks: last %{count} weeks - setting_cross_project_subtasks: Allow cross-project subtasks - label_cross_project_descendants: With subprojects - label_cross_project_tree: With project tree - label_cross_project_hierarchy: With project hierarchy - label_cross_project_system: With all projects - button_hide: Hide - setting_non_working_week_days: Non-working days - label_in_the_next_days: in the next - label_in_the_past_days: in the past - label_attribute_of_user: User's %{name} - text_turning_multiple_off: If you disable multiple values, multiple values will be - removed in order to preserve only one value per item. - label_attribute_of_issue: Issue's %{name} - permission_add_documents: Add documents - permission_edit_documents: Edit documents - permission_delete_documents: Delete documents - label_gantt_progress_line: Progress line - setting_jsonp_enabled: Enable JSONP support - field_inherit_members: Inherit members - field_closed_on: Closed - field_generate_password: Generate password - setting_default_projects_tracker_ids: Default trackers for new projects - label_total_time: Ukupno - text_scm_config: You can configure your SCM commands in config/configuration.yml. Please restart the application after editing it. - text_scm_command_not_available: SCM command is not available. Please check settings on the administration panel. - setting_emails_header: Email header - notice_account_not_activated_yet: You haven't activated your account yet. If you want - to receive a new activation email, please click this link. - notice_account_locked: Your account is locked. - label_hidden: Hidden - label_visibility_private: to me only - label_visibility_roles: to these roles only - label_visibility_public: to any users - field_must_change_passwd: Must change password at next logon - notice_new_password_must_be_different: The new password must be different from the - current password - setting_mail_handler_excluded_filenames: Exclude attachments by name - text_convert_available: ImageMagick convert available (optional) - label_link: Link - label_only: only - label_drop_down_list: drop-down list - label_checkboxes: checkboxes - label_link_values_to: Link values to URL - setting_force_default_language_for_anonymous: Force default language for anonymous - users - setting_force_default_language_for_loggedin: Force default language for logged-in - users - label_custom_field_select_type: Select the type of object to which the custom field - is to be attached - label_issue_assigned_to_updated: Assignee updated - label_check_for_updates: Check for updates - label_latest_compatible_version: Latest compatible version - label_unknown_plugin: Unknown plugin - label_radio_buttons: radio buttons - label_group_anonymous: Anonymous users - label_group_non_member: Non member users - label_add_projects: Add projects - field_default_status: Default status - text_subversion_repository_note: 'Examples: file:///, http://, https://, svn://, svn+[tunnelscheme]://' - field_users_visibility: Users visibility - label_users_visibility_all: All active users - label_users_visibility_members_of_visible_projects: Members of visible projects - label_edit_attachments: Edit attached files - setting_link_copied_issue: Link issues on copy - label_link_copied_issue: Link copied issue - label_ask: Ask - label_search_attachments_yes: Search attachment filenames and descriptions - label_search_attachments_no: Do not search attachments - label_search_attachments_only: Search attachments only - label_search_open_issues_only: Open issues only - field_address: Email - setting_max_additional_emails: Maximum number of additional email addresses - label_email_address_plural: Emails - label_email_address_add: Add email address - label_enable_notifications: Enable notifications - label_disable_notifications: Disable notifications - setting_search_results_per_page: Search results per page - label_blank_value: blank - permission_copy_issues: Copy issues - error_password_expired: Your password has expired or the administrator requires you - to change it. - field_time_entries_visibility: Time logs visibility - setting_password_max_age: Require password change after - label_parent_task_attributes: Parent tasks attributes - label_parent_task_attributes_derived: Calculated from subtasks - label_parent_task_attributes_independent: Independent of subtasks - label_time_entries_visibility_all: All time entries - label_time_entries_visibility_own: Time entries created by the user - label_member_management: Member management - label_member_management_all_roles: All roles - label_member_management_selected_roles_only: Only these roles - label_password_required: Confirm your password to continue - label_total_spent_time: Overall spent time - notice_import_finished: "%{count} items have been imported" - notice_import_finished_with_errors: "%{count} out of %{total} items could not be imported" - error_invalid_file_encoding: The file is not a valid %{encoding} encoded file - error_invalid_csv_file_or_settings: The file is not a CSV file or does not match the - settings below - error_can_not_read_import_file: An error occurred while reading the file to import - permission_import_issues: Import issues - label_import_issues: Import issues - label_select_file_to_import: Select the file to import - label_fields_separator: Field separator - label_fields_wrapper: Field wrapper - label_encoding: Encoding - label_comma_char: Comma - label_semi_colon_char: Semicolon - label_quote_char: Quote - label_double_quote_char: Double quote - label_fields_mapping: Fields mapping - label_file_content_preview: File content preview - label_create_missing_values: Create missing values - button_import: Import - field_total_estimated_hours: Total estimated time - label_api: API - label_total_plural: Totals - label_assigned_issues: Assigned issues - label_field_format_enumeration: Key/value list - label_f_hour_short: '%{value} h' - field_default_version: Default version - error_attachment_extension_not_allowed: Attachment extension %{extension} is not allowed - setting_attachment_extensions_allowed: Allowed extensions - setting_attachment_extensions_denied: Disallowed extensions - label_any_open_issues: any open issues - label_no_open_issues: no open issues - label_default_values_for_new_users: Default values for new users - error_ldap_bind_credentials: Invalid LDAP Account/Password - setting_sys_api_key: API ključ (obrada ulaznih mailova) - setting_lost_password: Izgubljena lozinka - mail_subject_security_notification: Security notification - mail_body_security_notification_change: ! '%{field} was changed.' - mail_body_security_notification_change_to: ! '%{field} was changed to %{value}.' - mail_body_security_notification_add: ! '%{field} %{value} was added.' - mail_body_security_notification_remove: ! '%{field} %{value} was removed.' - mail_body_security_notification_notify_enabled: Email address %{value} now receives - notifications. - mail_body_security_notification_notify_disabled: Email address %{value} no longer - receives notifications. - mail_body_settings_updated: ! 'The following settings were changed:' - field_remote_ip: IP address - label_wiki_page_new: New wiki page - label_relations: Relations - button_filter: Filter - mail_body_password_updated: Your password has been changed. - label_no_preview: No preview available - error_no_tracker_allowed_for_new_issue_in_project: The project doesn't have any trackers - for which you can create an issue - label_tracker_all: All trackers - label_new_project_issue_tab_enabled: Display the "New issue" tab - setting_new_item_menu_tab: Project menu tab for creating new objects - label_new_object_tab_enabled: Display the "+" drop-down - error_no_projects_with_tracker_allowed_for_new_issue: There are no projects with trackers - for which you can create an issue - field_textarea_font: Font used for text areas - label_font_default: Default font - label_font_monospace: Monospaced font - label_font_proportional: Proportional font - setting_timespan_format: Time span format - label_table_of_contents: Table of contents - setting_commit_logs_formatting: Apply text formatting to commit messages - setting_mail_handler_enable_regex: Enable regular expressions - error_move_of_child_not_possible: 'Subtask %{child} could not be moved to the new - project: %{errors}' - error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted: Spent time cannot - be reassigned to an issue that is about to be deleted - setting_timelog_required_fields: Required fields for time logs - label_attribute_of_object: '%{object_name}''s %{name}' - label_user_mail_option_only_assigned: Only for things I watch or I am assigned to - label_user_mail_option_only_owner: Only for things I watch or I am the owner of - warning_fields_cleared_on_bulk_edit: Changes will result in the automatic deletion - of values from one or more fields on the selected objects - field_updated_by: Updated by - field_last_updated_by: Last updated by - field_full_width_layout: Full width layout - label_last_notes: Last notes - field_digest: Checksum - field_default_assigned_to: Default assignee - setting_show_custom_fields_on_registration: Show custom fields on registration - permission_view_news: View news - label_no_preview_alternative_html: No preview available. %{link} the file instead. - label_no_preview_download: Download - setting_close_duplicate_issues: Close duplicate issues automatically - error_exceeds_maximum_hours_per_day: Cannot log more than %{max_hours} hours on the - same day (%{logged_hours} hours have already been logged) - setting_time_entry_list_defaults: Timelog list defaults - setting_timelog_accept_0_hours: Accept time logs with 0 hours - setting_timelog_max_hours_per_day: Maximum hours that can be logged per day and user - label_x_revisions: "%{count} revisions" - error_can_not_delete_auth_source: This authentication mode is in use and cannot be - deleted. - button_actions: Actions - mail_body_lost_password_validity: Please be aware that you may change the password - only once using this link. - text_login_required_html: When not requiring authentication, public projects and their - contents are openly available on the network. You can edit - the applicable permissions. - label_login_required_yes: 'Yes' - label_login_required_no: No, allow anonymous access to public projects - text_project_is_public_non_member: Public projects and their contents are available - to all logged-in users. - text_project_is_public_anonymous: Public projects and their contents are openly available - on the network. - label_version_and_files: Versions (%{count}) and Files - label_ldap: LDAP - label_ldaps_verify_none: LDAPS (without certificate check) - label_ldaps_verify_peer: LDAPS - label_ldaps_warning: It is recommended to use an encrypted LDAPS connection with certificate - check to prevent any manipulation during the authentication process. - label_nothing_to_preview: Nothing to preview - error_token_expired: This password recovery link has expired, please try again. - error_spent_on_future_date: Cannot log time on a future date - setting_timelog_accept_future_dates: Accept time logs on future dates - label_delete_link_to_subtask: Izbriši relaciju - error_not_allowed_to_log_time_for_other_users: You are not allowed to log time - for other users - permission_log_time_for_other_users: Log spent time for other users - label_tomorrow: tomorrow - label_next_week: next week - label_next_month: next month - text_role_no_workflow: No workflow defined for this role - text_status_no_workflow: No tracker uses this status in the workflows - setting_mail_handler_preferred_body_part: Preferred part of multipart (HTML) emails - setting_show_status_changes_in_mail_subject: Show status changes in issue mail notifications - subject - label_inherited_from_parent_project: Inherited from parent project - label_inherited_from_group: Inherited from group %{name} - label_trackers_description: Trackers description - label_open_trackers_description: View all trackers description - label_preferred_body_part_text: Text - label_preferred_body_part_html: HTML (experimental) - field_parent_issue_subject: Parent task subject - permission_edit_own_issues: Edit own issues - text_select_apply_tracker: Select tracker - label_updated_issues: Updated issues - text_avatar_server_config_html: The current avatar server is %{url}. - You can configure it in config/configuration.yml. - setting_gantt_months_limit: Maximum number of months displayed on the gantt chart - permission_import_time_entries: Import time entries - label_import_notifications: Send email notifications during the import - text_gs_available: ImageMagick PDF support available (optional) - field_recently_used_projects: Number of recently used projects in jump box - label_optgroup_bookmarks: Bookmarks - label_optgroup_others: Other projects - label_optgroup_recents: Recently used - button_project_bookmark: Add bookmark - button_project_bookmark_delete: Remove bookmark - field_history_default_tab: Issue's history default tab - label_issue_history_properties: Property changes - label_issue_history_notes: Notes - label_last_tab_visited: Last visited tab - field_unique_id: Unique ID - text_no_subject: no subject - setting_password_required_char_classes: Required character classes for passwords - label_password_char_class_uppercase: uppercase letters - label_password_char_class_lowercase: lowercase letters - label_password_char_class_digits: digits - label_password_char_class_special_chars: special characters - text_characters_must_contain: Must contain %{character_classes}. - label_starts_with: starts with - label_ends_with: ends with - label_issue_fixed_version_updated: Target version updated - setting_project_list_defaults: Projects list defaults - label_display_type: Display results as - label_display_type_list: List - label_display_type_board: Board - label_my_bookmarks: My bookmarks - label_import_time_entries: Import time entries diff --git a/config/locales/ca.yml b/config/locales/ca.yml deleted file mode 100644 index 7f2e393..0000000 --- a/config/locales/ca.yml +++ /dev/null @@ -1,1305 +0,0 @@ -# Redmine Catalan translation: -# by Joan Duran -# Contributors: @gimstein (Helder Manuel Torres Vieira) - -ca: - # Text direction: Left-to-Right (ltr) or Right-to-Left (rtl) - direction: "ltr" - date: - formats: - # Use the strftime parameters for formats. - # When no format has been given, it uses default. - # You can provide other formats here if you like! - default: "%d-%m-%Y" - short: "%e de %b" - long: "%a, %e de %b de %Y" - - day_names: [Diumenge, Dilluns, Dimarts, Dimecres, Dijous, Divendres, Dissabte] - abbr_day_names: [dg, dl, dt, dc, dj, dv, ds] - - # Don't forget the nil at the beginning; there's no such thing as a 0th month - month_names: [~, Gener, Febrer, Març, Abril, Maig, Juny, Juliol, Agost, Setembre, Octubre, Novembre, Desembre] - abbr_month_names: [~, Gen, Feb, Mar, Abr, Mai, Jun, Jul, Ago, Set, Oct, Nov, Des] - # Used in date_select and datime_select. - order: - - :year - - :month - - :day - - time: - formats: - default: "%d-%m-%Y %H:%M" - time: "%H:%M" - short: "%e de %b, %H:%M" - long: "%a, %e de %b de %Y, %H:%M" - am: "am" - pm: "pm" - - datetime: - distance_in_words: - half_a_minute: "mig minut" - less_than_x_seconds: - one: "menys d'un segon" - other: "menys de %{count} segons" - x_seconds: - one: "1 segons" - other: "%{count} segons" - less_than_x_minutes: - one: "menys d'un minut" - other: "menys de %{count} minuts" - x_minutes: - one: "1 minut" - other: "%{count} minuts" - about_x_hours: - one: "aproximadament 1 hora" - other: "aproximadament %{count} hores" - x_hours: - one: "1 hora" - other: "%{count} hores" - x_days: - one: "1 dia" - other: "%{count} dies" - about_x_months: - one: "aproximadament 1 mes" - other: "aproximadament %{count} mesos" - x_months: - one: "1 mes" - other: "%{count} mesos" - about_x_years: - one: "aproximadament 1 any" - other: "aproximadament %{count} anys" - over_x_years: - one: "més d'un any" - other: "més de %{count} anys" - almost_x_years: - one: "casi 1 any" - other: "casi %{count} anys" - - number: - # Default format for numbers - format: - separator: "." - delimiter: "," - precision: 3 - human: - format: - delimiter: "" - precision: 3 - storage_units: - format: "%n %u" - units: - byte: - one: "Byte" - other: "Bytes" - kb: "KB" - mb: "MB" - gb: "GB" - tb: "TB" - -# Used in array.to_sentence. - support: - array: - sentence_connector: "i" - skip_last_comma: false - - activerecord: - errors: - template: - header: - one: "no s'ha pogut desar aquest %{model} perquè s'ha trobat 1 error" - other: "no s'ha pogut desar aquest %{model} perquè s'han trobat %{count} errors" - messages: - inclusion: "no està inclòs a la llista" - exclusion: "està reservat" - invalid: "no és vàlid" - confirmation: "la confirmació no coincideix" - accepted: "s'ha d'acceptar" - empty: "no pot estar buit" - blank: "no pot estar en blanc" - too_long: "és massa llarg" - too_short: "és massa curt" - wrong_length: "la longitud és incorrecta" - taken: "ja s'està utilitzant" - not_a_number: "no és un número" - not_a_date: "no és una data vàlida" - greater_than: "ha de ser més gran que %{count}" - greater_than_or_equal_to: "ha de ser més gran o igual a %{count}" - equal_to: "ha de ser igual a %{count}" - less_than: "ha de ser menys que %{count}" - less_than_or_equal_to: "ha de ser menys o igual a %{count}" - odd: "ha de ser senar" - even: "ha de ser parell" - greater_than_start_date: "ha de ser superior que la data inicial" - not_same_project: "no pertany al mateix projecte" - circular_dependency: "Aquesta relació crearia una dependència circular" - cant_link_an_issue_with_a_descendant: "Un assumpte no es pot enllaçar a una de les seves subtasques" - earlier_than_minimum_start_date: "no pot ser anterior a %{date} derivat a les peticions precedents" - not_a_regexp: "is not a valid regular expression" - open_issue_with_closed_parent: "An open issue cannot be attached to a closed parent task" - must_contain_uppercase: "must contain uppercase letters (A-Z)" - must_contain_lowercase: "must contain lowercase letters (a-z)" - must_contain_digits: "must contain digits (0-9)" - must_contain_special_chars: "must contain special characters (!, $, %, ...)" - - actionview_instancetag_blank_option: "Seleccionar" - - general_text_No: "No" - general_text_Yes: "Si" - general_text_no: "no" - general_text_yes: "si" - general_lang_name: "Catalan (Català)" - general_csv_separator: ";" - general_csv_decimal_separator: "," - general_csv_encoding: "ISO-8859-15" - general_pdf_fontname: "freesans" - general_pdf_monospaced_fontname: "freemono" - general_first_day_of_week: "1" - - notice_account_updated: "El compte s'ha actualitzat correctament." - notice_account_invalid_credentials: "Usuari o contrasenya invàlid" - notice_account_password_updated: "La contrasenya s'ha modificat correctament." - notice_account_wrong_password: "Contrasenya incorrecta" - notice_account_register_done: "El compte s'ha creat correctament. Per a activar el compte, feu clic en l'enllaç que us han enviat per correu electrònic." - notice_account_unknown_email: "Usuari desconegut." - notice_can_t_change_password: "Aquest compte utilitza una font d'autenticació externa. No és possible canviar la contrasenya." - notice_account_lost_email_sent: "S'ha enviat un correu electrònic amb instruccions per a seleccionar una contrasenya nova." - notice_account_activated: "El compte s'ha activat correctament. Ara ja podeu entrar." - notice_successful_create: "S'ha creat correctament." - notice_successful_update: "S'ha modificat correctament." - notice_successful_delete: "S'ha suprimit correctament." - notice_successful_connection: "S'ha connectat correctament." - notice_file_not_found: "La pàgina a la que intenteu accedir no existeix o s'ha suprimit." - notice_locking_conflict: "Un altre usuari ha actualitzat les dades." - notice_not_authorized: "No teniu permís per accedir a aquesta pàgina." - notice_email_sent: "S'ha enviat un correu electrònic a %{value}" - notice_email_error: "S'ha produït un error en enviar el correu (%{value})" - notice_feeds_access_key_reseted: "S'ha reiniciat la clau d'accés del Atom." - notice_api_access_key_reseted: "S'ha reiniciat la clau d'accés a l'API." - notice_failed_to_save_issues: "No s'han pogut desar %{count} assumptes de %{total} seleccionats: %{ids}." - notice_failed_to_save_members: "No s'han pogut desar els membres: %{errors}." - notice_no_issue_selected: "No s'ha seleccionat cap assumpte. Activeu els assumptes que voleu editar." - notice_account_pending: "S'ha creat el compte i ara està pendent de l'aprovació de l'administrador." - notice_default_data_loaded: "S'ha carregat correctament la configuració predeterminada." - notice_unable_delete_version: "No s'ha pogut suprimir la versió." - notice_unable_delete_time_entry: "No s'ha pogut suprimir l'entrada del registre de temps." - notice_issue_done_ratios_updated: "S'ha actualitzat el percentatge dels assumptes." - - error_can_t_load_default_data: "No s'ha pogut carregar la configuració predeterminada: %{value} " - error_scm_not_found: "No s'ha trobat l'entrada o la revisió en el repositori." - error_scm_command_failed: "S'ha produït un error en intentar accedir al repositori: %{value}" - error_scm_annotate: "L'entrada no existeix o no s'ha pogut anotar." - error_issue_not_found_in_project: "No s'ha trobat l'assumpte o no pertany a aquest projecte" - error_no_tracker_in_project: "Aquest projecte no té cap tipus d'assumpte associat. Comproveu els paràmetres del projecte." - error_no_default_issue_status: "No s'ha definit cap estat d'assumpte predeterminat. Comproveu la configuració (aneu a «Administració -> Estats de l'assumpte»)." - error_can_not_delete_custom_field: "No s'ha pogut suprimir el camp personalitat" - error_can_not_delete_tracker: "Aquest tipus d'assumpte conté assumptes i no es pot suprimir." - error_can_not_remove_role: "Aquest rol s'està utilitzant i no es pot suprimir." - error_can_not_reopen_issue_on_closed_version: "Un assumpte assignat a una versió tancada no es pot tornar a obrir" - error_can_not_archive_project: "Aquest projecte no es pot arxivar" - error_issue_done_ratios_not_updated: "No s'ha actualitzat el percentatge dels assumptes." - error_workflow_copy_source: "Seleccioneu un tipus d'assumpte o rol font" - error_workflow_copy_target: "Seleccioneu tipus d'assumptes i rols objectiu" - error_unable_delete_issue_status: "No s'ha pogut suprimir l'estat de l'assumpte (%{value})" - error_unable_to_connect: "No s'ha pogut connectar (%{value})" - warning_attachments_not_saved: "No s'han pogut desar %{count} fitxers." - error_ldap_bind_credentials: "Compte/Contrasenya LDAP incorrecte" - - mail_subject_lost_password: "Contrasenya de %{value}" - mail_body_lost_password: "Per a canviar la contrasenya, feu clic en l'enllaç següent:" - mail_subject_register: "Activació del compte de %{value}" - mail_body_register: "Per a activar el compte, feu clic en l'enllaç següent:" - mail_body_account_information_external: "Podeu utilitzar el compte «%{value}» per entrar." - mail_body_account_information: "Informació del compte" - mail_subject_account_activation_request: "Sol·licitud d'activació del compte de %{value}" - mail_body_account_activation_request: "S'ha registrat un usuari nou (%{value}). El seu compte està pendent d'aprovació:" - mail_subject_reminder: "%{count} assumptes venceran els següents %{days} dies" - mail_body_reminder: "%{count} assumptes que teniu assignades venceran els següents %{days} dies:" - mail_subject_wiki_content_added: "S'ha afegit la pàgina wiki «%{id}»" - mail_body_wiki_content_added: "En %{author} ha afegit la pàgina wiki «%{id}»." - mail_subject_wiki_content_updated: "S'ha actualitzat la pàgina wiki «%{id}»" - mail_body_wiki_content_updated: "L'autor %{author} ha actualitzat la pàgina wiki «%{id}»." - - field_name: "Nom" - field_description: "Descripció" - field_summary: "Resum" - field_is_required: "Necessari" - field_firstname: "Nom" - field_lastname: "Cognom" - field_mail: "Correu electrònic" - field_filename: "Fitxer" - field_filesize: "Mida" - field_downloads: "Baixades" - field_author: "Autor" - field_created_on: "Creat" - field_updated_on: "Actualitzat" - field_field_format: "Format" - field_is_for_all: "Per tots els projectes" - field_possible_values: "Valors possibles" - field_regexp: "Expressió regular" - field_min_length: "Longitud mínima" - field_max_length: "Longitud màxima" - field_value: "Valor" - field_category: "Categoria" - field_title: "Títol" - field_project: "Projecte" - field_issue: "Assumpte" - field_status: "Estat" - field_notes: "Notes" - field_is_closed: "Assumpte tancat" - field_is_default: "Estat predeterminat" - field_tracker: "Tipus d'assumpte" - field_subject: "Tema" - field_due_date: "Data de venciment" - field_assigned_to: "Assignat a" - field_priority: "Prioritat" - field_fixed_version: "Versió prevista" - field_user: "Usuari" - field_principal: "Principal" - field_role: "Rol" - field_homepage: "Pàgina web" - field_is_public: "Públic" - field_parent: "Subprojecte de" - field_is_in_roadmap: "Assumptes mostrats en la planificació" - field_login: "Identificador" - field_mail_notification: "Notificacions per correu electrònic" - field_admin: "Administrador" - field_last_login_on: "Última connexió" - field_language: "Idioma" - field_effective_date: "Data" - field_password: "Contrasenya" - field_new_password: "Nova contrasenya" - field_password_confirmation: "Confirmació" - field_version: "Versió" - field_type: "Tipus" - field_host: "Servidor" - field_port: "Port" - field_account: "Compte" - field_base_dn: "Base DN" - field_attr_login: "Atribut d'entrada" - field_attr_firstname: "Atribut del nom" - field_attr_lastname: "Atribut del cognom" - field_attr_mail: "Atribut del correu electrònic" - field_onthefly: "Creació de l'usuari «al vol»" - field_start_date: "Inici" - field_done_ratio: "% realitzat" - field_auth_source: "Mode d'autenticació" - field_hide_mail: "Oculta l'adreça de correu electrònic" - field_comments: "Comentari" - field_url: "URL" - field_start_page: "Pàgina inicial" - field_subproject: "Subprojecte" - field_hours: "Hores" - field_activity: "Activitat" - field_spent_on: "Data" - field_identifier: "Identificador" - field_is_filter: "Utilitzat com filtre" - field_issue_to: "Assumpte relacionat" - field_delay: "Retràs" - field_assignable: "Es poden assignar assumptes a aquest rol" - field_redirect_existing_links: "Redirigeix els enllaços existents" - field_estimated_hours: "Temps previst" - field_column_names: "Columnes" - field_time_entries: "Registre de temps" - field_time_zone: "Zona horària" - field_searchable: "Es pot cercar" - field_default_value: "Valor predeterminat" - field_comments_sorting: "Mostra els comentaris" - field_parent_title: "Pàgina pare" - field_editable: "Es pot editar" - field_watcher: "Vigilància" - field_identity_url: "URL OpenID" - field_content: "Contingut" - field_group_by: "Agrupa els resultats per" - field_sharing: "Compartir" - field_parent_issue: "Tasca pare" - - setting_app_title: "Títol de l'aplicació" - setting_welcome_text: "Text de benvinguda" - setting_default_language: "Idioma predeterminat" - setting_login_required: "Es necessita autenticació" - setting_self_registration: "Registre automàtic" - setting_attachment_max_size: "Mida màxima dels fitxers adjunts" - setting_issues_export_limit: "Límit d'exportació d'assumptes" - setting_mail_from: "Adreça de correu electrònic d'emissió" - setting_bcc_recipients: "Vincula els destinataris de les còpies amb carbó (bcc)" - setting_plain_text_mail: "només text pla (no HTML)" - setting_host_name: "Nom del Servidor" - setting_text_formatting: "Format del text" - setting_wiki_compression: "Comprimeix l'historial de la wiki" - setting_feeds_limit: "Límit de contingut del canal" - setting_default_projects_public: "Els projectes nous són públics per defecte" - setting_autofetch_changesets: "Omple automàticament les publicacions" - setting_sys_api_enabled: "Activar WS per a la gestió del repositori" - setting_commit_ref_keywords: "Paraules claus per a la referència" - setting_commit_fix_keywords: "Paraules claus per a la correcció" - setting_autologin: "Entrada automàtica" - setting_date_format: "Format de la data" - setting_time_format: "Format de hora" - setting_cross_project_issue_relations: "Permet les relacions d'assumptes entre projectes" - setting_issue_list_default_columns: "Columnes mostrades per defecte en la llista d'assumptes" - setting_emails_footer: "Peu dels correus electrònics" - setting_protocol: "Protocol" - setting_per_page_options: "Opcions dels objectes per pàgina" - setting_user_format: "Format de com mostrar l'usuari" - setting_activity_days_default: "Dies a mostrar l'activitat del projecte" - setting_display_subprojects_issues: "Mostra els assumptes d'un subprojecte en el projecte pare per defecte" - setting_enabled_scm: "Activar SCM" - setting_mail_handler_body_delimiters: "Trunca els correus electrònics després d'una d'aquestes línies" - setting_mail_handler_api_enabled: "Activar WS per correus electrònics d'entrada" - setting_mail_handler_api_key: "Clau API" - setting_sequential_project_identifiers: "Genera identificadors de projecte seqüencials" - setting_gravatar_enabled: "Utilitza les icones d'usuari Gravatar" - setting_gravatar_default: "Imatge Gravatar predeterminada" - setting_diff_max_lines_displayed: "Número màxim de línies amb diferències mostrades" - setting_file_max_size_displayed: "Mida màxima dels fitxers de text mostrats en línia" - setting_repository_log_display_limit: "Número màxim de revisions que es mostren al registre de fitxers" - setting_openid: "Permet entrar i registrar-se amb l'OpenID" - setting_password_min_length: "Longitud mínima de la contrasenya" - setting_new_project_user_role_id: "Aquest rol es dóna a un usuari no administrador per a crear projectes" - setting_default_projects_modules: "Mòduls activats per defecte en els projectes nous" - setting_issue_done_ratio: "Calcula tant per cent realitzat de l'assumpte amb" - setting_issue_done_ratio_issue_status: "Utilitza l'estat de l'assumpte" - setting_issue_done_ratio_issue_field: "Utilitza el camp de l'assumpte" - setting_start_of_week: "Inicia les setmanes en" - setting_rest_api_enabled: "Habilita el servei web REST" - setting_cache_formatted_text: "Cache formatted text" - - permission_add_project: "Crear projecte" - permission_add_subprojects: "Crear subprojectes" - permission_edit_project: "Editar projecte" - permission_select_project_modules: "Selecciona els mòduls del projecte" - permission_manage_members: "Gestionar els membres" - permission_manage_project_activities: "Gestionar les activitats del projecte" - permission_manage_versions: "Gestionar les versions" - permission_manage_categories: "Gestionar les categories dels assumptes" - permission_view_issues: "Visualitza els assumptes" - permission_add_issues: "Afegir assumptes" - permission_edit_issues: "Editar assumptes" - permission_manage_issue_relations: "Gestiona les relacions dels assumptes" - permission_add_issue_notes: "Afegir notes" - permission_edit_issue_notes: "Editar notes" - permission_edit_own_issue_notes: "Editar notes pròpies" - permission_delete_issues: "Suprimir assumptes" - permission_manage_public_queries: "Gestionar consultes públiques" - permission_save_queries: "Desar consultes" - permission_view_gantt: "Visualitzar gràfica de Gantt" - permission_view_calendar: "Visualitzar calendari" - permission_view_issue_watchers: "Visualitzar la llista de vigilàncies" - permission_add_issue_watchers: "Afegir vigilàncies" - permission_delete_issue_watchers: "Suprimir vigilants" - permission_log_time: "Registrar el temps invertit" - permission_view_time_entries: "Visualitzar el temps invertit" - permission_edit_time_entries: "Editar els registres de temps" - permission_edit_own_time_entries: "Editar els registres de temps propis" - permission_manage_news: "Gestionar noticies" - permission_comment_news: "Comentar noticies" - permission_view_documents: "Visualitzar documents" - permission_manage_files: "Gestionar fitxers" - permission_view_files: "Visualitzar fitxers" - permission_manage_wiki: "Gestionar la wiki" - permission_rename_wiki_pages: "Canviar el nom de les pàgines wiki" - permission_delete_wiki_pages: "Suprimir les pàgines wiki" - permission_view_wiki_pages: "Visualitzar la wiki" - permission_view_wiki_edits: "Visualitza l'historial de la wiki" - permission_edit_wiki_pages: "Editar les pàgines wiki" - permission_delete_wiki_pages_attachments: "Suprimir adjunts" - permission_protect_wiki_pages: "Protegir les pàgines wiki" - permission_manage_repository: "Gestionar el repositori" - permission_browse_repository: "Navegar pel repositori" - permission_view_changesets: "Visualitzar els canvis realitzats" - permission_commit_access: "Accés a les publicacions" - permission_manage_boards: "Gestionar els taulers" - permission_view_messages: "Visualitzar els missatges" - permission_add_messages: "Enviar missatges" - permission_edit_messages: "Editar missatges" - permission_edit_own_messages: "Editar missatges propis" - permission_delete_messages: "Suprimir els missatges" - permission_delete_own_messages: Suprimir els missatges propis - permission_export_wiki_pages: "Exportar les pàgines wiki" - permission_manage_subtasks: "Gestionar subtasques" - - project_module_issue_tracking: "Tipus d'assumptes" - project_module_time_tracking: "Seguidor de temps" - project_module_news: "Noticies" - project_module_documents: "Documents" - project_module_files: "Fitxers" - project_module_wiki: "Wiki" - project_module_repository: "Repositori" - project_module_boards: "Taulers" - project_module_calendar: "Calendari" - project_module_gantt: "Gantt" - - label_user: "Usuari" - label_user_plural: "Usuaris" - label_user_new: "Nou usuari" - label_user_anonymous: "Anònim" - label_project: "Projecte" - label_project_new: "Nou projecte" - label_project_plural: "Projectes" - label_x_projects: - zero: "cap projecte" - one: "1 projecte" - other: "%{count} projectes" - label_project_all: "Tots els projectes" - label_project_latest: "Els últims projectes" - label_issue: "Assumpte" - label_issue_new: "Nou assumpte" - label_issue_plural: "Assumptes" - label_issue_view_all: "Visualitzar tots els assumptes" - label_issues_by: "Assumptes per %{value}" - label_issue_added: "Assumpte afegit" - label_issue_updated: "Assumpte actualitzat" - label_document: "Document" - label_document_new: "Nou document" - label_document_plural: "Documents" - label_document_added: "Document afegit" - label_role: "Rol" - label_role_plural: "Rols" - label_role_new: "Nou rol" - label_role_and_permissions: "Rols i permisos" - label_member: "Membre" - label_member_new: "Nou membre" - label_member_plural: "Membres" - label_tracker: "Tipus d'assumpte" - label_tracker_plural: "Tipus d'assumptes" - label_tracker_new: "Nou tipus d'assumpte" - label_workflow: "Flux de treball" - label_issue_status: "Estat de l'assumpte" - label_issue_status_plural: "Estats de l'assumpte" - label_issue_status_new: "Nou estat" - label_issue_category: "Categoria de l'assumpte" - label_issue_category_plural: "Categories de l'assumpte" - label_issue_category_new: "Nova categoria" - label_custom_field: "Camp personalitzat" - label_custom_field_plural: "Camps personalitzats" - label_custom_field_new: "Nou camp personalitzat" - label_enumerations: "Llistat de valors" - label_enumeration_new: "Nou valor" - label_information: "Informació" - label_information_plural: "Informació" - label_register: "Registrar" - label_login_with_open_id_option: "o entrar amb OpenID" - label_password_lost: "Has oblidat la contrasenya?" - label_home: "Inici" - label_my_page: "La meva pàgina" - label_my_account: "El meu compte" - label_my_projects: "Els meus projectes" - label_administration: "Administració" - label_login: "Iniciar sessió" - label_logout: "Tancar sessió" - label_help: "Ajuda" - label_reported_issues: "Assumptes informats" - label_assigned_to_me_issues: "Assumptes assignats a mi" - label_last_login: "Última connexió" - label_registered_on: "Informat el" - label_activity: "Activitat" - label_overall_activity: "Activitat global" - label_user_activity: "Activitat de %{value}" - label_new: "Nou" - label_logged_as: "Heu entrat com a" - label_environment: "Entorn" - label_authentication: "Autenticació" - label_auth_source: "Mode d'autenticació" - label_auth_source_new: "Nou mode d'autenticació" - label_auth_source_plural: "Modes d'autenticació" - label_subproject_plural: "Subprojectes" - label_subproject_new: "Nou subprojecte" - label_and_its_subprojects: "%{value} i els seus subprojectes" - label_min_max_length: "Longitud mín - màx" - label_list: "Llista" - label_date: "Data" - label_integer: "Numero" - label_float: "Flotant" - label_boolean: "Booleà" - label_string: "Text" - label_text: "Text llarg" - label_attribute: "Atribut" - label_attribute_plural: "Atributs" - label_no_data: "Sense dades a mostrar" - label_change_status: "Canvia l'estat" - label_history: "Historial" - label_attachment: "Fitxer" - label_attachment_new: "Nou fitxer" - label_attachment_delete: "Suprimir fitxer" - label_attachment_plural: "Fitxers" - label_file_added: "Fitxer afegit" - label_report: "Informe" - label_report_plural: "Informes" - label_news: "Noticies" - label_news_new: "Nova noticia" - label_news_plural: "Noticies" - label_news_latest: "Últimes noticies" - label_news_view_all: "Visualitza totes les noticies" - label_news_added: "Noticies afegides" - label_settings: "Paràmetres" - label_overview: "Resum" - label_version: "Versió" - label_version_new: "Nova versió" - label_version_plural: "Versions" - label_close_versions: "Tancar versions completades" - label_confirmation: "Confirmació" - label_export_to: "També disponible a:" - label_read: "Llegir..." - label_public_projects: "Projectes públics" - label_open_issues: "obert" - label_open_issues_plural: "oberts" - label_closed_issues: "tancat" - label_closed_issues_plural: "tancats" - label_x_open_issues_abbr: - zero: "0 oberts" - one: "1 obert" - other: "%{count} oberts" - label_x_closed_issues_abbr: - zero: "0 tancats" - one: "1 tancat" - other: "%{count} tancats" - label_total: "Total" - label_permissions: "Permisos" - label_current_status: "Estat actual" - label_new_statuses_allowed: "Nous estats autoritzats" - label_all: "tots" - label_none: "cap" - label_nobody: "ningú" - label_next: "Següent" - label_previous: "Anterior" - label_used_by: "Utilitzat per" - label_details: "Detalls" - label_add_note: "Afegir una nota" - label_calendar: "Calendari" - label_months_from: "mesos des de" - label_gantt: "Gantt" - label_internal: "Intern" - label_last_changes: "últims %{count} canvis" - label_change_view_all: "Visualitza tots els canvis" - label_comment: "Comentari" - label_comment_plural: "Comentaris" - label_x_comments: - zero: "sense comentaris" - one: "1 comentari" - other: "%{count} comentaris" - label_comment_add: "Afegir un comentari" - label_comment_added: "Comentari afegit" - label_comment_delete: "Suprimir comentaris" - label_query: "Consulta personalitzada" - label_query_plural: "Consultes personalitzades" - label_query_new: "Nova consulta" - label_filter_add: "Afegir un filtre" - label_filter_plural: "Filtres" - label_equals: "és" - label_not_equals: "no és" - label_in_less_than: "en menys de" - label_in_more_than: "en més de" - label_greater_or_equal: ">=" - label_less_or_equal: "<=" - label_in: "en" - label_today: "avui" - label_yesterday: "ahir" - label_this_week: "aquesta setmana" - label_last_week: "l'última setmana" - label_last_n_days: "els últims %{count} dies" - label_this_month: "aquest més" - label_last_month: "l'últim més" - label_this_year: "aquest any" - label_date_range: "Rang de dates" - label_less_than_ago: "fa menys de" - label_more_than_ago: "fa més de" - label_ago: "fa" - label_contains: "conté" - label_not_contains: "no conté" - label_day_plural: "dies" - label_repository: "Repositori" - label_repository_plural: "Repositoris" - label_browse: "Navegar" - label_branch: "Branca" - label_tag: "Etiqueta" - label_revision: "Revisió" - label_revision_plural: "Revisions" - label_revision_id: "Revisió %{value}" - label_associated_revisions: "Revisions associades" - label_added: "afegit" - label_modified: "modificat" - label_copied: "copiat" - label_renamed: "reanomenat" - label_deleted: "suprimit" - label_latest_revision: "Última revisió" - label_latest_revision_plural: "Últimes revisions" - label_view_revisions: "Visualitzar revisions" - label_view_all_revisions: "Visualitza totes les revisions" - label_max_size: "Mida màxima" - label_sort_highest: "Primer" - label_sort_higher: "Pujar" - label_sort_lower: "Baixar" - label_sort_lowest: "Ultim" - label_roadmap: "Planificació" - label_roadmap_due_in: "Venç en %{value}" - label_roadmap_overdue: "%{value} tard" - label_roadmap_no_issues: "No hi ha assumptes per a aquesta versió" - label_search: "Cerca" - label_result_plural: "Resultats" - label_all_words: "Totes les paraules" - label_wiki: "Wiki" - label_wiki_edit: "Edició wiki" - label_wiki_edit_plural: "Edicions wiki" - label_wiki_page: "Pàgina wiki" - label_wiki_page_plural: "Pàgines wiki" - label_index_by_title: "Índex per títol" - label_index_by_date: "Índex per data" - label_current_version: "Versió actual" - label_preview: "Previsualitzar" - label_feed_plural: "Canals" - label_changes_details: "Detalls de tots els canvis" - label_issue_tracking: "Seguiment d'assumptes" - label_spent_time: "Temps invertit" - label_overall_spent_time: "Temps total invertit" - label_f_hour: "%{value} hora" - label_f_hour_plural: "%{value} hores" - label_time_tracking: "Temps de seguiment" - label_change_plural: "Canvis" - label_statistics: "Estadístiques" - label_commits_per_month: "Publicacions per mes" - label_commits_per_author: "Publicacions per autor" - label_view_diff: "Visualitza les diferències" - label_diff_inline: "en línia" - label_diff_side_by_side: "costat per costat" - label_options: "Opcions" - label_copy_workflow_from: "Copia el flux de treball des de" - label_permissions_report: "Informe de permisos" - label_watched_issues: "Assumptes vigilats" - label_related_issues: "Assumptes relacionats" - label_applied_status: "Estat aplicat" - label_loading: "S'està carregant..." - label_relation_new: "Nova Relació" - label_relation_delete: "Suprimir relació" - label_relates_to: "relacionat amb" - label_duplicates: "duplicats" - label_duplicated_by: "duplicat per" - label_blocks: "bloqueja" - label_blocked_by: "bloquejats per" - label_precedes: "anterior a" - label_follows: "posterior a" - label_stay_logged_in: "Manté l'entrada" - label_disabled: "inhabilitat" - label_show_completed_versions: "Mostra les versions completes" - label_me: "jo mateix" - label_board: "Tauler" - label_board_new: "Nou Tauler" - label_board_plural: "Taulers" - label_board_locked: "Bloquejat" - label_board_sticky: "Sticky" - label_topic_plural: "Temes" - label_message_plural: "Missatges" - label_message_last: "Últim missatge" - label_message_new: "Nou missatge" - label_message_posted: "Missatge afegit" - label_reply_plural: "Respostes" - label_send_information: "Envia la informació del compte a l'usuari" - label_year: "Any" - label_month: "Mes" - label_week: "Setmana" - label_date_from: "Des de" - label_date_to: "A" - label_language_based: "Basat en l'idioma de l'usuari" - label_sort_by: "Ordenar per %{value}" - label_send_test_email: "Enviar correu electrònic de prova" - label_feeds_access_key: "Clau d'accés Atom" - label_missing_feeds_access_key: "Falta una clau d'accés Atom" - label_feeds_access_key_created_on: "Clau d'accés Atom creada fa %{value}" - label_module_plural: "Mòduls" - label_added_time_by: "Afegit per %{author} fa %{age}" - label_updated_time_by: "Actualitzat per %{author} fa %{age}" - label_updated_time: "Actualitzat fa %{value}" - label_jump_to_a_project: "Anar al projecte..." - label_file_plural: "Fitxers" - label_changeset_plural: "Conjunt de canvis" - label_default_columns: "Columnes predeterminades" - label_no_change_option: (sense canvis) - label_bulk_edit_selected_issues: "Editar en bloc els assumptes seleccionats" - label_theme: "Tema" - label_default: "Predeterminat" - label_search_titles_only: "Cerca només per títol" - label_user_mail_option_all: "Per qualsevol esdeveniment en tots els meus projectes" - label_user_mail_option_selected: "Per qualsevol esdeveniment en els projectes seleccionats..." - label_user_mail_no_self_notified: "No vull ser notificat pels canvis que faig jo mateix" - label_registration_activation_by_email: "activació del compte per correu electrònic" - label_registration_manual_activation: "activació del compte manual" - label_registration_automatic_activation: "activació del compte automàtica" - label_display_per_page: "Per pàgina: %{value}" - label_age: "Edat" - label_change_properties: "Canvia les propietats" - label_general: "General" - label_scm: "SCM" - label_plugins: "Complements" - label_ldap_authentication: "Autenticació LDAP" - label_downloads_abbr: "Baixades" - label_optional_description: "Descripció opcional" - label_add_another_file: "Afegir un altre fitxer" - label_preferences: "Preferències" - label_chronological_order: "En ordre cronològic" - label_reverse_chronological_order: "En ordre cronològic invers" - label_incoming_emails: "Correu electrònics d'entrada" - label_generate_key: "Generar una clau" - label_issue_watchers: "Vigilàncies" - label_example: "Exemple" - label_display: "Mostrar" - label_sort: "Ordenar" - label_ascending: "Ascendent" - label_descending: "Descendent" - label_date_from_to: "Des de %{start} a %{end}" - label_wiki_content_added: "S'ha afegit la pàgina wiki" - label_wiki_content_updated: "S'ha actualitzat la pàgina wiki" - label_group: "Grup" - label_group_plural: "Grups" - label_group_new: "Nou grup" - label_time_entry_plural: "Temps invertit" - label_version_sharing_hierarchy: "Amb la jerarquia del projecte" - label_version_sharing_system: "Amb tots els projectes" - label_version_sharing_descendants: "Amb tots els subprojectes" - label_version_sharing_tree: "Amb l'arbre del projecte" - label_version_sharing_none: "Sense compartir" - label_update_issue_done_ratios: "Actualitza el tant per cent dels assumptes realitzats" - label_copy_source: "Font" - label_copy_target: "Objectiu" - label_copy_same_as_target: "El mateix que l'objectiu" - label_display_used_statuses_only: "Mostra només els estats que utilitza aquest tipus d'assumpte" - label_api_access_key: "Clau d'accés API" - label_missing_api_access_key: "Falta una clau d'accés API" - label_api_access_key_created_on: "Clau d'accés API creada fa %{value}" - label_profile: "Perfil" - label_subtask_plural: "Subtasques" - label_project_copy_notifications: "Envia notificacions de correu electrònic durant la còpia del projecte" - - button_login: "Accedir" - button_submit: "Acceptar" - button_save: "Desar" - button_check_all: "Selecciona-ho tot" - button_uncheck_all: "No seleccionar res" - button_delete: "Eliminar" - button_create: "Crear" - button_create_and_continue: "Crear i continuar" - button_test: "Provar" - button_edit: "Editar" - button_add: "Afegir" - button_change: "Canviar" - button_apply: "Aplicar" - button_clear: "Netejar" - button_lock: "Bloquejar" - button_unlock: "Desbloquejar" - button_download: "Baixar" - button_list: "Llistar" - button_view: "Visualitzar" - button_move: "Moure" - button_move_and_follow: "Moure i continuar" - button_back: "Enrere" - button_cancel: "Cancel·lar" - button_activate: "Activar" - button_sort: "Ordenar" - button_log_time: "Registre de temps" - button_rollback: "Tornar a aquesta versió" - button_watch: "Vigilar" - button_unwatch: "No vigilar" - button_reply: "Resposta" - button_archive: "Arxivar" - button_unarchive: "Desarxivar" - button_reset: "Reiniciar" - button_rename: "Reanomenar" - button_change_password: "Canviar la contrasenya" - button_copy: "Copiar" - button_copy_and_follow: "Copiar i continuar" - button_annotate: "Anotar" - button_update: "Actualitzar" - button_configure: "Configurar" - button_quote: "Citar" - button_show: "Mostrar" - - status_active: "actiu" - status_registered: "registrat" - status_locked: "bloquejat" - - version_status_open: "oberta" - version_status_locked: "bloquejada" - version_status_closed: "tancada" - - field_active: "Actiu" - - text_select_mail_notifications: "Seleccionar les accions per les quals s'hauria d'enviar una notificació per correu electrònic." - text_regexp_info: "ex. ^[A-Z0-9]+$" - text_min_max_length_info: "0 significa sense restricció" - text_project_destroy_confirmation: "Segur que voleu suprimir aquest projecte i les dades relacionades?" - text_subprojects_destroy_warning: "També seran suprimits els seus subprojectes: %{value}." - text_workflow_edit: "Seleccioneu un rol i un tipus d'assumpte per a editar el flux de treball" - text_are_you_sure: "Segur?" - text_journal_changed: "%{label} ha canviat de %{old} a %{new}" - text_journal_set_to: "%{label} s'ha establert a %{value}" - text_journal_deleted: "%{label} s'ha suprimit (%{old})" - text_journal_added: "S'ha afegit %{label} %{value}" - text_tip_issue_begin_day: "tasca que s'inicia aquest dia" - text_tip_issue_end_day: "tasca que finalitza aquest dia" - text_tip_issue_begin_end_day: "tasca que s'inicia i finalitza aquest dia" - text_caracters_maximum: "%{count} caràcters com a màxim." - text_caracters_minimum: "Com a mínim ha de tenir %{count} caràcters." - text_length_between: "Longitud entre %{min} i %{max} caràcters." - text_tracker_no_workflow: "No s'ha definit cap flux de treball per a aquest tipus d'assumpte" - text_unallowed_characters: "Caràcters no permesos" - text_comma_separated: "Es permeten valors múltiples (separats per una coma)." - text_line_separated: "Es permeten diversos valors (una línia per cada valor)." - text_issues_ref_in_commit_messages: "Referència i soluciona els assumptes en els missatges publicats" - text_issue_added: "L'assumpte %{id} ha sigut informat per %{author}." - text_issue_updated: "L'assumpte %{id} ha sigut actualitzat per %{author}." - text_wiki_destroy_confirmation: "Segur que voleu suprimir aquesta wiki i tot el seu contingut?" - text_issue_category_destroy_question: "Alguns assumptes (%{count}) estan assignats a aquesta categoria. Què voleu fer?" - text_issue_category_destroy_assignments: "Suprimir les assignacions de la categoria" - text_issue_category_reassign_to: "Tornar a assignar els assumptes a aquesta categoria" - text_user_mail_option: "Per als projectes no seleccionats, només rebreu notificacions sobre les coses que vigileu o que hi esteu implicat (ex. assumptes que en sou l'autor o hi esteu assignat)." - text_no_configuration_data: "Encara no s'han configurat els rols, tipus d'assumpte, estats de l'assumpte i flux de treball.\nÉs altament recomanable que carregueu la configuració predeterminada. Podreu modificar-la un cop carregada." - text_load_default_configuration: "Carregar la configuració predeterminada" - text_status_changed_by_changeset: "Aplicat en el conjunt de canvis %{value}." - text_issues_destroy_confirmation: "Segur que voleu suprimir els assumptes seleccionats?" - text_select_project_modules: "Seleccionar els mòduls a habilitar per a aquest projecte:" - text_default_administrator_account_changed: "S'ha canviat el compte d'administrador predeterminat" - text_file_repository_writable: "Es pot escriure en el repositori de fitxers" - text_plugin_assets_writable: "Es pot escriure als complements actius" - text_minimagick_available: "MiniMagick disponible (opcional)" - text_destroy_time_entries_question: "S'han informat %{hours} hores en els assumptes que aneu a suprimir. Què voleu fer?" - text_destroy_time_entries: "Suprimir les hores informades" - text_assign_time_entries_to_project: "Assignar les hores informades al projecte" - text_reassign_time_entries: "Tornar a assignar les hores informades a aquest assumpte:" - text_user_wrote: "%{value} va escriure:" - text_user_wrote_in: "%{value} va escriure (%{link}):" - text_enumeration_destroy_question: "%{count} objectes estan assignats a aquest valor." - text_enumeration_category_reassign_to: "Torna a assignar-los a aquest valor:" - text_email_delivery_not_configured: "El lliurament per correu electrònic no està configurat i les notificacions estan inhabilitades.\nConfigureu el servidor SMTP a config/configuration.yml i reinicieu l'aplicació per habilitar-lo." - text_repository_usernames_mapping: "Seleccioneu l'assignació entre els usuaris del Redmine i cada nom d'usuari trobat al repositori.\nEls usuaris amb el mateix nom d'usuari o correu del Redmine i del repositori s'assignaran automàticament." - text_diff_truncated: "... Aquestes diferències s'han truncat perquè excedeixen la mida màxima que es pot mostrar." - text_custom_field_possible_values_info: "Una línia per a cada valor" - text_wiki_page_destroy_question: "Aquesta pàgina té %{descendants} pàgines fill(es) i descendent(s). Què voleu fer?" - text_wiki_page_nullify_children: "Deixar les pàgines filles com a pàgines arrel" - text_wiki_page_destroy_children: "Suprimir les pàgines filles i tots els seus descendents" - text_wiki_page_reassign_children: "Reasignar les pàgines filles a aquesta pàgina pare" - text_own_membership_delete_confirmation: "Esteu a punt de suprimir algun o tots els vostres permisos i potser no podreu editar més aquest projecte.\nSegur que voleu continuar?" - text_zoom_in: "Reduir" - text_zoom_out: "Ampliar" - - default_role_manager: "Gestor" - default_role_developer: "Desenvolupador" - default_role_reporter: "Informador" - default_tracker_bug: "Error" - default_tracker_feature: "Característica" - default_tracker_support: "Suport" - default_issue_status_new: "Nou" - default_issue_status_in_progress: "En Progrés" - default_issue_status_resolved: "Resolt" - default_issue_status_feedback: "Comentaris" - default_issue_status_closed: "Tancat" - default_issue_status_rejected: "Rebutjat" - default_doc_category_user: "Documentació d'usuari" - default_doc_category_tech: "Documentació tècnica" - default_priority_low: "Baixa" - default_priority_normal: "Normal" - default_priority_high: "Alta" - default_priority_urgent: "Urgent" - default_priority_immediate: "Immediata" - default_activity_design: "Disseny" - default_activity_development: "Desenvolupament" - - enumeration_issue_priorities: "Prioritat dels assumptes" - enumeration_doc_categories: "Categories del document" - enumeration_activities: "Activitats (seguidor de temps)" - enumeration_system_activity: "Activitat del sistema" - - button_edit_associated_wikipage: "Editar pàgines Wiki asociades: %{page_title}" - field_text: "Camp de text" - setting_default_notification_option: "Opció de notificació per defecte" - label_user_mail_option_only_my_events: "Només pels objectes on estic en vigilància o involucrat" - label_user_mail_option_none: "Sense notificacions" - field_member_of_group: "Assignat al grup" - field_assigned_to_role: "Assignat al rol" - notice_not_authorized_archived_project: "El projecte al que intenta accedir està arxivat." - label_principal_search: "Cercar per usuari o grup:" - label_user_search: "Cercar per usuari:" - field_visible: "Visible" - setting_commit_logtime_activity_id: "Activitat dels temps registrats" - text_time_logged_by_changeset: "Aplicat en el canvi %{value}." - setting_commit_logtime_enabled: "Habilitar registre d'hores" - notice_gantt_chart_truncated: "S'ha retallat el diagrama perquè excedeix del número màxim d'elements que es poden mostrar (%{max})" - setting_gantt_items_limit: "Numero màxim d'elements mostrats dins del diagrama de Gantt" - field_warn_on_leaving_unsaved: "Avisa'm quan surti d'una pàgina sense desar els canvis" - text_warn_on_leaving_unsaved: "Aquesta pàgina conté text sense desar i si surt els seus canvis es perdran" - label_my_queries: "Les meves consultes" - text_journal_changed_no_detail: "S'ha actualitzat %{label}" - label_news_comment_added: "S'ha afegit un comentari a la notícia" - button_expand_all: "Expandir tot" - button_collapse_all: "Col·lapsar tot" - label_additional_workflow_transitions_for_assignee: "Operacions addicionals permeses quan l'usuari té assignat l'assumpte" - label_additional_workflow_transitions_for_author: "Operacions addicionals permeses quan l'usuari és propietari de l'assumpte" - label_bulk_edit_selected_time_entries: "Editar en bloc els registres de temps seleccionats" - text_time_entries_destroy_confirmation: "Està segur de voler eliminar (l'hora seleccionada/les hores seleccionades)?" - label_role_anonymous: "Anònim" - label_role_non_member: "No membre" - label_issue_note_added: "Nota afegida" - label_issue_status_updated: "Estat actualitzat" - label_issue_priority_updated: "Prioritat actualitzada" - label_issues_visibility_own: "Peticions creades per l'usuari o assignades a ell" - field_issues_visibility: "Visibilitat de les peticions" - label_issues_visibility_all: "Totes les peticions" - permission_set_own_issues_private: "Posar les teves peticions pròpies com publica o privada" - field_is_private: "Privat" - permission_set_issues_private: "Posar les peticions com publica o privada" - label_issues_visibility_public: "Totes les peticions no privades" - text_issues_destroy_descendants_confirmation: "Es procedira a eliminar tambe %{count} subtas/ca/ques." - field_commit_logs_encoding: "Codificació dels missatges publicats" - field_scm_path_encoding: "Codificació de les rutes" - text_scm_path_encoding_note: "Per defecte: UTF-8" - field_path_to_repository: "Ruta al repositori " - field_root_directory: "Directori arrel" - field_cvs_module: "Modul" - field_cvsroot: "CVSROOT" - text_mercurial_repository_note: Repositori local (p.e. /hgrepo, c:\hgrepo) - text_scm_command: "Comanda" - text_scm_command_version: "Versió" - label_git_report_last_commit: "Informar de l'ultim canvi(commit) per fitxers i directoris" - notice_issue_successful_create: "Assumpte %{id} creat correctament." - label_between: "entre" - setting_issue_group_assignment: "Permetre assignar assumptes als grups" - label_diff: "diferencies" - text_git_repository_note: Directori repositori local (p.e. /hgrepo, c:\hgrepo) - description_query_sort_criteria_direction: "Ordre d'ordenació" - description_project_scope: "Àmbit de la cerca" - description_filter: "Filtre" - description_user_mail_notification: "Configuració de les notificacions per correu" - description_message_content: "Contingut del missatge" - description_available_columns: "Columnes disponibles" - description_issue_category_reassign: "Escollir una categoria de l'assumpte" - description_search: "Camp de cerca" - description_notes: "Notes" - description_choose_project: "Projectes" - description_query_sort_criteria_attribute: "Atribut d'ordenació" - description_wiki_subpages_reassign: "Esculli la nova pàgina pare" - description_selected_columns: "Columnes seleccionades" - label_parent_revision: "Pare" - label_child_revision: "Fill" - error_scm_annotate_big_text_file: "L'entrada no es pot anotar, ja que supera la mida màxima per fitxers de text." - setting_default_issue_start_date_to_creation_date: "Utilitzar la data actual com a data inici per les noves peticions" - button_edit_section: "Editar aquest apartat" - setting_repositories_encodings: "Codificació per defecte pels fitxers adjunts i repositoris" - description_all_columns: "Totes les columnes" - button_export: "Exportar" - label_export_options: "%{export_format} opcions d'exportació" - error_attachment_too_big: "Aquest fitxer no es pot pujar perquè excedeix de la mida màxima (%{max_size})" - notice_failed_to_save_time_entries: "Error al desar %{count} entrades de temps de les %{total} selecionades: %{ids}." - label_x_issues: - zero: "0 assumpte" - one: "1 assumpte" - other: "%{count} assumptes" - label_repository_new: "Nou repositori" - field_repository_is_default: "Repositori principal" - label_copy_attachments: "Copiar adjunts" - label_item_position: "%{position}/%{count}" - label_completed_versions: "Versions completades" - text_project_identifier_info: "Només es permeten lletres en minúscula (a-z), números i guions.
    Una vegada desat, l'identificador no es pot canviar." - field_multiple: "Valors múltiples" - setting_commit_cross_project_ref: "Permetre referenciar i resoldre peticions de tots els altres projectes" - text_issue_conflict_resolution_add_notes: "Afegir les meves notes i descartar els altres canvis" - text_issue_conflict_resolution_overwrite: "Aplicar els meus canvis de totes formes (les notes anteriors es mantindran però alguns canvis poden ser sobreescrits)" - notice_issue_update_conflict: "L'assumpte ha sigut actualitzat per un altre membre mentre s'editava" - text_issue_conflict_resolution_cancel: "Descartar tots els meus canvis i mostrar de nou %{link}" - permission_manage_related_issues: "Gestionar peticions relacionades" - field_auth_source_ldap_filter: "Filtre LDAP" - label_search_for_watchers: "Cercar seguidors per afegir-los" - notice_account_deleted: "El seu compte ha sigut eliminat de forma permanent." - setting_unsubscribe: "Permetre als usuaris d'esborrar el seu propi compte" - button_delete_my_account: "Eliminar el meu compte" - text_account_destroy_confirmation: |- - Estàs segur de continuar? - El seu compte s'eliminarà de forma permanent, sense la possibilitat de reactivar-lo. - error_session_expired: "La seva sessió ha expirat. Si us plau, torni a identificar-se" - text_session_expiration_settings: "Advertència: el canvi d'aquestes opcions poden provocar la expiració de les sessions actives, incloent la seva." - setting_session_lifetime: "Temps de vida màxim de les sessions" - setting_session_timeout: "Temps màxim d'inactivitat de les sessions" - label_session_expiration: "Expiració de les sessions" - permission_close_project: "Tancar / reobrir el projecte" - button_close: "Tancar" - button_reopen: "Reobrir" - project_status_active: "actiu" - project_status_closed: "tancat" - project_status_archived: "arxivat" - text_project_closed: "Aquest projecte està tancat i només és de lectura." - notice_user_successful_create: "Usuari %{id} creat correctament." - field_core_fields: "Camps bàsics" - field_timeout: "Temps d'inactivitat (en segons)" - setting_thumbnails_enabled: "Mostrar miniatures dels fitxers adjunts" - setting_thumbnails_size: "Mida de les miniatures (en píxels)" - label_status_transitions: "Transicions d'estat" - label_fields_permissions: "Permisos sobre els camps" - label_readonly: "Només lectura" - label_required: "Requerit" - text_repository_identifier_info: "Només es permeten lletres en minúscula (a-z), números i guions.
    Una vegada desat, l'identificador no es pot canviar." - field_board_parent: "Tauler pare" - label_attribute_of_project: "%{name} del projecte" - label_attribute_of_author: "%{name} de l'autor" - label_attribute_of_assigned_to: "{name} de l'assignat" - label_attribute_of_fixed_version: "%{name} de la versió objectiu" - label_copy_subtasks: "Copiar subtasques" - label_copied_to: "copiada a" - label_copied_from: "copiada des de" - label_any_issues_in_project: "qualsevol assumpte del projecte" - label_any_issues_not_in_project: "qualsevol assumpte que no sigui del projecte" - field_private_notes: "Notes privades" - permission_view_private_notes: "Veure notes privades" - permission_set_notes_private: "Posar notes com privades" - label_no_issues_in_project: "sense peticions al projecte" - label_any: "tots" - label_last_n_weeks: "en les darreres %{count} setmanes" - setting_cross_project_subtasks: "Permetre subtasques creuades entre projectes" - label_cross_project_descendants: "Amb tots els subprojectes" - label_cross_project_tree: "Amb l'arbre del projecte" - label_cross_project_hierarchy: "Amb la jerarquia del projecte" - label_cross_project_system: "Amb tots els projectes" - button_hide: "Amagar" - setting_non_working_week_days: "Dies no laborables" - label_in_the_next_days: "en els pròxims" - label_in_the_past_days: "en els anteriors" - label_attribute_of_user: "%{name} de l'usuari" - text_turning_multiple_off: "Si es desactiva els valors múltiples, aquest seran eliminats per deixar només un únic valor per element." - label_attribute_of_issue: "%{name} de l'assumpte" - permission_add_documents: "Afegir document" - permission_edit_documents: "Editar document" - permission_delete_documents: "Eliminar document" - label_gantt_progress_line: "Línia de progres" - setting_jsonp_enabled: "Habilitar suport JSONP" - field_inherit_members: "Heretar membres" - field_closed_on: "Tancada" - field_generate_password: "Generar contrasenya" - setting_default_projects_tracker_ids: "Tipus d'estats d'assumpte habilitat per defecte" - label_total_time: "Total" - text_scm_config: "Pot configurar les ordres SCM en el fitxer config/configuration.yml. Sis us plau, una vegada fet ha de reiniciar l'aplicació per aplicar els canvis." - text_scm_command_not_available: "L'ordre SCM que es vol utilitzar no és troba disponible. Si us plau, comprovi la configuració dins del menú d'administració" - setting_emails_header: "Encapçalament dels correus" - notice_account_not_activated_yet: Encara no ha activat el seu compte. Si vol rebre un nou correu d'activació, si us plau faci clic en aquest enllaç. - notice_account_locked: "Aquest compte està bloquejat." - label_hidden: "Amagada" - label_visibility_private: "només per mi" - label_visibility_roles: "només per aquests rols" - label_visibility_public: "per qualsevol usuari" - field_must_change_passwd: "Canvi de contrasenya al pròxim inici de sessió" - notice_new_password_must_be_different: "La nova contrasenya ha de ser diferent de l'actual." - setting_mail_handler_excluded_filenames: "Excloure fitxers adjunts per nom" - text_convert_available: "Conversió ImageMagick disponible (opcional)" - label_link: "Enllaç" - label_only: "només" - label_drop_down_list: "Llista desplegable (Drop down)" - label_checkboxes: "Camps de selecció (Checkboxes)" - label_link_values_to: "Enllaçar valors a la URL" - setting_force_default_language_for_anonymous: "Forçar llenguatge per defecte als usuaris anònims." - setting_force_default_language_for_loggedin: "Forçar llenguatge per defecte als usuaris identificats." - label_custom_field_select_type: "Seleccioni el tipus d'objecte al qual vol posar el camp personalitzat" - label_issue_assigned_to_updated: "Persona assignada actualitzada" - label_check_for_updates: "Comprovar actualitzacions" - label_latest_compatible_version: "Ultima versió compatible" - label_unknown_plugin: "Complement desconegut" - label_radio_buttons: "Camps de selecció (Radiobutton)" - label_group_anonymous: "Usuaris anònims" - label_group_non_member: "Usuaris no membres" - label_add_projects: "Afegir projectes" - field_default_status: "Estat per defecte" - text_subversion_repository_note: "Exemples: file:///, http://, https://, svn://, svn+[tunnelscheme]://" - field_users_visibility: "Visibilitat dels usuaris" - label_users_visibility_all: "Tots els usuaris actius" - label_users_visibility_members_of_visible_projects: "Membres dels projectes visibles" - label_edit_attachments: "Editar fitxers adjunts" - setting_link_copied_issue: "Enllaçar assumpte quan es realitzi la còpia" - label_link_copied_issue: "Enllaçar assumpte copiat" - label_ask: "Demanar" - label_search_attachments_yes: "Cercar per fitxer adjunt i descripció" - label_search_attachments_no: "Sense fitxers adjunts" - label_search_attachments_only: "Només fitxers adjunts" - label_search_open_issues_only: "Només peticions obertes" - field_address: "Correu electrònic" - setting_max_additional_emails: "Màxim número de correus electrònics addicionals" - label_email_address_plural: "Correus electrònics" - label_email_address_add: "Afegir adreça de correu electrònic" - label_enable_notifications: "Activar notificacions" - label_disable_notifications: "Desactivar notificacions" - setting_search_results_per_page: "Cercar resultats per pàgina" - label_blank_value: "blanc" - permission_copy_issues: "Copiar assumpte" - error_password_expired: "La teva contrasenya ha expirat, és necessari canviar-la" - field_time_entries_visibility: "Visibilitat de les entrades de temps" - setting_password_max_age: "Requereix canviar la contrasenya després de" - label_parent_task_attributes: "Atributs de la tasca pare" - label_parent_task_attributes_derived: "Calculat de les subtasques" - label_parent_task_attributes_independent: "Independent de les subtasques" - label_time_entries_visibility_all: "Tots els registres de temps" - label_time_entries_visibility_own: "Els registres de temps creats per mi" - label_member_management: "Administració de membres" - label_member_management_all_roles: "Tots els rols" - label_member_management_selected_roles_only: "Només aquests rols" - label_password_required: "Confirmi la seva contrasenya per continuar" - label_total_spent_time: "Temps total invertit" - notice_import_finished: "%{count} element/s han sigut importats" - notice_import_finished_with_errors: "%{count} de %{total} elements no s'ha pogut importar" - error_invalid_file_encoding: "El fitxer no utilitza una codificació valida (%{encoding})" - error_invalid_csv_file_or_settings: "El fitxer no es un CSV o no coincideix amb la configuració" - error_can_not_read_import_file: "S'ha produït un error mentre es llegia el fitxer a importar" - permission_import_issues: "Importar assumptes" - label_import_issues: "Importar assumptes" - label_select_file_to_import: "Escull el fitxer per importar" - label_fields_separator: "Separador dels camps" - label_fields_wrapper: "Envoltori dels camps" - label_encoding: "Codificació" - label_comma_char: "Coma" - label_semi_colon_char: "Punt i coma" - label_quote_char: "Comilla simple" - label_double_quote_char: "Comilla doble" - label_fields_mapping: "Mapat de camps" - label_file_content_preview: "Vista prèvia del contingut" - label_create_missing_values: "Crear valors no presents" - button_import: "Importar" - field_total_estimated_hours: "Temps total estimat" - label_api: "API" - label_total_plural: "Totals" - label_assigned_issues: "Assumptes assignats" - label_field_format_enumeration: "Llistat clau/valor" - label_f_hour_short: "%{value} h" - field_default_version: "Versió per defecte" - error_attachment_extension_not_allowed: "L'extensió %{extension} no està permesa" - setting_attachment_extensions_allowed: "Extensions permeses" - setting_attachment_extensions_denied: "Extensions no permeses" - label_any_open_issues: "qualsevol assumpte obert" - label_no_open_issues: "cap assumpte obert" - label_default_values_for_new_users: "Valors per defecte pels nous usuaris" - setting_sys_api_key: "Clau API" - setting_lost_password: "Has oblidat la contrasenya?" - mail_subject_security_notification: "Notificació de seguretat" - mail_body_security_notification_change: ! '%{field} actualitzat.' - mail_body_security_notification_change_to: ! '%{field} actualitzat per %{value}.' - mail_body_security_notification_add: ! '%{field} %{value} afegit.' - mail_body_security_notification_remove: ! '%{field} %{value} eliminat.' - mail_body_security_notification_notify_enabled: "S'han activat les notificacions per l'adreça de correu %{value}" - mail_body_security_notification_notify_disabled: "S'han desactivat les notificacions per l'adreça de correu %{value}" - mail_body_settings_updated: ! "Les següents opcions s'han actualitzat:" - field_remote_ip: Adreça IP - label_wiki_page_new: Nova pàgina wiki - label_relations: Relacions - button_filter: Filtre - mail_body_password_updated: "La seva contrasenya s'ha canviat." - label_no_preview: Previsualització no disponible - error_no_tracker_allowed_for_new_issue_in_project: "El projecte no disposa de cap tipus d'assumpte sobre el qual vostè pugui crear un assumpte" - label_tracker_all: "Tots els tipus d'assumpte" - label_new_project_issue_tab_enabled: Mostrar la pestanya "Nou assumpte" - setting_new_item_menu_tab: Pestanya de nous objectes en el menu de cada projecte - label_new_object_tab_enabled: Mostrar el llistat desplegable "+" - error_no_projects_with_tracker_allowed_for_new_issue: "Cap projecte disposa d'un tipus d'assumpte sobre el qual vostè pugui crear un assumpte" - field_textarea_font: Font utilitzada en les text àrea - label_font_default: Font per defecte - label_font_monospace: Font Monospaced - label_font_proportional: Font Proportional - setting_timespan_format: Time span format - label_table_of_contents: Table of contents - setting_commit_logs_formatting: Apply text formatting to commit messages - setting_mail_handler_enable_regex: Enable regular expressions - error_move_of_child_not_possible: 'Subtask %{child} could not be moved to the new - project: %{errors}' - error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted: Spent time cannot - be reassigned to an issue that is about to be deleted - setting_timelog_required_fields: Required fields for time logs - label_attribute_of_object: '%{object_name}''s %{name}' - label_user_mail_option_only_assigned: Only for things I watch or I am assigned to - label_user_mail_option_only_owner: Only for things I watch or I am the owner of - warning_fields_cleared_on_bulk_edit: Changes will result in the automatic deletion - of values from one or more fields on the selected objects - field_updated_by: Updated by - field_last_updated_by: Last updated by - field_full_width_layout: Full width layout - label_last_notes: Last notes - field_digest: Checksum - field_default_assigned_to: Default assignee - setting_show_custom_fields_on_registration: Show custom fields on registration - permission_view_news: View news - label_no_preview_alternative_html: No preview available. %{link} the file instead. - label_no_preview_download: Download - setting_close_duplicate_issues: Close duplicate issues automatically - error_exceeds_maximum_hours_per_day: Cannot log more than %{max_hours} hours on the - same day (%{logged_hours} hours have already been logged) - setting_time_entry_list_defaults: Timelog list defaults - setting_timelog_accept_0_hours: Accept time logs with 0 hours - setting_timelog_max_hours_per_day: Maximum hours that can be logged per day and user - label_x_revisions: "%{count} revisions" - error_can_not_delete_auth_source: This authentication mode is in use and cannot be - deleted. - button_actions: Actions - mail_body_lost_password_validity: Please be aware that you may change the password - only once using this link. - text_login_required_html: When not requiring authentication, public projects and their - contents are openly available on the network. You can edit - the applicable permissions. - label_login_required_yes: 'Yes' - label_login_required_no: No, allow anonymous access to public projects - text_project_is_public_non_member: Public projects and their contents are available - to all logged-in users. - text_project_is_public_anonymous: Public projects and their contents are openly available - on the network. - label_version_and_files: Versions (%{count}) and Files - label_ldap: LDAP - label_ldaps_verify_none: LDAPS (without certificate check) - label_ldaps_verify_peer: LDAPS - label_ldaps_warning: It is recommended to use an encrypted LDAPS connection with certificate - check to prevent any manipulation during the authentication process. - label_nothing_to_preview: Nothing to preview - error_token_expired: This password recovery link has expired, please try again. - error_spent_on_future_date: Cannot log time on a future date - setting_timelog_accept_future_dates: Accept time logs on future dates - label_delete_link_to_subtask: "Suprimir relació" - error_not_allowed_to_log_time_for_other_users: You are not allowed to log time - for other users - permission_log_time_for_other_users: Log spent time for other users - label_tomorrow: tomorrow - label_next_week: next week - label_next_month: next month - text_role_no_workflow: No workflow defined for this role - text_status_no_workflow: No tracker uses this status in the workflows - setting_mail_handler_preferred_body_part: Preferred part of multipart (HTML) emails - setting_show_status_changes_in_mail_subject: Show status changes in issue mail notifications - subject - label_inherited_from_parent_project: Inherited from parent project - label_inherited_from_group: Inherited from group %{name} - label_trackers_description: Trackers description - label_open_trackers_description: View all trackers description - label_preferred_body_part_text: Text - label_preferred_body_part_html: HTML (experimental) - field_parent_issue_subject: Parent task subject - permission_edit_own_issues: Edit own issues - text_select_apply_tracker: Select tracker - label_updated_issues: Updated issues - text_avatar_server_config_html: The current avatar server is %{url}. - You can configure it in config/configuration.yml. - setting_gantt_months_limit: Maximum number of months displayed on the gantt chart - permission_import_time_entries: Import time entries - label_import_notifications: Send email notifications during the import - text_gs_available: ImageMagick PDF support available (optional) - field_recently_used_projects: Number of recently used projects in jump box - label_optgroup_bookmarks: Bookmarks - label_optgroup_others: Other projects - label_optgroup_recents: Recently used - button_project_bookmark: Add bookmark - button_project_bookmark_delete: Remove bookmark - field_history_default_tab: Issue's history default tab - label_issue_history_properties: Property changes - label_issue_history_notes: Notes - label_last_tab_visited: Last visited tab - field_unique_id: Unique ID - text_no_subject: no subject - setting_password_required_char_classes: Required character classes for passwords - label_password_char_class_uppercase: uppercase letters - label_password_char_class_lowercase: lowercase letters - label_password_char_class_digits: digits - label_password_char_class_special_chars: special characters - text_characters_must_contain: Must contain %{character_classes}. - label_starts_with: starts with - label_ends_with: ends with - label_issue_fixed_version_updated: Target version updated - setting_project_list_defaults: Projects list defaults - label_display_type: Display results as - label_display_type_list: List - label_display_type_board: Board - label_my_bookmarks: My bookmarks - label_import_time_entries: Import time entries diff --git a/config/locales/cs.yml b/config/locales/cs.yml deleted file mode 100644 index 6c1762a..0000000 --- a/config/locales/cs.yml +++ /dev/null @@ -1,1305 +0,0 @@ -# Update to 2.2, 2.4, 2.5, 2.6, 3.1, 3.3,.. by Karel Picman -# Update to 1.1 by Michal Gebauer -# Updated by Josef Liška -# CZ translation by Maxim Krušina | Massimo Filippi, s.r.o. | maxim@mxm.cz -# Based on original CZ translation by Jan Kadleček -cs: - # Text direction: Left-to-Right (ltr) or Right-to-Left (rtl) - direction: ltr - date: - formats: - # Use the strftime parameters for formats. - # When no format has been given, it uses default. - # You can provide other formats here if you like! - default: "%Y-%m-%d" - short: "%b %d" - long: "%B %d, %Y" - - day_names: [neděle, pondělí, úterý, středa, čtvrtek, pátek, sobota] - abbr_day_names: [ne, po, út, st, čt, pá, so] - - # Don't forget the nil at the beginning; there's no such thing as a 0th month - month_names: [~, leden, únor, březen, duben, květen, červen, červenec, srpen, září, říjen, listopad, prosinec] - abbr_month_names: [~, led, úno, bře, dub, kvě, čer, čec, srp, zář, říj, lis, pro] - # Used in date_select and datime_select. - order: - - :year - - :month - - :day - - time: - formats: - default: "%a, %d %b %Y %H:%M:%S %z" - time: "%H:%M" - short: "%d %b %H:%M" - long: "%B %d, %Y %H:%M" - am: "dop." - pm: "odp." - - datetime: - distance_in_words: - half_a_minute: "půl minuty" - less_than_x_seconds: - one: "méně než sekunda" - other: "méně než %{count} sekund(y)" - x_seconds: - one: "1 sekunda" - other: "%{count} sekund" - less_than_x_minutes: - one: "méně než minuta" - other: "méně než %{count} minut(y)" - x_minutes: - one: "1 minuta" - other: "%{count} minut" - about_x_hours: - one: "asi 1 hodina" - other: "asi %{count} hodin(y)" - x_hours: - one: "1 hodina" - other: "%{count} hodin(y)" - x_days: - one: "1 den" - other: "%{count} dny(ů)" - about_x_months: - one: "asi 1 měsíc" - other: "asi %{count} měsíce(ů)" - x_months: - one: "1 měsíc" - other: "%{count} měsíc(ů)" - about_x_years: - one: "asi 1 rok" - other: "asi %{count} roky(ů)" - over_x_years: - one: "více než 1 rok" - other: "více než %{count} roky(ů)" - almost_x_years: - one: "témeř 1 rok" - other: "téměř %{count} roky(ů)" - - number: - # Výchozí formát pro čísla - format: - separator: "." - delimiter: "" - precision: 3 - human: - format: - delimiter: "" - precision: 3 - storage_units: - format: "%n %u" - units: - byte: - one: "Bajt" - other: "Bajtů" - kb: "KB" - mb: "MB" - gb: "GB" - tb: "TB" - -# Used in array.to_sentence. - support: - array: - sentence_connector: "a" - skip_last_comma: false - - activerecord: - errors: - template: - header: - one: "1 chyba zabránila uložení %{model}" - other: "%{count} chyb zabránilo uložení %{model}" - messages: - inclusion: "není zahrnuto v seznamu" - exclusion: "je rezervováno" - invalid: "je neplatné" - confirmation: "se neshoduje s potvrzením" - accepted: "musí být akceptováno" - empty: "nemůže být prázdný" - blank: "nemůže být prázdný" - too_long: "je příliš dlouhý" - too_short: "je příliš krátký" - wrong_length: "má chybnou délku" - taken: "je již použito" - not_a_number: "není číslo" - not_a_date: "není platné datum" - greater_than: "musí být větší než %{count}" - greater_than_or_equal_to: "musí být větší nebo rovno %{count}" - equal_to: "musí být přesně %{count}" - less_than: "musí být méně než %{count}" - less_than_or_equal_to: "musí být méně nebo rovno %{count}" - odd: "musí být liché" - even: "musí být sudé" - greater_than_start_date: "musí být větší než počáteční datum" - not_same_project: "nepatří stejnému projektu" - circular_dependency: "Tento vztah by vytvořil cyklickou závislost" - cant_link_an_issue_with_a_descendant: "Úkol nemůže být spojen s jedním z jeho dílčích úkolů" - earlier_than_minimum_start_date: "nemůže být dříve než %{date} kvůli předřazeným úkolům" - not_a_regexp: "není platný regulární výraz" - open_issue_with_closed_parent: "Otevřený úkol nemůže být přiřazen pod uzavřený rodičovský úkol" - must_contain_uppercase: "musí obsahovat velká písmena (A-Z)" - must_contain_lowercase: "musí obsahovat malá písmena (a-z)" - must_contain_digits: "musí obsahovat čísla (0-9)" - must_contain_special_chars: "musí obsahovat speciální znaky (!, $, %, ...)" - - actionview_instancetag_blank_option: Prosím vyberte - - general_text_No: 'Ne' - general_text_Yes: 'Ano' - general_text_no: 'ne' - general_text_yes: 'ano' - general_lang_name: 'Czech (Čeština)' - general_csv_separator: ',' - general_csv_decimal_separator: '.' - general_csv_encoding: UTF-8 - general_pdf_fontname: freesans - general_pdf_monospaced_fontname: freemono - general_first_day_of_week: '1' - - notice_account_updated: Účet byl úspěšně změněn. - notice_account_invalid_credentials: Chybné jméno nebo heslo - notice_account_password_updated: Heslo bylo úspěšně změněno. - notice_account_wrong_password: Chybné heslo - notice_account_register_done: Účet byl úspěšně vytvořen. Pro aktivaci účtu klikněte na odkaz v emailu, který vám byl zaslán. - notice_account_unknown_email: Neznámý uživatel. - notice_can_t_change_password: Tento účet používá externí autentifikaci. Zde heslo změnit nemůžete. - notice_account_lost_email_sent: Byl vám zaslán email s intrukcemi jak si nastavíte nové heslo. - notice_account_activated: Váš účet byl aktivován. Nyní se můžete přihlásit. - notice_successful_create: Úspěšně vytvořeno. - notice_successful_update: Úspěšně aktualizováno. - notice_successful_delete: Úspěšně odstraněno. - notice_successful_connection: Úspěšné připojení. - notice_file_not_found: Stránka, kterou se snažíte zobrazit, neexistuje nebo byla smazána. - notice_locking_conflict: Údaje byly změněny jiným uživatelem. - notice_not_authorized: Nemáte dostatečná práva pro zobrazení této stránky. - notice_not_authorized_archived_project: Projekt, ke kterému se snažíte přistupovat, byl archivován. - notice_email_sent: "Na adresu %{value} byl odeslán email" - notice_email_error: "Při odesílání emailu nastala chyba (%{value})" - notice_feeds_access_key_reseted: Váš klíč pro přístup k Atom byl resetován. - notice_api_access_key_reseted: Váš API přístupový klíč byl resetován. - notice_failed_to_save_issues: "Chyba při uložení %{count} úkolu(ů) z %{total} vybraných: %{ids}." - notice_failed_to_save_members: "Nepodařilo se uložit člena(y): %{errors}." - notice_no_issue_selected: "Nebyl zvolen žádný úkol. Prosím, zvolte úkoly, které chcete editovat" - notice_account_pending: "Váš účet byl vytvořen, nyní čeká na schválení administrátorem." - notice_default_data_loaded: Výchozí konfigurace úspěšně nahrána. - notice_unable_delete_version: Nemohu odstanit verzi - notice_unable_delete_time_entry: Nelze smazat záznam času. - notice_issue_done_ratios_updated: Koeficienty dokončení úkolu byly aktualizovány. - notice_gantt_chart_truncated: Graf byl oříznut, počet položek přesáhl limit pro zobrazení (%{max}) - - error_can_t_load_default_data: "Výchozí konfigurace nebyla nahrána: %{value}" - error_scm_not_found: "Položka a/nebo revize neexistují v repozitáři." - error_scm_command_failed: "Při pokusu o přístup k repozitáři došlo k chybě: %{value}" - error_scm_annotate: "Položka neexistuje nebo nemůže být komentována." - error_issue_not_found_in_project: 'Úkol nebyl nalezen nebo nepatří k tomuto projektu' - error_no_tracker_in_project: Žádná fronta nebyla přiřazena tomuto projektu. Prosím zkontroluje nastavení projektu. - error_no_default_issue_status: Není nastaven výchozí stav úkolů. Prosím zkontrolujte nastavení ("Administrace -> Stavy úkolů"). - error_can_not_delete_custom_field: Nelze smazat volitelné pole - error_can_not_delete_tracker: Tato fronta obsahuje úkoly a nemůže být smazána. - error_can_not_remove_role: Tato role je právě používaná a nelze ji smazat. - error_can_not_reopen_issue_on_closed_version: Úkol přiřazený k uzavřené verzi nemůže být znovu otevřen - error_can_not_archive_project: Tento projekt nemůže být archivován - error_issue_done_ratios_not_updated: Koeficient dokončení úkolu nebyl aktualizován. - error_workflow_copy_source: Prosím vyberte zdrojovou frontu nebo roli - error_workflow_copy_target: Prosím vyberte cílovou frontu(y) a roli(e) - error_unable_delete_issue_status: Nelze smazat stavy úkolů (%{value}) - error_unable_to_connect: Nelze se připojit (%{value}) - warning_attachments_not_saved: "%{count} soubor(ů) nebylo možné uložit." - - mail_subject_lost_password: "Vaše heslo (%{value})" - mail_body_lost_password: 'Pro změnu vašeho hesla klikněte na následující odkaz:' - mail_subject_register: "Aktivace účtu (%{value})" - mail_body_register: 'Pro aktivaci vašeho účtu klikněte na následující odkaz:' - mail_body_account_information_external: "Pomocí vašeho účtu %{value} se můžete přihlásit." - mail_body_account_information: Informace o vašem účtu - mail_subject_account_activation_request: "Aktivace %{value} účtu" - mail_body_account_activation_request: "Byl zaregistrován nový uživatel %{value}. Aktivace jeho účtu závisí na vašem potvrzení." - mail_subject_reminder: "%{count} úkol(ů) má termín během několik dní (%{days})" - mail_body_reminder: "%{count} úkol(ů), které máte přiřazeny má termín během několika dní (%{days}):" - mail_subject_wiki_content_added: "'%{id}' Wiki stránka byla přidána" - mail_body_wiki_content_added: "'%{id}' Wiki stránka byla přidána od %{author}." - mail_subject_wiki_content_updated: "'%{id}' Wiki stránka byla aktualizována" - mail_body_wiki_content_updated: "'%{id}' Wiki stránka byla aktualizována od %{author}." - - field_name: Název - field_description: Popis - field_summary: Přehled - field_is_required: Povinné pole - field_firstname: Jméno - field_lastname: Příjmení - field_mail: Email - field_filename: Soubor - field_filesize: Velikost - field_downloads: Staženo - field_author: Autor - field_created_on: Vytvořeno - field_updated_on: Aktualizováno - field_field_format: Formát - field_is_for_all: Pro všechny projekty - field_possible_values: Možné hodnoty - field_regexp: Regulární výraz - field_min_length: Minimální délka - field_max_length: Maximální délka - field_value: Hodnota - field_category: Kategorie - field_title: Název - field_project: Projekt - field_issue: Úkol - field_status: Stav - field_notes: Poznámka - field_is_closed: Úkol uzavřen - field_is_default: Výchozí stav - field_tracker: Fronta - field_subject: Předmět - field_due_date: Uzavřít do - field_assigned_to: Přiřazeno - field_priority: Priorita - field_fixed_version: Cílová verze - field_user: Uživatel - field_principal: Hlavní - field_role: Role - field_homepage: Domovská stránka - field_is_public: Veřejný - field_parent: Nadřazený projekt - field_is_in_roadmap: Úkoly zobrazené v plánu - field_login: Přihlášení - field_mail_notification: Emailová oznámení - field_admin: Administrátor - field_last_login_on: Poslední přihlášení - field_language: Jazyk - field_effective_date: Datum - field_password: Heslo - field_new_password: Nové heslo - field_password_confirmation: Potvrzení - field_version: Verze - field_type: Typ - field_host: Host - field_port: Port - field_account: Účet - field_base_dn: Base DN - field_attr_login: Přihlášení (atribut) - field_attr_firstname: Jméno (atribut) - field_attr_lastname: Příjmení (atribut) - field_attr_mail: Email (atribut) - field_onthefly: Automatické vytváření uživatelů - field_start_date: Začátek - field_done_ratio: "% Hotovo" - field_auth_source: Autentifikační mód - field_hide_mail: Nezobrazovat můj email - field_comments: Komentář - field_url: URL - field_start_page: Výchozí stránka - field_subproject: Podprojekt - field_hours: Hodiny - field_activity: Aktivita - field_spent_on: Datum - field_identifier: Identifikátor - field_is_filter: Použít jako filtr - field_issue_to: Související úkol - field_delay: Zpoždění - field_assignable: Úkoly mohou být přiřazeny této roli - field_redirect_existing_links: Přesměrovat stávající odkazy - field_estimated_hours: Odhadovaná doba - field_column_names: Sloupce - field_time_entries: Zaznamenaný čas - field_time_zone: Časové pásmo - field_searchable: Umožnit vyhledávání - field_default_value: Výchozí hodnota - field_comments_sorting: Zobrazit komentáře - field_parent_title: Rodičovská stránka - field_editable: Editovatelný - field_watcher: Sleduje - field_identity_url: OpenID URL - field_content: Obsah - field_group_by: Seskupovat výsledky podle - field_sharing: Sdílení - field_parent_issue: Rodičovský úkol - field_member_of_group: Skupina přiřaditele - field_assigned_to_role: Role přiřaditele - field_text: Textové pole - field_visible: Viditelný - - setting_app_title: Název aplikace - setting_welcome_text: Uvítací text - setting_default_language: Výchozí jazyk - setting_login_required: Autentifikace vyžadována - setting_self_registration: Povolena automatická registrace - setting_attachment_max_size: Maximální velikost přílohy - setting_issues_export_limit: Limit pro export úkolů - setting_mail_from: Odesílat emaily z adresy - setting_bcc_recipients: Příjemci jako skrytá kopie (bcc) - setting_plain_text_mail: pouze prostý text (ne HTML) - setting_host_name: Jméno serveru - setting_text_formatting: Formátování textu - setting_wiki_compression: Komprese historie Wiki - setting_feeds_limit: Limit obsahu příspěvků - setting_default_projects_public: Nové projekty nastavovat jako veřejné - setting_autofetch_changesets: Automaticky stahovat commity - setting_sys_api_enabled: Povolit WS pro správu repozitory - setting_commit_ref_keywords: Klíčová slova pro odkazy - setting_commit_fix_keywords: Klíčová slova pro uzavření - setting_autologin: Automatické přihlašování - setting_date_format: Formát data - setting_time_format: Formát času - setting_cross_project_issue_relations: Povolit vazby úkolů napříč projekty - setting_issue_list_default_columns: Výchozí sloupce zobrazené v seznamu úkolů - setting_emails_header: Záhlaví emailů - setting_emails_footer: Zápatí emailů - setting_protocol: Protokol - setting_per_page_options: Povolené počty řádků na stránce - setting_user_format: Formát zobrazení uživatele - setting_activity_days_default: Dny zobrazené v činnosti projektu - setting_display_subprojects_issues: Automaticky zobrazit úkoly podprojektu v hlavním projektu - setting_enabled_scm: Povolené SCM - setting_mail_handler_body_delimiters: Zkrátit e-maily po jednom z těchto řádků - setting_mail_handler_api_enabled: Povolit WS pro příchozí e-maily - setting_mail_handler_api_key: API klíč - setting_sequential_project_identifiers: Generovat sekvenční identifikátory projektů - setting_gravatar_enabled: Použít uživatelské ikony Gravatar - setting_gravatar_default: Výchozí Gravatar - setting_diff_max_lines_displayed: Maximální počet zobrazených řádků rozdílu - setting_file_max_size_displayed: Maximální velikost textových souborů zobrazených přímo na stránce - setting_repository_log_display_limit: Maximální počet revizí zobrazených v logu souboru - setting_openid: Umožnit přihlašování a registrace s OpenID - setting_password_min_length: Minimální délka hesla - setting_new_project_user_role_id: Role přiřazená uživateli bez práv administrátora, který projekt vytvořil - setting_default_projects_modules: Výchozí zapnutné moduly pro nový projekt - setting_issue_done_ratio: Spočítat koeficient dokončení úkolu s - setting_issue_done_ratio_issue_field: Použít pole úkolu - setting_issue_done_ratio_issue_status: Použít stav úkolu - setting_start_of_week: Začínat kalendáře - setting_rest_api_enabled: Zapnout službu REST - setting_cache_formatted_text: Ukládat formátovaný text do vyrovnávací paměti - setting_default_notification_option: Výchozí nastavení oznámení - setting_commit_logtime_enabled: Povolit zapisování času - setting_commit_logtime_activity_id: Aktivita pro zapsaný čas - setting_gantt_items_limit: Maximální počet položek zobrazený na ganttově diagramu - - permission_add_project: Vytvořit projekt - permission_add_subprojects: Vytvořit podprojekty - permission_edit_project: Úprava projektů - permission_select_project_modules: Výběr modulů projektu - permission_manage_members: Spravování členství - permission_manage_project_activities: Spravovat aktivity projektu - permission_manage_versions: Spravování verzí - permission_manage_categories: Spravování kategorií úkolů - permission_view_issues: Zobrazit úkoly - permission_add_issues: Přidávání úkolů - permission_edit_issues: Upravování úkolů - permission_manage_issue_relations: Spravování vztahů mezi úkoly - permission_add_issue_notes: Přidávání poznámek - permission_edit_issue_notes: Upravování poznámek - permission_edit_own_issue_notes: Upravování vlastních poznámek - permission_delete_issues: Mazání úkolů - permission_manage_public_queries: Správa veřejných dotazů - permission_save_queries: Ukládání dotazů - permission_view_gantt: Zobrazení ganttova diagramu - permission_view_calendar: Prohlížení kalendáře - permission_view_issue_watchers: Zobrazení seznamu sledujících uživatelů - permission_add_issue_watchers: Přidání sledujících uživatelů - permission_delete_issue_watchers: Smazat sledující uživatele - permission_log_time: Zaznamenávání stráveného času - permission_view_time_entries: Zobrazení stráveného času - permission_edit_time_entries: Upravování záznamů o stráveném času - permission_edit_own_time_entries: Upravování vlastních zázamů o stráveném čase - permission_manage_news: Spravování novinek - permission_comment_news: Komentování novinek - permission_view_documents: Prohlížení dokumentů - permission_manage_files: Spravování souborů - permission_view_files: Prohlížení souborů - permission_manage_wiki: Spravování Wiki - permission_rename_wiki_pages: Přejmenovávání Wiki stránek - permission_delete_wiki_pages: Mazání stránek na Wiki - permission_view_wiki_pages: Prohlížení Wiki - permission_view_wiki_edits: Prohlížení historie Wiki - permission_edit_wiki_pages: Upravování stránek Wiki - permission_delete_wiki_pages_attachments: Mazání příloh - permission_protect_wiki_pages: Zabezpečení Wiki stránek - permission_manage_repository: Spravování repozitáře - permission_browse_repository: Procházení repozitáře - permission_view_changesets: Zobrazování revizí - permission_commit_access: Commit přístup - permission_manage_boards: Správa diskusních fór - permission_view_messages: Prohlížení příspěvků - permission_add_messages: Posílání příspěvků - permission_edit_messages: Upravování příspěvků - permission_edit_own_messages: Upravit vlastní příspěvky - permission_delete_messages: Mazání příspěvků - permission_delete_own_messages: Smazat vlastní příspěvky - permission_export_wiki_pages: Exportovat Wiki stránky - permission_manage_subtasks: Spravovat dílčí úkoly - - project_module_issue_tracking: Sledování úkolů - project_module_time_tracking: Sledování času - project_module_news: Novinky - project_module_documents: Dokumenty - project_module_files: Soubory - project_module_wiki: Wiki - project_module_repository: Repozitář - project_module_boards: Diskuse - project_module_calendar: Kalendář - project_module_gantt: Gantt - - label_user: Uživatel - label_user_plural: Uživatelé - label_user_new: Nový uživatel - label_user_anonymous: Anonymní - label_project: Projekt - label_project_new: Nový projekt - label_project_plural: Projekty - label_x_projects: - zero: žádné projekty - one: 1 projekt - other: "%{count} projekty(ů)" - label_project_all: Všechny projekty - label_project_latest: Poslední projekty - label_issue: Úkol - label_issue_new: Nový úkol - label_issue_plural: Úkoly - label_issue_view_all: Všechny úkoly - label_issues_by: "Úkoly podle %{value}" - label_issue_added: Úkol přidán - label_issue_updated: Úkol aktualizován - label_document: Dokument - label_document_new: Nový dokument - label_document_plural: Dokumenty - label_document_added: Dokument přidán - label_role: Role - label_role_plural: Role - label_role_new: Nová role - label_role_and_permissions: Role a práva - label_member: Člen - label_member_new: Nový člen - label_member_plural: Členové - label_tracker: Fronta - label_tracker_plural: Fronty - label_tracker_new: Nová fronta - label_workflow: Průběh práce - label_issue_status: Stav úkolu - label_issue_status_plural: Stavy úkolů - label_issue_status_new: Nový stav - label_issue_category: Kategorie úkolu - label_issue_category_plural: Kategorie úkolů - label_issue_category_new: Nová kategorie - label_custom_field: Uživatelské pole - label_custom_field_plural: Uživatelská pole - label_custom_field_new: Nové uživatelské pole - label_enumerations: Seznamy - label_enumeration_new: Nová hodnota - label_information: Informace - label_information_plural: Informace - label_register: Registrovat - label_login_with_open_id_option: nebo se přihlašte s OpenID - label_password_lost: Zapomenuté heslo - label_home: Úvodní - label_my_page: Moje stránka - label_my_account: Můj účet - label_my_projects: Moje projekty - label_administration: Administrace - label_login: Přihlášení - label_logout: Odhlášení - label_help: Nápověda - label_reported_issues: Nahlášené úkoly - label_assigned_to_me_issues: Mé úkoly - label_last_login: Poslední přihlášení - label_registered_on: Registrován - label_activity: Aktivita - label_overall_activity: Celková aktivita - label_user_activity: "Aktivita uživatele: %{value}" - label_new: Nový - label_logged_as: Přihlášen jako - label_environment: Prostředí - label_authentication: Autentifikace - label_auth_source: Mód autentifikace - label_auth_source_new: Nový mód autentifikace - label_auth_source_plural: Módy autentifikace - label_subproject_plural: Podprojekty - label_subproject_new: Nový podprojekt - label_and_its_subprojects: "%{value} a jeho podprojekty" - label_min_max_length: Min - Max délka - label_list: Seznam - label_date: Datum - label_integer: Celé číslo - label_float: Desetinné číslo - label_boolean: Ano/Ne - label_string: Text - label_text: Dlouhý text - label_attribute: Atribut - label_attribute_plural: Atributy - label_no_data: Žádné položky - label_change_status: Změnit stav - label_history: Historie - label_attachment: Soubor - label_attachment_new: Nový soubor - label_attachment_delete: Odstranit soubor - label_attachment_plural: Soubory - label_file_added: Soubor přidán - label_report: Přehled - label_report_plural: Přehledy - label_news: Novinky - label_news_new: Přidat novinku - label_news_plural: Novinky - label_news_latest: Poslední novinky - label_news_view_all: Zobrazit všechny novinky - label_news_added: Novinka přidána - label_settings: Nastavení - label_overview: Přehled - label_version: Verze - label_version_new: Nová verze - label_version_plural: Verze - label_close_versions: Zavřít dokončené verze - label_confirmation: Potvrzení - label_export_to: 'Také k dispozici:' - label_read: Načítá se... - label_public_projects: Veřejné projekty - label_open_issues: otevřený - label_open_issues_plural: otevřené - label_closed_issues: uzavřený - label_closed_issues_plural: uzavřené - label_x_open_issues_abbr: - zero: 0 otevřených - one: 1 otevřený - other: "%{count} otevřených" - label_x_closed_issues_abbr: - zero: 0 uzavřených - one: 1 uzavřený - other: "%{count} uzavřených" - label_total: Celkem - label_permissions: Práva - label_current_status: Aktuální stav - label_new_statuses_allowed: Nové povolené stavy - label_all: vše - label_none: nic - label_nobody: nikdo - label_next: Další - label_previous: Předchozí - label_used_by: Použito - label_details: Detaily - label_add_note: Přidat poznámku - label_calendar: Kalendář - label_months_from: měsíců od - label_gantt: Ganttův diagram - label_internal: Interní - label_last_changes: "posledních %{count} změn" - label_change_view_all: Zobrazit všechny změny - label_comment: Komentář - label_comment_plural: Komentáře - label_x_comments: - zero: žádné komentáře - one: 1 komentář - other: "%{count} komentářů" - label_comment_add: Přidat komentáře - label_comment_added: Komentář přidán - label_comment_delete: Odstranit komentář - label_query: Uživatelský dotaz - label_query_plural: Uživatelské dotazy - label_query_new: Nový dotaz - label_filter_add: Přidat filtr - label_filter_plural: Filtry - label_equals: je - label_not_equals: není - label_in_less_than: je měší než - label_in_more_than: je větší než - label_greater_or_equal: '>=' - label_less_or_equal: '<=' - label_in: v - label_today: dnes - label_yesterday: včera - label_this_week: tento týden - label_last_week: minulý týden - label_last_n_days: "posledních %{count} dnů" - label_this_month: tento měsíc - label_last_month: minulý měsíc - label_this_year: tento rok - label_date_range: Časový rozsah - label_less_than_ago: před méně jak (dny) - label_more_than_ago: před více jak (dny) - label_ago: před (dny) - label_contains: obsahuje - label_not_contains: neobsahuje - label_day_plural: dny - label_repository: Repozitář - label_repository_plural: Repozitáře - label_browse: Procházet - label_branch: Větev - label_tag: Tag - label_revision: Revize - label_revision_plural: Revizí - label_revision_id: "Revize %{value}" - label_associated_revisions: Související verze - label_added: přidáno - label_modified: změněno - label_copied: zkopírováno - label_renamed: přejmenováno - label_deleted: odstraněno - label_latest_revision: Poslední revize - label_latest_revision_plural: Poslední revize - label_view_revisions: Zobrazit revize - label_view_all_revisions: Zobrazit všechny revize - label_max_size: Maximální velikost - label_sort_highest: Přesunout na začátek - label_sort_higher: Přesunout nahoru - label_sort_lower: Přesunout dolů - label_sort_lowest: Přesunout na konec - label_roadmap: Plán - label_roadmap_due_in: "Zbývá %{value}" - label_roadmap_overdue: "%{value} pozdě" - label_roadmap_no_issues: Pro tuto verzi nejsou žádné úkoly - label_search: Hledat - label_result_plural: Výsledky - label_all_words: Všechna slova - label_wiki: Wiki - label_wiki_edit: Wiki úprava - label_wiki_edit_plural: Wiki úpravy - label_wiki_page: Wiki stránka - label_wiki_page_plural: Wiki stránky - label_index_by_title: Index dle názvu - label_index_by_date: Index dle data - label_current_version: Aktuální verze - label_preview: Náhled - label_feed_plural: Příspěvky - label_changes_details: Detail všech změn - label_issue_tracking: Sledování úkolů - label_spent_time: Strávený čas - label_overall_spent_time: Celkem strávený čas - label_f_hour: "%{value} hodina" - label_f_hour_plural: "%{value} hodin" - label_time_tracking: Sledování času - label_change_plural: Změny - label_statistics: Statistiky - label_commits_per_month: Commitů za měsíc - label_commits_per_author: Commitů za autora - label_view_diff: Zobrazit rozdíly - label_diff_inline: uvnitř - label_diff_side_by_side: vedle sebe - label_options: Nastavení - label_copy_workflow_from: Kopírovat průběh práce z - label_permissions_report: Přehled práv - label_watched_issues: Sledované úkoly - label_related_issues: Související úkoly - label_applied_status: Použitý stav - label_loading: Nahrávám... - label_relation_new: Nová souvislost - label_relation_delete: Odstranit souvislost - label_relates_to: související s - label_duplicates: duplikuje - label_duplicated_by: duplikován - label_blocks: blokuje - label_blocked_by: blokován - label_precedes: předchází - label_follows: následuje - label_stay_logged_in: Zůstat přihlášený - label_disabled: zakázán - label_show_completed_versions: Zobrazit dokončené verze - label_me: já - label_board: Fórum - label_board_new: Nové fórum - label_board_plural: Fóra - label_board_locked: Zamčeno - label_board_sticky: Nálepka - label_topic_plural: Témata - label_message_plural: Příspěvky - label_message_last: Poslední příspěvek - label_message_new: Nový příspěvek - label_message_posted: Příspěvek přidán - label_reply_plural: Odpovědi - label_send_information: Zaslat informace o účtu uživateli - label_year: Rok - label_month: Měsíc - label_week: Týden - label_date_from: Od - label_date_to: Do - label_language_based: Podle výchozího jazyka - label_sort_by: "Seřadit podle %{value}" - label_send_test_email: Poslat testovací email - label_feeds_access_key: Přístupový klíč pro Atom - label_missing_feeds_access_key: Postrádá přístupový klíč pro Atom - label_feeds_access_key_created_on: "Přístupový klíč pro Atom byl vytvořen před %{value}" - label_module_plural: Moduly - label_added_time_by: "Přidáno uživatelem %{author} před %{age}" - label_updated_time_by: "Aktualizováno uživatelem %{author} před %{age}" - label_updated_time: "Aktualizováno před %{value}" - label_jump_to_a_project: Vyberte projekt... - label_file_plural: Soubory - label_changeset_plural: Revize - label_default_columns: Výchozí sloupce - label_no_change_option: (beze změny) - label_bulk_edit_selected_issues: Hromadná úprava vybraných úkolů - label_theme: Téma - label_default: Výchozí - label_search_titles_only: Vyhledávat pouze v názvech - label_user_mail_option_all: Pro všechny události všech mých projektech - label_user_mail_option_selected: Pro všechny události na vybraných projektech... - label_user_mail_option_none: Žádné události - label_user_mail_option_only_my_events: Jen pro věci, co sleduji nebo jsem v nich zapojen - label_user_mail_no_self_notified: Nezasílat informace o mnou vytvořených změnách - label_registration_activation_by_email: aktivace účtu emailem - label_registration_manual_activation: manuální aktivace účtu - label_registration_automatic_activation: automatická aktivace účtu - label_display_per_page: "%{value} na stránku" - label_age: Věk - label_change_properties: Změnit vlastnosti - label_general: Obecné - label_scm: SCM - label_plugins: Doplňky - label_ldap_authentication: Autentifikace LDAP - label_downloads_abbr: Staž. - label_optional_description: Volitelný popis - label_add_another_file: Přidat další soubor - label_preferences: Nastavení - label_chronological_order: V chronologickém pořadí - label_reverse_chronological_order: V obrácaném chronologickém pořadí - label_incoming_emails: Příchozí e-maily - label_generate_key: Generovat klíč - label_issue_watchers: Sledování - label_example: Příklad - label_display: Zobrazit - label_sort: Řazení - label_ascending: Vzestupně - label_descending: Sestupně - label_date_from_to: Od %{start} do %{end} - label_wiki_content_added: Wiki stránka přidána - label_wiki_content_updated: Wiki stránka aktualizována - label_group: Skupina - label_group_plural: Skupiny - label_group_new: Nová skupina - label_time_entry_plural: Strávený čas - label_version_sharing_none: Nesdíleno - label_version_sharing_descendants: S podprojekty - label_version_sharing_hierarchy: S hierarchií projektu - label_version_sharing_tree: Se stromem projektu - label_version_sharing_system: Se všemi projekty - label_update_issue_done_ratios: Aktualizovat koeficienty dokončení úkolů - label_copy_source: Zdroj - label_copy_target: Cíl - label_copy_same_as_target: Stejný jako cíl - label_display_used_statuses_only: Zobrazit pouze stavy které jsou použité touto frontou - label_api_access_key: API přístupový klíč - label_missing_api_access_key: Chybějící přístupový klíč API - label_api_access_key_created_on: API přístupový klíč vytvořen %{value} - label_profile: Profil - label_subtask_plural: Dílčí úkoly - label_project_copy_notifications: Odeslat email oznámení v průběhu kopie projektu - label_principal_search: "Hledat uživatele nebo skupinu:" - label_user_search: "Hledat uživatele:" - - button_login: Přihlásit - button_submit: Potvrdit - button_save: Uložit - button_check_all: Zašrtnout vše - button_uncheck_all: Odšrtnout vše - button_delete: Odstranit - button_create: Vytvořit - button_create_and_continue: Vytvořit a pokračovat - button_test: Testovat - button_edit: Upravit - button_edit_associated_wikipage: "Upravit přiřazenou Wiki stránku: %{page_title}" - button_add: Přidat - button_change: Změnit - button_apply: Použít - button_clear: Smazat - button_lock: Zamknout - button_unlock: Odemknout - button_download: Stáhnout - button_list: Vypsat - button_view: Zobrazit - button_move: Přesunout - button_move_and_follow: Přesunout a následovat - button_back: Zpět - button_cancel: Storno - button_activate: Aktivovat - button_sort: Seřadit - button_log_time: Přidat čas - button_rollback: Zpět k této verzi - button_watch: Sledovat - button_unwatch: Nesledovat - button_reply: Odpovědět - button_archive: Archivovat - button_unarchive: Dearchivovat - button_reset: Resetovat - button_rename: Přejmenovat - button_change_password: Změnit heslo - button_copy: Kopírovat - button_copy_and_follow: Kopírovat a následovat - button_annotate: Komentovat - button_update: Aktualizovat - button_configure: Konfigurovat - button_quote: Citovat - button_show: Zobrazit - - status_active: aktivní - status_registered: registrovaný - status_locked: zamčený - - version_status_open: otevřený - version_status_locked: zamčený - version_status_closed: zavřený - - field_active: Aktivní - - text_select_mail_notifications: Vyberte akci, při které bude zasláno upozornění emailem. - text_regexp_info: např. ^[A-Z0-9]+$ - text_min_max_length_info: 0 znamená bez limitu - text_project_destroy_confirmation: Jste si jisti, že chcete odstranit tento projekt a všechna související data? - text_subprojects_destroy_warning: "Jeho podprojek(y): %{value} budou také smazány." - text_workflow_edit: Vyberte roli a frontu k editaci průběhu práce - text_are_you_sure: Jste si jisti? - text_journal_changed: "%{label} změněn z %{old} na %{new}" - text_journal_set_to: "%{label} nastaven na %{value}" - text_journal_deleted: "%{label} smazán (%{old})" - text_journal_added: "%{label} %{value} přidán" - text_tip_issue_begin_day: úkol začíná v tento den - text_tip_issue_end_day: úkol končí v tento den - text_tip_issue_begin_end_day: úkol začíná a končí v tento den - text_caracters_maximum: "%{count} znaků maximálně." - text_caracters_minimum: "Musí být alespoň %{count} znaků dlouhé." - text_length_between: "Délka mezi %{min} a %{max} znaky." - text_tracker_no_workflow: Pro tuto frontu není definován žádný průběh práce - text_unallowed_characters: Nepovolené znaky - text_comma_separated: Povoleno více hodnot (oddělěné čárkou). - text_line_separated: Více hodnot povoleno (jeden řádek pro každou hodnotu). - text_issues_ref_in_commit_messages: Odkazování a opravování úkolů v poznámkách commitů - text_issue_added: "Úkol %{id} byl vytvořen uživatelem %{author}." - text_issue_updated: "Úkol %{id} byl aktualizován uživatelem %{author}." - text_wiki_destroy_confirmation: Opravdu si přejete odstranit tuto Wiki a celý její obsah? - text_issue_category_destroy_question: "Některé úkoly (%{count}) jsou přiřazeny k této kategorii. Co s nimi chtete udělat?" - text_issue_category_destroy_assignments: Zrušit přiřazení ke kategorii - text_issue_category_reassign_to: Přiřadit úkoly do této kategorie - text_user_mail_option: "U projektů, které nebyly vybrány, budete dostávat oznámení pouze o vašich či o sledovaných položkách (např. o položkách jejichž jste autor nebo ke kterým jste přiřazen(a))." - text_no_configuration_data: "Role, fronty, stavy úkolů ani průběh práce nebyly zatím nakonfigurovány.\nVelice doporučujeme nahrát výchozí konfiguraci. Po té si můžete vše upravit" - text_load_default_configuration: Nahrát výchozí konfiguraci - text_status_changed_by_changeset: "Použito v sadě změn %{value}." - text_time_logged_by_changeset: Aplikováno v sadě změn %{value}. - text_issues_destroy_confirmation: 'Opravdu si přejete odstranit všechny zvolené úkoly?' - text_select_project_modules: 'Aktivní moduly v tomto projektu:' - text_default_administrator_account_changed: Výchozí nastavení administrátorského účtu změněno - text_file_repository_writable: Povolen zápis do adresáře ukládání souborů - text_plugin_assets_writable: Možnost zápisu do adresáře plugin assets - text_minimagick_available: MiniMagick k dispozici (volitelné) - text_destroy_time_entries_question: "U úkolů, které chcete odstranit, je evidováno %{hours} práce. Co chete udělat?" - text_destroy_time_entries: Odstranit zaznamenané hodiny. - text_assign_time_entries_to_project: Přiřadit zaznamenané hodiny projektu - text_reassign_time_entries: 'Přeřadit zaznamenané hodiny k tomuto úkolu:' - text_user_wrote: "%{value} napsal:" - text_user_wrote_in: "%{value} napsal (%{link}):" - text_enumeration_destroy_question: "Několik (%{count}) objektů je přiřazeno k této hodnotě." - text_enumeration_category_reassign_to: 'Přeřadit je do této:' - text_email_delivery_not_configured: "Doručování e-mailů není nastaveno a odesílání notifikací je zakázáno.\nNastavte Váš SMTP server v souboru config/configuration.yml a restartujte aplikaci." - text_repository_usernames_mapping: "Vybrat nebo upravit mapování mezi Redmine uživateli a uživatelskými jmény nalezenými v logu repozitáře.\nUživatelé se shodným Redmine uživatelským jménem a uživatelským jménem v repozitáři jsou mapováni automaticky." - text_diff_truncated: '... Rozdílový soubor je zkrácen, protože jeho délka přesahuje max. limit.' - text_custom_field_possible_values_info: 'Každá hodnota na novém řádku' - text_wiki_page_destroy_question: Tato stránka má %{descendants} podstránek a potomků. Co chcete udělat? - text_wiki_page_nullify_children: Ponechat podstránky jako kořenové stránky - text_wiki_page_destroy_children: Smazat podstránky a všechny jejich potomky - text_wiki_page_reassign_children: Přiřadit podstránky k tomuto rodiči - 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_zoom_in: Přiblížit - text_zoom_out: Oddálit - - default_role_manager: Manažer - default_role_developer: Vývojář - default_role_reporter: Reportér - default_tracker_bug: Chyba - default_tracker_feature: Požadavek - default_tracker_support: Podpora - default_issue_status_new: Nový - default_issue_status_in_progress: Ve vývoji - default_issue_status_resolved: Vyřešený - default_issue_status_feedback: Čeká se - default_issue_status_closed: Uzavřený - default_issue_status_rejected: Odmítnutý - default_doc_category_user: Uživatelská dokumentace - default_doc_category_tech: Technická dokumentace - default_priority_low: Nízká - default_priority_normal: Normální - default_priority_high: Vysoká - default_priority_urgent: Urgentní - default_priority_immediate: Okamžitá - default_activity_design: Návhr - default_activity_development: Vývoj - - enumeration_issue_priorities: Priority úkolů - enumeration_doc_categories: Kategorie dokumentů - enumeration_activities: Aktivity (sledování času) - enumeration_system_activity: Systémová aktivita - - field_warn_on_leaving_unsaved: Varuj mě před opuštěním stránky s neuloženým textem - text_warn_on_leaving_unsaved: Aktuální stránka obsahuje neuložený text, který bude ztracen, když opustíte stránku. - label_my_queries: Moje vlastní dotazy - text_journal_changed_no_detail: "%{label} aktualizován" - label_news_comment_added: K novince byl přidán komentář - button_expand_all: Rozbal vše - button_collapse_all: Sbal vše - label_additional_workflow_transitions_for_assignee: Další změna stavu povolena, jestliže je uživatel přiřazen - label_additional_workflow_transitions_for_author: Další změna stavu povolena, jestliže je uživatel autorem - label_bulk_edit_selected_time_entries: Hromadná změna záznamů času - text_time_entries_destroy_confirmation: Jste si jistí, že chcete smazat vybraný záznam(y) času? - label_role_anonymous: Anonymní - label_role_non_member: Není členem - label_issue_note_added: Přidána poznámka - label_issue_status_updated: Aktualizován stav - label_issue_priority_updated: Aktualizována priorita - label_issues_visibility_own: Úkol vytvořen nebo přiřazen uživatel(i/em) - field_issues_visibility: Viditelnost úkolů - label_issues_visibility_all: Všechny úkoly - permission_set_own_issues_private: Nastavit vlastní úkoly jako veřejné nebo soukromé - field_is_private: Soukromý - permission_set_issues_private: Nastavit úkoly jako veřejné nebo soukromé - label_issues_visibility_public: Všechny úkoly, které nejsou soukromé - text_issues_destroy_descendants_confirmation: "%{count} dílčí(ch) úkol(ů) bude rovněž smazán(o)." - field_commit_logs_encoding: Kódování zpráv při commitu - field_scm_path_encoding: Kódování cesty SCM - text_scm_path_encoding_note: "Výchozí: UTF-8" - field_path_to_repository: Cesta k repositáři - field_root_directory: Kořenový adresář - field_cvs_module: Modul - field_cvsroot: CVSROOT - text_mercurial_repository_note: Lokální repositář (např. /hgrepo, c:\hgrepo) - text_scm_command: Příkaz - text_scm_command_version: Verze - label_git_report_last_commit: Reportovat poslední commit pro soubory a adresáře - text_scm_config: Můžete si nastavit vaše SCM příkazy v config/configuration.yml. Restartujte, prosím, aplikaci po jejich úpravě. - text_scm_command_not_available: SCM příkaz není k dispozici. Zkontrolujte, prosím, nastavení v panelu Administrace. - notice_issue_successful_create: Úkol %{id} byl vytvořen. - label_between: mezi - setting_issue_group_assignment: Povolit přiřazení úkolu skupině - label_diff: rozdíl - text_git_repository_note: Repositář je "bare and local" (např. /gitrepo, c:\gitrepo) - description_query_sort_criteria_direction: Směr třídění - description_project_scope: Rozsah vyhledávání - description_filter: Filtr - description_user_mail_notification: Nastavení emailových notifikací - description_message_content: Obsah zprávy - description_available_columns: Dostupné sloupce - description_issue_category_reassign: Zvolte kategorii úkolu - description_search: Vyhledávací pole - description_notes: Poznámky - description_choose_project: Projekty - description_query_sort_criteria_attribute: Třídící atribut - description_wiki_subpages_reassign: Zvolte novou rodičovskou stránku - description_selected_columns: Vybraný sloupec - label_parent_revision: Rodič - label_child_revision: Potomek - error_scm_annotate_big_text_file: Vstup nemůže být komentován, protože překračuje povolenou velikost textového souboru - setting_default_issue_start_date_to_creation_date: Použij aktuální datum jako počáteční datum pro nové úkoly - button_edit_section: Uprav tuto část - setting_repositories_encodings: Kódování příloh a repositářů - description_all_columns: Všechny sloupce - button_export: Export - label_export_options: "nastavení exportu %{export_format}" - error_attachment_too_big: Soubor nemůže být nahrán, protože jeho velikost je větší než maximální (%{max_size}) - notice_failed_to_save_time_entries: "Chyba při ukládání %{count} časov(ých/ého) záznam(ů) z %{total} vybraného: %{ids}." - label_x_issues: - zero: 0 úkol - one: 1 úkol - other: "%{count} úkolů" - label_repository_new: Nový repositář - field_repository_is_default: Hlavní repositář - label_copy_attachments: Kopírovat přílohy - label_item_position: "%{position}/%{count}" - label_completed_versions: Dokončené verze - text_project_identifier_info: Jsou povolena pouze malá písmena (a-z), číslice, pomlčky a podtržítka.
    Po uložení již nelze identifikátor měnit. - field_multiple: Více hodnot - setting_commit_cross_project_ref: Povolit reference a opravy úkolů ze všech ostatních projektů - text_issue_conflict_resolution_add_notes: Přidat moje poznámky a zahodit ostatní změny - text_issue_conflict_resolution_overwrite: Přesto přijmout moje úpravy (předchozí poznámky budou zachovány, ale některé změny mohou být přepsány) - notice_issue_update_conflict: Během vašich úprav byl úkol aktualizován jiným uživatelem. - text_issue_conflict_resolution_cancel: Zahoď všechny moje změny a znovu zobraz %{link} - permission_manage_related_issues: Spravuj související úkoly - field_auth_source_ldap_filter: LDAP filtr - label_search_for_watchers: Hledej sledující pro přidání - notice_account_deleted: Váš účet byl trvale smazán. - setting_unsubscribe: Povolit uživatelům smazání jejich vlastního účtu - button_delete_my_account: Smazat můj účet - text_account_destroy_confirmation: |- - Skutečně chcete pokračovat? - Váš účet bude nenávratně smazán. - error_session_expired: Vaše sezení vypršelo. Znovu se přihlaste, prosím. - text_session_expiration_settings: "Varování: změnou tohoto nastavení mohou vypršet aktuální sezení včetně toho vašeho." - setting_session_lifetime: Maximální čas sezení - setting_session_timeout: Vypršení sezení bez aktivity - label_session_expiration: Vypršení sezení - permission_close_project: Zavřít / Otevřít projekt - button_close: Zavřít - button_reopen: Znovu otevřít - project_status_active: aktivní - project_status_closed: zavřený - project_status_archived: archivovaný - text_project_closed: Tento projekt je uzevřený a je pouze pro čtení. - notice_user_successful_create: Uživatel %{id} vytvořen. - field_core_fields: Standardní pole - field_timeout: Vypršení (v sekundách) - setting_thumbnails_enabled: Zobrazit náhled přílohy - setting_thumbnails_size: Velikost náhledu (v pixelech) - label_status_transitions: Změna stavu - label_fields_permissions: Práva k polím - label_readonly: Pouze pro čtení - label_required: Vyžadováno - text_repository_identifier_info: Jsou povoleny pouze malá písmena (a-z), číslice, pomlčky a podtržítka.
    Po uložení již nelze identifikátor změnit. - field_board_parent: Rodičovské fórum - label_attribute_of_project: "%{name} projektu" - label_attribute_of_author: "%{name} autora" - label_attribute_of_assigned_to: "%{name} přiřazené(ho)" - label_attribute_of_fixed_version: Cílová verze %{name} - label_copy_subtasks: Kopírovat dílčí úkoly - label_copied_to: zkopírováno do - label_copied_from: zkopírováno z - label_any_issues_in_project: jakékoli úkoly v projektu - label_any_issues_not_in_project: jakékoli úkoly mimo projekt - field_private_notes: Soukromé poznámky - permission_view_private_notes: Zobrazit soukromé poznámky - permission_set_notes_private: Nastavit poznámky jako soukromé - label_no_issues_in_project: žádné úkoly v projektu - label_any: vše - label_last_n_weeks: poslední %{count} týdny - setting_cross_project_subtasks: Povolit dílčí úkoly napříč projekty - label_cross_project_descendants: S podprojekty - label_cross_project_tree: Se stromem projektu - label_cross_project_hierarchy: S hierarchií projektu - label_cross_project_system: Se všemi projekty - button_hide: Skrýt - setting_non_working_week_days: Dny pracovního volna/klidu - label_in_the_next_days: v přístích - label_in_the_past_days: v minulých - label_attribute_of_user: "%{name} uživatele" - text_turning_multiple_off: Jestliže zakážete více hodnot, - hodnoty budou smazány za účelem rezervace pouze jediné hodnoty na položku. - label_attribute_of_issue: "%{name} úkolu" - permission_add_documents: Přidat dokument - permission_edit_documents: Upravit dokumenty - permission_delete_documents: Smazet dokumenty - label_gantt_progress_line: Vývojová čára - setting_jsonp_enabled: Povolit podporu JSONP - field_inherit_members: Zdědit členy - field_closed_on: Uzavřeno - field_generate_password: Generovat heslo - setting_default_projects_tracker_ids: Výchozí fronta pro nové projekty - label_total_time: Celkem - notice_account_not_activated_yet: Neaktivovali jste si dosud Váš účet. - Pro opětovné zaslání aktivačního emailu klikněte na tento odkaz, prosím. - notice_account_locked: Váš účet je uzamčen. - label_hidden: Skrytý - label_visibility_private: pouze pro mě - label_visibility_roles: pouze pro tyto role - label_visibility_public: pro všechny uživatele - field_must_change_passwd: Musí změnit heslo při příštím přihlášení - notice_new_password_must_be_different: Nové heslo se musí lišit od stávajícího - setting_mail_handler_excluded_filenames: Vyřadit přílohy podle jména - text_convert_available: ImageMagick convert k dispozici (volitelné) - label_link: Odkaz - label_only: jenom - label_drop_down_list: rozbalovací seznam - label_checkboxes: zaškrtávátka - label_link_values_to: Propojit hodnoty s URL - setting_force_default_language_for_anonymous: Vynutit výchozí jazyk pro anonymní - uživatele - setting_force_default_language_for_loggedin: Vynutit výchozí jazyk pro přihlášené - uživatele - label_custom_field_select_type: Vybrat typ objektu, ke kterému bude přiřazeno uživatelské pole - label_issue_assigned_to_updated: Přiřazený uživatel aktualizován - label_check_for_updates: Zkontroluj aktualizace - label_latest_compatible_version: Poslední kompatibilní verze - label_unknown_plugin: Nezámý plugin - label_radio_buttons: radio tlačítka - label_group_anonymous: Anonymní uživatelé - label_group_non_member: Nečleni - label_add_projects: Přidat projekty - field_default_status: Výchozí stav - text_subversion_repository_note: 'Např.: file:///, http://, https://, svn://, svn+[tunnelscheme]://' - field_users_visibility: Viditelnost uživatelů - label_users_visibility_all: Všichni aktivní uživatelé - label_users_visibility_members_of_visible_projects: Členové viditelných projektů - label_edit_attachments: Editovat přiložené soubory - setting_link_copied_issue: Vytvořit odkazy na kopírované úkol - label_link_copied_issue: Vytvořit odkaz na kopírovaný úkol - label_ask: Zeptat se - label_search_attachments_yes: Vyhledat názvy a popisy souborů - label_search_attachments_no: Nevyhledávat soubory - label_search_attachments_only: Vyhledávat pouze soubory - label_search_open_issues_only: Pouze otevřené úkoly - field_address: Email - setting_max_additional_emails: Maximální počet dalších emailových adres - label_email_address_plural: Emaily - label_email_address_add: Přidat emailovou adresu - label_enable_notifications: Povolit notifikace - label_disable_notifications: Zakázat notifikace - setting_search_results_per_page: Vyhledaných výsledků na stránku - label_blank_value: prázdný - permission_copy_issues: Kopírovat úkoly - error_password_expired: Platnost vašeho hesla vypršela a administrátor vás žádá o jeho změnu. - field_time_entries_visibility: Viditelnost časových záznamů - setting_password_max_age: Změna hesla je vyžadována po - label_parent_task_attributes: Atributy rodičovského úkolu - label_parent_task_attributes_derived: Vypočteno z dílčích úkolů - label_parent_task_attributes_independent: Nezávisle na dílčích úkolech - label_time_entries_visibility_all: Všechny zaznamenané časy - label_time_entries_visibility_own: Zaznamenané časy vytvořené uživatelem - label_member_management: Správa členů - label_member_management_all_roles: Všechny role - label_member_management_selected_roles_only: Pouze tyto role - label_password_required: Pro pokračování potvrďte vaše heslo - label_total_spent_time: Celkem strávený čas - notice_import_finished: "%{count} položek bylo naimportováno" - notice_import_finished_with_errors: "%{count} z %{total} položek nemohlo být naimportováno" - error_invalid_file_encoding: Soubor není platným souborem s kódováním %{encoding} - error_invalid_csv_file_or_settings: Soubor není CSV soubor nebo neodpovídá - níže uvedenému nastavení - error_can_not_read_import_file: Chyba při čtení souboru pro import - permission_import_issues: Import úkolů - label_import_issues: Import úkolů - label_select_file_to_import: Vyberte soubor pro import - label_fields_separator: Oddělovač pole - label_fields_wrapper: Oddělovač textu - label_encoding: Kódování - label_comma_char: Čárka - label_semi_colon_char: Středník - label_quote_char: Uvozovky - label_double_quote_char: Dvojté uvozovky - label_fields_mapping: Mapování polí - label_file_content_preview: Náhled obsahu souboru - label_create_missing_values: Vytvořit chybějící hodnoty - button_import: Import - field_total_estimated_hours: Celkový odhadovaný čas - label_api: API - label_total_plural: Celkem - label_assigned_issues: Přiřazené úkoly - label_field_format_enumeration: Seznam klíčů/hodnot - label_f_hour_short: '%{value}hod' - field_default_version: Výchozí verze - error_attachment_extension_not_allowed: Přípona přílohy %{extension} není povolena - setting_attachment_extensions_allowed: Povolené přípony - setting_attachment_extensions_denied: Nepovolené přípony - label_any_open_issues: otevřené úkoly - label_no_open_issues: bez otevřených úkolů - label_default_values_for_new_users: Výchozí hodnoty pro nové uživatele - error_ldap_bind_credentials: Neplatný účet/heslo LDAP - setting_sys_api_key: API klíč - setting_lost_password: Zapomenuté heslo - mail_subject_security_notification: Bezpečnostní upozornění - mail_body_security_notification_change: "%{field} bylo změněno." - mail_body_security_notification_change_to: "%{field} bylo změněno na %{value}." - mail_body_security_notification_add: "%{field} %{value} bylo přidáno." - mail_body_security_notification_remove: "%{field} %{value} bylo odebráno." - mail_body_security_notification_notify_enabled: Email %{value} nyní dostává notifikace. - mail_body_security_notification_notify_disabled: Email %{value} už nedostává notifikace. - mail_body_settings_updated: "Následující nastavení byla změněna:" - field_remote_ip: IP adresa - label_wiki_page_new: Nová wiki stránka - label_relations: Relace - button_filter: Filtr - mail_body_password_updated: Vaše heslo bylo změněno. - label_no_preview: Náhled není k dispozici - error_no_tracker_allowed_for_new_issue_in_project: Projekt neobsahuje žádnou frontu, pro kterou lze vytvořit úkol - label_tracker_all: Všechny fronty - label_new_project_issue_tab_enabled: Zobraz záložku "Nový úkol" - setting_new_item_menu_tab: Záložka v menu projektu pro vytváření nových objektů - label_new_object_tab_enabled: Zobrazit rozbalovací menu "+" - error_no_projects_with_tracker_allowed_for_new_issue: Neexistují projekty s frontou, pro kterou lze vytvořit úkol - field_textarea_font: Písmo použité pro textová pole - label_font_default: Výchozí písmo - label_font_monospace: Neproporcionální písmo - label_font_proportional: Proporciální písmo - setting_timespan_format: Formát časového intervalu - label_table_of_contents: Obsah - setting_commit_logs_formatting: Použij textové formátování pro popisky comitů - setting_mail_handler_enable_regex: Povol regulární výrazy - error_move_of_child_not_possible: "Dílčí úkol %{child} nemůže být přesunut do nového projektu: %{errors}" - error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted: Strávený čas nemůže - být přiřazen k úkolu, který se bude mazat - setting_timelog_required_fields: Požadovaná pole pro zapisování času - label_attribute_of_object: "%{object_name} %{name}" - label_user_mail_option_only_assigned: Pouze pro věci, které sleduji nebo jsem na ně přiřazený - label_user_mail_option_only_owner: Pouze pro věci, které sleduji nebo jsem jejich vlastníkem - warning_fields_cleared_on_bulk_edit: Změny způsobí automatické smazání - hodnot z jednoho nebo více polí vybraných objektů - field_updated_by: Aktualizoval - field_last_updated_by: Naposledy změnil - field_full_width_layout: Celá šířka schematu - label_last_notes: Poslední poznámky - field_digest: Kontrolní součet - field_default_assigned_to: Výchozí přiřazený uživatel - setting_show_custom_fields_on_registration: Zobraz uživatelská pole při registraci - permission_view_news: Zobraz novinky - label_no_preview_alternative_html: "Náhled není k dispozici. Soubor: %{link}." - label_no_preview_download: Stažení - setting_close_duplicate_issues: Automaticky uzavři duplicitní úkoly - error_exceeds_maximum_hours_per_day: Není možné zapsat více než %{max_hours}hod v ten - samý den (%{logged_hours}hod bylo již vykázáno) - setting_time_entry_list_defaults: Výchozí hodnoty pro zápis stráveného času - setting_timelog_accept_0_hours: Akceptovat zápis času 0hod - setting_timelog_max_hours_per_day: Maximum hodin, které mohou být vykázány jedním uživatelem za jeden den - label_x_revisions: "%{count} revizí" - error_can_not_delete_auth_source: Tento autentifikační mód se používá a nemůže být smazán. - button_actions: Akce - mail_body_lost_password_validity: Mějte na paměti, že pomocí tohoto odkazu můžete změnit heslo pouze jednou. - text_login_required_html: Pokud není vyžadována autentifikace, veřejné projekty a jejich obsah jsou - veřejně přístupné na webu. Můžete upravit příslušná práva. - label_login_required_yes: 'Ano' - label_login_required_no: Ne, umožnit anonymní přístup k veřejným projektům - text_project_is_public_non_member: Veřejné projekty a jejich obsah je přístupný pro všechny přihlášené uživatele. - text_project_is_public_anonymous: Veřejné projekty a jejich obsah je otevřeně přístupný na webu. - label_version_and_files: Verze (%{count}) a soubory - label_ldap: LDAP - label_ldaps_verify_none: LDAPS (bez ověření certifikátu) - label_ldaps_verify_peer: LDAPS - label_ldaps_warning: Je doporučeno použít šifrované LDAPS připojení s certifikátem pro zabránění - jakékoliv manipulace během autentifikačního procesu. - label_nothing_to_preview: Žádný náhled - error_token_expired: Tento odkaz na obnovu hesla vypršel, prosím zkuste to znovu. - error_spent_on_future_date: Nelze zapsat čas do budoucna - setting_timelog_accept_future_dates: Akceptovat zápis času do budoucna - label_delete_link_to_subtask: Odstranit souvislost - error_not_allowed_to_log_time_for_other_users: Nejste oprávněni k zápisu času - ostatních uživatelů - permission_log_time_for_other_users: Záznam stráveného času ostatních uživatelů - label_tomorrow: zítra - label_next_week: příští týden - label_next_month: příští měsíc - text_role_no_workflow: Tato role nemá definován průběh práce - text_status_no_workflow: Žádná fronta nepoužívá tento stav v průběhu práce - setting_mail_handler_preferred_body_part: Preferovaná část (HTML) emailu - setting_show_status_changes_in_mail_subject: Zobrazit změny stavů v předmetu mailové - notifikace úkolů - label_inherited_from_parent_project: Poděděné z rodičovského projektu - label_inherited_from_group: Poděděné ze skupiny %{name} - label_trackers_description: Popis front - label_open_trackers_description: Zobrazit popis všech trackerů - label_preferred_body_part_text: Text - label_preferred_body_part_html: HTML (experimentální) - field_parent_issue_subject: Předmět rodičovského úkolu - permission_edit_own_issues: Upravování vlastních úkolů - text_select_apply_tracker: Použít frontu - label_updated_issues: Aktualizované úkoly - text_avatar_server_config_html: Aktuální avatar server je %{url}. - Nastavení lze změnit v config/configuration.yml. - setting_gantt_months_limit: Maximální počet měsíců zobrazených v ganttově diagramu - permission_import_time_entries: Import stráveného času - label_import_notifications: Odeslat emailové notifikace během importu - text_gs_available: ImageMagick PDF podpora k dispozici (volitelné) - field_recently_used_projects: Počet nedávno použitých projektů v rychlém výběru - label_optgroup_bookmarks: Záložky - label_optgroup_others: Jiné projekty - label_optgroup_recents: Nedávno použité - button_project_bookmark: Přidat záložku - button_project_bookmark_delete: Odstranit záložku - field_history_default_tab: Výchozí karta historie úkolů - label_issue_history_properties: Změny vlastností - label_issue_history_notes: Poznámky - label_last_tab_visited: Poslední zobrazená karta - field_unique_id: Unikátní ID - text_no_subject: bez předmětu - setting_password_required_char_classes: Vyžadované třídy znaků pro hesla - label_password_char_class_uppercase: velká písmena - label_password_char_class_lowercase: malá písmena - label_password_char_class_digits: číslice - label_password_char_class_special_chars: speciální znaky - text_characters_must_contain: Musí obsahovat %{character_classes}. - label_starts_with: začíná - label_ends_with: končí - label_issue_fixed_version_updated: Cílová verze aktualizována - setting_project_list_defaults: Výchozí nastavení seznamu projektů - label_display_type: Zobrazit výsledky jako - label_display_type_list: Seznam - label_display_type_board: Fórum - label_my_bookmarks: Moje záložky - label_import_time_entries: Import stráveného času diff --git a/config/locales/da.yml b/config/locales/da.yml deleted file mode 100644 index c1683b2..0000000 --- a/config/locales/da.yml +++ /dev/null @@ -1,1332 +0,0 @@ -# Danish translation file for standard Ruby on Rails internationalization -# by Lars Hoeg (http://www.lenio.dk/) -# updated and upgraded to 0.9 by Morten Krogh Andersen (http://www.krogh.net) - -da: - direction: ltr - date: - formats: - default: "%d.%m.%Y" - short: "%e. %b %Y" - long: "%e. %B %Y" - - day_names: [søndag, mandag, tirsdag, onsdag, torsdag, fredag, lørdag] - abbr_day_names: [sø, ma, ti, 'on', to, fr, lø] - month_names: [~, januar, februar, marts, april, maj, juni, juli, august, september, oktober, november, december] - abbr_month_names: [~, jan, feb, mar, apr, maj, jun, jul, aug, sep, okt, nov, dec] - order: - - :day - - :month - - :year - - time: - formats: - default: "%e. %B %Y, %H:%M" - time: "%H:%M" - short: "%e. %b %Y, %H:%M" - long: "%A, %e. %B %Y, %H:%M" - am: "" - pm: "" - - support: - array: - sentence_connector: "og" - skip_last_comma: true - - datetime: - distance_in_words: - half_a_minute: "et halvt minut" - less_than_x_seconds: - one: "mindre end et sekund" - other: "mindre end %{count} sekunder" - x_seconds: - one: "et sekund" - other: "%{count} sekunder" - less_than_x_minutes: - one: "mindre end et minut" - other: "mindre end %{count} minutter" - x_minutes: - one: "et minut" - other: "%{count} minutter" - about_x_hours: - one: "cirka en time" - other: "cirka %{count} timer" - x_hours: - one: "1 time" - other: "%{count} timer" - x_days: - one: "en dag" - other: "%{count} dage" - about_x_months: - one: "cirka en måned" - other: "cirka %{count} måneder" - x_months: - one: "en måned" - other: "%{count} måneder" - about_x_years: - one: "cirka et år" - other: "cirka %{count} år" - over_x_years: - one: "mere end et år" - other: "mere end %{count} år" - almost_x_years: - one: "næsten 1 år" - other: "næsten %{count} år" - - number: - format: - separator: "," - delimiter: "." - precision: 3 - currency: - format: - format: "%u %n" - unit: "DKK" - separator: "," - delimiter: "." - precision: 2 - precision: - format: - # separator: - delimiter: "" - # precision: - human: - format: - # separator: - delimiter: "" - precision: 3 - storage_units: - format: "%n %u" - units: - byte: - one: "Byte" - other: "Bytes" - kb: "KB" - mb: "MB" - gb: "GB" - tb: "TB" - percentage: - format: - # separator: - delimiter: "" - # precision: - - activerecord: - errors: - template: - header: - one: "1 error prohibited this %{model} from being saved" - other: "%{count} errors prohibited this %{model} from being saved" - messages: - inclusion: "er ikke i listen" - exclusion: "er reserveret" - invalid: "er ikke gyldig" - confirmation: "stemmer ikke overens" - accepted: "skal accepteres" - empty: "må ikke udelades" - blank: "skal udfyldes" - too_long: "er for lang (højst %{count} tegn)" - too_short: "er for kort (mindst %{count} tegn)" - wrong_length: "har forkert længde (skulle være %{count} tegn)" - taken: "er allerede anvendt" - not_a_number: "er ikke et tal" - greater_than: "skal være større end %{count}" - greater_than_or_equal_to: "skal være større end eller lig med %{count}" - equal_to: "skal være lig med %{count}" - less_than: "skal være mindre end %{count}" - less_than_or_equal_to: "skal være mindre end eller lig med %{count}" - odd: "skal være ulige" - even: "skal være lige" - greater_than_start_date: "skal være senere end startdatoen" - not_same_project: "hører ikke til samme projekt" - circular_dependency: "Denne relation vil skabe et afhængighedsforhold" - cant_link_an_issue_with_a_descendant: "En sag kan ikke relateres til en af dens underopgaver" - earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" - not_a_regexp: "is not a valid regular expression" - open_issue_with_closed_parent: "An open issue cannot be attached to a closed parent task" - must_contain_uppercase: "must contain uppercase letters (A-Z)" - must_contain_lowercase: "must contain lowercase letters (a-z)" - must_contain_digits: "must contain digits (0-9)" - must_contain_special_chars: "must contain special characters (!, $, %, ...)" - - template: - header: - one: "En fejl forhindrede %{model} i at blive gemt" - other: "%{count} fejl forhindrede denne %{model} i at blive gemt" - body: "Der var problemer med følgende felter:" - - actionview_instancetag_blank_option: Vælg venligst - - general_text_No: 'Nej' - general_text_Yes: 'Ja' - general_text_no: 'nej' - general_text_yes: 'ja' - general_lang_name: 'Danish (Dansk)' - general_csv_separator: ',' - general_csv_encoding: ISO-8859-1 - general_pdf_fontname: freesans - general_pdf_monospaced_fontname: freemono - general_first_day_of_week: '1' - - notice_account_updated: Kontoen er opdateret. - notice_account_invalid_credentials: Ugyldig bruger og/eller kodeord - notice_account_password_updated: Kodeordet er opdateret. - notice_account_wrong_password: Forkert kodeord - notice_account_register_done: Kontoen er oprettet. For at aktivere kontoen skal du klikke på linket i den tilsendte email. - notice_account_unknown_email: Ukendt bruger. - notice_can_t_change_password: Denne konto benytter en ekstern sikkerhedsgodkendelse. Det er ikke muligt at skifte kodeord. - notice_account_lost_email_sent: En email med instruktioner til at vælge et nyt kodeord er afsendt til dig. - notice_account_activated: Din konto er aktiveret. Du kan nu logge ind. - notice_successful_create: Succesfuld oprettelse. - notice_successful_update: Succesfuld opdatering. - notice_successful_delete: Succesfuld sletning. - notice_successful_connection: Succesfuld forbindelse. - notice_file_not_found: Siden du forsøger at tilgå eksisterer ikke eller er blevet fjernet. - notice_locking_conflict: Data er opdateret af en anden bruger. - notice_not_authorized: Du har ikke adgang til denne side. - notice_email_sent: "En email er sendt til %{value}" - notice_email_error: "En fejl opstod under afsendelse af email (%{value})" - notice_feeds_access_key_reseted: Din adgangsnøgle til Atom er nulstillet. - notice_failed_to_save_issues: "Det mislykkedes at gemme %{count} sage(r) på %{total} valgt: %{ids}." - notice_no_issue_selected: "Ingen sag er valgt! Vælg venligst hvilke emner du vil rette." - notice_account_pending: "Din konto er oprettet, og afventer administrators godkendelse." - notice_default_data_loaded: Standardopsætningen er indlæst. - - error_can_t_load_default_data: "Standardopsætning kunne ikke indlæses: %{value}" - error_scm_not_found: "Adgang nægtet og/eller revision blev ikke fundet i det valgte repository." - error_scm_command_failed: "En fejl opstod under forbindelsen til det valgte repository: %{value}" - - mail_subject_lost_password: "Dit %{value} kodeord" - mail_body_lost_password: 'Klik på dette link for at ændre dit kodeord:' - mail_subject_register: "%{value} kontoaktivering" - mail_body_register: 'Klik på dette link for at aktivere din konto:' - mail_body_account_information_external: "Du kan bruge din %{value} konto til at logge ind." - mail_body_account_information: Din kontoinformation - mail_subject_account_activation_request: "%{value} kontoaktivering" - mail_body_account_activation_request: "En ny bruger (%{value}) er registreret. Godkend venligst kontoen:" - - - field_name: Navn - field_description: Beskrivelse - field_summary: Sammenfatning - field_is_required: Skal udfyldes - field_firstname: Fornavn - field_lastname: Efternavn - field_mail: Email - field_filename: Fil - field_filesize: Størrelse - field_downloads: Downloads - field_author: Forfatter - field_created_on: Oprettet - field_updated_on: Opdateret - field_field_format: Format - field_is_for_all: For alle projekter - field_possible_values: Mulige værdier - field_regexp: Regulære udtryk - field_min_length: Mindste længde - field_max_length: Største længde - field_value: Værdi - field_category: Kategori - field_title: Titel - field_project: Projekt - field_issue: Sag - field_status: Status - field_notes: Noter - field_is_closed: Sagen er lukket - field_is_default: Standardværdi - field_tracker: Type - field_subject: Emne - field_due_date: Deadline - field_assigned_to: Tildelt til - field_priority: Prioritet - field_fixed_version: Udgave - field_user: Bruger - field_role: Rolle - field_homepage: Hjemmeside - field_is_public: Offentlig - field_parent: Underprojekt af - field_is_in_roadmap: Sager vist i roadmap - field_login: Login - field_mail_notification: Email-påmindelser - field_admin: Administrator - field_last_login_on: Sidste forbindelse - field_language: Sprog - field_effective_date: Dato - field_password: Kodeord - field_new_password: Nyt kodeord - field_password_confirmation: Bekræft - field_version: Version - field_type: Type - field_host: Vært - field_port: Port - field_account: Kode - field_base_dn: Base DN - field_attr_login: Login attribut - field_attr_firstname: Fornavn attribut - field_attr_lastname: Efternavn attribut - field_attr_mail: Email attribut - field_onthefly: løbende brugeroprettelse - field_start_date: Start dato - field_done_ratio: "% færdig" - field_auth_source: Sikkerhedsmetode - field_hide_mail: Skjul min email - field_comments: Kommentar - field_url: URL - field_start_page: Startside - field_subproject: Underprojekt - field_hours: Timer - field_activity: Aktivitet - field_spent_on: Dato - field_identifier: Identifikator - field_is_filter: Brugt som et filter - field_issue_to: Beslægtede sag - field_delay: Udsættelse - field_assignable: Sager kan tildeles denne rolle - field_redirect_existing_links: Videresend eksisterende links - field_estimated_hours: Anslået tid - field_column_names: Kolonner - field_time_zone: Tidszone - field_searchable: Søgbar - field_default_value: Standardværdi - - setting_app_title: Applikationstitel - setting_welcome_text: Velkomsttekst - setting_default_language: Standardsporg - setting_login_required: Sikkerhed påkrævet - setting_self_registration: Brugeroprettelse - setting_attachment_max_size: Vedhæftede filers max størrelse - setting_issues_export_limit: Sagseksporteringsbegrænsning - setting_mail_from: Afsender-email - setting_bcc_recipients: Skjult modtager (bcc) - setting_host_name: Værtsnavn - setting_text_formatting: Tekstformatering - setting_wiki_compression: Komprimering af wiki-historik - setting_feeds_limit: Feed indholdsbegrænsning - setting_autofetch_changesets: Hent automatisk commits - setting_sys_api_enabled: Aktiver webservice for automatisk administration af repository - setting_commit_ref_keywords: Referencenøgleord - setting_commit_fix_keywords: Afslutningsnøgleord - setting_autologin: Automatisk login - setting_date_format: Datoformat - setting_time_format: Tidsformat - setting_cross_project_issue_relations: Tillad sagsrelationer på tværs af projekter - setting_issue_list_default_columns: Standardkolonner på sagslisten - setting_emails_footer: Email-fodnote - setting_protocol: Protokol - setting_user_format: Brugervisningsformat - - project_module_issue_tracking: Sagssøgning - project_module_time_tracking: Tidsstyring - project_module_news: Nyheder - project_module_documents: Dokumenter - project_module_files: Filer - project_module_wiki: Wiki - project_module_repository: Repository - project_module_boards: Fora - - label_user: Bruger - label_user_plural: Brugere - label_user_new: Ny bruger - label_project: Projekt - label_project_new: Nyt projekt - label_project_plural: Projekter - label_x_projects: - zero: Ingen projekter - one: 1 projekt - other: "%{count} projekter" - label_project_all: Alle projekter - label_project_latest: Seneste projekter - label_issue: Sag - label_issue_new: Opret sag - label_issue_plural: Sager - label_issue_view_all: Vis alle sager - label_issues_by: "Sager fra %{value}" - label_issue_added: Sagen er oprettet - label_issue_updated: Sagen er opdateret - label_document: Dokument - label_document_new: Nyt dokument - label_document_plural: Dokumenter - label_document_added: Dokument tilføjet - label_role: Rolle - label_role_plural: Roller - label_role_new: Ny rolle - label_role_and_permissions: Roller og rettigheder - label_member: Medlem - label_member_new: Nyt medlem - label_member_plural: Medlemmer - label_tracker: Type - label_tracker_plural: Typer - label_tracker_new: Ny type - label_workflow: Arbejdsgang - label_issue_status: Sagsstatus - label_issue_status_plural: Sagsstatusser - label_issue_status_new: Ny status - label_issue_category: Sagskategori - label_issue_category_plural: Sagskategorier - label_issue_category_new: Ny kategori - label_custom_field: Brugerdefineret felt - label_custom_field_plural: Brugerdefinerede felter - label_custom_field_new: Nyt brugerdefineret felt - label_enumerations: Værdier - label_enumeration_new: Ny værdi - label_information: Information - label_information_plural: Information - label_register: Registrér - label_password_lost: Glemt kodeord - label_home: Forside - label_my_page: Min side - label_my_account: Min konto - label_my_projects: Mine projekter - label_administration: Administration - label_login: Log ind - label_logout: Log ud - label_help: Hjælp - label_reported_issues: Rapporterede sager - label_assigned_to_me_issues: Sager tildelt til mig - label_last_login: Sidste logintidspunkt - label_registered_on: Registreret den - label_activity: Aktivitet - label_new: Ny - label_logged_as: Registreret som - label_environment: Miljø - label_authentication: Sikkerhed - label_auth_source: Sikkerhedsmetode - label_auth_source_new: Ny sikkerhedsmetode - label_auth_source_plural: Sikkerhedsmetoder - label_subproject_plural: Underprojekter - label_min_max_length: Min - Max længde - label_list: Liste - label_date: Dato - label_integer: Heltal - label_float: Kommatal - label_boolean: Sand/falsk - label_string: Tekst - label_text: Lang tekst - label_attribute: Attribut - label_attribute_plural: Attributter - label_no_data: Ingen data at vise - label_change_status: Ændringsstatus - label_history: Historik - label_attachment: Fil - label_attachment_new: Ny fil - label_attachment_delete: Slet fil - label_attachment_plural: Filer - label_file_added: Fil tilføjet - label_report: Rapport - label_report_plural: Rapporter - label_news: Nyheder - label_news_new: Tilføj nyheder - label_news_plural: Nyheder - label_news_latest: Seneste nyheder - label_news_view_all: Vis alle nyheder - label_news_added: Nyhed tilføjet - label_settings: Indstillinger - label_overview: Oversigt - label_version: Udgave - label_version_new: Ny udgave - label_version_plural: Udgaver - label_confirmation: Bekræftelser - label_export_to: Eksporter til - label_read: Læs... - label_public_projects: Offentlige projekter - label_open_issues: åben - label_open_issues_plural: åbne - label_closed_issues: lukket - label_closed_issues_plural: lukkede - label_x_open_issues_abbr: - zero: 0 åbne - one: 1 åben - other: "%{count} åbne" - label_x_closed_issues_abbr: - zero: 0 lukkede - one: 1 lukket - other: "%{count} lukkede" - label_total: Total - label_permissions: Rettigheder - label_current_status: Nuværende status - label_new_statuses_allowed: Ny status tilladt - label_all: alle - label_none: intet - label_nobody: ingen - label_next: Næste - label_previous: Forrige - label_used_by: Brugt af - label_details: Detaljer - label_add_note: Tilføj note - label_calendar: Kalender - label_months_from: måneder frem - label_gantt: Gantt - label_internal: Intern - label_last_changes: "sidste %{count} ændringer" - label_change_view_all: Vis alle ændringer - label_comment: Kommentar - label_comment_plural: Kommentarer - label_x_comments: - zero: ingen kommentarer - one: 1 kommentar - other: "%{count} kommentarer" - label_comment_add: Tilføj en kommentar - label_comment_added: Kommentaren er tilføjet - label_comment_delete: Slet kommentar - label_query: Brugerdefineret forespørgsel - label_query_plural: Brugerdefinerede forespørgsler - label_query_new: Ny forespørgsel - label_filter_add: Tilføj filter - label_filter_plural: Filtre - label_equals: er - label_not_equals: er ikke - label_in_less_than: er mindre end - label_in_more_than: er større end - label_in: indeholdt i - label_today: i dag - label_yesterday: i går - label_this_week: denne uge - label_last_week: sidste uge - label_last_n_days: "sidste %{count} dage" - label_this_month: denne måned - label_last_month: sidste måned - label_this_year: dette år - label_date_range: Dato interval - label_less_than_ago: mindre end dage siden - label_more_than_ago: mere end dage siden - label_ago: dage siden - label_contains: indeholder - label_not_contains: ikke indeholder - label_day_plural: dage - label_repository: Repository - label_repository_plural: Repositories - label_browse: Gennemse - label_revision: Revision - label_revision_plural: Revisioner - label_associated_revisions: Tilknyttede revisioner - label_added: tilføjet - label_modified: ændret - label_deleted: slettet - label_latest_revision: Seneste revision - label_latest_revision_plural: Seneste revisioner - label_view_revisions: Se revisioner - label_max_size: Maksimal størrelse - label_sort_highest: Flyt til toppen - label_sort_higher: Flyt op - label_sort_lower: Flyt ned - label_sort_lowest: Flyt til bunden - label_roadmap: Roadmap - label_roadmap_due_in: Deadline - label_roadmap_overdue: "%{value} forsinket" - label_roadmap_no_issues: Ingen sager i denne version - label_search: Søg - label_result_plural: Resultater - label_all_words: Alle ord - label_wiki: Wiki - label_wiki_edit: Wiki ændring - label_wiki_edit_plural: Wiki ændringer - label_wiki_page: Wiki side - label_wiki_page_plural: Wiki sider - label_index_by_title: Indhold efter titel - label_index_by_date: Indhold efter dato - label_current_version: Nuværende version - label_preview: Forhåndsvisning - label_feed_plural: Feeds - label_changes_details: Detaljer for alle ændringer - label_issue_tracking: Sagssøgning - label_spent_time: Anvendt tid - label_f_hour: "%{value} time" - label_f_hour_plural: "%{value} timer" - label_time_tracking: Tidsstyring - label_change_plural: Ændringer - label_statistics: Statistik - label_commits_per_month: Commits pr. måned - label_commits_per_author: Commits pr. bruger - label_view_diff: Vis forskelle - label_diff_inline: inline - label_diff_side_by_side: side om side - label_options: Formatering - label_copy_workflow_from: Kopier arbejdsgang fra - label_permissions_report: Godkendelsesrapport - label_watched_issues: Overvågede sager - label_related_issues: Relaterede sager - label_applied_status: Anvendte statusser - label_loading: Indlæser... - label_relation_new: Ny relation - label_relation_delete: Slet relation - label_relates_to: relaterer til - label_duplicates: duplikater - label_blocks: blokerer - label_blocked_by: blokeret af - label_precedes: kommer før - label_follows: følger - label_stay_logged_in: Forbliv indlogget - label_disabled: deaktiveret - label_show_completed_versions: Vis færdige versioner - label_me: mig - label_board: Forum - label_board_new: Nyt forum - label_board_plural: Fora - label_topic_plural: Emner - label_message_plural: Beskeder - label_message_last: Sidste besked - label_message_new: Ny besked - label_message_posted: Besked tilføjet - label_reply_plural: Besvarer - label_send_information: Send konto information til bruger - label_year: År - label_month: Måned - label_week: Uge - label_date_from: Fra - label_date_to: Til - label_language_based: Baseret på brugerens sprog - label_sort_by: "Sortér efter %{value}" - label_send_test_email: Send en test email - label_feeds_access_key_created_on: "Atom adgangsnøgle dannet for %{value} siden" - label_module_plural: Moduler - label_added_time_by: "Tilføjet af %{author} for %{age} siden" - label_updated_time: "Opdateret for %{value} siden" - label_jump_to_a_project: Skift til projekt... - label_file_plural: Filer - label_changeset_plural: Ændringer - label_default_columns: Standardkolonner - label_no_change_option: (Ingen ændringer) - label_bulk_edit_selected_issues: Masse-ret de valgte sager - label_theme: Tema - label_default: standard - label_search_titles_only: Søg kun i titler - label_user_mail_option_all: "For alle hændelser på mine projekter" - label_user_mail_option_selected: "For alle hændelser på de valgte projekter..." - label_user_mail_no_self_notified: "Jeg ønsker ikke besked om ændring foretaget af mig selv" - label_registration_activation_by_email: kontoaktivering på email - label_registration_manual_activation: manuel kontoaktivering - label_registration_automatic_activation: automatisk kontoaktivering - label_display_per_page: "Per side: %{value}" - label_age: Alder - label_change_properties: Ændre indstillinger - label_general: Generelt - label_scm: SCM - label_plugins: Plugins - label_ldap_authentication: LDAP-godkendelse - label_downloads_abbr: D/L - - button_login: Login - button_submit: Send - button_save: Gem - button_check_all: Vælg alt - button_uncheck_all: Fravælg alt - button_delete: Slet - button_create: Opret - button_test: Test - button_edit: Ret - button_add: Tilføj - button_change: Ændre - button_apply: Anvend - button_clear: Nulstil - button_lock: Lås - button_unlock: Lås op - button_download: Download - button_list: List - button_view: Vis - button_move: Flyt - button_back: Tilbage - button_cancel: Annullér - button_activate: Aktivér - button_sort: Sortér - button_log_time: Log tid - button_rollback: Tilbagefør til denne version - button_watch: Overvåg - button_unwatch: Stop overvågning - button_reply: Besvar - button_archive: Arkivér - button_unarchive: Fjern fra arkiv - button_reset: Nulstil - button_rename: Omdøb - button_change_password: Skift kodeord - button_copy: Kopiér - button_annotate: Annotér - button_update: Opdatér - button_configure: Konfigurér - - status_active: aktiv - status_registered: registreret - status_locked: låst - - text_select_mail_notifications: Vælg handlinger der skal sendes email besked for. - text_regexp_info: f.eks. ^[A-ZÆØÅ0-9]+$ - text_min_max_length_info: 0 betyder ingen begrænsninger - text_project_destroy_confirmation: Er du sikker på at du vil slette dette projekt og alle relaterede data? - text_workflow_edit: Vælg en rolle samt en type, for at redigere arbejdsgangen - text_are_you_sure: Er du sikker? - text_tip_issue_begin_day: opgaven begynder denne dag - text_tip_issue_end_day: opaven slutter denne dag - text_tip_issue_begin_end_day: opgaven begynder og slutter denne dag - text_caracters_maximum: "max %{count} karakterer." - text_caracters_minimum: "Skal være mindst %{count} karakterer lang." - text_length_between: "Længde skal være mellem %{min} og %{max} karakterer." - text_tracker_no_workflow: Ingen arbejdsgang defineret for denne type - text_unallowed_characters: Ikke-tilladte karakterer - text_comma_separated: Adskillige værdier tilladt (adskilt med komma). - text_issues_ref_in_commit_messages: Referer og løser sager i commit-beskeder - text_issue_added: "Sag %{id} er rapporteret af %{author}." - text_issue_updated: "Sag %{id} er blevet opdateret af %{author}." - text_wiki_destroy_confirmation: Er du sikker på at du vil slette denne wiki og dens indhold? - text_issue_category_destroy_question: "Nogle sager (%{count}) er tildelt denne kategori. Hvad ønsker du at gøre?" - text_issue_category_destroy_assignments: Slet tildelinger af kategori - text_issue_category_reassign_to: Tildel sager til denne kategori - text_user_mail_option: "For ikke-valgte projekter vil du kun modtage beskeder omhandlende ting du er involveret i eller overvåger (f.eks. sager du har indberettet eller ejer)." - text_no_configuration_data: "Roller, typer, sagsstatusser og arbejdsgange er endnu ikke konfigureret.\nDet er anbefalet at indlæse standardopsætningen. Du vil kunne ændre denne når den er indlæst." - text_load_default_configuration: Indlæs standardopsætningen - text_status_changed_by_changeset: "Anvendt i ændring %{value}." - text_issues_destroy_confirmation: 'Er du sikker på du ønsker at slette den/de valgte sag(er)?' - text_select_project_modules: 'Vælg moduler er skal være aktiveret for dette projekt:' - text_default_administrator_account_changed: Standardadministratorkonto ændret - text_file_repository_writable: Filarkiv er skrivbar - text_minimagick_available: MiniMagick tilgængelig (valgfri) - - default_role_manager: Leder - default_role_developer: Udvikler - default_role_reporter: Rapportør - default_tracker_bug: Fejl - default_tracker_feature: Funktion - default_tracker_support: Support - default_issue_status_new: Ny - default_issue_status_in_progress: Igangværende - default_issue_status_resolved: Løst - default_issue_status_feedback: Feedback - default_issue_status_closed: Lukket - default_issue_status_rejected: Afvist - default_doc_category_user: Brugerdokumentation - default_doc_category_tech: Teknisk dokumentation - default_priority_low: Lav - default_priority_normal: Normal - default_priority_high: Høj - default_priority_urgent: Akut - default_priority_immediate: Omgående - default_activity_design: Design - default_activity_development: Udvikling - - enumeration_issue_priorities: Sagsprioriteter - enumeration_doc_categories: Dokumentkategorier - enumeration_activities: Aktiviteter (tidsstyring) - - label_add_another_file: Tilføj endnu en fil - label_chronological_order: I kronologisk rækkefølge - setting_activity_days_default: Antal dage der vises under projektaktivitet - text_destroy_time_entries_question: "%{hours} timer er registreret på denne sag som du er ved at slette. Hvad vil du gøre?" - error_issue_not_found_in_project: 'Sagen blev ikke fundet eller tilhører ikke dette projekt' - text_assign_time_entries_to_project: Tildel raporterede timer til projektet - setting_display_subprojects_issues: Vis sager for underprojekter på hovedprojektet som standard - label_optional_description: Valgfri beskrivelse - text_destroy_time_entries: Slet registrerede timer - field_comments_sorting: Vis kommentar - text_reassign_time_entries: 'Tildel registrerede timer til denne sag igen' - label_reverse_chronological_order: I omvendt kronologisk rækkefølge - label_preferences: Præferencer - label_overall_activity: Overordnet aktivitet - setting_default_projects_public: Nye projekter er offentlige som standard - error_scm_annotate: "Filen findes ikke, eller kunne ikke annoteres." - text_subprojects_destroy_warning: "Dets underprojekter(er): %{value} vil også blive slettet." - permission_edit_issues: Redigér sager - setting_diff_max_lines_displayed: Højeste antal forskelle der vises - permission_edit_own_issue_notes: Redigér egne noter - setting_enabled_scm: Aktiveret SCM - button_quote: Citér - permission_view_files: Se filer - permission_add_issues: Tilføj sager - permission_edit_own_messages: Redigér egne beskeder - permission_delete_own_messages: Slet egne beskeder - permission_manage_public_queries: Administrér offentlig forespørgsler - permission_log_time: Registrér anvendt tid - label_renamed: omdøbt - label_incoming_emails: Indkommende emails - permission_view_changesets: Se ændringer - permission_manage_versions: Administrér versioner - permission_view_time_entries: Se anvendt tid - label_generate_key: Generér en nøglefil - permission_manage_categories: Administrér sagskategorier - permission_manage_wiki: Administrér wiki - setting_sequential_project_identifiers: Generér sekventielle projekt-identifikatorer - setting_plain_text_mail: Emails som almindelig tekst (ingen HTML) - field_parent_title: Siden over - text_email_delivery_not_configured: "Email-afsendelse er ikke indstillet og notifikationer er defor slået fra.\nKonfigurér din SMTP server i config/configuration.yml og genstart applikationen for at aktivere email-afsendelse." - permission_protect_wiki_pages: Beskyt wiki sider - permission_add_issue_watchers: Tilføj overvågere - warning_attachments_not_saved: "der var %{count} fil(er), som ikke kunne gemmes." - permission_comment_news: Kommentér nyheder - text_enumeration_category_reassign_to: 'Flyt dem til denne værdi:' - permission_select_project_modules: Vælg projektmoduler - permission_view_gantt: Se Gantt diagram - permission_delete_messages: Slet beskeder - permission_edit_wiki_pages: Redigér wiki sider - label_user_activity: "%{value}'s aktivitet" - permission_manage_issue_relations: Administrér sags-relationer - label_issue_watchers: Overvågere - permission_delete_wiki_pages: Slet wiki sider - notice_unable_delete_version: Kan ikke slette versionen. - permission_view_wiki_edits: Se wiki historik - field_editable: Redigérbar - label_duplicated_by: dubleret af - permission_manage_boards: Administrér fora - permission_delete_wiki_pages_attachments: Slet filer vedhæftet wiki sider - permission_view_messages: Se beskeder - text_enumeration_destroy_question: "%{count} objekter er tildelt denne værdi." - permission_manage_files: Administrér filer - permission_add_messages: Opret beskeder - permission_edit_issue_notes: Redigér noter - permission_manage_news: Administrér nyheder - text_plugin_assets_writable: Der er skriverettigheder til plugin assets folderen - label_display: Vis - label_and_its_subprojects: "%{value} og dets underprojekter" - permission_view_calendar: Se kalender - button_create_and_continue: Opret og fortsæt - setting_gravatar_enabled: Anvend Gravatar brugerikoner - label_updated_time_by: "Opdateret af %{author} for %{age} siden" - text_diff_truncated: '... Listen over forskelle er blevet afkortet da den overstiger den maksimale størrelse der kan vises.' - text_user_wrote: "%{value} skrev:" - text_user_wrote_in: "%{value} skrev (%{link}):" - setting_mail_handler_api_enabled: Aktiver webservice for indkomne emails - permission_delete_issues: Slet sager - permission_view_documents: Se dokumenter - permission_browse_repository: Gennemse repository - permission_manage_repository: Administrér repository - permission_manage_members: Administrér medlemmer - mail_subject_reminder: "%{count} sag(er) har deadline i de kommende dage (%{days})" - permission_add_issue_notes: Tilføj noter - permission_edit_messages: Redigér beskeder - permission_view_issue_watchers: Se liste over overvågere - permission_commit_access: Commit adgang - setting_mail_handler_api_key: API nøgle - label_example: Eksempel - permission_rename_wiki_pages: Omdøb wiki sider - text_custom_field_possible_values_info: 'En linje for hver værdi' - permission_view_wiki_pages: Se wiki - permission_edit_project: Redigér projekt - permission_save_queries: Gem forespørgsler - label_copied: kopieret - text_repository_usernames_mapping: "Vælg eller opdatér de Redmine brugere der svarer til de enkelte brugere fundet i repository loggen.\nBrugere med samme brugernavn eller email adresse i både Redmine og det valgte repository bliver automatisk koblet sammen." - permission_edit_time_entries: Redigér tidsregistreringer - general_csv_decimal_separator: ',' - permission_edit_own_time_entries: Redigér egne tidsregistreringer - setting_repository_log_display_limit: Højeste antal revisioner vist i fil-log - setting_file_max_size_displayed: Maksimale størrelse på tekstfiler vist inline - field_watcher: Overvåger - setting_openid: Tillad OpenID login og registrering - field_identity_url: OpenID URL - label_login_with_open_id_option: eller login med OpenID - setting_per_page_options: Enheder per side muligheder - mail_body_reminder: "%{count} sage(er) som er tildelt dig har deadline indenfor de næste %{days} dage:" - field_content: Indhold - label_descending: Aftagende - label_sort: Sortér - label_ascending: Tiltagende - label_date_from_to: Fra %{start} til %{end} - label_greater_or_equal: ">=" - label_less_or_equal: <= - text_wiki_page_destroy_question: Denne side har %{descendants} underside(r) og afledte. Hvad vil du gøre? - text_wiki_page_reassign_children: Flyt undersider til denne side - text_wiki_page_nullify_children: Behold undersider som rod-sider - text_wiki_page_destroy_children: Slet undersider ogalle deres afledte sider. - setting_password_min_length: Mindste længde på kodeord - field_group_by: Gruppér resultater efter - mail_subject_wiki_content_updated: "'%{id}' wikisiden er blevet opdateret" - label_wiki_content_added: Wiki side tilføjet - mail_subject_wiki_content_added: "'%{id}' wikisiden er blevet tilføjet" - mail_body_wiki_content_added: The '%{id}' wikiside er blevet tilføjet af %{author}. - label_wiki_content_updated: Wikiside opdateret - mail_body_wiki_content_updated: Wikisiden '%{id}' er blevet opdateret af %{author}. - permission_add_project: Opret projekt - setting_new_project_user_role_id: Denne rolle gives til en bruger, som ikke er administrator, og som opretter et projekt - label_view_all_revisions: Se alle revisioner - label_tag: Tag - label_branch: Branch - error_no_tracker_in_project: Der er ingen sagshåndtering for dette projekt. Kontrollér venligst projektindstillingerne. - error_no_default_issue_status: Der er ikke defineret en standardstatus. Kontrollér venligst indstillingerne (gå til "Administration -> Sagsstatusser"). - text_journal_changed: "%{label} ændret fra %{old} til %{new}" - text_journal_set_to: "%{label} sat til %{value}" - text_journal_deleted: "%{label} slettet (%{old})" - label_group_plural: Grupper - label_group: Grupper - label_group_new: Ny gruppe - label_time_entry_plural: Anvendt tid - text_journal_added: "%{label} %{value} tilføjet" - field_active: Aktiv - enumeration_system_activity: System Aktivitet - permission_delete_issue_watchers: Slet overvågere - version_status_closed: lukket - version_status_locked: låst - version_status_open: åben - error_can_not_reopen_issue_on_closed_version: En sag tildelt en lukket version kan ikke genåbnes - label_user_anonymous: Anonym - button_move_and_follow: Flyt og overvåg - setting_default_projects_modules: Standard moduler, aktiveret for nye projekter - setting_gravatar_default: Standard Gravatar billede - field_sharing: Delning - label_version_sharing_hierarchy: Med projekthierarki - label_version_sharing_system: Med alle projekter - label_version_sharing_descendants: Med underprojekter - label_version_sharing_tree: Med projekttræ - label_version_sharing_none: Ikke delt - error_can_not_archive_project: Dette projekt kan ikke arkiveres - button_copy_and_follow: Kopiér og overvåg - label_copy_source: Kilde - setting_issue_done_ratio: Beregn sagsløsning ratio - setting_issue_done_ratio_issue_status: Benyt sagsstatus - error_issue_done_ratios_not_updated: Sagsløsnings ratio, ikke opdateret. - error_workflow_copy_target: Vælg venligst måltracker og rolle(r) - setting_issue_done_ratio_issue_field: Benyt sagsfelt - label_copy_same_as_target: Samme som mål - label_copy_target: Mål - notice_issue_done_ratios_updated: Sagsløsningsratio opdateret. - error_workflow_copy_source: Vælg venligst en kildetracker eller rolle - label_update_issue_done_ratios: Opdater sagsløsningsratio - setting_start_of_week: Start kalendre på - permission_view_issues: Vis sager - label_display_used_statuses_only: Vis kun statusser der er benyttet af denne tracker - label_revision_id: Revision %{value} - label_api_access_key: API nøgle - label_api_access_key_created_on: API nøgle genereret %{value} siden - label_feeds_access_key: Atom nøgle - notice_api_access_key_reseted: Din API nøgle er nulstillet. - setting_rest_api_enabled: Aktiver REST web service - label_missing_api_access_key: Mangler en API nøgle - label_missing_feeds_access_key: Mangler en Atom nøgle - button_show: Vis - text_line_separated: Flere væredier tilladt (en linje for hver værdi). - setting_mail_handler_body_delimiters: Trunkér emails efter en af disse linjer - permission_add_subprojects: Lav underprojekter - label_subproject_new: Nyt underprojekt - text_own_membership_delete_confirmation: |- - Du er ved at fjerne en eller flere af dine rettigheder, og kan muligvis ikke redigere projektet bagefter. - Er du sikker på du ønsker at fortsætte? - label_close_versions: Luk færdige versioner - label_board_sticky: Klistret - label_board_locked: Låst - permission_export_wiki_pages: Eksporter wiki sider - setting_cache_formatted_text: Cache formatteret tekst - permission_manage_project_activities: Administrer projektaktiviteter - error_unable_delete_issue_status: Det var ikke muligt at slette sagsstatus (%{value}) - label_profile: Profil - permission_manage_subtasks: Administrer underopgaver - field_parent_issue: Hovedopgave - label_subtask_plural: Underopgaver - label_project_copy_notifications: Send email notifikationer, mens projektet kopieres - error_can_not_delete_custom_field: Kan ikke slette brugerdefineret felt - error_unable_to_connect: Kan ikke forbinde (%{value}) - error_can_not_remove_role: Denne rolle er i brug og kan ikke slettes. - error_can_not_delete_tracker: Denne type indeholder sager og kan ikke slettes. - field_principal: Principal - notice_failed_to_save_members: "Fejl under lagring af medlem(mer): %{errors}." - text_zoom_out: Zoom ud - text_zoom_in: Zoom ind - notice_unable_delete_time_entry: Kan ikke slette tidsregistrering. - label_overall_spent_time: Overordnet forbrug af tid - field_time_entries: Log tid - project_module_gantt: Gantt - project_module_calendar: Kalender - button_edit_associated_wikipage: "Redigér tilknyttet Wiki side: %{page_title}" - field_text: Tekstfelt - setting_default_notification_option: Standardpåmindelsesmulighed - label_user_mail_option_only_my_events: Kun for ting jeg overvåger eller er involveret i - label_user_mail_option_none: Ingen hændelser - field_member_of_group: Medlem af gruppe - field_assigned_to_role: Medlem af rolle - notice_not_authorized_archived_project: Projektet du prøver at tilgå, er blevet arkiveret. - label_principal_search: "Søg efter bruger eller gruppe:" - label_user_search: "Søg efter bruger:" - field_visible: Synlig - setting_commit_logtime_activity_id: Aktivitet for registreret tid - text_time_logged_by_changeset: Anvendt i changeset %{value}. - setting_commit_logtime_enabled: Aktiver tidsregistrering - notice_gantt_chart_truncated: Kortet er blevet afkortet, fordi det overstiger det maksimale antal elementer, der kan vises (%{max}) - setting_gantt_items_limit: Maksimalt antal af elementer der kan vises på gantt kortet - - field_warn_on_leaving_unsaved: Warn me when leaving a page with unsaved text - text_warn_on_leaving_unsaved: The current page contains unsaved text that will be lost if you leave this page. - label_my_queries: My custom queries - text_journal_changed_no_detail: "%{label} updated" - label_news_comment_added: Comment added to a news - button_expand_all: Expand all - button_collapse_all: Collapse all - label_additional_workflow_transitions_for_assignee: Additional transitions allowed when the user is the assignee - label_additional_workflow_transitions_for_author: Additional transitions allowed when the user is the author - label_bulk_edit_selected_time_entries: Bulk edit selected time entries - text_time_entries_destroy_confirmation: Are you sure you want to delete the selected time entr(y/ies)? - label_role_anonymous: Anonymous - label_role_non_member: Non member - label_issue_note_added: Note added - label_issue_status_updated: Status updated - label_issue_priority_updated: Priority updated - label_issues_visibility_own: Issues created by or assigned to the user - field_issues_visibility: Issues visibility - label_issues_visibility_all: All issues - permission_set_own_issues_private: Set own issues public or private - field_is_private: Private - permission_set_issues_private: Set issues public or private - label_issues_visibility_public: All non private issues - text_issues_destroy_descendants_confirmation: This will also delete %{count} subtask(s). - field_commit_logs_encoding: Kodning af Commit beskeder - field_scm_path_encoding: Path encoding - text_scm_path_encoding_note: "Default: UTF-8" - field_path_to_repository: Path to repository - field_root_directory: Root directory - field_cvs_module: Module - field_cvsroot: CVSROOT - text_mercurial_repository_note: Local repository (e.g. /hgrepo, c:\hgrepo) - text_scm_command: Command - text_scm_command_version: Version - label_git_report_last_commit: Report last commit for files and directories - notice_issue_successful_create: Issue %{id} created. - label_between: between - setting_issue_group_assignment: Allow issue assignment to groups - label_diff: diff - text_git_repository_note: Repository is bare and local (e.g. /gitrepo, c:\gitrepo) - description_query_sort_criteria_direction: Sort direction - description_project_scope: Search scope - description_filter: Filter - description_user_mail_notification: Mail notification settings - description_message_content: Message content - description_available_columns: Available Columns - description_issue_category_reassign: Choose issue category - description_search: Searchfield - description_notes: Notes - description_choose_project: Projects - description_query_sort_criteria_attribute: Sort attribute - description_wiki_subpages_reassign: Choose new parent page - description_selected_columns: Selected Columns - label_parent_revision: Parent - label_child_revision: Child - error_scm_annotate_big_text_file: The entry cannot be annotated, as it exceeds the maximum text file size. - setting_default_issue_start_date_to_creation_date: Use current date as start date for new issues - button_edit_section: Edit this section - setting_repositories_encodings: Attachments and repositories encodings - description_all_columns: All Columns - button_export: Export - label_export_options: "%{export_format} export options" - error_attachment_too_big: This file cannot be uploaded because it exceeds the maximum allowed file size (%{max_size}) - notice_failed_to_save_time_entries: "Failed to save %{count} time entrie(s) on %{total} selected: %{ids}." - label_x_issues: - zero: 0 sag - one: 1 sag - other: "%{count} sager" - label_repository_new: New repository - field_repository_is_default: Main repository - label_copy_attachments: Copy attachments - label_item_position: "%{position}/%{count}" - label_completed_versions: Completed versions - text_project_identifier_info: Only lower case letters (a-z), numbers, dashes and underscores are allowed.
    Once saved, the identifier cannot be changed. - field_multiple: Multiple values - setting_commit_cross_project_ref: Allow issues of all the other projects to be referenced and fixed - text_issue_conflict_resolution_add_notes: Add my notes and discard my other changes - text_issue_conflict_resolution_overwrite: Apply my changes anyway (previous notes will be kept but some changes may be overwritten) - notice_issue_update_conflict: The issue has been updated by an other user while you were editing it. - text_issue_conflict_resolution_cancel: Discard all my changes and redisplay %{link} - permission_manage_related_issues: Manage related issues - field_auth_source_ldap_filter: LDAP filter - label_search_for_watchers: Search for watchers to add - notice_account_deleted: Your account has been permanently deleted. - setting_unsubscribe: Allow users to delete their own account - button_delete_my_account: Delete my account - text_account_destroy_confirmation: |- - Are you sure you want to proceed? - Your account will be permanently deleted, with no way to reactivate it. - error_session_expired: Your session has expired. Please login again. - text_session_expiration_settings: "Warning: changing these settings may expire the current sessions including yours." - setting_session_lifetime: Session maximum lifetime - setting_session_timeout: Session inactivity timeout - label_session_expiration: Session expiration - permission_close_project: Close / reopen the project - button_close: Close - button_reopen: Reopen - project_status_active: active - project_status_closed: closed - project_status_archived: archived - text_project_closed: This project is closed and read-only. - notice_user_successful_create: User %{id} created. - field_core_fields: Standard fields - field_timeout: Timeout (in seconds) - setting_thumbnails_enabled: Display attachment thumbnails - setting_thumbnails_size: Thumbnails size (in pixels) - label_status_transitions: Status transitions - label_fields_permissions: Fields permissions - label_readonly: Read-only - label_required: Required - text_repository_identifier_info: Only lower case letters (a-z), numbers, dashes and underscores are allowed.
    Once saved, the identifier cannot be changed. - field_board_parent: Parent forum - label_attribute_of_project: Project's %{name} - label_attribute_of_author: Author's %{name} - label_attribute_of_assigned_to: Assignee's %{name} - label_attribute_of_fixed_version: Target version's %{name} - label_copy_subtasks: Copy subtasks - label_copied_to: copied to - label_copied_from: copied from - label_any_issues_in_project: any issues in project - label_any_issues_not_in_project: any issues not in project - field_private_notes: Private notes - permission_view_private_notes: View private notes - permission_set_notes_private: Set notes as private - label_no_issues_in_project: no issues in project - label_any: alle - label_last_n_weeks: last %{count} weeks - setting_cross_project_subtasks: Allow cross-project subtasks - label_cross_project_descendants: Med underprojekter - label_cross_project_tree: Med projekttræ - label_cross_project_hierarchy: Med projekthierarki - label_cross_project_system: Med alle projekter - button_hide: Hide - setting_non_working_week_days: Non-working days - label_in_the_next_days: in the next - label_in_the_past_days: in the past - label_attribute_of_user: User's %{name} - text_turning_multiple_off: If you disable multiple values, multiple values will be - removed in order to preserve only one value per item. - label_attribute_of_issue: Issue's %{name} - permission_add_documents: Add documents - permission_edit_documents: Edit documents - permission_delete_documents: Delete documents - label_gantt_progress_line: Progress line - setting_jsonp_enabled: Enable JSONP support - field_inherit_members: Inherit members - field_closed_on: Closed - field_generate_password: Generate password - setting_default_projects_tracker_ids: Default trackers for new projects - label_total_time: Total - text_scm_config: You can configure your SCM commands in config/configuration.yml. Please restart the application after editing it. - text_scm_command_not_available: SCM command is not available. Please check settings on the administration panel. - setting_emails_header: Email header - notice_account_not_activated_yet: You haven't activated your account yet. If you want - to receive a new activation email, please click this link. - notice_account_locked: Your account is locked. - label_hidden: Hidden - label_visibility_private: to me only - label_visibility_roles: to these roles only - label_visibility_public: to any users - field_must_change_passwd: Must change password at next logon - notice_new_password_must_be_different: The new password must be different from the - current password - setting_mail_handler_excluded_filenames: Exclude attachments by name - text_convert_available: ImageMagick convert available (optional) - label_link: Link - label_only: only - label_drop_down_list: drop-down list - label_checkboxes: checkboxes - label_link_values_to: Link values to URL - setting_force_default_language_for_anonymous: Force default language for anonymous - users - setting_force_default_language_for_loggedin: Force default language for logged-in - users - label_custom_field_select_type: Select the type of object to which the custom field - is to be attached - label_issue_assigned_to_updated: Assignee updated - label_check_for_updates: Check for updates - label_latest_compatible_version: Latest compatible version - label_unknown_plugin: Unknown plugin - label_radio_buttons: radio buttons - label_group_anonymous: Anonymous users - label_group_non_member: Non member users - label_add_projects: Add projects - field_default_status: Default status - text_subversion_repository_note: 'Examples: file:///, http://, https://, svn://, svn+[tunnelscheme]://' - field_users_visibility: Users visibility - label_users_visibility_all: All active users - label_users_visibility_members_of_visible_projects: Members of visible projects - label_edit_attachments: Edit attached files - setting_link_copied_issue: Link issues on copy - label_link_copied_issue: Link copied issue - label_ask: Ask - label_search_attachments_yes: Search attachment filenames and descriptions - label_search_attachments_no: Do not search attachments - label_search_attachments_only: Search attachments only - label_search_open_issues_only: Open issues only - field_address: Email - setting_max_additional_emails: Maximum number of additional email addresses - label_email_address_plural: Emails - label_email_address_add: Add email address - label_enable_notifications: Enable notifications - label_disable_notifications: Disable notifications - setting_search_results_per_page: Search results per page - label_blank_value: blank - permission_copy_issues: Copy issues - error_password_expired: Your password has expired or the administrator requires you - to change it. - field_time_entries_visibility: Time logs visibility - setting_password_max_age: Require password change after - label_parent_task_attributes: Parent tasks attributes - label_parent_task_attributes_derived: Calculated from subtasks - label_parent_task_attributes_independent: Independent of subtasks - label_time_entries_visibility_all: All time entries - label_time_entries_visibility_own: Time entries created by the user - label_member_management: Member management - label_member_management_all_roles: All roles - label_member_management_selected_roles_only: Only these roles - label_password_required: Confirm your password to continue - label_total_spent_time: Overordnet forbrug af tid - notice_import_finished: "%{count} items have been imported" - notice_import_finished_with_errors: "%{count} out of %{total} items could not be imported" - error_invalid_file_encoding: The file is not a valid %{encoding} encoded file - error_invalid_csv_file_or_settings: The file is not a CSV file or does not match the - settings below - error_can_not_read_import_file: An error occurred while reading the file to import - permission_import_issues: Import issues - label_import_issues: Import issues - label_select_file_to_import: Select the file to import - label_fields_separator: Field separator - label_fields_wrapper: Field wrapper - label_encoding: Encoding - label_comma_char: Comma - label_semi_colon_char: Semicolon - label_quote_char: Quote - label_double_quote_char: Double quote - label_fields_mapping: Fields mapping - label_file_content_preview: File content preview - label_create_missing_values: Create missing values - button_import: Import - field_total_estimated_hours: Total estimated time - label_api: API - label_total_plural: Totals - label_assigned_issues: Assigned issues - label_field_format_enumeration: Key/value list - label_f_hour_short: '%{value} h' - field_default_version: Default version - error_attachment_extension_not_allowed: Attachment extension %{extension} is not allowed - setting_attachment_extensions_allowed: Allowed extensions - setting_attachment_extensions_denied: Disallowed extensions - label_any_open_issues: any open issues - label_no_open_issues: no open issues - label_default_values_for_new_users: Default values for new users - error_ldap_bind_credentials: Invalid LDAP Account/Password - setting_sys_api_key: API nøgle - setting_lost_password: Glemt kodeord - mail_subject_security_notification: Security notification - mail_body_security_notification_change: ! '%{field} was changed.' - mail_body_security_notification_change_to: ! '%{field} was changed to %{value}.' - mail_body_security_notification_add: ! '%{field} %{value} was added.' - mail_body_security_notification_remove: ! '%{field} %{value} was removed.' - mail_body_security_notification_notify_enabled: Email address %{value} now receives - notifications. - mail_body_security_notification_notify_disabled: Email address %{value} no longer - receives notifications. - mail_body_settings_updated: ! 'The following settings were changed:' - field_remote_ip: IP address - label_wiki_page_new: New wiki page - label_relations: Relations - button_filter: Filter - mail_body_password_updated: Your password has been changed. - label_no_preview: No preview available - error_no_tracker_allowed_for_new_issue_in_project: The project doesn't have any trackers - for which you can create an issue - label_tracker_all: All trackers - label_new_project_issue_tab_enabled: Display the "New issue" tab - setting_new_item_menu_tab: Project menu tab for creating new objects - label_new_object_tab_enabled: Display the "+" drop-down - error_no_projects_with_tracker_allowed_for_new_issue: There are no projects with trackers - for which you can create an issue - field_textarea_font: Font used for text areas - label_font_default: Default font - label_font_monospace: Monospaced font - label_font_proportional: Proportional font - setting_timespan_format: Time span format - label_table_of_contents: Table of contents - setting_commit_logs_formatting: Apply text formatting to commit messages - setting_mail_handler_enable_regex: Enable regular expressions - error_move_of_child_not_possible: 'Subtask %{child} could not be moved to the new - project: %{errors}' - error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted: Spent time cannot - be reassigned to an issue that is about to be deleted - setting_timelog_required_fields: Required fields for time logs - label_attribute_of_object: '%{object_name}''s %{name}' - label_user_mail_option_only_assigned: Only for things I watch or I am assigned to - label_user_mail_option_only_owner: Only for things I watch or I am the owner of - warning_fields_cleared_on_bulk_edit: Changes will result in the automatic deletion - of values from one or more fields on the selected objects - field_updated_by: Updated by - field_last_updated_by: Last updated by - field_full_width_layout: Full width layout - label_last_notes: Last notes - field_digest: Checksum - field_default_assigned_to: Default assignee - setting_show_custom_fields_on_registration: Show custom fields on registration - permission_view_news: View news - label_no_preview_alternative_html: No preview available. %{link} the file instead. - label_no_preview_download: Download - setting_close_duplicate_issues: Close duplicate issues automatically - error_exceeds_maximum_hours_per_day: Cannot log more than %{max_hours} hours on the - same day (%{logged_hours} hours have already been logged) - setting_time_entry_list_defaults: Timelog list defaults - setting_timelog_accept_0_hours: Accept time logs with 0 hours - setting_timelog_max_hours_per_day: Maximum hours that can be logged per day and user - label_x_revisions: "%{count} revisions" - error_can_not_delete_auth_source: This authentication mode is in use and cannot be - deleted. - button_actions: Actions - mail_body_lost_password_validity: Please be aware that you may change the password - only once using this link. - text_login_required_html: When not requiring authentication, public projects and their - contents are openly available on the network. You can edit - the applicable permissions. - label_login_required_yes: 'Yes' - label_login_required_no: No, allow anonymous access to public projects - text_project_is_public_non_member: Public projects and their contents are available - to all logged-in users. - text_project_is_public_anonymous: Public projects and their contents are openly available - on the network. - label_version_and_files: Versions (%{count}) and Files - label_ldap: LDAP - label_ldaps_verify_none: LDAPS (without certificate check) - label_ldaps_verify_peer: LDAPS - label_ldaps_warning: It is recommended to use an encrypted LDAPS connection with certificate - check to prevent any manipulation during the authentication process. - label_nothing_to_preview: Nothing to preview - error_token_expired: This password recovery link has expired, please try again. - error_spent_on_future_date: Cannot log time on a future date - setting_timelog_accept_future_dates: Accept time logs on future dates - label_delete_link_to_subtask: Slet relation - error_not_allowed_to_log_time_for_other_users: You are not allowed to log time - for other users - permission_log_time_for_other_users: Log spent time for other users - label_tomorrow: tomorrow - label_next_week: next week - label_next_month: next month - text_role_no_workflow: No workflow defined for this role - text_status_no_workflow: No tracker uses this status in the workflows - setting_mail_handler_preferred_body_part: Preferred part of multipart (HTML) emails - setting_show_status_changes_in_mail_subject: Show status changes in issue mail notifications - subject - label_inherited_from_parent_project: Inherited from parent project - label_inherited_from_group: Inherited from group %{name} - label_trackers_description: Trackers description - label_open_trackers_description: View all trackers description - label_preferred_body_part_text: Text - label_preferred_body_part_html: HTML (experimental) - field_parent_issue_subject: Parent task subject - permission_edit_own_issues: Edit own issues - text_select_apply_tracker: Select tracker - label_updated_issues: Updated issues - text_avatar_server_config_html: The current avatar server is %{url}. - You can configure it in config/configuration.yml. - setting_gantt_months_limit: Maximum number of months displayed on the gantt chart - permission_import_time_entries: Import time entries - label_import_notifications: Send email notifications during the import - text_gs_available: ImageMagick PDF support available (optional) - field_recently_used_projects: Number of recently used projects in jump box - label_optgroup_bookmarks: Bookmarks - label_optgroup_others: Other projects - label_optgroup_recents: Recently used - button_project_bookmark: Add bookmark - button_project_bookmark_delete: Remove bookmark - field_history_default_tab: Issue's history default tab - label_issue_history_properties: Property changes - label_issue_history_notes: Notes - label_last_tab_visited: Last visited tab - field_unique_id: Unique ID - text_no_subject: no subject - setting_password_required_char_classes: Required character classes for passwords - label_password_char_class_uppercase: uppercase letters - label_password_char_class_lowercase: lowercase letters - label_password_char_class_digits: digits - label_password_char_class_special_chars: special characters - text_characters_must_contain: Must contain %{character_classes}. - label_starts_with: starts with - label_ends_with: ends with - label_issue_fixed_version_updated: Target version updated - setting_project_list_defaults: Projects list defaults - label_display_type: Display results as - label_display_type_list: List - label_display_type_board: Board - label_my_bookmarks: My bookmarks - label_import_time_entries: Import time entries diff --git a/config/locales/de.yml b/config/locales/de.yml deleted file mode 100644 index a665c66..0000000 --- a/config/locales/de.yml +++ /dev/null @@ -1,1305 +0,0 @@ -# German translations for Ruby on Rails -# by Clemens Kofler (clemens@railway.at) -# additions for Redmine 1.2 by Jens Martsch (jmartsch@gmail.com) - -de: - direction: ltr - date: - formats: - # Use the strftime parameters for formats. - # When no format has been given, it uses default. - # You can provide other formats here if you like! - default: "%d.%m.%Y" - short: "%e. %b" - long: "%e. %B %Y" - - day_names: [Sonntag, Montag, Dienstag, Mittwoch, Donnerstag, Freitag, Samstag] - abbr_day_names: [So, Mo, Di, Mi, Do, Fr, Sa] - - # Don't forget the nil at the beginning; there's no such thing as a 0th month - month_names: [~, Januar, Februar, März, April, Mai, Juni, Juli, August, September, Oktober, November, Dezember] - abbr_month_names: [~, Jan, Feb, Mär, Apr, Mai, Jun, Jul, Aug, Sep, Okt, Nov, Dez] - # Used in date_select and datime_select. - order: - - :day - - :month - - :year - - time: - formats: - default: "%d.%m.%Y %H:%M" - time: "%H:%M" - short: "%e. %b %H:%M" - long: "%A, %e. %B %Y, %H:%M Uhr" - am: "vormittags" - pm: "nachmittags" - - datetime: - distance_in_words: - half_a_minute: 'eine halbe Minute' - less_than_x_seconds: - one: 'weniger als 1 Sekunde' - other: 'weniger als %{count} Sekunden' - x_seconds: - one: '1 Sekunde' - other: '%{count} Sekunden' - less_than_x_minutes: - one: 'weniger als 1 Minute' - other: 'weniger als %{count} Minuten' - x_minutes: - one: '1 Minute' - other: '%{count} Minuten' - about_x_hours: - one: 'etwa 1 Stunde' - other: 'etwa %{count} Stunden' - x_hours: - one: "1 Stunde" - other: "%{count} Stunden" - x_days: - one: '1 Tag' - other: '%{count} Tagen' - about_x_months: - one: 'etwa 1 Monat' - other: 'etwa %{count} Monaten' - x_months: - one: '1 Monat' - other: '%{count} Monaten' - about_x_years: - one: 'etwa 1 Jahr' - other: 'etwa %{count} Jahren' - over_x_years: - one: 'mehr als 1 Jahr' - other: 'mehr als %{count} Jahren' - almost_x_years: - one: "fast 1 Jahr" - other: "fast %{count} Jahren" - - number: - # Default format for numbers - format: - separator: ',' - delimiter: '.' - precision: 2 - currency: - format: - unit: '€' - format: '%n %u' - delimiter: '' - percentage: - format: - delimiter: "" - precision: - format: - delimiter: "" - human: - format: - delimiter: "" - precision: 3 - storage_units: - format: "%n %u" - units: - byte: - one: "Byte" - other: "Bytes" - kb: "KB" - mb: "MB" - gb: "GB" - tb: "TB" - -# Used in array.to_sentence. - support: - array: - sentence_connector: "und" - skip_last_comma: true - - activerecord: - errors: - template: - header: - one: "Dieses %{model}-Objekt konnte nicht gespeichert werden: %{count} Fehler." - other: "Dieses %{model}-Objekt konnte nicht gespeichert werden: %{count} Fehler." - body: "Bitte überprüfen Sie die folgenden Felder:" - - messages: - inclusion: "ist kein gültiger Wert" - exclusion: "ist nicht verfügbar" - invalid: "ist nicht gültig" - confirmation: "stimmt nicht mit der Bestätigung überein" - accepted: "muss akzeptiert werden" - empty: "muss ausgefüllt werden" - blank: "muss ausgefüllt werden" - too_long: "ist zu lang (nicht mehr als %{count} Zeichen)" - too_short: "ist zu kurz (nicht weniger als %{count} Zeichen)" - wrong_length: "hat die falsche Länge (muss genau %{count} Zeichen haben)" - taken: "ist bereits vergeben" - not_a_number: "ist keine Zahl" - not_a_date: "ist kein gültiges Datum" - greater_than: "muss größer als %{count} sein" - greater_than_or_equal_to: "muss größer oder gleich %{count} sein" - equal_to: "muss genau %{count} sein" - less_than: "muss kleiner als %{count} sein" - less_than_or_equal_to: "muss kleiner oder gleich %{count} sein" - odd: "muss ungerade sein" - even: "muss gerade sein" - greater_than_start_date: "muss größer als Anfangsdatum sein" - not_same_project: "gehört nicht zum selben Projekt" - circular_dependency: "Diese Beziehung würde eine zyklische Abhängigkeit erzeugen" - cant_link_an_issue_with_a_descendant: "Ein Ticket kann nicht mit einer Ihrer Unteraufgaben verlinkt werden" - earlier_than_minimum_start_date: "kann wegen eines Vorgängertickets nicht vor %{date} liegen" - not_a_regexp: "ist kein gültiger regulärer Ausdruck" - open_issue_with_closed_parent: "Ein offenes Ticket kann nicht an einen geschlossenen Vater gehängt werden" - must_contain_uppercase: "muss Großbuchstaben (A-Z) enthalten" - must_contain_lowercase: "muss Kleinbuchstaben (a-z) enthalten" - must_contain_digits: "muss Zahlen (0-9) enthalten" - must_contain_special_chars: "muss Sonderzeichen (!, $, %, ...) enthalten" - - actionview_instancetag_blank_option: Bitte auswählen - - button_activate: Aktivieren - button_add: Hinzufügen - button_annotate: Annotieren - button_apply: Anwenden - button_archive: Archivieren - button_back: Zurück - button_cancel: Abbrechen - button_change: Wechseln - button_change_password: Passwort ändern - button_check_all: Alles auswählen - button_clear: Zurücksetzen - button_close: Schließen - button_collapse_all: Alle einklappen - button_configure: Konfigurieren - button_copy: Kopieren - button_copy_and_follow: Kopieren und Ticket anzeigen - button_create: Anlegen - button_create_and_continue: Anlegen und weiter - button_delete: Löschen - button_delete_my_account: Mein Benutzerkonto löschen - button_download: Herunterladen - button_edit: Bearbeiten - button_edit_associated_wikipage: "Zugehörige Wikiseite bearbeiten: %{page_title}" - button_edit_section: Diesen Bereich bearbeiten - button_expand_all: Alle ausklappen - button_export: Exportieren - button_hide: Verstecken - button_list: Liste - button_lock: Sperren - button_log_time: Aufwand buchen - button_login: Anmelden - button_move: Verschieben - button_move_and_follow: Verschieben und Ticket anzeigen - button_quote: Zitieren - button_rename: Umbenennen - button_reopen: Öffnen - button_reply: Antworten - button_reset: Zurücksetzen - button_rollback: Auf diese Version zurücksetzen - button_save: Speichern - button_show: Anzeigen - button_sort: Sortieren - button_submit: OK - button_test: Testen - button_unarchive: Entarchivieren - button_uncheck_all: Alles abwählen - button_unlock: Entsperren - button_unwatch: Nicht beobachten - button_update: Aktualisieren - button_view: Anzeigen - button_watch: Beobachten - button_actions: Aktionen - - default_activity_design: Design - default_activity_development: Entwicklung - default_doc_category_tech: Technische Dokumentation - default_doc_category_user: Benutzerdokumentation - default_issue_status_closed: Erledigt - default_issue_status_feedback: Feedback - default_issue_status_in_progress: In Bearbeitung - default_issue_status_new: Neu - default_issue_status_rejected: Abgewiesen - default_issue_status_resolved: Gelöst - default_priority_high: Hoch - default_priority_immediate: Sofort - default_priority_low: Niedrig - default_priority_normal: Normal - default_priority_urgent: Dringend - default_role_developer: Entwickler - default_role_manager: Manager - default_role_reporter: Reporter - default_tracker_bug: Fehler - default_tracker_feature: Feature - default_tracker_support: Unterstützung - - description_all_columns: Alle Spalten - description_available_columns: Verfügbare Spalten - description_choose_project: Projekte - description_filter: Filter - description_issue_category_reassign: Neue Kategorie wählen - description_message_content: Nachrichteninhalt - description_notes: Kommentare - description_project_scope: Suchbereich - description_query_sort_criteria_attribute: Sortierattribut - description_query_sort_criteria_direction: Sortierrichtung - description_search: Suchfeld - description_selected_columns: Ausgewählte Spalten - - description_user_mail_notification: Mailbenachrichtigungseinstellung - description_wiki_subpages_reassign: Neue Elternseite wählen - - enumeration_activities: Aktivitäten (Zeiterfassung) - enumeration_doc_categories: Dokumentenkategorien - enumeration_issue_priorities: Ticket-Prioritäten - enumeration_system_activity: System-Aktivität - - error_attachment_too_big: Diese Datei kann nicht hochgeladen werden, da sie die maximale Dateigröße von (%{max_size}) überschreitet. - error_can_not_archive_project: Dieses Projekt kann nicht archiviert werden. - error_can_not_delete_custom_field: Kann das benutzerdefinierte Feld nicht löschen. - error_can_not_delete_tracker: Dieser Tracker enthält Tickets und kann nicht gelöscht werden. - error_can_not_remove_role: Diese Rolle wird verwendet und kann nicht gelöscht werden. - error_can_not_reopen_issue_on_closed_version: Das Ticket ist einer abgeschlossenen Version zugeordnet und kann daher nicht wieder geöffnet werden. - error_can_t_load_default_data: "Die Standard-Konfiguration konnte nicht geladen werden: %{value}" - error_issue_done_ratios_not_updated: Der Ticket-Fortschritt wurde nicht aktualisiert. - error_issue_not_found_in_project: 'Das Ticket wurde nicht gefunden oder gehört nicht zu diesem Projekt.' - error_no_default_issue_status: Es ist kein Status als Standard definiert. Bitte überprüfen Sie Ihre Konfiguration (unter "Administration -> Ticket-Status"). - error_no_tracker_in_project: Diesem Projekt ist kein Tracker zugeordnet. Bitte überprüfen Sie die Projekteinstellungen. - error_scm_annotate: "Der Eintrag existiert nicht oder kann nicht annotiert werden." - error_scm_annotate_big_text_file: Der Eintrag kann nicht umgesetzt werden, da er die maximale Textlänge überschreitet. - error_scm_command_failed: "Beim Zugriff auf das Repository ist ein Fehler aufgetreten: %{value}" - error_scm_not_found: Eintrag und/oder Revision existiert nicht im Repository. - error_session_expired: Ihre Sitzung ist abgelaufen. Bitte melden Sie sich erneut an. - error_token_expired: "Dieser Link zum Passwort zurücksetzen ist nicht mehr gültig. Bitte versuchen Sie es erneut." - error_unable_delete_issue_status: "Der Ticket-Status konnte nicht gelöscht werden. (%{value})" - error_unable_to_connect: Fehler beim Verbinden (%{value}) - error_workflow_copy_source: Bitte wählen Sie einen Quell-Tracker und eine Quell-Rolle. - error_workflow_copy_target: Bitte wählen Sie die Ziel-Tracker und -Rollen. - error_move_of_child_not_possible: "Unteraufgabe %{child} konnte nicht in das neue Projekt verschoben werden: %{errors}" - - field_account: Konto - field_active: Aktiv - field_activity: Aktivität - field_admin: Administrator - field_assignable: Tickets können dieser Rolle zugewiesen werden - field_assigned_to: Zugewiesen an - field_assigned_to_role: Zuständigkeitsrolle - field_attr_firstname: Vorname-Attribut - field_attr_lastname: Name-Attribut - field_attr_login: Mitgliedsname-Attribut - field_attr_mail: E-Mail-Attribut - field_auth_source: Authentifizierungs-Modus - field_auth_source_ldap_filter: LDAP-Filter - field_author: Autor - field_base_dn: Base DN - field_board_parent: Übergeordnetes Forum - field_category: Kategorie - field_column_names: Spalten - field_closed_on: Geschlossen am - field_comments: Kommentar - field_comments_sorting: Kommentare anzeigen - field_commit_logs_encoding: Kodierung der Commit-Nachrichten - field_content: Inhalt - field_core_fields: Standardwerte - field_created_on: Angelegt - field_cvs_module: Modul - field_cvsroot: CVSROOT - field_default_value: Standardwert - field_default_status: Standardstatus - field_delay: Pufferzeit - field_description: Beschreibung - field_done_ratio: "% erledigt" - field_downloads: Downloads - field_due_date: Abgabedatum - field_editable: Bearbeitbar - field_effective_date: Datum - field_estimated_hours: Geschätzter Aufwand - field_field_format: Format - field_filename: Datei - field_filesize: Größe - field_firstname: Vorname - field_fixed_version: Zielversion - field_generate_password: Passwort generieren - field_group_by: Gruppiere Ergebnisse nach - field_hide_mail: E-Mail-Adresse nicht anzeigen - field_homepage: Projekt-Homepage - field_host: Host - field_hours: Stunden - field_identifier: Kennung - field_identity_url: OpenID-URL - field_inherit_members: Benutzer erben - field_is_closed: Ticket geschlossen - field_is_default: Standardeinstellung - field_is_filter: Als Filter benutzen - field_is_for_all: Für alle Projekte - field_is_in_roadmap: In der Roadmap anzeigen - field_is_private: Privat - field_is_public: Öffentlich - field_is_required: Erforderlich - field_issue: Ticket - field_issue_to: Zugehöriges Ticket - field_issues_visibility: Ticket-Sichtbarkeit - field_language: Sprache - field_last_login_on: Letzte Anmeldung - field_lastname: Nachname - field_login: Mitgliedsname - field_mail: E-Mail - field_mail_notification: Mailbenachrichtigung - field_max_length: Maximale Länge - field_member_of_group: Zuständigkeitsgruppe - field_min_length: Minimale Länge - field_multiple: Mehrere Werte - field_must_change_passwd: Passwort beim nächsten Login ändern - field_name: Name - field_new_password: Neues Passwort - field_notes: Kommentare - field_onthefly: On-the-fly-Benutzererstellung - field_parent: Unterprojekt von - field_parent_issue: Übergeordnete Aufgabe - field_parent_title: Übergeordnete Seite - field_password: Passwort - field_password_confirmation: Bestätigung - field_path_to_repository: Pfad zum Repository - field_port: Port - field_possible_values: Mögliche Werte - field_principal: Auftraggeber - field_priority: Priorität - field_private_notes: Privater Kommentar - field_project: Projekt - field_redirect_existing_links: Existierende Links umleiten - field_regexp: Regulärer Ausdruck - field_repository_is_default: Haupt-Repository - field_role: Rolle - field_root_directory: Wurzelverzeichnis - field_scm_path_encoding: Pfad-Kodierung - field_searchable: Durchsuchbar - field_sharing: Gemeinsame Verwendung - field_spent_on: Datum - field_start_date: Beginn - field_start_page: Hauptseite - field_status: Status - field_subject: Thema - field_subproject: Unterprojekt von - field_summary: Zusammenfassung - field_text: Textfeld - field_time_entries: Aufwand buchen - field_time_zone: Zeitzone - field_timeout: Auszeit (in Sekunden) - field_title: Titel - field_tracker: Tracker - field_type: Typ - field_updated_on: Aktualisiert - field_url: URL - field_user: Benutzer - field_users_visibility: Benutzer-Sichtbarkeit - field_value: Wert - field_version: Version - field_visible: Sichtbar - field_warn_on_leaving_unsaved: Vor dem Verlassen einer Seite mit ungesichertem Text im Editor warnen - field_watcher: Beobachter - field_default_assigned_to: Standardbearbeiter - field_unique_id: Eindeutige ID - - general_csv_decimal_separator: ',' - general_csv_encoding: ISO-8859-1 - general_csv_separator: ';' - general_pdf_fontname: freesans - general_pdf_monospaced_fontname: freemono - general_first_day_of_week: '1' - general_lang_name: 'German (Deutsch)' - general_text_No: 'Nein' - general_text_Yes: 'Ja' - general_text_no: 'nein' - general_text_yes: 'ja' - - label_activity: Aktivität - label_add_another_file: Eine weitere Datei hinzufügen - label_add_note: Kommentar hinzufügen - label_add_projects: Projekt hinzufügen - label_added: hinzugefügt - label_added_time_by: "Von %{author} vor %{age} hinzugefügt" - label_additional_workflow_transitions_for_assignee: Zusätzliche Berechtigungen wenn der Benutzer der Zugewiesene ist - label_additional_workflow_transitions_for_author: Zusätzliche Berechtigungen wenn der Benutzer der Autor ist - label_administration: Administration - label_age: Geändert vor - label_ago: vor - label_all: alle - label_all_words: Alle Wörter - label_and_its_subprojects: "%{value} und dessen Unterprojekte" - label_any: alle - label_any_issues_in_project: irgendein Ticket im Projekt - label_any_issues_not_in_project: irgendein Ticket nicht im Projekt - label_api_access_key: API-Zugriffsschlüssel - label_api_access_key_created_on: Der API-Zugriffsschlüssel wurde vor %{value} erstellt - label_applied_status: Zugewiesener Status - label_ascending: Aufsteigend - label_ask: Nachfragen - label_assigned_to_me_issues: Mir zugewiesene Tickets - label_associated_revisions: Zugehörige Revisionen - label_attachment: Datei - label_attachment_delete: Anhang löschen - label_attachment_new: Neue Datei - label_attachment_plural: Dateien - label_attribute: Attribut - label_attribute_of_assigned_to: "%{name} des Bearbeiters" - label_attribute_of_author: "%{name} des Autors" - label_attribute_of_fixed_version: "%{name} der Zielversion" - label_attribute_of_issue: "%{name} des Tickets" - label_attribute_of_project: "%{name} des Projekts" - label_attribute_of_user: "%{name} des Benutzers" - label_attribute_plural: Attribute - label_auth_source: Authentifizierungs-Modus - label_auth_source_new: Neuer Authentifizierungs-Modus - label_auth_source_plural: Authentifizierungs-Arten - label_authentication: Authentifizierung - label_between: zwischen - label_blocked_by: Blockiert durch - label_blocks: Blockiert - label_board: Forum - label_board_locked: Gesperrt - label_board_new: Neues Forum - label_board_plural: Foren - label_board_sticky: Wichtig (immer oben) - label_boolean: Boolean - label_branch: Zweig - label_browse: Codebrowser - label_bulk_edit_selected_issues: Alle ausgewählten Tickets bearbeiten - label_bulk_edit_selected_time_entries: Ausgewählte Zeitaufwände bearbeiten - label_calendar: Kalender - label_change_plural: Änderungen - label_change_properties: Eigenschaften ändern - label_change_status: Statuswechsel - label_change_view_all: Alle Änderungen anzeigen - label_changes_details: Details aller Änderungen - label_changeset_plural: Changesets - label_checkboxes: Checkboxen - label_check_for_updates: Auf Updates prüfen - label_child_revision: Nachfolger - label_chronological_order: in zeitlicher Reihenfolge - label_close_versions: Vollständige Versionen schließen - label_closed_issues: geschlossen - label_closed_issues_plural: geschlossen - label_comment: Kommentar - label_comment_add: Kommentar hinzufügen - label_comment_added: Kommentar hinzugefügt - label_comment_delete: Kommentar löschen - label_comment_plural: Kommentare - label_commits_per_author: Übertragungen pro Autor - label_commits_per_month: Übertragungen pro Monat - label_completed_versions: Abgeschlossene Versionen - label_confirmation: Bestätigung - label_contains: enthält - label_copied: kopiert - label_copied_from: Kopiert von - label_copied_to: Kopiert nach - label_copy_attachments: Anhänge kopieren - label_copy_same_as_target: So wie das Ziel - label_copy_source: Quelle - label_copy_subtasks: Unteraufgaben kopieren - label_copy_target: Ziel - label_copy_workflow_from: Workflow kopieren von - label_cross_project_descendants: Mit Unterprojekten - label_cross_project_hierarchy: Mit Projekthierarchie - label_cross_project_system: Mit allen Projekten - label_cross_project_tree: Mit Projektbaum - label_current_status: Gegenwärtiger Status - label_current_version: Gegenwärtige Version - label_custom_field: Benutzerdefiniertes Feld - label_custom_field_new: Neues Feld - label_custom_field_plural: Benutzerdefinierte Felder - label_custom_field_select_type: Bitte wählen Sie den Objekttyp, zu dem das benutzerdefinierte Feld hinzugefügt werden soll - label_date: Datum - label_date_from: Von - label_date_from_to: von %{start} bis %{end} - label_date_range: Zeitraum - label_date_to: Bis - label_day_plural: Tage - label_default: Standard - label_default_columns: Standard-Spalten - label_deleted: gelöscht - label_descending: Absteigend - label_details: Details - label_diff: diff - label_diff_inline: einspaltig - label_diff_side_by_side: nebeneinander - label_disabled: gesperrt - label_display: Anzeige - label_display_per_page: "Pro Seite: %{value}" - label_display_used_statuses_only: Zeige nur Status an, die von diesem Tracker verwendet werden - label_document: Dokument - label_document_added: Dokument hinzugefügt - label_document_new: Neues Dokument - label_document_plural: Dokumente - label_downloads_abbr: D/L - label_drop_down_list: Dropdown-Liste - label_duplicated_by: Dupliziert durch - label_duplicates: Duplikat von - label_edit_attachments: Angehängte Dateien bearbeiten - label_enumeration_new: Neuer Wert - label_enumerations: Aufzählungen - label_environment: Umgebung - label_equals: ist - label_example: Beispiel - label_export_options: "%{export_format} Export-Eigenschaften" - label_export_to: "Auch abrufbar als:" - label_f_hour: "%{value} Stunde" - label_f_hour_plural: "%{value} Stunden" - label_feed_plural: Feeds - label_feeds_access_key: Atom-Zugriffsschlüssel - label_feeds_access_key_created_on: "Atom-Zugriffsschlüssel vor %{value} erstellt" - label_fields_permissions: Feldberechtigungen - label_file_added: Datei hinzugefügt - label_file_plural: Dateien - label_filter_add: Filter hinzufügen - label_filter_plural: Filter - label_float: Fließkommazahl - label_follows: Nachfolger von - label_gantt: Gantt-Diagramm - label_gantt_progress_line: Fortschrittslinie - label_general: Allgemein - label_generate_key: Generieren - label_git_report_last_commit: Bericht des letzten Commits für Dateien und Verzeichnisse - label_greater_or_equal: ">=" - label_group: Gruppe - label_group_anonymous: Anonyme Benutzer - label_group_new: Neue Gruppe - label_group_non_member: Nichtmitglieder - label_group_plural: Gruppen - label_help: Hilfe - label_hidden: Versteckt - label_history: Historie - label_home: Hauptseite - label_in: in - label_in_less_than: in weniger als - label_in_more_than: in mehr als - label_in_the_next_days: in den nächsten - label_in_the_past_days: in den letzten - label_incoming_emails: Eingehende E-Mails - label_index_by_date: Seiten nach Datum sortiert - label_index_by_title: Seiten nach Titel sortiert - label_information: Information - label_information_plural: Informationen - label_integer: Zahl - label_internal: Intern - label_issue: Ticket - label_issue_added: Ticket hinzugefügt - label_issue_assigned_to_updated: Bearbeiter aktualisiert - label_issue_category: Ticket-Kategorie - label_issue_category_new: Neue Kategorie - label_issue_category_plural: Ticket-Kategorien - label_issue_new: Neues Ticket - label_issue_note_added: Notiz hinzugefügt - label_issue_plural: Tickets - label_issue_priority_updated: Priorität aktualisiert - label_issue_status: Ticket-Status - label_issue_status_new: Neuer Status - label_issue_status_plural: Ticket-Status - label_issue_status_updated: Status aktualisiert - label_issue_tracking: Tickets - label_issue_updated: Ticket aktualisiert - label_issue_view_all: Alle Tickets anzeigen - label_issue_watchers: Beobachter - label_issues_by: "Tickets pro %{value}" - label_issues_visibility_all: Alle Tickets - label_issues_visibility_own: Tickets die folgender Benutzer erstellt hat oder die ihm zugewiesen sind - label_issues_visibility_public: Alle öffentlichen Tickets - label_item_position: "%{position}/%{count}" - label_jump_to_a_project: Zu einem Projekt springen... - label_language_based: Sprachabhängig - label_last_changes: "%{count} letzte Änderungen" - label_last_login: Letzte Anmeldung - label_last_month: voriger Monat - label_last_n_days: "die letzten %{count} Tage" - label_last_n_weeks: letzte %{count} Wochen - label_last_week: vorige Woche - label_latest_compatible_version: Letzte kompatible Version - label_latest_revision: Aktuellste Revision - label_latest_revision_plural: Aktuellste Revisionen - label_ldap: LDAP - label_ldap_authentication: LDAP-Authentifizierung - label_ldaps_verify_none: LDAPS (ohne Zertifikatsprüfung) - label_ldaps_verify_peer: LDAPS - label_ldaps_warning: Es wird empfohlen, eine verschlüsselte LDAPS-Verbindung mit Zertifikatsprüfung zu verwenden, um Manipulationen während der Authentifizierung zu verhindern. - label_less_or_equal: "<=" - label_less_than_ago: vor weniger als - label_link: Link - label_link_copied_issue: Kopierte Tickets verlinken - label_link_values_to: Werte mit URL verknüpfen - label_list: Liste - label_loading: Lade... - label_logged_as: Angemeldet als - label_login: Anmelden - label_login_with_open_id_option: oder mit OpenID anmelden - label_logout: Abmelden - label_only: nur - label_max_size: Maximale Größe - label_me: ich - label_member: Mitglied - label_member_new: Neues Mitglied - label_member_plural: Mitglieder - label_message_last: Letzter Forenbeitrag - label_message_new: Neues Thema - label_message_plural: Forenbeiträge - label_message_posted: Forenbeitrag hinzugefügt - label_min_max_length: Länge (Min. - Max.) - label_missing_api_access_key: Der API-Zugriffsschlüssel fehlt. - label_missing_feeds_access_key: Der Atom-Zugriffsschlüssel fehlt. - label_modified: geändert - label_module_plural: Module - label_month: Monat - label_months_from: Monate ab - label_more_than_ago: vor mehr als - label_my_account: Mein Konto - label_my_page: Meine Seite - label_my_projects: Meine Projekte - label_my_queries: Meine eigenen Abfragen - label_new: Neu - label_new_statuses_allowed: Neue Berechtigungen - label_news: News - label_news_added: News hinzugefügt - label_news_comment_added: Kommentar zu einer News hinzugefügt - label_news_latest: Letzte News - label_news_new: News hinzufügen - label_news_plural: News - label_news_view_all: Alle News anzeigen - label_next: Weiter - label_no_change_option: (Keine Änderung) - label_no_data: Nichts anzuzeigen - label_no_preview: Keine Vorschau verfügbar - label_no_preview_alternative_html: Keine Vorschau verfügbar. Sie können die Datei stattdessen %{link}. - label_no_preview_download: herunterladen - label_no_issues_in_project: keine Tickets im Projekt - label_nobody: Niemand - label_none: kein - label_not_contains: enthält nicht - label_not_equals: ist nicht - label_open_issues: offen - label_open_issues_plural: offen - label_optional_description: Beschreibung (optional) - label_options: Optionen - label_overall_activity: Aktivitäten aller Projekte anzeigen - label_overall_spent_time: Aufgewendete Zeit aller Projekte anzeigen - label_overview: Übersicht - label_parent_revision: Vorgänger - label_password_lost: Passwort vergessen - label_password_required: Bitte geben Sie Ihr Passwort ein - label_permissions: Berechtigungen - label_permissions_report: Berechtigungsübersicht - label_plugins: Plugins - label_precedes: Vorgänger von - label_preferences: Präferenzen - label_preview: Vorschau - label_previous: Zurück - label_principal_search: "Nach Benutzer oder Gruppe suchen:" - label_profile: Profil - label_project: Projekt - label_project_all: Alle Projekte - label_project_copy_notifications: Sende Mailbenachrichtigungen beim Kopieren des Projekts. - label_project_latest: Neueste Projekte - label_project_new: Neues Projekt - label_project_plural: Projekte - label_public_projects: Öffentliche Projekte - label_query: Benutzerdefinierte Abfrage - label_query_new: Neue Abfrage - label_query_plural: Benutzerdefinierte Abfragen - label_radio_buttons: Radio-Buttons - label_read: Lesen... - label_readonly: Nur-Lese-Zugriff - label_register: Registrieren - label_registered_on: Angemeldet am - label_registration_activation_by_email: Kontoaktivierung durch E-Mail - label_registration_automatic_activation: Automatische Kontoaktivierung - label_registration_manual_activation: Manuelle Kontoaktivierung - label_related_issues: Zugehörige Tickets - label_relates_to: Beziehung mit - label_relation_delete: Beziehung löschen - label_relation_new: Neue Beziehung - label_renamed: umbenannt - label_reply_plural: Antworten - label_report: Bericht - label_report_plural: Berichte - label_reported_issues: Erstellte Tickets - label_repository: Repository - label_repository_new: Neues Repository - label_repository_plural: Repositories - label_required: Erforderlich - label_result_plural: Resultate - label_reverse_chronological_order: in umgekehrter zeitlicher Reihenfolge - label_revision: Revision - label_revision_id: Revision %{value} - label_revision_plural: Revisionen - label_roadmap: Roadmap - label_roadmap_due_in: "Fällig in %{value}" - label_roadmap_no_issues: Keine Tickets für diese Version - label_roadmap_overdue: "seit %{value} verspätet" - label_role: Rolle - label_role_and_permissions: Rollen und Rechte - label_role_anonymous: Anonym - label_role_new: Neue Rolle - label_role_non_member: Nichtmitglied - label_role_plural: Rollen - label_scm: Versionskontrollsystem - label_search: Suche - label_search_for_watchers: Nach hinzufügbaren Beobachtern suchen - label_search_titles_only: Nur Titel durchsuchen - label_send_information: Sende Kontoinformationen an Benutzer - label_send_test_email: Test-E-Mail senden - label_session_expiration: Ende einer Sitzung - label_settings: Konfiguration - label_show_completed_versions: Abgeschlossene Versionen anzeigen - label_sort: Sortierung - label_sort_by: "Sortiert nach %{value}" - label_sort_higher: Eins höher - label_sort_highest: An den Anfang - label_sort_lower: Eins tiefer - label_sort_lowest: Ans Ende - label_spent_time: Aufgewendete Zeit - label_statistics: Statistiken - label_status_transitions: Statusänderungen - label_stay_logged_in: Angemeldet bleiben - label_string: Text - label_subproject_new: Neues Unterprojekt - label_subproject_plural: Unterprojekte - label_subtask_plural: Unteraufgaben - label_tag: Markierung - label_text: Langer Text - label_theme: Design-Stil - label_this_month: aktueller Monat - label_this_week: aktuelle Woche - label_this_year: aktuelles Jahr - label_time_entry_plural: Benötigte Zeit - label_time_tracking: Zeiterfassung - label_today: heute - label_topic_plural: Themen - label_total: Gesamtzahl - label_total_time: Gesamtzeit - label_tracker: Tracker - label_tracker_new: Neuer Tracker - label_tracker_plural: Tracker - label_unknown_plugin: Unbekanntes Plugin - label_update_issue_done_ratios: Ticket-Fortschritt aktualisieren - label_updated_time: "Vor %{value} aktualisiert" - label_updated_time_by: "Von %{author} vor %{age} aktualisiert" - label_used_by: Benutzt von - label_user: Benutzer - label_user_activity: "Aktivität von %{value}" - label_user_anonymous: Anonym - label_user_mail_no_self_notified: "Ich möchte nicht über Änderungen benachrichtigt werden, die ich selbst durchführe." - label_user_mail_option_all: "Für alle Ereignisse in all meinen Projekten" - label_user_mail_option_none: Keine Ereignisse - label_user_mail_option_only_my_events: Nur für Aufgaben die ich beobachte oder an welchen ich mitarbeite - label_user_mail_option_selected: "Für alle Ereignisse in den ausgewählten Projekten" - label_user_new: Neuer Benutzer - label_user_plural: Benutzer - label_user_search: "Nach Benutzer suchen:" - label_users_visibility_all: Alle aktiven Benutzer - label_users_visibility_members_of_visible_projects: Mitglieder von sichtbaren Projekten - label_version: Version - label_version_new: Neue Version - label_version_plural: Versionen - label_version_and_files: Versionen (%{count}) und Dateien - label_version_sharing_descendants: Mit Unterprojekten - label_version_sharing_hierarchy: Mit Projekthierarchie - label_version_sharing_none: Nicht gemeinsam verwenden - label_version_sharing_system: Mit allen Projekten - label_version_sharing_tree: Mit Projektbaum - label_view_all_revisions: Alle Revisionen anzeigen - label_view_diff: Unterschiede anzeigen - label_view_revisions: Revisionen anzeigen - label_visibility_private: nur für mich - label_visibility_public: für jeden Benutzer - label_visibility_roles: nur für diese Rollen - label_watched_issues: Beobachtete Tickets - label_week: Woche - label_wiki: Wiki - label_wiki_content_added: Wiki-Seite hinzugefügt - label_wiki_content_updated: Wiki-Seite aktualisiert - label_wiki_edit: Wiki-Bearbeitung - label_wiki_edit_plural: Wiki-Bearbeitungen - label_wiki_page: Wiki-Seite - label_wiki_page_plural: Wiki-Seiten - label_wiki_page_new: Neue Wiki-Seite - label_workflow: Workflow - label_x_closed_issues_abbr: - zero: 0 geschlossen - one: 1 geschlossen - other: "%{count} geschlossen" - label_x_comments: - zero: keine Kommentare - one: 1 Kommentar - other: "%{count} Kommentare" - label_x_issues: - zero: 0 Tickets - one: 1 Ticket - other: "%{count} Tickets" - label_x_open_issues_abbr: - zero: 0 offen - one: 1 offen - other: "%{count} offen" - label_x_projects: - zero: keine Projekte - one: 1 Projekt - other: "%{count} Projekte" - label_year: Jahr - label_yesterday: gestern - - mail_body_account_activation_request: "Ein neuer Benutzer (%{value}) hat sich registriert. Sein Konto wartet auf Ihre Genehmigung:" - mail_body_account_information: Ihre Konto-Informationen - mail_body_account_information_external: "Sie können sich mit Ihrem Konto %{value} anmelden." - mail_body_lost_password: 'Benutzen Sie den folgenden Link, um Ihr Passwort zu ändern:' - mail_body_lost_password_validity: 'Bitte beachten Sie, dass mit Hilfe dieses Links das Passwort nur einmalig geändert werden kann.' - mail_body_register: 'Um Ihr Konto zu aktivieren, benutzen Sie folgenden Link:' - mail_body_reminder: "%{count} Tickets, die Ihnen zugewiesen sind, müssen in den nächsten %{days} Tagen abgegeben werden:" - mail_body_wiki_content_added: "Die Wiki-Seite '%{id}' wurde von %{author} hinzugefügt." - mail_body_wiki_content_updated: "Die Wiki-Seite '%{id}' wurde von %{author} aktualisiert." - mail_subject_account_activation_request: "Antrag auf %{value} Kontoaktivierung" - mail_subject_lost_password: "Ihr %{value} Passwort" - mail_subject_register: "%{value} Kontoaktivierung" - mail_subject_reminder: "%{count} Tickets müssen in den nächsten %{days} Tagen abgegeben werden" - mail_subject_wiki_content_added: "Wiki-Seite '%{id}' hinzugefügt" - mail_subject_wiki_content_updated: "Wiki-Seite '%{id}' erfolgreich aktualisiert" - mail_subject_security_notification: "Sicherheitshinweis" - mail_body_security_notification_change: "%{field} wurde geändert." - mail_body_security_notification_change_to: "%{field} wurde geändert zu %{value}." - mail_body_security_notification_add: "%{field} %{value} wurde hinzugefügt." - mail_body_security_notification_remove: "%{field} %{value} wurde entfernt." - mail_body_security_notification_notify_enabled: "E-Mail-Adresse %{value} erhält nun Benachrichtigungen." - mail_body_security_notification_notify_disabled: "E-Mail-Adresse %{value} erhält keine Benachrichtigungen mehr." - - notice_account_activated: Ihr Konto ist aktiviert. Sie können sich jetzt anmelden. - notice_account_deleted: Ihr Benutzerkonto wurde unwiderruflich gelöscht. - notice_account_invalid_credentials: Benutzer oder Passwort ist ungültig. - notice_account_lost_email_sent: Eine E-Mail mit Anweisungen, ein neues Passwort zu wählen, wurde Ihnen geschickt. - notice_account_locked: Ihr Konto ist gesperrt. - notice_account_not_activated_yet: Sie haben Ihr Konto noch nicht aktiviert. Wenn Sie die Aktivierungsmail erneut erhalten wollen, klicken Sie bitte hier. - notice_account_password_updated: Passwort wurde erfolgreich aktualisiert. - notice_account_pending: "Ihr Konto wurde erstellt und wartet jetzt auf die Genehmigung des Administrators." - notice_account_register_done: Konto wurde erfolgreich angelegt. Eine E-Mail mit weiteren Instruktionen zur Kontoaktivierung wurde an %{email} gesendet. - notice_account_unknown_email: Unbekannter Benutzer. - notice_account_updated: Konto wurde erfolgreich aktualisiert. - notice_account_wrong_password: Falsches Passwort. - notice_api_access_key_reseted: Ihr API-Zugriffsschlüssel wurde zurückgesetzt. - notice_can_t_change_password: Dieses Konto verwendet eine externe Authentifizierungs-Quelle. Unmöglich, das Passwort zu ändern. - notice_default_data_loaded: Die Standard-Konfiguration wurde erfolgreich geladen. - notice_email_error: "Beim Senden einer E-Mail ist ein Fehler aufgetreten (%{value})." - notice_email_sent: "Eine E-Mail wurde an %{value} gesendet." - notice_failed_to_save_issues: "%{count} von %{total} ausgewählten Tickets konnte(n) nicht gespeichert werden: %{ids}." - notice_failed_to_save_members: "Benutzer konnte nicht gespeichert werden: %{errors}." - notice_failed_to_save_time_entries: "%{count} von %{total} ausgewählten Zeiteinträgen konnte(n) nicht gespeichert werden: %{ids}" - notice_feeds_access_key_reseted: Ihr Atom-Zugriffsschlüssel wurde zurückgesetzt. - notice_file_not_found: Die angefragte Seite existiert nicht oder wurde entfernt. - notice_gantt_chart_truncated: Die Grafik ist unvollständig, da das Maximum der anzeigbaren Aufgaben überschritten wurde (%{max}) - notice_issue_done_ratios_updated: Der Ticket-Fortschritt wurde aktualisiert. - notice_issue_successful_create: Ticket %{id} erstellt. - notice_issue_update_conflict: Das Ticket wurde während Ihrer Bearbeitung von einem anderen Nutzer überarbeitet. - notice_locking_conflict: Datum wurde von einem anderen Benutzer geändert. - notice_new_password_must_be_different: Das neue Passwort muss sich vom dem Aktuellen unterscheiden - notice_no_issue_selected: "Kein Ticket ausgewählt! Bitte wählen Sie die Tickets, die Sie bearbeiten möchten." - notice_not_authorized: Sie sind nicht berechtigt, auf diese Seite zuzugreifen. - notice_not_authorized_archived_project: Das Projekt wurde archiviert und ist daher nicht verfügbar. - notice_successful_connection: Verbindung erfolgreich. - notice_successful_create: Erfolgreich angelegt - notice_successful_delete: Erfolgreich gelöscht. - notice_successful_update: Erfolgreich aktualisiert. - notice_unable_delete_time_entry: Der Zeiterfassungseintrag konnte nicht gelöscht werden. - notice_unable_delete_version: Die Version konnte nicht gelöscht werden. - notice_user_successful_create: Benutzer %{id} angelegt. - - permission_add_issue_notes: Kommentare hinzufügen - permission_add_issue_watchers: Beobachter hinzufügen - permission_add_issues: Tickets hinzufügen - permission_add_messages: Forenbeiträge hinzufügen - permission_add_project: Projekt erstellen - permission_add_subprojects: Unterprojekte erstellen - permission_add_documents: Dokumente hinzufügen - permission_browse_repository: Repository ansehen - permission_close_project: Schließen / erneutes Öffnen eines Projekts - permission_comment_news: News kommentieren - permission_commit_access: Commit-Zugriff - permission_delete_issue_watchers: Beobachter löschen - permission_delete_issues: Tickets löschen - permission_delete_messages: Forenbeiträge löschen - permission_delete_own_messages: Eigene Forenbeiträge löschen - permission_delete_wiki_pages: Wiki-Seiten löschen - permission_delete_wiki_pages_attachments: Anhänge löschen - permission_delete_documents: Dokumente löschen - permission_edit_issue_notes: Kommentare bearbeiten - permission_edit_issues: Tickets bearbeiten - permission_edit_messages: Forenbeiträge bearbeiten - permission_edit_own_issue_notes: Eigene Kommentare bearbeiten - permission_edit_own_messages: Eigene Forenbeiträge bearbeiten - permission_edit_own_time_entries: Selbst gebuchte Aufwände bearbeiten - permission_edit_project: Projekt bearbeiten - permission_edit_time_entries: Gebuchte Aufwände bearbeiten - permission_edit_wiki_pages: Wiki-Seiten bearbeiten - permission_edit_documents: Dokumente bearbeiten - permission_export_wiki_pages: Wiki-Seiten exportieren - permission_log_time: Aufwände buchen - permission_manage_boards: Foren verwalten - permission_manage_categories: Ticket-Kategorien verwalten - permission_manage_files: Dateien verwalten - permission_manage_issue_relations: Ticket-Beziehungen verwalten - permission_manage_members: Mitglieder verwalten - permission_view_news: News ansehen - permission_manage_news: News verwalten - permission_manage_project_activities: Aktivitäten (Zeiterfassung) verwalten - permission_manage_public_queries: Öffentliche Filter verwalten - permission_manage_related_issues: Zugehörige Tickets verwalten - permission_manage_repository: Repository verwalten - permission_manage_subtasks: Unteraufgaben verwalten - permission_manage_versions: Versionen verwalten - permission_manage_wiki: Wiki verwalten - permission_protect_wiki_pages: Wiki-Seiten schützen - permission_rename_wiki_pages: Wiki-Seiten umbenennen - permission_save_queries: Filter speichern - permission_select_project_modules: Projektmodule auswählen - permission_set_issues_private: Tickets privat oder öffentlich markieren - permission_set_notes_private: Kommentar als privat markieren - permission_set_own_issues_private: Eigene Tickets privat oder öffentlich markieren - permission_view_calendar: Kalender ansehen - permission_view_changesets: Changesets ansehen - permission_view_documents: Dokumente ansehen - permission_view_files: Dateien ansehen - permission_view_gantt: Gantt-Diagramm ansehen - permission_view_issue_watchers: Liste der Beobachter ansehen - permission_view_issues: Tickets anzeigen - permission_view_messages: Forenbeiträge ansehen - permission_view_private_notes: Private Kommentare sehen - permission_view_time_entries: Gebuchte Aufwände ansehen - permission_view_wiki_edits: Wiki-Versionsgeschichte ansehen - permission_view_wiki_pages: Wiki ansehen - - project_module_boards: Foren - project_module_calendar: Kalender - project_module_documents: Dokumente - project_module_files: Dateien - project_module_gantt: Gantt - project_module_issue_tracking: Tickets - project_module_news: News - project_module_repository: Repository - project_module_time_tracking: Zeiterfassung - project_module_wiki: Wiki - project_status_active: aktiv - project_status_archived: archiviert - project_status_closed: geschlossen - - setting_activity_days_default: Anzahl Tage pro Seite der Projekt-Aktivität - setting_app_title: Applikationstitel - setting_attachment_max_size: Max. Dateigröße - setting_autofetch_changesets: Changesets automatisch abrufen - setting_autologin: Automatische Anmeldung läuft ab nach - setting_bcc_recipients: E-Mails als Blindkopie (BCC) senden - setting_cache_formatted_text: Formatierten Text im Cache speichern - setting_commit_cross_project_ref: Erlauben Tickets aller anderen Projekte zu referenzieren - setting_commit_fix_keywords: Schlüsselwörter (Status) - setting_commit_logtime_activity_id: Aktivität für die Zeiterfassung - setting_commit_logtime_enabled: Aktiviere Zeiterfassung via Commit-Nachricht - setting_commit_ref_keywords: Schlüsselwörter (Beziehungen) - setting_cross_project_issue_relations: Ticket-Beziehungen zwischen Projekten erlauben - setting_cross_project_subtasks: Projektübergreifende Unteraufgaben erlauben - setting_date_format: Datumsformat - setting_default_issue_start_date_to_creation_date: Aktuelles Datum als Beginn für neue Tickets verwenden - setting_default_language: Standardsprache - setting_default_notification_option: Standard Benachrichtigungsoptionen - setting_default_projects_modules: Standardmäßig aktivierte Module für neue Projekte - setting_default_projects_public: Neue Projekte sind standardmäßig öffentlich - setting_default_projects_tracker_ids: Standardmäßig aktivierte Tracker für neue Projekte - setting_diff_max_lines_displayed: Maximale Anzahl anzuzeigender Diff-Zeilen - setting_display_subprojects_issues: Tickets von Unterprojekten im Hauptprojekt anzeigen - setting_emails_footer: E-Mail-Fußzeile - setting_emails_header: E-Mail-Kopfzeile - setting_enabled_scm: Aktivierte Versionskontrollsysteme - setting_feeds_limit: Max. Anzahl Einträge pro Atom-Feed - setting_file_max_size_displayed: Maximale Größe inline angezeigter Textdateien - setting_force_default_language_for_anonymous: Standardsprache für anonyme Benutzer erzwingen - setting_force_default_language_for_loggedin: Standardsprache für angemeldete Benutzer erzwingen - setting_gantt_items_limit: Maximale Anzahl von Aufgaben die im Gantt-Chart angezeigt werden - setting_gravatar_default: Standard-Gravatar-Bild - setting_gravatar_enabled: Gravatar-Benutzerbilder benutzen - setting_host_name: Hostname - setting_issue_done_ratio: Berechne den Ticket-Fortschritt mittels - setting_issue_done_ratio_issue_field: Ticket-Feld % erledigt - setting_issue_done_ratio_issue_status: Ticket-Status - setting_issue_group_assignment: Ticketzuweisung an Gruppen erlauben - setting_issue_list_default_columns: Standard-Spalten in der Ticket-Auflistung - setting_issues_export_limit: Max. Anzahl Tickets bei CSV/PDF-Export - setting_jsonp_enabled: JSONP Unterstützung aktivieren - setting_link_copied_issue: Tickets beim Kopieren verlinken - setting_login_required: Authentifizierung erforderlich - setting_mail_from: E-Mail-Absender - setting_mail_handler_api_enabled: Abruf eingehender E-Mails aktivieren - setting_mail_handler_api_key: API-Schlüssel für eingehende E-Mails - setting_sys_api_key: API-Schlüssel für Webservice zur Repository-Verwaltung - setting_mail_handler_body_delimiters: "Schneide E-Mails nach einer dieser Zeilen ab" - setting_mail_handler_excluded_filenames: Anhänge nach Namen ausschließen - setting_new_project_user_role_id: Rolle, die einem Nicht-Administrator zugeordnet wird, der ein Projekt erstellt - setting_non_working_week_days: Arbeitsfreie Tage - setting_openid: Erlaube OpenID-Anmeldung und -Registrierung - setting_password_min_length: Mindestlänge des Passworts - setting_password_max_age: Erzwinge Passwortwechsel nach - setting_lost_password: Erlaube Passwort-Zurücksetzen per E-Mail - setting_per_page_options: Objekte pro Seite - setting_plain_text_mail: Nur reinen Text (kein HTML) senden - setting_protocol: Protokoll - setting_repositories_encodings: Kodierung von Anhängen und Repositories - setting_repository_log_display_limit: Maximale Anzahl anzuzeigender Revisionen in der Historie einer Datei - setting_rest_api_enabled: REST-Schnittstelle aktivieren - setting_self_registration: Registrierung ermöglichen - setting_show_custom_fields_on_registration: Benutzerdefinierte Felder bei der Registrierung abfragen - setting_sequential_project_identifiers: Fortlaufende Projektkennungen generieren - setting_session_lifetime: Längste Dauer einer Sitzung - setting_session_timeout: Zeitüberschreitung bei Inaktivität - setting_start_of_week: Wochenanfang - setting_sys_api_enabled: Webservice zur Verwaltung der Repositories benutzen - setting_text_formatting: Textformatierung - setting_thumbnails_enabled: Vorschaubilder von Dateianhängen anzeigen - setting_thumbnails_size: Größe der Vorschaubilder (in Pixel) - setting_time_format: Zeitformat - setting_timespan_format: Format für Zeitspannen - setting_unsubscribe: Erlaubt Benutzern das eigene Benutzerkonto zu löschen - setting_user_format: Benutzer-Anzeigeformat - setting_welcome_text: Willkommenstext - setting_wiki_compression: Wiki-Historie komprimieren - - status_active: aktiv - status_locked: gesperrt - status_registered: nicht aktivierte - - text_account_destroy_confirmation: "Möchten Sie wirklich fortfahren?\nIhr Benutzerkonto wird für immer gelöscht und kann nicht wiederhergestellt werden." - text_are_you_sure: Sind Sie sicher? - text_assign_time_entries_to_project: Gebuchte Aufwände dem Projekt zuweisen - text_caracters_maximum: "Max. %{count} Zeichen." - text_caracters_minimum: "Muss mindestens %{count} Zeichen lang sein." - text_comma_separated: Mehrere Werte erlaubt (durch Komma getrennt). - text_convert_available: ImageMagick-Konvertierung verfügbar (optional) - text_gs_available: ImageMagick PDF-Unterstützung verfügbar (optional) - text_custom_field_possible_values_info: 'Eine Zeile pro Wert' - text_default_administrator_account_changed: Administrator-Passwort geändert - text_destroy_time_entries: Gebuchte Aufwände löschen - text_destroy_time_entries_question: Es wurden bereits %{hours} Stunden auf dieses Ticket gebucht. Was soll mit den Aufwänden geschehen? - text_diff_truncated: '... Dieser Diff wurde abgeschnitten, weil er die maximale Anzahl anzuzeigender Zeilen überschreitet.' - text_email_delivery_not_configured: "Der SMTP-Server ist nicht konfiguriert und Mailbenachrichtigungen sind ausgeschaltet.\nNehmen Sie die Einstellungen für Ihren SMTP-Server in config/configuration.yml vor und starten Sie die Applikation neu." - text_enumeration_category_reassign_to: 'Die Objekte stattdessen diesem Wert zuordnen:' - text_enumeration_destroy_question: "%{count} Objekt(e) sind diesem Wert zugeordnet." - text_file_repository_writable: Verzeichnis für Dateien beschreibbar - text_git_repository_note: Repository steht für sich alleine (bare) und liegt lokal (z.B. /gitrepo, c:\gitrepo) - text_issue_added: "Ticket %{id} wurde erstellt von %{author}." - text_issue_category_destroy_assignments: Kategorie-Zuordnung entfernen - text_issue_category_destroy_question: "Einige Tickets (%{count}) sind dieser Kategorie zugeordnet. Was möchten Sie tun?" - text_issue_category_reassign_to: Tickets dieser Kategorie zuordnen - text_issue_conflict_resolution_add_notes: Nur meine Kommentare hinzufügen, meine übrigen Änderungen verwerfen - text_issue_conflict_resolution_cancel: Meine Kommentare und Änderungen verwerfen und %{link} neu anzeigen - text_issue_conflict_resolution_overwrite: Meine Änderungen trotzdem übernehmen (bisherige Kommentare bleiben bestehen, weitere Änderungen werden möglicherweise überschrieben) - text_issue_updated: "Ticket %{id} wurde aktualisiert von %{author}." - text_issues_destroy_confirmation: 'Sind Sie sicher, dass Sie die ausgewählten Tickets löschen möchten?' - text_issues_destroy_descendants_confirmation: Dies wird auch %{count} Unteraufgabe/n löschen. - text_issues_ref_in_commit_messages: Ticket-Beziehungen und -Status in Commit-Nachrichten - text_journal_added: "%{label} %{value} wurde hinzugefügt" - text_journal_changed: "%{label} wurde von %{old} zu %{new} geändert" - text_journal_changed_no_detail: "%{label} aktualisiert" - text_journal_deleted: "%{label} %{old} wurde gelöscht" - text_journal_set_to: "%{label} wurde auf %{value} gesetzt" - text_length_between: "Länge zwischen %{min} und %{max} Zeichen." - text_line_separated: Mehrere Werte sind erlaubt (eine Zeile pro Wert). - text_load_default_configuration: Standard-Konfiguration laden - text_mercurial_repository_note: Lokales Repository (e.g. /hgrepo, c:\hgrepo) - text_min_max_length_info: 0 heißt keine Beschränkung - text_no_configuration_data: "Rollen, Tracker, Ticket-Status und Workflows wurden noch nicht konfiguriert.\nEs ist sehr zu empfehlen, die Standard-Konfiguration zu laden. Sobald sie geladen ist, können Sie diese abändern." - 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_plugin_assets_writable: Verzeichnis für Plugin-Assets beschreibbar - text_project_closed: Dieses Projekt ist geschlossen und kann nicht bearbeitet werden. - text_project_destroy_confirmation: Sind Sie sicher, dass Sie das Projekt löschen wollen? - text_project_identifier_info: 'Kleinbuchstaben (a-z), Ziffern, Binde- und Unterstriche erlaubt.
    Einmal gespeichert, kann die Kennung nicht mehr geändert werden.' - text_reassign_time_entries: 'Gebuchte Aufwände diesem Ticket zuweisen:' - text_regexp_info: z. B. ^[A-Z0-9]+$ - text_repository_identifier_info: 'Kleinbuchstaben (a-z), Ziffern, Binde- und Unterstriche erlaubt.
    Einmal gespeichert, kann die Kennung nicht mehr geändert werden.' - text_repository_usernames_mapping: "Bitte legen Sie die Zuordnung der Redmine-Benutzer zu den Benutzernamen der Commit-Nachrichten des Repositories fest.\nBenutzer mit identischen Redmine- und Repository-Benutzernamen oder -E-Mail-Adressen werden automatisch zugeordnet." - text_minimagick_available: MiniMagick verfügbar (optional) - text_scm_command: Kommando - text_scm_command_not_available: SCM-Kommando ist nicht verfügbar. Bitte prüfen Sie die Einstellungen im Administrationspanel. - text_scm_command_version: Version - text_scm_config: Die SCM-Kommandos können in der in config/configuration.yml konfiguriert werden. Redmine muss anschließend neu gestartet werden. - text_scm_path_encoding_note: "Standard: UTF-8" - text_select_mail_notifications: Bitte wählen Sie die Aktionen aus, für die eine Mailbenachrichtigung gesendet werden soll. - text_select_project_modules: 'Bitte wählen Sie die Module aus, die in diesem Projekt aktiviert sein sollen:' - text_session_expiration_settings: "Achtung: Änderungen können aktuelle Sitzungen beenden, Ihre eingeschlossen!" - text_status_changed_by_changeset: "Status geändert durch Changeset %{value}." - text_subprojects_destroy_warning: "Dessen Unterprojekte (%{value}) werden ebenfalls gelöscht." - text_subversion_repository_note: 'Beispiele: file:///, http://, https://, svn://, svn+[tunnelscheme]://' - text_time_entries_destroy_confirmation: Sind Sie sicher, dass Sie die ausgewählten Zeitaufwände löschen möchten? - text_time_logged_by_changeset: Angewendet in Changeset %{value}. - text_tip_issue_begin_day: Aufgabe, die an diesem Tag beginnt - text_tip_issue_begin_end_day: Aufgabe, die an diesem Tag beginnt und endet - text_tip_issue_end_day: Aufgabe, die an diesem Tag endet - text_tracker_no_workflow: Kein Workflow für diesen Tracker definiert. - text_turning_multiple_off: Wenn Sie die Mehrfachauswahl deaktivieren, werden Felder mit Mehrfachauswahl bereinigt. - Dadurch wird sichergestellt, dass lediglich ein Wert pro Feld ausgewählt ist. - text_unallowed_characters: Nicht erlaubte Zeichen - text_user_mail_option: "Für nicht ausgewählte Projekte werden Sie nur Benachrichtigungen für Dinge erhalten, die Sie beobachten oder an denen Sie beteiligt sind (z. B. Tickets, deren Autor Sie sind oder die Ihnen zugewiesen sind)." - text_user_wrote: "%{value} schrieb:" - text_user_wrote_in: "%{value} schrieb (%{link}):" - text_warn_on_leaving_unsaved: Die aktuellen Änderungen gehen verloren, wenn Sie diese Seite verlassen. - text_wiki_destroy_confirmation: Sind Sie sicher, dass Sie dieses Wiki mit sämtlichem Inhalt löschen möchten? - text_wiki_page_destroy_children: Lösche alle Unterseiten - text_wiki_page_destroy_question: "Diese Seite hat %{descendants} Unterseite(n). Was möchten Sie tun?" - text_wiki_page_nullify_children: Verschiebe die Unterseiten auf die oberste Ebene - text_wiki_page_reassign_children: Ordne die Unterseiten dieser Seite zu - text_workflow_edit: Workflow zum Bearbeiten auswählen - text_zoom_in: Ansicht vergrößern - text_zoom_out: Ansicht verkleinern - - version_status_closed: abgeschlossen - version_status_locked: gesperrt - version_status_open: offen - - warning_attachments_not_saved: "%{count} Datei(en) konnten nicht gespeichert werden." - label_search_attachments_yes: Namen und Beschreibungen von Anhängen durchsuchen - label_search_attachments_no: Keine Anhänge suchen - label_search_attachments_only: Nur Anhänge suchen - label_search_open_issues_only: Nur offene Tickets - field_address: E-Mail - setting_max_additional_emails: Maximale Anzahl zusätzlicher E-Mailadressen - label_email_address_plural: E-Mails - label_email_address_add: E-Mailadresse hinzufügen - label_enable_notifications: Benachrichtigungen aktivieren - label_disable_notifications: Benachrichtigungen deaktivieren - setting_search_results_per_page: Suchergebnisse pro Seite - label_blank_value: leer - permission_copy_issues: Tickets kopieren - error_password_expired: Ihr Passwort ist abgelaufen oder der Administrator verlangt eine Passwortänderung. - field_time_entries_visibility: Zeiten-Sichtbarkeit - field_remote_ip: IP-Adresse - label_parent_task_attributes: Eigenschaften übergeordneter Aufgaben - label_parent_task_attributes_derived: Abgeleitet von Unteraufgaben - label_parent_task_attributes_independent: Unabhängig von Unteraufgaben - label_time_entries_visibility_all: Alle Zeitaufwände - label_time_entries_visibility_own: Nur eigene Aufwände - label_member_management: Mitglieder verwalten - label_member_management_all_roles: Alle Rollen - label_member_management_selected_roles_only: Nur diese Rollen - label_total_spent_time: Aufgewendete Zeit aller Projekte anzeigen - notice_import_finished: "%{count} Einträge wurden importiert" - notice_import_finished_with_errors: "%{count} von %{total} Einträgen konnten nicht importiert werden" - error_invalid_file_encoding: Die Datei ist keine gültige %{encoding} kodierte Datei - error_invalid_csv_file_or_settings: Die Datei ist keine CSV-Datei oder entspricht nicht den Einstellungen unten - error_can_not_read_import_file: Beim Einlesen der Datei ist ein Fehler aufgetreten - permission_import_issues: Tickets importieren - label_import_issues: Tickets importieren - label_select_file_to_import: Bitte wählen Sie eine Datei für den Import aus - label_fields_separator: Trennzeichen - label_fields_wrapper: Textqualifizierer - label_encoding: Kodierung - label_comma_char: Komma - label_semi_colon_char: Semikolon - label_quote_char: Anführungszeichen - label_double_quote_char: Doppelte Anführungszeichen - label_fields_mapping: Zuordnung der Felder - label_file_content_preview: Inhaltsvorschau - label_create_missing_values: Ergänze fehlende Werte - button_import: Importieren - field_total_estimated_hours: Summe des geschätzten Aufwands - label_api: API - label_total_plural: Summe - label_assigned_issues: Zugewiesene Tickets - label_field_format_enumeration: Eigenschaft/Wert-Paare - label_f_hour_short: '%{value} h' - field_default_version: Standard-Version - error_attachment_extension_not_allowed: Der Dateityp %{extension} des Anhangs ist nicht zugelassen - setting_attachment_extensions_allowed: Zugelassene Dateitypen - setting_attachment_extensions_denied: Nicht zugelassene Dateitypen - label_any_open_issues: irgendein offenes Ticket - label_no_open_issues: kein offenes Ticket - label_default_values_for_new_users: Standardwerte für neue Benutzer - error_ldap_bind_credentials: Ungültiges LDAP Konto/Passwort - mail_body_settings_updated: ! 'Die folgenden Einstellungen wurden geändert:' - label_relations: Beziehungen - button_filter: Filter - mail_body_password_updated: Ihr Passwort wurde geändert. - error_no_tracker_allowed_for_new_issue_in_project: Für dieses Projekt wurden keine Tracker aktiviert. - label_tracker_all: Alle Tracker - label_new_project_issue_tab_enabled: Tab "Neues Ticket" anzeigen - setting_new_item_menu_tab: Menü zum Anlegen neuer Objekte - label_new_object_tab_enabled: Dropdown-Menü "+" anzeigen - label_table_of_contents: Inhaltsverzeichnis - error_no_projects_with_tracker_allowed_for_new_issue: Es gibt keine Projekte mit Trackern, für welche sie Tickets erzeugen können - field_textarea_font: Schriftart für Textbereiche - label_font_default: Standardschrift - label_font_monospace: Nichtproportionale Schrift - label_font_proportional: Proportionale Schrift - setting_commit_logs_formatting: Textformatierung für Commit Nachrichten - setting_mail_handler_enable_regex: Reguläre Ausdrücke verwenden - error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted: Zeitbuchungen für Tickets, die gelöscht werden sind nicht möglich - setting_timelog_required_fields: Erforderliche Felder für Zeitbuchungen - label_attribute_of_object: '%{object_name}''s %{name}' - label_user_mail_option_only_assigned: Nur für Dinge, die ich beobachte oder die mir zugewiesen sind - label_user_mail_option_only_owner: Nur für Dinge, die ich beobachte oder die mir gehören - warning_fields_cleared_on_bulk_edit: Diese Änderungen werden eine automatische Löschung von ein oder mehreren Werten auf den selektierten Objekten zur Folge haben - field_updated_by: Geändert von - field_last_updated_by: Zuletzt geändert von - field_full_width_layout: Layout mit voller Breite - label_last_notes: Letzte Kommentare - field_digest: Checksumme - setting_close_duplicate_issues: Duplikate automatisch schließen - error_exceeds_maximum_hours_per_day: Es können nicht mehr als %{max_hours} Stunden am selben Tag gebucht werden (%{logged_hours} Stunden wurden bereits gebucht) - setting_time_entry_list_defaults: Standard-Spalten in der Zeiten-Auflistung - setting_timelog_accept_0_hours: Akzeptiere Buchungen mit 0 Stunden - setting_timelog_max_hours_per_day: Maximale Anzahl der täglich buchbaren Stunden pro Benutzer - label_x_revisions: "%{count} Revisionen" - error_can_not_delete_auth_source: Diese Authentifizierungsmethode ist in Verwendung und kann nicht gelöscht werden. - text_login_required_html: Ohne erforderliche Authentifizierung sind öffentlichen Projekte und deren Inhalte ohne Anmeldung frei zugänglich. Sie können die verwendeten Berechtigungen anpassen. - label_login_required_yes: "Ja" - label_login_required_no: "Nein, anonymen Zugriff auf öffentliche Projekte erlauben" - text_project_is_public_non_member: Öffentliche Projekte und deren Inhalte sind für alle angemeldeten Benutzer zugänglich. - text_project_is_public_anonymous: Öffentliche Projekte und deren Inhalte sind ohne Anmeldung frei zugänglich. - label_nothing_to_preview: Keine Vorschau vorhanden - error_spent_on_future_date: Zeitbuchung nicht möglich. Das Datum liegt in der Zukunft - setting_timelog_accept_future_dates: Akzeptiere Zeitbuchungen in der Zukunft - label_delete_link_to_subtask: Beziehung löschen - error_not_allowed_to_log_time_for_other_users: Sie sind nicht berechtigt, Aufwände für andere Benutzer zu buchen. - permission_log_time_for_other_users: Aufwände für andere Benutzer buchen - label_tomorrow: morgen - label_next_week: nächste Woche - label_next_month: nächster Monat - text_role_no_workflow: Für diese Rolle ist kein Workflow definiert - text_status_no_workflow: Kein Tracker verwendet diesen Status in den Workflows - setting_mail_handler_preferred_body_part: Bevorzugter Teil von E-Mails im Multipart-Format - setting_show_status_changes_in_mail_subject: Zeige Statusänderungen im Betreff der Mailbenachrichtigung für Tickets - label_inherited_from_parent_project: Vom Hauptprojekt geerbt - label_inherited_from_group: Von der Gruppe %{name} geerbt - label_trackers_description: Beschreibung des Trackers - label_open_trackers_description: Beschreibung aller Tracker anzeigen - label_preferred_body_part_text: Text - label_preferred_body_part_html: HTML (experimentell) - field_parent_issue_subject: Thema der übergeordneten Aufgabe - - permission_edit_own_issues: Eigene Tickets bearbeiten - text_select_apply_tracker: Tracker wählen - label_updated_issues: Aktualisierte Tickets - text_avatar_server_config_html: Der aktuelle Avatar-Server ist %{url}. - Die URL kann in config/configuration.yml angepasst werden. - setting_gantt_months_limit: Maximal anzeigbare Monate im Gantt-Diagramm - permission_import_time_entries: Zeitbuchungen importieren - label_import_notifications: Versende E-Mail-Benachrichtigungen während des Imports - field_recently_used_projects: Anzahl kürzlich verwendeter Projekte in der Projekt-Jump-Box - label_optgroup_bookmarks: Lesezeichen - label_optgroup_others: Andere Projekte - label_optgroup_recents: Kürzlich verwendet - button_project_bookmark: Lesezeichen hinzufügen - button_project_bookmark_delete: Lesezeichen entfernen - field_history_default_tab: Standard-Tab für Tickethistorie - label_issue_history_properties: Eigenschaftsänderungen - label_issue_history_notes: Notizen - label_last_tab_visited: Zuletzt geöffneter Tab - text_no_subject: kein Thema - setting_password_required_char_classes: Für Passwörter benötigte Zeichenklassen - label_password_char_class_uppercase: Großbuchstaben - label_password_char_class_lowercase: Kleinbuchstaben - label_password_char_class_digits: Ziffern - label_password_char_class_special_chars: Sonderzeichen - text_characters_must_contain: Muss enthalten %{character_classes}. - label_starts_with: beginnt mit - label_ends_with: endet mit - label_issue_fixed_version_updated: Zielversion aktualisiert - setting_project_list_defaults: Voreinstellungen Projektliste - label_display_type: Ergebnisse anzeigen als - label_display_type_list: Liste - label_display_type_board: Karte - label_my_bookmarks: Meine Lesezeichen - label_import_time_entries: Zeitbuchungen importieren diff --git a/config/locales/el.yml b/config/locales/el.yml deleted file mode 100644 index 714b0dd..0000000 --- a/config/locales/el.yml +++ /dev/null @@ -1,1315 +0,0 @@ -# Greek translations for Ruby on Rails -# by Vaggelis Typaldos (vtypal@gmail.com), Spyros Raptis (spirosrap@gmail.com) - -el: - direction: ltr - date: - formats: - # Use the strftime parameters for formats. - # When no format has been given, it uses default. - # You can provide other formats here if you like! - default: "%m/%d/%Y" - short: "%b %d" - long: "%B %d, %Y" - - day_names: [Κυριακή, Δευτέρα, Τρίτη, Τετάρτη, Πέμπτη, Παρασκευή, Σάββατο] - abbr_day_names: [Κυρ, Δευ, Τρι, Τετ, Πεμ, Παρ, Σαβ] - - # Don't forget the nil at the beginning; there's no such thing as a 0th month - month_names: [~, Ιανουάριος, Φεβρουάριος, Μάρτιος, Απρίλιος, Μάϊος, Ιούνιος, Ιούλιος, Αύγουστος, Σεπτέμβριος, Οκτώβριος, Νοέμβριος, Δεκέμβριος] - abbr_month_names: [~, Ιαν, Φεβ, Μαρ, Απρ, Μαϊ, Ιον, Ιολ, Αυγ, Σεπ, Οκτ, Νοε, Δεκ] - # Used in date_select and datime_select. - order: - - :year - - :month - - :day - - time: - formats: - default: "%m/%d/%Y %I:%M %p" - time: "%I:%M %p" - short: "%d %b %H:%M" - long: "%B %d, %Y %H:%M" - am: "πμ" - pm: "μμ" - - datetime: - distance_in_words: - half_a_minute: "μισό λεπτό" - less_than_x_seconds: - one: "λιγότερο από 1 δευτερόλεπτο" - other: "λιγότερο από %{count} δευτερόλεπτα" - x_seconds: - one: "1 δευτερόλεπτο" - other: "%{count} δευτερόλεπτα" - less_than_x_minutes: - one: "λιγότερο από ένα λεπτό" - other: "λιγότερο από %{count} λεπτά" - x_minutes: - one: "1 λεπτό" - other: "%{count} λεπτά" - about_x_hours: - one: "περίπου 1 ώρα" - other: "περίπου %{count} ώρες" - x_hours: - one: "1 ώρα" - other: "%{count} ώρες" - x_days: - one: "1 ημέρα" - other: "%{count} ημέρες" - about_x_months: - one: "περίπου 1 μήνα" - other: "περίπου %{count} μήνες" - x_months: - one: "1 μήνα" - other: "%{count} μήνες" - about_x_years: - one: "περίπου 1 χρόνο" - other: "περίπου %{count} χρόνια" - over_x_years: - one: "πάνω από 1 χρόνο" - other: "πάνω από %{count} χρόνια" - almost_x_years: - one: "almost 1 year" - other: "almost %{count} years" - - number: - format: - separator: "." - delimiter: "" - precision: 3 - human: - format: - precision: 3 - delimiter: "" - storage_units: - format: "%n %u" - units: - kb: KB - tb: TB - gb: GB - byte: - one: Byte - other: Bytes - mb: MB - -# Used in array.to_sentence. - support: - array: - sentence_connector: "and" - skip_last_comma: false - - activerecord: - errors: - template: - header: - one: "1 error prohibited this %{model} from being saved" - other: "%{count} errors prohibited this %{model} from being saved" - messages: - inclusion: "δεν περιέχεται στη λίστα" - exclusion: "έχει κατοχυρωθεί" - invalid: "είναι άκυρο" - confirmation: "δεν αντιστοιχεί με την επιβεβαίωση" - accepted: "πρέπει να γίνει αποδοχή" - empty: "δε μπορεί να είναι άδειο" - blank: "δε μπορεί να είναι κενό" - too_long: "έχει πολλούς (μέγ.επιτρ. %{count} χαρακτήρες)" - too_short: "έχει λίγους (ελάχ.επιτρ. %{count} χαρακτήρες)" - wrong_length: "δεν είναι σωστός ο αριθμός χαρακτήρων (πρέπει να έχει %{count} χαρακτήρες)" - taken: "έχει ήδη κατοχυρωθεί" - not_a_number: "δεν είναι αριθμός" - not_a_date: "δεν είναι σωστή ημερομηνία" - greater_than: "πρέπει να είναι μεγαλύτερο από %{count}" - greater_than_or_equal_to: "πρέπει να είναι μεγαλύτερο από ή ίσο με %{count}" - equal_to: "πρέπει να είναι ίσον με %{count}" - less_than: "πρέπει να είναι μικρότερη από %{count}" - less_than_or_equal_to: "πρέπει να είναι μικρότερο από ή ίσο με %{count}" - odd: "πρέπει να είναι μονός" - even: "πρέπει να είναι ζυγός" - greater_than_start_date: "πρέπει να είναι αργότερα από την ημερομηνία έναρξης" - not_same_project: "δεν ανήκει στο ίδιο έργο" - circular_dependency: "Αυτή η σχέση θα δημιουργήσει κυκλικές εξαρτήσεις" - cant_link_an_issue_with_a_descendant: "An issue can not be linked to one of its subtasks" - earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" - not_a_regexp: "is not a valid regular expression" - open_issue_with_closed_parent: "An open issue cannot be attached to a closed parent task" - must_contain_uppercase: "must contain uppercase letters (A-Z)" - must_contain_lowercase: "must contain lowercase letters (a-z)" - must_contain_digits: "must contain digits (0-9)" - must_contain_special_chars: "must contain special characters (!, $, %, ...)" - - actionview_instancetag_blank_option: Παρακαλώ επιλέξτε - - general_text_No: 'Όχι' - general_text_Yes: 'Ναι' - general_text_no: 'όχι' - general_text_yes: 'ναι' - general_lang_name: 'Greek (Ελληνικά)' - general_csv_separator: ',' - general_csv_decimal_separator: '.' - general_csv_encoding: UTF-8 - general_pdf_fontname: freesans - general_pdf_monospaced_fontname: freemono - general_first_day_of_week: '7' - - notice_account_updated: Ο λογαριασμός ενημερώθηκε επιτυχώς. - notice_account_invalid_credentials: Άκυρο όνομα χρήστη ή κωδικού πρόσβασης - notice_account_password_updated: Ο κωδικός πρόσβασης ενημερώθηκε επιτυχώς. - notice_account_wrong_password: Λάθος κωδικός πρόσβασης - notice_account_register_done: Ο λογαριασμός δημιουργήθηκε επιτυχώς. Για να ενεργοποιήσετε το λογαριασμό σας, πατήστε το σύνδεσμο που σας έχει αποσταλεί με email. - notice_account_unknown_email: Άγνωστος χρήστης. - notice_can_t_change_password: Αυτός ο λογαριασμός χρησιμοποιεί εξωτερική πηγή πιστοποίησης. Δεν είναι δυνατόν να αλλάξετε τον κωδικό πρόσβασης. - notice_account_lost_email_sent: Σας έχει αποσταλεί email με οδηγίες για την επιλογή νέου κωδικού πρόσβασης. - notice_account_activated: Ο λογαριασμός σας έχει ενεργοποιηθεί. Τώρα μπορείτε να συνδεθείτε. - notice_successful_create: Επιτυχής δημιουργία. - notice_successful_update: Επιτυχής ενημέρωση. - notice_successful_delete: Επιτυχής διαγραφή. - notice_successful_connection: Επιτυχής σύνδεση. - notice_file_not_found: Η σελίδα που ζητήσατε δεν υπάρχει ή έχει αφαιρεθεί. - notice_locking_conflict: Τα δεδομένα έχουν ενημερωθεί από άλλο χρήστη. - notice_not_authorized: Δεν έχετε δικαίωμα πρόσβασης σε αυτή τη σελίδα. - notice_email_sent: "Ένα μήνυμα ηλεκτρονικού ταχυδρομείου εστάλη στο %{value}" - notice_email_error: "Σφάλμα κατά την αποστολή του μηνύματος στο (%{value})" - notice_feeds_access_key_reseted: Έγινε επαναφορά στο κλειδί πρόσβασης Atom. - notice_failed_to_save_issues: "Αποτυχία αποθήκευσης %{count} θεμα(των) από τα %{total} επιλεγμένα: %{ids}." - notice_no_issue_selected: "Κανένα θέμα δεν είναι επιλεγμένο! Παρακαλούμε, ελέγξτε τα θέματα που θέλετε να επεξεργαστείτε." - notice_account_pending: "Ο λογαριασμός σας έχει δημιουργηθεί και είναι σε στάδιο έγκρισης από τον διαχειριστή." - notice_default_data_loaded: Οι προεπιλεγμένες ρυθμίσεις φορτώθηκαν επιτυχώς. - notice_unable_delete_version: Αδύνατον να διαγραφεί η έκδοση. - - error_can_t_load_default_data: "Οι προεπιλεγμένες ρυθμίσεις δεν μπόρεσαν να φορτωθούν:: %{value}" - error_scm_not_found: "Η εγγραφή ή η αναθεώρηση δεν βρέθηκε στο αποθετήριο." - error_scm_command_failed: "Παρουσιάστηκε σφάλμα κατά την προσπάθεια πρόσβασης στο αποθετήριο: %{value}" - error_scm_annotate: "Η καταχώριση δεν υπάρχει ή δεν μπορεί να σχολιαστεί." - error_issue_not_found_in_project: 'Το θέμα δεν βρέθηκε ή δεν ανήκει σε αυτό το έργο' - error_no_tracker_in_project: 'Δεν υπάρχει ανιχνευτής για αυτό το έργο. Παρακαλώ ελέγξτε τις ρυθμίσεις του έργου.' - error_no_default_issue_status: 'Δεν έχει οριστεί η προεπιλογή κατάστασης θεμάτων. Παρακαλώ ελέγξτε τις ρυθμίσεις σας (Μεταβείτε στην "Διαχείριση -> Κατάσταση θεμάτων").' - - warning_attachments_not_saved: "%{count} αρχείο(α) δε μπορούν να αποθηκευτούν." - - mail_subject_lost_password: "Ο κωδικός σας %{value}" - mail_body_lost_password: 'Για να αλλάξετε τον κωδικό πρόσβασης, πατήστε τον ακόλουθο σύνδεσμο:' - mail_subject_register: "Ενεργοποίηση του λογαριασμού χρήστη %{value} " - mail_body_register: 'Για να ενεργοποιήσετε το λογαριασμό σας, επιλέξτε τον ακόλουθο σύνδεσμο:' - mail_body_account_information_external: "Μπορείτε να χρησιμοποιήσετε τον λογαριασμό %{value} για να συνδεθείτε." - mail_body_account_information: Πληροφορίες του λογαριασμού σας - mail_subject_account_activation_request: "αίτημα ενεργοποίησης λογαριασμού %{value}" - mail_body_account_activation_request: "'Ένας νέος χρήστης (%{value}) έχει εγγραφεί. Ο λογαριασμός είναι σε στάδιο αναμονής της έγκρισης σας:" - mail_subject_reminder: "%{count} θέμα(τα) με προθεσμία στις επόμενες %{days} ημέρες" - mail_body_reminder: "%{count}θέμα(τα) που έχουν ανατεθεί σε σας, με προθεσμία στις επόμενες %{days} ημέρες:" - mail_subject_wiki_content_added: "'προστέθηκε η σελίδα wiki %{id}' " - mail_body_wiki_content_added: "Η σελίδα wiki '%{id}' προστέθηκε από τον %{author}." - mail_subject_wiki_content_updated: "'ενημερώθηκε η σελίδα wiki %{id}' " - mail_body_wiki_content_updated: "Η σελίδα wiki '%{id}' ενημερώθηκε από τον %{author}." - - - field_name: Όνομα - field_description: Περιγραφή - field_summary: Συνοπτικά - field_is_required: Απαιτείται - field_firstname: Όνομα - field_lastname: Επώνυμο - field_mail: Email - field_filename: Αρχείο - field_filesize: Μέγεθος - field_downloads: Μεταφορτώσεις - field_author: Συγγραφέας - field_created_on: Δημιουργήθηκε - field_updated_on: Ενημερώθηκε - field_field_format: Μορφοποίηση - field_is_for_all: Για όλα τα έργα - field_possible_values: Πιθανές τιμές - field_regexp: Κανονική παράσταση - field_min_length: Ελάχιστο μήκος - field_max_length: Μέγιστο μήκος - field_value: Τιμή - field_category: Κατηγορία - field_title: Τίτλος - field_project: Έργο - field_issue: Θέμα - field_status: Κατάσταση - field_notes: Σημειώσεις - field_is_closed: Κλειστά θέματα - field_is_default: Προεπιλεγμένη τιμή - field_tracker: Ανιχνευτής - field_subject: Θέμα - field_due_date: Προθεσμία - field_assigned_to: Ανάθεση σε - field_priority: Προτεραιότητα - field_fixed_version: Στόχος έκδοσης - field_user: Χρήστης - field_role: Ρόλος - field_homepage: Αρχική σελίδα - field_is_public: Δημόσιο - field_parent: Επιμέρους έργο του - field_is_in_roadmap: Προβολή θεμάτων στο χάρτη πορείας - field_login: Όνομα χρήστη - field_mail_notification: Ειδοποιήσεις email - field_admin: Διαχειριστής - field_last_login_on: Τελευταία σύνδεση - field_language: Γλώσσα - field_effective_date: Ημερομηνία - field_password: Κωδικός πρόσβασης - field_new_password: Νέος κωδικός πρόσβασης - field_password_confirmation: Επιβεβαίωση - field_version: Έκδοση - field_type: Τύπος - field_host: Κόμβος - field_port: Θύρα - field_account: Λογαριασμός - field_base_dn: Βάση DN - field_attr_login: Ιδιότητα εισόδου - field_attr_firstname: Ιδιότητα ονόματος - field_attr_lastname: Ιδιότητα επωνύμου - field_attr_mail: Ιδιότητα email - field_onthefly: Άμεση δημιουργία χρήστη - field_start_date: Εκκίνηση - field_done_ratio: "% επιτεύχθη" - field_auth_source: Τρόπος πιστοποίησης - field_hide_mail: Απόκρυψη διεύθυνσης email - field_comments: Σχόλιο - field_url: URL - field_start_page: Πρώτη σελίδα - field_subproject: Επιμέρους έργο - field_hours: Ώρες - field_activity: Δραστηριότητα - field_spent_on: Ημερομηνία - field_identifier: Στοιχείο αναγνώρισης - field_is_filter: Χρήση ως φίλτρο - field_issue_to: Σχετικά θέματα - field_delay: Καθυστέρηση - field_assignable: Θέματα που μπορούν να ανατεθούν σε αυτό το ρόλο - field_redirect_existing_links: Ανακατεύθυνση των τρεχόντων συνδέσμων - field_estimated_hours: Εκτιμώμενος χρόνος - field_column_names: Στήλες - field_time_zone: Ωριαία ζώνη - field_searchable: Ερευνήσιμο - field_default_value: Προκαθορισμένη τιμή - field_comments_sorting: Προβολή σχολίων - field_parent_title: Γονική σελίδα - field_editable: Επεξεργάσιμο - field_watcher: Παρατηρητής - field_identity_url: OpenID URL - field_content: Περιεχόμενο - field_group_by: Ομαδικά αποτελέσματα από - - setting_app_title: Τίτλος εφαρμογής - setting_welcome_text: Κείμενο υποδοχής - setting_default_language: Προεπιλεγμένη γλώσσα - setting_login_required: Απαιτείται πιστοποίηση - setting_self_registration: Αυτο-εγγραφή - setting_attachment_max_size: Μέγ. μέγεθος συνημμένου - setting_issues_export_limit: Θέματα περιορισμού εξαγωγής - setting_mail_from: Μετάδοση διεύθυνσης email - setting_bcc_recipients: Αποδέκτες κρυφής κοινοποίησης (bcc) - setting_plain_text_mail: Email απλού κειμένου (όχι HTML) - setting_host_name: Όνομα κόμβου και διαδρομή - setting_text_formatting: Μορφοποίηση κειμένου - setting_wiki_compression: Συμπίεση ιστορικού wiki - setting_feeds_limit: Feed περιορισμού περιεχομένου - setting_default_projects_public: Τα νέα έργα έχουν προεπιλεγεί ως δημόσια - setting_autofetch_changesets: Αυτόματη λήψη commits - setting_sys_api_enabled: Ενεργοποίηση WS για διαχείριση αποθετηρίου - setting_commit_ref_keywords: Αναφορά σε λέξεις-κλειδιά - setting_commit_fix_keywords: Καθορισμός σε λέξεις-κλειδιά - setting_autologin: Αυτόματη σύνδεση - setting_date_format: Μορφή ημερομηνίας - setting_time_format: Μορφή ώρας - setting_cross_project_issue_relations: Επιτρέψτε συσχετισμό θεμάτων σε διασταύρωση-έργων - setting_issue_list_default_columns: Προκαθορισμένες εμφανιζόμενες στήλες στη λίστα θεμάτων - setting_emails_footer: Υποσέλιδο στα email - setting_protocol: Πρωτόκολο - setting_per_page_options: Αντικείμενα ανά σελίδα επιλογών - setting_user_format: Μορφή εμφάνισης χρηστών - setting_activity_days_default: Ημέρες που εμφανίζεται στη δραστηριότητα έργου - setting_display_subprojects_issues: Εμφάνιση από προεπιλογή θεμάτων επιμέρους έργων στα κύρια έργα - setting_enabled_scm: Ενεργοποίηση SCM - setting_mail_handler_api_enabled: Ενεργοποίηση WS για εισερχόμενα email - setting_mail_handler_api_key: κλειδί API - setting_sequential_project_identifiers: Δημιουργία διαδοχικών αναγνωριστικών έργου - setting_gravatar_enabled: Χρήση Gravatar εικονιδίων χρηστών - setting_diff_max_lines_displayed: Μεγ.αριθμός εμφάνισης γραμμών diff - setting_file_max_size_displayed: Μεγ.μέγεθος των αρχείων απλού κειμένου που εμφανίζονται σε σειρά - setting_repository_log_display_limit: Μέγιστος αριθμός αναθεωρήσεων που εμφανίζονται στο ιστορικό αρχείου - setting_openid: Επιτρέψτε συνδέσεις OpenID και εγγραφή - setting_password_min_length: Ελάχιστο μήκος κωδικού πρόσβασης - setting_new_project_user_role_id: Απόδοση ρόλου σε χρήστη μη-διαχειριστή όταν δημιουργεί ένα έργο - - permission_add_project: Δημιουργία έργου - permission_edit_project: Επεξεργασία έργου - permission_select_project_modules: Επιλογή μονάδων έργου - permission_manage_members: Διαχείριση μελών - permission_manage_versions: Διαχείριση εκδόσεων - permission_manage_categories: Διαχείριση κατηγοριών θεμάτων - permission_add_issues: Προσθήκη θεμάτων - permission_edit_issues: Επεξεργασία θεμάτων - permission_manage_issue_relations: Διαχείριση συσχετισμών θεμάτων - permission_add_issue_notes: Προσθήκη σημειώσεων - permission_edit_issue_notes: Επεξεργασία σημειώσεων - permission_edit_own_issue_notes: Επεξεργασία δικών μου σημειώσεων - permission_delete_issues: Διαγραφή θεμάτων - permission_manage_public_queries: Διαχείριση δημόσιων αναζητήσεων - permission_save_queries: Αποθήκευση αναζητήσεων - permission_view_gantt: Προβολή διαγράμματος gantt - permission_view_calendar: Προβολή ημερολογίου - permission_view_issue_watchers: Προβολή λίστας παρατηρητών - permission_add_issue_watchers: Προσθήκη παρατηρητών - permission_log_time: Ιστορικό χρόνου που δαπανήθηκε - permission_view_time_entries: Προβολή χρόνου που δαπανήθηκε - permission_edit_time_entries: Επεξεργασία ιστορικού χρόνου - permission_edit_own_time_entries: Επεξεργασία δικού μου ιστορικού χρόνου - permission_manage_news: Διαχείριση νέων - permission_comment_news: Σχολιασμός νέων - permission_view_documents: Προβολή εγγράφων - permission_manage_files: Διαχείριση αρχείων - permission_view_files: Προβολή αρχείων - permission_manage_wiki: Διαχείριση wiki - permission_rename_wiki_pages: Μετονομασία σελίδων wiki - permission_delete_wiki_pages: Διαγραφή σελίδων wiki - permission_view_wiki_pages: Προβολή wiki - permission_view_wiki_edits: Προβολή ιστορικού wiki - permission_edit_wiki_pages: Επεξεργασία σελίδων wiki - permission_delete_wiki_pages_attachments: Διαγραφή συνημμένων - permission_protect_wiki_pages: Προστασία σελίδων wiki - permission_manage_repository: Διαχείριση αποθετηρίου - permission_browse_repository: Διαχείριση εγγράφων - permission_view_changesets: Προβολή changesets - permission_commit_access: Πρόσβαση commit - permission_manage_boards: Διαχείριση πινάκων συζητήσεων - permission_view_messages: Προβολή μηνυμάτων - permission_add_messages: Αποστολή μηνυμάτων - permission_edit_messages: Επεξεργασία μηνυμάτων - permission_edit_own_messages: Επεξεργασία δικών μου μηνυμάτων - permission_delete_messages: Διαγραφή μηνυμάτων - permission_delete_own_messages: Διαγραφή δικών μου μηνυμάτων - - project_module_issue_tracking: Ανίχνευση θεμάτων - project_module_time_tracking: Ανίχνευση χρόνου - project_module_news: Νέα - project_module_documents: Έγγραφα - project_module_files: Αρχεία - project_module_wiki: Wiki - project_module_repository: Αποθετήριο - project_module_boards: Πίνακες συζητήσεων - - label_user: Χρήστης - label_user_plural: Χρήστες - label_user_new: Νέος Χρήστης - label_project: Έργο - label_project_new: Νέο έργο - label_project_plural: Έργα - label_x_projects: - zero: κανένα έργο - one: 1 έργο - other: "%{count} έργα" - label_project_all: Όλα τα έργα - label_project_latest: Τελευταία έργα - label_issue: Θέμα - label_issue_new: Νέο θέμα - label_issue_plural: Θέματα - label_issue_view_all: Προβολή όλων των θεμάτων - label_issues_by: "Θέματα του %{value}" - label_issue_added: Το θέμα προστέθηκε - label_issue_updated: Το θέμα ενημερώθηκε - label_document: Έγγραφο - label_document_new: Νέο έγγραφο - label_document_plural: Έγγραφα - label_document_added: Έγγραφο προστέθηκε - label_role: Ρόλος - label_role_plural: Ρόλοι - label_role_new: Νέος ρόλος - label_role_and_permissions: Ρόλοι και άδειες - label_member: Μέλος - label_member_new: Νέο μέλος - label_member_plural: Μέλη - label_tracker: Ανιχνευτής - label_tracker_plural: Ανιχνευτές - label_tracker_new: Νέος Ανιχνευτής - label_workflow: Ροή εργασίας - label_issue_status: Κατάσταση θέματος - label_issue_status_plural: Κατάσταση θέματος - label_issue_status_new: Νέα κατάσταση - label_issue_category: Κατηγορία θέματος - label_issue_category_plural: Κατηγορίες θεμάτων - label_issue_category_new: Νέα κατηγορία - label_custom_field: Προσαρμοσμένο πεδίο - label_custom_field_plural: Προσαρμοσμένα πεδία - label_custom_field_new: Νέο προσαρμοσμένο πεδίο - label_enumerations: Απαριθμήσεις - label_enumeration_new: Νέα τιμή - label_information: Πληροφορία - label_information_plural: Πληροφορίες - label_register: Εγγραφή - label_login_with_open_id_option: ή συνδεθείτε με OpenID - label_password_lost: Ανάκτηση κωδικού πρόσβασης - label_home: Αρχική σελίδα - label_my_page: Η σελίδα μου - label_my_account: Ο λογαριασμός μου - label_my_projects: Τα έργα μου - label_administration: Διαχείριση - label_login: Σύνδεση - label_logout: Αποσύνδεση - label_help: Βοήθεια - label_reported_issues: Εισηγμένα θέματα - label_assigned_to_me_issues: Θέματα που έχουν ανατεθεί σε μένα - label_last_login: Τελευταία σύνδεση - label_registered_on: Εγγράφηκε την - label_activity: Δραστηριότητα - label_overall_activity: Συνολική δραστηριότητα - label_user_activity: "δραστηριότητα του %{value}" - label_new: Νέο - label_logged_as: Σύνδεδεμένος ως - label_environment: Περιβάλλον - label_authentication: Πιστοποίηση - label_auth_source: Τρόπος πιστοποίησης - label_auth_source_new: Νέος τρόπος πιστοποίησης - label_auth_source_plural: Τρόποι πιστοποίησης - label_subproject_plural: Επιμέρους έργα - label_and_its_subprojects: "%{value} και τα επιμέρους έργα του" - label_min_max_length: Ελάχ. - Μέγ. μήκος - label_list: Λίστα - label_date: Ημερομηνία - label_integer: Ακέραιος - label_float: Αριθμός κινητής υποδιαστολής - label_boolean: Λογικός - label_string: Κείμενο - label_text: Μακροσκελές κείμενο - label_attribute: Ιδιότητα - label_attribute_plural: Ιδιότητες - label_no_data: Δεν υπάρχουν δεδομένα - label_change_status: Αλλαγή κατάστασης - label_history: Ιστορικό - label_attachment: Αρχείο - label_attachment_new: Νέο αρχείο - label_attachment_delete: Διαγραφή αρχείου - label_attachment_plural: Αρχεία - label_file_added: Το αρχείο προστέθηκε - label_report: Αναφορά - label_report_plural: Αναφορές - label_news: Νέα - label_news_new: Προσθήκη νέων - label_news_plural: Νέα - label_news_latest: Τελευταία νέα - label_news_view_all: Προβολή όλων των νέων - label_news_added: Τα νέα προστέθηκαν - label_settings: Ρυθμίσεις - label_overview: Επισκόπηση - label_version: Έκδοση - label_version_new: Νέα έκδοση - label_version_plural: Εκδόσεις - label_confirmation: Επιβεβαίωση - label_export_to: 'Επίσης διαθέσιμο σε:' - label_read: Διάβασε... - label_public_projects: Δημόσια έργα - label_open_issues: Ανοικτό - label_open_issues_plural: Ανοικτά - label_closed_issues: Κλειστό - label_closed_issues_plural: Κλειστά - label_x_open_issues_abbr: - zero: 0 ανοικτά - one: 1 ανοικτό - other: "%{count} ανοικτά" - label_x_closed_issues_abbr: - zero: 0 κλειστά - one: 1 κλειστό - other: "%{count} κλειστά" - label_total: Σύνολο - label_permissions: Άδειες - label_current_status: Τρέχουσα κατάσταση - label_new_statuses_allowed: Νέες καταστάσεις επιτρέπονται - label_all: όλα - label_none: κανένα - label_nobody: κανείς - label_next: Επόμενο - label_previous: Προηγούμενο - label_used_by: Χρησιμοποιήθηκε από - label_details: Λεπτομέρειες - label_add_note: Προσθήκη σημείωσης - label_calendar: Ημερολόγιο - label_months_from: μηνών από - label_gantt: Gantt - label_internal: Εσωτερικό - label_last_changes: "Τελευταίες %{count} αλλαγές" - label_change_view_all: Προβολή όλων των αλλαγών - label_comment: Σχόλιο - label_comment_plural: Σχόλια - label_x_comments: - zero: δεν υπάρχουν σχόλια - one: 1 σχόλιο - other: "%{count} σχόλια" - label_comment_add: Προσθήκη σχολίου - label_comment_added: Τα σχόλια προστέθηκαν - label_comment_delete: Διαγραφή σχολίων - label_query: Προσαρμοσμένη αναζήτηση - label_query_plural: Προσαρμοσμένες αναζητήσεις - label_query_new: Νέα αναζήτηση - label_filter_add: Προσθήκη φίλτρου - label_filter_plural: Φίλτρα - label_equals: είναι - label_not_equals: δεν είναι - label_in_less_than: μικρότερο από - label_in_more_than: περισσότερο από - label_greater_or_equal: '>=' - label_less_or_equal: '<=' - label_in: σε - label_today: σήμερα - label_yesterday: χθες - label_this_week: αυτή την εβδομάδα - label_last_week: την προηγούμενη εβδομάδα - label_last_n_days: "τελευταίες %{count} μέρες" - label_this_month: αυτό το μήνα - label_last_month: τον προηγούμενο μήνα - label_this_year: αυτό το χρόνο - label_date_range: Χρονικό διάστημα - label_less_than_ago: σε λιγότερο από ημέρες πριν - label_more_than_ago: σε περισσότερο από ημέρες πριν - label_ago: ημέρες πριν - label_contains: περιέχει - label_not_contains: δεν περιέχει - label_day_plural: μέρες - label_repository: Αποθετήριο - label_repository_plural: Αποθετήρια - label_browse: Πλοήγηση - label_branch: Branch - label_tag: Tag - label_revision: Αναθεώρηση - label_revision_plural: Αναθεωρήσεις - label_associated_revisions: Συνεταιρικές αναθεωρήσεις - label_added: προστέθηκε - label_modified: τροποποιήθηκε - label_copied: αντιγράφηκε - label_renamed: μετονομάστηκε - label_deleted: διαγράφηκε - label_latest_revision: Τελευταία αναθεώριση - label_latest_revision_plural: Τελευταίες αναθεωρήσεις - label_view_revisions: Προβολή αναθεωρήσεων - label_view_all_revisions: Προβολή όλων των αναθεωρήσεων - label_max_size: Μέγιστο μέγεθος - label_sort_highest: Μετακίνηση στην κορυφή - label_sort_higher: Μετακίνηση προς τα πάνω - label_sort_lower: Μετακίνηση προς τα κάτω - label_sort_lowest: Μετακίνηση στο κατώτατο μέρος - label_roadmap: Χάρτης πορείας - label_roadmap_due_in: "Προθεσμία σε %{value}" - label_roadmap_overdue: "%{value} καθυστερημένο" - label_roadmap_no_issues: Δεν υπάρχουν θέματα για αυτή την έκδοση - label_search: Αναζήτηση - label_result_plural: Αποτελέσματα - label_all_words: Όλες οι λέξεις - label_wiki: Wiki - label_wiki_edit: Επεξεργασία wiki - label_wiki_edit_plural: Επεξεργασία wiki - label_wiki_page: Σελίδα Wiki - label_wiki_page_plural: Σελίδες Wiki - label_index_by_title: Δείκτης ανά τίτλο - label_index_by_date: Δείκτης ανά ημερομηνία - label_current_version: Τρέχουσα έκδοση - label_preview: Προεπισκόπηση - label_feed_plural: Feeds - label_changes_details: Λεπτομέρειες όλων των αλλαγών - label_issue_tracking: Ανίχνευση θεμάτων - label_spent_time: Δαπανημένος χρόνος - label_f_hour: "%{value} ώρα" - label_f_hour_plural: "%{value} ώρες" - label_time_tracking: Ανίχνευση χρόνου - label_change_plural: Αλλαγές - label_statistics: Στατιστικά - label_commits_per_month: Commits ανά μήνα - label_commits_per_author: Commits ανά συγγραφέα - label_view_diff: Προβολή διαφορών - label_diff_inline: σε σειρά - label_diff_side_by_side: αντικρυστά - label_options: Επιλογές - label_copy_workflow_from: Αντιγραφή ροής εργασίας από - label_permissions_report: Συνοπτικός πίνακας αδειών - label_watched_issues: Θέματα υπό παρακολούθηση - label_related_issues: Σχετικά θέματα - label_applied_status: Εφαρμογή κατάστασης - label_loading: Φορτώνεται... - label_relation_new: Νέα συσχέτιση - label_relation_delete: Διαγραφή συσχέτισης - label_relates_to: σχετικό με - label_duplicates: αντίγραφα - label_duplicated_by: αντιγράφηκε από - label_blocks: φραγές - label_blocked_by: φραγή από τον - label_precedes: προηγείται - label_follows: ακολουθεί - label_stay_logged_in: Παραμονή σύνδεσης - label_disabled: απενεργοποιημένη - label_show_completed_versions: Προβολή ολοκληρωμένων εκδόσεων - label_me: εγώ - label_board: Φόρουμ - label_board_new: Νέο φόρουμ - label_board_plural: Φόρουμ - label_topic_plural: Θέματα - label_message_plural: Μηνύματα - label_message_last: Τελευταίο μήνυμα - label_message_new: Νέο μήνυμα - label_message_posted: Το μήνυμα προστέθηκε - label_reply_plural: Απαντήσεις - label_send_information: Αποστολή πληροφοριών λογαριασμού στο χρήστη - label_year: Έτος - label_month: Μήνας - label_week: Εβδομάδα - label_date_from: Από - label_date_to: Έως - label_language_based: Με βάση τη γλώσσα του χρήστη - label_sort_by: "Ταξινόμηση ανά %{value}" - label_send_test_email: Αποστολή δοκιμαστικού email - label_feeds_access_key_created_on: "το κλειδί πρόσβασης Atom δημιουργήθηκε πριν από %{value}" - label_module_plural: Μονάδες - label_added_time_by: "Προστέθηκε από τον %{author} πριν από %{age}" - label_updated_time_by: "Ενημερώθηκε από τον %{author} πριν από %{age}" - label_updated_time: "Ενημερώθηκε πριν από %{value}" - label_jump_to_a_project: Μεταβείτε σε ένα έργο... - label_file_plural: Αρχεία - label_changeset_plural: Changesets - label_default_columns: Προεπιλεγμένες στήλες - label_no_change_option: (Δεν υπάρχουν αλλαγές) - label_bulk_edit_selected_issues: Μαζική επεξεργασία επιλεγμένων θεμάτων - label_theme: Θέμα - label_default: Προεπιλογή - label_search_titles_only: Αναζήτηση τίτλων μόνο - label_user_mail_option_all: "Για όλες τις εξελίξεις σε όλα τα έργα μου" - label_user_mail_option_selected: "Για όλες τις εξελίξεις μόνο στα επιλεγμένα έργα..." - label_user_mail_no_self_notified: "Δεν θέλω να ειδοποιούμαι για τις δικές μου αλλαγές" - label_registration_activation_by_email: ενεργοποίηση λογαριασμού με email - label_registration_manual_activation: χειροκίνητη ενεργοποίηση λογαριασμού - label_registration_automatic_activation: αυτόματη ενεργοποίηση λογαριασμού - label_display_per_page: "Ανά σελίδα: %{value}" - label_age: Ηλικία - label_change_properties: Αλλαγή ιδιοτήτων - label_general: Γενικά - label_scm: SCM - label_plugins: Plugins - label_ldap_authentication: Πιστοποίηση LDAP - label_downloads_abbr: Μ/Φ - label_optional_description: Προαιρετική περιγραφή - label_add_another_file: Προσθήκη άλλου αρχείου - label_preferences: Προτιμήσεις - label_chronological_order: Κατά χρονολογική σειρά - label_reverse_chronological_order: Κατά αντίστροφη χρονολογική σειρά - label_incoming_emails: Εισερχόμενα email - label_generate_key: Δημιουργία κλειδιού - label_issue_watchers: Παρατηρητές - label_example: Παράδειγμα - label_display: Προβολή - label_sort: Ταξινόμηση - label_ascending: Αύξουσα - label_descending: Φθίνουσα - label_date_from_to: Από %{start} έως %{end} - label_wiki_content_added: Η σελίδα Wiki προστέθηκε - label_wiki_content_updated: Η σελίδα Wiki ενημερώθηκε - - button_login: Σύνδεση - button_submit: Αποστολή - button_save: Αποθήκευση - button_check_all: Επιλογή όλων - button_uncheck_all: Αποεπιλογή όλων - button_delete: Διαγραφή - button_create: Δημιουργία - button_create_and_continue: Δημιουργία και συνέχεια - button_test: Τεστ - button_edit: Επεξεργασία - button_add: Προσθήκη - button_change: Αλλαγή - button_apply: Εφαρμογή - button_clear: Καθαρισμός - button_lock: Κλείδωμα - button_unlock: Ξεκλείδωμα - button_download: Μεταφόρτωση - button_list: Λίστα - button_view: Προβολή - button_move: Μετακίνηση - button_back: Πίσω - button_cancel: Ακύρωση - button_activate: Ενεργοποίηση - button_sort: Ταξινόμηση - button_log_time: Ιστορικό χρόνου - button_rollback: Επαναφορά σε αυτή την έκδοση - button_watch: Παρακολούθηση - button_unwatch: Αναίρεση παρακολούθησης - button_reply: Απάντηση - button_archive: Αρχειοθέτηση - button_unarchive: Αναίρεση αρχειοθέτησης - button_reset: Επαναφορά - button_rename: Μετονομασία - button_change_password: Αλλαγή κωδικού πρόσβασης - button_copy: Αντιγραφή - button_annotate: Σχολιασμός - button_update: Ενημέρωση - button_configure: Ρύθμιση - button_quote: Παράθεση - - status_active: ενεργό(ς)/ή - status_registered: εγεγγραμμένο(ς)/η - status_locked: κλειδωμένο(ς)/η - - text_select_mail_notifications: Επιλογή ενεργειών για τις οποίες θα πρέπει να αποσταλεί ειδοποίηση με email. - text_regexp_info: eg. ^[A-Z0-9]+$ - text_min_max_length_info: 0 σημαίνει ότι δεν υπάρχουν περιορισμοί - text_project_destroy_confirmation: Είστε σίγουροι ότι θέλετε να διαγράψετε αυτό το έργο και τα σχετικά δεδομένα του; - text_subprojects_destroy_warning: "Επίσης το(α) επιμέρους έργο(α): %{value} θα διαγραφούν." - text_workflow_edit: Επιλέξτε ένα ρόλο και έναν ανιχνευτή για να επεξεργαστείτε τη ροή εργασίας - text_are_you_sure: Είστε σίγουρος ; - text_tip_issue_begin_day: καθήκοντα που ξεκινάνε σήμερα - text_tip_issue_end_day: καθήκοντα που τελειώνουν σήμερα - text_tip_issue_begin_end_day: καθήκοντα που ξεκινάνε και τελειώνουν σήμερα - text_caracters_maximum: "μέγιστος αριθμός %{count} χαρακτήρες." - text_caracters_minimum: "Πρέπει να περιέχει τουλάχιστον %{count} χαρακτήρες." - text_length_between: "Μήκος μεταξύ %{min} και %{max} χαρακτήρες." - text_tracker_no_workflow: Δεν έχει οριστεί ροή εργασίας για αυτό τον ανιχνευτή - text_unallowed_characters: Μη επιτρεπόμενοι χαρακτήρες - text_comma_separated: Επιτρέπονται πολλαπλές τιμές (χωρισμένες με κόμμα). - text_issues_ref_in_commit_messages: Αναφορά και καθορισμός θεμάτων σε μηνύματα commit - text_issue_added: "Το θέμα %{id} παρουσιάστηκε από τον %{author}." - text_issue_updated: "Το θέμα %{id} ενημερώθηκε από τον %{author}." - text_wiki_destroy_confirmation: Είστε σίγουροι ότι θέλετε να διαγράψετε αυτό το wiki και όλο το περιεχόμενο του ; - text_issue_category_destroy_question: "Κάποια θέματα (%{count}) έχουν εκχωρηθεί σε αυτή την κατηγορία. Τι θέλετε να κάνετε ;" - text_issue_category_destroy_assignments: Αφαίρεση εκχωρήσεων κατηγορίας - text_issue_category_reassign_to: Επανεκχώρηση θεμάτων σε αυτή την κατηγορία - text_user_mail_option: "Για μη επιλεγμένα έργα, θα λάβετε ειδοποιήσεις μόνο για πράγματα που παρακολουθείτε ή στα οποία συμμετέχω ενεργά (π.χ. θέματα των οποίων είστε συγγραφέας ή σας έχουν ανατεθεί)." - text_no_configuration_data: "Οι ρόλοι, οι ανιχνευτές, η κατάσταση των θεμάτων και η ροή εργασίας δεν έχουν ρυθμιστεί ακόμα.\nΣυνιστάται ιδιαίτερα να φορτώσετε τις προεπιλεγμένες ρυθμίσεις. Θα είστε σε θέση να τις τροποποιήσετε μετά τη φόρτωση τους." - text_load_default_configuration: Φόρτωση προεπιλεγμένων ρυθμίσεων - text_status_changed_by_changeset: "Εφαρμόστηκε στο changeset %{value}." - text_issues_destroy_confirmation: 'Είστε σίγουρος ότι θέλετε να διαγράψετε το επιλεγμένο θέμα(τα);' - text_select_project_modules: 'Επιλέξτε ποιες μονάδες θα ενεργοποιήσετε για αυτό το έργο:' - text_default_administrator_account_changed: Ο προκαθορισμένος λογαριασμός του διαχειριστή άλλαξε - text_file_repository_writable: Εγγράψιμος κατάλογος συνημμένων - text_plugin_assets_writable: Εγγράψιμος κατάλογος plugin assets - text_minimagick_available: Διαθέσιμο MiniMagick (προαιρετικό) - text_destroy_time_entries_question: "%{hours} δαπανήθηκαν σχετικά με τα θέματα που πρόκειται να διαγράψετε. Τι θέλετε να κάνετε ;" - text_destroy_time_entries: Διαγραφή αναφερόμενων ωρών - text_assign_time_entries_to_project: Ανάθεση αναφερόμενων ωρών στο έργο - text_reassign_time_entries: 'Ανάθεση εκ νέου των αναφερόμενων ωρών στο θέμα:' - text_user_wrote: "%{value} έγραψε:" - text_user_wrote_in: "%{value} έγραψε (%{link}):" - text_enumeration_destroy_question: "%{count} αντικείμενα έχουν τεθεί σε αυτή την τιμή." - text_enumeration_category_reassign_to: 'Επανεκχώρηση τους στην παρούσα αξία:' - text_email_delivery_not_configured: "Δεν έχουν γίνει ρυθμίσεις παράδοσης email, και οι ειδοποιήσεις είναι απενεργοποιημένες.\nΔηλώστε τον εξυπηρετητή SMTP στο config/configuration.yml και κάντε επανακκίνηση την εφαρμογή για να τις ρυθμίσεις." - text_repository_usernames_mapping: "Επιλέξτε ή ενημερώστε τον χρήστη Redmine που αντιστοιχεί σε κάθε όνομα χρήστη στο ιστορικό του αποθετηρίου.\nΧρήστες με το ίδιο όνομα χρήστη ή email στο Redmine και στο αποθετηρίο αντιστοιχίζονται αυτόματα." - text_diff_truncated: '... Αυτό το diff εχεί κοπεί επειδή υπερβαίνει το μέγιστο μέγεθος που μπορεί να προβληθεί.' - text_custom_field_possible_values_info: 'Μία γραμμή για κάθε τιμή' - text_wiki_page_destroy_question: "Αυτή η σελίδα έχει %{descendants} σελίδες τέκνων και απογόνων. Τι θέλετε να κάνετε ;" - text_wiki_page_nullify_children: "Διατηρήστε τις σελίδες τέκνων ως σελίδες root" - text_wiki_page_destroy_children: "Διαγράψτε όλες τις σελίδες τέκνων και των απογόνων τους" - text_wiki_page_reassign_children: "Επανεκχώριση των σελίδων τέκνων στη γονική σελίδα" - - default_role_manager: Manager - default_role_developer: Developer - default_role_reporter: Reporter - default_tracker_bug: Σφάλματα - default_tracker_feature: Λειτουργίες - default_tracker_support: Υποστήριξη - default_issue_status_new: Νέα - default_issue_status_in_progress: In Progress - default_issue_status_resolved: Επιλυμένο - default_issue_status_feedback: Σχόλια - default_issue_status_closed: Κλειστό - default_issue_status_rejected: Απορριπτέο - default_doc_category_user: Τεκμηρίωση χρήστη - default_doc_category_tech: Τεχνική τεκμηρίωση - default_priority_low: Χαμηλή - default_priority_normal: Κανονική - default_priority_high: Υψηλή - default_priority_urgent: Επείγον - default_priority_immediate: Άμεση - default_activity_design: Σχεδιασμός - default_activity_development: Ανάπτυξη - - enumeration_issue_priorities: Προτεραιότητα θέματος - enumeration_doc_categories: Κατηγορία εγγράφων - enumeration_activities: Δραστηριότητες (κατακερματισμός χρόνου) - text_journal_changed: "%{label} άλλαξε από %{old} σε %{new}" - text_journal_set_to: "%{label} ορίζεται σε %{value}" - text_journal_deleted: "%{label} διαγράφηκε (%{old})" - label_group_plural: Ομάδες - label_group: Ομάδα - label_group_new: Νέα ομάδα - label_time_entry_plural: Χρόνος που δαπανήθηκε - text_journal_added: "%{label} %{value} added" - field_active: Active - enumeration_system_activity: System Activity - permission_delete_issue_watchers: Delete watchers - version_status_closed: closed - version_status_locked: locked - version_status_open: open - error_can_not_reopen_issue_on_closed_version: An issue assigned to a closed version can not be reopened - label_user_anonymous: Anonymous - button_move_and_follow: Move and follow - setting_default_projects_modules: Default enabled modules for new projects - setting_gravatar_default: Default Gravatar image - field_sharing: Sharing - label_version_sharing_hierarchy: With project hierarchy - label_version_sharing_system: With all projects - label_version_sharing_descendants: With subprojects - label_version_sharing_tree: With project tree - label_version_sharing_none: Not shared - error_can_not_archive_project: This project can not be archived - button_copy_and_follow: Copy and follow - label_copy_source: Source - setting_issue_done_ratio: Calculate the issue done ratio with - setting_issue_done_ratio_issue_status: Use the issue status - error_issue_done_ratios_not_updated: Issue done ratios not updated. - error_workflow_copy_target: Please select target tracker(s) and role(s) - setting_issue_done_ratio_issue_field: Use the issue field - label_copy_same_as_target: Same as target - label_copy_target: Target - notice_issue_done_ratios_updated: Issue done ratios updated. - error_workflow_copy_source: Please select a source tracker or role - label_update_issue_done_ratios: Update issue done ratios - setting_start_of_week: Start calendars on - permission_view_issues: View Issues - label_display_used_statuses_only: Only display statuses that are used by this tracker - label_revision_id: Revision %{value} - label_api_access_key: API access key - label_api_access_key_created_on: API access key created %{value} ago - label_feeds_access_key: Atom access key - notice_api_access_key_reseted: Your API access key was reset. - setting_rest_api_enabled: Enable REST web service - label_missing_api_access_key: Missing an API access key - label_missing_feeds_access_key: Missing a Atom access key - button_show: Show - text_line_separated: Multiple values allowed (one line for each value). - setting_mail_handler_body_delimiters: Truncate emails after one of these lines - permission_add_subprojects: Create subprojects - label_subproject_new: New subproject - 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. - Are you sure you want to continue? - label_close_versions: Close completed versions - label_board_sticky: Sticky - label_board_locked: Locked - permission_export_wiki_pages: Export wiki pages - setting_cache_formatted_text: Cache formatted text - permission_manage_project_activities: Manage project activities - error_unable_delete_issue_status: Unable to delete issue status (%{value}) - label_profile: Profile - permission_manage_subtasks: Manage subtasks - field_parent_issue: Parent task - label_subtask_plural: Subtasks - label_project_copy_notifications: Send email notifications during the project copy - error_can_not_delete_custom_field: Unable to delete custom field - error_unable_to_connect: Unable to connect (%{value}) - error_can_not_remove_role: This role is in use and can not be deleted. - error_can_not_delete_tracker: This tracker contains issues and cannot be deleted. - field_principal: Principal - notice_failed_to_save_members: "Failed to save member(s): %{errors}." - text_zoom_out: Zoom out - text_zoom_in: Zoom in - notice_unable_delete_time_entry: Unable to delete time log entry. - label_overall_spent_time: Overall spent time - field_time_entries: Log time - project_module_gantt: Gantt - project_module_calendar: Calendar - button_edit_associated_wikipage: "Edit associated Wiki page: %{page_title}" - field_text: Text field - setting_default_notification_option: Default notification option - label_user_mail_option_only_my_events: Only for things I watch or I'm involved in - label_user_mail_option_none: No events - field_member_of_group: Assignee's group - field_assigned_to_role: Assignee's role - notice_not_authorized_archived_project: The project you're trying to access has been archived. - label_principal_search: "Search for user or group:" - label_user_search: "Search for user:" - field_visible: Visible - setting_commit_logtime_activity_id: Activity for logged time - text_time_logged_by_changeset: Applied in changeset %{value}. - setting_commit_logtime_enabled: Enable time logging - notice_gantt_chart_truncated: The chart was truncated because it exceeds the maximum number of items that can be displayed (%{max}) - setting_gantt_items_limit: Maximum number of items displayed on the gantt chart - field_warn_on_leaving_unsaved: Warn me when leaving a page with unsaved text - text_warn_on_leaving_unsaved: The current page contains unsaved text that will be lost if you leave this page. - label_my_queries: My custom queries - text_journal_changed_no_detail: "%{label} updated" - label_news_comment_added: Comment added to a news - button_expand_all: Expand all - button_collapse_all: Collapse all - label_additional_workflow_transitions_for_assignee: Additional transitions allowed when the user is the assignee - label_additional_workflow_transitions_for_author: Additional transitions allowed when the user is the author - label_bulk_edit_selected_time_entries: Bulk edit selected time entries - text_time_entries_destroy_confirmation: Are you sure you want to delete the selected time entr(y/ies)? - label_role_anonymous: Anonymous - label_role_non_member: Non member - label_issue_note_added: Note added - label_issue_status_updated: Status updated - label_issue_priority_updated: Priority updated - label_issues_visibility_own: Issues created by or assigned to the user - field_issues_visibility: Issues visibility - label_issues_visibility_all: All issues - permission_set_own_issues_private: Set own issues public or private - field_is_private: Private - permission_set_issues_private: Set issues public or private - label_issues_visibility_public: All non private issues - text_issues_destroy_descendants_confirmation: This will also delete %{count} subtask(s). - field_commit_logs_encoding: Κωδικοποίηση μηνυμάτων commit - field_scm_path_encoding: Path encoding - text_scm_path_encoding_note: "Default: UTF-8" - field_path_to_repository: Path to repository - field_root_directory: Root directory - field_cvs_module: Module - field_cvsroot: CVSROOT - text_mercurial_repository_note: Local repository (e.g. /hgrepo, c:\hgrepo) - text_scm_command: Command - text_scm_command_version: Version - label_git_report_last_commit: Report last commit for files and directories - notice_issue_successful_create: Issue %{id} created. - label_between: between - setting_issue_group_assignment: Allow issue assignment to groups - label_diff: diff - text_git_repository_note: Repository is bare and local (e.g. /gitrepo, c:\gitrepo) - description_query_sort_criteria_direction: Sort direction - description_project_scope: Search scope - description_filter: Filter - description_user_mail_notification: Mail notification settings - description_message_content: Message content - description_available_columns: Available Columns - description_issue_category_reassign: Choose issue category - description_search: Searchfield - description_notes: Notes - description_choose_project: Projects - description_query_sort_criteria_attribute: Sort attribute - description_wiki_subpages_reassign: Choose new parent page - description_selected_columns: Selected Columns - label_parent_revision: Parent - label_child_revision: Child - error_scm_annotate_big_text_file: The entry cannot be annotated, as it exceeds the maximum text file size. - setting_default_issue_start_date_to_creation_date: Use current date as start date for new issues - button_edit_section: Edit this section - setting_repositories_encodings: Attachments and repositories encodings - description_all_columns: All Columns - button_export: Export - label_export_options: "%{export_format} export options" - error_attachment_too_big: This file cannot be uploaded because it exceeds the maximum allowed file size (%{max_size}) - notice_failed_to_save_time_entries: "Failed to save %{count} time entrie(s) on %{total} selected: %{ids}." - label_x_issues: - zero: 0 Θέμα - one: 1 Θέμα - other: "%{count} Θέματα" - label_repository_new: New repository - field_repository_is_default: Main repository - label_copy_attachments: Copy attachments - label_item_position: "%{position}/%{count}" - label_completed_versions: Completed versions - text_project_identifier_info: Only lower case letters (a-z), numbers, dashes and underscores are allowed.
    Once saved, the identifier cannot be changed. - field_multiple: Multiple values - setting_commit_cross_project_ref: Allow issues of all the other projects to be referenced and fixed - text_issue_conflict_resolution_add_notes: Add my notes and discard my other changes - text_issue_conflict_resolution_overwrite: Apply my changes anyway (previous notes will be kept but some changes may be overwritten) - notice_issue_update_conflict: The issue has been updated by an other user while you were editing it. - text_issue_conflict_resolution_cancel: Discard all my changes and redisplay %{link} - permission_manage_related_issues: Manage related issues - field_auth_source_ldap_filter: LDAP filter - label_search_for_watchers: Search for watchers to add - notice_account_deleted: Your account has been permanently deleted. - setting_unsubscribe: Allow users to delete their own account - button_delete_my_account: Delete my account - text_account_destroy_confirmation: |- - Are you sure you want to proceed? - Your account will be permanently deleted, with no way to reactivate it. - error_session_expired: Your session has expired. Please login again. - text_session_expiration_settings: "Warning: changing these settings may expire the current sessions including yours." - setting_session_lifetime: Session maximum lifetime - setting_session_timeout: Session inactivity timeout - label_session_expiration: Session expiration - permission_close_project: Close / reopen the project - button_close: Close - button_reopen: Reopen - project_status_active: active - project_status_closed: closed - project_status_archived: archived - text_project_closed: This project is closed and read-only. - notice_user_successful_create: User %{id} created. - field_core_fields: Standard fields - field_timeout: Timeout (in seconds) - setting_thumbnails_enabled: Display attachment thumbnails - setting_thumbnails_size: Thumbnails size (in pixels) - label_status_transitions: Status transitions - label_fields_permissions: Fields permissions - label_readonly: Read-only - label_required: Required - text_repository_identifier_info: Only lower case letters (a-z), numbers, dashes and underscores are allowed.
    Once saved, the identifier cannot be changed. - field_board_parent: Parent forum - label_attribute_of_project: Project's %{name} - label_attribute_of_author: Author's %{name} - label_attribute_of_assigned_to: Assignee's %{name} - label_attribute_of_fixed_version: Target version's %{name} - label_copy_subtasks: Copy subtasks - label_copied_to: copied to - label_copied_from: copied from - label_any_issues_in_project: any issues in project - label_any_issues_not_in_project: any issues not in project - field_private_notes: Private notes - permission_view_private_notes: View private notes - permission_set_notes_private: Set notes as private - label_no_issues_in_project: no issues in project - label_any: όλα - label_last_n_weeks: last %{count} weeks - setting_cross_project_subtasks: Allow cross-project subtasks - label_cross_project_descendants: With subprojects - label_cross_project_tree: With project tree - label_cross_project_hierarchy: With project hierarchy - label_cross_project_system: With all projects - button_hide: Hide - setting_non_working_week_days: Non-working days - label_in_the_next_days: in the next - label_in_the_past_days: in the past - label_attribute_of_user: User's %{name} - text_turning_multiple_off: If you disable multiple values, multiple values will be - removed in order to preserve only one value per item. - label_attribute_of_issue: Issue's %{name} - permission_add_documents: Add documents - permission_edit_documents: Edit documents - permission_delete_documents: Delete documents - label_gantt_progress_line: Progress line - setting_jsonp_enabled: Enable JSONP support - field_inherit_members: Inherit members - field_closed_on: Closed - field_generate_password: Generate password - setting_default_projects_tracker_ids: Default trackers for new projects - label_total_time: Σύνολο - text_scm_config: You can configure your SCM commands in config/configuration.yml. Please restart the application after editing it. - text_scm_command_not_available: SCM command is not available. Please check settings on the administration panel. - setting_emails_header: Email header - notice_account_not_activated_yet: You haven't activated your account yet. If you want - to receive a new activation email, please click this link. - notice_account_locked: Your account is locked. - label_hidden: Hidden - label_visibility_private: to me only - label_visibility_roles: to these roles only - label_visibility_public: to any users - field_must_change_passwd: Must change password at next logon - notice_new_password_must_be_different: The new password must be different from the - current password - setting_mail_handler_excluded_filenames: Exclude attachments by name - text_convert_available: ImageMagick convert available (optional) - label_link: Link - label_only: only - label_drop_down_list: drop-down list - label_checkboxes: checkboxes - label_link_values_to: Link values to URL - setting_force_default_language_for_anonymous: Force default language for anonymous - users - setting_force_default_language_for_loggedin: Force default language for logged-in - users - label_custom_field_select_type: Select the type of object to which the custom field - is to be attached - label_issue_assigned_to_updated: Assignee updated - label_check_for_updates: Check for updates - label_latest_compatible_version: Latest compatible version - label_unknown_plugin: Unknown plugin - label_radio_buttons: radio buttons - label_group_anonymous: Anonymous users - label_group_non_member: Non member users - label_add_projects: Add projects - field_default_status: Default status - text_subversion_repository_note: 'Examples: file:///, http://, https://, svn://, svn+[tunnelscheme]://' - field_users_visibility: Users visibility - label_users_visibility_all: All active users - label_users_visibility_members_of_visible_projects: Members of visible projects - label_edit_attachments: Edit attached files - setting_link_copied_issue: Link issues on copy - label_link_copied_issue: Link copied issue - label_ask: Ask - label_search_attachments_yes: Search attachment filenames and descriptions - label_search_attachments_no: Do not search attachments - label_search_attachments_only: Search attachments only - label_search_open_issues_only: Open issues only - field_address: Email - setting_max_additional_emails: Maximum number of additional email addresses - label_email_address_plural: Emails - label_email_address_add: Add email address - label_enable_notifications: Enable notifications - label_disable_notifications: Disable notifications - setting_search_results_per_page: Search results per page - label_blank_value: blank - permission_copy_issues: Copy issues - error_password_expired: Your password has expired or the administrator requires you - to change it. - field_time_entries_visibility: Time logs visibility - setting_password_max_age: Require password change after - label_parent_task_attributes: Parent tasks attributes - label_parent_task_attributes_derived: Calculated from subtasks - label_parent_task_attributes_independent: Independent of subtasks - label_time_entries_visibility_all: All time entries - label_time_entries_visibility_own: Time entries created by the user - label_member_management: Member management - label_member_management_all_roles: All roles - label_member_management_selected_roles_only: Only these roles - label_password_required: Confirm your password to continue - label_total_spent_time: Overall spent time - notice_import_finished: "%{count} items have been imported" - notice_import_finished_with_errors: "%{count} out of %{total} items could not be imported" - error_invalid_file_encoding: The file is not a valid %{encoding} encoded file - error_invalid_csv_file_or_settings: The file is not a CSV file or does not match the - settings below - error_can_not_read_import_file: An error occurred while reading the file to import - permission_import_issues: Import issues - label_import_issues: Import issues - label_select_file_to_import: Select the file to import - label_fields_separator: Field separator - label_fields_wrapper: Field wrapper - label_encoding: Encoding - label_comma_char: Comma - label_semi_colon_char: Semicolon - label_quote_char: Quote - label_double_quote_char: Double quote - label_fields_mapping: Fields mapping - label_file_content_preview: File content preview - label_create_missing_values: Create missing values - button_import: Import - field_total_estimated_hours: Total estimated time - label_api: API - label_total_plural: Totals - label_assigned_issues: Assigned issues - label_field_format_enumeration: Key/value list - label_f_hour_short: '%{value} h' - field_default_version: Default version - error_attachment_extension_not_allowed: Attachment extension %{extension} is not allowed - setting_attachment_extensions_allowed: Allowed extensions - setting_attachment_extensions_denied: Disallowed extensions - label_any_open_issues: any open issues - label_no_open_issues: no open issues - label_default_values_for_new_users: Default values for new users - error_ldap_bind_credentials: Invalid LDAP Account/Password - setting_sys_api_key: κλειδί API - setting_lost_password: Ανάκτηση κωδικού πρόσβασης - mail_subject_security_notification: Security notification - mail_body_security_notification_change: ! '%{field} was changed.' - mail_body_security_notification_change_to: ! '%{field} was changed to %{value}.' - mail_body_security_notification_add: ! '%{field} %{value} was added.' - mail_body_security_notification_remove: ! '%{field} %{value} was removed.' - mail_body_security_notification_notify_enabled: Email address %{value} now receives - notifications. - mail_body_security_notification_notify_disabled: Email address %{value} no longer - receives notifications. - mail_body_settings_updated: ! 'The following settings were changed:' - field_remote_ip: IP address - label_wiki_page_new: New wiki page - label_relations: Relations - button_filter: Filter - mail_body_password_updated: Your password has been changed. - label_no_preview: No preview available - error_no_tracker_allowed_for_new_issue_in_project: The project doesn't have any trackers - for which you can create an issue - label_tracker_all: All trackers - label_new_project_issue_tab_enabled: Display the "New issue" tab - setting_new_item_menu_tab: Project menu tab for creating new objects - label_new_object_tab_enabled: Display the "+" drop-down - error_no_projects_with_tracker_allowed_for_new_issue: There are no projects with trackers - for which you can create an issue - field_textarea_font: Font used for text areas - label_font_default: Default font - label_font_monospace: Monospaced font - label_font_proportional: Proportional font - setting_timespan_format: Time span format - label_table_of_contents: Table of contents - setting_commit_logs_formatting: Apply text formatting to commit messages - setting_mail_handler_enable_regex: Enable regular expressions - error_move_of_child_not_possible: 'Subtask %{child} could not be moved to the new - project: %{errors}' - error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted: Spent time cannot - be reassigned to an issue that is about to be deleted - setting_timelog_required_fields: Required fields for time logs - label_attribute_of_object: '%{object_name}''s %{name}' - label_user_mail_option_only_assigned: Only for things I watch or I am assigned to - label_user_mail_option_only_owner: Only for things I watch or I am the owner of - warning_fields_cleared_on_bulk_edit: Changes will result in the automatic deletion - of values from one or more fields on the selected objects - field_updated_by: Updated by - field_last_updated_by: Last updated by - field_full_width_layout: Full width layout - label_last_notes: Last notes - field_digest: Checksum - field_default_assigned_to: Default assignee - setting_show_custom_fields_on_registration: Show custom fields on registration - permission_view_news: View news - label_no_preview_alternative_html: No preview available. %{link} the file instead. - label_no_preview_download: Download - setting_close_duplicate_issues: Close duplicate issues automatically - error_exceeds_maximum_hours_per_day: Cannot log more than %{max_hours} hours on the - same day (%{logged_hours} hours have already been logged) - setting_time_entry_list_defaults: Timelog list defaults - setting_timelog_accept_0_hours: Accept time logs with 0 hours - setting_timelog_max_hours_per_day: Maximum hours that can be logged per day and user - label_x_revisions: "%{count} revisions" - error_can_not_delete_auth_source: This authentication mode is in use and cannot be - deleted. - button_actions: Actions - mail_body_lost_password_validity: Please be aware that you may change the password - only once using this link. - text_login_required_html: When not requiring authentication, public projects and their - contents are openly available on the network. You can edit - the applicable permissions. - label_login_required_yes: 'Yes' - label_login_required_no: No, allow anonymous access to public projects - text_project_is_public_non_member: Public projects and their contents are available - to all logged-in users. - text_project_is_public_anonymous: Public projects and their contents are openly available - on the network. - label_version_and_files: Versions (%{count}) and Files - label_ldap: LDAP - label_ldaps_verify_none: LDAPS (without certificate check) - label_ldaps_verify_peer: LDAPS - label_ldaps_warning: It is recommended to use an encrypted LDAPS connection with certificate - check to prevent any manipulation during the authentication process. - label_nothing_to_preview: Nothing to preview - error_token_expired: This password recovery link has expired, please try again. - error_spent_on_future_date: Cannot log time on a future date - setting_timelog_accept_future_dates: Accept time logs on future dates - label_delete_link_to_subtask: Διαγραφή συσχέτισης - error_not_allowed_to_log_time_for_other_users: You are not allowed to log time - for other users - permission_log_time_for_other_users: Log spent time for other users - label_tomorrow: tomorrow - label_next_week: next week - label_next_month: next month - text_role_no_workflow: No workflow defined for this role - text_status_no_workflow: No tracker uses this status in the workflows - setting_mail_handler_preferred_body_part: Preferred part of multipart (HTML) emails - setting_show_status_changes_in_mail_subject: Show status changes in issue mail notifications - subject - label_inherited_from_parent_project: Inherited from parent project - label_inherited_from_group: Inherited from group %{name} - label_trackers_description: Trackers description - label_open_trackers_description: View all trackers description - label_preferred_body_part_text: Text - label_preferred_body_part_html: HTML (experimental) - field_parent_issue_subject: Parent task subject - permission_edit_own_issues: Edit own issues - text_select_apply_tracker: Select tracker - label_updated_issues: Updated issues - text_avatar_server_config_html: The current avatar server is %{url}. - You can configure it in config/configuration.yml. - setting_gantt_months_limit: Maximum number of months displayed on the gantt chart - permission_import_time_entries: Import time entries - label_import_notifications: Send email notifications during the import - text_gs_available: ImageMagick PDF support available (optional) - field_recently_used_projects: Number of recently used projects in jump box - label_optgroup_bookmarks: Bookmarks - label_optgroup_others: Other projects - label_optgroup_recents: Recently used - button_project_bookmark: Add bookmark - button_project_bookmark_delete: Remove bookmark - field_history_default_tab: Issue's history default tab - label_issue_history_properties: Property changes - label_issue_history_notes: Notes - label_last_tab_visited: Last visited tab - field_unique_id: Unique ID - text_no_subject: no subject - setting_password_required_char_classes: Required character classes for passwords - label_password_char_class_uppercase: uppercase letters - label_password_char_class_lowercase: lowercase letters - label_password_char_class_digits: digits - label_password_char_class_special_chars: special characters - text_characters_must_contain: Must contain %{character_classes}. - label_starts_with: starts with - label_ends_with: ends with - label_issue_fixed_version_updated: Target version updated - setting_project_list_defaults: Projects list defaults - label_display_type: Display results as - label_display_type_list: List - label_display_type_board: Board - label_my_bookmarks: My bookmarks - label_import_time_entries: Import time entries diff --git a/config/locales/en-GB.yml b/config/locales/en-GB.yml deleted file mode 100644 index 27bc085..0000000 --- a/config/locales/en-GB.yml +++ /dev/null @@ -1,1316 +0,0 @@ -en-GB: - direction: ltr - date: - formats: - # Use the strftime parameters for formats. - # When no format has been given, it uses default. - # You can provide other formats here if you like! - default: "%d/%m/%Y" - short: "%d %b" - long: "%d %B, %Y" - - day_names: [Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday] - abbr_day_names: [Sun, Mon, Tue, Wed, Thu, Fri, Sat] - - # Don't forget the nil at the beginning; there's no such thing as a 0th month - month_names: [~, January, February, March, April, May, June, July, August, September, October, November, December] - abbr_month_names: [~, Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec] - # Used in date_select and datime_select. - order: - - :year - - :month - - :day - - time: - formats: - default: "%d/%m/%Y %I:%M %p" - time: "%I:%M %p" - short: "%d %b %H:%M" - long: "%d %B, %Y %H:%M" - am: "am" - pm: "pm" - - datetime: - distance_in_words: - half_a_minute: "half a minute" - less_than_x_seconds: - one: "less than 1 second" - other: "less than %{count} seconds" - x_seconds: - one: "1 second" - other: "%{count} seconds" - less_than_x_minutes: - one: "less than a minute" - other: "less than %{count} minutes" - x_minutes: - one: "1 minute" - other: "%{count} minutes" - about_x_hours: - one: "about 1 hour" - other: "about %{count} hours" - x_hours: - one: "1 hour" - other: "%{count} hours" - x_days: - one: "1 day" - other: "%{count} days" - about_x_months: - one: "about 1 month" - other: "about %{count} months" - x_months: - one: "1 month" - other: "%{count} months" - about_x_years: - one: "about 1 year" - other: "about %{count} years" - over_x_years: - one: "over 1 year" - other: "over %{count} years" - almost_x_years: - one: "almost 1 year" - other: "almost %{count} years" - - number: - format: - separator: "." - delimiter: " " - precision: 3 - - currency: - format: - format: "%u%n" - unit: "£" - - human: - format: - delimiter: "" - precision: 3 - storage_units: - format: "%n %u" - units: - byte: - one: "Byte" - other: "Bytes" - kb: "KB" - mb: "MB" - gb: "GB" - tb: "TB" - -# Used in array.to_sentence. - support: - array: - sentence_connector: "and" - skip_last_comma: false - - activerecord: - errors: - template: - header: - one: "1 error prohibited this %{model} from being saved" - other: "%{count} errors prohibited this %{model} from being saved" - messages: - inclusion: "is not included in the list" - exclusion: "is reserved" - invalid: "is invalid" - confirmation: "doesn't match confirmation" - accepted: "must be accepted" - empty: "cannot be empty" - blank: "cannot be blank" - too_long: "is too long (maximum is %{count} characters)" - too_short: "is too short (minimum is %{count} characters)" - wrong_length: "is the wrong length (should be %{count} characters)" - taken: "has already been taken" - not_a_number: "is not a number" - not_a_date: "is not a valid date" - greater_than: "must be greater than %{count}" - greater_than_or_equal_to: "must be greater than or equal to %{count}" - equal_to: "must be equal to %{count}" - less_than: "must be less than %{count}" - less_than_or_equal_to: "must be less than or equal to %{count}" - odd: "must be odd" - even: "must be even" - greater_than_start_date: "must be greater than start date" - not_same_project: "doesn't belong to the same project" - circular_dependency: "This relation would create a circular dependency" - cant_link_an_issue_with_a_descendant: "An issue cannot be linked to one of its subtasks" - earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" - not_a_regexp: "is not a valid regular expression" - open_issue_with_closed_parent: "An open issue cannot be attached to a closed parent task" - must_contain_uppercase: "must contain uppercase letters (A-Z)" - must_contain_lowercase: "must contain lowercase letters (a-z)" - must_contain_digits: "must contain digits (0-9)" - must_contain_special_chars: "must contain special characters (!, $, %, ...)" - - actionview_instancetag_blank_option: Please select - - general_text_No: 'No' - general_text_Yes: 'Yes' - general_text_no: 'no' - general_text_yes: 'yes' - general_lang_name: 'English (British)' - general_csv_separator: ',' - general_csv_decimal_separator: '.' - general_csv_encoding: ISO-8859-1 - general_pdf_fontname: freesans - general_pdf_monospaced_fontname: freemono - general_first_day_of_week: '1' - - notice_account_updated: Account was successfully updated. - notice_account_invalid_credentials: Invalid user or password - notice_account_password_updated: Password was successfully updated. - notice_account_wrong_password: Wrong password - notice_account_register_done: Account was successfully created. An email containing the instructions to activate your account was sent to %{email}. - notice_account_unknown_email: Unknown user. - notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password. - notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you. - notice_account_activated: Your account has been activated. You can now log in. - notice_successful_create: Successful creation. - notice_successful_update: Successful update. - notice_successful_delete: Successful deletion. - notice_successful_connection: Successful connection. - notice_file_not_found: The page you were trying to access doesn't exist or has been removed. - notice_locking_conflict: Data has been updated by another user. - notice_not_authorized: You are not authorised to access this page. - notice_not_authorized_archived_project: The project you're trying to access has been archived. - notice_email_sent: "An email was sent to %{value}" - notice_email_error: "An error occurred while sending mail (%{value})" - notice_feeds_access_key_reseted: Your Atom access key was reset. - notice_api_access_key_reseted: Your API access key was reset. - notice_failed_to_save_issues: "Failed to save %{count} issue(s) on %{total} selected: %{ids}." - notice_failed_to_save_members: "Failed to save member(s): %{errors}." - notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit." - notice_account_pending: "Your account was created and is now pending administrator approval." - notice_default_data_loaded: Default configuration successfully loaded. - notice_unable_delete_version: Unable to delete version. - notice_unable_delete_time_entry: Unable to delete time log entry. - notice_issue_done_ratios_updated: Issue done ratios updated. - notice_gantt_chart_truncated: "The chart was truncated because it exceeds the maximum number of items that can be displayed (%{max})" - - error_can_t_load_default_data: "Default configuration could not be loaded: %{value}" - error_scm_not_found: "The entry or revision was not found in the repository." - error_scm_command_failed: "An error occurred when trying to access the repository: %{value}" - error_scm_annotate: "The entry does not exist or cannot be annotated." - error_scm_annotate_big_text_file: "The entry cannot be annotated, as it exceeds the maximum text file size." - error_issue_not_found_in_project: 'The issue was not found or does not belong to this project' - error_no_tracker_in_project: 'No tracker is associated to this project. Please check the Project settings.' - error_no_default_issue_status: 'No default issue status is defined. Please check your configuration (Go to "Administration -> Issue statuses").' - error_can_not_delete_custom_field: Unable to delete custom field - error_can_not_delete_tracker: "This tracker contains issues and cannot be deleted." - error_can_not_remove_role: "This role is in use and cannot be deleted." - error_can_not_reopen_issue_on_closed_version: 'An issue assigned to a closed version cannot be reopened' - error_can_not_archive_project: This project cannot be archived - error_issue_done_ratios_not_updated: "Issue done ratios not updated." - error_workflow_copy_source: 'Please select a source tracker or role' - error_workflow_copy_target: 'Please select target tracker(s) and role(s)' - error_unable_delete_issue_status: 'Unable to delete issue status (%{value})' - error_unable_to_connect: "Unable to connect (%{value})" - warning_attachments_not_saved: "%{count} file(s) could not be saved." - - mail_subject_lost_password: "Your %{value} password" - mail_body_lost_password: 'To change your password, click on the following link:' - mail_subject_register: "Your %{value} account activation" - mail_body_register: 'To activate your account, click on the following link:' - mail_body_account_information_external: "You can use your %{value} account to log in." - mail_body_account_information: Your account information - mail_subject_account_activation_request: "%{value} account activation request" - mail_body_account_activation_request: "A new user (%{value}) has registered. The account is pending your approval:" - mail_subject_reminder: "%{count} issue(s) due in the next %{days} days" - mail_body_reminder: "%{count} issue(s) that are assigned to you are due in the next %{days} days:" - mail_subject_wiki_content_added: "'%{id}' wiki page has been added" - mail_body_wiki_content_added: "The '%{id}' wiki page has been added by %{author}." - mail_subject_wiki_content_updated: "'%{id}' wiki page has been updated" - mail_body_wiki_content_updated: "The '%{id}' wiki page has been updated by %{author}." - - - field_name: Name - field_description: Description - field_summary: Summary - field_is_required: Required - field_firstname: First name - field_lastname: Last name - field_mail: Email - field_filename: File - field_filesize: Size - field_downloads: Downloads - field_author: Author - field_created_on: Created - field_updated_on: Updated - field_field_format: Format - field_is_for_all: For all projects - field_possible_values: Possible values - field_regexp: Regular expression - field_min_length: Minimum length - field_max_length: Maximum length - field_value: Value - field_category: Category - field_title: Title - field_project: Project - field_issue: Issue - field_status: Status - field_notes: Notes - field_is_closed: Issue closed - field_is_default: Default value - field_tracker: Tracker - field_subject: Subject - field_due_date: Due date - field_assigned_to: Assignee - field_priority: Priority - field_fixed_version: Target version - field_user: User - field_principal: Principal - field_role: Role - field_homepage: Homepage - field_is_public: Public - field_parent: Subproject of - field_is_in_roadmap: Issues displayed in roadmap - field_login: Login - field_mail_notification: Email notifications - field_admin: Administrator - field_last_login_on: Last connection - field_language: Language - field_effective_date: Due date - field_password: Password - field_new_password: New password - field_password_confirmation: Confirmation - field_version: Version - field_type: Type - field_host: Host - field_port: Port - field_account: Account - field_base_dn: Base DN - field_attr_login: Login attribute - field_attr_firstname: Firstname attribute - field_attr_lastname: Lastname attribute - field_attr_mail: Email attribute - field_onthefly: On-the-fly user creation - field_start_date: Start date - field_done_ratio: "% Done" - field_auth_source: Authentication mode - field_hide_mail: Hide my email address - field_comments: Comment - field_url: URL - field_start_page: Start page - field_subproject: Subproject - field_hours: Hours - field_activity: Activity - field_spent_on: Date - field_identifier: Identifier - field_is_filter: Used as a filter - field_issue_to: Related issue - field_delay: Delay - field_assignable: Issues can be assigned to this role - field_redirect_existing_links: Redirect existing links - field_estimated_hours: Estimated time - field_column_names: Columns - field_time_entries: Log time - field_time_zone: Time zone - field_searchable: Searchable - field_default_value: Default value - field_comments_sorting: Display comments - field_parent_title: Parent page - field_editable: Editable - field_watcher: Watcher - field_identity_url: OpenID URL - field_content: Content - field_group_by: Group results by - field_sharing: Sharing - field_parent_issue: Parent task - field_member_of_group: "Assignee's group" - field_assigned_to_role: "Assignee's role" - field_text: Text field - field_visible: Visible - field_warn_on_leaving_unsaved: "Warn me when leaving a page with unsaved text" - - setting_app_title: Application title - setting_welcome_text: Welcome text - setting_default_language: Default language - setting_login_required: Authentication required - setting_self_registration: Self-registration - setting_attachment_max_size: Attachment max. size - setting_issues_export_limit: Issues export limit - setting_mail_from: Emission email address - setting_bcc_recipients: Blind carbon copy recipients (bcc) - setting_plain_text_mail: Plain text mail (no HTML) - setting_host_name: Host name and path - setting_text_formatting: Text formatting - setting_wiki_compression: Wiki history compression - setting_feeds_limit: Feed content limit - setting_default_projects_public: New projects are public by default - setting_autofetch_changesets: Autofetch commits - setting_sys_api_enabled: Enable WS for repository management - setting_commit_ref_keywords: Referencing keywords - setting_commit_fix_keywords: Fixing keywords - setting_autologin: Autologin - setting_date_format: Date format - setting_time_format: Time format - setting_cross_project_issue_relations: Allow cross-project issue relations - setting_issue_list_default_columns: Default columns displayed on the issue list - setting_emails_header: Email header - setting_emails_footer: Email footer - setting_protocol: Protocol - setting_per_page_options: Objects per page options - setting_user_format: Users display format - setting_activity_days_default: Days displayed on project activity - setting_display_subprojects_issues: Display subprojects issues on main projects by default - setting_enabled_scm: Enabled SCM - setting_mail_handler_body_delimiters: "Truncate emails after one of these lines" - setting_mail_handler_api_enabled: Enable WS for incoming emails - setting_mail_handler_api_key: API key - setting_sequential_project_identifiers: Generate sequential project identifiers - setting_gravatar_enabled: Use Gravatar user icons - setting_gravatar_default: Default Gravatar image - setting_diff_max_lines_displayed: Max number of diff lines displayed - setting_file_max_size_displayed: Max size of text files displayed inline - setting_repository_log_display_limit: Maximum number of revisions displayed on file log - setting_openid: Allow OpenID login and registration - setting_password_min_length: Minimum password length - setting_new_project_user_role_id: Role given to a non-admin user who creates a project - setting_default_projects_modules: Default enabled modules for new projects - setting_issue_done_ratio: Calculate the issue done ratio with - setting_issue_done_ratio_issue_field: Use the issue field - setting_issue_done_ratio_issue_status: Use the issue status - setting_start_of_week: Start calendars on - setting_rest_api_enabled: Enable REST web service - setting_cache_formatted_text: Cache formatted text - setting_default_notification_option: Default notification option - setting_commit_logtime_enabled: Enable time logging - setting_commit_logtime_activity_id: Activity for logged time - setting_gantt_items_limit: Maximum number of items displayed on the gantt chart - setting_issue_group_assignment: Allow issue assignment to groups - setting_default_issue_start_date_to_creation_date: Use current date as start date for new issues - - permission_add_project: Create project - permission_add_subprojects: Create subprojects - permission_edit_project: Edit project - permission_select_project_modules: Select project modules - permission_manage_members: Manage members - permission_manage_project_activities: Manage project activities - permission_manage_versions: Manage versions - permission_manage_categories: Manage issue categories - permission_view_issues: View Issues - permission_add_issues: Add issues - permission_edit_issues: Edit issues - permission_manage_issue_relations: Manage issue relations - permission_add_issue_notes: Add notes - permission_edit_issue_notes: Edit notes - permission_edit_own_issue_notes: Edit own notes - permission_delete_issues: Delete issues - permission_manage_public_queries: Manage public queries - permission_save_queries: Save queries - permission_view_gantt: View gantt chart - permission_view_calendar: View calendar - permission_view_issue_watchers: View watchers list - permission_add_issue_watchers: Add watchers - permission_delete_issue_watchers: Delete watchers - permission_log_time: Log spent time - permission_view_time_entries: View spent time - permission_edit_time_entries: Edit time logs - permission_edit_own_time_entries: Edit own time logs - permission_manage_news: Manage news - permission_comment_news: Comment news - permission_view_documents: View documents - permission_manage_files: Manage files - permission_view_files: View files - permission_manage_wiki: Manage wiki - permission_rename_wiki_pages: Rename wiki pages - permission_delete_wiki_pages: Delete wiki pages - permission_view_wiki_pages: View wiki - permission_view_wiki_edits: View wiki history - permission_edit_wiki_pages: Edit wiki pages - permission_delete_wiki_pages_attachments: Delete attachments - permission_protect_wiki_pages: Protect wiki pages - permission_manage_repository: Manage repository - permission_browse_repository: Browse repository - permission_view_changesets: View changesets - permission_commit_access: Commit access - permission_manage_boards: Manage forums - permission_view_messages: View messages - permission_add_messages: Post messages - permission_edit_messages: Edit messages - permission_edit_own_messages: Edit own messages - permission_delete_messages: Delete messages - permission_delete_own_messages: Delete own messages - permission_export_wiki_pages: Export wiki pages - permission_manage_subtasks: Manage subtasks - - project_module_issue_tracking: Issue tracking - project_module_time_tracking: Time tracking - project_module_news: News - project_module_documents: Documents - project_module_files: Files - project_module_wiki: Wiki - project_module_repository: Repository - project_module_boards: Forums - project_module_calendar: Calendar - project_module_gantt: Gantt - - label_user: User - label_user_plural: Users - label_user_new: New user - label_user_anonymous: Anonymous - label_project: Project - label_project_new: New project - label_project_plural: Projects - label_x_projects: - zero: no projects - one: 1 project - other: "%{count} projects" - label_project_all: All Projects - label_project_latest: Latest projects - label_issue: Issue - label_issue_new: New issue - label_issue_plural: Issues - label_issue_view_all: View all issues - label_issues_by: "Issues by %{value}" - label_issue_added: Issue added - label_issue_updated: Issue updated - label_document: Document - label_document_new: New document - label_document_plural: Documents - label_document_added: Document added - label_role: Role - label_role_plural: Roles - label_role_new: New role - label_role_and_permissions: Roles and permissions - label_role_anonymous: Anonymous - label_role_non_member: Non member - label_member: Member - label_member_new: New member - label_member_plural: Members - label_tracker: Tracker - label_tracker_plural: Trackers - label_tracker_new: New tracker - label_workflow: Workflow - label_issue_status: Issue status - label_issue_status_plural: Issue statuses - label_issue_status_new: New status - label_issue_category: Issue category - label_issue_category_plural: Issue categories - label_issue_category_new: New category - label_custom_field: Custom field - label_custom_field_plural: Custom fields - label_custom_field_new: New custom field - label_enumerations: Enumerations - label_enumeration_new: New value - label_information: Information - label_information_plural: Information - label_register: Register - label_login_with_open_id_option: or login with OpenID - label_password_lost: Lost password - label_home: Home - label_my_page: My page - label_my_account: My account - label_my_projects: My projects - label_administration: Administration - label_login: Sign in - label_logout: Sign out - label_help: Help - label_reported_issues: Reported issues - label_assigned_to_me_issues: Issues assigned to me - label_last_login: Last connection - label_registered_on: Registered on - label_activity: Activity - label_overall_activity: Overall activity - label_user_activity: "%{value}'s activity" - label_new: New - label_logged_as: Logged in as - label_environment: Environment - label_authentication: Authentication - label_auth_source: Authentication mode - label_auth_source_new: New authentication mode - label_auth_source_plural: Authentication modes - label_subproject_plural: Subprojects - label_subproject_new: New subproject - label_and_its_subprojects: "%{value} and its subprojects" - label_min_max_length: Min - Max length - label_list: List - label_date: Date - label_integer: Integer - label_float: Float - label_boolean: Boolean - label_string: Text - label_text: Long text - label_attribute: Attribute - label_attribute_plural: Attributes - label_no_data: No data to display - label_no_preview: No preview available - label_change_status: Change status - label_history: History - label_attachment: File - label_attachment_new: New file - label_attachment_delete: Delete file - label_attachment_plural: Files - label_file_added: File added - label_report: Report - label_report_plural: Reports - label_news: News - label_news_new: Add news - label_news_plural: News - label_news_latest: Latest news - label_news_view_all: View all news - label_news_added: News added - label_news_comment_added: Comment added to a news - label_settings: Settings - label_overview: Overview - label_version: Version - label_version_new: New version - label_version_plural: Versions - label_version_and_files: Versions (%{count}) and Files - label_close_versions: Close completed versions - label_confirmation: Confirmation - label_export_to: 'Also available in:' - label_read: Read... - label_public_projects: Public projects - label_open_issues: open - label_open_issues_plural: open - label_closed_issues: closed - label_closed_issues_plural: closed - label_x_open_issues_abbr: - zero: 0 open - one: 1 open - other: "%{count} open" - label_x_closed_issues_abbr: - zero: 0 closed - one: 1 closed - other: "%{count} closed" - label_total: Total - label_permissions: Permissions - label_current_status: Current status - label_new_statuses_allowed: New statuses allowed - label_all: all - label_none: none - label_nobody: nobody - label_next: Next - label_previous: Previous - label_used_by: Used by - label_details: Details - label_add_note: Add a note - label_calendar: Calendar - label_months_from: months from - label_gantt: Gantt - label_internal: Internal - label_last_changes: "last %{count} changes" - label_change_view_all: View all changes - label_comment: Comment - label_comment_plural: Comments - label_x_comments: - zero: no comments - one: 1 comment - other: "%{count} comments" - label_comment_add: Add a comment - label_comment_added: Comment added - label_comment_delete: Delete comments - label_query: Custom query - label_query_plural: Custom queries - label_query_new: New query - label_my_queries: My custom queries - label_filter_add: Add filter - label_filter_plural: Filters - label_equals: is - label_not_equals: is not - label_in_less_than: in less than - label_in_more_than: in more than - label_greater_or_equal: '>=' - label_less_or_equal: '<=' - label_in: in - label_today: today - label_yesterday: yesterday - label_this_week: this week - label_last_week: last week - label_last_n_days: "last %{count} days" - label_this_month: this month - label_last_month: last month - label_this_year: this year - label_date_range: Date range - label_less_than_ago: less than days ago - label_more_than_ago: more than days ago - label_ago: days ago - label_contains: contains - label_not_contains: doesn't contain - label_day_plural: days - label_repository: Repository - label_repository_plural: Repositories - label_browse: Browse - label_branch: Branch - label_tag: Tag - label_revision: Revision - label_revision_plural: Revisions - label_revision_id: "Revision %{value}" - label_associated_revisions: Associated revisions - label_added: added - label_modified: modified - label_copied: copied - label_renamed: renamed - label_deleted: deleted - label_latest_revision: Latest revision - label_latest_revision_plural: Latest revisions - label_view_revisions: View revisions - label_view_all_revisions: View all revisions - label_max_size: Maximum size - label_sort_highest: Move to top - label_sort_higher: Move up - label_sort_lower: Move down - label_sort_lowest: Move to bottom - label_roadmap: Roadmap - label_roadmap_due_in: "Due in %{value}" - label_roadmap_overdue: "%{value} late" - label_roadmap_no_issues: No issues for this version - label_search: Search - label_result_plural: Results - label_all_words: All words - label_wiki: Wiki - label_wiki_edit: Wiki edit - label_wiki_edit_plural: Wiki edits - label_wiki_page: Wiki page - label_wiki_page_plural: Wiki pages - label_index_by_title: Index by title - label_index_by_date: Index by date - label_current_version: Current version - label_preview: Preview - label_feed_plural: Feeds - label_changes_details: Details of all changes - label_issue_tracking: Issue tracking - label_spent_time: Spent time - label_overall_spent_time: Overall spent time - label_f_hour: "%{value} hour" - label_f_hour_plural: "%{value} hours" - label_time_tracking: Time tracking - label_change_plural: Changes - label_statistics: Statistics - label_commits_per_month: Commits per month - label_commits_per_author: Commits per author - label_view_diff: View differences - label_diff_inline: inline - label_diff_side_by_side: side by side - label_options: Options - label_copy_workflow_from: Copy workflow from - label_permissions_report: Permissions report - label_watched_issues: Watched issues - label_related_issues: Related issues - label_applied_status: Applied status - label_loading: Loading... - label_relation_new: New relation - label_relation_delete: Delete relation - label_relates_to: related to - label_duplicates: is duplicate of - label_duplicated_by: has duplicate - label_blocks: blocks - label_blocked_by: blocked by - label_precedes: precedes - label_follows: follows - label_stay_logged_in: Stay logged in - label_disabled: disabled - label_show_completed_versions: Show completed versions - label_me: me - label_board: Forum - label_board_new: New forum - label_board_plural: Forums - label_board_locked: Locked - label_board_sticky: Sticky - label_topic_plural: Topics - label_message_plural: Messages - label_message_last: Last message - label_message_new: New message - label_message_posted: Message added - label_reply_plural: Replies - label_send_information: Send account information to the user - label_year: Year - label_month: Month - label_week: Week - label_date_from: From - label_date_to: To - label_language_based: Based on user's language - label_sort_by: "Sort by %{value}" - label_send_test_email: Send a test email - label_feeds_access_key: Atom access key - label_missing_feeds_access_key: Missing a Atom access key - label_feeds_access_key_created_on: "Atom access key created %{value} ago" - label_module_plural: Modules - label_added_time_by: "Added by %{author} %{age} ago" - label_updated_time_by: "Updated by %{author} %{age} ago" - label_updated_time: "Updated %{value} ago" - label_jump_to_a_project: Jump to a project... - label_file_plural: Files - label_changeset_plural: Changesets - label_default_columns: Default columns - label_no_change_option: (No change) - label_bulk_edit_selected_issues: Bulk edit selected issues - label_theme: Theme - label_default: Default - label_search_titles_only: Search titles only - label_user_mail_option_all: "For any event on all my projects" - label_user_mail_option_selected: "For any event on the selected projects only..." - label_user_mail_option_none: "No events" - label_user_mail_option_only_my_events: "Only for things I watch or I'm involved in" - label_user_mail_no_self_notified: "I don't want to be notified of changes that I make myself" - label_registration_activation_by_email: account activation by email - label_registration_manual_activation: manual account activation - label_registration_automatic_activation: automatic account activation - label_display_per_page: "Per page: %{value}" - label_age: Age - label_change_properties: Change properties - label_general: General - label_scm: SCM - label_plugins: Plugins - label_ldap_authentication: LDAP authentication - label_downloads_abbr: D/L - label_optional_description: Optional description - label_add_another_file: Add another file - label_preferences: Preferences - label_chronological_order: In chronological order - label_reverse_chronological_order: In reverse chronological order - label_incoming_emails: Incoming emails - label_generate_key: Generate a key - label_issue_watchers: Watchers - label_example: Example - label_display: Display - label_sort: Sort - label_ascending: Ascending - label_descending: Descending - label_date_from_to: From %{start} to %{end} - label_wiki_content_added: Wiki page added - label_wiki_content_updated: Wiki page updated - label_group: Group - label_group_plural: Groups - label_group_new: New group - label_time_entry_plural: Spent time - label_version_sharing_none: Not shared - label_version_sharing_descendants: With subprojects - label_version_sharing_hierarchy: With project hierarchy - label_version_sharing_tree: With project tree - label_version_sharing_system: With all projects - label_update_issue_done_ratios: Update issue done ratios - label_copy_source: Source - label_copy_target: Target - label_copy_same_as_target: Same as target - label_display_used_statuses_only: Only display statuses that are used by this tracker - label_api_access_key: API access key - label_missing_api_access_key: Missing an API access key - label_api_access_key_created_on: "API access key created %{value} ago" - label_profile: Profile - label_subtask_plural: Subtasks - label_project_copy_notifications: Send email notifications during the project copy - label_principal_search: "Search for user or group:" - label_user_search: "Search for user:" - - button_login: Login - button_submit: Submit - button_save: Save - button_check_all: Check all - button_uncheck_all: Uncheck all - button_collapse_all: Collapse all - button_expand_all: Expand all - button_delete: Delete - button_create: Create - button_create_and_continue: Create and add another - button_test: Test - button_edit: Edit - button_edit_associated_wikipage: "Edit associated Wiki page: %{page_title}" - button_add: Add - button_change: Change - button_apply: Apply - button_clear: Clear - button_lock: Lock - button_unlock: Unlock - button_download: Download - button_list: List - button_view: View - button_move: Move - button_move_and_follow: Move and follow - button_back: Back - button_cancel: Cancel - button_activate: Activate - button_sort: Sort - button_log_time: Log time - button_rollback: Rollback to this version - button_watch: Watch - button_unwatch: Unwatch - button_reply: Reply - button_archive: Archive - button_unarchive: Unarchive - button_reset: Reset - button_rename: Rename - button_change_password: Change password - button_copy: Copy - button_copy_and_follow: Copy and follow - button_annotate: Annotate - button_update: Update - button_configure: Configure - button_quote: Quote - button_show: Show - - status_active: active - status_registered: registered - status_locked: locked - - version_status_open: open - version_status_locked: locked - version_status_closed: closed - - field_active: Active - - text_select_mail_notifications: Select actions for which email notifications should be sent. - text_regexp_info: eg. ^[A-Z0-9]+$ - text_min_max_length_info: 0 means no restriction - text_project_destroy_confirmation: Are you sure you want to delete this project and related data? - text_subprojects_destroy_warning: "Its subproject(s): %{value} will be also deleted." - text_workflow_edit: Select a role and a tracker to edit the workflow - text_are_you_sure: Are you sure? - text_journal_changed: "%{label} changed from %{old} to %{new}" - text_journal_changed_no_detail: "%{label} updated" - text_journal_set_to: "%{label} set to %{value}" - text_journal_deleted: "%{label} deleted (%{old})" - text_journal_added: "%{label} %{value} added" - text_tip_issue_begin_day: task beginning this day - text_tip_issue_end_day: task ending this day - text_tip_issue_begin_end_day: task beginning and ending this day - text_project_identifier_info: 'Only lower case letters (a-z), numbers, dashes and underscores are allowed.
    Once saved, the identifier cannot be changed.' - text_caracters_maximum: "%{count} characters maximum." - text_caracters_minimum: "Must be at least %{count} characters long." - text_length_between: "Length between %{min} and %{max} characters." - text_tracker_no_workflow: No workflow defined for this tracker - text_unallowed_characters: Unallowed characters - text_comma_separated: Multiple values allowed (comma separated). - text_line_separated: Multiple values allowed (one line for each value). - text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages - text_issue_added: "Issue %{id} has been reported by %{author}." - text_issue_updated: "Issue %{id} has been updated by %{author}." - text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content? - text_issue_category_destroy_question: "Some issues (%{count}) are assigned to this category. What do you want to do?" - text_issue_category_destroy_assignments: Remove category assignments - text_issue_category_reassign_to: Reassign issues to this category - text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)." - text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded." - text_load_default_configuration: Load the default configuration - text_status_changed_by_changeset: "Applied in changeset %{value}." - text_time_logged_by_changeset: "Applied in changeset %{value}." - text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s)?' - text_select_project_modules: 'Select modules to enable for this project:' - text_default_administrator_account_changed: Default administrator account changed - text_file_repository_writable: Attachments directory writable - text_plugin_assets_writable: Plugin assets directory writable - text_minimagick_available: MiniMagick available (optional) - text_destroy_time_entries_question: "%{hours} hours were reported on the issues you are about to delete. What do you want to do?" - text_destroy_time_entries: Delete reported hours - text_assign_time_entries_to_project: Assign reported hours to the project - text_reassign_time_entries: 'Reassign reported hours to this issue:' - text_user_wrote: "%{value} wrote:" - text_user_wrote_in: "%{value} wrote in %{link}:" - text_enumeration_destroy_question: "%{count} objects are assigned to this value." - text_enumeration_category_reassign_to: 'Reassign them to this value:' - text_email_delivery_not_configured: "Email delivery is not configured, and notifications are disabled.\nConfigure your SMTP server in config/configuration.yml and restart the application to enable them." - text_repository_usernames_mapping: "Select or update the Redmine user mapped to each username found in the repository log.\nUsers with the same Redmine and repository username or email are automatically mapped." - text_diff_truncated: '... This diff was truncated because it exceeds the maximum size that can be displayed.' - text_custom_field_possible_values_info: 'One line for each value' - text_wiki_page_destroy_question: "This page has %{descendants} child page(s) and descendant(s). What do you want to do?" - text_wiki_page_nullify_children: "Keep child pages as root pages" - text_wiki_page_destroy_children: "Delete child pages and all their descendants" - text_wiki_page_reassign_children: "Reassign child pages to this parent page" - 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_zoom_in: Zoom in - text_zoom_out: Zoom out - text_warn_on_leaving_unsaved: "The current page contains unsaved text that will be lost if you leave this page." - - default_role_manager: Manager - default_role_developer: Developer - default_role_reporter: Reporter - default_tracker_bug: Bug - default_tracker_feature: Feature - default_tracker_support: Support - default_issue_status_new: New - default_issue_status_in_progress: In Progress - default_issue_status_resolved: Resolved - default_issue_status_feedback: Feedback - default_issue_status_closed: Closed - default_issue_status_rejected: Rejected - default_doc_category_user: User documentation - default_doc_category_tech: Technical documentation - default_priority_low: Low - default_priority_normal: Normal - default_priority_high: High - default_priority_urgent: Urgent - default_priority_immediate: Immediate - default_activity_design: Design - default_activity_development: Development - - enumeration_issue_priorities: Issue priorities - enumeration_doc_categories: Document categories - enumeration_activities: Activities (time tracking) - enumeration_system_activity: System Activity - label_additional_workflow_transitions_for_assignee: Additional transitions allowed when the user is the assignee - label_additional_workflow_transitions_for_author: Additional transitions allowed when the user is the author - label_bulk_edit_selected_time_entries: Bulk edit selected time entries - text_time_entries_destroy_confirmation: Are you sure you want to delete the selected time entr(y/ies)? - label_issue_note_added: Note added - label_issue_status_updated: Status updated - label_issue_priority_updated: Priority updated - label_issues_visibility_own: Issues created by or assigned to the user - field_issues_visibility: Issues visibility - label_issues_visibility_all: All issues - permission_set_own_issues_private: Set own issues public or private - field_is_private: Private - permission_set_issues_private: Set issues public or private - label_issues_visibility_public: All non private issues - text_issues_destroy_descendants_confirmation: This will also delete %{count} subtask(s). - field_commit_logs_encoding: Commit messages encoding - field_scm_path_encoding: Path encoding - text_scm_path_encoding_note: "Default: UTF-8" - field_path_to_repository: Path to repository - field_root_directory: Root directory - field_cvs_module: Module - field_cvsroot: CVSROOT - text_mercurial_repository_note: Local repository (e.g. /hgrepo, c:\hgrepo) - text_scm_command: Command - text_scm_command_version: Version - label_git_report_last_commit: Report last commit for files and directories - text_scm_config: You can configure your SCM commands in config/configuration.yml. Please restart the application after editing it. - text_scm_command_not_available: SCM command is not available. Please check settings on the administration panel. - notice_issue_successful_create: Issue %{id} created. - label_between: between - label_diff: diff - text_git_repository_note: Repository is bare and local (e.g. /gitrepo, c:\gitrepo) - description_query_sort_criteria_direction: Sort direction - description_project_scope: Search scope - description_filter: Filter - description_user_mail_notification: Mail notification settings - description_message_content: Message content - description_available_columns: Available Columns - description_issue_category_reassign: Choose issue category - description_search: Searchfield - description_notes: Notes - description_choose_project: Projects - description_query_sort_criteria_attribute: Sort attribute - description_wiki_subpages_reassign: Choose new parent page - description_selected_columns: Selected Columns - label_parent_revision: Parent - label_child_revision: Child - button_edit_section: Edit this section - setting_repositories_encodings: Attachments and repositories encodings - description_all_columns: All Columns - button_export: Export - label_export_options: "%{export_format} export options" - error_attachment_too_big: This file cannot be uploaded because it exceeds the maximum allowed file size (%{max_size}) - notice_failed_to_save_time_entries: "Failed to save %{count} time entrie(s) on %{total} selected: %{ids}." - label_x_issues: - zero: 0 issue - one: 1 issue - other: "%{count} issues" - label_repository_new: New repository - field_repository_is_default: Main repository - label_copy_attachments: Copy attachments - label_item_position: "%{position} of %{count}" - label_completed_versions: Completed versions - field_multiple: Multiple values - setting_commit_cross_project_ref: Allow issues of all the other projects to be referenced and fixed - text_issue_conflict_resolution_add_notes: Add my notes and discard my other changes - text_issue_conflict_resolution_overwrite: Apply my changes anyway (previous notes will be kept but some changes may be overwritten) - notice_issue_update_conflict: The issue has been updated by an other user while you were editing it. - text_issue_conflict_resolution_cancel: Discard all my changes and redisplay %{link} - permission_manage_related_issues: Manage related issues - field_auth_source_ldap_filter: LDAP filter - label_search_for_watchers: Search for watchers to add - notice_account_deleted: Your account has been permanently deleted. - setting_unsubscribe: Allow users to delete their own account - button_delete_my_account: Delete my account - text_account_destroy_confirmation: |- - Are you sure you want to proceed? - Your account will be permanently deleted, with no way to reactivate it. - error_session_expired: Your session has expired. Please login again. - text_session_expiration_settings: "Warning: changing these settings may expire the current sessions including yours." - setting_session_lifetime: Session maximum lifetime - setting_session_timeout: Session inactivity timeout - label_session_expiration: Session expiration - permission_close_project: Close / reopen the project - button_close: Close - button_reopen: Reopen - project_status_active: active - project_status_closed: closed - project_status_archived: archived - text_project_closed: This project is closed and read-only. - notice_user_successful_create: User %{id} created. - field_core_fields: Standard fields - field_timeout: Timeout (in seconds) - setting_thumbnails_enabled: Display attachment thumbnails - setting_thumbnails_size: Thumbnails size (in pixels) - label_status_transitions: Status transitions - label_fields_permissions: Fields permissions - label_readonly: Read-only - label_required: Required - text_repository_identifier_info: 'Only lower case letters (a-z), numbers, dashes and underscores are allowed.
    Once saved, the identifier cannot be changed.' - field_board_parent: Parent forum - label_attribute_of_project: Project's %{name} - label_attribute_of_author: Author's %{name} - label_attribute_of_assigned_to: Assignee's %{name} - label_attribute_of_fixed_version: Target version's %{name} - label_copy_subtasks: Copy subtasks - label_copied_to: copied to - label_copied_from: copied from - label_any_issues_in_project: any issues in project - label_any_issues_not_in_project: any issues not in project - field_private_notes: Private notes - permission_view_private_notes: View private notes - permission_set_notes_private: Set notes as private - label_no_issues_in_project: no issues in project - label_any_open_issues: any open issues - label_no_open_issues: no open issues - label_any: all - label_last_n_weeks: last %{count} weeks - setting_cross_project_subtasks: Allow cross-project subtasks - label_cross_project_descendants: With subprojects - label_cross_project_tree: With project tree - label_cross_project_hierarchy: With project hierarchy - label_cross_project_system: With all projects - button_hide: Hide - setting_non_working_week_days: Non-working days - label_in_the_next_days: in the next - label_in_the_past_days: in the past - label_attribute_of_user: User's %{name} - text_turning_multiple_off: If you disable multiple values, multiple values will be - removed in order to preserve only one value per item. - label_attribute_of_issue: Issue's %{name} - permission_add_documents: Add documents - permission_edit_documents: Edit documents - permission_delete_documents: Delete documents - label_gantt_progress_line: Progress line - setting_jsonp_enabled: Enable JSONP support - field_inherit_members: Inherit members - field_closed_on: Closed - field_generate_password: Generate password - setting_default_projects_tracker_ids: Default trackers for new projects - label_total_time: Total - notice_account_not_activated_yet: You haven't activated your account yet. If you want - to receive a new activation email, please click this link. - notice_account_locked: Your account is locked. - label_hidden: Hidden - label_visibility_private: to me only - label_visibility_roles: to these roles only - label_visibility_public: to any users - field_must_change_passwd: Must change password at next logon - notice_new_password_must_be_different: The new password must be different from the - current password - setting_mail_handler_excluded_filenames: Exclude attachments by name - text_convert_available: ImageMagick convert available (optional) - text_gs_available: ImageMagick PDF support available (optional) - label_link: Link - label_only: only - label_drop_down_list: drop-down list - label_checkboxes: checkboxes - label_link_values_to: Link values to URL - setting_force_default_language_for_anonymous: Force default language for anonymous - users - setting_force_default_language_for_loggedin: Force default language for logged-in - users - label_custom_field_select_type: Select the type of object to which the custom field - is to be attached - label_issue_assigned_to_updated: Assignee updated - label_check_for_updates: Check for updates - label_latest_compatible_version: Latest compatible version - label_unknown_plugin: Unknown plugin - label_radio_buttons: radio buttons - label_group_anonymous: Anonymous users - label_group_non_member: Non member users - label_add_projects: Add projects - field_default_status: Default status - text_subversion_repository_note: 'Examples: file:///, http://, https://, svn://, svn+[tunnelscheme]://' - field_users_visibility: Users visibility - label_users_visibility_all: All active users - label_users_visibility_members_of_visible_projects: Members of visible projects - label_edit_attachments: Edit attached files - setting_link_copied_issue: Link issues on copy - label_link_copied_issue: Link copied issue - label_ask: Ask - label_search_attachments_yes: Search attachment filenames and descriptions - label_search_attachments_no: Do not search attachments - label_search_attachments_only: Search attachments only - label_search_open_issues_only: Open issues only - field_address: Email - setting_max_additional_emails: Maximum number of additional email addresses - label_email_address_plural: Emails - label_email_address_add: Add email address - label_enable_notifications: Enable notifications - label_disable_notifications: Disable notifications - setting_search_results_per_page: Search results per page - label_blank_value: blank - permission_copy_issues: Copy issues - error_password_expired: Your password has expired or the administrator requires you - to change it. - field_time_entries_visibility: Time logs visibility - setting_password_max_age: Require password change after - label_parent_task_attributes: Parent tasks attributes - label_parent_task_attributes_derived: Calculated from subtasks - label_parent_task_attributes_independent: Independent of subtasks - label_time_entries_visibility_all: All time entries - label_time_entries_visibility_own: Time entries created by the user - label_member_management: Member management - label_member_management_all_roles: All roles - label_member_management_selected_roles_only: Only these roles - label_password_required: Confirm your password to continue - label_total_spent_time: Overall spent time - notice_import_finished: "%{count} items have been imported" - notice_import_finished_with_errors: "%{count} out of %{total} items could not be imported" - error_invalid_file_encoding: The file is not a valid %{encoding} encoded file - error_invalid_csv_file_or_settings: The file is not a CSV file or does not match the - settings below - error_can_not_read_import_file: An error occurred while reading the file to import - permission_import_issues: Import issues - label_import_issues: Import issues - label_select_file_to_import: Select the file to import - label_fields_separator: Field separator - label_fields_wrapper: Field wrapper - label_encoding: Encoding - label_comma_char: Comma - label_semi_colon_char: Semicolon - label_quote_char: Quote - label_double_quote_char: Double quote - label_fields_mapping: Fields mapping - label_file_content_preview: File content preview - label_create_missing_values: Create missing values - button_import: Import - field_total_estimated_hours: Total estimated time - label_api: API - label_total_plural: Totals - label_assigned_issues: Assigned issues - label_field_format_enumeration: Key/value list - label_f_hour_short: '%{value} h' - field_default_version: Default version - error_attachment_extension_not_allowed: Attachment extension %{extension} is not allowed - setting_attachment_extensions_allowed: Allowed extensions - setting_attachment_extensions_denied: Disallowed extensions - label_default_values_for_new_users: Default values for new users - error_ldap_bind_credentials: Invalid LDAP Account/Password - setting_sys_api_key: API key - setting_lost_password: Lost password - mail_subject_security_notification: Security notification - mail_body_security_notification_change: ! '%{field} was changed.' - mail_body_security_notification_change_to: ! '%{field} was changed to %{value}.' - mail_body_security_notification_add: ! '%{field} %{value} was added.' - mail_body_security_notification_remove: ! '%{field} %{value} was removed.' - mail_body_security_notification_notify_enabled: Email address %{value} now receives - notifications. - mail_body_security_notification_notify_disabled: Email address %{value} no longer - receives notifications. - mail_body_settings_updated: ! 'The following settings were changed:' - field_remote_ip: IP address - label_wiki_page_new: New wiki page - label_relations: Relations - button_filter: Filter - mail_body_password_updated: Your password has been changed. - error_no_tracker_allowed_for_new_issue_in_project: The project doesn't have any trackers - for which you can create an issue - label_tracker_all: All trackers - label_new_project_issue_tab_enabled: Display the "New issue" tab - setting_new_item_menu_tab: Project menu tab for creating new objects - label_new_object_tab_enabled: Display the "+" drop-down - error_no_projects_with_tracker_allowed_for_new_issue: There are no projects with trackers - for which you can create an issue - field_textarea_font: Font used for text areas - label_font_default: Default font - label_font_monospace: Monospaced font - label_font_proportional: Proportional font - setting_timespan_format: Time span format - label_table_of_contents: Table of contents - setting_commit_logs_formatting: Apply text formatting to commit messages - setting_mail_handler_enable_regex: Enable regular expressions - error_move_of_child_not_possible: 'Subtask %{child} could not be moved to the new - project: %{errors}' - error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted: Spent time cannot - be reassigned to an issue that is about to be deleted - setting_timelog_required_fields: Required fields for time logs - label_attribute_of_object: '%{object_name}''s %{name}' - label_user_mail_option_only_assigned: Only for things I watch or I am assigned to - label_user_mail_option_only_owner: Only for things I watch or I am the owner of - warning_fields_cleared_on_bulk_edit: Changes will result in the automatic deletion - of values from one or more fields on the selected objects - field_updated_by: Updated by - field_last_updated_by: Last updated by - field_full_width_layout: Full width layout - label_last_notes: Last notes - field_digest: Checksum - field_default_assigned_to: Default assignee - setting_show_custom_fields_on_registration: Show custom fields on registration - permission_view_news: View news - label_no_preview_alternative_html: No preview available. %{link} the file instead. - label_no_preview_download: Download - setting_close_duplicate_issues: Close duplicate issues automatically - error_exceeds_maximum_hours_per_day: Cannot log more than %{max_hours} hours on the - same day (%{logged_hours} hours have already been logged) - setting_time_entry_list_defaults: Timelog list defaults - setting_timelog_accept_0_hours: Accept time logs with 0 hours - setting_timelog_max_hours_per_day: Maximum hours that can be logged per day and user - label_x_revisions: "%{count} revisions" - error_can_not_delete_auth_source: This authentication mode is in use and cannot be - deleted. - button_actions: Actions - mail_body_lost_password_validity: Please be aware that you may change the password - only once using this link. - text_login_required_html: When not requiring authentication, public projects and their - contents are openly available on the network. You can edit - the applicable permissions. - label_login_required_yes: 'Yes' - label_login_required_no: No, allow anonymous access to public projects - text_project_is_public_non_member: Public projects and their contents are available - to all logged-in users. - text_project_is_public_anonymous: Public projects and their contents are openly available - on the network. - label_ldap: LDAP - label_ldaps_verify_none: LDAPS (without certificate check) - label_ldaps_verify_peer: LDAPS - label_ldaps_warning: It is recommended to use an encrypted LDAPS connection with certificate - check to prevent any manipulation during the authentication process. - label_nothing_to_preview: Nothing to preview - error_token_expired: This password recovery link has expired, please try again. - error_spent_on_future_date: Cannot log time on a future date - setting_timelog_accept_future_dates: Accept time logs on future dates - label_delete_link_to_subtask: Delete relation - error_not_allowed_to_log_time_for_other_users: You are not allowed to log time for other users - permission_log_time_for_other_users: Log spent time for other users - label_tomorrow: tomorrow - label_next_week: next week - label_next_month: next month - text_role_no_workflow: No workflow defined for this role - text_status_no_workflow: No tracker uses this status in the workflows - setting_mail_handler_preferred_body_part: Preferred part of multipart (HTML) emails - setting_show_status_changes_in_mail_subject: Show status changes in issue mail notifications - subject - label_inherited_from_parent_project: Inherited from parent project - label_inherited_from_group: Inherited from group %{name} - label_trackers_description: Trackers description - label_open_trackers_description: View all trackers description - label_preferred_body_part_text: Text - label_preferred_body_part_html: HTML (experimental) - field_parent_issue_subject: Parent task subject - permission_edit_own_issues: Edit own issues - text_select_apply_tracker: Select tracker - label_updated_issues: Updated issues - text_avatar_server_config_html: The current avatar server is %{url}. - You can configure it in config/configuration.yml. - setting_gantt_months_limit: Maximum number of months displayed on the gantt chart - permission_import_time_entries: Import time entries - label_import_notifications: Send email notifications during the import - field_recently_used_projects: Number of recently used projects in jump box - label_optgroup_bookmarks: Bookmarks - label_optgroup_others: Other projects - label_optgroup_recents: Recently used - button_project_bookmark: Add bookmark - button_project_bookmark_delete: Remove bookmark - field_history_default_tab: Issue's history default tab - label_issue_history_properties: Property changes - label_issue_history_notes: Notes - label_last_tab_visited: Last visited tab - field_unique_id: Unique ID - text_no_subject: no subject - setting_password_required_char_classes: Required character classes for passwords - label_password_char_class_uppercase: uppercase letters - label_password_char_class_lowercase: lowercase letters - label_password_char_class_digits: digits - label_password_char_class_special_chars: special characters - text_characters_must_contain: Must contain %{character_classes}. - label_starts_with: starts with - label_ends_with: ends with - label_issue_fixed_version_updated: Target version updated - setting_project_list_defaults: Projects list defaults - label_display_type: Display results as - label_display_type_list: List - label_display_type_board: Board - label_my_bookmarks: My bookmarks - label_import_time_entries: Import time entries diff --git a/config/locales/es-PA.yml b/config/locales/es-PA.yml deleted file mode 100644 index 4ffbdb3..0000000 --- a/config/locales/es-PA.yml +++ /dev/null @@ -1,1345 +0,0 @@ -# Spanish translations for Rails -# by Francisco Fernando García Nieto (ffgarcianieto@gmail.com) -# Redmine spanish translation: -# by J. Cayetano Delgado (Cayetano _dot_ Delgado _at_ ioko _dot_ com) -# Contributors: @borjacampina @jgutierrezvega -# Modified by: Leonel Iturralde -# For use to spanish panama - -es-PA: - number: - # Used in number_with_delimiter() - # These are also the defaults for 'currency', 'percentage', 'precision', and 'human' - format: - # Sets the separator between the units, for more precision (e.g. 1.0 / 2.0 == 0.5) - separator: "." - # Delimets thousands (e.g. 1,000,000 is a million) (always in groups of three) - delimiter: "," - # Number of decimals, behind the separator (1 with a precision of 2 gives: 1.00) - precision: 3 - - # Used in number_to_currency() - currency: - format: - # Where is the currency sign? %u is the currency unit, %n the number (default: $5.00) - format: "%n %u" - unit: "$" - # These three are to override number.format and are optional - separator: "," - delimiter: "." - precision: 2 - - # Used in number_to_percentage() - percentage: - format: - # These three are to override number.format and are optional - # separator: - delimiter: "" - # precision: - - # Used in number_to_precision() - precision: - format: - # These three are to override number.format and are optional - # separator: - delimiter: "" - # precision: - - # Used in number_to_human_size() - human: - format: - # These three are to override number.format and are optional - # separator: - delimiter: "" - precision: 3 - storage_units: - format: "%n %u" - units: - byte: - one: "Byte" - other: "Bytes" - kb: "KB" - mb: "MB" - gb: "GB" - tb: "TB" - - # Used in distance_of_time_in_words(), distance_of_time_in_words_to_now(), time_ago_in_words() - datetime: - distance_in_words: - half_a_minute: "medio minuto" - less_than_x_seconds: - one: "menos de 1 segundo" - other: "menos de %{count} segundos" - x_seconds: - one: "1 segundo" - other: "%{count} segundos" - less_than_x_minutes: - one: "menos de 1 minuto" - other: "menos de %{count} minutos" - x_minutes: - one: "1 minuto" - other: "%{count} minutos" - about_x_hours: - one: "alrededor de 1 hora" - other: "alrededor de %{count} horas" - x_hours: - one: "1 hora" - other: "%{count} horas" - x_days: - one: "1 día" - other: "%{count} días" - about_x_months: - one: "alrededor de 1 mes" - other: "alrededor de %{count} meses" - x_months: - one: "1 mes" - other: "%{count} meses" - about_x_years: - one: "alrededor de 1 año" - other: "alrededor de %{count} años" - over_x_years: - one: "más de 1 año" - other: "más de %{count} años" - almost_x_years: - one: "casi 1 año" - other: "casi %{count} años" - - activerecord: - errors: - template: - header: - one: "no se pudo guardar este %{model} porque se encontró 1 error" - other: "no se pudo guardar este %{model} porque se encontraron %{count} errores" - # The variable :count is also available - body: "Se encontraron problemas con los siguientes campos:" - - # The values :model, :attribute and :value are always available for interpolation - # The value :count is available when applicable. Can be used for pluralization. - messages: - inclusion: "no está incluido en la lista" - exclusion: "está reservado" - invalid: "no es válido" - confirmation: "no coincide con la confirmación" - accepted: "debe ser aceptado" - empty: "no puede estar vacío" - blank: "no puede estar en blanco" - too_long: "es demasiado largo (%{count} caracteres máximo)" - too_short: "es demasiado corto (%{count} caracteres mínimo)" - wrong_length: "no tiene la longitud correcta (%{count} caracteres exactos)" - taken: "ya está en uso" - not_a_number: "no es un número" - greater_than: "debe ser mayor que %{count}" - greater_than_or_equal_to: "debe ser mayor que o igual a %{count}" - equal_to: "debe ser igual a %{count}" - less_than: "debe ser menor que %{count}" - less_than_or_equal_to: "debe ser menor que o igual a %{count}" - odd: "debe ser impar" - even: "debe ser par" - greater_than_start_date: "debe ser posterior a la fecha de comienzo" - not_same_project: "no pertenece al mismo proyecto" - circular_dependency: "Esta relación podría crear una dependencia circular" - cant_link_an_issue_with_a_descendant: "Esta incidencia no puede ser ligada a una de estas tareas" - earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" - not_a_regexp: "is not a valid regular expression" - open_issue_with_closed_parent: "An open issue cannot be attached to a closed parent task" - must_contain_uppercase: "must contain uppercase letters (A-Z)" - must_contain_lowercase: "must contain lowercase letters (a-z)" - must_contain_digits: "must contain digits (0-9)" - must_contain_special_chars: "must contain special characters (!, $, %, ...)" - - # Append your own errors here or at the model/attributes scope. - - models: - # Overrides default messages - - attributes: - # Overrides model and default messages. - - direction: ltr - date: - formats: - # Use the strftime parameters for formats. - # When no format has been given, it uses default. - # You can provide other formats here if you like! - default: "%Y-%m-%d" - short: "%d de %b" - long: "%d de %B de %Y" - - day_names: [Domingo, Lunes, Martes, Miércoles, Jueves, Viernes, Sábado] - abbr_day_names: [Dom, Lun, Mar, Mie, Jue, Vie, Sab] - - # Don't forget the nil at the beginning; there's no such thing as a 0th month - month_names: [~, Enero, Febrero, Marzo, Abril, Mayo, Junio, Julio, Agosto, Septiembre, Octubre, Noviembre, Diciembre] - abbr_month_names: [~, Ene, Feb, Mar, Abr, May, Jun, Jul, Ago, Sep, Oct, Nov, Dic] - # Used in date_select and datime_select. - order: - - :year - - :month - - :day - - time: - formats: - default: "%A, %d de %B de %Y %H:%M:%S %z" - time: "%H:%M" - short: "%d de %b %H:%M" - long: "%d de %B de %Y %H:%M" - am: "am" - pm: "pm" - -# Used in array.to_sentence. - support: - array: - sentence_connector: "y" - - actionview_instancetag_blank_option: Por favor seleccione - - button_activate: Activar - button_add: Añadir - button_annotate: Anotar - button_apply: Aceptar - button_archive: Archivar - button_back: Atrás - button_cancel: Cancelar - button_change: Cambiar - button_change_password: Cambiar contraseña - button_check_all: Seleccionar todo - button_clear: Anular - button_configure: Configurar - button_copy: Copiar - button_create: Crear - button_delete: Borrar - button_download: Descargar - button_edit: Modificar - button_list: Listar - button_lock: Bloquear - button_log_time: Tiempo dedicado - button_login: Acceder - button_move: Mover - button_quote: Citar - button_rename: Renombrar - button_reply: Responder - button_reset: Reestablecer - button_rollback: Volver a esta versión - button_save: Guardar - button_sort: Ordenar - button_submit: Aceptar - button_test: Probar - button_unarchive: Desarchivar - button_uncheck_all: No seleccionar nada - button_unlock: Desbloquear - button_unwatch: No monitorizar - button_update: Actualizar - button_view: Ver - button_watch: Monitorizar - default_activity_design: Diseño - default_activity_development: Desarrollo - default_doc_category_tech: Documentación técnica - default_doc_category_user: Documentación de usuario - default_issue_status_in_progress: En curso - default_issue_status_closed: Cerrada - default_issue_status_feedback: Comentarios - default_issue_status_new: Nueva - default_issue_status_rejected: Rechazada - default_issue_status_resolved: Resuelta - default_priority_high: Alta - default_priority_immediate: Inmediata - default_priority_low: Baja - default_priority_normal: Normal - default_priority_urgent: Urgente - default_role_developer: Desarrollador - default_role_manager: Jefe de proyecto - default_role_reporter: Informador - default_tracker_bug: Errores - default_tracker_feature: Tareas - default_tracker_support: Soporte - enumeration_activities: Actividades (tiempo dedicado) - enumeration_doc_categories: Categorías del documento - enumeration_issue_priorities: Prioridad de las incidencias - error_can_t_load_default_data: "No se ha podido cargar la configuración por defecto: %{value}" - error_issue_not_found_in_project: 'La incidencia no se encuentra o no está asociada a este proyecto' - error_scm_annotate: "No existe la entrada o no ha podido ser anotada" - error_scm_annotate_big_text_file: "La entrada no puede anotarse, al superar el tamaño máximo para archivos de texto." - error_scm_command_failed: "Se produjo un error al acceder al repositorio: %{value}" - error_scm_not_found: "La entrada y/o la revisión no existe en el repositorio." - error_ldap_bind_credentials: "Cuenta/Contraseña LDAP incorrecta" - field_account: Cuenta - field_activity: Actividad - field_admin: Administrador - field_assignable: Se pueden asignar incidencias a este perfil - field_assigned_to: Asignado a - field_attr_firstname: Cualidad del nombre - field_attr_lastname: Cualidad del apellido - field_attr_login: Cualidad del identificador - field_attr_mail: Cualidad del Email - field_auth_source: Modo de identificación - field_author: Autor - field_base_dn: DN base - field_category: Categoría - field_column_names: Columnas - field_comments: Comentario - field_comments_sorting: Mostrar comentarios - field_created_on: Creado - field_default_value: Estado por defecto - field_delay: Retraso - field_description: Descripción - field_done_ratio: "% Realizado" - field_downloads: Descargas - field_due_date: Fecha fin - field_effective_date: Fecha - field_estimated_hours: Tiempo estimado - field_field_format: Formato - field_filename: Archivo - field_filesize: Tamaño - field_firstname: Nombre - field_fixed_version: Versión prevista - field_hide_mail: Ocultar mi dirección de correo - field_homepage: Sitio web - field_host: Anfitrión - field_hours: Horas - field_identifier: Identificador - field_is_closed: Incidencia resuelta - field_is_default: Estado por defecto - field_is_filter: Usado como filtro - field_is_for_all: Para todos los proyectos - field_is_in_roadmap: Consultar las incidencias en la planificación - field_is_public: Público - field_is_required: Obligatorio - field_issue: Incidencia - field_issue_to: Incidencia relacionada - field_language: Idioma - field_last_login_on: Última conexión - field_lastname: Apellido - field_login: Identificador - field_mail: Correo electrónico - field_mail_notification: Notificaciones por correo - field_max_length: Longitud máxima - field_min_length: Longitud mínima - field_name: Nombre - field_new_password: Nueva contraseña - field_notes: Notas - field_onthefly: Creación del usuario "al vuelo" - field_parent: Proyecto padre - field_parent_title: Página padre - field_password: Contraseña - field_password_confirmation: Confirmación - field_port: Puerto - field_possible_values: Valores posibles - field_priority: Prioridad - field_project: Proyecto - field_redirect_existing_links: Redireccionar enlaces existentes - field_regexp: Expresión regular - field_role: Perfil - field_searchable: Incluir en las búsquedas - field_spent_on: Fecha - field_start_date: Fecha de inicio - field_start_page: Página principal - field_status: Estado - field_subject: Asunto - field_subproject: Proyecto secundario - field_summary: Resumen - field_time_zone: Zona horaria - field_title: Título - field_tracker: Tipo - field_type: Tipo - field_updated_on: Actualizado - field_url: URL - field_user: Usuario - field_value: Valor - field_version: Versión - general_csv_decimal_separator: '.' - general_csv_encoding: ISO-8859-15 - general_csv_separator: ',' - general_pdf_fontname: freesans - general_pdf_monospaced_fontname: freemono - general_first_day_of_week: '1' - general_lang_name: 'Spanish/Panama (Español/Panamá)' - general_text_No: 'No' - general_text_Yes: 'Sí' - general_text_no: 'no' - general_text_yes: 'sí' - label_activity: Actividad - label_add_another_file: Añadir otro archivo - label_add_note: Añadir una nota - label_added: añadido - label_added_time_by: "Añadido por %{author} hace %{age}" - label_administration: Administración - label_age: Edad - label_ago: hace - label_all: todos - label_all_words: Todas las palabras - label_and_its_subprojects: "%{value} y proyectos secundarios" - label_applied_status: Aplicar estado - label_assigned_to_me_issues: Incidencias que me asignaron - label_associated_revisions: Revisiones asociadas - label_attachment: Archivo - label_attachment_delete: Borrar el archivo - label_attachment_new: Nuevo archivo - label_attachment_plural: Archivos - label_attribute: Cualidad - label_attribute_plural: Cualidades - label_auth_source: Modo de autenticación - label_auth_source_new: Nuevo modo de autenticación - label_auth_source_plural: Modos de autenticación - label_authentication: Autenticación - label_blocked_by: bloqueado por - label_blocks: bloquea a - label_board: Foro - label_board_new: Nuevo foro - label_board_plural: Foros - label_boolean: Booleano - label_browse: Hojear - label_bulk_edit_selected_issues: Editar las incidencias seleccionadas - label_calendar: Calendario - label_change_plural: Cambios - label_change_properties: Cambiar propiedades - label_change_status: Cambiar el estado - label_change_view_all: Ver todos los cambios - label_changes_details: Detalles de todos los cambios - label_changeset_plural: Cambios - label_chronological_order: En orden cronológico - label_closed_issues: cerrada - label_closed_issues_plural: cerradas - label_x_open_issues_abbr: - zero: 0 abiertas - one: 1 abierta - other: "%{count} abiertas" - label_x_closed_issues_abbr: - zero: 0 cerradas - one: 1 cerrada - other: "%{count} cerradas" - label_comment: Comentario - label_comment_add: Añadir un comentario - label_comment_added: Comentario añadido - label_comment_delete: Borrar comentarios - label_comment_plural: Comentarios - label_x_comments: - zero: sin comentarios - one: 1 comentario - other: "%{count} comentarios" - label_commits_per_author: Commits por autor - label_commits_per_month: Commits por mes - label_confirmation: Confirmación - label_contains: contiene - label_copied: copiado - label_copy_workflow_from: Copiar flujo de trabajo desde - label_current_status: Estado actual - label_current_version: Versión actual - label_custom_field: Campo personalizado - label_custom_field_new: Nuevo campo personalizado - label_custom_field_plural: Campos personalizados - label_date: Fecha - label_date_from: Desde - label_date_range: Rango de fechas - label_date_to: Hasta - label_day_plural: días - label_default: Por defecto - label_default_columns: Columnas por defecto - label_deleted: suprimido - label_details: Detalles - label_diff_inline: en línea - label_diff_side_by_side: cara a cara - label_disabled: deshabilitado - label_display_per_page: "Por página: %{value}" - label_document: Documento - label_document_added: Documento añadido - label_document_new: Nuevo documento - label_document_plural: Documentos - label_downloads_abbr: D/L - label_duplicated_by: duplicada por - label_duplicates: duplicada de - label_enumeration_new: Nuevo valor - label_enumerations: Listas de valores - label_environment: Entorno - label_equals: igual - label_example: Ejemplo - label_export_to: 'Exportar a:' - label_f_hour: "%{value} hora" - label_f_hour_plural: "%{value} horas" - label_feed_plural: Feeds - label_feeds_access_key_created_on: "Clave de acceso por Atom creada hace %{value}" - label_file_added: Archivo añadido - label_file_plural: Archivos - label_filter_add: Añadir el filtro - label_filter_plural: Filtros - label_float: Flotante - label_follows: posterior a - label_gantt: Gantt - label_general: General - label_generate_key: Generar clave - label_help: Ayuda - label_history: Histórico - label_home: Inicio - label_in: en - label_in_less_than: en menos que - label_in_more_than: en más que - label_incoming_emails: Correos entrantes - label_index_by_date: Índice por fecha - label_index_by_title: Índice por título - label_information: Información - label_information_plural: Información - label_integer: Número - label_internal: Interno - label_issue: Incidencias - label_issue_added: Incidencias añadida - label_issue_category: Categoría de las incidencias - label_issue_category_new: Nueva categoría - label_issue_category_plural: Categorías de las incidencias - label_issue_new: Nueva incidencia - label_issue_plural: Incidencias - label_issue_status: Estado de la incidencias - label_issue_status_new: Nuevo estado - label_issue_status_plural: Estados de las incidencias - label_issue_tracking: Incidencias - label_issue_updated: Incidencia actualizada - label_issue_view_all: Ver todas las incidencias - label_issue_watchers: Seguidores - label_issues_by: "Incidencias por %{value}" - label_jump_to_a_project: Ir al proyecto... - label_language_based: Basado en el idioma - label_last_changes: "últimos %{count} cambios" - label_last_login: Última conexión - label_last_month: último mes - label_last_n_days: "últimos %{count} días" - label_last_week: última semana - label_latest_revision: Última revisión - label_latest_revision_plural: Últimas revisiones - label_ldap_authentication: Autenticación LDAP - label_less_than_ago: hace menos de - label_list: Lista - label_loading: Cargando... - label_logged_as: Conectado como - label_login: Iniciar sesión - label_logout: Terminar sesión - label_max_size: Tamaño máximo - label_me: yo mismo - label_member: Miembro - label_member_new: Nuevo miembro - label_member_plural: Miembros - label_message_last: Último mensaje - label_message_new: Nuevo mensaje - label_message_plural: Mensajes - label_message_posted: Mensaje añadido - label_min_max_length: Longitud mín - máx - label_modified: modificado - label_module_plural: Módulos - label_month: Mes - label_months_from: meses de - label_more_than_ago: hace más de - label_my_account: Mi cuenta - label_my_page: Mi página - label_my_projects: Mis proyectos - label_new: Nuevo - label_new_statuses_allowed: Nuevos estados autorizados - label_news: Noticia - label_news_added: Noticia añadida - label_news_latest: Últimas noticias - label_news_new: Nueva noticia - label_news_plural: Noticias - label_news_view_all: Ver todas las noticias - label_next: Siguiente - label_no_change_option: (Sin cambios) - label_no_data: Ningún dato disponible - label_nobody: nadie - label_none: ninguno - label_not_contains: no contiene - label_not_equals: no igual - label_open_issues: abierta - label_open_issues_plural: abiertas - label_optional_description: Descripción opcional - label_options: Opciones - label_overall_activity: Actividad global - label_overview: Vistazo - label_password_lost: ¿Olvidaste la contraseña? - label_permissions: Permisos - label_permissions_report: Informe de permisos - label_plugins: Extensiones - label_precedes: anterior a - label_preferences: Preferencias - label_preview: Previsualizar - label_previous: Anterior - label_project: Proyecto - label_project_all: Todos los proyectos - label_project_latest: Últimos proyectos - label_project_new: Nuevo proyecto - label_project_plural: Proyectos - label_x_projects: - zero: sin proyectos - one: 1 proyecto - other: "%{count} proyectos" - label_public_projects: Proyectos públicos - label_query: Consulta personalizada - label_query_new: Nueva consulta - label_query_plural: Consultas personalizadas - label_read: Leer... - label_register: Registrar - label_registered_on: Inscrito el - label_registration_activation_by_email: activación de cuenta por correo - label_registration_automatic_activation: activación automática de cuenta - label_registration_manual_activation: activación manual de cuenta - label_related_issues: Incidencias relacionadas - label_relates_to: relacionada con - label_relation_delete: Eliminar relación - label_relation_new: Nueva relación - label_renamed: renombrado - label_reply_plural: Respuestas - label_report: Informe - label_report_plural: Informes - label_reported_issues: Incidencias registradas por mí - label_repository: Repositorio - label_repository_plural: Repositorios - label_result_plural: Resultados - label_reverse_chronological_order: En orden cronológico inverso - label_revision: Revisión - label_revision_plural: Revisiones - label_roadmap: Planificación - label_roadmap_due_in: "Finaliza en %{value}" - label_roadmap_no_issues: No hay incidencias para esta versión - label_roadmap_overdue: "%{value} tarde" - label_role: Perfil - label_role_and_permissions: Perfiles y permisos - label_role_new: Nuevo perfil - label_role_plural: Perfiles - label_scm: SCM - label_search: Búsqueda - label_search_titles_only: Buscar sólo en títulos - label_send_information: Enviar información de la cuenta al usuario - label_send_test_email: Enviar un correo de prueba - label_settings: Configuración - label_show_completed_versions: Muestra las versiones terminadas - label_sort_by: "Ordenar por %{value}" - label_sort_higher: Subir - label_sort_highest: Primero - label_sort_lower: Bajar - label_sort_lowest: Último - label_spent_time: Tiempo dedicado - label_statistics: Estadísticas - label_stay_logged_in: Mantener la sesión abierta - label_string: Texto - label_subproject_plural: Proyectos secundarios - label_text: Texto largo - label_theme: Tema - label_this_month: este mes - label_this_week: esta semana - label_this_year: este año - label_time_tracking: Control de tiempo - label_today: hoy - label_topic_plural: Temas - label_total: Total - label_tracker: Tipo - label_tracker_new: Nuevo tipo - label_tracker_plural: Tipos de incidencias - label_updated_time: "Actualizado hace %{value}" - label_updated_time_by: "Actualizado por %{author} hace %{age}" - label_used_by: Utilizado por - label_user: Usuario - label_user_activity: "Actividad de %{value}" - label_user_mail_no_self_notified: "No quiero ser avisado de cambios hechos por mí" - label_user_mail_option_all: "Para cualquier evento en todos mis proyectos" - label_user_mail_option_selected: "Para cualquier evento de los proyectos seleccionados..." - label_user_new: Nuevo usuario - label_user_plural: Usuarios - label_version: Versión - label_version_new: Nueva versión - label_version_plural: Versiones - label_view_diff: Ver diferencias - label_view_revisions: Ver las revisiones - label_watched_issues: Incidencias monitorizadas - label_week: Semana - label_wiki: Wiki - label_wiki_edit: Modificación Wiki - label_wiki_edit_plural: Modificaciones Wiki - label_wiki_page: Página Wiki - label_wiki_page_plural: Páginas Wiki - label_workflow: Flujo de trabajo - label_year: Año - label_yesterday: ayer - mail_body_account_activation_request: "Se ha inscrito un nuevo usuario (%{value}). La cuenta está pendiende de aprobación:" - mail_body_account_information: Información sobre su cuenta - mail_body_account_information_external: "Puede usar su cuenta %{value} para conectarse." - mail_body_lost_password: 'Para cambiar su contraseña, haga clic en el siguiente enlace:' - mail_body_register: 'Para activar su cuenta, haga clic en el siguiente enlace:' - mail_body_reminder: "%{count} incidencia(s) asignadas a ti finalizan en los próximos %{days} días:" - mail_subject_account_activation_request: "Incidencia de activación de cuenta %{value}" - mail_subject_lost_password: "Tu contraseña del %{value}" - mail_subject_register: "Activación de la cuenta del %{value}" - mail_subject_reminder: "%{count} incidencia(s) finalizan en los próximos %{days} días" - notice_account_activated: Su cuenta ha sido activada. Ya puede conectarse. - notice_account_invalid_credentials: Usuario o contraseña inválido. - notice_account_lost_email_sent: Se le ha enviado un correo con instrucciones para elegir una nueva contraseña. - notice_account_password_updated: Contraseña modificada correctamente. - notice_account_pending: "Su cuenta ha sido creada y está pendiende de la aprobación por parte del administrador." - notice_account_register_done: Cuenta creada correctamente. Para activarla, haga clic sobre el enlace que le ha sido enviado por correo. - notice_account_unknown_email: Usuario desconocido. - notice_account_updated: Cuenta actualizada correctamente. - notice_account_wrong_password: Contraseña incorrecta. - notice_can_t_change_password: Esta cuenta utiliza una fuente de autenticación externa. No es posible cambiar la contraseña. - notice_default_data_loaded: Configuración por defecto cargada correctamente. - notice_email_error: "Ha ocurrido un error mientras enviando el correo (%{value})" - notice_email_sent: "Se ha enviado un correo a %{value}" - notice_failed_to_save_issues: "Imposible grabar %{count} incidencia(s) de %{total} seleccionada(s): %{ids}." - notice_feeds_access_key_reseted: Su clave de acceso para Atom ha sido reiniciada. - notice_file_not_found: La página a la que intenta acceder no existe. - notice_locking_conflict: Los datos han sido modificados por otro usuario. - notice_no_issue_selected: "Ninguna incidencia seleccionada. Por favor, compruebe la incidencia que quiere modificar" - notice_not_authorized: No tiene autorización para acceder a esta página. - notice_successful_connection: Conexión correcta. - notice_successful_create: Creación correcta. - notice_successful_delete: Borrado correcto. - notice_successful_update: Modificación correcta. - notice_unable_delete_version: No se puede borrar la versión - permission_add_issue_notes: Añadir notas - permission_add_issue_watchers: Añadir seguidores - permission_add_issues: Añadir incidencias - permission_add_messages: Enviar mensajes - permission_browse_repository: Hojear repositiorio - permission_comment_news: Comentar noticias - permission_commit_access: Acceso de escritura - permission_delete_issues: Borrar incidencias - permission_delete_messages: Borrar mensajes - permission_delete_own_messages: Borrar mensajes propios - permission_delete_wiki_pages: Borrar páginas wiki - permission_delete_wiki_pages_attachments: Borrar archivos - permission_edit_issue_notes: Modificar notas - permission_edit_issues: Modificar incidencias - permission_edit_messages: Modificar mensajes - permission_edit_own_issue_notes: Modificar notas propias - permission_edit_own_messages: Editar mensajes propios - permission_edit_own_time_entries: Modificar tiempos dedicados propios - permission_edit_project: Modificar proyecto - permission_edit_time_entries: Modificar tiempos dedicados - permission_edit_wiki_pages: Modificar páginas wiki - permission_log_time: Anotar tiempo dedicado - permission_manage_boards: Administrar foros - permission_manage_categories: Administrar categorías de incidencias - permission_manage_files: Administrar archivos - permission_manage_issue_relations: Administrar relación con otras incidencias - permission_manage_members: Administrar miembros - permission_manage_news: Administrar noticias - permission_manage_public_queries: Administrar consultas públicas - permission_manage_repository: Administrar repositorio - permission_manage_versions: Administrar versiones - permission_manage_wiki: Administrar wiki - permission_protect_wiki_pages: Proteger páginas wiki - permission_rename_wiki_pages: Renombrar páginas wiki - permission_save_queries: Grabar consultas - permission_select_project_modules: Seleccionar módulos del proyecto - permission_view_calendar: Ver calendario - permission_view_changesets: Ver cambios - permission_view_documents: Ver documentos - permission_view_files: Ver archivos - permission_view_gantt: Ver diagrama de Gantt - permission_view_issue_watchers: Ver lista de seguidores - permission_view_messages: Ver mensajes - permission_view_time_entries: Ver tiempo dedicado - permission_view_wiki_edits: Ver histórico del wiki - permission_view_wiki_pages: Ver wiki - project_module_boards: Foros - project_module_documents: Documentos - project_module_files: Archivos - project_module_issue_tracking: Incidencias - project_module_news: Noticias - project_module_repository: Repositorio - project_module_time_tracking: Control de tiempo - project_module_wiki: Wiki - setting_activity_days_default: Días a mostrar en la actividad de proyecto - setting_app_title: Título de la aplicación - setting_attachment_max_size: Tamaño máximo del archivo - setting_autofetch_changesets: Autorellenar los commits del repositorio - setting_autologin: Inicio de sesión automático - setting_bcc_recipients: Ocultar las copias de carbón (bcc) - setting_commit_fix_keywords: Palabras clave para la corrección - setting_commit_ref_keywords: Palabras clave para la referencia - setting_cross_project_issue_relations: Permitir relacionar incidencias de distintos proyectos - setting_date_format: Formato de fecha - setting_default_language: Idioma por defecto - setting_default_projects_public: Los proyectos nuevos son públicos por defecto - setting_diff_max_lines_displayed: Número máximo de diferencias mostradas - setting_display_subprojects_issues: Mostrar por defecto incidencias de proy. secundarios en el principal - setting_emails_footer: Pie de mensajes - setting_enabled_scm: Activar SCM - setting_feeds_limit: Límite de contenido para sindicación - setting_gravatar_enabled: Usar iconos de usuario (Gravatar) - setting_host_name: Nombre y ruta del servidor - setting_issue_list_default_columns: Columnas por defecto para la lista de incidencias - setting_issues_export_limit: Límite de exportación de incidencias - setting_login_required: Se requiere identificación - setting_mail_from: Correo desde el que enviar mensajes - setting_mail_handler_api_enabled: Activar SW para mensajes entrantes - setting_mail_handler_api_key: Clave de la API - setting_per_page_options: Objetos por página - setting_plain_text_mail: sólo texto plano (no HTML) - setting_protocol: Protocolo - setting_self_registration: Registro permitido - setting_sequential_project_identifiers: Generar identificadores de proyecto - setting_sys_api_enabled: Habilitar SW para la gestión del repositorio - setting_text_formatting: Formato de texto - setting_time_format: Formato de hora - setting_user_format: Formato de nombre de usuario - setting_welcome_text: Texto de bienvenida - setting_wiki_compression: Compresión del historial del Wiki - status_active: activo - status_locked: bloqueado - status_registered: registrado - text_are_you_sure: ¿Está seguro? - text_assign_time_entries_to_project: Asignar las horas al proyecto - text_caracters_maximum: "%{count} caracteres como máximo." - text_caracters_minimum: "%{count} caracteres como mínimo." - text_comma_separated: Múltiples valores permitidos (separados por coma). - text_default_administrator_account_changed: Cuenta de administrador por defecto modificada - text_destroy_time_entries: Borrar las horas - text_destroy_time_entries_question: Existen %{hours} horas asignadas a la incidencia que quiere borrar. ¿Qué quiere hacer? - text_diff_truncated: '... Diferencia truncada por exceder el máximo tamaño visualizable.' - text_email_delivery_not_configured: "Las notificaciones están desactivadas porque el servidor de correo no está configurado.\nConfigure el servidor de SMTP en config/configuration.yml y reinicie la aplicación para activar los cambios." - text_enumeration_category_reassign_to: 'Reasignar al siguiente valor:' - text_enumeration_destroy_question: "%{count} objetos con este valor asignado." - text_file_repository_writable: Se puede escribir en el repositorio - text_issue_added: "Incidencia %{id} añadida por %{author}." - text_issue_category_destroy_assignments: Dejar las incidencias sin categoría - text_issue_category_destroy_question: "Algunas incidencias (%{count}) están asignadas a esta categoría. ¿Qué desea hacer?" - text_issue_category_reassign_to: Reasignar las incidencias a la categoría - text_issue_updated: "La incidencia %{id} ha sido actualizada por %{author}." - text_issues_destroy_confirmation: '¿Seguro que quiere borrar las incidencias seleccionadas?' - text_issues_ref_in_commit_messages: Referencia y incidencia de corrección en los mensajes - text_length_between: "Longitud entre %{min} y %{max} caracteres." - text_load_default_configuration: Cargar la configuración por defecto - text_min_max_length_info: 0 para ninguna restricción - text_no_configuration_data: "Todavía no se han configurado perfiles, ni tipos, estados y flujo de trabajo asociado a incidencias. Se recomiendo encarecidamente cargar la configuración por defecto. Una vez cargada, podrá modificarla." - text_project_destroy_confirmation: ¿Estás seguro de querer eliminar el proyecto? - text_reassign_time_entries: 'Reasignar las horas a esta incidencia:' - text_regexp_info: ej. ^[A-Z0-9]+$ - text_repository_usernames_mapping: "Establezca la correspondencia entre los usuarios de Redmine y los presentes en el log del repositorio.\nLos usuarios con el mismo nombre o correo en Redmine y en el repositorio serán asociados automáticamente." - text_minimagick_available: MiniMagick disponible (opcional) - text_select_mail_notifications: Seleccionar los eventos a notificar - text_select_project_modules: 'Seleccione los módulos a activar para este proyecto:' - text_status_changed_by_changeset: "Aplicado en los cambios %{value}" - text_subprojects_destroy_warning: "Los proyectos secundarios: %{value} también se eliminarán" - text_tip_issue_begin_day: tarea que comienza este día - text_tip_issue_begin_end_day: tarea que comienza y termina este día - text_tip_issue_end_day: tarea que termina este día - text_tracker_no_workflow: No hay ningún flujo de trabajo definido para este tipo de incidencia - text_unallowed_characters: Caracteres no permitidos - text_user_mail_option: "De los proyectos no seleccionados, sólo recibirá notificaciones sobre elementos monitorizados o elementos en los que esté involucrado (por ejemplo, incidencia de las que usted sea autor o asignadas a usted)." - text_user_wrote: "%{value} escribió:" - text_user_wrote_in: "%{value} escribió (%{link}):" - text_wiki_destroy_confirmation: ¿Seguro que quiere borrar el wiki y todo su contenido? - text_workflow_edit: Seleccionar un flujo de trabajo para actualizar - text_plugin_assets_writable: Se puede escribir en el directorio público de las extensiones - warning_attachments_not_saved: "No se han podido grabar %{count} archivos." - button_create_and_continue: Crear y continuar - text_custom_field_possible_values_info: 'Un valor en cada línea' - label_display: Mostrar - field_editable: Modificable - setting_repository_log_display_limit: Número máximo de revisiones mostradas en el archivo de trazas - setting_file_max_size_displayed: Tamaño máximo de los archivos de texto mostrados - field_watcher: Seguidor - setting_openid: Permitir identificación y registro por OpenID - field_identity_url: URL de OpenID - label_login_with_open_id_option: o identifíquese con OpenID - field_content: Contenido - label_descending: Descendente - label_sort: Ordenar - label_ascending: Ascendente - label_date_from_to: Desde %{start} hasta %{end} - label_greater_or_equal: ">=" - label_less_or_equal: <= - text_wiki_page_destroy_question: Esta página tiene %{descendants} página(s) hija(s) y descendiente(s). ¿Qué desea hacer? - text_wiki_page_reassign_children: Reasignar páginas hijas a esta página - text_wiki_page_nullify_children: Dejar páginas hijas como páginas raíz - text_wiki_page_destroy_children: Eliminar páginas hijas y todos sus descendientes - setting_password_min_length: Longitud mínima de la contraseña - field_group_by: Agrupar resultados por - mail_subject_wiki_content_updated: "La página wiki '%{id}' ha sido actualizada" - label_wiki_content_added: Página wiki añadida - mail_subject_wiki_content_added: "Se ha añadido la página wiki '%{id}'." - mail_body_wiki_content_added: "%{author} ha añadido la página wiki '%{id}'." - label_wiki_content_updated: Página wiki actualizada - mail_body_wiki_content_updated: La página wiki '%{id}' ha sido actualizada por %{author}. - permission_add_project: Crear proyecto - setting_new_project_user_role_id: Permiso asignado a un usuario no-administrador para crear proyectos - label_view_all_revisions: Ver todas las revisiones - label_tag: Etiqueta - label_branch: Rama - error_no_tracker_in_project: Este proyecto no tiene asociados tipos de incidencias. Por favor, revise la configuración. - error_no_default_issue_status: No se ha definido un estado de incidencia por defecto. Por favor, revise la configuración (en "Administración" -> "Estados de las incidencias"). - text_journal_changed: "%{label} cambiado de %{old} a %{new}" - text_journal_set_to: "%{label} establecido a %{value}" - text_journal_deleted: "%{label} eliminado (%{old})" - label_group_plural: Grupos - label_group: Grupo - label_group_new: Nuevo grupo - label_time_entry_plural: Tiempo dedicado - text_journal_added: "Añadido %{label} %{value}" - field_active: Activo - enumeration_system_activity: Actividad del sistema - permission_delete_issue_watchers: Borrar seguidores - version_status_closed: cerrado - version_status_locked: bloqueado - version_status_open: abierto - error_can_not_reopen_issue_on_closed_version: No se puede reabrir una incidencia asignada a una versión cerrada - - label_user_anonymous: Anónimo - button_move_and_follow: Mover y seguir - setting_default_projects_modules: Módulos activados por defecto en proyectos nuevos - setting_gravatar_default: Imagen Gravatar por defecto - field_sharing: Compartir - button_copy_and_follow: Copiar y seguir - label_version_sharing_hierarchy: Con la jerarquía del proyecto - label_version_sharing_tree: Con el árbol del proyecto - label_version_sharing_descendants: Con proyectos hijo - label_version_sharing_system: Con todos los proyectos - label_version_sharing_none: No compartir - error_can_not_archive_project: Este proyecto no puede ser archivado - label_copy_source: Fuente - setting_issue_done_ratio: Calcular el ratio de tareas realizadas con - setting_issue_done_ratio_issue_status: Usar el estado de tareas - error_issue_done_ratios_not_updated: Ratios de tareas realizadas no actualizado. - error_workflow_copy_target: Por favor, elija categoría(s) y perfil(es) destino - setting_issue_done_ratio_issue_field: Utilizar el campo de incidencia - label_copy_same_as_target: El mismo que el destino - label_copy_target: Destino - notice_issue_done_ratios_updated: Ratios de tareas realizadas actualizados. - error_workflow_copy_source: Por favor, elija una categoría o rol de origen - label_update_issue_done_ratios: Actualizar ratios de tareas realizadas - setting_start_of_week: Comenzar las semanas en - permission_view_issues: Ver incidencias - label_display_used_statuses_only: Sólo mostrar los estados usados por este tipo de incidencia - label_revision_id: Revisión %{value} - label_api_access_key: Clave de acceso de la API - label_api_access_key_created_on: Clave de acceso de la API creada hace %{value} - label_feeds_access_key: Clave de acceso Atom - notice_api_access_key_reseted: Clave de acceso a la API regenerada. - setting_rest_api_enabled: Activar servicio web REST - label_missing_api_access_key: Clave de acceso a la API ausente - label_missing_feeds_access_key: Clave de accesso Atom ausente - button_show: Mostrar - text_line_separated: Múltiples valores permitidos (un valor en cada línea). - setting_mail_handler_body_delimiters: Truncar correos tras una de estas líneas - permission_add_subprojects: Crear subproyectos - label_subproject_new: Nuevo subproyecto - text_own_membership_delete_confirmation: |- - Está a punto de eliminar algún o todos sus permisos y podría perder la posibilidad de modificar este proyecto tras hacerlo. - ¿Está seguro de querer continuar? - label_close_versions: Cerrar versiones completadas - label_board_sticky: Pegajoso - label_board_locked: Bloqueado - permission_export_wiki_pages: Exportar páginas wiki - setting_cache_formatted_text: Cachear texto formateado - permission_manage_project_activities: Gestionar actividades del proyecto - error_unable_delete_issue_status: Fue imposible eliminar el estado de la incidencia (%{value}) - label_profile: Perfil - permission_manage_subtasks: Gestionar subtareas - field_parent_issue: Tarea padre - label_subtask_plural: Subtareas - label_project_copy_notifications: Enviar notificaciones por correo electrónico durante la copia del proyecto - error_can_not_delete_custom_field: Fue imposible eliminar el campo personalizado - error_unable_to_connect: Fue imposible conectarse (%{value}) - error_can_not_remove_role: Este rol está en uso y no puede ser eliminado. - error_can_not_delete_tracker: Este tipo contiene incidencias y no puede ser eliminado. - field_principal: Principal - notice_failed_to_save_members: "Fallo al guardar miembro(s): %{errors}." - text_zoom_out: Alejar - text_zoom_in: Acercar - notice_unable_delete_time_entry: Fue imposible eliminar la entrada de tiempo dedicado. - label_overall_spent_time: Tiempo total dedicado - field_time_entries: Log time - project_module_gantt: Gantt - project_module_calendar: Calendario - button_edit_associated_wikipage: "Editar paginas Wiki asociadas: %{page_title}" - field_text: Campo de texto - setting_default_notification_option: Opcion de notificacion por defecto - label_user_mail_option_only_my_events: Solo para objetos que soy seguidor o estoy involucrado - label_user_mail_option_none: Sin eventos - field_member_of_group: Asignado al grupo - field_assigned_to_role: Asignado al perfil - notice_not_authorized_archived_project: El proyecto al que intenta acceder ha sido archivado. - label_principal_search: "Buscar por usuario o grupo:" - label_user_search: "Buscar por usuario:" - field_visible: Visible - setting_emails_header: Encabezado de Correos - - setting_commit_logtime_activity_id: Actividad de los tiempos registrados - text_time_logged_by_changeset: Aplicado en los cambios %{value}. - setting_commit_logtime_enabled: Habilitar registro de horas - notice_gantt_chart_truncated: Se recortó el diagrama porque excede el número máximo de elementos que pueden ser mostrados (%{max}) - setting_gantt_items_limit: Número máximo de elementos mostrados en el diagrama de Gantt - field_warn_on_leaving_unsaved: Avisarme cuando vaya a abandonar una página con texto no guardado - text_warn_on_leaving_unsaved: Esta página contiene texto no guardado y si la abandona sus cambios se perderán - label_my_queries: Mis consultas personalizadas - text_journal_changed_no_detail: "Se actualizó %{label}" - label_news_comment_added: Comentario añadido a noticia - button_expand_all: Expandir todo - button_collapse_all: Contraer todo - label_additional_workflow_transitions_for_assignee: Transiciones adicionales permitidas cuando la incidencia está asignada al usuario - label_additional_workflow_transitions_for_author: Transiciones adicionales permitidas cuando el usuario es autor de la incidencia - label_bulk_edit_selected_time_entries: Editar en bloque las horas seleccionadas - text_time_entries_destroy_confirmation: ¿Está seguro de querer eliminar (la hora seleccionada/las horas seleccionadas)? - label_role_anonymous: Anónimo - label_role_non_member: No miembro - label_issue_note_added: Nota añadida - label_issue_status_updated: Estado actualizado - label_issue_priority_updated: Prioridad actualizada - label_issues_visibility_own: Incidencias creadas por el usuario o asignadas a él - field_issues_visibility: Visibilidad de las incidencias - label_issues_visibility_all: Todas las incidencias - permission_set_own_issues_private: Poner las incidencias propias como públicas o privadas - field_is_private: Privada - permission_set_issues_private: Poner incidencias como públicas o privadas - label_issues_visibility_public: Todas las incidencias no privadas - text_issues_destroy_descendants_confirmation: Se procederá a borrar también %{count} subtarea(s). - field_commit_logs_encoding: Codificación de los mensajes de commit - field_scm_path_encoding: Codificación de las rutas - text_scm_path_encoding_note: "Por defecto: UTF-8" - field_path_to_repository: Ruta al repositorio - field_root_directory: Directorio raíz - field_cvs_module: Módulo - field_cvsroot: CVSROOT - text_mercurial_repository_note: Repositorio local (e.g. /hgrepo, c:\hgrepo) - text_scm_command: Orden - text_scm_command_version: Versión - label_git_report_last_commit: Informar del último commit para archivos y directorios - text_scm_config: Puede configurar las órdenes de cada scm en configuration/configuration.yml. Por favor, reinicie la aplicación después de editarlo - text_scm_command_not_available: La orden para el Scm no está disponible. Por favor, compruebe la configuración en el panel de administración. - notice_issue_successful_create: Incidencia %{id} creada. - label_between: entre - setting_issue_group_assignment: Permitir asignar incidencias a grupos - label_diff: diferencias - text_git_repository_note: El repositorio es básico y local (p.e. /gitrepo, c:\gitrepo) - description_query_sort_criteria_direction: Dirección de ordenación - description_project_scope: Ámbito de búsqueda - description_filter: Filtro - description_user_mail_notification: Configuración de notificaciones por correo - description_message_content: Contenido del mensaje - description_available_columns: Columnas disponibles - description_issue_category_reassign: Elija la categoría de la incidencia - description_search: Campo de búsqueda - description_notes: Notas - description_choose_project: Proyectos - description_query_sort_criteria_attribute: Atributo de ordenación - description_wiki_subpages_reassign: Elija la nueva página padre - description_selected_columns: Columnas seleccionadas - label_parent_revision: Padre - label_child_revision: Hijo - setting_default_issue_start_date_to_creation_date: Utilizar la fecha actual como fecha de inicio para nuevas incidencias - button_edit_section: Editar esta sección - setting_repositories_encodings: Codificación de adjuntos y repositorios - description_all_columns: Todas las columnas - button_export: Exportar - label_export_options: "%{export_format} opciones de exportación" - error_attachment_too_big: Este archivo no se puede adjuntar porque excede el tamaño máximo de archivo (%{max_size}) - notice_failed_to_save_time_entries: "Error al guardar %{count} entradas de tiempo de las %{total} seleccionadas: %{ids}." - label_x_issues: - zero: 0 incidencia - one: 1 incidencia - other: "%{count} incidencias" - label_repository_new: Nuevo repositorio - field_repository_is_default: Repositorio principal - label_copy_attachments: Copiar adjuntos - label_item_position: "%{position}/%{count}" - label_completed_versions: Versiones completadas - text_project_identifier_info: Solo se permiten letras en minúscula (a-z), números, guiones y barras bajas.
    Una vez guardado, el identificador no se puede cambiar. - field_multiple: Valores múltiples - setting_commit_cross_project_ref: Permitir referenciar y resolver incidencias de todos los demás proyectos - text_issue_conflict_resolution_add_notes: Añadir mis notas y descartar mis otros cambios - text_issue_conflict_resolution_overwrite: Aplicar mis campos de todas formas (las notas anteriores se mantendrán pero algunos cambios podrían ser sobreescritos) - notice_issue_update_conflict: La incidencia ha sido actualizada por otro usuario mientras la editaba. - text_issue_conflict_resolution_cancel: Descartar todos mis cambios y mostrar de nuevo %{link} - permission_manage_related_issues: Gestionar incidencias relacionadas - field_auth_source_ldap_filter: Filtro LDAP - label_search_for_watchers: Buscar seguidores para añadirlos - notice_account_deleted: Su cuenta ha sido eliminada - setting_unsubscribe: Permitir a los usuarios borrar sus propias cuentas - button_delete_my_account: Borrar mi cuenta - text_account_destroy_confirmation: |- - ¿Está seguro de querer proceder? - Su cuenta quedará borrada permanentemente, sin la posibilidad de reactivarla. - error_session_expired: Su sesión ha expirado. Por favor, vuelva a identificarse. - text_session_expiration_settings: "Advertencia: el cambio de estas opciones podría hacer expirar las sesiones activas, incluyendo la suya." - setting_session_lifetime: Tiempo de vida máximo de las sesiones - setting_session_timeout: Tiempo máximo de inactividad de las sesiones - label_session_expiration: Expiración de sesiones - permission_close_project: Cerrar / reabrir el proyecto - button_close: Cerrar - button_reopen: Reabrir - project_status_active: activo - project_status_closed: cerrado - project_status_archived: archivado - text_project_closed: Este proyecto está cerrado y es de sólo lectura - notice_user_successful_create: Usuario %{id} creado. - field_core_fields: Campos básicos - field_timeout: Tiempo de inactividad (en segundos) - setting_thumbnails_enabled: Mostrar miniaturas de los adjuntos - setting_thumbnails_size: Tamaño de las miniaturas (en píxeles) - label_status_transitions: Transiciones de estado - label_fields_permissions: Permisos sobre los campos - label_readonly: Sólo lectura - label_required: Requerido - text_repository_identifier_info: Solo se permiten letras en minúscula (a-z), números, guiones y barras bajas.
    Una vez guardado, el identificador no se puede cambiar. - field_board_parent: Foro padre - label_attribute_of_project: "%{name} del proyecto" - label_attribute_of_author: "%{name} del autor" - label_attribute_of_assigned_to: "%{name} de la persona asignada" - label_attribute_of_fixed_version: "%{name} de la versión indicada" - label_copy_subtasks: Copiar subtareas - label_copied_to: copiada a - label_copied_from: copiada desde - label_any_issues_in_project: cualquier incidencia del proyecto - label_any_issues_not_in_project: cualquier incidencia que no sea del proyecto - field_private_notes: Notas privadas - permission_view_private_notes: Ver notas privadas - permission_set_notes_private: Poner notas como privadas - label_no_issues_in_project: no hay incidencias en el proyecto - label_any: todos - label_last_n_weeks: en las últimas %{count} semanas - setting_cross_project_subtasks: Permitir subtareas cruzadas entre proyectos - label_cross_project_descendants: Con proyectos hijo - label_cross_project_tree: Con el árbol del proyecto - label_cross_project_hierarchy: Con la jerarquía del proyecto - label_cross_project_system: Con todos los proyectos - button_hide: Ocultar - setting_non_working_week_days: Días no laborables - label_in_the_next_days: en los próximos - label_in_the_past_days: en los anteriores - label_attribute_of_user: "%{name} del usuario" - text_turning_multiple_off: Si desactiva los valores múltiples, éstos serán eliminados para dejar un único valor por elemento. - label_attribute_of_issue: "%{name} de la incidencia" - permission_add_documents: Añadir documentos - permission_edit_documents: Editar documentos - permission_delete_documents: Borrar documentos - label_gantt_progress_line: Línea de progreso - setting_jsonp_enabled: Habilitar soporte de JSONP - field_inherit_members: Heredar miembros - field_closed_on: Cerrada - field_generate_password: Generar contraseña - setting_default_projects_tracker_ids: Tipos de incidencia habilitados por defecto - label_total_time: Total - notice_account_not_activated_yet: No ha activado su cuenta aún. Si quiere - recibir un nuevo correo de activación, por favor haga clic en este enlace. - notice_account_locked: Su cuenta está bloqueada. - label_hidden: Oculto - label_visibility_private: sólo para mí - label_visibility_roles: sólo para estos roles - label_visibility_public: para cualquier usuario - field_must_change_passwd: Cambiar contraseña en el próximo inicio de sesión - notice_new_password_must_be_different: La nueva contraseña debe ser diferente de la actual - setting_mail_handler_excluded_filenames: Excluir adjuntos por nombre - text_convert_available: Conversión ImageMagick disponible (opcional) - label_link: Enlace - label_only: sólo - label_drop_down_list: Lista desplegable - label_checkboxes: casillas de selección - label_link_values_to: Enlazar valores a la URL - setting_force_default_language_for_anonymous: Forzar lenguaje por defecto a usuarios anónimos - setting_force_default_language_for_loggedin: Forzar lenguaje por defecto para usuarios identificados - label_custom_field_select_type: Seleccione el tipo de objeto al que unir el campo personalizado - label_issue_assigned_to_updated: Persona asignada actualizada - label_check_for_updates: Comprobar actualizaciones - label_latest_compatible_version: Útima versión compatible - label_unknown_plugin: Plugin desconocido - label_radio_buttons: Botones de selección excluyentes - label_group_anonymous: Usuarios anónimos - label_group_non_member: Usuarios no miembros - label_add_projects: Añadir Proyectos - field_default_status: Estado Predeterminado - text_subversion_repository_note: 'Ejemplos: file:///, http://, https://, svn://, svn+[tunnelscheme]://' - field_users_visibility: Visibilidad de Usuarios - label_users_visibility_all: Todos los Usuarios Activos - label_users_visibility_members_of_visible_projects: Miembros de Proyectos Visibles - label_edit_attachments: Editar archivos adjuntos - setting_link_copied_issue: Enlazar incidencia cuando se copia - label_link_copied_issue: Enlazar incidencia copiada - label_ask: Preguntar - label_search_attachments_yes: Buscar adjuntos por nombre de archivo y descripciones - label_search_attachments_no: No buscar adjuntos - label_search_attachments_only: Sólo Buscar adjuntos - label_search_open_issues_only: Sólo Abrir Incidencias - field_address: Correo electrónico - setting_max_additional_emails: Número Máximo de correos electrónicos adicionales - label_email_address_plural: Correo Electrónicos - label_email_address_add: Añadir correos electrónicos - label_enable_notifications: Permitir Notificaciones - label_disable_notifications: No Permitir Notificaciones - setting_search_results_per_page: Buscar resultados por página - label_blank_value: blanco - permission_copy_issues: Copiar incidencias - error_password_expired: Tu contraseña ha expirado o tu administrador requiere que la cambies. - field_time_entries_visibility: Visibilidad de las entradas de tiempo - setting_password_max_age: Requiere cambiar de contraseña después de - label_parent_task_attributes: Atributos de la tarea padre - label_parent_task_attributes_derived: Calculada de las subtareas - label_parent_task_attributes_independent: Independiente de las subtareas - label_time_entries_visibility_all: Todos los registros de tiempo - label_time_entries_visibility_own: Los registros de tiempo creados por el usuario - label_member_management: Administración de Miembros - label_member_management_all_roles: Todos los roles - label_member_management_selected_roles_only: Sólo estos roles - label_password_required: Confirme su contraseña para continuar - label_total_spent_time: Tiempo total dedicado - notice_import_finished: "%{count} elementos han sido importados" - notice_import_finished_with_errors: "%{count} de %{total} elementos no pudieron ser importados" - error_invalid_file_encoding: El archivo no utiliza %{encoding} válida - error_invalid_csv_file_or_settings: El archivo no es un archivo CSV o no coincide con la - configuración - error_can_not_read_import_file: Ocurrió un error mientras se leía el archivo a importar - permission_import_issues: Importar incidencias - label_import_issues: Importar incidencias - label_select_file_to_import: Selecciona el archivo a importar - label_fields_separator: Separador de Campos - label_fields_wrapper: Envoltorio de Campo - label_encoding: Codificación - label_comma_char: Coma - label_semi_colon_char: Punto y Coma - label_quote_char: Comilla Simple - label_double_quote_char: Comilla Doble - label_fields_mapping: Mapeo de Campos - label_file_content_preview: Vista Previa del contenido - label_create_missing_values: Crear valores no presentes - button_import: Importar - field_total_estimated_hours: Total de Tiempo Estimado - label_api: API - label_total_plural: Totales - label_assigned_issues: Incidencias Asignadas - label_field_format_enumeration: Lista Llave/valor - label_f_hour_short: '%{value} h' - field_default_version: Version Predeterminada - error_attachment_extension_not_allowed: Extensión adjuntada %{extension} no es permitida - setting_attachment_extensions_allowed: Extensiones Permitidas - setting_attachment_extensions_denied: Extensiones Prohibidas - label_any_open_issues: cualquier incidencias abierta - label_no_open_issues: incidencias cerradas - label_default_values_for_new_users: Valor predeterminado para nuevos usuarios - setting_sys_api_key: Clave de la API - setting_lost_password: ¿Olvidaste la contraseña? - mail_subject_security_notification: Notificación de seguridad - mail_body_security_notification_change: ! '%{field} modificado.' - mail_body_security_notification_change_to: ! '%{field} modificado por %{value}.' - mail_body_security_notification_add: ! '%{field} %{value} añadido.' - mail_body_security_notification_remove: ! '%{field} %{value} eliminado.' - mail_body_security_notification_notify_enabled: Se han activado las notificaciones para el correo electrónico %{value} - mail_body_security_notification_notify_disabled: Se han desactivado las notificaciones para el correo electrónico %{value} - mail_body_settings_updated: ! 'Las siguientes opciones han sido actualizadas:' - field_remote_ip: Dirección IP - label_wiki_page_new: Nueva pagina wiki - label_relations: Relaciones - button_filter: Filtro - mail_body_password_updated: Su contraseña se ha cambiado. - label_no_preview: No hay vista previa disponible - error_no_tracker_allowed_for_new_issue_in_project: El proyecto no dispone de ningún tipo sobre el cual puedas crear una petición - label_tracker_all: Todos los tipos - label_new_project_issue_tab_enabled: Mostrar la pestaña "Nueva incidencia" - setting_new_item_menu_tab: Pestaña de creación de nuevos objetos en el menú de cada proyecto - label_new_object_tab_enabled: Mostrar la lista desplegable "+" - error_no_projects_with_tracker_allowed_for_new_issue: Ningún proyecto dispone de un tipo sobre el cual puedas crear una petición - field_textarea_font: Fuente usada en las áreas de texto - label_font_default: Fuente por defecto - label_font_monospace: Fuente Monospaced - label_font_proportional: Fuente Proportional - setting_timespan_format: Time span format - label_table_of_contents: Table of contents - setting_commit_logs_formatting: Apply text formatting to commit messages - setting_mail_handler_enable_regex: Enable regular expressions - error_move_of_child_not_possible: 'Subtask %{child} could not be moved to the new - project: %{errors}' - error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted: Spent time cannot - be reassigned to an issue that is about to be deleted - setting_timelog_required_fields: Required fields for time logs - label_attribute_of_object: '%{object_name}''s %{name}' - label_user_mail_option_only_assigned: Only for things I watch or I am assigned to - label_user_mail_option_only_owner: Only for things I watch or I am the owner of - warning_fields_cleared_on_bulk_edit: Changes will result in the automatic deletion - of values from one or more fields on the selected objects - field_updated_by: Updated by - field_last_updated_by: Last updated by - field_full_width_layout: Full width layout - label_last_notes: Last notes - field_digest: Checksum - field_default_assigned_to: Default assignee - setting_show_custom_fields_on_registration: Show custom fields on registration - permission_view_news: View news - label_no_preview_alternative_html: No preview available. %{link} the file instead. - label_no_preview_download: Download - setting_close_duplicate_issues: Close duplicate issues automatically - error_exceeds_maximum_hours_per_day: Cannot log more than %{max_hours} hours on the - same day (%{logged_hours} hours have already been logged) - setting_time_entry_list_defaults: Timelog list defaults - setting_timelog_accept_0_hours: Accept time logs with 0 hours - setting_timelog_max_hours_per_day: Maximum hours that can be logged per day and user - label_x_revisions: "%{count} revisions" - error_can_not_delete_auth_source: This authentication mode is in use and cannot be - deleted. - button_actions: Actions - mail_body_lost_password_validity: Please be aware that you may change the password - only once using this link. - text_login_required_html: When not requiring authentication, public projects and their - contents are openly available on the network. You can edit - the applicable permissions. - label_login_required_yes: 'Yes' - label_login_required_no: No, allow anonymous access to public projects - text_project_is_public_non_member: Public projects and their contents are available - to all logged-in users. - text_project_is_public_anonymous: Public projects and their contents are openly available - on the network. - label_version_and_files: Versions (%{count}) and Files - label_ldap: LDAP - label_ldaps_verify_none: LDAPS (without certificate check) - label_ldaps_verify_peer: LDAPS - label_ldaps_warning: It is recommended to use an encrypted LDAPS connection with certificate - check to prevent any manipulation during the authentication process. - label_nothing_to_preview: Nothing to preview - error_token_expired: This password recovery link has expired, please try again. - error_spent_on_future_date: Cannot log time on a future date - setting_timelog_accept_future_dates: Accept time logs on future dates - label_delete_link_to_subtask: Eliminar relación - error_not_allowed_to_log_time_for_other_users: You are not allowed to log time - for other users - permission_log_time_for_other_users: Log spent time for other users - label_tomorrow: tomorrow - label_next_week: next week - label_next_month: next month - text_role_no_workflow: No workflow defined for this role - text_status_no_workflow: No tracker uses this status in the workflows - setting_mail_handler_preferred_body_part: Preferred part of multipart (HTML) emails - setting_show_status_changes_in_mail_subject: Show status changes in issue mail notifications - subject - label_inherited_from_parent_project: Inherited from parent project - label_inherited_from_group: Inherited from group %{name} - label_trackers_description: Trackers description - label_open_trackers_description: View all trackers description - label_preferred_body_part_text: Text - label_preferred_body_part_html: HTML (experimental) - field_parent_issue_subject: Parent task subject - permission_edit_own_issues: Edit own issues - text_select_apply_tracker: Select tracker - label_updated_issues: Updated issues - text_avatar_server_config_html: The current avatar server is %{url}. - You can configure it in config/configuration.yml. - setting_gantt_months_limit: Maximum number of months displayed on the gantt chart - permission_import_time_entries: Import time entries - label_import_notifications: Send email notifications during the import - text_gs_available: ImageMagick PDF support available (optional) - field_recently_used_projects: Number of recently used projects in jump box - label_optgroup_bookmarks: Bookmarks - label_optgroup_others: Other projects - label_optgroup_recents: Recently used - button_project_bookmark: Add bookmark - button_project_bookmark_delete: Remove bookmark - field_history_default_tab: Issue's history default tab - label_issue_history_properties: Property changes - label_issue_history_notes: Notes - label_last_tab_visited: Last visited tab - field_unique_id: Unique ID - text_no_subject: no subject - setting_password_required_char_classes: Required character classes for passwords - label_password_char_class_uppercase: uppercase letters - label_password_char_class_lowercase: lowercase letters - label_password_char_class_digits: digits - label_password_char_class_special_chars: special characters - text_characters_must_contain: Must contain %{character_classes}. - label_starts_with: starts with - label_ends_with: ends with - label_issue_fixed_version_updated: Target version updated - setting_project_list_defaults: Projects list defaults - label_display_type: Display results as - label_display_type_list: List - label_display_type_board: Board - label_my_bookmarks: My bookmarks - label_import_time_entries: Import time entries diff --git a/config/locales/et.yml b/config/locales/et.yml deleted file mode 100644 index 11f8265..0000000 --- a/config/locales/et.yml +++ /dev/null @@ -1,1320 +0,0 @@ -# Estonian localization for Redmine -# Copyright (C) 2012 Kaitseministeerium -# -# 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. - -et: - # Text direction: Left-to-Right (ltr) or Right-to-Left (rtl) - direction: ltr - date: - formats: - # Use the strftime parameters for formats. - # When no format has been given, it uses default. - # You can provide other formats here if you like! - default: "%d.%m.%Y" - short: "%d.%b" - long: "%d. %B %Y" - - day_names: [Pühapäev, Esmaspäev, Teisipäev, Kolmapäev, Neljapäev, Reede, Laupäev] - abbr_day_names: [P, E, T, K, N, R, L] - - # Don't forget the nil at the beginning; there's no such thing as a 0th month - month_names: [~, Jaanuar, Veebruar, Märts, Aprill, Mai, Juuni, Juuli, August, September, Oktoober, November, Detsember] - abbr_month_names: [~, jaan, veebr, märts, apr, mai, juuni, juuli, aug, sept, okt, nov, dets] - # Used in date_select and datime_select. - order: - - :year - - :month - - :day - - time: - formats: - default: "%d.%m.%Y %H:%M" - time: "%H:%M" - short: "%d.%b %H:%M" - long: "%d. %B %Y %H:%M %z" - am: "enne lõunat" - pm: "peale lõunat" - - datetime: - distance_in_words: - half_a_minute: "pool minutit" - less_than_x_seconds: - one: "vähem kui sekund" - other: "vähem kui %{count} sekundit" - x_seconds: - one: "1 sekund" - other: "%{count} sekundit" - less_than_x_minutes: - one: "vähem kui minut" - other: "vähem kui %{count} minutit" - x_minutes: - one: "1 minut" - other: "%{count} minutit" - about_x_hours: - one: "umbes tund" - other: "umbes %{count} tundi" - x_hours: - one: "1 tund" - other: "%{count} tundi" - x_days: - one: "1 päev" - other: "%{count} päeva" - about_x_months: - one: "umbes kuu" - other: "umbes %{count} kuud" - x_months: - one: "1 kuu" - other: "%{count} kuud" - about_x_years: - one: "umbes aasta" - other: "umbes %{count} aastat" - over_x_years: - one: "rohkem kui aasta" - other: "rohkem kui %{count} aastat" - almost_x_years: - one: "peaaegu aasta" - other: "peaaegu %{count} aastat" - - number: - format: - separator: "." - delimiter: "" - precision: 3 - - human: - format: - delimiter: "" - precision: 3 - storage_units: - format: "%n %u" - units: - byte: - one: "bait" - other: "baiti" - kb: "KB" - mb: "MB" - gb: "GB" - tb: "TB" - -# Used in array.to_sentence. - support: - array: - sentence_connector: "ja" - skip_last_comma: false - - activerecord: - errors: - template: - header: - one: "1 viga ei võimaldanud selle %{model} salvestamist" - other: "%{count} viga ei võimaldanud selle %{model} salvestamist" - messages: - inclusion: "ei ole nimekirjas" - exclusion: "on reserveeritud" - invalid: "ei sobi" - confirmation: "ei lange kinnitusega kokku" - accepted: "peab olema aktsepteeritud" - empty: "ei või olla tühi" - blank: "ei või olla täitmata" - too_long: "on liiga pikk (lubatud on kuni %{count} märki)" - too_short: "on liiga lühike (vaja on vähemalt %{count} märki)" - wrong_length: "on vale pikkusega (peaks olema %{count} märki)" - taken: "on juba võetud" - not_a_number: "ei ole arv" - not_a_date: "ei ole korrektne kuupäev" - greater_than: "peab olema suurem kui %{count}" - greater_than_or_equal_to: "peab olema võrdne või suurem kui %{count}" - equal_to: "peab võrduma %{count}-ga" - less_than: "peab olema väiksem kui %{count}" - less_than_or_equal_to: "peab olema võrdne või väiksem kui %{count}" - odd: "peab olema paaritu arv" - even: "peab olema paarisarv" - greater_than_start_date: "peab olema suurem kui alguskuupäev" - not_same_project: "ei kuulu sama projekti juurde" - circular_dependency: "See suhe looks vastastikuse sõltuvuse" - cant_link_an_issue_with_a_descendant: "Teemat ei saa sidustada tema enda alamteemaga" - earlier_than_minimum_start_date: "Tähtpäev ei saa olla varasem kui %{date} eelnevate teemade tähtpäevade tõttu" - not_a_regexp: "is not a valid regular expression" - open_issue_with_closed_parent: "An open issue cannot be attached to a closed parent task" - must_contain_uppercase: "must contain uppercase letters (A-Z)" - must_contain_lowercase: "must contain lowercase letters (a-z)" - must_contain_digits: "must contain digits (0-9)" - must_contain_special_chars: "must contain special characters (!, $, %, ...)" - - actionview_instancetag_blank_option: "Palun vali" - - general_text_No: "Ei" - general_text_Yes: "Jah" - general_text_no: "ei" - general_text_yes: "jah" - general_lang_name: "Estonian (Eesti)" - general_csv_separator: "," - general_csv_decimal_separator: "." - general_csv_encoding: ISO-8859-13 - general_pdf_fontname: freesans - general_pdf_monospaced_fontname: freemono - general_first_day_of_week: "1" - - notice_account_updated: "Konto uuendamine õnnestus." - notice_account_invalid_credentials: "Sobimatu kasutajanimi või parool" - notice_account_password_updated: "Parooli uuendamine õnnestus." - notice_account_wrong_password: "Vale parool" - notice_account_register_done: "Konto loomine õnnestus. Konto aktiveerimiseks vajuta vastaval lingil Sulle saadetud e-kirjas." - notice_account_unknown_email: "Tundmatu kasutaja." - notice_can_t_change_password: "See konto kasutab välist autentimisallikat. Siin ei saa selle konto parooli vahetada." - notice_account_lost_email_sent: "Sulle saadeti e-kiri parooli vahetamise juhistega." - notice_account_activated: "Su konto on aktiveeritud. Saad nüüd sisse logida." - notice_successful_create: "Loomine õnnestus." - notice_successful_update: "Uuendamine õnnestus." - notice_successful_delete: "Kustutamine õnnestus." - notice_successful_connection: "Ühenduse loomine õnnestus." - notice_file_not_found: "Sellist lehte ei leitud." - notice_locking_conflict: "Teine kasutaja uuendas vahepeal neid andmeid." - notice_not_authorized: "Sul ei ole sellele lehele ligipääsuks õigusi." - notice_not_authorized_archived_project: "See projekt on arhiveeritud." - notice_email_sent: "%{value}-le saadeti kiri" - notice_email_error: "Kirja saatmisel tekkis viga (%{value})" - notice_feeds_access_key_reseted: "Sinu Atom juurdepääsuvõti nulliti." - notice_api_access_key_reseted: "Sinu API juurdepääsuvõti nulliti." - notice_failed_to_save_issues: "%{count} teemat %{total}-st ei õnnestunud salvestada: %{ids}." - notice_failed_to_save_time_entries: "%{count} ajakulu kannet %{total}-st ei õnnestunud salvestada: %{ids}." - notice_failed_to_save_members: "Liiget/liikmeid ei õnnestunud salvestada: %{errors}." - notice_no_issue_selected: "Ühtegi teemat ei ole valitud! Palun vali teema(d), mida soovid muuta." - notice_account_pending: "Sinu konto on loodud ja ootab nüüd administraatori kinnitust." - notice_default_data_loaded: "Algseadistuste laadimine õnnestus." - notice_unable_delete_version: "Versiooni kustutamine ei õnnestunud." - notice_unable_delete_time_entry: "Ajakulu kande kustutamine ei õnnestunud." - notice_issue_done_ratios_updated: "Teema edenemise astmed on uuendatud." - notice_gantt_chart_truncated: "Diagrammi kärbiti kuna ületati kuvatavate objektide suurim hulk (%{max})" - notice_issue_successful_create: "Teema %{id} loodud." - notice_issue_update_conflict: "Teine kasutaja uuendas seda teemat Sinuga samaaegselt." - notice_account_deleted: "Sinu konto on lõplikult kustutatud." - - error_can_t_load_default_data: "Algseadistusi ei saanud laadida: %{value}" - error_scm_not_found: "Seda sissekannet hoidlast ei leitud." - error_scm_command_failed: "Hoidla poole pöördumisel tekkis viga: %{value}" - error_scm_annotate: "Sissekannet ei eksisteeri või ei saa annoteerida." - error_scm_annotate_big_text_file: "Sissekannet ei saa annoteerida, kuna see on liiga pikk." - error_issue_not_found_in_project: "Teemat ei leitud või see ei kuulu siia projekti" - error_no_tracker_in_project: "Selle projektiga ei ole seostatud ühtegi valdkonda. Palun vaata üle projekti seaded." - error_no_default_issue_status: 'Teema algolek on määramata. Palun vaata asetused üle ("Seadistused -> Olekud").' - error_can_not_delete_custom_field: "Omaloodud välja kustutamine ei õnnestunud" - error_can_not_delete_tracker: "See valdkond on mõnes teemas kasutusel ja seda ei saa kustutada." - error_can_not_remove_role: "See roll on mõnes projektis kasutusel ja seda ei saa kustutada." - error_can_not_reopen_issue_on_closed_version: "Suletud versiooni juurde kuulunud teemat ei saa taasavada" - error_can_not_archive_project: "Seda projekti ei saa arhiveerida" - error_issue_done_ratios_not_updated: "Teema edenemise astmed jäid uuendamata." - error_workflow_copy_source: "Palun vali algne valdkond või roll" - error_workflow_copy_target: "Palun vali sihtvaldkon(na)d või -roll(id)" - error_unable_delete_issue_status: "Oleku kustutamine ei õnnestunud (%{value})" - error_unable_to_connect: "Ühenduse loomine ei õnnestunud (%{value})" - error_attachment_too_big: "Faili ei saa üles laadida, sest see on lubatust (%{max_size}) mahukam" - warning_attachments_not_saved: "%{count} faili salvestamine ei õnnestunud." - - mail_subject_lost_password: "Sinu %{value} parool" - mail_body_lost_password: "Parooli vahetamiseks vajuta järgmisele lingile:" - mail_subject_register: "Sinu %{value} konto aktiveerimine" - mail_body_register: "Konto aktiveerimiseks vajuta järgmisele lingile:" - mail_body_account_information_external: "Sisse logimiseks saad kasutada oma %{value} kontot." - mail_body_account_information: "Sinu konto teave" - mail_subject_account_activation_request: "%{value} konto aktiveerimise nõue" - mail_body_account_activation_request: "Registreerus uus kasutaja (%{value}). Konto avamine ootab Sinu kinnitust:" - mail_subject_reminder: "%{count} teema tähtpäev jõuab kätte järgmise %{days} päeva jooksul" - mail_body_reminder: "%{count} Sulle määratud teema tähtpäev jõuab kätte järgmise %{days} päeva jooksul:" - mail_subject_wiki_content_added: "Lisati vikileht '%{id}'" - mail_body_wiki_content_added: "Vikileht '%{id}' lisati %{author} poolt." - mail_subject_wiki_content_updated: "Uuendati '%{id}' vikilehte" - mail_body_wiki_content_updated: "Vikilehte '%{id}' uuendati %{author} poolt." - - - field_name: "Nimi" - field_description: "Kirjeldus" - field_summary: "Kokkuvõte" - field_is_required: "Kohustuslik" - field_firstname: "Eesnimi" - field_lastname: "Perekonnanimi" - field_mail: "E-post" - field_filename: "Fail" - field_filesize: "Maht" - field_downloads: "Allalaadimist" - field_author: "Autor" - field_created_on: "Loodud" - field_updated_on: "Uuendatud" - field_field_format: "Tüüp" - field_is_for_all: "Kõigile projektidele" - field_possible_values: "Võimalikud väärtused" - field_regexp: "Regulaaravaldis" - field_min_length: "Vähim maht" - field_max_length: "Suurim naht" - field_value: "Väärtus" - field_category: "Kategooria" - field_title: "Pealkiri" - field_project: "Projekt" - field_issue: "Teema" - field_status: "Olek" - field_notes: "Märkused" - field_is_closed: "Sulgeb teema" - field_is_default: "Algolek" - field_tracker: "Valdkond" - field_subject: "Teema" - field_due_date: "Tähtaeg" - field_assigned_to: "Tegeleja" - field_priority: "Prioriteet" - field_fixed_version: "Sihtversioon" - field_user: "Kasutaja" - field_principal: "Vastutav isik" - field_role: "Roll" - field_homepage: "Koduleht" - field_is_public: "Avalik" - field_parent: "Emaprojekt" - field_is_in_roadmap: "Teemad on teekaardil näha" - field_login: "Kasutajanimi" - field_mail_notification: "Teated e-kirjaga" - field_admin: "Admin" - field_last_login_on: "Viimane ühendus" - field_language: "Keel" - field_effective_date: "Tähtaeg" - field_password: "Parool" - field_new_password: "Uus parool" - field_password_confirmation: "Kinnitus" - field_version: "Versioon" - field_type: "Tüüp" - field_host: "Server" - field_port: "Port" - field_account: "Konto" - field_base_dn: "Baas DN" - field_attr_login: "Kasutajanime atribuut" - field_attr_firstname: "Eesnime atribuut" - field_attr_lastname: "Perekonnanime atribuut" - field_attr_mail: "E-posti atribuut" - field_onthefly: "Kasutaja automaatne loomine" - field_start_date: "Alguskuupäev" - field_done_ratio: "% tehtud" - field_auth_source: "Autentimise viis" - field_hide_mail: "Peida e-posti aadress" - field_comments: "Kommentaar" - field_url: "URL" - field_start_page: "Esileht" - field_subproject: "Alamprojekt" - field_hours: "tundi" - field_activity: "Tegevus" - field_spent_on: "Kuupäev" - field_identifier: "Tunnus" - field_is_filter: "Kasutatav filtrina" - field_issue_to: "Seotud teema" - field_delay: "Viivitus" - field_assignable: "Saab määrata teemadega tegelema" - field_redirect_existing_links: "Suuna olemasolevad lingid ringi" - field_estimated_hours: "Eeldatav ajakulu" - field_column_names: "Veerud" - field_time_entries: "Ajakulu" - field_time_zone: "Ajatsoon" - field_searchable: "Otsitav" - field_default_value: "Vaikimisi" - field_comments_sorting: "Kommentaaride järjestus" - field_parent_title: "Pärineb lehest" - field_editable: "Muudetav" - field_watcher: "Jälgija" - field_identity_url: "OpenID URL" - field_content: "Sisu" - field_group_by: "Rühmita tulemus" - field_sharing: "Teemade jagamine" - field_parent_issue: "Pärineb teemast" - field_member_of_group: "Tegeleja rühm" - field_assigned_to_role: "Tegeleja roll" - field_text: "Tekstiväli" - field_visible: "Nähtav" - field_warn_on_leaving_unsaved: "Hoiata salvestamata sisuga lehtedelt lahkumisel" - field_issues_visibility: "See roll näeb" - field_is_private: "Privaatne" - field_commit_logs_encoding: "Sissekannete kodeering" - field_scm_path_encoding: "Teeraja märkide kodeering" - field_path_to_repository: "Hoidla teerada" - field_root_directory: "Juurkataloog" - field_cvsroot: "CVSROOT" - field_cvs_module: "Moodul" - field_repository_is_default: "Peamine hoidla" - field_multiple: "Korraga mitu väärtust" - field_auth_source_ldap_filter: "LDAP filter" - - setting_app_title: "Veebilehe pealkiri" - setting_welcome_text: "Tervitustekst" - setting_default_language: "Vaikimisi keel" - setting_login_required: "Autentimine on kohustuslik" - setting_self_registration: "Omaloodud konto aktiveerimine" - setting_attachment_max_size: "Manuse suurim maht" - setting_issues_export_limit: "Teemade ekspordi limiit" - setting_mail_from: "Saatja e-posti aadress" - setting_bcc_recipients: "Saajaid ei näidata (lähevad BCC reale)" - setting_plain_text_mail: "E-kiri tavalise tekstina (ilma HTML-ta)" - setting_host_name: "Serveri nimi ja teerada" - setting_text_formatting: "Vormindamise abi" - setting_wiki_compression: "Viki ajaloo pakkimine" - setting_feeds_limit: "Atom voogude suurim objektide arv" - setting_default_projects_public: "Uued projektid on vaikimisi avalikud" - setting_autofetch_changesets: "Lae uuendused automaatselt" - setting_sys_api_enabled: "Hoidlate haldamine veebiteenuse kaudu" - setting_commit_ref_keywords: "Viitade võtmesõnad" - setting_commit_fix_keywords: "Paranduste võtmesõnad" - setting_autologin: "Automaatne sisselogimine" - setting_date_format: "Kuupäeva formaat" - setting_time_format: "Ajaformaat" - setting_cross_project_issue_relations: "Luba siduda eri projektide teemasid" - setting_issue_list_default_columns: "Teemade nimekirja vaikimisi veerud" - setting_repositories_encodings: "Manuste ja hoidlate kodeering" - setting_emails_header: "E-kirja päis" - setting_emails_footer: "E-kirja jalus" - setting_protocol: "Protokoll" - setting_per_page_options: "Objekte lehe kohta variandid" - setting_user_format: "Kasutaja nime esitamise vorm" - setting_activity_days_default: "Projektide ajalugu näidatakse" - setting_display_subprojects_issues: "Näita projektis vaikimisi ka alamprojektide teemasid" - setting_enabled_scm: "Kasutatavad lähtekoodi haldusvahendid" - setting_mail_handler_body_delimiters: "Kärbi e-kirja lõpp peale sellist rida" - setting_mail_handler_api_enabled: "E-kirjade vastuvõtt veebiteenuse kaudu" - setting_mail_handler_api_key: "Veebiteenuse API võti" - setting_sequential_project_identifiers: "Genereeri järjestikused projektitunnused" - setting_gravatar_enabled: "Kasuta Gravatari kasutajaikoone" - setting_gravatar_default: "Vaikimisi kasutatav ikoon" - setting_diff_max_lines_displayed: "Enim korraga näidatavaid erinevusi" - setting_file_max_size_displayed: "Kuvatava tekstifaili suurim maht" - setting_repository_log_display_limit: "Enim ajaloos näidatavaid sissekandeid" - setting_openid: "Luba OpenID-ga registreerimine ja sisselogimine" - setting_password_min_length: "Lühim lubatud parooli pikkus" - setting_new_project_user_role_id: "Projekti looja roll oma projektis" - setting_default_projects_modules: "Vaikimisi moodulid uutes projektides" - setting_issue_done_ratio: "Määra teema edenemise aste" - setting_issue_done_ratio_issue_field: "kasutades vastavat välja" - setting_issue_done_ratio_issue_status: "kasutades teema olekut" - setting_start_of_week: "Nädala alguspäev" - setting_rest_api_enabled: "Luba REST API kasutamine" - setting_cache_formatted_text: "Puhverda vormindatud teksti" - setting_default_notification_option: "Vaikimisi teavitatakse" - setting_commit_logtime_enabled: "Luba ajakulu sisestamine" - setting_commit_logtime_activity_id: "Tegevus kulunud ajal" - setting_gantt_items_limit: "Gantti diagrammi objektide suurim hulk" - setting_issue_group_assignment: "Luba teemade andmine gruppidele" - setting_default_issue_start_date_to_creation_date: "Uute teemade alguskuupäevaks on teema loomise päev" - setting_commit_cross_project_ref: "Luba viiteid ja parandusi ka kõigi teiste projektide teemadele" - setting_unsubscribe: "Luba kasutajal oma konto kustutada" - - permission_add_project: "Projekte luua" - permission_add_subprojects: "Alamprojekte luua" - permission_edit_project: "Projekte muuta" - permission_select_project_modules: "Projektimooduleid valida" - permission_manage_members: "Liikmeid hallata" - permission_manage_project_activities: "Projekti tegevusi hallata" - permission_manage_versions: "Versioone hallata" - permission_manage_categories: "Kategooriaid hallata" - permission_view_issues: "Teemasid näha" - permission_add_issues: "Teemasid lisada" - permission_edit_issues: "Teemasid uuendada" - permission_manage_issue_relations: "Teemade seoseid hallata" - permission_set_issues_private: "Teemasid avalikeks või privaatseiks seada" - permission_set_own_issues_private: "Omi teemasid avalikeks või privaatseiks seada" - permission_add_issue_notes: "Märkusi lisada" - permission_edit_issue_notes: "Märkusi muuta" - permission_edit_own_issue_notes: "Omi märkusi muuta" - permission_delete_issues: "Teemasid kustutada" - permission_manage_public_queries: "Avalikke päringuid hallata" - permission_save_queries: "Päringuid salvestada" - permission_view_gantt: "Gantti diagramme näha" - permission_view_calendar: "Kalendrit näha" - permission_view_issue_watchers: "Jälgijate nimekirja näha" - permission_add_issue_watchers: "Jälgijaid lisada" - permission_delete_issue_watchers: "Jälgijaid kustutada" - permission_log_time: "Ajakulu sisestada" - permission_view_time_entries: "Ajakulu näha" - permission_edit_time_entries: "Ajakulu kandeid muuta" - permission_edit_own_time_entries: "Omi ajakulu kandeid muuta" - permission_manage_news: "Uudiseid hallata" - permission_comment_news: "Uudiseid kommenteerida" - permission_view_documents: "Dokumente näha" - permission_manage_files: "Faile hallata" - permission_view_files: "Faile näha" - permission_manage_wiki: "Vikit hallata" - permission_rename_wiki_pages: "Vikilehti ümber nimetada" - permission_delete_wiki_pages: "Vikilehti kustutada" - permission_view_wiki_pages: "Vikit näha" - permission_view_wiki_edits: "Viki ajalugu näha" - permission_edit_wiki_pages: "Vikilehti muuta" - permission_delete_wiki_pages_attachments: "Vikilehe manuseid kustutada" - permission_protect_wiki_pages: "Vikilehti kaitsta" - permission_manage_repository: "Hoidlaid hallata" - permission_browse_repository: "Hoidlaid sirvida" - permission_view_changesets: "Sissekandeid näha" - permission_commit_access: "Sissekandeid teha" - permission_manage_boards: "Foorumeid hallata" - permission_view_messages: "Postitusi näha" - permission_add_messages: "Postitusi lisada" - permission_edit_messages: "Postitusi muuta" - permission_edit_own_messages: "Omi postitusi muuta" - permission_delete_messages: "Postitusi kustutada" - permission_delete_own_messages: "Omi postitusi kustutada" - permission_export_wiki_pages: "Vikilehti eksportida" - permission_manage_subtasks: "Alamteemasid hallata" - permission_manage_related_issues: "Seotud teemasid hallata" - - project_module_issue_tracking: "Teemade jälgimine" - project_module_time_tracking: "Ajakulu arvestus" - project_module_news: "Uudised" - project_module_documents: "Dokumendid" - project_module_files: "Failid" - project_module_wiki: "Viki" - project_module_repository: "Hoidlad" - project_module_boards: "Foorumid" - project_module_calendar: "Kalender" - project_module_gantt: "Gantt" - - label_user: "Kasutaja" - label_user_plural: "Kasutajad" - label_user_new: "Uus kasutaja" - label_user_anonymous: "Anonüümne" - label_project: "Projekt" - label_project_new: "Uus projekt" - label_project_plural: "Projektid" - label_x_projects: - zero: "pole projekte" - one: "1 projekt" - other: "%{count} projekti" - label_project_all: "Kõik projektid" - label_project_latest: "Viimased projektid" - label_issue: "Teema" - label_issue_new: "Uus teema" - label_issue_plural: "Teemad" - label_issue_view_all: "Teemade nimekiri" - label_issues_by: "Teemad %{value} järgi" - label_issue_added: "Teema lisatud" - label_issue_updated: "Teema uuendatud" - label_issue_note_added: "Märkus lisatud" - label_issue_status_updated: "Olek uuendatud" - label_issue_priority_updated: "Prioriteet uuendatud" - label_document: "Dokument" - label_document_new: "Uus dokument" - label_document_plural: "Dokumendid" - label_document_added: "Dokument lisatud" - label_role: "Roll" - label_role_plural: "Rollid" - label_role_new: "Uus roll" - label_role_and_permissions: "Rollid ja õigused" - label_role_anonymous: "Registreerimata kasutaja" - label_role_non_member: "Projekti kaasamata kasutaja" - label_member: "Liige" - label_member_new: "Uus liige" - label_member_plural: "Liikmed" - label_tracker: "Valdkond" - label_tracker_plural: "Valdkonnad" - label_tracker_new: "Uus valdkond" - label_workflow: "Töövood" - label_issue_status: "Olek" - label_issue_status_plural: "Olekud" - label_issue_status_new: "Uus olek" - label_issue_category: "Kategooria" - label_issue_category_plural: "Kategooriad" - label_issue_category_new: "Uus kategooria" - label_custom_field: "Omaloodud väli" - label_custom_field_plural: "Omaloodud väljad" - label_custom_field_new: "Uus väli" - label_enumerations: "Loetelud" - label_enumeration_new: "Lisa" - label_information: "Teave" - label_information_plural: "Teave" - label_register: "Registreeru" - label_login_with_open_id_option: "või logi sisse OpenID-ga" - label_password_lost: "Kui parool on ununud..." - label_home: "Kodu" - label_my_page: "Minu leht" - label_my_account: "Minu konto" - label_my_projects: "Minu projektid" - label_administration: "Seadistused" - label_login: "Logi sisse" - label_logout: "Logi välja" - label_help: "Abi" - label_reported_issues: "Minu poolt lisatud teemad" - label_assigned_to_me_issues: "Minu teha olevad teemad" - label_last_login: "Viimane ühendus" - label_registered_on: "Registreeritud" - label_activity: "Ajalugu" - label_overall_activity: "Üldine tegevuste ajalugu" - label_user_activity: "%{value} tegevuste ajalugu" - label_new: "Uus" - label_logged_as: "Sisse logitud kasutajana" - label_environment: "Keskkond" - label_authentication: "Autentimine" - label_auth_source: "Autentimisallikas" - label_auth_source_new: "Uus autentimisallikas" - label_auth_source_plural: "Autentimisallikad" - label_subproject_plural: "Alamprojektid" - label_subproject_new: "Uus alamprojekt" - label_and_its_subprojects: "%{value} ja selle alamprojektid" - label_min_max_length: "Min.-maks. pikkus" - label_list: "Nimekiri" - label_date: "Kuupäev" - label_integer: "Täisarv" - label_float: "Ujukomaarv" - label_boolean: "Tõeväärtus" - label_string: "Tekst" - label_text: "Pikk tekst" - label_attribute: "Atribuut" - label_attribute_plural: "Atribuudid" - label_no_data: "Pole" - label_change_status: "Muuda olekut" - label_history: "Ajalugu" - label_attachment: "Fail" - label_attachment_new: "Uus fail" - label_attachment_delete: "Kustuta fail" - label_attachment_plural: "Failid" - label_file_added: "Fail lisatud" - label_report: "Aruanne" - label_report_plural: "Aruanded" - label_news: "Uudised" - label_news_new: "Lisa uudis" - label_news_plural: "Uudised" - label_news_latest: "Viimased uudised" - label_news_view_all: "Kõik uudised" - label_news_added: "Uudis lisatud" - label_news_comment_added: "Kommentaar uudisele lisatud" - label_settings: "Seaded" - label_overview: "Ülevaade" - label_version: "Versioon" - label_version_new: "Uus versioon" - label_version_plural: "Versioonid" - label_close_versions: "Sulge lõpetatud versioonid" - label_confirmation: "Kinnitus" - label_export_to: "Saadaval ka formaadis" - label_read: "Loe..." - label_public_projects: "Avalikud projektid" - label_open_issues: "avatud" - label_open_issues_plural: "avatud" - label_closed_issues: "suletud" - label_closed_issues_plural: "suletud" - label_x_open_issues_abbr: - zero: "0 avatud" - one: "1 avatud" - other: "%{count} avatud" - label_x_closed_issues_abbr: - zero: "0 suletud" - one: "1 suletud" - other: "%{count} suletud" - label_x_issues: - zero: "0 teemat" - one: "1 teema" - other: "%{count} teemat" - label_total: "Kokku" - label_permissions: "Õigused" - label_current_status: "Praegune olek" - label_new_statuses_allowed: "Uued lubatud olekud" - label_all: "kõik" - label_none: "pole" - label_nobody: "eikeegi" - label_next: "Järgmine" - label_previous: "Eelmine" - label_used_by: "Kasutab" - label_details: "Üksikasjad" - label_add_note: "Lisa märkus" - label_calendar: "Kalender" - label_months_from: "kuu kaugusel" - label_gantt: "Gantt" - label_internal: "Sisemine" - label_last_changes: "viimased %{count} muudatust" - label_change_view_all: "Kõik muudatused" - label_comment: "Kommentaar" - label_comment_plural: "Kommentaarid" - label_x_comments: - zero: "kommentaare pole" - one: "1 kommentaar" - other: "%{count} kommentaari" - label_comment_add: "Lisa kommentaar" - label_comment_added: "Kommentaar lisatud" - label_comment_delete: "Kustuta kommentaar" - label_query: "Omaloodud päring" - label_query_plural: "Omaloodud päringud" - label_query_new: "Uus päring" - label_my_queries: "Mu omaloodud päringud" - label_filter_add: "Lisa filter" - label_filter_plural: "Filtrid" - label_equals: "on" - label_not_equals: "ei ole" - label_in_less_than: "on väiksem kui" - label_in_more_than: "on suurem kui" - label_greater_or_equal: "suurem-võrdne" - label_less_or_equal: "väiksem-võrdne" - label_between: "vahemikus" - label_in: "sisaldub hulgas" - label_today: "täna" - label_yesterday: "eile" - label_this_week: "sel nädalal" - label_last_week: "eelmisel nädalal" - label_last_n_days: "viimase %{count} päeva jooksul" - label_this_month: "sel kuul" - label_last_month: "eelmisel kuul" - label_this_year: "sel aastal" - label_date_range: "Kuupäevavahemik" - label_less_than_ago: "uuem kui" - label_more_than_ago: "vanem kui" - label_ago: "vanus" - label_contains: "sisaldab" - label_not_contains: "ei sisalda" - label_day_plural: "päeva" - label_repository: "Hoidla" - label_repository_new: "Uus hoidla" - label_repository_plural: "Hoidlad" - label_browse: "Sirvi" - label_branch: "Haru" - label_tag: "Sildiga" - label_revision: "Sissekanne" - label_revision_plural: "Sissekanded" - label_revision_id: "Sissekande kood %{value}" - label_associated_revisions: "Seotud sissekanded" - label_added: "lisatud" - label_modified: "muudetud" - label_copied: "kopeeritud" - label_renamed: "ümber nimetatud" - label_deleted: "kustutatud" - label_latest_revision: "Viimane sissekanne" - label_latest_revision_plural: "Viimased sissekanded" - label_view_revisions: "Haru ajalugu" - label_view_all_revisions: "Kogu ajalugu" - label_max_size: "Suurim maht" - label_sort_highest: "Nihuta esimeseks" - label_sort_higher: "Nihuta üles" - label_sort_lower: "Nihuta alla" - label_sort_lowest: "Nihuta viimaseks" - label_roadmap: "Teekaart" - label_roadmap_due_in: "Tähtaeg %{value}" - label_roadmap_overdue: "%{value} hiljaks jäänud" - label_roadmap_no_issues: "Selles versioonis ei ole teemasid" - label_search: "Otsi" - label_result_plural: "Tulemused" - label_all_words: "Kõik sõnad" - label_wiki: "Viki" - label_wiki_edit: "Viki muutmine" - label_wiki_edit_plural: "Viki muutmised" - label_wiki_page: "Vikileht" - label_wiki_page_plural: "Vikilehed" - label_index_by_title: "Järjesta pealkirja järgi" - label_index_by_date: "Järjesta kuupäeva järgi" - label_current_version: "Praegune versioon" - label_preview: "Eelvaade" - label_feed_plural: "Vood" - label_changes_details: "Kõigi muudatuste üksikasjad" - label_issue_tracking: "Teemade jälgimine" - label_spent_time: "Kulutatud aeg" - label_overall_spent_time: "Kokku kulutatud aeg" - label_f_hour: "%{value} tund" - label_f_hour_plural: "%{value} tundi" - label_time_tracking: "Ajakulu arvestus" - label_change_plural: "Muudatused" - label_statistics: "Statistika" - label_commits_per_month: "Sissekandeid kuu kohta" - label_commits_per_author: "Sissekandeid autori kohta" - label_diff: "erinevused" - label_view_diff: "Vaata erinevusi" - label_diff_inline: "teksti sees" - label_diff_side_by_side: "kõrvuti" - label_options: "Valikud" - label_copy_workflow_from: "Kopeeri see töövoog" - label_permissions_report: "Õiguste aruanne" - label_watched_issues: "Jälgitud teemad" - label_related_issues: "Seotud teemad" - label_applied_status: "Kehtestatud olek" - label_loading: "Laadimas..." - label_relation_new: "Uus seos" - label_relation_delete: "Kustuta seos" - label_relates_to: "seostub" - label_duplicates: "duplitseerib" - label_duplicated_by: "duplitseerijaks" - label_blocks: "blokeerib" - label_blocked_by: "blokeerijaks" - label_precedes: "eelneb" - label_follows: "järgneb" - label_stay_logged_in: "Püsi sisselogituna" - label_disabled: "pole võimalik" - label_show_completed_versions: "Näita lõpetatud versioone" - label_me: "mina" - label_board: "Foorum" - label_board_new: "Uus foorum" - label_board_plural: "Foorumid" - label_board_locked: "Lukus" - label_board_sticky: "Püsiteema" - label_topic_plural: "Teemad" - label_message_plural: "Postitused" - label_message_last: "Viimane postitus" - label_message_new: "Uus postitus" - label_message_posted: "Postitus lisatud" - label_reply_plural: "Vastused" - label_send_information: "Saada teave konto kasutajale" - label_year: "Aasta" - label_month: "Kuu" - label_week: "Nädal" - label_date_from: "Alates" - label_date_to: "Kuni" - label_language_based: "Kasutaja keele põhjal" - label_sort_by: "Sorteeri %{value} järgi" - label_send_test_email: "Saada kontrollkiri" - label_feeds_access_key: "Atom juurdepääsuvõti" - label_missing_feeds_access_key: "Atom juurdepääsuvõti on puudu" - label_feeds_access_key_created_on: "Atom juurdepääsuvõti loodi %{value} tagasi" - label_module_plural: "Moodulid" - label_added_time_by: "Lisatud %{author} poolt %{age} tagasi" - label_updated_time_by: "Uuendatud %{author} poolt %{age} tagasi" - label_updated_time: "Uuendatud %{value} tagasi" - label_jump_to_a_project: "Ava projekt..." - label_file_plural: "Failid" - label_changeset_plural: "Muudatused" - label_default_columns: "Vaikimisi veerud" - label_no_change_option: "(Ei muutu)" - label_bulk_edit_selected_issues: "Muuda valitud teemasid korraga" - label_bulk_edit_selected_time_entries: "Muuda valitud ajakandeid korraga" - label_theme: "Visuaalne teema" - label_default: "Tavaline" - label_search_titles_only: "Ainult pealkirjadest" - label_user_mail_option_all: "Kõigist tegevustest kõigis mu projektides" - label_user_mail_option_selected: "Kõigist tegevustest ainult valitud projektides..." - label_user_mail_option_none: "Teavitusi ei saadeta" - label_user_mail_option_only_my_events: "Ainult mu jälgitavatest või minuga seotud tegevustest" - label_user_mail_no_self_notified: "Ära teavita mind mu enda tehtud muudatustest" - label_registration_activation_by_email: "e-kirjaga" - label_registration_manual_activation: "käsitsi" - label_registration_automatic_activation: "automaatselt" - label_display_per_page: "Lehe kohta: %{value}" - label_age: "Vanus" - label_change_properties: "Muuda omadusi" - label_general: "Üldine" - label_scm: "Lähtekoodi haldusvahend" - label_plugins: "Lisamoodulid" - label_ldap_authentication: "LDAP autentimine" - label_downloads_abbr: "A/L" - label_optional_description: "Teave" - label_add_another_file: "Lisa veel üks fail" - label_preferences: "Eelistused" - label_chronological_order: "kronoloogiline" - label_reverse_chronological_order: "tagurpidi kronoloogiline" - label_incoming_emails: "Sissetulevad e-kirjad" - label_generate_key: "Genereeri võti" - label_issue_watchers: "Jälgijad" - label_example: "Näide" - label_display: "Kujundus" - label_sort: "Sorteeri" - label_ascending: "Kasvavalt" - label_descending: "Kahanevalt" - label_date_from_to: "Alates %{start} kuni %{end}" - label_wiki_content_added: "Vikileht lisatud" - label_wiki_content_updated: "Vikileht uuendatud" - label_group: "Rühm" - label_group_plural: "Rühmad" - label_group_new: "Uus rühm" - label_time_entry_plural: "Kulutatud aeg" - label_version_sharing_none: "ei toimu" - label_version_sharing_descendants: "alamprojektidega" - label_version_sharing_hierarchy: "projektihierarhiaga" - label_version_sharing_tree: "projektipuuga" - label_version_sharing_system: "kõigi projektidega" - label_update_issue_done_ratios: "Uuenda edenemise astmeid" - label_copy_source: "Allikas" - label_copy_target: "Sihtkoht" - label_copy_same_as_target: "Sama mis sihtkoht" - label_display_used_statuses_only: "Näita ainult selles valdkonnas kasutusel olekuid" - label_api_access_key: "API juurdepääsuvõti" - label_missing_api_access_key: "API juurdepääsuvõti on puudu" - label_api_access_key_created_on: "API juurdepääsuvõti loodi %{value} tagasi" - label_profile: "Profiil" - label_subtask_plural: "Alamteemad" - label_project_copy_notifications: "Saada projekti kopeerimise kohta teavituskiri" - label_principal_search: "Otsi kasutajat või rühma:" - label_user_search: "Otsi kasutajat:" - label_additional_workflow_transitions_for_author: "Luba ka järgmisi üleminekuid, kui kasutaja on teema looja" - label_additional_workflow_transitions_for_assignee: "Luba ka järgmisi üleminekuid, kui kasutaja on teemaga tegeleja" - label_issues_visibility_all: "kõiki teemasid" - label_issues_visibility_public: "kõiki mitteprivaatseid teemasid" - label_issues_visibility_own: "enda poolt loodud või enda teha teemasid" - label_git_report_last_commit: "Viimase sissekande teave otse failinimekirja" - label_parent_revision: "Eellane" - label_child_revision: "Järglane" - label_export_options: "%{export_format} ekspordivalikud" - label_copy_attachments: "Kopeeri manused" - label_item_position: "%{position}/%{count}" - label_completed_versions: "Lõpetatud versioonid" - label_search_for_watchers: "Otsi lisamiseks jälgijaid" - - button_login: "Logi sisse" - button_submit: "Sisesta" - button_save: "Salvesta" - button_check_all: "Märgi kõik" - button_uncheck_all: "Nulli valik" - button_collapse_all: "Voldi kõik kokku" - button_expand_all: "Voldi kõik lahti" - button_delete: "Kustuta" - button_create: "Loo" - button_create_and_continue: "Loo ja jätka" - button_test: "Testi" - button_edit: "Muuda" - button_edit_associated_wikipage: "Muuda seotud vikilehte: %{page_title}" - button_add: "Lisa" - button_change: "Muuda" - button_apply: "Lae" - button_clear: "Puhasta" - button_lock: "Lukusta" - button_unlock: "Ava lukust" - button_download: "Lae alla" - button_list: "Listi" - button_view: "Vaata" - button_move: "Tõsta" - button_move_and_follow: "Tõsta ja järgne" - button_back: "Tagasi" - button_cancel: "Katkesta" - button_activate: "Aktiveeri" - button_sort: "Sorteeri" - button_log_time: "Ajakulu" - button_rollback: "Rulli tagasi sellesse versiooni" - button_watch: "Jälgi" - button_unwatch: "Ära jälgi" - button_reply: "Vasta" - button_archive: "Arhiveeri" - button_unarchive: "Arhiivist tagasi" - button_reset: "Nulli" - button_rename: "Nimeta ümber" - button_change_password: "Vaheta parool" - button_copy: "Kopeeri" - button_copy_and_follow: "Kopeeri ja järgne" - button_annotate: "Annoteeri" - button_update: "Muuda" - button_configure: "Konfigureeri" - button_quote: "Tsiteeri" - button_show: "Näita" - button_edit_section: "Muuda seda sektsiooni" - button_export: "Ekspordi" - button_delete_my_account: "Kustuta oma konto" - - status_active: "aktiivne" - status_registered: "registreeritud" - status_locked: "lukus" - - version_status_open: "avatud" - version_status_locked: "lukus" - version_status_closed: "suletud" - - field_active: "Aktiivne" - - text_select_mail_notifications: "Tegevused, millest e-kirjaga teavitatakse" - text_regexp_info: "nt. ^[A-Z0-9]+$" - text_min_max_length_info: "0 tähendab, et piiranguid ei ole" - text_project_destroy_confirmation: "Oled Sa kindel oma soovis see projekt täielikult kustutada?" - text_subprojects_destroy_warning: "Alamprojekt(id) - %{value} - kustutatakse samuti." - text_workflow_edit: "Töövoo muutmiseks vali roll ja valdkond" - text_are_you_sure: "Oled Sa kindel?" - text_journal_changed: "%{label} muudetud %{old} -> %{new}" - text_journal_changed_no_detail: "%{label} uuendatud" - text_journal_set_to: "%{label} uus väärtus on %{value}" - text_journal_deleted: "%{label} kustutatud (%{old})" - text_journal_added: "%{label} %{value} lisatud" - text_tip_issue_begin_day: "teema avamise päev" - text_tip_issue_end_day: "teema sulgemise päev" - text_tip_issue_begin_end_day: "teema avati ja suleti samal päeval" - text_project_identifier_info: "Lubatud on ainult väikesed tähed (a-z), numbrid ja kriipsud.
    Peale salvestamist ei saa tunnust enam muuta." - text_caracters_maximum: "%{count} märki kõige rohkem." - text_caracters_minimum: "Peab olema vähemalt %{count} märki pikk." - text_length_between: "Pikkus %{min} kuni %{max} märki." - text_tracker_no_workflow: "Selle valdkonna jaoks ei ole ühtegi töövoogu kirjeldatud" - text_unallowed_characters: "Lubamatud märgid" - text_comma_separated: "Lubatud erinevad väärtused (komaga eraldatult)." - text_line_separated: "Lubatud erinevad väärtused (igaüks eraldi real)." - text_issues_ref_in_commit_messages: "Teemadele ja parandustele viitamine sissekannete märkustes" - text_issue_added: "%{author} lisas uue teema %{id}." - text_issue_updated: "%{author} uuendas teemat %{id}." - text_wiki_destroy_confirmation: "Oled Sa kindel oma soovis kustutada see Viki koos kogu sisuga?" - text_issue_category_destroy_question: "Kustutatavat kategooriat kasutab %{count} teema(t). Mis Sa soovid nendega ette võtta?" - text_issue_category_destroy_assignments: "Jäta teemadel kategooria määramata" - text_issue_category_reassign_to: "Määra teemad teise kategooriasse" - text_user_mail_option: "Valimata projektidest saad teavitusi ainult jälgitavate või Sinuga seotud asjade kohta (nt. Sinu loodud või teha teemad)." - text_no_configuration_data: "Rollid, valdkonnad, olekud ja töövood ei ole veel seadistatud.\nVäga soovitav on laadida vaikeasetused. Peale laadimist saad neid ise muuta." - text_load_default_configuration: "Lae vaikeasetused" - text_status_changed_by_changeset: "Kehtestatakse muudatuses %{value}." - text_time_logged_by_changeset: "Kehtestatakse muudatuses %{value}." - text_issues_destroy_confirmation: "Oled Sa kindel oma soovis valitud teema(d) kustutada?" - text_issues_destroy_descendants_confirmation: "See kustutab samuti %{count} alamteemat." - text_time_entries_destroy_confirmation: "Oled Sa kindel oma soovis valitud ajakulu kanne/kanded kustutada?" - text_select_project_modules: "Projektis kasutatavad moodulid" - text_default_administrator_account_changed: "Algne administraatori konto on muudetud" - text_file_repository_writable: "Manuste kataloog on kirjutatav" - text_plugin_assets_writable: "Lisamoodulite abifailide kataloog on kirjutatav" - text_minimagick_available: "MiniMagick on kasutatav (ei ole kohustuslik)" - text_destroy_time_entries_question: "Kustutatavatele teemadele oli kirja pandud %{hours} tundi. Mis Sa soovid ette võtta?" - text_destroy_time_entries: "Kustuta need tunnid" - text_assign_time_entries_to_project: "Vii tunnid üle teise projekti" - text_reassign_time_entries: "Määra tunnid sellele teemale:" - text_user_wrote: "%{value} kirjutas:" - text_user_wrote_in: "%{value} kirjutas (%{link}):" - text_enumeration_destroy_question: "Selle väärtusega on seotud %{count} objekt(i)." - text_enumeration_category_reassign_to: "Seo nad teise väärtuse külge:" - text_email_delivery_not_configured: "E-kirjade saatmine ei ole seadistatud ja teavitusi ei saadeta.\nKonfigureeri oma SMTP server failis config/configuration.yml ja taaskäivita Redmine." - text_repository_usernames_mapping: "Seosta Redmine kasutaja hoidlasse sissekannete tegijaga.\nSama nime või e-postiga kasutajad seostatakse automaatselt." - text_diff_truncated: "... Osa erinevusi jäi välja, sest neid on näitamiseks liiga palju." - text_custom_field_possible_values_info: "Üks rida iga väärtuse jaoks" - text_wiki_page_destroy_question: "Sel lehel on %{descendants} järglasleht(e) ja järeltulija(t). Mis Sa soovid ette võtta?" - text_wiki_page_nullify_children: "Muuda järglaslehed uuteks juurlehtedeks" - text_wiki_page_destroy_children: "Kustuta järglaslehed ja kõik nende järglased" - text_wiki_page_reassign_children: "Määra järglaslehed teise lehe külge" - 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_zoom_in: "Vaata lähemalt" - text_zoom_out: "Vaata kaugemalt" - text_warn_on_leaving_unsaved: "Sel lehel on salvestamata teksti, mis läheb kaduma, kui siit lehelt lahkud." - text_scm_path_encoding_note: "Vaikimisi UTF-8" - text_git_repository_note: "Hoidla peab olema paljas (bare) ja kohalik (nt. /gitrepo, c:\\gitrepo)" - text_mercurial_repository_note: "Hoidla peab olema kohalik (nt. /hgrepo, c:\\hgrepo)" - text_scm_command: "Hoidla poole pöördumise käsk" - text_scm_command_version: "Versioon" - text_scm_config: "Hoidlate poole pöördumist saab konfigureerida failis config/configuration.yml. Peale selle muutmist taaskäivita Redmine." - text_scm_command_not_available: "Hoidla poole pöördumine ebaõnnestus. Palun kontrolli seadistusi." - text_issue_conflict_resolution_overwrite: "Kehtesta oma muudatused (kõik märkused jäävad, ent muu võidakse üle kirjutada)" - text_issue_conflict_resolution_add_notes: "Lisa oma märkused, aga loobu teistest muudatustest" - text_issue_conflict_resolution_cancel: "Loobu kõigist muudatustest ja lae %{link} uuesti" - text_account_destroy_confirmation: "Oled Sa kindel?\nSu konto kustutatakse jäädavalt ja seda pole võimalik taastada." - - default_role_manager: "Haldaja" - default_role_developer: "Arendaja" - default_role_reporter: "Edastaja" - default_tracker_bug: "Veaparandus" - default_tracker_feature: "Täiendus" - default_tracker_support: "Klienditugi" - default_issue_status_new: "Avatud" - default_issue_status_in_progress: "Töös" - default_issue_status_resolved: "Lahendatud" - default_issue_status_feedback: "Tagasiside" - default_issue_status_closed: "Suletud" - default_issue_status_rejected: "Tagasi lükatud" - default_doc_category_user: "Juhend lõppkasutajale" - default_doc_category_tech: "Tehniline dokumentatsioon" - default_priority_low: "Aega on" - default_priority_normal: "Tavaline" - default_priority_high: "Pakiline" - default_priority_urgent: "Täna vaja" - default_priority_immediate: "Kohe vaja" - default_activity_design: "Kavandamine" - default_activity_development: "Arendamine" - - enumeration_issue_priorities: "Teemade prioriteedid" - enumeration_doc_categories: "Dokumentide kategooriad" - enumeration_activities: "Tegevused (ajakulu)" - enumeration_system_activity: "Süsteemi aktiivsus" - description_filter: "Filter" - description_search: "Otsinguväli" - description_choose_project: "Projektid" - description_project_scope: "Otsingu ulatus" - description_notes: "Märkused" - description_message_content: "Postituse sisu" - description_query_sort_criteria_attribute: "Sorteerimise kriteerium" - description_query_sort_criteria_direction: "Sorteerimise suund" - description_user_mail_notification: "E-kirjaga teavitamise seaded" - description_available_columns: "Kasutatavad veerud" - description_selected_columns: "Valitud veerud" - description_all_columns: "Kõik veerud" - description_issue_category_reassign: "Vali uus kategooria" - description_wiki_subpages_reassign: "Vali lehele uus vanem" - error_session_expired: "Sinu sessioon on aegunud. Palun logi uuesti sisse" - text_session_expiration_settings: "Hoiatus! Nende sätete muutmine võib kehtivad sessioonid lõpetada. Ka sinu enda oma!" - setting_session_lifetime: "Sessiooni eluiga" - setting_session_timeout: "Sessiooni aegumine jõudeoleku tõttu" - label_session_expiration: "Sessiooni aegumine" - permission_close_project: "Sule projekt/ava projekt uuesti" - button_close: "Sulge" - button_reopen: "Ava uuesti" - project_status_active: "Aktiivne" - project_status_closed: "Suletud" - project_status_archived: "Arhiveeritud" - text_project_closed: "See projekt on suletud ja projekti muuta ei saa" - notice_user_successful_create: "Kasutaja %{id} loodud." - field_core_fields: "Standardväljad" - field_timeout: "Aegumine (sekundites)" - setting_thumbnails_enabled: "Näita manustest väikest pilti" - setting_thumbnails_size: "Väikese pildi suurus (pikslites)" - label_status_transitions: "Staatuse muutumine" - label_fields_permissions: "Väljade õigused" - label_readonly: "Muuta ei saa" - label_required: "Kohtustuslik" - text_repository_identifier_info: "Lubatud on ainult väikesed tähed (a-z), numbrid ja kriipsud.
    Peale salvestamist ei saa tunnust enam muuta." - field_board_parent: "Ülemfoorum" - label_attribute_of_project: "Projekti nimi: %{name}" - label_attribute_of_author: "Autori nimi: %{name}" - label_attribute_of_assigned_to: "Tegeleja nimi: %{name}" - label_attribute_of_fixed_version: "Sihtversiooni nimi: %{name}" - label_copy_subtasks: "Kopeeri alamülesanded" - label_copied_to: "Kopeeritud siia: " - label_copied_from: "Kopeeritud kohast:" - label_any_issues_in_project: "Kõik projekti teemad" - label_any_issues_not_in_project: "Kõik teemad, mis pole projektis" - field_private_notes: "Privaatsed märkmed" - permission_view_private_notes: "Vaata privaatseid märkmeid" - permission_set_notes_private: "Õigus märkmeid privaatseks teha" - label_no_issues_in_project: "Projektis pole teemasid" - label_any: "kõik" - label_last_n_weeks: "viimased %{count} nädalat" - setting_cross_project_subtasks: "Luba projektide vahelisi alamülesandeid" - label_cross_project_descendants: "alamprojektidega" - label_cross_project_tree: "projektipuuga" - label_cross_project_hierarchy: "projektihierarhiaga" - label_cross_project_system: "kõigi projektidega" - button_hide: "Peida" - setting_non_working_week_days: "Puhkepäevad" - label_in_the_next_days: "järgmisel päeval" - label_in_the_past_days: "eelmisel päeval" - label_attribute_of_user: "Kasutaja nimi: %{name}" - text_turning_multiple_off: "Kui sa keelad mitme väärtuse võimaluse, siis need eemaldatakse nii, et jääb ainult üks väärtus asja kohta." - label_attribute_of_issue: "Teema %{name}" - permission_add_documents: "Lisa dokumente" - permission_edit_documents: "Muuda dokumente" - permission_delete_documents: "Kustuta dokumente" - label_gantt_progress_line: "Progressi graafik" - setting_jsonp_enabled: "JSONP tugi sees" - field_inherit_members: "Päri liikmed" - field_closed_on: "Suletud kuupäeval" - field_generate_password: "Loo parool" - setting_default_projects_tracker_ids: "Uute projektide vaikimisi jälgijad" - label_total_time: "Kokku" - notice_account_not_activated_yet: "Sa pole veel oma kontot aktiveerinud. Kui sa soovid saada uut aktiveerimise e-posti, siis vajuta siia." - notice_account_locked: "Sinu konto on lukus" - label_hidden: "Peidetud" - label_visibility_private: "ainult minule" - label_visibility_roles: "ainult neile rollidele" - label_visibility_public: "kõigile kasutajatele" - field_must_change_passwd: "Peab parooli järgmisel sisselogimisel ära muutma" - notice_new_password_must_be_different: "Uus parool peab olema eelmisest erinev" - setting_mail_handler_excluded_filenames: "Välista manuseid nime kaudu" - text_convert_available: "ImageMagick teisendaja on saadaval (pole kohustuslik)" - label_link: "Viit" - label_only: "ainult" - label_drop_down_list: "hüpikmenüü" - label_checkboxes: "märkeruudud" - label_link_values_to: "Lingi väärtused URLiga" - setting_force_default_language_for_anonymous: "Anonüümsed kasutajad on vaikimisi keelega" - setting_force_default_language_for_loggedin: "Sisse logitud kasutajad on vaikimisi keelega" - label_custom_field_select_type: "Vali objekti tüüp, millele omaloodud väli külge pannakse" - label_issue_assigned_to_updated: "Tegeleja uuendatud" - label_check_for_updates: "Vaata uuendusi" - label_latest_compatible_version: "Värskeim ühilduv versioon" - label_unknown_plugin: "Tundmatu plugin" - label_radio_buttons: "raadionupud" - label_group_anonymous: "Anonüümsed kasutajad" - label_group_non_member: "Rühmata kasutajad" - label_add_projects: "Lisa projekte" - field_default_status: "Vaikimisi staatus" - text_subversion_repository_note: 'Näited: file:///, http://, https://, svn://, svn+[tunnelscheme]://' - field_users_visibility: "Kasutajate nähtavus" - label_users_visibility_all: "Kõik aktiivsed kasutajad" - label_users_visibility_members_of_visible_projects: "Nähtavate projektide liikmed" - label_edit_attachments: "Muuda lisatud faile" - setting_link_copied_issue: "Kopeerimisel lingi teemad" - label_link_copied_issue: "Lingi kopeeritud teema" - label_ask: "Küsi" - label_search_attachments_yes: "Otsi manuste nimedest ja kirjeldustest" - label_search_attachments_no: "Ära manustest otsi" - label_search_attachments_only: "Otsi ainult manustest" - label_search_open_issues_only: "Otsi ainult avatud teemadest" - field_address: "E-post" - setting_max_additional_emails: "Lisa e-posti aadresside suurim kogus" - label_email_address_plural: "E-posti aadressid" - label_email_address_add: "Lisa e-posti aadress" - label_enable_notifications: "Saada teavitusi" - label_disable_notifications: "Ära saada teavitusi" - setting_search_results_per_page: "Otsitulemusi lehe kohta" - label_blank_value: "tühi" - permission_copy_issues: "Kopeeri teemad" - error_password_expired: "Su parool on aegunud või administraator nõuab sult selle vahetamist" - field_time_entries_visibility: "Ajakannete nähtavus" - setting_password_max_age: "Parooli kehtivus" - label_parent_task_attributes: Parent tasks attributes - label_parent_task_attributes_derived: "Tuletatud alateemadest" - label_parent_task_attributes_independent: "Sõltumatu alateemadest" - label_time_entries_visibility_all: "Kõik ajakanded" - label_time_entries_visibility_own: "Kasutaja poolt loodud ajakanded" - label_member_management: "Liikmete haldus" - label_member_management_all_roles: "Kõik rollid" - label_member_management_selected_roles_only: "Ainult need rollid" - label_password_required: "Jätkamiseks kinnita oma parool" - label_total_spent_time: "Kokku kulutatud aeg" - notice_import_finished: "%{count} rida imporditud" - notice_import_finished_with_errors: "%{count} rida %{total}st ei õnnestunud importida" - error_invalid_file_encoding: "See fail ei ole õige %{encoding} kodeeringuga" - error_invalid_csv_file_or_settings: "See fail kas ei ole CSV formaadis või ei klapi allolevate sätetega" - error_can_not_read_import_file: "Importfaili sisselugemisel ilmnes viga" - permission_import_issues: "Impordi teemasid" - label_import_issues: "Impordi teemad" - label_select_file_to_import: "Vali fail mida importida" - label_fields_separator: "Väljade eristaja" - label_fields_wrapper: "Väljade wrapper" - label_encoding: "Kodeering" - label_comma_char: "Koma" - label_semi_colon_char: "Semikoolon" - label_quote_char: "Ülakoma" - label_double_quote_char: "Jutumärgid" - label_fields_mapping: "Väljade mäppimine" - label_file_content_preview: "Sisu eelvaade" - label_create_missing_values: "Loo puuduolevad väärtused" - button_import: "Import" - field_total_estimated_hours: "Ennustatud aja summa" - label_api: "API" - label_total_plural: "Summad" - label_assigned_issues: "Määratud väärtused" - label_field_format_enumeration: "Võtme/väärtuse nimekiri" - label_f_hour_short: "%{value} h" - field_default_version: "Vaikimisi versioon" - error_attachment_extension_not_allowed: "Manuse laiend %{extension} on keelatud" - setting_attachment_extensions_allowed: "Lubatud manuse laiendid" - setting_attachment_extensions_denied: "Keelatud manuse laiendid" - label_any_open_issues: "Kõik avatud teemad" - label_no_open_issues: "Mitte ühtki avatud teemat" - label_default_values_for_new_users: Default values for new users - error_ldap_bind_credentials: Invalid LDAP Account/Password - setting_sys_api_key: "Veebiteenuse API võti" - setting_lost_password: "Kui parool on ununud..." - mail_subject_security_notification: Security notification - mail_body_security_notification_change: ! '%{field} was changed.' - mail_body_security_notification_change_to: ! '%{field} was changed to %{value}.' - mail_body_security_notification_add: ! '%{field} %{value} was added.' - mail_body_security_notification_remove: ! '%{field} %{value} was removed.' - mail_body_security_notification_notify_enabled: Email address %{value} now receives - notifications. - mail_body_security_notification_notify_disabled: Email address %{value} no longer - receives notifications. - mail_body_settings_updated: ! 'The following settings were changed:' - field_remote_ip: IP address - label_wiki_page_new: New wiki page - label_relations: Relations - button_filter: Filter - mail_body_password_updated: Your password has been changed. - label_no_preview: No preview available - error_no_tracker_allowed_for_new_issue_in_project: The project doesn't have any trackers - for which you can create an issue - label_tracker_all: All trackers - label_new_project_issue_tab_enabled: Display the "New issue" tab - setting_new_item_menu_tab: Project menu tab for creating new objects - label_new_object_tab_enabled: Display the "+" drop-down - error_no_projects_with_tracker_allowed_for_new_issue: There are no projects with trackers - for which you can create an issue - field_textarea_font: Font used for text areas - label_font_default: Default font - label_font_monospace: Monospaced font - label_font_proportional: Proportional font - setting_timespan_format: Time span format - label_table_of_contents: Table of contents - setting_commit_logs_formatting: Apply text formatting to commit messages - setting_mail_handler_enable_regex: Enable regular expressions - error_move_of_child_not_possible: 'Subtask %{child} could not be moved to the new - project: %{errors}' - error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted: Spent time cannot - be reassigned to an issue that is about to be deleted - setting_timelog_required_fields: Required fields for time logs - label_attribute_of_object: '%{object_name}''s %{name}' - label_user_mail_option_only_assigned: Only for things I watch or I am assigned to - label_user_mail_option_only_owner: Only for things I watch or I am the owner of - warning_fields_cleared_on_bulk_edit: Changes will result in the automatic deletion - of values from one or more fields on the selected objects - field_updated_by: Updated by - field_last_updated_by: Last updated by - field_full_width_layout: Full width layout - label_last_notes: Last notes - field_digest: Checksum - field_default_assigned_to: Default assignee - setting_show_custom_fields_on_registration: Show custom fields on registration - permission_view_news: View news - label_no_preview_alternative_html: No preview available. %{link} the file instead. - label_no_preview_download: Download - setting_close_duplicate_issues: Close duplicate issues automatically - error_exceeds_maximum_hours_per_day: Cannot log more than %{max_hours} hours on the - same day (%{logged_hours} hours have already been logged) - setting_time_entry_list_defaults: Timelog list defaults - setting_timelog_accept_0_hours: Accept time logs with 0 hours - setting_timelog_max_hours_per_day: Maximum hours that can be logged per day and user - label_x_revisions: "%{count} revisions" - error_can_not_delete_auth_source: This authentication mode is in use and cannot be - deleted. - button_actions: Actions - mail_body_lost_password_validity: Please be aware that you may change the password - only once using this link. - text_login_required_html: When not requiring authentication, public projects and their - contents are openly available on the network. You can edit - the applicable permissions. - label_login_required_yes: 'Yes' - label_login_required_no: No, allow anonymous access to public projects - text_project_is_public_non_member: Public projects and their contents are available - to all logged-in users. - text_project_is_public_anonymous: Public projects and their contents are openly available - on the network. - label_version_and_files: Versions (%{count}) and Files - label_ldap: LDAP - label_ldaps_verify_none: LDAPS (without certificate check) - label_ldaps_verify_peer: LDAPS - label_ldaps_warning: It is recommended to use an encrypted LDAPS connection with certificate - check to prevent any manipulation during the authentication process. - label_nothing_to_preview: Nothing to preview - error_token_expired: This password recovery link has expired, please try again. - error_spent_on_future_date: Cannot log time on a future date - setting_timelog_accept_future_dates: Accept time logs on future dates - label_delete_link_to_subtask: "Kustuta seos" - error_not_allowed_to_log_time_for_other_users: You are not allowed to log time - for other users - permission_log_time_for_other_users: Log spent time for other users - label_tomorrow: tomorrow - label_next_week: next week - label_next_month: next month - text_role_no_workflow: No workflow defined for this role - text_status_no_workflow: No tracker uses this status in the workflows - setting_mail_handler_preferred_body_part: Preferred part of multipart (HTML) emails - setting_show_status_changes_in_mail_subject: Show status changes in issue mail notifications - subject - label_inherited_from_parent_project: Inherited from parent project - label_inherited_from_group: Inherited from group %{name} - label_trackers_description: Trackers description - label_open_trackers_description: View all trackers description - label_preferred_body_part_text: Text - label_preferred_body_part_html: HTML (experimental) - field_parent_issue_subject: Parent task subject - permission_edit_own_issues: Edit own issues - text_select_apply_tracker: Select tracker - label_updated_issues: Updated issues - text_avatar_server_config_html: The current avatar server is %{url}. - You can configure it in config/configuration.yml. - setting_gantt_months_limit: Maximum number of months displayed on the gantt chart - permission_import_time_entries: Import time entries - label_import_notifications: Send email notifications during the import - text_gs_available: ImageMagick PDF support available (optional) - field_recently_used_projects: Number of recently used projects in jump box - label_optgroup_bookmarks: Bookmarks - label_optgroup_others: Other projects - label_optgroup_recents: Recently used - button_project_bookmark: Add bookmark - button_project_bookmark_delete: Remove bookmark - field_history_default_tab: Issue's history default tab - label_issue_history_properties: Property changes - label_issue_history_notes: Notes - label_last_tab_visited: Last visited tab - field_unique_id: Unique ID - text_no_subject: no subject - setting_password_required_char_classes: Required character classes for passwords - label_password_char_class_uppercase: uppercase letters - label_password_char_class_lowercase: lowercase letters - label_password_char_class_digits: digits - label_password_char_class_special_chars: special characters - text_characters_must_contain: Must contain %{character_classes}. - label_starts_with: starts with - label_ends_with: ends with - label_issue_fixed_version_updated: Target version updated - setting_project_list_defaults: Projects list defaults - label_display_type: Display results as - label_display_type_list: List - label_display_type_board: Board - label_my_bookmarks: My bookmarks - label_import_time_entries: Import time entries diff --git a/config/locales/eu.yml b/config/locales/eu.yml deleted file mode 100644 index 1ec2714..0000000 --- a/config/locales/eu.yml +++ /dev/null @@ -1,1316 +0,0 @@ -# Redmine EU language -# Author: Ales Zabala Alava (Shagi), -# 2010-01-25 -# Distributed under the same terms as the Redmine itself. -eu: - direction: ltr - date: - formats: - # Use the strftime parameters for formats. - # When no format has been given, it uses default. - # You can provide other formats here if you like! - default: "%Y/%m/%d" - short: "%b %d" - long: "%Y %B %d" - - day_names: [Igandea, Astelehena, Asteartea, Asteazkena, Osteguna, Ostirala, Larunbata] - abbr_day_names: [Ig., Al., Ar., Az., Og., Or., La.] - - # Don't forget the nil at the beginning; there's no such thing as a 0th month - month_names: [~, Urtarrila, Otsaila, Martxoa, Apirila, Maiatza, Ekaina, Uztaila, Abuztua, Iraila, Urria, Azaroa, Abendua] - abbr_month_names: [~, Urt, Ots, Mar, Api, Mai, Eka, Uzt, Abu, Ira, Urr, Aza, Abe] - # Used in date_select and datime_select. - order: - - :year - - :month - - :day - - time: - formats: - default: "%Y/%m/%d %H:%M" - time: "%H:%M" - short: "%b %d %H:%M" - long: "%Y %B %d %H:%M" - am: "am" - pm: "pm" - - datetime: - distance_in_words: - half_a_minute: "minutu erdi" - less_than_x_seconds: - one: "segundu bat baino gutxiago" - other: "%{count} segundu baino gutxiago" - x_seconds: - one: "segundu 1" - other: "%{count} segundu" - less_than_x_minutes: - one: "minutu bat baino gutxiago" - other: "%{count} minutu baino gutxiago" - x_minutes: - one: "minutu 1" - other: "%{count} minutu" - about_x_hours: - one: "ordu 1 inguru" - other: "%{count} ordu inguru" - x_hours: - one: "ordu 1" - other: "%{count} ordu" - x_days: - one: "egun 1" - other: "%{count} egun" - about_x_months: - one: "hilabete 1 inguru" - other: "%{count} hilabete inguru" - x_months: - one: "hilabete 1" - other: "%{count} hilabete" - about_x_years: - one: "urte 1 inguru" - other: "%{count} urte inguru" - over_x_years: - one: "urte 1 baino gehiago" - other: "%{count} urte baino gehiago" - almost_x_years: - one: "ia urte 1" - other: "ia %{count} urte" - - number: - format: - separator: "." - delimiter: "" - precision: 3 - human: - format: - delimiter: "" - precision: 3 - storage_units: - format: "%n %u" - units: - byte: - one: "Byte" - other: "Byte" - kb: "KB" - mb: "MB" - gb: "GB" - tb: "TB" - -# Used in array.to_sentence. - support: - array: - sentence_connector: "eta" - skip_last_comma: false - - activerecord: - errors: - template: - header: - one: "Errore batek %{model} hau godetzea galarazi du." - other: "%{count} errorek %{model} hau gordetzea galarazi dute." - messages: - inclusion: "ez dago zerrendan" - exclusion: "erreserbatuta dago" - invalid: "baliogabea da" - confirmation: "ez du berrespenarekin bat egiten" - accepted: "onartu behar da" - empty: "ezin da hutsik egon" - blank: "ezin da hutsik egon" - too_long: "luzeegia da (maximoa %{count} karaktere dira)" - too_short: "laburregia da (minimoa %{count} karaktere dira)" - wrong_length: "luzera ezegokia da (%{count} karakter izan beharko litzake)" - taken: "dagoeneko hartuta dago" - not_a_number: "ez da zenbaki bat" - not_a_date: "ez da baliozko data" - greater_than: "%{count} baino handiagoa izan behar du" - greater_than_or_equal_to: "%{count} edo handiagoa izan behar du" - equal_to: "%{count} izan behar du" - less_than: "%{count} baino gutxiago izan behar du" - less_than_or_equal_to: "%{count} edo gutxiago izan behar du" - odd: "bakoitia izan behar du" - even: "bikoitia izan behar du" - greater_than_start_date: "hasiera data baino handiagoa izan behar du" - not_same_project: "ez dago proiektu berdinean" - circular_dependency: "Erlazio honek mendekotasun zirkular bat sortuko luke" - cant_link_an_issue_with_a_descendant: "Zeregin bat ezin da bere azpiataza batekin estekatu." - earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" - not_a_regexp: "is not a valid regular expression" - open_issue_with_closed_parent: "An open issue cannot be attached to a closed parent task" - must_contain_uppercase: "must contain uppercase letters (A-Z)" - must_contain_lowercase: "must contain lowercase letters (a-z)" - must_contain_digits: "must contain digits (0-9)" - must_contain_special_chars: "must contain special characters (!, $, %, ...)" - - actionview_instancetag_blank_option: Hautatu mesedez - - general_text_No: 'Ez' - general_text_Yes: 'Bai' - general_text_no: 'ez' - general_text_yes: 'bai' - general_lang_name: 'Basque (Euskara)' - general_csv_separator: ',' - general_csv_decimal_separator: '.' - general_csv_encoding: UTF-8 - general_pdf_fontname: freesans - general_pdf_monospaced_fontname: freemono - general_first_day_of_week: '1' - - notice_account_updated: Kontua ongi eguneratu da. - notice_account_invalid_credentials: Erabiltzaile edo pasahitz ezegokia - notice_account_password_updated: Pasahitza ongi eguneratu da. - notice_account_wrong_password: Pasahitz ezegokia. - notice_account_register_done: Kontua ongi sortu da. Kontua gaitzeko klikatu epostan adierazi zaizun estekan. - notice_account_unknown_email: Erabiltzaile ezezaguna. - notice_can_t_change_password: Kontu honek kanpoko autentikazio bat erabiltzen du. Ezinezkoa da pasahitza aldatzea. - notice_account_lost_email_sent: Pasahitz berria aukeratzeko jarraibideak dituen eposta bat bidali zaizu. - notice_account_activated: Zure kontua gaituta dago. Orain saioa has dezakezu - notice_successful_create: Sortze arrakastatsua. - notice_successful_update: Eguneratze arrakastatsua. - notice_successful_delete: Ezabaketa arrakastatsua. - notice_successful_connection: Konexio arrakastatsua. - notice_file_not_found: Atzitu nahi duzun orria ez da exisitzen edo ezabatua izan da. - notice_locking_conflict: Beste erabiltzaile batek datuak eguneratu ditu. - notice_not_authorized: Ez duzu orri hau atzitzeko baimenik. - notice_email_sent: "%{value} helbidera eposta bat bidali da" - notice_email_error: "Errorea eposta bidaltzean (%{value})" - notice_feeds_access_key_reseted: Zure Atom atzipen giltza berrezarri da. - notice_api_access_key_reseted: Zure API atzipen giltza berrezarri da. - notice_failed_to_save_issues: "Hautatutako %{total} zereginetatik %{count} ezin izan dira konpondu: %{ids}." - notice_no_issue_selected: "Ez da zereginik hautatu! Mesedez, editatu nahi dituzun arazoak markatu." - notice_account_pending: "Zure kontua sortu da, orain kudeatzailearen onarpenaren zain dago." - notice_default_data_loaded: Lehenetsitako konfigurazioa ongi kargatu da. - notice_unable_delete_version: Ezin da bertsioa ezabatu. - notice_issue_done_ratios_updated: Burututako zereginen erlazioa eguneratu da. - - error_can_t_load_default_data: "Ezin izan da lehenetsitako konfigurazioa kargatu: %{value}" - error_scm_not_found: "Sarrera edo berrikuspena ez da biltegian topatu." - error_scm_command_failed: "Errorea gertatu da biltegia atzitzean: %{value}" - error_scm_annotate: "Sarrera ez da existitzen edo ezin da anotatu." - error_issue_not_found_in_project: 'Zeregina ez da topatu edo ez da proiektu honetakoa' - error_no_tracker_in_project: 'Proiektu honek ez du aztarnaririk esleituta. Mesedez egiaztatu Proiektuaren ezarpenak.' - error_no_default_issue_status: 'Zereginek ez dute lehenetsitako egoerarik. Mesedez egiaztatu zure konfigurazioa ("Kudeaketa -> Arazoen egoerak" atalera joan).' - error_can_not_reopen_issue_on_closed_version: 'Itxitako bertsio batera esleitutako zereginak ezin dira berrireki' - error_can_not_archive_project: Proiektu hau ezin da artxibatu - error_issue_done_ratios_not_updated: "Burututako zereginen erlazioa ez da eguneratu." - error_workflow_copy_source: 'Mesedez hautatu iturburuko aztarnari edo rola' - error_workflow_copy_target: 'Mesedez hautatu helburuko aztarnari(ak) edo rola(k)' - - warning_attachments_not_saved: "%{count} fitxategi ezin izan d(ir)a gorde." - - mail_subject_lost_password: "Zure %{value} pasahitza" - mail_body_lost_password: 'Zure pasahitza aldatzeko hurrengo estekan klikatu:' - mail_subject_register: "Zure %{value} kontuaren gaitzea" - mail_body_register: 'Zure kontua gaitzeko hurrengo estekan klikatu:' - mail_body_account_information_external: "Zure %{value} kontua erabil dezakezu saioa hasteko." - mail_body_account_information: Zure kontuaren informazioa - mail_subject_account_activation_request: "%{value} kontu gaitzeko eskaera" - mail_body_account_activation_request: "Erabiltzaile berri bat (%{value}) erregistratu da. Kontua zure onarpenaren zain dago:" - mail_subject_reminder: "%{count} arazo hurrengo %{days} egunetan amaitzen d(ir)a" - mail_body_reminder: "Zuri esleituta dauden %{count} arazo hurrengo %{days} egunetan amaitzen d(ir)a:" - mail_subject_wiki_content_added: "'%{id}' wiki orria gehitu da" - mail_body_wiki_content_added: "%{author}-(e)k '%{id}' wiki orria gehitu du." - mail_subject_wiki_content_updated: "'%{id}' wiki orria eguneratu da" - mail_body_wiki_content_updated: "%{author}-(e)k '%{id}' wiki orria eguneratu du." - - - field_name: Izena - field_description: Deskribapena - field_summary: Laburpena - field_is_required: Beharrezkoa - field_firstname: Izena - field_lastname: Abizenak - field_mail: Eposta - field_filename: Fitxategia - field_filesize: Tamaina - field_downloads: Deskargak - field_author: Egilea - field_created_on: Sortuta - field_updated_on: Eguneratuta - field_field_format: Formatua - field_is_for_all: Proiektu guztietarako - field_possible_values: Balio posibleak - field_regexp: Expresio erregularra - field_min_length: Luzera minimoa - field_max_length: Luzera maxioma - field_value: Balioa - field_category: Kategoria - field_title: Izenburua - field_project: Proiektua - field_issue: Zeregina - field_status: Egoera - field_notes: Oharrak - field_is_closed: Itxitako arazoa - field_is_default: Lehenetsitako balioa - field_tracker: Aztarnaria - field_subject: Gaia - field_due_date: Amaiera data - field_assigned_to: Esleituta - field_priority: Lehentasuna - field_fixed_version: Helburuko bertsioa - field_user: Erabiltzilea - field_role: Rola - field_homepage: Orri nagusia - field_is_public: Publikoa - field_parent: "Honen azpiproiektua:" - field_is_in_roadmap: Arazoak ibilbide-mapan erakutsi - field_login: Erabiltzaile izena - field_mail_notification: Eposta jakinarazpenak - field_admin: Kudeatzailea - field_last_login_on: Azken konexioa - field_language: Hizkuntza - field_effective_date: Data - field_password: Pasahitza - field_new_password: Pasahitz berria - field_password_confirmation: Berrespena - field_version: Bertsioa - field_type: Mota - field_host: Ostalaria - field_port: Portua - field_account: Kontua - field_base_dn: Base DN - field_attr_login: Erabiltzaile atributua - field_attr_firstname: Izena atributua - field_attr_lastname: Abizenak atributua - field_attr_mail: Eposta atributua - field_onthefly: Zuzeneko erabiltzaile sorrera - field_start_date: Hasiera - field_done_ratio: Egindako % - field_auth_source: Autentikazio modua - field_hide_mail: Nire eposta helbidea ezkutatu - field_comments: Iruzkina - field_url: URL - field_start_page: Hasierako orria - field_subproject: Azpiproiektua - field_hours: Ordu - field_activity: Jarduera - field_spent_on: Data - field_identifier: Identifikatzailea - field_is_filter: Iragazki moduan erabilita - field_issue_to: Erlazionatutako zereginak - field_delay: Atzerapena - field_assignable: Arazoak rol honetara esleitu daitezke - field_redirect_existing_links: Existitzen diren estekak berbideratu - field_estimated_hours: Estimatutako denbora - field_column_names: Zutabeak - field_time_zone: Ordu zonaldea - field_searchable: Bilagarria - field_default_value: Lehenetsitako balioa - field_comments_sorting: Iruzkinak erakutsi - field_parent_title: Orri gurasoa - field_editable: Editagarria - field_watcher: Behatzailea - field_identity_url: OpenID URLa - field_content: Edukia - field_group_by: Emaitzak honegatik taldekatu - field_sharing: Partekatzea - - setting_app_title: Aplikazioaren izenburua - setting_welcome_text: Ongietorriko testua - setting_default_language: Lehenetsitako hizkuntza - setting_login_required: Autentikazioa derrigorrezkoa - setting_self_registration: Norberak erregistratu - setting_attachment_max_size: Eranskinen tamaina max. - setting_issues_export_limit: Zereginen esportatze limitea - setting_mail_from: Igorlearen eposta helbidea - setting_bcc_recipients: Hartzaileak ezkutuko kopian (bcc) - setting_plain_text_mail: Testu soileko epostak (HTML-rik ez) - setting_host_name: Ostalari izena eta bidea - setting_text_formatting: Testu formatua - setting_wiki_compression: Wikiaren historia konprimitu - setting_feeds_limit: Jarioaren edukiera limitea - setting_default_projects_public: Proiektu berriak defektuz publikoak dira - setting_autofetch_changesets: Commit-ak automatikoki hartu - setting_sys_api_enabled: Biltegien kudeaketarako WS gaitu - setting_commit_ref_keywords: Erreferentzien gako-hitzak - setting_commit_fix_keywords: Konpontze gako-hitzak - setting_autologin: Saioa automatikoki hasi - setting_date_format: Data formatua - setting_time_format: Ordu formatua - setting_cross_project_issue_relations: Zereginak proiektuen artean erlazionatzea baimendu - setting_issue_list_default_columns: Zereginen zerrendan defektuz ikusten diren zutabeak - setting_emails_footer: Eposten oina - setting_protocol: Protokoloa - setting_per_page_options: Orriko objektuen aukerak - setting_user_format: Erabiltzaileak erakusteko formatua - setting_activity_days_default: Proiektuen jardueran erakusteko egunak - setting_display_subprojects_issues: Azpiproiektuen zereginak proiektu nagusian erakutsi defektuz - setting_enabled_scm: Gaitutako IKKak - setting_mail_handler_body_delimiters: "Lerro hauteko baten ondoren epostak moztu" - setting_mail_handler_api_enabled: Sarrerako epostentzako WS gaitu - setting_mail_handler_api_key: API giltza - setting_sequential_project_identifiers: Proiektuen identifikadore sekuentzialak sortu - setting_gravatar_enabled: Erabili Gravatar erabiltzaile ikonoak - setting_gravatar_default: Lehenetsitako Gravatar irudia - setting_diff_max_lines_displayed: Erakutsiko diren diff lerro kopuru maximoa - setting_file_max_size_displayed: Barnean erakuzten diren testu fitxategien tamaina maximoa - setting_repository_log_display_limit: Egunkari fitxategian erakutsiko diren berrikuspen kopuru maximoa. - setting_openid: Baimendu OpenID saio hasiera eta erregistatzea - setting_password_min_length: Pasahitzen luzera minimoa - setting_new_project_user_role_id: Proiektu berriak sortzerakoan kudeatzaile ez diren erabiltzaileei esleitutako rola - setting_default_projects_modules: Proiektu berrientzako defektuz gaitutako moduluak - setting_issue_done_ratio: "Zereginen burututako tasa kalkulatzean erabili:" - setting_issue_done_ratio_issue_field: Zeregin eremua erabili - setting_issue_done_ratio_issue_status: Zeregin egoera erabili - setting_start_of_week: "Egutegiak noiz hasi:" - setting_rest_api_enabled: Gaitu REST web zerbitzua - - permission_add_project: Proiektua sortu - permission_add_subprojects: Azpiproiektuak sortu - permission_edit_project: Proiektua editatu - permission_select_project_modules: Proiektuaren moduluak hautatu - permission_manage_members: Kideak kudeatu - permission_manage_versions: Bertsioak kudeatu - permission_manage_categories: Arazoen kategoriak kudeatu - permission_view_issues: Zereginak ikusi - permission_add_issues: Zereginak gehitu - permission_edit_issues: Zereginak aldatu - permission_manage_issue_relations: Zereginen erlazioak kudeatu - permission_add_issue_notes: Oharrak gehitu - permission_edit_issue_notes: Oharrak aldatu - permission_edit_own_issue_notes: Nork bere oharrak aldatu - permission_delete_issues: Zereginak ezabatu - permission_manage_public_queries: Galdera publikoak kudeatu - permission_save_queries: Galderak gorde - permission_view_gantt: Gantt grafikoa ikusi - permission_view_calendar: Egutegia ikusi - permission_view_issue_watchers: Behatzaileen zerrenda ikusi - permission_add_issue_watchers: Behatzaileak gehitu - permission_delete_issue_watchers: Behatzaileak ezabatu - permission_log_time: Igarotako denbora erregistratu - permission_view_time_entries: Igarotako denbora ikusi - permission_edit_time_entries: Denbora egunkariak editatu - permission_edit_own_time_entries: Nork bere denbora egunkariak editatu - permission_manage_news: Berriak kudeatu - permission_comment_news: Berrien iruzkinak egin - permission_view_documents: Dokumentuak ikusi - permission_manage_files: Fitxategiak kudeatu - permission_view_files: Fitxategiak ikusi - permission_manage_wiki: Wikia kudeatu - permission_rename_wiki_pages: Wiki orriak berrizendatu - permission_delete_wiki_pages: Wiki orriak ezabatu - permission_view_wiki_pages: Wikia ikusi - permission_view_wiki_edits: Wikiaren historia ikusi - permission_edit_wiki_pages: Wiki orriak editatu - permission_delete_wiki_pages_attachments: Eranskinak ezabatu - permission_protect_wiki_pages: Wiki orriak babestu - permission_manage_repository: Biltegiak kudeatu - permission_browse_repository: Biltegia arakatu - permission_view_changesets: Aldaketak ikusi - permission_commit_access: Commit atzipena - permission_manage_boards: Foroak kudeatu - permission_view_messages: Mezuak ikusi - permission_add_messages: Mezuak bidali - permission_edit_messages: Mezuak aldatu - permission_edit_own_messages: Nork bere mezuak aldatu - permission_delete_messages: Mezuak ezabatu - permission_delete_own_messages: Nork bere mezuak ezabatu - - project_module_issue_tracking: Zereginen jarraipena - project_module_time_tracking: Denbora jarraipena - project_module_news: Berriak - project_module_documents: Dokumentuak - project_module_files: Fitxategiak - project_module_wiki: Wiki - project_module_repository: Biltegia - project_module_boards: Foroak - - label_user: Erabiltzailea - label_user_plural: Erabiltzaileak - label_user_new: Erabiltzaile berria - label_user_anonymous: Ezezaguna - label_project: Proiektua - label_project_new: Proiektu berria - label_project_plural: Proiektuak - label_x_projects: - zero: proiekturik ez - one: proiektu bat - other: "%{count} proiektu" - label_project_all: Proiektu guztiak - label_project_latest: Azken proiektuak - label_issue: Zeregina - label_issue_new: Zeregin berria - label_issue_plural: Zereginak - label_issue_view_all: Zeregin guztiak ikusi - label_issues_by: "Zereginak honengatik: %{value}" - label_issue_added: Zeregina gehituta - label_issue_updated: Zeregina eguneratuta - label_document: Dokumentua - label_document_new: Dokumentu berria - label_document_plural: Dokumentuak - label_document_added: Dokumentua gehituta - label_role: Rola - label_role_plural: Rolak - label_role_new: Rol berria - label_role_and_permissions: Rolak eta baimenak - label_member: Kidea - label_member_new: Kide berria - label_member_plural: Kideak - label_tracker: Aztarnaria - label_tracker_plural: Aztarnariak - label_tracker_new: Aztarnari berria - label_workflow: Lan-fluxua - label_issue_status: Zeregin egoera - label_issue_status_plural: Zeregin egoerak - label_issue_status_new: Egoera berria - label_issue_category: Zeregin kategoria - label_issue_category_plural: Zeregin kategoriak - label_issue_category_new: Kategoria berria - label_custom_field: Eremu pertsonalizatua - label_custom_field_plural: Eremu pertsonalizatuak - label_custom_field_new: Eremu pertsonalizatu berria - label_enumerations: Enumerazioak - label_enumeration_new: Balio berria - label_information: Informazioa - label_information_plural: Informazioa - label_register: Erregistratu - label_login_with_open_id_option: edo OpenID-rekin saioa hasi - label_password_lost: Pasahitza galduta - label_home: Hasiera - label_my_page: Nire orria - label_my_account: Nire kontua - label_my_projects: Nire proiektuak - label_administration: Kudeaketa - label_login: Saioa hasi - label_logout: Saioa bukatu - label_help: Laguntza - label_reported_issues: Berri emandako zereginak - label_assigned_to_me_issues: Niri esleitutako arazoak - label_last_login: Azken konexioa - label_registered_on: Noiz erregistratuta - label_activity: Jarduerak - label_overall_activity: Jarduera guztiak - label_user_activity: "%{value}-(r)en jarduerak" - label_new: Berria - label_logged_as: "Sartutako erabiltzailea:" - label_environment: Ingurune - label_authentication: Autentikazioa - label_auth_source: Autentikazio modua - label_auth_source_new: Autentikazio modu berria - label_auth_source_plural: Autentikazio moduak - label_subproject_plural: Azpiproiektuak - label_subproject_new: Azpiproiektu berria - label_and_its_subprojects: "%{value} eta bere azpiproiektuak" - label_min_max_length: Luzera min - max - label_list: Zerrenda - label_date: Data - label_integer: Osokoa - label_float: Koma higikorrekoa - label_boolean: Boolearra - label_string: Testua - label_text: Testu luzea - label_attribute: Atributua - label_attribute_plural: Atributuak - label_no_data: Ez dago erakusteko daturik - label_change_status: Egoera aldatu - label_history: Historikoa - label_attachment: Fitxategia - label_attachment_new: Fitxategi berria - label_attachment_delete: Fitxategia ezabatu - label_attachment_plural: Fitxategiak - label_file_added: Fitxategia gehituta - label_report: Berri ematea - label_report_plural: Berri emateak - label_news: Berria - label_news_new: Berria gehitu - label_news_plural: Berriak - label_news_latest: Azken berriak - label_news_view_all: Berri guztiak ikusi - label_news_added: Berria gehituta - label_settings: Ezarpenak - label_overview: Gainbegirada - label_version: Bertsioa - label_version_new: Bertsio berria - label_version_plural: Bertsioak - label_close_versions: Burututako bertsioak itxi - label_confirmation: Baieztapena - label_export_to: 'Eskuragarri baita:' - label_read: Irakurri... - label_public_projects: Proiektu publikoak - label_open_issues: irekita - label_open_issues_plural: irekiak - label_closed_issues: itxita - label_closed_issues_plural: itxiak - label_x_open_issues_abbr: - zero: 0 irekita - one: 1 irekita - other: "%{count} irekiak" - label_x_closed_issues_abbr: - zero: 0 itxita - one: 1 itxita - other: "%{count} itxiak" - label_total: Guztira - label_permissions: Baimenak - label_current_status: Uneko egoera - label_new_statuses_allowed: Baimendutako egoera berriak - label_all: guztiak - label_none: ezer - label_nobody: inor - label_next: Hurrengoa - label_previous: Aurrekoak - label_used_by: Erabilita - label_details: Xehetasunak - label_add_note: Oharra gehitu - label_calendar: Egutegia - label_months_from: hilabete noiztik - label_gantt: Gantt - label_internal: Barnekoa - label_last_changes: "azken %{count} aldaketak" - label_change_view_all: Aldaketa guztiak ikusi - label_comment: Iruzkin - label_comment_plural: Iruzkinak - label_x_comments: - zero: iruzkinik ez - one: iruzkin 1 - other: "%{count} iruzkin" - label_comment_add: Iruzkina gehitu - label_comment_added: Iruzkina gehituta - label_comment_delete: Iruzkinak ezabatu - label_query: Galdera pertsonalizatua - label_query_plural: Pertsonalizatutako galderak - label_query_new: Galdera berria - label_filter_add: Iragazkia gehitu - label_filter_plural: Iragazkiak - label_equals: da - label_not_equals: ez da - label_in_less_than: baino gutxiagotan - label_in_more_than: baino gehiagotan - label_greater_or_equal: '>=' - label_less_or_equal: '<=' - label_in: hauetan - label_today: gaur - label_yesterday: atzo - label_this_week: aste honetan - label_last_week: pasadan astean - label_last_n_days: "azken %{count} egunetan" - label_this_month: hilabete hau - label_last_month: pasadan hilabetea - label_this_year: urte hau - label_date_range: Data tartea - label_less_than_ago: egun hauek baino gutxiago - label_more_than_ago: egun hauek baino gehiago - label_ago: orain dela - label_contains: dauka - label_not_contains: ez dauka - label_day_plural: egun - label_repository: Biltegia - label_repository_plural: Biltegiak - label_browse: Arakatu - label_branch: Adarra - label_tag: Etiketa - label_revision: Berrikuspena - label_revision_plural: Berrikuspenak - label_revision_id: "%{value} berrikuspen" - label_associated_revisions: Elkartutako berrikuspenak - label_added: gehituta - label_modified: aldatuta - label_copied: kopiatuta - label_renamed: berrizendatuta - label_deleted: ezabatuta - label_latest_revision: Azken berrikuspena - label_latest_revision_plural: Azken berrikuspenak - label_view_revisions: Berrikuspenak ikusi - label_view_all_revisions: Berrikuspen guztiak ikusi - label_max_size: Tamaina maximoa - label_sort_highest: Goraino mugitu - label_sort_higher: Gora mugitu - label_sort_lower: Behera mugitu - label_sort_lowest: Beheraino mugitu - label_roadmap: Ibilbide-mapa - label_roadmap_due_in: "Epea: %{value}" - label_roadmap_overdue: "%{value} berandu" - label_roadmap_no_issues: Ez dago zereginik bertsio honetan - label_search: Bilatu - label_result_plural: Emaitzak - label_all_words: hitz guztiak - label_wiki: Wikia - label_wiki_edit: Wiki edizioa - label_wiki_edit_plural: Wiki edizioak - label_wiki_page: Wiki orria - label_wiki_page_plural: Wiki orriak - label_index_by_title: Izenburuaren araberako indizea - label_index_by_date: Dataren araberako indizea - label_current_version: Uneko bertsioa - label_preview: Aurreikusi - label_feed_plural: Jarioak - label_changes_details: Aldaketa guztien xehetasunak - label_issue_tracking: Zeregin jarraipena - label_spent_time: Igarotako denbora - label_f_hour: "ordu %{value}" - label_f_hour_plural: "%{value} ordu" - label_time_tracking: Denbora jarraipena - label_change_plural: Aldaketak - label_statistics: Estatistikak - label_commits_per_month: Commit-ak hilabeteka - label_commits_per_author: Commit-ak egileka - label_view_diff: Ezberdintasunak ikusi - label_diff_inline: barnean - label_diff_side_by_side: aldez alde - label_options: Aukerak - label_copy_workflow_from: Kopiatu workflow-a hemendik - label_permissions_report: Baimenen txostena - label_watched_issues: Behatutako zereginak - label_related_issues: Erlazionatutako zereginak - label_applied_status: Aplikatutako egoera - label_loading: Kargatzen... - label_relation_new: Erlazio berria - label_relation_delete: Erlazioa ezabatu - label_relates_to: erlazionatuta dago - label_duplicates: bikoizten du - label_duplicated_by: honek bikoiztuta - label_blocks: blokeatzen du - label_blocked_by: honek blokeatuta - label_precedes: aurretik doa - label_follows: jarraitzen du - label_stay_logged_in: Saioa mantendu - label_disabled: ezgaituta - label_show_completed_versions: Bukatutako bertsioak ikusi - label_me: ni - label_board: Foroa - label_board_new: Foro berria - label_board_plural: Foroak - label_topic_plural: Gaiak - label_message_plural: Mezuak - label_message_last: Azken mezua - label_message_new: Mezu berria - label_message_posted: Mezua gehituta - label_reply_plural: Erantzunak - label_send_information: Erabiltzaileai kontuaren informazioa bidali - label_year: Urtea - label_month: Hilabetea - label_week: Astea - label_date_from: Nork - label_date_to: Nori - label_language_based: Erabiltzailearen hizkuntzaren arabera - label_sort_by: "Ordenazioa: %{value}" - label_send_test_email: Frogako mezua bidali - label_feeds_access_key: Atom atzipen giltza - label_missing_feeds_access_key: Atom atzipen giltza falta da - label_feeds_access_key_created_on: "Atom atzipen giltza orain dela %{value} sortuta" - label_module_plural: Moduluak - label_added_time_by: "%{author}, orain dela %{age} gehituta" - label_updated_time_by: "%{author}, orain dela %{age} eguneratuta" - label_updated_time: "Orain dela %{value} eguneratuta" - label_jump_to_a_project: Joan proiektura... - label_file_plural: Fitxategiak - label_changeset_plural: Aldaketak - label_default_columns: Lehenetsitako zutabeak - label_no_change_option: (Aldaketarik ez) - label_bulk_edit_selected_issues: Hautatutako zereginak batera editatu - label_theme: Itxura - label_default: Lehenetsia - label_search_titles_only: Izenburuetan bakarrik bilatu - label_user_mail_option_all: "Nire proiektu guztietako gertakari guztientzat" - label_user_mail_option_selected: "Hautatutako proiektuetako edozein gertakarientzat..." - label_user_mail_no_self_notified: "Ez dut nik egiten ditudan aldeketen jakinarazpenik jaso nahi" - label_registration_activation_by_email: kontuak epostaz gaitu - label_registration_manual_activation: kontuak eskuz gaitu - label_registration_automatic_activation: kontuak automatikoki gaitu - label_display_per_page: "Orriko: %{value}" - label_age: Adina - label_change_properties: Propietateak aldatu - label_general: Orokorra - label_scm: IKK - label_plugins: Pluginak - label_ldap_authentication: LDAP autentikazioa - label_downloads_abbr: Desk. - label_optional_description: Aukerako deskribapena - label_add_another_file: Beste fitxategia gehitu - label_preferences: Hobespenak - label_chronological_order: Orden kronologikoan - label_reverse_chronological_order: Alderantzizko orden kronologikoan - label_incoming_emails: Sarrerako epostak - label_generate_key: Giltza sortu - label_issue_watchers: Behatzaileak - label_example: Adibidea - label_display: Bistaratzea - label_sort: Ordenatu - label_ascending: Gorantz - label_descending: Beherantz - label_date_from_to: "%{start}-tik %{end}-ra" - label_wiki_content_added: Wiki orria gehituta - label_wiki_content_updated: Wiki orria eguneratuta - label_group: Taldea - label_group_plural: Taldeak - label_group_new: Talde berria - label_time_entry_plural: Igarotako denbora - label_version_sharing_none: Ez partekatuta - label_version_sharing_descendants: Azpiproiektuekin - label_version_sharing_hierarchy: Proiektu Hierarkiarekin - label_version_sharing_tree: Proiektu zuhaitzarekin - label_version_sharing_system: Proiektu guztiekin - label_update_issue_done_ratios: Zereginen burututako erlazioa eguneratu - label_copy_source: Iturburua - label_copy_target: Helburua - label_copy_same_as_target: Helburuaren berdina - label_display_used_statuses_only: Aztarnari honetan erabiltzen diren egoerak bakarrik erakutsi - label_api_access_key: API atzipen giltza - label_missing_api_access_key: API atzipen giltza falta da - label_api_access_key_created_on: "API atzipen giltza sortuta orain dela %{value}" - - button_login: Saioa hasi - button_submit: Bidali - button_save: Gorde - button_check_all: Guztiak markatu - button_uncheck_all: Guztiak desmarkatu - button_delete: Ezabatu - button_create: Sortu - button_create_and_continue: Sortu eta jarraitu - button_test: Frogatu - button_edit: Editatu - button_add: Gehitu - button_change: Aldatu - button_apply: Aplikatu - button_clear: Garbitu - button_lock: Blokeatu - button_unlock: Desblokeatu - button_download: Deskargatu - button_list: Zerrenda - button_view: Ikusi - button_move: Mugitu - button_move_and_follow: Mugitu eta jarraitu - button_back: Atzera - button_cancel: Ezeztatu - button_activate: Gahitu - button_sort: Ordenatu - button_log_time: Denbora erregistratu - button_rollback: Itzuli bertsio honetara - button_watch: Behatu - button_unwatch: Behatzen utzi - button_reply: Erantzun - button_archive: Artxibatu - button_unarchive: Desartxibatu - button_reset: Berrezarri - button_rename: Berrizendatu - button_change_password: Pasahitza aldatu - button_copy: Kopiatu - button_copy_and_follow: Kopiatu eta jarraitu - button_annotate: Anotatu - button_update: Eguneratu - button_configure: Konfiguratu - button_quote: Aipatu - button_show: Ikusi - - status_active: gaituta - status_registered: izena emanda - status_locked: blokeatuta - - version_status_open: irekita - version_status_locked: blokeatuta - version_status_closed: itxita - - field_active: Gaituta - - text_select_mail_notifications: Jakinarazpenak zein ekintzetarako bidaliko diren hautatu. - text_regexp_info: adib. ^[A-Z0-9]+$ - text_min_max_length_info: 0k mugarik gabe esan nahi du - text_project_destroy_confirmation: Ziur zaude proiektu hau eta erlazionatutako datu guztiak ezabatu nahi dituzula? - text_subprojects_destroy_warning: "%{value} azpiproiektuak ere ezabatuko dira." - text_workflow_edit: Hautatu rola eta aztarnaria workflow-a editatzeko - text_are_you_sure: Ziur zaude? - text_journal_changed: "%{label} %{old}-(e)tik %{new}-(e)ra aldatuta" - text_journal_set_to: "%{label}-k %{value} balioa hartu du" - text_journal_deleted: "%{label} ezabatuta (%{old})" - text_journal_added: "%{label} %{value} gehituta" - text_tip_issue_begin_day: gaur hasten diren zereginak - text_tip_issue_end_day: gaur bukatzen diren zereginak - text_tip_issue_begin_end_day: gaur hasi eta bukatzen diren zereginak - text_caracters_maximum: "%{count} karaktere gehienez." - text_caracters_minimum: "Gutxienez %{count} karaktereetako luzerakoa izan behar du." - text_length_between: "Luzera %{min} eta %{max} karaktereen artekoa." - text_tracker_no_workflow: Ez da workflow-rik definitu aztarnari honentzako - text_unallowed_characters: Debekatutako karaktereak - text_comma_separated: Balio anitz izan daitezke (komaz banatuta). - text_line_separated: Balio anitz izan daitezke (balio bakoitza lerro batean). - text_issues_ref_in_commit_messages: Commit-en mezuetan zereginak erlazionatu eta konpontzen - text_issue_added: "%{id} zeregina %{author}-(e)k jakinarazi du." - text_issue_updated: "%{id} zeregina %{author}-(e)k eguneratu du." - text_wiki_destroy_confirmation: Ziur zaude wiki hau eta bere eduki guztiak ezabatu nahi dituzula? - text_issue_category_destroy_question: "Zeregin batzuk (%{count}) kategoria honetara esleituta daude. Zer egin nahi duzu?" - text_issue_category_destroy_assignments: Kategoria esleipenak kendu - text_issue_category_reassign_to: Zereginak kategoria honetara esleitu - text_user_mail_option: "Hautatu gabeko proiektuetan, behatzen edo parte hartzen duzun gauzei buruzko jakinarazpenak jasoko dituzu (adib. zu egile zaren edo esleituta dituzun zereginak)." - text_no_configuration_data: "Rolak, aztarnariak, zeregin egoerak eta workflow-ak ez dira oraindik konfiguratu.\nOso gomendagarria de lehenetsitako kkonfigurazioa kargatzea. Kargatu eta gero aldatu ahalko duzu." - text_load_default_configuration: Lehenetsitako konfigurazioa kargatu - text_status_changed_by_changeset: "%{value} aldaketan aplikatuta." - text_issues_destroy_confirmation: 'Ziur zaude hautatutako zeregina(k) ezabatu nahi dituzula?' - text_select_project_modules: 'Hautatu proiektu honetan gaitu behar diren moduluak:' - text_default_administrator_account_changed: Lehenetsitako kudeatzaile kontua aldatuta - text_file_repository_writable: Eranskinen direktorioan idatz daiteke - text_plugin_assets_writable: Pluginen baliabideen direktorioan idatz daiteke - text_minimagick_available: MiniMagick eskuragarri (aukerazkoa) - text_destroy_time_entries_question: "%{hours} orduei buruz berri eman zen zuk ezabatzera zoazen zereginean. Zer egin nahi duzu?" - text_destroy_time_entries: Ezabatu berri emandako orduak - text_assign_time_entries_to_project: Berri emandako orduak proiektura esleitu - text_reassign_time_entries: 'Berri emandako orduak zeregin honetara esleitu:' - text_user_wrote: "%{value}-(e)k idatzi zuen:" - text_user_wrote_in: "%{value}-(e)k idatzi zuen (%{link}):" - text_enumeration_destroy_question: "%{count} objetu balio honetara esleituta daude." - text_enumeration_category_reassign_to: 'Beste balio honetara esleitu:' - text_email_delivery_not_configured: "Eposta bidalketa ez dago konfiguratuta eta jakinarazpenak ezgaituta daude.\nKonfiguratu zure SMTP zerbitzaria config/configuration.yml-n eta aplikazioa berrabiarazi hauek gaitzeko." - text_repository_usernames_mapping: "Hautatu edo eguneratu Redmineko erabiltzailea biltegiko egunkarietan topatzen diren erabiltzaile izenekin erlazionatzeko.\nRedmine-n eta biltegian erabiltzaile izen edo eposta berdina duten erabiltzaileak automatikoki erlazionatzen dira." - text_diff_truncated: '... Diff hau moztua izan da erakus daitekeen tamaina maximoa gainditu duelako.' - text_custom_field_possible_values_info: 'Lerro bat balio bakoitzeko' - text_wiki_page_destroy_question: "Orri honek %{descendants} orri seme eta ondorengo ditu. Zer egin nahi duzu?" - text_wiki_page_nullify_children: "Orri semeak erro orri moduan mantendu" - text_wiki_page_destroy_children: "Orri semeak eta beraien ondorengo guztiak ezabatu" - text_wiki_page_reassign_children: "Orri semeak orri guraso honetara esleitu" - text_own_membership_delete_confirmation: "Zure baimen batzuk (edo guztiak) kentzera zoaz eta baliteke horren ondoren proiektu hau ezin editatzea.\n Ziur zaude jarraitu nahi duzula?" - - default_role_manager: Kudeatzailea - default_role_developer: Garatzailea - default_role_reporter: Berriemailea - default_tracker_bug: Errorea - default_tracker_feature: Eginbidea - default_tracker_support: Laguntza - default_issue_status_new: Berria - default_issue_status_in_progress: Lanean - default_issue_status_resolved: Ebatzita - default_issue_status_feedback: Berrelikadura - default_issue_status_closed: Itxita - default_issue_status_rejected: Baztertua - default_doc_category_user: Erabiltzaile dokumentazioa - default_doc_category_tech: Dokumentazio teknikoa - default_priority_low: Baxua - default_priority_normal: Normala - default_priority_high: Altua - default_priority_urgent: Larria - default_priority_immediate: Berehalakoa - default_activity_design: Diseinua - default_activity_development: Garapena - - enumeration_issue_priorities: Zeregin lehentasunak - enumeration_doc_categories: Dokumentu kategoriak - enumeration_activities: Jarduerak (denbora kontrola)) - enumeration_system_activity: Sistemako Jarduera - label_board_sticky: Itsaskorra - label_board_locked: Blokeatuta - permission_export_wiki_pages: Wiki orriak esportatu - setting_cache_formatted_text: Formatudun testua katxeatu - permission_manage_project_activities: Proiektuaren jarduerak kudeatu - error_unable_delete_issue_status: Ezine da zereginaren egoera ezabatu (%{value}) - label_profile: Profila - permission_manage_subtasks: Azpiatazak kudeatu - field_parent_issue: Zeregin gurasoa - label_subtask_plural: Azpiatazak - label_project_copy_notifications: Proiektua kopiatzen den bitartean eposta jakinarazpenak bidali - error_can_not_delete_custom_field: Ezin da eremu pertsonalizatua ezabatu - error_unable_to_connect: Ezin da konektatu (%{value}) - error_can_not_remove_role: Rol hau erabiltzen hari da eta ezin da ezabatu. - error_can_not_delete_tracker: Aztarnari honek zereginak ditu eta ezin da ezabatu. - field_principal: Ekintzaile - notice_failed_to_save_members: "Kidea(k) gordetzean errorea: %{errors}." - text_zoom_out: Zooma txikiagotu - text_zoom_in: Zooma handiagotu - notice_unable_delete_time_entry: "Ezin da hautatutako denbora erregistroa ezabatu." - label_overall_spent_time: Igarotako denbora guztira - field_time_entries: "Denbora erregistratu" - project_module_gantt: Gantt - project_module_calendar: Egutegia - button_edit_associated_wikipage: "Esleitutako wiki orria editatu: %{page_title}" - field_text: Testu eremua - setting_default_notification_option: "Lehenetsitako ohartarazpen aukera" - label_user_mail_option_only_my_events: "Behatzen ditudan edo partaide naizen gauzetarako bakarrik" - label_user_mail_option_none: "Gertakaririk ez" - field_member_of_group: "Esleituta duenaren taldea" - field_assigned_to_role: "Esleituta duenaren rola" - notice_not_authorized_archived_project: "Atzitu nahi duzun proiektua artxibatua izan da." - label_principal_search: "Bilatu erabiltzaile edo taldea:" - label_user_search: "Erabiltzailea bilatu:" - field_visible: Ikusgai - setting_emails_header: "Eposten goiburua" - setting_commit_logtime_activity_id: "Erregistratutako denboraren jarduera" - text_time_logged_by_changeset: "%{value} aldaketan egindakoa." - setting_commit_logtime_enabled: "Erregistrutako denbora gaitu" - notice_gantt_chart_truncated: Grafikoa moztu da bistara daitekeen elementuen kopuru maximoa gainditu delako (%{max}) - setting_gantt_items_limit: "Gantt grafikoan bistara daitekeen elementu kopuru maximoa" - field_warn_on_leaving_unsaved: Gorde gabeko testua duen orri batetik ateratzen naizenean ohartarazi - text_warn_on_leaving_unsaved: Uneko orritik joaten bazara gorde gabeko testua galduko da. - label_my_queries: Nire galdera pertsonalizatuak - text_journal_changed_no_detail: "%{label} eguneratuta" - label_news_comment_added: Berri batera iruzkina gehituta - button_expand_all: Guztia zabaldu - button_collapse_all: Guztia tolestu - label_additional_workflow_transitions_for_assignee: Erabiltzaileak esleitua duenean baimendutako transtsizio gehigarriak - label_additional_workflow_transitions_for_author: Erabiltzailea egilea denean baimendutako transtsizio gehigarriak - label_bulk_edit_selected_time_entries: Hautatutako denbora egunkariak batera editatu - text_time_entries_destroy_confirmation: Ziur zaude hautatutako denbora egunkariak ezabatu nahi dituzula? - label_role_anonymous: Ezezaguna - label_role_non_member: Ez kidea - label_issue_note_added: Oharra gehituta - label_issue_status_updated: Egoera eguneratuta - label_issue_priority_updated: Lehentasuna eguneratuta - label_issues_visibility_own: Erabiltzaileak sortu edo esleituta dituen zereginak - field_issues_visibility: Zeregin ikusgarritasuna - label_issues_visibility_all: Zeregin guztiak - permission_set_own_issues_private: Nork bere zereginak publiko edo pribatu jarri - field_is_private: Pribatu - permission_set_issues_private: Zereginak publiko edo pribatu jarri - label_issues_visibility_public: Pribatu ez diren zeregin guztiak - text_issues_destroy_descendants_confirmation: Honek %{count} azpiataza ezabatuko ditu baita ere. - field_commit_logs_encoding: Commit-en egunkarien kodetzea - field_scm_path_encoding: Bidearen kodeketa - text_scm_path_encoding_note: "Lehentsita: UTF-8" - field_path_to_repository: Biltegirako bidea - field_root_directory: Erro direktorioa - field_cvs_module: Modulua - field_cvsroot: CVSROOT - text_mercurial_repository_note: Biltegi locala (adib. /hgrepo, c:\hgrepo) - text_scm_command: Komandoa - text_scm_command_version: Bertsioa - label_git_report_last_commit: Report last commit for files and directories - notice_issue_successful_create: Issue %{id} created. - label_between: between - setting_issue_group_assignment: Allow issue assignment to groups - label_diff: diff - text_git_repository_note: Repository is bare and local (e.g. /gitrepo, c:\gitrepo) - description_query_sort_criteria_direction: Sort direction - description_project_scope: Search scope - description_filter: Filter - description_user_mail_notification: Mail notification settings - description_message_content: Message content - description_available_columns: Available Columns - description_issue_category_reassign: Choose issue category - description_search: Searchfield - description_notes: Notes - description_choose_project: Projects - description_query_sort_criteria_attribute: Sort attribute - description_wiki_subpages_reassign: Choose new parent page - description_selected_columns: Selected Columns - label_parent_revision: Parent - label_child_revision: Child - error_scm_annotate_big_text_file: The entry cannot be annotated, as it exceeds the maximum text file size. - setting_default_issue_start_date_to_creation_date: Use current date as start date for new issues - button_edit_section: Edit this section - setting_repositories_encodings: Attachments and repositories encodings - description_all_columns: All Columns - button_export: Export - label_export_options: "%{export_format} export options" - error_attachment_too_big: This file cannot be uploaded because it exceeds the maximum allowed file size (%{max_size}) - notice_failed_to_save_time_entries: "Failed to save %{count} time entrie(s) on %{total} selected: %{ids}." - label_x_issues: - zero: 0 zeregina - one: 1 zeregina - other: "%{count} zereginak" - label_repository_new: New repository - field_repository_is_default: Main repository - label_copy_attachments: Copy attachments - label_item_position: "%{position}/%{count}" - label_completed_versions: Completed versions - text_project_identifier_info: Only lower case letters (a-z), numbers, dashes and underscores are allowed.
    Once saved, the identifier cannot be changed. - field_multiple: Multiple values - setting_commit_cross_project_ref: Allow issues of all the other projects to be referenced and fixed - text_issue_conflict_resolution_add_notes: Add my notes and discard my other changes - text_issue_conflict_resolution_overwrite: Apply my changes anyway (previous notes will be kept but some changes may be overwritten) - notice_issue_update_conflict: The issue has been updated by an other user while you were editing it. - text_issue_conflict_resolution_cancel: Discard all my changes and redisplay %{link} - permission_manage_related_issues: Manage related issues - field_auth_source_ldap_filter: LDAP filter - label_search_for_watchers: Search for watchers to add - notice_account_deleted: Your account has been permanently deleted. - setting_unsubscribe: Allow users to delete their own account - button_delete_my_account: Delete my account - text_account_destroy_confirmation: |- - Are you sure you want to proceed? - Your account will be permanently deleted, with no way to reactivate it. - error_session_expired: Your session has expired. Please login again. - text_session_expiration_settings: "Warning: changing these settings may expire the current sessions including yours." - setting_session_lifetime: Session maximum lifetime - setting_session_timeout: Session inactivity timeout - label_session_expiration: Session expiration - permission_close_project: Close / reopen the project - button_close: Close - button_reopen: Reopen - project_status_active: active - project_status_closed: closed - project_status_archived: archived - text_project_closed: This project is closed and read-only. - notice_user_successful_create: User %{id} created. - field_core_fields: Standard fields - field_timeout: Timeout (in seconds) - setting_thumbnails_enabled: Display attachment thumbnails - setting_thumbnails_size: Thumbnails size (in pixels) - label_status_transitions: Status transitions - label_fields_permissions: Fields permissions - label_readonly: Read-only - label_required: Required - text_repository_identifier_info: Only lower case letters (a-z), numbers, dashes and underscores are allowed.
    Once saved, the identifier cannot be changed. - field_board_parent: Parent forum - label_attribute_of_project: Project's %{name} - label_attribute_of_author: Author's %{name} - label_attribute_of_assigned_to: Assignee's %{name} - label_attribute_of_fixed_version: Target version's %{name} - label_copy_subtasks: Copy subtasks - label_copied_to: copied to - label_copied_from: copied from - label_any_issues_in_project: any issues in project - label_any_issues_not_in_project: any issues not in project - field_private_notes: Private notes - permission_view_private_notes: View private notes - permission_set_notes_private: Set notes as private - label_no_issues_in_project: no issues in project - label_any: guztiak - label_last_n_weeks: last %{count} weeks - setting_cross_project_subtasks: Allow cross-project subtasks - label_cross_project_descendants: Azpiproiektuekin - label_cross_project_tree: Proiektu zuhaitzarekin - label_cross_project_hierarchy: Proiektu Hierarkiarekin - label_cross_project_system: Proiektu guztiekin - button_hide: Hide - setting_non_working_week_days: Non-working days - label_in_the_next_days: in the next - label_in_the_past_days: in the past - label_attribute_of_user: User's %{name} - text_turning_multiple_off: If you disable multiple values, multiple values will be - removed in order to preserve only one value per item. - label_attribute_of_issue: Issue's %{name} - permission_add_documents: Add documents - permission_edit_documents: Edit documents - permission_delete_documents: Delete documents - label_gantt_progress_line: Progress line - setting_jsonp_enabled: Enable JSONP support - field_inherit_members: Inherit members - field_closed_on: Closed - field_generate_password: Generate password - setting_default_projects_tracker_ids: Default trackers for new projects - label_total_time: Guztira - text_scm_config: You can configure your SCM commands in config/configuration.yml. Please restart the application after editing it. - text_scm_command_not_available: SCM command is not available. Please check settings on the administration panel. - notice_account_not_activated_yet: You haven't activated your account yet. If you want - to receive a new activation email, please click this link. - notice_account_locked: Your account is locked. - label_hidden: Hidden - label_visibility_private: to me only - label_visibility_roles: to these roles only - label_visibility_public: to any users - field_must_change_passwd: Must change password at next logon - notice_new_password_must_be_different: The new password must be different from the - current password - setting_mail_handler_excluded_filenames: Exclude attachments by name - text_convert_available: ImageMagick convert available (optional) - label_link: Link - label_only: only - label_drop_down_list: drop-down list - label_checkboxes: checkboxes - label_link_values_to: Link values to URL - setting_force_default_language_for_anonymous: Force default language for anonymous - users - setting_force_default_language_for_loggedin: Force default language for logged-in - users - label_custom_field_select_type: Select the type of object to which the custom field - is to be attached - label_issue_assigned_to_updated: Assignee updated - label_check_for_updates: Check for updates - label_latest_compatible_version: Latest compatible version - label_unknown_plugin: Unknown plugin - label_radio_buttons: radio buttons - label_group_anonymous: Anonymous users - label_group_non_member: Non member users - label_add_projects: Add projects - field_default_status: Default status - text_subversion_repository_note: 'Examples: file:///, http://, https://, svn://, svn+[tunnelscheme]://' - field_users_visibility: Users visibility - label_users_visibility_all: All active users - label_users_visibility_members_of_visible_projects: Members of visible projects - label_edit_attachments: Edit attached files - setting_link_copied_issue: Link issues on copy - label_link_copied_issue: Link copied issue - label_ask: Ask - label_search_attachments_yes: Search attachment filenames and descriptions - label_search_attachments_no: Do not search attachments - label_search_attachments_only: Search attachments only - label_search_open_issues_only: Open issues only - field_address: Eposta - setting_max_additional_emails: Maximum number of additional email addresses - label_email_address_plural: Emails - label_email_address_add: Add email address - label_enable_notifications: Enable notifications - label_disable_notifications: Disable notifications - setting_search_results_per_page: Search results per page - label_blank_value: blank - permission_copy_issues: Copy issues - error_password_expired: Your password has expired or the administrator requires you - to change it. - field_time_entries_visibility: Time logs visibility - setting_password_max_age: Require password change after - label_parent_task_attributes: Parent tasks attributes - label_parent_task_attributes_derived: Calculated from subtasks - label_parent_task_attributes_independent: Independent of subtasks - label_time_entries_visibility_all: All time entries - label_time_entries_visibility_own: Time entries created by the user - label_member_management: Member management - label_member_management_all_roles: All roles - label_member_management_selected_roles_only: Only these roles - label_password_required: Confirm your password to continue - label_total_spent_time: Igarotako denbora guztira - notice_import_finished: "%{count} items have been imported" - notice_import_finished_with_errors: "%{count} out of %{total} items could not be imported" - error_invalid_file_encoding: The file is not a valid %{encoding} encoded file - error_invalid_csv_file_or_settings: The file is not a CSV file or does not match the - settings below - error_can_not_read_import_file: An error occurred while reading the file to import - permission_import_issues: Import issues - label_import_issues: Import issues - label_select_file_to_import: Select the file to import - label_fields_separator: Field separator - label_fields_wrapper: Field wrapper - label_encoding: Encoding - label_comma_char: Comma - label_semi_colon_char: Semicolon - label_quote_char: Quote - label_double_quote_char: Double quote - label_fields_mapping: Fields mapping - label_file_content_preview: File content preview - label_create_missing_values: Create missing values - button_import: Import - field_total_estimated_hours: Total estimated time - label_api: API - label_total_plural: Totals - label_assigned_issues: Assigned issues - label_field_format_enumeration: Key/value list - label_f_hour_short: '%{value} h' - field_default_version: Default version - error_attachment_extension_not_allowed: Attachment extension %{extension} is not allowed - setting_attachment_extensions_allowed: Allowed extensions - setting_attachment_extensions_denied: Disallowed extensions - label_any_open_issues: any open issues - label_no_open_issues: no open issues - label_default_values_for_new_users: Default values for new users - error_ldap_bind_credentials: Invalid LDAP Account/Password - setting_sys_api_key: API giltza - setting_lost_password: Pasahitza galduta - mail_subject_security_notification: Security notification - mail_body_security_notification_change: ! '%{field} was changed.' - mail_body_security_notification_change_to: ! '%{field} was changed to %{value}.' - mail_body_security_notification_add: ! '%{field} %{value} was added.' - mail_body_security_notification_remove: ! '%{field} %{value} was removed.' - mail_body_security_notification_notify_enabled: Email address %{value} now receives - notifications. - mail_body_security_notification_notify_disabled: Email address %{value} no longer - receives notifications. - mail_body_settings_updated: ! 'The following settings were changed:' - field_remote_ip: IP address - label_wiki_page_new: New wiki page - label_relations: Relations - button_filter: Filter - mail_body_password_updated: Your password has been changed. - label_no_preview: No preview available - error_no_tracker_allowed_for_new_issue_in_project: The project doesn't have any trackers - for which you can create an issue - label_tracker_all: All trackers - label_new_project_issue_tab_enabled: Display the "New issue" tab - setting_new_item_menu_tab: Project menu tab for creating new objects - label_new_object_tab_enabled: Display the "+" drop-down - error_no_projects_with_tracker_allowed_for_new_issue: There are no projects with trackers - for which you can create an issue - field_textarea_font: Font used for text areas - label_font_default: Default font - label_font_monospace: Monospaced font - label_font_proportional: Proportional font - setting_timespan_format: Time span format - label_table_of_contents: Table of contents - setting_commit_logs_formatting: Apply text formatting to commit messages - setting_mail_handler_enable_regex: Enable regular expressions - error_move_of_child_not_possible: 'Subtask %{child} could not be moved to the new - project: %{errors}' - error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted: Spent time cannot - be reassigned to an issue that is about to be deleted - setting_timelog_required_fields: Required fields for time logs - label_attribute_of_object: '%{object_name}''s %{name}' - label_user_mail_option_only_assigned: Only for things I watch or I am assigned to - label_user_mail_option_only_owner: Only for things I watch or I am the owner of - warning_fields_cleared_on_bulk_edit: Changes will result in the automatic deletion - of values from one or more fields on the selected objects - field_updated_by: Updated by - field_last_updated_by: Last updated by - field_full_width_layout: Full width layout - label_last_notes: Last notes - field_digest: Checksum - field_default_assigned_to: Default assignee - setting_show_custom_fields_on_registration: Show custom fields on registration - permission_view_news: View news - label_no_preview_alternative_html: No preview available. %{link} the file instead. - label_no_preview_download: Download - setting_close_duplicate_issues: Close duplicate issues automatically - error_exceeds_maximum_hours_per_day: Cannot log more than %{max_hours} hours on the - same day (%{logged_hours} hours have already been logged) - setting_time_entry_list_defaults: Timelog list defaults - setting_timelog_accept_0_hours: Accept time logs with 0 hours - setting_timelog_max_hours_per_day: Maximum hours that can be logged per day and user - label_x_revisions: "%{count} revisions" - error_can_not_delete_auth_source: This authentication mode is in use and cannot be - deleted. - button_actions: Actions - mail_body_lost_password_validity: Please be aware that you may change the password - only once using this link. - text_login_required_html: When not requiring authentication, public projects and their - contents are openly available on the network. You can edit - the applicable permissions. - label_login_required_yes: 'Yes' - label_login_required_no: No, allow anonymous access to public projects - text_project_is_public_non_member: Public projects and their contents are available - to all logged-in users. - text_project_is_public_anonymous: Public projects and their contents are openly available - on the network. - label_version_and_files: Versions (%{count}) and Files - label_ldap: LDAP - label_ldaps_verify_none: LDAPS (without certificate check) - label_ldaps_verify_peer: LDAPS - label_ldaps_warning: It is recommended to use an encrypted LDAPS connection with certificate - check to prevent any manipulation during the authentication process. - label_nothing_to_preview: Nothing to preview - error_token_expired: This password recovery link has expired, please try again. - error_spent_on_future_date: Cannot log time on a future date - setting_timelog_accept_future_dates: Accept time logs on future dates - label_delete_link_to_subtask: Erlazioa ezabatu - error_not_allowed_to_log_time_for_other_users: You are not allowed to log time - for other users - permission_log_time_for_other_users: Log spent time for other users - label_tomorrow: tomorrow - label_next_week: next week - label_next_month: next month - text_role_no_workflow: No workflow defined for this role - text_status_no_workflow: No tracker uses this status in the workflows - setting_mail_handler_preferred_body_part: Preferred part of multipart (HTML) emails - setting_show_status_changes_in_mail_subject: Show status changes in issue mail notifications - subject - label_inherited_from_parent_project: Inherited from parent project - label_inherited_from_group: Inherited from group %{name} - label_trackers_description: Trackers description - label_open_trackers_description: View all trackers description - label_preferred_body_part_text: Text - label_preferred_body_part_html: HTML (experimental) - field_parent_issue_subject: Parent task subject - permission_edit_own_issues: Edit own issues - text_select_apply_tracker: Select tracker - label_updated_issues: Updated issues - text_avatar_server_config_html: The current avatar server is %{url}. - You can configure it in config/configuration.yml. - setting_gantt_months_limit: Maximum number of months displayed on the gantt chart - permission_import_time_entries: Import time entries - label_import_notifications: Send email notifications during the import - text_gs_available: ImageMagick PDF support available (optional) - field_recently_used_projects: Number of recently used projects in jump box - label_optgroup_bookmarks: Bookmarks - label_optgroup_others: Other projects - label_optgroup_recents: Recently used - button_project_bookmark: Add bookmark - button_project_bookmark_delete: Remove bookmark - field_history_default_tab: Issue's history default tab - label_issue_history_properties: Property changes - label_issue_history_notes: Notes - label_last_tab_visited: Last visited tab - field_unique_id: Unique ID - text_no_subject: no subject - setting_password_required_char_classes: Required character classes for passwords - label_password_char_class_uppercase: uppercase letters - label_password_char_class_lowercase: lowercase letters - label_password_char_class_digits: digits - label_password_char_class_special_chars: special characters - text_characters_must_contain: Must contain %{character_classes}. - label_starts_with: starts with - label_ends_with: ends with - label_issue_fixed_version_updated: Target version updated - setting_project_list_defaults: Projects list defaults - label_display_type: Display results as - label_display_type_list: List - label_display_type_board: Board - label_my_bookmarks: My bookmarks - label_import_time_entries: Import time entries diff --git a/config/locales/fa.yml b/config/locales/fa.yml deleted file mode 100644 index ca94370..0000000 --- a/config/locales/fa.yml +++ /dev/null @@ -1,1289 +0,0 @@ -# In the name of God -# Copyright (c) 2018 Bonyan Rayan Samane [https://bonyan.co] - -fa: - # Text direction: Left-to-Right (ltr) or Right-to-Left (rtl) - direction: rtl - date: - formats: - # Use the strftime parameters for formats. - # When no format has been given, it uses default. - # You can provide other formats here if you like! - default: "%Y/%m/%d" - short: "%d %b" - long: "%d %B %Y" - - day_names: [یک‌شنبه, دوشنبه, سه‌شنبه, چهارشنبه, پنج‌شنبه, جمعه, شنبه] - abbr_day_names: [یک, دو, سه, چهار, پنج, جمعه, شنبه] - - # Don't forget the nil at the beginning; there's no such thing as a 0th month - month_names: [~, ژانویه, فوریه, مارس, آوریل, مه, ژوئن, ژوئیه, اوت, سپتامبر, اکتبر, نوامبر, دسامبر] - abbr_month_names: [~, ژان, فور, مار, آور, مه, ژوئن, ژوئیه, اوت, سپت, اکت, نوا, دسا] - - # Used in date_select and datime_select. - order: - - :year - - :month - - :day - - time: - formats: - default: "%I:%M %p %Y/%m/%d" - time: "ساعت %I:%M %p" - short: "%d %b %H:%M" - long: "%d %B %Y ساعت %H:%M" - am: "ق.ظ" - pm: "ب.ظ" - - datetime: - distance_in_words: - half_a_minute: "نیم دقیقه" - less_than_x_seconds: - one: "کم‌تر از ۱ ثانیه" - other: "کم‌تر از %{count} ثانیه" - x_seconds: - one: "۱ ثانیه" - other: "%{count} ثانیه" - less_than_x_minutes: - one: "کم‌تر از ۱ دقیقه" - other: "کم‌تر از %{count} دقیقه" - x_minutes: - one: "۱ دقیقه" - other: "%{count} دقیقه" - about_x_hours: - one: "حدود ۱ ساعت" - other: "حدود %{count} ساعت" - x_hours: - one: "۱ ساعت" - other: "%{count} ساعت" - x_days: - one: "۱ روز" - other: "%{count} روز" - about_x_months: - one: "حدود ۱ ماه" - other: "حدود %{count} ماه" - x_months: - one: "۱ ماه" - other: "%{count} ماه" - about_x_years: - one: "حدود ۱ سال" - other: "حدود %{count} سال" - over_x_years: - one: "بیش از ۱ سال" - other: "بیش از %{count} سال" - almost_x_years: - one: "حدود ۱ سال" - other: "حدود %{count} سال" - - number: - format: - separator: "٫" - delimiter: "" - precision: 3 - - human: - format: - delimiter: "" - precision: 3 - storage_units: - format: "%n %u" - units: - byte: - one: "بایت" - other: "بایت" - kb: "کیلوبایت" - mb: "مگابایت" - gb: "گیگابایت" - tb: "ترابایت" - -# Used in array.to_sentence. - support: - array: - sentence_connector: "و" - skip_last_comma: false - - activerecord: - errors: - template: - header: - one: "یک ایراد از ذخیره‌سازی این %{model} جلوگیری کرد" - other: "%{count} ایراد از ذخیره‌سازی این %{model} جلوگیری کرد" - messages: - inclusion: "در فهرست نیامده است" - exclusion: "اختصاص یافته است" - invalid: "نادرست است" - confirmation: "با تکرار آن برابر نیست" - accepted: "باید پذیرفته شود" - empty: "نمی‌تواند تهی باشد" - blank: "نمی‌تواند تهی باشد" - too_long: "خیلی بلند است (بیشترین اندازه %{count} نویسه است)" - too_short: "خیلی کوتاه است (کم‌ترین اندازه %{count} نویسه است)" - wrong_length: "اندازه نادرست است (باید %{count} نویسه باشد)" - taken: "پیش از این گرفته شده است" - not_a_number: "یک عدد صحیح نیست" - not_a_date: "تاریخ درستی نیست" - greater_than: "باید بزرگ‌تر از %{count} باشد" - greater_than_or_equal_to: "باید بزرگ‌تر از یا برابر با %{count} باشد" - equal_to: "باید برابر با %{count} باشد" - less_than: "باید کم‌تر از %{count} باشد" - less_than_or_equal_to: "باید کم‌تر از یا برابر با %{count} باشد" - odd: "باید فرد باشد" - even: "باید زوج باشد" - greater_than_start_date: "باید از تاریخ آغاز بزرگ‌تر باشد" - not_same_project: "متعلق به همان پروژه نیست" - circular_dependency: "این ارتباط یک وابستگی دوری خواهد ساخت" - cant_link_an_issue_with_a_descendant: "یک مسأله نمی‌تواند به یکی از زیر کارهایش پیوند بخورد" - earlier_than_minimum_start_date: "به خاطر مسائل مقدم، نمی‌تواند قبل از %{date} باشد" - not_a_regexp: "یک عبارت منظم معتبر نیست" - open_issue_with_closed_parent: "یک مسأله باز نمی‌تواند به یک مسأله پدر بسته ضمیمه شود" - must_contain_uppercase: "باید شامل حروف بزرگ باشد (A-Z)" - must_contain_lowercase: "باید شامل حروف کوچک باشد (a-z)" - must_contain_digits: "باید شامل عدد باشد (0-9)" - must_contain_special_chars: "باید شامل نویسه‌های خاص باشد (!, $, %, ...)" - - actionview_instancetag_blank_option: انتخاب کنید - - general_text_No: 'خیر' - general_text_Yes: 'آری' - general_text_no: 'خیر' - general_text_yes: 'آری' - general_lang_name: 'Persian (فارسی)' - general_csv_separator: ',' - general_csv_decimal_separator: '.' - general_csv_encoding: UTF-8 - general_pdf_fontname: DejaVuSans - general_pdf_monospaced_fontname: freemono - general_first_day_of_week: '6' - - notice_account_updated: حساب شما به‌روز شد. - notice_account_invalid_credentials: نام کاربری یا گذرواژه نادرست است - notice_account_password_updated: گذرواژه به‌روز شد - notice_account_wrong_password: گذرواژه نادرست است - notice_account_register_done: حساب با موفقیت ساخته شد. رایانامه‌ای حاوی دستورالعمل فعال‌سازی حساب شما به %{email} فرستاده شد. - notice_account_unknown_email: کاربر شناخته نشد. - notice_account_not_activated_yet: شما هنوز حساب خود را فعال نکرده‌اید. اگر می‌خواهید یک رایانامه فعال‌سازی دیگر دریافت کنید، لطفاً این جا کلید نمایید. - notice_account_locked: حساب شما قفل شده است. - notice_can_t_change_password: این حساب یک روش احراز هویت بیرونی را به کار گرفته است. گذرواژه را نمی‌توان تغییر داد. - notice_account_lost_email_sent: رایانامه‌ای حاوی دستورالعمل انتخاب یک گذرواژه جدید برای شما ارسال شد. - notice_account_activated: حساب شما فعال شده است. اکنون می‌توانید وارد شوید. - notice_successful_create: با موفقیت ساخته شد. - notice_successful_update: با موفقیت به‌روز شد. - notice_successful_delete: با موفقیت حذف شد. - notice_successful_connection: با موفقیت متصل شد. - notice_file_not_found: صفحه درخواستی شما در دست‌رس نیست یا حذف شده است. - notice_locking_conflict: داده‌ها را کاربر دیگری به‌روز کرده است. - notice_not_authorized: شما به این صفحه دست‌رسی ندارید. - notice_not_authorized_archived_project: پروژه درخواستی شما بایگانی شده است. - notice_email_sent: "یک رایانامه به %{value} فرستاده شد." - notice_email_error: "یک ایراد در ارسال رایانامه پیش آمد (%{value})." - notice_feeds_access_key_reseted: کلید دست‌رسی Atom شما بازنشانی شد. - notice_api_access_key_reseted: کلید دست‌رسی API شما بازنشانی شد. - notice_failed_to_save_issues: "ذخیره %{count} مسأله از %{total} مورد انتخاب‌شده شکست خورد: %{ids}." - notice_failed_to_save_time_entries: "ذخیره %{count} ورودی زمان روی %{total} مورد انتخاب‌شده شکست خورد: %{ids}." - notice_failed_to_save_members: "ذخیره‌سازی اعضا شکست خورد: %{errors}." - notice_no_issue_selected: "هیچ مسأله‌ای انتخاب نشده است. لطفاً مسأله‌هایی که می‌خواهید ویرایش کنید را علامت بزنید." - notice_account_pending: "حساب شما ساخته شد و اکنون منتظر تأیید راه‌بر است." - notice_default_data_loaded: تنظیمات پیش‌فرض با موفقیت بارگذاری شد. - notice_unable_delete_version: نسخه را نمی‌توان حذف کرد. - notice_unable_delete_time_entry: زمان گزارش شده را نمی‌توان حذف کرد. - notice_issue_done_ratios_updated: اندازه انجام شده مسأله به‌روز شد. - notice_gantt_chart_truncated: "نمودار بریده شد چون از بیشترین شماری که می‌توان نشان داد بزرگتر است (%{max})." - notice_issue_successful_create: مسأله ‎%{id} ساخته شد. - notice_issue_update_conflict: "در حالی که شما مشغول ویرایش مسأله بودید کاربر دیگری آن را به‌روز کرده است." - notice_account_deleted: "حساب شما به طور دائمی حذف شده است." - notice_user_successful_create: "کاربر %{id} ساخته شد." - notice_new_password_must_be_different: گذرواژه جدید باید متفاوت از گذرواژه فعلی باشد - notice_import_finished: "%{count} مورد وارد شده" - notice_import_finished_with_errors: "نمی‌توان %{count} مورد از %{total} را وارد کرد" - - error_can_t_load_default_data: "تنظیمات پیش‌فرض نمی‌تواند بار شود: %{value}" - error_scm_not_found: "بخش یا بازبینی در مخزن پیدا نشد." - error_scm_command_failed: "ایرادی در دست‌رسی به مخزن پیش آمد: %{value}" - error_scm_annotate: "یا مدخل وجود ندارد یا این که نمی‌تواند حاشیه‌نگاری شود." - error_scm_annotate_big_text_file: "این مدخل نمی‌تواند حاشیه‌نگاری شود، زیرا از بیشینه اندازه پرونده‌های متنی تجاوز می‌کند." - error_issue_not_found_in_project: 'مسأله پیدا نشد یا به این پروژه متعلق نیست.' - error_no_tracker_in_project: 'هیچ نوع مسأله‌ای به این پروژه مرتبط نشده است. تنظیمات پروژه را بررسی کنید.' - error_no_default_issue_status: 'هیچ وضعیت مسأله پیش‌فرض‌ای مشخص نشده است. تنظیمات را بررسی کنید (به «تنظیمات -> وضعیت‌های مسأله» بروید).' - error_can_not_delete_custom_field: بخش سفارشی را نمی‌توان حذف کرد. - error_can_not_delete_tracker: "این نوع مسأله دارای مسأله است و نمی‌توان آن را حذف کرد." - error_can_not_remove_role: "از این نقش استفاده شده است و نمی‌توان آن را حذف کرد." - error_can_not_reopen_issue_on_closed_version: 'یک مسأله که به یک نسخه بسته‌شده متعلق است را نمی‌توان باز کرد.' - error_can_not_archive_project: این پروژه را نمی‌توان بایگانی کرد. - error_issue_done_ratios_not_updated: "اندازه انجام شده مسأله به‌روز نشد." - error_workflow_copy_source: 'یک نوع مسأله یا نقش مبدأ را انتخاب کنید.' - error_workflow_copy_target: 'نوع مسأله(ها) یا نقش‌(های) مقصد را انتخاب کنید.' - error_unable_delete_issue_status: 'وضعیت مسأله را نمی‌توان حذف کرد. (%{value})' - error_unable_to_connect: "نمی‌توان متصل شد (%{value})" - error_attachment_too_big: "این پرونده نمی‌تواند بالاگذاری شود زیرا از بیشینه اندازه مجاز پرونده‌ها (%{max_size}) تجاوز می‌کند" - error_session_expired: "نشست شما منقضی شده است. لطفاً دوباره وارد شوید." - warning_attachments_not_saved: "%{count} پرونده نتوانست ذخیره شود." - error_password_expired: "گذرواژه‌ی شما منقضی شده است یا راه‌بر درخواست تغییر آن را داده است." - error_invalid_file_encoding: "این پرونده یک پرونده با کدگذاری %{encoding} نیست" - error_invalid_csv_file_or_settings: "این پرونده یک پرونده CSV نیست یا با تنظیمات زیر همخوان نیست." - error_can_not_read_import_file: "در هنگام خواندن پرونده برای ورود، خطایی رخ داد" - error_attachment_extension_not_allowed: "پسوند %{extension} برای پیوست یک پسوند مجاز نیست" - error_ldap_bind_credentials: "حساب/گذرواژه نامعتبر LDAP" - error_no_tracker_allowed_for_new_issue_in_project: "پروژه هیچ نوع مسأله‌ای ندارد که بتوانید مسأله‌ای بسازید" - error_no_projects_with_tracker_allowed_for_new_issue: "هیچ پروژه‌ای با نوع مسأله‌ای که شما بتوانید مسأله‌ی جدید بسازید نیست." - error_move_of_child_not_possible: "زیرمسأله %{child} نمی‌تواند به پروژه جدید منتقل شود: %{errors}" - error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted: "زمان صرف‌شده را نمی توان به یک مسأله که در حال حذف است اختصاص داد" - warning_fields_cleared_on_bulk_edit: "تغییرات منجر به حذف خودکار مقادیر از یک یا چند فیلد در اشیاء انتخاب شده خواهد شد" - - mail_subject_lost_password: "گذرواژه حساب %{value} شما" - mail_body_lost_password: 'برای تغییر گذرواژه خود، بر روی پیوند زیر کلیک کنید:' - mail_subject_register: "فعال‌سازی حساب %{value} شما" - mail_body_register: 'برای فعال‌سازی حساب خود، بر روی پیوند زیر کلیک کنید:' - mail_body_account_information_external: "شما می‌توانید حساب %{value} خود را برای ورود به کار برید." - mail_body_account_information: اطلاعات حساب شما - mail_subject_account_activation_request: "درخواست فعال‌سازی حساب %{value}" - mail_body_account_activation_request: "یک کاربر جدید (%{value}) ثبت نام کرده است. این حساب منتظر تأیید شماست:" - mail_subject_reminder: "زمان رسیدگی به %{count} مسأله در %{days} روز آینده سر می‌رسد" - mail_body_reminder: "زمان رسیدگی به %{count} مسأله که به شما واگذار شده است، در %{days} روز آینده سر می‌رسد:" - mail_subject_wiki_content_added: "صفحه دانش‌نامه «%{id}» افزوده شد" - mail_body_wiki_content_added: "صفحه دانش‌نامه «%{id}» توسط %{author} افزوده شد." - mail_subject_wiki_content_updated: "صفحه دانش‌نامه «%{id}» به‌روز شد" - mail_body_wiki_content_updated: "صفحه دانش‌نامه «%{id}» توسط %{author} به‌روز شد." - mail_subject_security_notification: "آگاه‌سازی امنیتی" - mail_body_security_notification_change: "%{field} تغییر کرد." - mail_body_security_notification_change_to: "%{field} به %{value} تغییر کرد." - mail_body_security_notification_add: "%{field} %{value} افزوده شد." - mail_body_security_notification_remove: "%{field} %{value} حذف شد." - mail_body_security_notification_notify_enabled: "از حالا نشانی رایانامه %{value} آگاه‌سازی‌ها را دریافت خواهد کرد." - mail_body_security_notification_notify_disabled: "نشانی رایانامه %{value} دیگر آگاه‌سازی دریافت نخواهد کرد." - mail_body_settings_updated: "تنظیمات زیر تغییر کردند:" - mail_body_password_updated: "گذرواژه شما تغییر کرد." - - field_name: نام - field_description: توضیح - field_summary: خلاصه - field_is_required: الزامی - field_firstname: نام کوچک - field_lastname: نام خانوادگی - field_mail: رایانامه - field_address: نشانی رایانامه - field_filename: پرونده - field_filesize: اندازه - field_downloads: دریافت‌ها - field_author: نویسنده - field_created_on: ساخته شده در - field_updated_on: به‌روزشده در - field_closed_on: بسته‌شده در - field_field_format: قالب - field_is_for_all: برای همه پروژه‌ها - field_possible_values: مقادیر ممکن - field_regexp: عبارت منظم - field_min_length: کم‌ترین اندازه - field_max_length: بیش‌ترین اندازه - field_value: مقدار - field_category: دسته - field_title: عنوان - field_project: پروژه - field_issue: مسأله - field_status: وضعیت - field_notes: یادداشت‌ها - field_is_closed: مسأله بسته شده - field_is_default: مقدار پیش‌فرض - field_tracker: نوع مسأله - field_subject: موضوع - field_due_date: تاریخ سررسید - field_assigned_to: مسئول - field_priority: اولویت - field_fixed_version: نسخه هدف - field_user: کاربر - field_principal: دستور دهنده - field_role: نقش - field_homepage: صفحه خانه - field_is_public: عمومی - field_parent: پروژه پدر - field_is_in_roadmap: این مسأله‌ها در نقشه راه نشان داده شوند - field_login: نام کاربری - field_mail_notification: آگاه‌سازی‌های رایانامه‌ای - field_admin: راه‌بر - field_last_login_on: آخرین ورود - field_language: زبان - field_effective_date: تاریخ - field_password: گذرواژه - field_new_password: گذرواژه جدید - field_password_confirmation: تکرار گذرواژه - field_version: نسخه‌ - field_type: نوع - field_host: میزبان - field_port: درگاه - field_account: حساب - field_base_dn: DN پایه - field_attr_login: خصوصیت ورود - field_attr_firstname: خصوصیت نام کوچک - field_attr_lastname: خصوصیت نام خانوادگی - field_attr_mail: خصوصیت رایانامه - field_onthefly: ساخت کاربر بی‌درنگ - field_start_date: تاریخ آغاز - field_done_ratio: ٪ انجام شده - field_auth_source: روش احراز هویت - field_hide_mail: رایانامه من پنهان شود - field_comments: توضیح - field_url: نشانی - field_start_page: صفحه آغاز - field_subproject: زیرپروژه - field_hours: ساعت‌ - field_activity: دسته‌بندی زمان - field_spent_on: در تاریخ - field_identifier: شناسه - field_is_filter: غربال‌پذیر - field_issue_to: مسأله مرتبط - field_delay: دیرکرد - field_assignable: مسأله‌ها می‌توانند به کاربرانی که این نقش را دارند، واگذار شوند - field_redirect_existing_links: پیوندهای موجود به پیوند جدید منتقل شوند - field_estimated_hours: زمان برآوردشده - field_column_names: ستون‌ها - field_time_entries: زمان نوشتن - field_time_zone: محدوده زمانی - field_searchable: جست‌وجوپذیر - field_default_value: مقدار پیش‌فرض - field_comments_sorting: نمایش نظرات - field_parent_title: صفحه پدر - field_editable: ویرایش‌پذیر - field_watcher: ناظر - field_identity_url: نشانی OpenID - field_content: محتوا - field_group_by: دسته بندی با - field_sharing: اشتراک گذاری - field_parent_issue: کار پدر - field_member_of_group: "گروه مسئول" - field_assigned_to_role: "نقش مسئول" - field_text: بخش متنی - field_visible: آشکار - field_warn_on_leaving_unsaved: هنگام خروج از صفحه‌ای با متنی ذخیره‌نشده به من اخطار بده - field_issues_visibility: آشکاری مسأله‌ها - field_is_private: محرمانه - field_commit_logs_encoding: کدگذاری پیام‌های تثبیت - field_scm_path_encoding: کدگذاری مسیر - field_path_to_repository: مسیر مخزن - field_root_directory: مسیر ریشه - field_cvsroot: CVSROOT - field_cvs_module: ابزار - field_repository_is_default: مخزن پیش‌فرض - field_multiple: چند مقدار - field_auth_source_ldap_filter: غربال LDAP - field_core_fields: بخش‌های استاندارد - field_timeout: "مهلت (به ثانیه)" - field_board_parent: انجمن پدر - field_private_notes: یادداشت‌های محرمانه - field_inherit_members: ارث‌بری اعضا - field_generate_password: تولید گذرواژه - field_must_change_passwd: لزوم تغییر گذرواژه در ورود بعدی - field_default_status: وضعیت پیش‌فرض - field_users_visibility: آشکاری کاربران - field_time_entries_visibility: آشکاری زمان‌های ثبت شده - field_total_estimated_hours: مجموع زمان برآوردشده - field_default_version: نسخه پیش‌فرض - field_remote_ip: نشانی آی‌پی - field_textarea_font: قلم مورد استفاده برای متن - field_updated_by: به‌روزرسانی شده توسط - field_last_updated_by: آخرین به‌روزرسانی توسط - field_full_width_layout: عرض تمام‌صفحه - field_digest: قدرآزما - field_default_assigned_to: مسئول پیش‌فرض - - setting_app_title: عنوان برنامه - setting_welcome_text: متن خوش‌آمد گویی - setting_default_language: زبان پیش‌فرض - setting_login_required: الزامی بودن ورود - setting_self_registration: ثبت نام خود - setting_show_custom_fields_on_registration: نمایش بخش‌های سفارشی در ثبت نام - setting_attachment_max_size: بیشینه اندازه پیوست - setting_issues_export_limit: محدودیت صدور مسأله‌ها - setting_mail_from: نشانی فرستنده رایانامه - setting_bcc_recipients: گیرندگان رایانامه دیده نشوند (BCC) - setting_plain_text_mail: رایانامه نوشتاری ساده (بدون HTML) - setting_host_name: نام میزبان و نشانی - setting_text_formatting: قالب‌بندی متن - setting_wiki_compression: فشرده‌سازی سابقه دانش‌نامه - setting_feeds_limit: بیشینه تعداد موارد در خوراک‌های Atom - setting_default_projects_public: پروژه‌های جدید به صورت پیش‌فرض عمومی هستند - setting_autofetch_changesets: دریافت خودکار تثبیت‌ها - setting_sys_api_enabled: فعال‌سازی سرویس وب برای راه‌بر مخزن - setting_commit_ref_keywords: کلیدواژه‌های ارجاع - setting_commit_fix_keywords: کلیدواژه‌های انجام - setting_autologin: ورود خودکار - setting_date_format: قالب تاریخ - setting_time_format: قالب زمان - setting_timespan_format: قالب فاصله زمان - setting_cross_project_issue_relations: اجازه ارتباط بین‌پروژه‌ای مسأله‌ها - setting_cross_project_subtasks: اجازه زیرکارهای بین‌پروژه‌ای - setting_issue_list_default_columns: ستون‌های پیش‌فرض نمایش‌داده‌شده در فهرست مسأله‌ها - setting_repositories_encodings: کدگذاری پیوست‌ها و مخزن‌ها - setting_emails_header: سرنویس رایانامه - setting_emails_footer: پانویس رایانامه - setting_protocol: قرارداد - setting_per_page_options: گزینه‌های اندازه داده‌های هر صفحه - setting_user_format: قالب نمایشی کاربران - setting_activity_days_default: روزهای نمایش داده شده در خط زمان پروژه - setting_display_subprojects_issues: پیش‌فرض نمایش مسأله‌های زیرپروژه در پروژه پدر - setting_enabled_scm: فعال‌سازی SCM - setting_mail_handler_body_delimiters: "بریدن رایانامه‌ها پس از یکی از این ردیف‌ها" - setting_mail_handler_enable_regex: "فعال‌سازی عبارات منظم" - setting_mail_handler_api_enabled: فعال‌سازی وب‌سرویس برای نامه‌های دریافتی - setting_mail_handler_api_key: کلید API - setting_sys_api_key: کلید API وب‌سرویس مدیریت مخازن - setting_sequential_project_identifiers: ساخت پشت سر هم شناسه پروژه - setting_gravatar_enabled: کاربرد Gravatar برای عکس کاربر - setting_gravatar_default: عکس Gravatar پیش‌فرض - setting_diff_max_lines_displayed: بیشترین اندازه ردیف‌های تفاوت نشان داده شده - setting_file_max_size_displayed: بیشترین اندازه پرونده‌های نمایش داده‌شده به صورت هم‌ردیف - setting_repository_log_display_limit: بیشترین تعداد بازبینی‌های نمایش داده‌شده در گزارش پرونده - setting_openid: اجازه ورود و ثبت نام با OpenID - setting_password_max_age: لزوم تغییر گذرواژه پس از - setting_password_min_length: کم‌ترین اندازه گذرواژه - setting_lost_password: اجازه بازنشانی گذرواژه با رایانامه - setting_new_project_user_role_id: نقش داده‌شده به کاربری که راه‌بر نیست و پروژه می‌سازد - setting_default_projects_modules: ابزارهای پیش‌فرض فعال برای پروژه‌های جدید - setting_issue_done_ratio: برآورد اندازه انجام شده مسأله با - setting_issue_done_ratio_issue_field: محاسبه بر اساس درصد پیش‌رفت مسأله - setting_issue_done_ratio_issue_status: محاسبه بر اساس وضعیت مسأله - setting_start_of_week: آغاز تقویم از - setting_rest_api_enabled: فعال‌سازی وب سرویس‌های REST - setting_cache_formatted_text: حفظ متون قالب‌بندی‌شده در نهان‌گاه - setting_default_notification_option: آگاه‌سازی پیش‌فرض - setting_commit_logtime_enabled: فعال‌سازی ثبت زمان صرف‌شده - setting_commit_logtime_activity_id: دسته‌بندی زمان صرف‌شده - setting_gantt_items_limit: بیشترین تعداد مسائل نمایش داده شده در نمودار گانت - setting_issue_group_assignment: اجازه واگذاری مسأله به گروه‌ها - setting_default_issue_start_date_to_creation_date: استفاده از تاریخ جاری به عنوان تاریخ شروع برای مسأله‌های جدید - setting_commit_cross_project_ref: اجازه ارجاع و حل مسأله‌های همه پروژه‌های دیگر - setting_unsubscribe: کاربران اجازه حذف حساب کاربری خود را داشته باشند - setting_session_lifetime: بیشینه عمر نشست - setting_session_timeout: مهلت عدم فعالیت نشست - setting_thumbnails_enabled: نمایش بندانگشتی پیوست‌ها - setting_thumbnails_size: اندازه بندانگشتی (به پیکسل) - setting_non_working_week_days: روزهای تعطیل کاری - setting_jsonp_enabled: فعال‌سازی پشتیبانی JSONP - setting_default_projects_tracker_ids: انواع مسأله‌ی پیش‌فرض برای پروژه‌های جدید - setting_mail_handler_excluded_filenames: مستثنی کردن پیوست‌ها با نام - setting_force_default_language_for_anonymous: الزام زبان پیش فرض برای کاربران ناشناس - setting_force_default_language_for_loggedin: الزام زبان پیش‌فرض برای کاربران واردشده - setting_link_copied_issue: ارتباط مسائل در هنگام رونوشت - setting_max_additional_emails: بیشینه تعداد نشانی‌های رایانامه - setting_search_results_per_page: تعداد نتایج جستجو در صفحه - setting_attachment_extensions_allowed: پسوندهای مجاز - setting_attachment_extensions_denied: پسوندهای غیرمجاز - setting_new_item_menu_tab: منوی پروژه برای ساخت اجزاء جدید - setting_commit_logs_formatting: اِعمال قالب‌بندی متن روی پیام‌های تثبیت - setting_timelog_required_fields: بخش‌های الزامی برای ثبت زمان - - permission_add_project: ساخت پروژه - permission_add_subprojects: ساخت زیرپروژه - permission_edit_project: ویرایش پروژه - permission_close_project: بستن / بازگشایی پروژه - permission_select_project_modules: انتخاب ابزارهای پروژه - permission_manage_members: مدیریت اعضا - permission_manage_project_activities: مدیریت دسته‌بندی زمان‌های پروژه - permission_manage_versions: مدیریت نسخه‌ها - permission_manage_categories: مدیریت دسته‌های مسأله - permission_view_issues: مشاهده مسأله‌ها - permission_add_issues: افزودن مسأله‌ها - permission_edit_issues: ویرایش مسأله‌ها - permission_copy_issues: رونوشت مسائل - permission_manage_issue_relations: مدیریت ارتباط مسأله‌ها - permission_set_issues_private: تنظیم مسأله‌ها به عمومی یا محرمانه - permission_set_own_issues_private: تنظیم مسأله‌های خود به عمومی یا محرمانه - permission_add_issue_notes: افزودن یادداشت‌ها - permission_edit_issue_notes: ویرایش یادداشت‌ها - permission_edit_own_issue_notes: ویرایش یادداشت خود - permission_view_private_notes: مشاهده یادداشت‌های محرمانه - permission_set_notes_private: محرمانه کردن یادداشت‌ها - permission_delete_issues: حذف مسأله‌ها - permission_manage_public_queries: مدیریت جستارهای عمومی - permission_save_queries: ذخیره‌سازی جستارها - permission_view_gantt: مشاهده نمودار گانت - permission_view_calendar: مشاهده تقویم - permission_view_issue_watchers: مشاهده فهرست ناظرها - permission_add_issue_watchers: افزودن ناظرها - permission_delete_issue_watchers: حذف ناظرها - permission_log_time: ثبت زمان صرف‌شده - permission_view_time_entries: مشاهده زمان صرف‌شده - permission_edit_time_entries: ویرایش زمان صرف‌شده - permission_edit_own_time_entries: ویرایش زمان صرف‌شده خود - permission_view_news: مشاهده وبلاگ - permission_manage_news: مدیریت وبلاگ - permission_comment_news: نظردهی روی مطالب - permission_view_documents: مشاهده اسناد - permission_add_documents: افزودن اسناد - permission_edit_documents: ویرایش اسناد - permission_delete_documents: حذف اسناد - permission_manage_files: مدیریت پرونده‌ها - permission_view_files: مشاهده پرونده‌ها - permission_manage_wiki: مدیریت دانش‌نامه - permission_rename_wiki_pages: نامگذاری صفحه دانش‌نامه - permission_delete_wiki_pages: حذف کردن صفحه دانش‌نامه - permission_view_wiki_pages: مشاهده دانش‌نامه - permission_view_wiki_edits: مشاهده سابقه دانش‌نامه - permission_edit_wiki_pages: ویرایش صفحه‌های دانش‌نامه - permission_delete_wiki_pages_attachments: حذف کردن پیوست‌های صفحه دانش‌نامه - permission_protect_wiki_pages: محافظت صفحه‌های دانش‌نامه - permission_manage_repository: مدیریت مخزن - permission_browse_repository: مرور مخزن - permission_view_changesets: مشاهده تغییرات - permission_commit_access: دست‌رسی تثبیت - permission_manage_boards: مدیریت انجمن‌ها - permission_view_messages: مشاهده پیام‌ها - permission_add_messages: ارسال پیام‌ها - permission_edit_messages: ویرایش پیام‌ها - permission_edit_own_messages: ویرایش پیام خود - permission_delete_messages: حذف پیام‌ها - permission_delete_own_messages: حذف پیام خود - permission_export_wiki_pages: صدور صفحه‌های دانش‌نامه - permission_manage_subtasks: مدیریت زیرکارها - permission_manage_related_issues: مدیریت مسأله‌های مرتبط - permission_import_issues: وارد کردن مسائل - - project_module_issue_tracking: پی‌گیری مسأله‌ها - project_module_time_tracking: ‌مدیریت زمان - project_module_news: وبلاگ - project_module_documents: اسناد - project_module_files: پرونده‌ها - project_module_wiki: دانش‌نامه - project_module_repository: مخزن - project_module_boards: انجمن‌ها - project_module_calendar: تقویم - project_module_gantt: گانت - - label_user: کاربر - label_user_plural: کاربران - label_user_new: کاربر جدید - label_user_anonymous: ناشناس - label_project: پروژه - label_project_new: پروژه جدید - label_project_plural: پروژه‌ها - label_x_projects: - zero: بدون پروژه - one: "۱ پروژه" - other: "%{count} پروژه" - label_project_all: همه پروژه‌ها - label_project_latest: آخرین پروژه‌ها - label_issue: مسأله - label_issue_new: مسأله جدید - label_issue_plural: مسأله‌ها - label_issue_view_all: مشاهده همه مسأله‌ها - label_issues_by: "مسأله‌های %{value}" - label_issue_added: مسأله افزوده شد - label_issue_updated: مسأله به‌روز شد - label_issue_note_added: یادداشت افزوده شد - label_issue_status_updated: وضعیت به‌روز شد - label_issue_assigned_to_updated: مسئول به‌روز شد - label_issue_priority_updated: اولویت به‌روز شد - label_document: سند - label_document_new: سند جدید - label_document_plural: اسناد - label_document_added: سند افزوده شد - label_role: نقش - label_role_plural: نقش‌ها - label_role_new: نقش جدید - label_role_and_permissions: نقش‌ها و دست‌رسی‌ها - label_role_anonymous: ناشناس - label_role_non_member: غیرعضو - label_member: عضو - label_member_new: عضو جدید - label_member_plural: اعضا - label_tracker: نوع مسأله - label_tracker_plural: انواع مسأله‌ها - label_tracker_all: همه انواع مسأله‌ها - label_tracker_new: نوع جدید مسأله - label_workflow: گردش کار - label_issue_status: وضعیت مسأله - label_issue_status_plural: وضعیت‌های مسأله‌ها - label_issue_status_new: وضعیت جدید - label_issue_category: دسته مسأله - label_issue_category_plural: دسته‌بندی مسأله‌ها - label_issue_category_new: دسته جدید - label_custom_field: بخش سفارشی - label_custom_field_plural: بخش‌های سفارشی - label_custom_field_new: بخش سفارشی جدید - label_enumerations: برشمردنی‌ها - label_enumeration_new: مقدار جدید - label_information: اطلاعات - label_information_plural: اطلاعات - label_register: ثبت نام - label_login_with_open_id_option: یا با OpenID وارد شوید - label_password_lost: بازیابی گذرواژه - label_password_required: برای ادامه، گذرواژه خود را تایید کنید - label_home: خانه - label_my_page: صفحه من - label_my_account: حساب من - label_my_projects: پروژه‌های من - label_administration: راه‌بری - label_login: ورود - label_logout: خروج - label_help: راهنما - label_reported_issues: مسأله‌های گزارش شده - label_assigned_issues: مسائل واگذارشده - label_assigned_to_me_issues: مسأله‌های واگذارشده به من - label_last_login: آخرین ورود - label_registered_on: ثبت‌نام‌شده در - label_activity: خط زمان - label_overall_activity: خط زمان - label_user_activity: "خط زمان %{value}" - label_new: جدید - label_logged_as: "وارد‌شده به نام " - label_environment: محیط - label_authentication: احراز هویت - label_auth_source: روش احراز هویت - label_auth_source_new: روش احراز هویت جدید - label_auth_source_plural: روش‌های احراز هویت - label_subproject_plural: زیرپروژه‌ها - label_subproject_new: زیرپروژه جدید - label_and_its_subprojects: "%{value} و زیرپروژه‌هایش" - label_min_max_length: کم‌ترین و بیشترین اندازه - label_list: فهرست - label_date: تاریخ - label_integer: عدد صحیح - label_float: عدد اعشاری - label_boolean: درست/نادرست - label_string: متن - label_text: متن بلند - label_attribute: خصوصیت - label_attribute_plural: خصوصیت‌ها - label_no_data: هیچ داده‌ای برای نمایش نیست - label_no_preview: پیش‌نمایش موجود نیست - label_no_preview_alternative_html: پیش‌نمایش موجود نیست. %{link} - label_no_preview_download: دریافت - label_change_status: تغییر وضعیت - label_history: سابقه - label_attachment: پیوست - label_attachment_new: پیوست جدید - label_attachment_delete: حذف پیوست - label_attachment_plural: پیوست‌ها - label_file_added: پرونده افزوده شد - label_report: گزارش - label_report_plural: گزارش‌ها - label_news: مطلب - label_news_new: مطلب جدید وبلاگ - label_news_plural: وبلاگ - label_news_latest: آخرین مطالب - label_news_view_all: مشاهده همه مطالب - label_news_added: مطلب افزوده شد - label_news_comment_added: نظر ثبت شد - label_settings: تنظیمات - label_overview: دورنما - label_version: نسخه - label_version_new: نسخه جدید - label_version_plural: نسخه‌ها - label_close_versions: بستن نسخه‌های انجام شده - label_confirmation: تأیید - label_export_to: 'قالب‌های دیگر:' - label_read: خواندن... - label_public_projects: پروژه‌های عمومی - label_open_issues: باز - label_open_issues_plural: باز‌ها - label_closed_issues: بسته - label_closed_issues_plural: بسته‌ها - label_x_open_issues_abbr: - zero: 0 باز - one: 1 باز - other: "%{count} باز" - label_x_closed_issues_abbr: - zero: 0 بسته - one: 1 بسته - other: "%{count} بسته" - label_x_issues: - zero: 0 مسأله - one: 1 مسأله - other: "%{count} مسأله" - label_total: کل - label_total_plural: کل - label_total_time: زمان کل - label_permissions: دست‌رسی‌ها - label_current_status: وضعیت کنونی - label_new_statuses_allowed: وضعیت‌های مجاز جدید - label_all: همه - label_any: هر چیز - label_none: هیچ - label_nobody: هیچ کس - label_next: بعد - label_previous: قبل - label_used_by: به کار رفته در - label_details: جزئیات - label_add_note: افزودن یادداشت - label_calendar: تقویم - label_months_from: ماه از - label_gantt: گانت - label_internal: درونی - label_last_changes: "%{count} تغییر آخر" - label_change_view_all: مشاهده همه تغییرات - label_comment: نظر - label_comment_plural: نظرات - label_x_comments: - zero: بدون نظر - one: ۱ نظر - other: "%{count} نظر" - label_comment_add: افزودن نظر - label_comment_added: نظر افزوده شد - label_comment_delete: حذف نظرات - label_query: جستار سفارشی - label_query_plural: جستار سفارشی - label_query_new: جستار جدید - label_my_queries: جستارهای سفارشی من - label_filter_add: افزودن غربال - label_filter_plural: غربال‌ها - label_equals: برابر است با - label_not_equals: برابر نیست با - label_in_less_than: در کم‌تر از - label_in_more_than: در بیشتر از - label_in_the_next_days: در آینده - label_in_the_past_days: در گذشته - label_greater_or_equal: بیشتر یا برابر است با - label_less_or_equal: کم‌تر یا برابر است با - label_between: میان - label_in: در - label_today: امروز - label_yesterday: دیروز - label_this_week: این هفته - label_last_week: هفته قبل - label_last_n_weeks: "%{count} هفته گذشته" - label_last_n_days: "%{count} روز گذشته" - label_this_month: این ماه - label_last_month: ماه قبل - label_this_year: امسال - label_date_range: بازه تاریخ - label_less_than_ago: قبل از چند روز پیش - label_more_than_ago: بعد از چند روز پیش - label_ago: روز قبل - label_contains: شامل - label_not_contains: فاقد - label_any_issues_in_project: هر مسأله‌ای در پروژه - label_any_issues_not_in_project: هر مسأله‌ای بیرون پروژه - label_no_issues_in_project: مسأله‌ای در پروژه وجود ندارد - label_any_open_issues: هر مسأله‌ی باز - label_no_open_issues: بدون هیچ مسأله باز - label_day_plural: روز - label_repository: مخزن - label_repository_new: مخزن جدید - label_repository_plural: مخزن‌ها - label_browse: مرور - label_branch: انشعاب - label_tag: برچسب - label_revision: بازبینی - label_revision_plural: بازبینی‌ها - label_revision_id: "بازبینی %{value}" - label_associated_revisions: بازبینی‌های مرتبط - label_added: افزوده شده - label_modified: پیراسته شده - label_copied: رونویسی شده - label_renamed: تغییرنام داده‌شده - label_deleted: حذف شده - label_latest_revision: آخرین بازبینی - label_latest_revision_plural: آخرین بازبینی‌ها - label_view_revisions: مشاهده بازبینی‌ها - label_view_all_revisions: مشاهده همه بازبینی‌ها - label_max_size: بیشترین اندازه - label_sort_highest: بردن به آغاز - label_sort_higher: بردن به بالا - label_sort_lower: بردن به پایین - label_sort_lowest: بردن به پایان - label_roadmap: نقشه راه - label_roadmap_due_in: "سررسید در %{value}" - label_roadmap_overdue: "%{value} دیرکرد" - label_roadmap_no_issues: هیچ مسأله‌ای برای این نسخه نیست - label_search: جست‌وجو - label_result_plural: نتایج - label_all_words: همه واژه‌ها - label_wiki: دانش‌نامه - label_wiki_edit: ویرایش دانش‌نامه - label_wiki_edit_plural: ویرایش‌های دانش‌نامه - label_wiki_page: صفحه دانش‌نامه - label_wiki_page_plural: صفحه‌های دانش‌نامه - label_wiki_page_new: صفحه دانش‌نامه جدید - label_index_by_title: فهرست بر اساس عنوان - label_index_by_date: فهرست بر اساس تاریخ - label_current_version: نسخه فعلی - label_preview: پیش‌نمایش - label_feed_plural: خوراک‌ها - label_changes_details: جزئیات همه تغییرات - label_issue_tracking: پی‌گیری مسأله‌ها - label_spent_time: زمان صرف‌شده - label_total_spent_time: کل زمان صرف‌شده - label_overall_spent_time: مجموع زمان صرف‌شده - label_f_hour: "%{value} ساعت" - label_f_hour_plural: "%{value} ساعت" - label_f_hour_short: "%{value} س" - label_time_tracking: پی‌گیری زمان - label_change_plural: تغییر - label_statistics: آمار - label_commits_per_month: تثبیت در هر ماه - label_commits_per_author: تثبیت به ازای هر نویسنده - label_diff: تفاوت - label_view_diff: مشاهده تفاوت‌ها - label_diff_inline: هم‌ردیف - label_diff_side_by_side: پهلوبه‌پهلو - label_options: گزینه‌ها - label_copy_workflow_from: رونویسی گردش کار از روی - label_permissions_report: گزارش دست‌رسی‌ها - label_watched_issues: مسأله‌های نظارت‌شده - label_related_issues: مسأله‌های مرتبط - label_applied_status: وضعیت اعمال‌شده - label_loading: بارگذاری... - label_relation_new: ارتباط جدید - label_relation_delete: حذف ارتباط - label_relates_to: مرتبط با - label_duplicates: تکرارکننده - label_duplicated_by: تکرارشونده - label_blocks: سدکننده - label_blocked_by: سدشونده - label_precedes: تقدم دارد بر - label_follows: تأخر دارد بر - label_copied_to: رونوشت به - label_copied_from: رونوشت از - label_stay_logged_in: وارد‌شده بمانید - label_disabled: غیرفعال - label_show_completed_versions: نمایش نسخه‌های انجام‌شده - label_me: من - label_board: انجمن - label_board_new: انجمن جدید - label_board_plural: انجمن‌ها - label_board_locked: قفل شده - label_board_sticky: چسبناک - label_topic_plural: سرفصل‌ها - label_message_plural: پیام - label_message_last: آخرین پیام - label_message_new: پیام جدید - label_message_posted: پیام افزوده شد - label_reply_plural: پاسخ‌ها - label_send_information: ارسال داده‌های حساب به کاربر - label_year: سال - label_month: ماه - label_week: هفته - label_date_from: از - label_date_to: تا - label_language_based: بر اساس زبان کاربر - label_sort_by: "مرتب‌سازی با %{value}" - label_send_test_email: ارسال رایانامه آزمایشی - label_feeds_access_key: کلید دست‌رسی Atom - label_missing_feeds_access_key: کلید دست‌رسی Atom در دست‌رس نیست - label_feeds_access_key_created_on: "کلید دست‌رسی Atom در %{value} پیش ساخته شده است" - label_module_plural: ابزارها - label_added_time_by: "افزوده شده توسط %{author} در %{age} پیش" - label_updated_time_by: "به‌روزشده توسط %{author} در %{age} پیش" - label_updated_time: "به‌روزشده در %{value} پیش" - label_jump_to_a_project: انتخاب پروژه - label_file_plural: پرونده‌ها - label_changeset_plural: تغییرها - label_default_columns: ستون‌های پیش‌فرض - label_no_change_option: (بدون تغییر) - label_bulk_edit_selected_issues: ویرایش دسته‌ای مسأله‌های انتخاب‌شده - label_bulk_edit_selected_time_entries: ویرایش دسته‌جمعی ورودی‌های زمان انتخاب‌شده - label_theme: پوسته - label_default: پیش‌فرض - label_search_titles_only: عنوان نام‌ها جست‌وجو شود - label_user_mail_option_all: "برای هر رویداد در همه پروژه‌ها" - label_user_mail_option_selected: "برای هر رویداد تنها در پروژه‌های انتخاب‌شده..." - label_user_mail_option_none: "هیچ رویدادی" - label_user_mail_option_only_my_events: "تنها برای چیزهایی که ناظر هستم یا در آن‌ها درگیر هستم" - label_user_mail_option_only_assigned: "تنها برای چیزهایی که به من واگذار شده" - label_user_mail_option_only_owner: "تنها برای چیزهایی که من دارنده آن‌ها هستم" - label_user_mail_no_self_notified: "نمی‌خواهم از تغییراتی که خودم می‌دهم آگاه شوم" - label_registration_activation_by_email: فعال‌سازی حساب با رایانامه - label_registration_manual_activation: فعال‌سازی دستی حساب - label_registration_automatic_activation: فعال‌سازی خودکار حساب - label_display_per_page: "تعداد ردیف در هر صفحه: %{value}" - label_age: سن - label_change_properties: ویرایش خصوصیات - label_general: عمومی - label_scm: SCM - label_plugins: افزونه‌ها - label_ldap_authentication: احراز هویت LDAP - label_downloads_abbr: دریافت - label_optional_description: توضیح اختیاری - label_add_another_file: افزودن پرونده دیگر - label_preferences: ترجیح‌ها - label_chronological_order: به ترتیب تاریخ - label_reverse_chronological_order: برعکس ترتیب تاریخ - label_incoming_emails: رایانامه‌های دریافتی - label_generate_key: ساخت کلید - label_issue_watchers: ناظرها - label_example: نمونه - label_display: نمایش - label_sort: مرتب‌سازی - label_ascending: افزایشی - label_descending: کاهشی - label_date_from_to: از %{start} تا %{end} - label_wiki_content_added: صفحه دانش‌نامه افزوده شد - label_wiki_content_updated: صفحه دانش‌نامه به‌روز شد - label_group: گروه - label_group_plural: گروه‌ها - label_group_new: گروه جدید - label_group_anonymous: کاربران ناشناس - label_group_non_member: کاربران غیرعضو - label_time_entry_plural: زمان صرف‌شده - label_version_sharing_none: بدون اشتراک - label_version_sharing_descendants: با زیر پروژه‌ها - label_version_sharing_hierarchy: با رشته پروژه‌ها - label_version_sharing_tree: با درخت پروژه - label_version_sharing_system: با همه پروژه‌ها - label_update_issue_done_ratios: به‌روزرسانی اندازه انجام شده مسأله - label_copy_source: منبع - label_copy_target: مقصد - label_copy_same_as_target: مانند مقصد - label_display_used_statuses_only: تنها وضعیت‌هایی نشان داده شوند که در این نوع مسأله به کار رفته‌اند - label_api_access_key: کلید دست‌رسی API - label_missing_api_access_key: کلید دست‌رسی API در دست‌رس نیست - label_api_access_key_created_on: "کلید دست‌رسی API در %{value} پیش ساخته شده است" - label_profile: نمایه - label_subtask_plural: زیرکار - label_project_copy_notifications: در هنگام رونویسی پروژه رایانامه‌های آگاه‌سازی را بفرست - label_principal_search: "جست‌وجو برای کاربر یا دسته:" - label_user_search: "جست‌وجو برای کاربر:" - label_additional_workflow_transitions_for_author: وقتی که کاربر همان نویسنده باشد، انتقال‌های اضافی که مجاز است - label_additional_workflow_transitions_for_assignee: وقتی که کاربر همان مسئول باشد، انتقال‌های اضافی که مجاز است - label_issues_visibility_all: همه مسأله‌ها - label_issues_visibility_public: همه مسأله‌های غیرمحرمانه - label_issues_visibility_own: مسأله‌هایی که کاربر، سازنده یا مسئول آن‌ها است - label_git_report_last_commit: گزارش تثبیت‌های اخیر برای پرونده‌ها و پوشه‌ها - label_parent_revision: پدر - label_child_revision: فرزند - label_export_options: "%{export_format} گزینه‌های صدور" - label_copy_attachments: رونوشت پیوست‌ها - label_copy_subtasks: رونوشت زیرکارها - label_item_position: "%{position} از %{count}" - label_completed_versions: نسخه‌های کامل‌شده - label_search_for_watchers: جست‌وجوی ناظرها برای افزودن - label_session_expiration: انقضای نشست - label_status_transitions: انتقال‌های وضعیت - label_fields_permissions: مجوزهای بخش‌ها - label_readonly: فقط‌خواندنی - label_required: الزامی - label_hidden: مخفی - label_attribute_of_project: "%{name} پروژه" - label_attribute_of_issue: "%{name} مسأله" - label_attribute_of_author: "%{name} نویسنده" - label_attribute_of_assigned_to: "%{name} مسئول" - label_attribute_of_user: "%{name} کاربر" - label_attribute_of_fixed_version: "%{name} نسخه هدف" - label_attribute_of_object: "%{name} %{object_name}" - label_cross_project_descendants: با زیرپروژه‌ها - label_cross_project_tree: با درخت پروژه - label_cross_project_hierarchy: با سلسله مراتب پروژه - label_cross_project_system: با همه پروژه‌ها - label_gantt_progress_line: خط پیش‌رفت - label_visibility_private: فقط به من - label_visibility_roles: فقط به این نقش‌ها - label_visibility_public: به هر کاربری - label_link: پیوند - label_only: فقط - label_drop_down_list: فهرست پایین‌ریز - label_checkboxes: مربع‌های علامت‌زنی - label_radio_buttons: انتخاب فقط یکی از گزینه‌ها - label_link_values_to: پیوند مقادیر به URL - label_custom_field_select_type: نوع شیئی را که بخش سفارشی قرار است به آن پیوست شود، انتخاب کنید - label_check_for_updates: آزمون به‌روزرسانی - label_latest_compatible_version: آخرین نسخه سازگار - label_unknown_plugin: افزونه ناشناخته - label_add_projects: افزودن پروژه‌ها - label_users_visibility_all: همه کاربران فعال - label_users_visibility_members_of_visible_projects: اعضای پروژه‌های قابل مشاهده - label_edit_attachments: ویرایش پرونده‌های پیوست - label_link_copied_issue: پیوند مسائل رونوشت شده - label_ask: پرسش - label_search_attachments_yes: جستجو در نام پیوست‌ها و توضیحاتشان - label_search_attachments_no: پیوست‌ها را جستجو نکن - label_search_attachments_only: فقط پیوست‌ها را جستجو کن - label_search_open_issues_only: فقط مسائل باز - label_email_address_plural: رایانامه‌ها - label_email_address_add: افزودن نشانی رایانامه - label_enable_notifications: فعال‌سازی آگاه‌سازی - label_disable_notifications: غیرفعال‌سازی آگاه‌سازی - label_blank_value: خالی - label_parent_task_attributes: خصایص مسائل پدر - label_parent_task_attributes_derived: محاسبه از زیرمسأله‌ها - label_parent_task_attributes_independent: مستقل از زیرمسأله‌ها - label_time_entries_visibility_all: همه زمان‌های وارد شده - label_time_entries_visibility_own: زمان‌های وارد شده کاربر - label_member_management: مدیریت عضو - label_member_management_all_roles: همه نقش‌ها - label_member_management_selected_roles_only: فقط این نقش‌ها - label_import_issues: ورود مسائل - label_select_file_to_import: انتخاب پرونده برای وارد کردن - label_fields_separator: جداکننده‌ی بخش‌ها - label_fields_wrapper: بسته‌بندی بخش‌ها - label_encoding: کدگذاری - label_comma_char: ویرگول - label_semi_colon_char: نقطه ویرگول - label_quote_char: نقل قول - label_double_quote_char: نقل قول دوتایی - label_fields_mapping: نگاشت بخش‌ها - label_file_content_preview: نمایش محتویات بخش - label_create_missing_values: ساختن مقادیر ناموجود - label_api: API - label_field_format_enumeration: فهرست کلید/مقدار - label_default_values_for_new_users: مقادیر پیش‌فرض برای کاربران جدید - label_relations: ارتباطات - label_new_project_issue_tab_enabled: نمایش برگه «مسأله جدید» - label_new_object_tab_enabled: نمایش منوی "+" - label_table_of_contents: فهرست محتویات - label_font_default: قلم پیش‌فرض - label_font_monospace: قلم یکنواخت - label_font_proportional: قلم متناسب - label_last_notes: آخرین یادداشت‌ها - - button_login: ورود - button_submit: ثبت - button_save: ذخیره - button_check_all: انتخاب همه - button_uncheck_all: انتخاب هیچ - button_collapse_all: بستن همه - button_expand_all: گستردن همه - button_delete: حذف - button_create: ساخت - button_create_and_continue: ساخت و ادامه - button_test: آزمایش - button_edit: ویرایش - button_edit_associated_wikipage: "ویرایش صفحه دانش‌نامه مرتبط: %{page_title}" - button_add: افزودن - button_change: ویرایش - button_apply: انجام - button_clear: پاک - button_lock: قفل‌ کردن - button_unlock: باز کردن قفل - button_download: دریافت - button_list: فهرست - button_view: مشاهده - button_move: جابجایی - button_move_and_follow: جابجایی و ادامه - button_back: عقب - button_cancel: لغو - button_activate: فعال‌سازی - button_sort: مرتب‌سازی - button_log_time: زمان‌نویسی - button_rollback: عقب‌گرد به این نسخه - button_watch: نظارت - button_unwatch: لغو نظارت - button_reply: پاسخ - button_archive: بایگانی - button_unarchive: خروج از بایگانی - button_reset: بازنشانی - button_rename: نام‌گذاری - button_change_password: تغییر گذرواژه - button_copy: رونوشت - button_copy_and_follow: رونوشت و ادامه - button_annotate: حاشیه‌نگاری - button_update: به‌روزرسانی - button_configure: تنظیمات - button_quote: نقل قول - button_show: نمایش - button_hide: مخفی‌سازی - button_edit_section: ویرایش این بخش - button_export: صدور - button_delete_my_account: حذف حسابم - button_close: بستن - button_reopen: بازگشایی - button_import: وارد کردن مسائل - button_filter: غربال - - status_active: فعال - status_registered: ثبت‌نام‌شده - status_locked: قفل - - project_status_active: فعال - project_status_closed: بسته - project_status_archived: بایگانی‌شده - - version_status_open: باز - version_status_locked: قفل - version_status_closed: بسته - - field_active: فعال - - text_select_mail_notifications: عمل‌هایی که برای آن‌ها باید رایانامه فرستاده شود را انتخاب کنید. - text_regexp_info: برای نمونه ^[A-Z0-9]+$ - text_min_max_length_info: 0 یعنی نامحدود - text_project_destroy_confirmation: آیا واقعاً می‌خواهید این پروژه و همه داده‌های آن را حذف کنید؟ - text_subprojects_destroy_warning: "زیرپروژه‌های آن: %{value} هم حذف خواهند شد." - text_workflow_edit: یک نقش و یک نوع مسأله را برای ویرایش گردش کار انتخاب کنید - text_are_you_sure: آیا این کار انجام شود؟ - text_journal_changed: "%{label} از «%{old}» به «%{new}» تغییر کرد" - text_journal_changed_no_detail: "%{label} به‌روز شد" - text_journal_set_to: "%{label} شد «%{value}»" - text_journal_deleted: "%{label} حذف شد (%{old})" - text_journal_added: "%{label} «%{value}» افزوده شد" - text_tip_issue_begin_day: روز آغاز مسأله - text_tip_issue_end_day: روز پایان مسأله - text_tip_issue_begin_end_day: روز آغاز و پایان مسأله - text_project_identifier_info: 'تنها حروف کوچک (a-z)، ارقام، خط تیره (-) و زیرخط (_) مجاز است.
    پس از ذخیره‌سازی، شناسه نمی‌تواند تغییر کند.' - text_caracters_maximum: "بیش‌ترین اندازه %{count} است." - text_caracters_minimum: "کم‌ترین اندازه %{count} است." - text_length_between: "باید میان %{min} و %{max} نویسه باشد." - text_tracker_no_workflow: هیچ گردش کاری برای این نوع مسأله مشخص نشده است - text_unallowed_characters: نویسه‌های ممنوع - text_comma_separated: چند مقدار مجاز است (با «,» از هم جدا شوند). - text_line_separated: چند مقدار مجاز است (هر مقدار در یک خط). - text_issues_ref_in_commit_messages: ارجاع به مسأله‌ها و بستن مسأله‌ها در پیام‌های تثبیت - text_issue_added: "مسأله %{id} توسط %{author} گزارش شد." - text_issue_updated: "مسأله %{id} توسط %{author} به‌روز شد." - text_wiki_destroy_confirmation: آیا واقعاً می‌خواهید دانش‌نامه و همه محتوای آن را حذف کنید؟ - text_issue_category_destroy_question: "برخی مسأله‌ها (%{count}) به این دسته واگذار شده‌اند. می‌خواهید چه کنید؟" - text_issue_category_destroy_assignments: حذف واگذاری به دسته - text_issue_category_reassign_to: واگذاری دوباره مسأله‌ها به این دسته - text_user_mail_option: "برای پروژه‌های انتخاب‌نشده، تنها رایانامه‌هایی درباره چیزهایی که ناظر یا درگیر آن‌ها هستید دریافت خواهید کرد (مانند مسأله‌هایی که نویسنده یا مسئول آن‌ها هستید)." - text_no_configuration_data: "نقش‌ها، انواع مسأله‌ها، وضعیت‌های مسأله و گردش کار هنوز تنظیمات نشده‌اند. \nبه سختی پیشنهاد می‌شود که تنظیمات پیش‌فرض را بار کنید. سپس می‌توانید آن را ویرایش کنید." - text_load_default_configuration: بارگذاری تنظیمات پیش‌فرض - text_status_changed_by_changeset: "در تغییر %{value} به‌روزشده است." - text_time_logged_by_changeset: "در تغییر %{value} نوشته شده است." - text_issues_destroy_confirmation: 'آیا مطمئن هستید که می‌خواهید مسأله(‌های) انتخاب‌شده را حذف کنید؟' - text_issues_destroy_descendants_confirmation: این همچنین %{count} زیرکار را حذف خواهد کرد. - text_time_entries_destroy_confirmation: آیا مطمئنید که می‌خواهید ورودی(های) زمان انتخاب‌شده را حذف کنید؟ - text_select_project_modules: 'ابزارهایی که باید برای این پروژه فعال شوند را انتخاب کنید:' - text_default_administrator_account_changed: حساب راه‌بری پیش‌فرض تغییر کرده است - text_file_repository_writable: پوشه پیوست‌ها نوشتنی است - text_plugin_assets_writable: پوشه دارایی‌های افزونه‌ها نوشتنی است - text_minimagick_available: MiniMagick در دست‌رس است (اختیاری) - text_convert_available: ImageMagick convert در دست‌رس است (اختیاری) - text_destroy_time_entries_question: "%{hours} ساعت روی مسأله‌هایی که می‌خواهید حذف کنید کار گزارش شده است. می‌خواهید چه کنید؟" - text_destroy_time_entries: ساعت‌های گزارش شده حذف شوند - text_assign_time_entries_to_project: ساعت‌های گزارش شده به پروژه واگذار شوند - text_reassign_time_entries: 'ساعت‌های گزارش شده به این مسأله واگذار شوند:' - text_user_wrote: "%{value} نوشت:" - text_user_wrote_in: "%{value} نوشت در %{link}:" - text_enumeration_destroy_question: "%{count} مورد از مقدار «%{name}» استفاده کرده‌اند." - text_enumeration_category_reassign_to: 'به این مقدار تغییر کنند:' - text_email_delivery_not_configured: "دریافت رایانامه تنظیمات نشده است و آگاه‌سازی‌ها غیر فعال هستند.\nکارگزار SMTP خود را در config/email.yml تنظیمات کنید و برنامه را بازنشانی کنید تا فعال شوند." - text_repository_usernames_mapping: "حساب کاربری پی‌گیری که به هر نام کاربری مورد استفاده در پیام‌های تثبیت نگاشته می‌شود را انتخاب کنید.\nکاربرانی که نام کاربری یا رایانامه همسان دارند، خود به خود نگاشت می‌شوند." - text_diff_truncated: '... این تفاوت بریده شده چون بیشتر از بیش‌ترین اندازه نمایش دادنی است.' - text_custom_field_possible_values_info: 'یک خط برای هر مقدار' - text_wiki_page_destroy_question: "این صفحه %{descendants} زیرصفحه دارد.می‌خواهید چه کنید؟" - text_wiki_page_nullify_children: "زیرصفحه‌ها صفحه ریشه شوند" - text_wiki_page_destroy_children: "زیرصفحه‌ها و زیرصفحه‌های آن‌ها حذف شوند" - text_wiki_page_reassign_children: "زیرصفحه‌ها به زیر این صفحه پدر منتقل شوند" - text_own_membership_delete_confirmation: "شما دارید برخی یا همه دست‌رسی‌های خود را برمی‌دارید و شاید پس از این دیگر نتوانید این پروژه را ویرایش کنید.\nآیا می‌خواهید این کار را بکنید؟" - text_zoom_in: بزرگ‌نمایی - text_zoom_out: کوچک‌نمایی - text_warn_on_leaving_unsaved: این صفحه حاوی متنی ذخیره‌نشده است که در صورت خروج شما، از دست خواهد رفت. - text_scm_path_encoding_note: "پیش‌فرض: UTF-8" - text_subversion_repository_note: "مثال‌ها: file:///, http://, https://, svn://, svn+[tunnelscheme]://" - text_git_repository_note: مخزن محلی ساده (مثل ‎/gitrepo, c:\gitrepo) - text_mercurial_repository_note: مخزن محلی (مثل ‎/hgrepo, c:\hgrepo) - text_scm_command: دستور - text_scm_command_version: نسخه - text_scm_config: می‌توانید SCM خود را در config/configuration.yml پیکربندی کنید. لطفاً برنامه را بعد از ویرایش آن بازآغاز نمایید. - text_scm_command_not_available: دستور SCM در دست‌رس نیست. لطفاً تنظیمات را در صفحه راه‌بری بررسی نمایید. - text_issue_conflict_resolution_overwrite: "تغییرات من را به هر حال اعمال کن (یادداشت‌های قبلی حفظ می‌شوند ولی بعضی تغییرات بازنویسی می‌گردند)" - text_issue_conflict_resolution_add_notes: "یادداشت‌های من را اضافه کن و بقیه تغییراتم را دور بریز" - text_issue_conflict_resolution_cancel: "همه تغییراتم را دور بریز و پیوند %{link} را دوباره نمایش بده" - text_account_destroy_confirmation: "آیا مطمئن هستید که می‌خواهید پیش بروید?\nحساب شما به طور دائمی حذف می‌شود، بدون هر گونه راه فعال‌سازی مجددش." - text_session_expiration_settings: "هشدار: تغییر این تنظیمات ممکن است نشست‌های جاری را منقضی کند، از جمله نشست شما را." - text_project_closed: این پروژه بسته و فقط‌خواندنی است. - text_turning_multiple_off: "اگر چند مقدار را غیرفعال کنید چند مقدار حذف خواهد شد تا فقط یک مقدار در هر مورد باقی بماند." - - default_role_manager: مدیر - default_role_developer: برنامه‌نویس - default_role_reporter: گزارش‌دهنده - default_tracker_bug: ایراد - default_tracker_feature: قابلیت - default_tracker_support: پشتیبانی - default_issue_status_new: جدید - default_issue_status_in_progress: در حال انجام - default_issue_status_resolved: حل‌شده - default_issue_status_feedback: بازخورد - default_issue_status_closed: بسته - default_issue_status_rejected: ردشده - default_doc_category_user: سند کاربری - default_doc_category_tech: سند فنی - default_priority_low: کم - default_priority_normal: معمولی - default_priority_high: زیاد - default_priority_urgent: فوری - default_priority_immediate: بی‌درنگ - default_activity_design: طراحی - default_activity_development: توسعه - - enumeration_issue_priorities: اولویت‌های مسأله - enumeration_doc_categories: دسته‌بندی اسناد - enumeration_activities: دسته‌بندی زمان‌ها - enumeration_system_activity: تابع پیش‌فرض‌های سامانه - description_filter: غربال - description_search: بخش جست‌وجو - description_choose_project: پروژه‌ها - description_project_scope: حوزه جست‌وجو - description_notes: یادداشت‌ها - description_message_content: محتوای پیغام‌ها - description_query_sort_criteria_attribute: خصوصیت مرتب‌سازی - description_query_sort_criteria_direction: جهت مرتب‌سازی - description_user_mail_notification: تنظیمات آگاه‌سازی رایانامه‌ای - description_available_columns: ستون‌های موجود - description_selected_columns: ستون‌های منتخب - description_all_columns: همه ستون‌ها - description_issue_category_reassign: انتخاب دسته مسأله - description_wiki_subpages_reassign: انتخاب صفحه پدر جدید - text_repository_identifier_info: 'تنها حروف کوچک (a-z)، ارقام، خط تیره (-) و زیرخط (_) مجاز است و باید با یک حرف کوچک شروع شود.
    پس از ذخیره‌سازی، شناسه نمی‌تواند تغییر کند.' - error_exceeds_maximum_hours_per_day: "نمی‌توان بیش از %{max_hours} ساعت در یک روز زمان ثبت کرد. (%{logged_hours} ساعت تا کنون زمان ثبت شده است)" - error_can_not_delete_auth_source: "این شیوه احراز هویت در حال استفاده است و حذف آن امکان‌‌پذیر نیست." - setting_close_duplicate_issues: بستن مسأله‌های تکراری بصورت خودکار - setting_time_entry_list_defaults: ستون‌های پیش‌فرض ثبت ساعت - setting_timelog_accept_0_hours: پذیرفتن ثبت ساعت با صفر ساعت - setting_timelog_max_hours_per_day: بیش‌ترین ساعتی که می‌توان در یک روز برای هر کاربر ثبت کرد - label_x_revisions: "%{count} بازبینی" - button_actions: فعالیت‌ها - mail_body_lost_password_validity: 'توجه داشته باشید که شما فقط یک‌بار بوسیله این پیوند می‌توانند گذرواژه خود را تغییر دهید.' - text_login_required_html: زمانی که نیاز به احرازهویت نباشد، پروژه‌های عمومی و محتوای آن‌ها در دسترس خواهند بود. شما می‌توانید دسترسی افراد ناشناس را ویرایش کنید - label_login_required_yes: "بله" - label_login_required_no: "خیر، اجازه دسترسی ناشناس به پروژه‌های عمومی داده شود" - text_project_is_public_non_member: پروژه‌های عمومی و محتوای آنان برای همه کاربران وارد شده قابل دسترسی خواهد بود. - text_project_is_public_anonymous: پروژه‌های عمومی و محتوای آنان برای همگان باز خواهد بود. - label_version_and_files: نسخه‌ها (%{count}) و پرونده‌ها - label_ldap: LDAP - label_ldaps_verify_none: LDAPS (بدون بررسی گواهی‌نامه) - label_ldaps_verify_peer: LDAPS - label_ldaps_warning: پیش‌نهاد می‌شود که از یک ارتباط رمزنگاری‌شده LDAPS با بررسی گواهی‌نامه استفاده کنید تا از هر گونه دستکاری اطلاعات در زمان احراز هویت جلوگیری کنید. - label_nothing_to_preview: محتوایی برای مشاهده وجود ندارد - error_token_expired: "پیوند بازیابی گذرواژه شما منقضی شده است. لطفاً دوباره سعی کنید." - error_spent_on_future_date: "ثبت زمان برای روزهای آینده امکان‌پذیر نیست" - setting_timelog_accept_future_dates: پذیرفتن ثبت زمان برای روزهای آینده - label_delete_link_to_subtask: حذف پیوند به زیرکار - error_not_allowed_to_log_time_for_other_users: "شما اجازه ثبت زمان برای سایر کاربران را ندارید" - permission_log_time_for_other_users: ثبت زمان برای سایر کاربران - label_tomorrow: فردا - label_next_week: هفته آینده - label_next_month: ماه آینده - text_role_no_workflow: گردش کاری برای این نقش تعریف نشده‌است - text_status_no_workflow: هیچ نوع مسأله‌ای از این وضعیت در گردش کار استفاده نکرده‌است - setting_mail_handler_preferred_body_part: قسمتی از رایانامه‌های چند بخشی (HTML) ترجیح داده شود - setting_show_status_changes_in_mail_subject: نمایش تغییر وضعیت در موضوع آگاه‌سازی رایانامه‌ای - label_inherited_from_parent_project: "ارث‌بری از پروژه پدر" - label_inherited_from_group: "ارث‌بری از گروه %{name}" - label_trackers_description: توضیحات انواع مسأله - label_open_trackers_description: نمایش توضیحات تمامی انواع مسأله - label_preferred_body_part_text: متن - label_preferred_body_part_html: HTML (آزمایشی) - field_parent_issue_subject: موضوع کار پدر - permission_edit_own_issues: ویرایش مسأله‌های خود - text_select_apply_tracker: "انتخاب نوع مسأله" - label_updated_issues: مسائل به‌روزشده - text_avatar_server_config_html: خادم فعلی آواتار %{url} می‌باشد. شما می‌توانید آن را در config/configuration.yml تغییر دهید. - setting_gantt_months_limit: بیش‌ترین تعداد ماه نمایش داده‌شده در نمودار گانت - permission_import_time_entries: ورود زمان‌ها - label_import_notifications: در هنگام وارد کردن ، رایانامه‌های آگاه‌سازی را بفرست - text_gs_available: پشتیبانی ImageMagick PDF موجود است (اختیاری) - field_recently_used_projects: تعداد پروژه‌های اخیر در پنجره انتخاب پروژه - label_optgroup_bookmarks: منتخب - label_optgroup_others: سایر پروژه‌ها - label_optgroup_recents: اخیراً دیده‌شده - button_project_bookmark: افزودن منتخب - button_project_bookmark_delete: حذف منتخب - field_history_default_tab: برگه پیش‌فرض در سابقه مسأله - label_issue_history_properties: تغییرات بخش‌ها - label_issue_history_notes: یادداشت - label_last_tab_visited: آخرین برگه مشاهده‌شده - field_unique_id: شناسه یکتا - text_no_subject: بدون موضوع - setting_password_required_char_classes : مواردی که برای پسورد الزامی است - label_password_char_class_uppercase: حروف بزرگ - label_password_char_class_lowercase: حروف کوچک - label_password_char_class_digits: اعداد - label_password_char_class_special_chars: نویسه‌های خاص - text_characters_must_contain: "موارد الزامی %{character_classes}." - label_starts_with: شروع با - label_ends_with: پایان با - label_issue_fixed_version_updated: نسخه هدف به‌روز شد - setting_project_list_defaults: ستون‌های پیش‌فرض نمایش داده‌شده در پروژه‌ها - label_display_type: نمایش نتایج بصورت - label_display_type_list: جدول - label_display_type_board: فهرست - label_my_bookmarks: منتخبین من - label_import_time_entries: ورود زمان‌ها diff --git a/config/locales/fi.yml b/config/locales/fi.yml deleted file mode 100644 index 4ea27b3..0000000 --- a/config/locales/fi.yml +++ /dev/null @@ -1,1336 +0,0 @@ -# Finnish translations for Ruby on Rails -# by Marko Seppä (marko.seppa@gmail.com) - -fi: - direction: ltr - date: - formats: - default: "%e. %Bta %Y" - long: "%A%e. %Bta %Y" - short: "%e.%m.%Y" - - day_names: [Sunnuntai, Maanantai, Tiistai, Keskiviikko, Torstai, Perjantai, Lauantai] - abbr_day_names: [Su, Ma, Ti, Ke, To, Pe, La] - month_names: [~, Tammikuu, Helmikuu, Maaliskuu, Huhtikuu, Toukokuu, Kesäkuu, Heinäkuu, Elokuu, Syyskuu, Lokakuu, Marraskuu, Joulukuu] - abbr_month_names: [~, Tammi, Helmi, Maalis, Huhti, Touko, Kesä, Heinä, Elo, Syys, Loka, Marras, Joulu] - order: - - :day - - :month - - :year - - time: - formats: - default: "%a, %e. %b %Y %H:%M:%S %z" - time: "%H:%M" - short: "%e. %b %H:%M" - long: "%B %d, %Y %H:%M" - am: "aamupäivä" - pm: "iltapäivä" - - support: - array: - words_connector: ", " - two_words_connector: " ja " - last_word_connector: " ja " - - - - number: - format: - separator: "," - delimiter: "." - precision: 3 - - currency: - format: - format: "%n %u" - unit: "€" - separator: "," - delimiter: "." - precision: 2 - - percentage: - format: - # separator: - delimiter: "" - # precision: - - precision: - format: - # separator: - delimiter: "" - # precision: - - human: - format: - delimiter: "" - precision: 3 - storage_units: - format: "%n %u" - units: - byte: - one: "Tavua" - other: "Tavua" - kb: "KB" - mb: "MB" - gb: "GB" - tb: "TB" - - datetime: - distance_in_words: - half_a_minute: "puoli minuuttia" - less_than_x_seconds: - one: "aiemmin kuin sekunti" - other: "aiemmin kuin %{count} sekuntia" - x_seconds: - one: "sekunti" - other: "%{count} sekuntia" - less_than_x_minutes: - one: "aiemmin kuin minuutti" - other: "aiemmin kuin %{count} minuuttia" - x_minutes: - one: "minuutti" - other: "%{count} minuuttia" - about_x_hours: - one: "noin tunti" - other: "noin %{count} tuntia" - x_hours: - one: "1 tunti" - other: "%{count} tuntia" - x_days: - one: "päivä" - other: "%{count} päivää" - about_x_months: - one: "noin kuukausi" - other: "noin %{count} kuukautta" - x_months: - one: "kuukausi" - other: "%{count} kuukautta" - about_x_years: - one: "vuosi" - other: "noin %{count} vuotta" - over_x_years: - one: "yli vuosi" - other: "yli %{count} vuotta" - almost_x_years: - one: "almost 1 year" - other: "almost %{count} years" - prompts: - year: "Vuosi" - month: "Kuukausi" - day: "Päivä" - hour: "Tunti" - minute: "Minuutti" - second: "Sekuntia" - - activerecord: - errors: - template: - header: - one: "1 virhe esti tämän %{model} mallinteen tallentamisen" - other: "%{count} virhettä esti tämän %{model} mallinteen tallentamisen" - body: "Seuraavat kentät aiheuttivat ongelmia:" - messages: - inclusion: "ei löydy listauksesta" - exclusion: "on jo varattu" - invalid: "on kelvoton" - confirmation: "ei vastaa varmennusta" - accepted: "täytyy olla hyväksytty" - empty: "ei voi olla tyhjä" - blank: "ei voi olla sisällötön" - too_long: "on liian pitkä (maksimi on %{count} merkkiä)" - too_short: "on liian lyhyt (minimi on %{count} merkkiä)" - wrong_length: "on väärän pituinen (täytyy olla täsmälleen %{count} merkkiä)" - taken: "on jo käytössä" - not_a_number: "ei ole numero" - greater_than: "täytyy olla suurempi kuin %{count}" - greater_than_or_equal_to: "täytyy olla suurempi tai yhtä suuri kuin%{count}" - equal_to: "täytyy olla yhtä suuri kuin %{count}" - less_than: "täytyy olla pienempi kuin %{count}" - less_than_or_equal_to: "täytyy olla pienempi tai yhtä suuri kuin %{count}" - odd: "täytyy olla pariton" - even: "täytyy olla parillinen" - greater_than_start_date: "tulee olla aloituspäivän jälkeinen" - not_same_project: "ei kuulu samaan projektiin" - circular_dependency: "Tämä suhde loisi kehän." - cant_link_an_issue_with_a_descendant: "An issue can not be linked to one of its subtasks" - earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" - not_a_regexp: "is not a valid regular expression" - open_issue_with_closed_parent: "An open issue cannot be attached to a closed parent task" - must_contain_uppercase: "must contain uppercase letters (A-Z)" - must_contain_lowercase: "must contain lowercase letters (a-z)" - must_contain_digits: "must contain digits (0-9)" - must_contain_special_chars: "must contain special characters (!, $, %, ...)" - - actionview_instancetag_blank_option: Valitse, ole hyvä - - general_text_No: 'Ei' - general_text_Yes: 'Kyllä' - general_text_no: 'ei' - general_text_yes: 'kyllä' - general_lang_name: 'Finnish (Suomi)' - general_csv_separator: ',' - general_csv_decimal_separator: '.' - general_csv_encoding: ISO-8859-15 - general_pdf_fontname: freesans - general_pdf_monospaced_fontname: freemono - general_first_day_of_week: '1' - - notice_account_updated: Tilin päivitys onnistui. - notice_account_invalid_credentials: Virheellinen käyttäjätunnus tai salasana - notice_account_password_updated: Salasanan päivitys onnistui. - notice_account_wrong_password: Väärä salasana - notice_account_register_done: Tilin luonti onnistui. Aktivoidaksesi tilin seuraa linkkiä joka välitettiin sähköpostiisi. - notice_account_unknown_email: Tuntematon käyttäjä. - notice_can_t_change_password: Tämä tili käyttää ulkoista tunnistautumisjärjestelmää. Salasanaa ei voi muuttaa. - notice_account_lost_email_sent: Sinulle on lähetetty sähköposti jossa on ohje kuinka vaihdat salasanasi. - notice_account_activated: Tilisi on nyt aktivoitu, voit kirjautua sisälle. - notice_successful_create: Luonti onnistui. - notice_successful_update: Päivitys onnistui. - notice_successful_delete: Poisto onnistui. - notice_successful_connection: Yhteyden muodostus onnistui. - notice_file_not_found: Hakemaasi sivua ei löytynyt tai se on poistettu. - notice_locking_conflict: Toinen käyttäjä on päivittänyt tiedot. - notice_not_authorized: Sinulla ei ole oikeutta näyttää tätä sivua. - notice_email_sent: "Sähköposti on lähetty osoitteeseen %{value}" - notice_email_error: "Sähköpostilähetyksessä tapahtui virhe (%{value})" - notice_feeds_access_key_reseted: Atom salasana on nollaantunut. - notice_failed_to_save_issues: "%{count} Tapahtum(an/ien) tallennus epäonnistui %{total} valitut: %{ids}." - notice_no_issue_selected: "Tapahtumia ei ole valittu! Valitse tapahtumat joita haluat muokata." - notice_account_pending: "Tilisi on luotu ja odottaa ylläpitäjän hyväksyntää." - notice_default_data_loaded: Vakioasetusten palautus onnistui. - - error_can_t_load_default_data: "Vakioasetuksia ei voitu ladata: %{value}" - error_scm_not_found: "Syötettä ja/tai versiota ei löydy tietovarastosta." - error_scm_command_failed: "Tietovarastoon pääsyssä tapahtui virhe: %{value}" - - mail_subject_lost_password: "Sinun %{value} salasanasi" - mail_body_lost_password: 'Vaihtaaksesi salasanasi, napsauta seuraavaa linkkiä:' - mail_subject_register: "%{value} tilin aktivointi" - mail_body_register: 'Aktivoidaksesi tilisi, napsauta seuraavaa linkkiä:' - mail_body_account_information_external: "Voit nyt käyttää %{value} tiliäsi kirjautuaksesi järjestelmään." - mail_body_account_information: Sinun tilin tiedot - mail_subject_account_activation_request: "%{value} tilin aktivointi pyyntö" - mail_body_account_activation_request: "Uusi käyttäjä (%{value}) on rekisteröitynyt. Hänen tili odottaa hyväksyntääsi:" - - - field_name: Nimi - field_description: Kuvaus - field_summary: Yhteenveto - field_is_required: Vaaditaan - field_firstname: Etunimi - field_lastname: Sukunimi - field_mail: Sähköposti - field_filename: Tiedosto - field_filesize: Koko - field_downloads: Latausta - field_author: Tekijä - field_created_on: Luotu - field_updated_on: Päivitetty - field_field_format: Muoto - field_is_for_all: Kaikille projekteille - field_possible_values: Mahdolliset arvot - field_regexp: Säännöllinen lauseke (reg exp) - field_min_length: Minimipituus - field_max_length: Maksimipituus - field_value: Arvo - field_category: Luokka - field_title: Otsikko - field_project: Projekti - field_issue: Tapahtuma - field_status: Tila - field_notes: Muistiinpanot - field_is_closed: Tapahtuma suljettu - field_is_default: Vakioarvo - field_tracker: Tapahtuma - field_subject: Aihe - field_due_date: Määräaika - field_assigned_to: Nimetty - field_priority: Prioriteetti - field_fixed_version: Kohdeversio - field_user: Käyttäjä - field_role: Rooli - field_homepage: Kotisivu - field_is_public: Julkinen - field_parent: Aliprojekti - field_is_in_roadmap: Tapahtumat näytetään roadmap näkymässä - field_login: Kirjautuminen - field_mail_notification: Sähköposti muistutukset - field_admin: Ylläpitäjä - field_last_login_on: Viimeinen yhteys - field_language: Kieli - field_effective_date: Päivä - field_password: Salasana - field_new_password: Uusi salasana - field_password_confirmation: Vahvistus - field_version: Versio - field_type: Tyyppi - field_host: Verkko-osoite - field_port: Portti - field_account: Tili - field_base_dn: Base DN - field_attr_login: Kirjautumismääre - field_attr_firstname: Etuminenmääre - field_attr_lastname: Sukunimenmääre - field_attr_mail: Sähköpostinmääre - field_onthefly: Automaattinen käyttäjien luonti - field_start_date: Alku - field_done_ratio: "% Tehty" - field_auth_source: Varmennusmuoto - field_hide_mail: Piiloita sähköpostiosoitteeni - field_comments: Kommentti - field_url: URL - field_start_page: Aloitussivu - field_subproject: Aliprojekti - field_hours: Tuntia - field_activity: Historia - field_spent_on: Päivä - field_identifier: Tunniste - field_is_filter: Käytetään suodattimena - field_issue_to: Liittyvä tapahtuma - field_delay: Viive - field_assignable: Tapahtumia voidaan nimetä tälle roolille - field_redirect_existing_links: Uudelleenohjaa olemassa olevat linkit - field_estimated_hours: Arvioitu aika - field_column_names: Saraketta - field_time_zone: Aikavyöhyke - field_searchable: Haettava - field_default_value: Vakioarvo - - setting_app_title: Ohjelman otsikko - setting_welcome_text: Tervehdysteksti - setting_default_language: Vakiokieli - setting_login_required: Pakollinen kirjautuminen - setting_self_registration: Itserekisteröinti - setting_attachment_max_size: Liitteen maksimikoko - setting_issues_export_limit: Tapahtumien vientirajoite - setting_mail_from: Lähettäjän sähköpostiosoite - setting_bcc_recipients: Vastaanottajat piilokopiona (bcc) - setting_host_name: Verkko-osoite - setting_text_formatting: Tekstin muotoilu - setting_wiki_compression: Wiki historian pakkaus - setting_feeds_limit: Syötteen sisällön raja - setting_autofetch_changesets: Automaattisten muutosjoukkojen haku - setting_sys_api_enabled: Salli WS tietovaraston hallintaan - setting_commit_ref_keywords: Viittaavat hakusanat - setting_commit_fix_keywords: Korjaavat hakusanat - setting_autologin: Automaatinen kirjautuminen - setting_date_format: Päivän muoto - setting_time_format: Ajan muoto - setting_cross_project_issue_relations: Salli projektien väliset tapahtuminen suhteet - setting_issue_list_default_columns: Vakiosarakkeiden näyttö tapahtumalistauksessa - setting_emails_footer: Sähköpostin alatunniste - setting_protocol: Protokolla - setting_per_page_options: Sivun objektien määrän asetukset - - label_user: Käyttäjä - label_user_plural: Käyttäjät - label_user_new: Uusi käyttäjä - label_project: Projekti - label_project_new: Uusi projekti - label_project_plural: Projektit - label_x_projects: - zero: no projects - one: 1 project - other: "%{count} projects" - label_project_all: Kaikki projektit - label_project_latest: Uusimmat projektit - label_issue: Tapahtuma - label_issue_new: Uusi tapahtuma - label_issue_plural: Tapahtumat - label_issue_view_all: Näytä kaikki tapahtumat - label_issues_by: "Tapahtumat %{value}" - label_document: Dokumentti - label_document_new: Uusi dokumentti - label_document_plural: Dokumentit - label_role: Rooli - label_role_plural: Roolit - label_role_new: Uusi rooli - label_role_and_permissions: Roolit ja oikeudet - label_member: Jäsen - label_member_new: Uusi jäsen - label_member_plural: Jäsenet - label_tracker: Tapahtuma - label_tracker_plural: Tapahtumat - label_tracker_new: Uusi tapahtuma - label_workflow: Työnkulku - label_issue_status: Tapahtuman tila - label_issue_status_plural: Tapahtumien tilat - label_issue_status_new: Uusi tila - label_issue_category: Tapahtumaluokka - label_issue_category_plural: Tapahtumaluokat - label_issue_category_new: Uusi luokka - label_custom_field: Räätälöity kenttä - label_custom_field_plural: Räätälöidyt kentät - label_custom_field_new: Uusi räätälöity kenttä - label_enumerations: Lista - label_enumeration_new: Uusi arvo - label_information: Tieto - label_information_plural: Tiedot - label_register: Rekisteröidy - label_password_lost: Hukattu salasana - label_home: Koti - label_my_page: Omasivu - label_my_account: Oma tili - label_my_projects: Omat projektit - label_administration: Ylläpito - label_login: Kirjaudu sisään - label_logout: Kirjaudu ulos - label_help: Ohjeet - label_reported_issues: Raportoidut tapahtumat - label_assigned_to_me_issues: Minulle nimetyt tapahtumat - label_last_login: Viimeinen yhteys - label_registered_on: Rekisteröity - label_activity: Historia - label_new: Uusi - label_logged_as: Kirjauduttu nimellä - label_environment: Ympäristö - label_authentication: Varmennus - label_auth_source: Varmennustapa - label_auth_source_new: Uusi varmennustapa - label_auth_source_plural: Varmennustavat - label_subproject_plural: Aliprojektit - label_min_max_length: Min - Max pituudet - label_list: Lista - label_date: Päivä - label_integer: Kokonaisluku - label_float: Liukuluku - label_boolean: Totuusarvomuuttuja - label_string: Merkkijono - label_text: Pitkä merkkijono - label_attribute: Määre - label_attribute_plural: Määreet - label_no_data: Ei tietoa näytettäväksi - label_change_status: Muutos tila - label_history: Historia - label_attachment: Tiedosto - label_attachment_new: Uusi tiedosto - label_attachment_delete: Poista tiedosto - label_attachment_plural: Tiedostot - label_report: Raportti - label_report_plural: Raportit - label_news: Uutinen - label_news_new: Lisää uutinen - label_news_plural: Uutiset - label_news_latest: Viimeisimmät uutiset - label_news_view_all: Näytä kaikki uutiset - label_settings: Asetukset - label_overview: Yleiskatsaus - label_version: Versio - label_version_new: Uusi versio - label_version_plural: Versiot - label_confirmation: Vahvistus - label_export_to: Vie - label_read: Lukee... - label_public_projects: Julkiset projektit - label_open_issues: avoin, yhteensä - label_open_issues_plural: avointa, yhteensä - label_closed_issues: suljettu - label_closed_issues_plural: suljettua - label_x_open_issues_abbr: - zero: 0 open - one: 1 open - other: "%{count} open" - label_x_closed_issues_abbr: - zero: 0 closed - one: 1 closed - other: "%{count} closed" - label_total: Yhteensä - label_permissions: Oikeudet - label_current_status: Nykyinen tila - label_new_statuses_allowed: Uudet tilat sallittu - label_all: kaikki - label_none: ei mitään - label_nobody: ei kukaan - label_next: Seuraava - label_previous: Edellinen - label_used_by: Käytetty - label_details: Yksityiskohdat - label_add_note: Lisää muistiinpano - label_calendar: Kalenteri - label_months_from: kuukauden päässä - label_gantt: Gantt - label_internal: Sisäinen - label_last_changes: "viimeiset %{count} muutokset" - label_change_view_all: Näytä kaikki muutokset - label_comment: Kommentti - label_comment_plural: Kommentit - label_x_comments: - zero: no comments - one: 1 comment - other: "%{count} comments" - label_comment_add: Lisää kommentti - label_comment_added: Kommentti lisätty - label_comment_delete: Poista kommentti - label_query: Räätälöity haku - label_query_plural: Räätälöidyt haut - label_query_new: Uusi haku - label_filter_add: Lisää suodatin - label_filter_plural: Suodattimet - label_equals: sama kuin - label_not_equals: eri kuin - label_in_less_than: pienempi kuin - label_in_more_than: suurempi kuin - label_today: tänään - label_this_week: tällä viikolla - label_less_than_ago: vähemmän kuin päivää sitten - label_more_than_ago: enemän kuin päivää sitten - label_ago: päiviä sitten - label_contains: sisältää - label_not_contains: ei sisällä - label_day_plural: päivää - label_repository: Tietovarasto - label_repository_plural: Tietovarastot - label_browse: Selaus - label_revision: Versio - label_revision_plural: Versiot - label_added: lisätty - label_modified: muokattu - label_deleted: poistettu - label_latest_revision: Viimeisin versio - label_latest_revision_plural: Viimeisimmät versiot - label_view_revisions: Näytä versiot - label_max_size: Suurin koko - label_sort_highest: Siirrä ylimmäiseksi - label_sort_higher: Siirrä ylös - label_sort_lower: Siirrä alas - label_sort_lowest: Siirrä alimmaiseksi - label_roadmap: Roadmap - label_roadmap_due_in: "Määräaika %{value}" - label_roadmap_overdue: "%{value} myöhässä" - label_roadmap_no_issues: Ei tapahtumia tälle versiolle - label_search: Haku - label_result_plural: Tulokset - label_all_words: kaikki sanat - label_wiki: Wiki - label_wiki_edit: Wiki muokkaus - label_wiki_edit_plural: Wiki muokkaukset - label_wiki_page: Wiki sivu - label_wiki_page_plural: Wiki sivut - label_index_by_title: Hakemisto otsikoittain - label_index_by_date: Hakemisto päivittäin - label_current_version: Nykyinen versio - label_preview: Esikatselu - label_feed_plural: Syötteet - label_changes_details: Kaikkien muutosten yksityiskohdat - label_issue_tracking: Tapahtumien seuranta - label_spent_time: Käytetty aika - label_f_hour: "%{value} tunti" - label_f_hour_plural: "%{value} tuntia" - label_time_tracking: Ajan seuranta - label_change_plural: Muutokset - label_statistics: Tilastot - label_commits_per_month: Tapahtumaa per kuukausi - label_commits_per_author: Tapahtumaa per tekijä - label_view_diff: Näytä erot - label_diff_inline: sisällössä - label_diff_side_by_side: vierekkäin - label_options: Valinnat - label_copy_workflow_from: Kopioi työnkulku - label_permissions_report: Oikeuksien raportti - label_watched_issues: Seurattavat tapahtumat - label_related_issues: Liittyvät tapahtumat - label_applied_status: Lisätty tila - label_loading: Lataa... - label_relation_new: Uusi suhde - label_relation_delete: Poista suhde - label_relates_to: liittyy - label_duplicates: kopio - label_blocks: estää - label_blocked_by: estetty - label_precedes: edeltää - label_follows: seuraa - label_stay_logged_in: Pysy kirjautuneena - label_disabled: poistettu käytöstä - label_show_completed_versions: Näytä valmiit versiot - label_me: minä - label_board: Keskustelupalsta - label_board_new: Uusi keskustelupalsta - label_board_plural: Keskustelupalstat - label_topic_plural: Aiheet - label_message_plural: Viestit - label_message_last: Viimeisin viesti - label_message_new: Uusi viesti - label_reply_plural: Vastaukset - label_send_information: Lähetä tilin tiedot käyttäjälle - label_year: Vuosi - label_month: Kuukausi - label_week: Viikko - label_language_based: Pohjautuen käyttäjän kieleen - label_sort_by: "Lajittele %{value}" - label_send_test_email: Lähetä testi sähköposti - label_feeds_access_key_created_on: "Atom salasana luotiin %{value} sitten" - label_module_plural: Moduulit - label_added_time_by: "Lisännyt %{author} %{age} sitten" - label_updated_time: "Päivitetty %{value} sitten" - label_jump_to_a_project: Siirry projektiin... - label_file_plural: Tiedostot - label_changeset_plural: Muutosryhmät - label_default_columns: Vakiosarakkeet - label_no_change_option: (Ei muutosta) - label_bulk_edit_selected_issues: Perusmuotoile valitut tapahtumat - label_theme: Teema - label_default: Vakio - label_search_titles_only: Hae vain otsikot - label_user_mail_option_all: "Kaikista tapahtumista kaikissa projekteistani" - label_user_mail_option_selected: "Kaikista tapahtumista vain valitsemistani projekteista..." - label_user_mail_no_self_notified: "En halua muistutusta muutoksista joita itse teen" - label_registration_activation_by_email: tilin aktivointi sähköpostitse - label_registration_manual_activation: tilin aktivointi käsin - label_registration_automatic_activation: tilin aktivointi automaattisesti - label_display_per_page: "Per sivu: %{value}" - label_age: Ikä - label_change_properties: Vaihda asetuksia - label_general: Yleinen - - button_login: Kirjaudu - button_submit: Lähetä - button_save: Tallenna - button_check_all: Valitse kaikki - button_uncheck_all: Poista valinnat - button_delete: Poista - button_create: Luo - button_test: Testaa - button_edit: Muokkaa - button_add: Lisää - button_change: Muuta - button_apply: Ota käyttöön - button_clear: Tyhjää - button_lock: Lukitse - button_unlock: Vapauta - button_download: Lataa - button_list: Lista - button_view: Näytä - button_move: Siirrä - button_back: Takaisin - button_cancel: Peruuta - button_activate: Aktivoi - button_sort: Järjestä - button_log_time: Seuraa aikaa - button_rollback: Siirry takaisin tähän versioon - button_watch: Seuraa - button_unwatch: Älä seuraa - button_reply: Vastaa - button_archive: Arkistoi - button_unarchive: Palauta - button_reset: Nollaus - button_rename: Uudelleen nimeä - button_change_password: Vaihda salasana - button_copy: Kopioi - button_annotate: Lisää selitys - button_update: Päivitä - - status_active: aktiivinen - status_registered: rekisteröity - status_locked: lukittu - - text_select_mail_notifications: Valitse tapahtumat joista tulisi lähettää sähköpostimuistutus. - text_regexp_info: esim. ^[A-Z0-9]+$ - text_min_max_length_info: 0 tarkoittaa, ei rajoitusta - text_project_destroy_confirmation: Oletko varma että haluat poistaa tämän projektin ja kaikki siihen kuuluvat tiedot? - text_workflow_edit: Valitse rooli ja tapahtuma muokataksesi työnkulkua - text_are_you_sure: Oletko varma? - text_tip_issue_begin_day: tehtävä joka alkaa tänä päivänä - text_tip_issue_end_day: tehtävä joka loppuu tänä päivänä - text_tip_issue_begin_end_day: tehtävä joka alkaa ja loppuu tänä päivänä - text_caracters_maximum: "%{count} merkkiä enintään." - text_caracters_minimum: "Täytyy olla vähintään %{count} merkkiä pitkä." - text_length_between: "Pituus välillä %{min} ja %{max} merkkiä." - text_tracker_no_workflow: Työnkulkua ei määritelty tälle tapahtumalle - text_unallowed_characters: Kiellettyjä merkkejä - text_comma_separated: Useat arvot sallittu (pilkku eroteltuna). - text_issues_ref_in_commit_messages: Liitän ja korjaan ongelmia syötetyssä viestissä - text_issue_added: "Issue %{id} has been reported by %{author}." - text_issue_updated: "Issue %{id} has been updated by %{author}." - text_wiki_destroy_confirmation: Oletko varma että haluat poistaa tämän wiki:n ja kaikki sen sisältämän tiedon? - text_issue_category_destroy_question: "Jotkut tapahtumat (%{count}) ovat nimetty tälle luokalle. Mitä haluat tehdä?" - text_issue_category_destroy_assignments: Poista luokan tehtävät - text_issue_category_reassign_to: Vaihda tapahtuma tähän luokkaan - text_user_mail_option: "Valitsemattomille projekteille, saat vain muistutuksen asioista joita seuraat tai olet mukana (esim. tapahtumat joissa olet tekijä tai nimettynä)." - text_no_configuration_data: "Rooleja, tapahtumien tiloja ja työnkulkua ei vielä olla määritelty.\nOn erittäin suotavaa ladata vakioasetukset. Voit muuttaa sitä latauksen jälkeen." - text_load_default_configuration: Lataa vakioasetukset - - default_role_manager: Päälikkö - default_role_developer: Kehittäjä - default_role_reporter: Tarkastelija - default_tracker_bug: Ohjelmointivirhe - default_tracker_feature: Ominaisuus - default_tracker_support: Tuki - default_issue_status_new: Uusi - default_issue_status_in_progress: In Progress - default_issue_status_resolved: Hyväksytty - default_issue_status_feedback: Palaute - default_issue_status_closed: Suljettu - default_issue_status_rejected: Hylätty - default_doc_category_user: Käyttäjä dokumentaatio - default_doc_category_tech: Tekninen dokumentaatio - default_priority_low: Matala - default_priority_normal: Normaali - default_priority_high: Korkea - default_priority_urgent: Kiireellinen - default_priority_immediate: Valitön - default_activity_design: Suunnittelu - default_activity_development: Kehitys - - enumeration_issue_priorities: Tapahtuman tärkeysjärjestys - enumeration_doc_categories: Dokumentin luokat - enumeration_activities: Historia (ajan seuranta) - label_associated_revisions: Liittyvät versiot - setting_user_format: Käyttäjien esitysmuoto - text_status_changed_by_changeset: "Päivitetty muutosversioon %{value}." - text_issues_destroy_confirmation: 'Oletko varma että haluat poistaa valitut tapahtumat ?' - label_issue_added: Tapahtuma lisätty - label_issue_updated: Tapahtuma päivitetty - label_document_added: Dokumentti lisätty - label_message_posted: Viesti lisätty - label_file_added: Tiedosto lisätty - label_scm: SCM - text_select_project_modules: 'Valitse modulit jotka haluat käyttöön tähän projektiin:' - label_news_added: Uutinen lisätty - project_module_boards: Keskustelupalsta - project_module_issue_tracking: Tapahtuman seuranta - project_module_wiki: Wiki - project_module_files: Tiedostot - project_module_documents: Dokumentit - project_module_repository: Tietovarasto - project_module_news: Uutiset - project_module_time_tracking: Ajan seuranta - text_file_repository_writable: Kirjoitettava tiedostovarasto - text_default_administrator_account_changed: Vakio hallinoijan tunnus muutettu - text_minimagick_available: MiniMagick saatavilla (valinnainen) - button_configure: Asetukset - label_plugins: Lisäosat - label_ldap_authentication: LDAP tunnistautuminen - label_downloads_abbr: D/L - label_add_another_file: Lisää uusi tiedosto - label_this_month: tässä kuussa - text_destroy_time_entries_question: "%{hours} tuntia on raportoitu tapahtumasta jonka aiot poistaa. Mitä haluat tehdä ?" - label_last_n_days: "viimeiset %{count} päivää" - error_issue_not_found_in_project: 'Tapahtumaa ei löytynyt tai se ei kuulu tähän projektiin' - label_this_year: tänä vuonna - text_assign_time_entries_to_project: Määritä tunnit projektille - label_date_range: Aikaväli - label_last_week: viime viikolla - label_yesterday: eilen - label_optional_description: Lisäkuvaus - label_last_month: viime kuussa - text_destroy_time_entries: Poista raportoidut tunnit - text_reassign_time_entries: 'Siirrä raportoidut tunnit tälle tapahtumalle:' - label_chronological_order: Aikajärjestyksessä - label_date_to: '' - setting_activity_days_default: Päivien esittäminen projektien historiassa - label_date_from: '' - label_in: '' - setting_display_subprojects_issues: Näytä aliprojektien tapahtumat pääprojektissa oletusarvoisesti - field_comments_sorting: Näytä kommentit - label_reverse_chronological_order: Käänteisessä aikajärjestyksessä - label_preferences: Asetukset - setting_default_projects_public: Uudet projektit ovat oletuksena julkisia - label_overall_activity: Kokonaishistoria - error_scm_annotate: "Merkintää ei ole tai siihen ei voi lisätä selityksiä." - text_subprojects_destroy_warning: "Tämän aliprojekti(t): %{value} tullaan myös poistamaan." - label_and_its_subprojects: "%{value} ja aliprojektit" - mail_body_reminder: "%{count} sinulle nimettyä tapahtuma(a) erääntyy %{days} päivä sisään:" - mail_subject_reminder: "%{count} tapahtuma(a) erääntyy %{days} lähipäivinä" - text_user_wrote: "%{value} kirjoitti:" - text_user_wrote_in: "%{value} kirjoitti (%{link}):" - label_duplicated_by: kopioinut - setting_enabled_scm: Versionhallinta käytettävissä - text_enumeration_category_reassign_to: 'Siirrä täksi arvoksi:' - text_enumeration_destroy_question: "%{count} kohdetta on sijoitettu tälle arvolle." - label_incoming_emails: Saapuvat sähköpostiviestit - label_generate_key: Luo avain - setting_mail_handler_api_enabled: Ota käyttöön WS saapuville sähköposteille - setting_mail_handler_api_key: API avain - text_email_delivery_not_configured: "Sähköpostin jakelu ei ole määritelty ja sähköpostimuistutukset eivät ole käytössä.\nKonfiguroi sähköpostipalvelinasetukset (SMTP) config/configuration.yml tiedostosta ja uudelleenkäynnistä sovellus jotta asetukset astuvat voimaan." - field_parent_title: Aloitussivu - label_issue_watchers: Tapahtuman seuraajat - button_quote: Vastaa - setting_sequential_project_identifiers: Luo peräkkäiset projektien tunnisteet - notice_unable_delete_version: Version poisto epäonnistui - label_renamed: uudelleennimetty - label_copied: kopioitu - setting_plain_text_mail: vain muotoilematonta tekstiä (ei HTML) - permission_view_files: Näytä tiedostot - permission_edit_issues: Muokkaa tapahtumia - permission_edit_own_time_entries: Muokka omia aikamerkintöjä - permission_manage_public_queries: Hallinnoi julkisia hakuja - permission_add_issues: Lisää tapahtumia - permission_log_time: Lokita käytettyä aikaa - permission_view_changesets: Näytä muutosryhmät - permission_view_time_entries: Näytä käytetty aika - permission_manage_versions: Hallinnoi versioita - permission_manage_wiki: Hallinnoi wikiä - permission_manage_categories: Hallinnoi tapahtumien luokkia - permission_protect_wiki_pages: Suojaa wiki sivut - permission_comment_news: Kommentoi uutisia - permission_delete_messages: Poista viestit - permission_select_project_modules: Valitse projektin modulit - permission_edit_wiki_pages: Muokkaa wiki sivuja - permission_add_issue_watchers: Lisää seuraajia - permission_view_gantt: Näytä gantt kaavio - permission_manage_issue_relations: Hallinoi tapahtuman suhteita - permission_delete_wiki_pages: Poista wiki sivuja - permission_manage_boards: Hallinnoi keskustelupalstaa - permission_delete_wiki_pages_attachments: Poista liitteitä - permission_view_wiki_edits: Näytä wiki historia - permission_add_messages: Jätä viesti - permission_view_messages: Näytä viestejä - permission_manage_files: Hallinnoi tiedostoja - permission_edit_issue_notes: Muokkaa muistiinpanoja - permission_manage_news: Hallinnoi uutisia - permission_view_calendar: Näytä kalenteri - permission_manage_members: Hallinnoi jäseniä - permission_edit_messages: Muokkaa viestejä - permission_delete_issues: Poista tapahtumia - permission_view_issue_watchers: Näytä seuraaja lista - permission_manage_repository: Hallinnoi tietovarastoa - permission_commit_access: Tee pääsyoikeus - permission_browse_repository: Selaa tietovarastoa - permission_view_documents: Näytä dokumentit - permission_edit_project: Muokkaa projektia - permission_add_issue_notes: Lisää muistiinpanoja - permission_save_queries: Tallenna hakuja - permission_view_wiki_pages: Näytä wiki - permission_rename_wiki_pages: Uudelleennimeä wiki sivuja - permission_edit_time_entries: Muokkaa aika lokeja - permission_edit_own_issue_notes: Muokkaa omia muistiinpanoja - setting_gravatar_enabled: Käytä Gravatar käyttäjä ikoneita - label_example: Esimerkki - text_repository_usernames_mapping: "Valitse päivittääksesi Redmine käyttäjä jokaiseen käyttäjään joka löytyy tietovaraston lokista.\nKäyttäjät joilla on sama Redmine ja tietovaraston käyttäjänimi tai sähköpostiosoite, yhdistetään automaattisesti." - permission_edit_own_messages: Muokkaa omia viestejä - permission_delete_own_messages: Poista omia viestejä - label_user_activity: "Käyttäjän %{value} historia" - label_updated_time_by: "Updated by %{author} %{age} ago" - text_diff_truncated: '... This diff was truncated because it exceeds the maximum size that can be displayed.' - setting_diff_max_lines_displayed: Max number of diff lines displayed - text_plugin_assets_writable: Plugin assets directory writable - warning_attachments_not_saved: "%{count} file(s) could not be saved." - button_create_and_continue: Create and add another - text_custom_field_possible_values_info: 'One line for each value' - label_display: Display - field_editable: Editable - setting_repository_log_display_limit: Maximum number of revisions displayed on file log - setting_file_max_size_displayed: Max size of text files displayed inline - field_watcher: Watcher - setting_openid: Allow OpenID login and registration - field_identity_url: OpenID URL - label_login_with_open_id_option: or login with OpenID - field_content: Content - label_descending: Descending - label_sort: Sort - label_ascending: Ascending - label_date_from_to: From %{start} to %{end} - label_greater_or_equal: ">=" - label_less_or_equal: <= - text_wiki_page_destroy_question: This page has %{descendants} child page(s) and descendant(s). What do you want to do? - text_wiki_page_reassign_children: Reassign child pages to this parent page - text_wiki_page_nullify_children: Keep child pages as root pages - text_wiki_page_destroy_children: Delete child pages and all their descendants - setting_password_min_length: Minimum password length - field_group_by: Group results by - mail_subject_wiki_content_updated: "'%{id}' wiki page has been updated" - label_wiki_content_added: Wiki page added - mail_subject_wiki_content_added: "'%{id}' wiki page has been added" - mail_body_wiki_content_added: The '%{id}' wiki page has been added by %{author}. - label_wiki_content_updated: Wiki page updated - mail_body_wiki_content_updated: The '%{id}' wiki page has been updated by %{author}. - permission_add_project: Create project - setting_new_project_user_role_id: Role given to a non-admin user who creates a project - label_view_all_revisions: View all revisions - label_tag: Tag - label_branch: Branch - error_no_tracker_in_project: No tracker is associated to this project. Please check the Project settings. - error_no_default_issue_status: No default issue status is defined. Please check your configuration (Go to "Administration -> Issue statuses"). - text_journal_changed: "%{label} changed from %{old} to %{new}" - text_journal_set_to: "%{label} set to %{value}" - text_journal_deleted: "%{label} deleted (%{old})" - label_group_plural: Groups - label_group: Group - label_group_new: New group - label_time_entry_plural: Spent time - text_journal_added: "%{label} %{value} added" - field_active: Active - enumeration_system_activity: System Activity - permission_delete_issue_watchers: Delete watchers - version_status_closed: closed - version_status_locked: locked - version_status_open: open - error_can_not_reopen_issue_on_closed_version: An issue assigned to a closed version can not be reopened - label_user_anonymous: Anonymous - button_move_and_follow: Move and follow - setting_default_projects_modules: Default enabled modules for new projects - setting_gravatar_default: Default Gravatar image - field_sharing: Sharing - label_version_sharing_hierarchy: With project hierarchy - label_version_sharing_system: With all projects - label_version_sharing_descendants: With subprojects - label_version_sharing_tree: With project tree - label_version_sharing_none: Not shared - error_can_not_archive_project: This project can not be archived - button_copy_and_follow: Copy and follow - label_copy_source: Source - setting_issue_done_ratio: Calculate the issue done ratio with - setting_issue_done_ratio_issue_status: Use the issue status - error_issue_done_ratios_not_updated: Issue done ratios not updated. - error_workflow_copy_target: Please select target tracker(s) and role(s) - setting_issue_done_ratio_issue_field: Use the issue field - label_copy_same_as_target: Same as target - label_copy_target: Target - notice_issue_done_ratios_updated: Issue done ratios updated. - error_workflow_copy_source: Please select a source tracker or role - label_update_issue_done_ratios: Update issue done ratios - setting_start_of_week: Start calendars on - permission_view_issues: View Issues - label_display_used_statuses_only: Only display statuses that are used by this tracker - label_revision_id: Revision %{value} - label_api_access_key: API access key - label_api_access_key_created_on: API access key created %{value} ago - label_feeds_access_key: Atom access key - notice_api_access_key_reseted: Your API access key was reset. - setting_rest_api_enabled: Enable REST web service - label_missing_api_access_key: Missing an API access key - label_missing_feeds_access_key: Missing a Atom access key - button_show: Show - text_line_separated: Multiple values allowed (one line for each value). - setting_mail_handler_body_delimiters: Truncate emails after one of these lines - permission_add_subprojects: Create subprojects - label_subproject_new: New subproject - 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. - Are you sure you want to continue? - label_close_versions: Close completed versions - label_board_sticky: Sticky - label_board_locked: Locked - permission_export_wiki_pages: Export wiki pages - setting_cache_formatted_text: Cache formatted text - permission_manage_project_activities: Manage project activities - error_unable_delete_issue_status: Unable to delete issue status (%{value}) - label_profile: Profile - permission_manage_subtasks: Manage subtasks - field_parent_issue: Parent task - label_subtask_plural: Subtasks - label_project_copy_notifications: Send email notifications during the project copy - error_can_not_delete_custom_field: Unable to delete custom field - error_unable_to_connect: Unable to connect (%{value}) - error_can_not_remove_role: This role is in use and can not be deleted. - error_can_not_delete_tracker: This tracker contains issues and cannot be deleted. - field_principal: Principal - notice_failed_to_save_members: "Failed to save member(s): %{errors}." - text_zoom_out: Zoom out - text_zoom_in: Zoom in - notice_unable_delete_time_entry: Unable to delete time log entry. - label_overall_spent_time: Overall spent time - field_time_entries: Log time - project_module_gantt: Gantt - project_module_calendar: Calendar - button_edit_associated_wikipage: "Edit associated Wiki page: %{page_title}" - field_text: Text field - setting_default_notification_option: Default notification option - label_user_mail_option_only_my_events: Only for things I watch or I'm involved in - label_user_mail_option_none: No events - field_member_of_group: Assignee's group - field_assigned_to_role: Assignee's role - notice_not_authorized_archived_project: The project you're trying to access has been archived. - label_principal_search: "Search for user or group:" - label_user_search: "Search for user:" - field_visible: Visible - setting_commit_logtime_activity_id: Activity for logged time - text_time_logged_by_changeset: Applied in changeset %{value}. - setting_commit_logtime_enabled: Enable time logging - notice_gantt_chart_truncated: The chart was truncated because it exceeds the maximum number of items that can be displayed (%{max}) - setting_gantt_items_limit: Maximum number of items displayed on the gantt chart - field_warn_on_leaving_unsaved: Warn me when leaving a page with unsaved text - text_warn_on_leaving_unsaved: The current page contains unsaved text that will be lost if you leave this page. - label_my_queries: My custom queries - text_journal_changed_no_detail: "%{label} updated" - label_news_comment_added: Comment added to a news - button_expand_all: Expand all - button_collapse_all: Collapse all - label_additional_workflow_transitions_for_assignee: Additional transitions allowed when the user is the assignee - label_additional_workflow_transitions_for_author: Additional transitions allowed when the user is the author - label_bulk_edit_selected_time_entries: Bulk edit selected time entries - text_time_entries_destroy_confirmation: Are you sure you want to delete the selected time entr(y/ies)? - label_role_anonymous: Anonymous - label_role_non_member: Non member - label_issue_note_added: Note added - label_issue_status_updated: Status updated - label_issue_priority_updated: Priority updated - label_issues_visibility_own: Issues created by or assigned to the user - field_issues_visibility: Issues visibility - label_issues_visibility_all: All issues - permission_set_own_issues_private: Set own issues public or private - field_is_private: Private - permission_set_issues_private: Set issues public or private - label_issues_visibility_public: All non private issues - text_issues_destroy_descendants_confirmation: This will also delete %{count} subtask(s). - field_commit_logs_encoding: Tee viestien koodaus - field_scm_path_encoding: Path encoding - text_scm_path_encoding_note: "Default: UTF-8" - field_path_to_repository: Path to repository - field_root_directory: Root directory - field_cvs_module: Module - field_cvsroot: CVSROOT - text_mercurial_repository_note: Local repository (e.g. /hgrepo, c:\hgrepo) - text_scm_command: Command - text_scm_command_version: Version - label_git_report_last_commit: Report last commit for files and directories - notice_issue_successful_create: Issue %{id} created. - label_between: between - setting_issue_group_assignment: Allow issue assignment to groups - label_diff: diff - text_git_repository_note: Repository is bare and local (e.g. /gitrepo, c:\gitrepo) - description_query_sort_criteria_direction: Sort direction - description_project_scope: Search scope - description_filter: Filter - description_user_mail_notification: Mail notification settings - description_message_content: Message content - description_available_columns: Available Columns - description_issue_category_reassign: Choose issue category - description_search: Searchfield - description_notes: Notes - description_choose_project: Projects - description_query_sort_criteria_attribute: Sort attribute - description_wiki_subpages_reassign: Choose new parent page - description_selected_columns: Selected Columns - label_parent_revision: Parent - label_child_revision: Child - error_scm_annotate_big_text_file: The entry cannot be annotated, as it exceeds the maximum text file size. - setting_default_issue_start_date_to_creation_date: Use current date as start date for new issues - button_edit_section: Edit this section - setting_repositories_encodings: Attachments and repositories encodings - description_all_columns: All Columns - button_export: Export - label_export_options: "%{export_format} export options" - error_attachment_too_big: This file cannot be uploaded because it exceeds the maximum allowed file size (%{max_size}) - notice_failed_to_save_time_entries: "Failed to save %{count} time entrie(s) on %{total} selected: %{ids}." - label_x_issues: - zero: 0 tapahtuma - one: 1 tapahtuma - other: "%{count} tapahtumat" - label_repository_new: New repository - field_repository_is_default: Main repository - label_copy_attachments: Copy attachments - label_item_position: "%{position}/%{count}" - label_completed_versions: Completed versions - text_project_identifier_info: Only lower case letters (a-z), numbers, dashes and underscores are allowed.
    Once saved, the identifier cannot be changed. - field_multiple: Multiple values - setting_commit_cross_project_ref: Allow issues of all the other projects to be referenced and fixed - text_issue_conflict_resolution_add_notes: Add my notes and discard my other changes - text_issue_conflict_resolution_overwrite: Apply my changes anyway (previous notes will be kept but some changes may be overwritten) - notice_issue_update_conflict: The issue has been updated by an other user while you were editing it. - text_issue_conflict_resolution_cancel: Discard all my changes and redisplay %{link} - permission_manage_related_issues: Manage related issues - field_auth_source_ldap_filter: LDAP filter - label_search_for_watchers: Search for watchers to add - notice_account_deleted: Your account has been permanently deleted. - setting_unsubscribe: Allow users to delete their own account - button_delete_my_account: Delete my account - text_account_destroy_confirmation: |- - Are you sure you want to proceed? - Your account will be permanently deleted, with no way to reactivate it. - error_session_expired: Your session has expired. Please login again. - text_session_expiration_settings: "Warning: changing these settings may expire the current sessions including yours." - setting_session_lifetime: Session maximum lifetime - setting_session_timeout: Session inactivity timeout - label_session_expiration: Session expiration - permission_close_project: Close / reopen the project - button_close: Close - button_reopen: Reopen - project_status_active: active - project_status_closed: closed - project_status_archived: archived - text_project_closed: This project is closed and read-only. - notice_user_successful_create: User %{id} created. - field_core_fields: Standard fields - field_timeout: Timeout (in seconds) - setting_thumbnails_enabled: Display attachment thumbnails - setting_thumbnails_size: Thumbnails size (in pixels) - label_status_transitions: Status transitions - label_fields_permissions: Fields permissions - label_readonly: Read-only - label_required: Required - text_repository_identifier_info: Only lower case letters (a-z), numbers, dashes and underscores are allowed.
    Once saved, the identifier cannot be changed. - field_board_parent: Parent forum - label_attribute_of_project: Project's %{name} - label_attribute_of_author: Author's %{name} - label_attribute_of_assigned_to: Assignee's %{name} - label_attribute_of_fixed_version: Target version's %{name} - label_copy_subtasks: Copy subtasks - label_copied_to: copied to - label_copied_from: copied from - label_any_issues_in_project: any issues in project - label_any_issues_not_in_project: any issues not in project - field_private_notes: Private notes - permission_view_private_notes: View private notes - permission_set_notes_private: Set notes as private - label_no_issues_in_project: no issues in project - label_any: kaikki - label_last_n_weeks: last %{count} weeks - setting_cross_project_subtasks: Allow cross-project subtasks - label_cross_project_descendants: With subprojects - label_cross_project_tree: With project tree - label_cross_project_hierarchy: With project hierarchy - label_cross_project_system: With all projects - button_hide: Hide - setting_non_working_week_days: Non-working days - label_in_the_next_days: in the next - label_in_the_past_days: in the past - label_attribute_of_user: User's %{name} - text_turning_multiple_off: If you disable multiple values, multiple values will be - removed in order to preserve only one value per item. - label_attribute_of_issue: Issue's %{name} - permission_add_documents: Add documents - permission_edit_documents: Edit documents - permission_delete_documents: Delete documents - label_gantt_progress_line: Progress line - setting_jsonp_enabled: Enable JSONP support - field_inherit_members: Inherit members - field_closed_on: Closed - field_generate_password: Generate password - setting_default_projects_tracker_ids: Default trackers for new projects - label_total_time: Yhteensä - text_scm_config: You can configure your SCM commands in config/configuration.yml. Please restart the application after editing it. - text_scm_command_not_available: SCM command is not available. Please check settings on the administration panel. - setting_emails_header: Email header - notice_account_not_activated_yet: You haven't activated your account yet. If you want - to receive a new activation email, please click this link. - notice_account_locked: Your account is locked. - label_hidden: Hidden - label_visibility_private: to me only - label_visibility_roles: to these roles only - label_visibility_public: to any users - field_must_change_passwd: Must change password at next logon - notice_new_password_must_be_different: The new password must be different from the - current password - setting_mail_handler_excluded_filenames: Exclude attachments by name - text_convert_available: ImageMagick convert available (optional) - label_link: Link - label_only: only - label_drop_down_list: drop-down list - label_checkboxes: checkboxes - label_link_values_to: Link values to URL - setting_force_default_language_for_anonymous: Force default language for anonymous - users - setting_force_default_language_for_loggedin: Force default language for logged-in - users - label_custom_field_select_type: Select the type of object to which the custom field - is to be attached - label_issue_assigned_to_updated: Assignee updated - label_check_for_updates: Check for updates - label_latest_compatible_version: Latest compatible version - label_unknown_plugin: Unknown plugin - label_radio_buttons: radio buttons - label_group_anonymous: Anonymous users - label_group_non_member: Non member users - label_add_projects: Add projects - field_default_status: Default status - text_subversion_repository_note: 'Examples: file:///, http://, https://, svn://, svn+[tunnelscheme]://' - field_users_visibility: Users visibility - label_users_visibility_all: All active users - label_users_visibility_members_of_visible_projects: Members of visible projects - label_edit_attachments: Edit attached files - setting_link_copied_issue: Link issues on copy - label_link_copied_issue: Link copied issue - label_ask: Ask - label_search_attachments_yes: Search attachment filenames and descriptions - label_search_attachments_no: Do not search attachments - label_search_attachments_only: Search attachments only - label_search_open_issues_only: Open issues only - field_address: Sähköposti - setting_max_additional_emails: Maximum number of additional email addresses - label_email_address_plural: Emails - label_email_address_add: Add email address - label_enable_notifications: Enable notifications - label_disable_notifications: Disable notifications - setting_search_results_per_page: Search results per page - label_blank_value: blank - permission_copy_issues: Copy issues - error_password_expired: Your password has expired or the administrator requires you - to change it. - field_time_entries_visibility: Time logs visibility - setting_password_max_age: Require password change after - label_parent_task_attributes: Parent tasks attributes - label_parent_task_attributes_derived: Calculated from subtasks - label_parent_task_attributes_independent: Independent of subtasks - label_time_entries_visibility_all: All time entries - label_time_entries_visibility_own: Time entries created by the user - label_member_management: Member management - label_member_management_all_roles: All roles - label_member_management_selected_roles_only: Only these roles - label_password_required: Confirm your password to continue - label_total_spent_time: Overall spent time - notice_import_finished: "%{count} items have been imported" - notice_import_finished_with_errors: "%{count} out of %{total} items could not be imported" - error_invalid_file_encoding: The file is not a valid %{encoding} encoded file - error_invalid_csv_file_or_settings: The file is not a CSV file or does not match the - settings below - error_can_not_read_import_file: An error occurred while reading the file to import - permission_import_issues: Import issues - label_import_issues: Import issues - label_select_file_to_import: Select the file to import - label_fields_separator: Field separator - label_fields_wrapper: Field wrapper - label_encoding: Encoding - label_comma_char: Comma - label_semi_colon_char: Semicolon - label_quote_char: Quote - label_double_quote_char: Double quote - label_fields_mapping: Fields mapping - label_file_content_preview: File content preview - label_create_missing_values: Create missing values - button_import: Import - field_total_estimated_hours: Total estimated time - label_api: API - label_total_plural: Totals - label_assigned_issues: Assigned issues - label_field_format_enumeration: Key/value list - label_f_hour_short: '%{value} h' - field_default_version: Default version - error_attachment_extension_not_allowed: Attachment extension %{extension} is not allowed - setting_attachment_extensions_allowed: Allowed extensions - setting_attachment_extensions_denied: Disallowed extensions - label_any_open_issues: any open issues - label_no_open_issues: no open issues - label_default_values_for_new_users: Default values for new users - error_ldap_bind_credentials: Invalid LDAP Account/Password - setting_sys_api_key: API avain - setting_lost_password: Hukattu salasana - mail_subject_security_notification: Security notification - mail_body_security_notification_change: ! '%{field} was changed.' - mail_body_security_notification_change_to: ! '%{field} was changed to %{value}.' - mail_body_security_notification_add: ! '%{field} %{value} was added.' - mail_body_security_notification_remove: ! '%{field} %{value} was removed.' - mail_body_security_notification_notify_enabled: Email address %{value} now receives - notifications. - mail_body_security_notification_notify_disabled: Email address %{value} no longer - receives notifications. - mail_body_settings_updated: ! 'The following settings were changed:' - field_remote_ip: IP address - label_wiki_page_new: New wiki page - label_relations: Relations - button_filter: Filter - mail_body_password_updated: Your password has been changed. - label_no_preview: No preview available - error_no_tracker_allowed_for_new_issue_in_project: The project doesn't have any trackers - for which you can create an issue - label_tracker_all: All trackers - label_new_project_issue_tab_enabled: Display the "New issue" tab - setting_new_item_menu_tab: Project menu tab for creating new objects - label_new_object_tab_enabled: Display the "+" drop-down - error_no_projects_with_tracker_allowed_for_new_issue: There are no projects with trackers - for which you can create an issue - field_textarea_font: Font used for text areas - label_font_default: Default font - label_font_monospace: Monospaced font - label_font_proportional: Proportional font - setting_timespan_format: Time span format - label_table_of_contents: Table of contents - setting_commit_logs_formatting: Apply text formatting to commit messages - setting_mail_handler_enable_regex: Enable regular expressions - error_move_of_child_not_possible: 'Subtask %{child} could not be moved to the new - project: %{errors}' - error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted: Spent time cannot - be reassigned to an issue that is about to be deleted - setting_timelog_required_fields: Required fields for time logs - label_attribute_of_object: '%{object_name}''s %{name}' - label_user_mail_option_only_assigned: Only for things I watch or I am assigned to - label_user_mail_option_only_owner: Only for things I watch or I am the owner of - warning_fields_cleared_on_bulk_edit: Changes will result in the automatic deletion - of values from one or more fields on the selected objects - field_updated_by: Updated by - field_last_updated_by: Last updated by - field_full_width_layout: Full width layout - label_last_notes: Last notes - field_digest: Checksum - field_default_assigned_to: Default assignee - setting_show_custom_fields_on_registration: Show custom fields on registration - permission_view_news: View news - label_no_preview_alternative_html: No preview available. %{link} the file instead. - label_no_preview_download: Download - setting_close_duplicate_issues: Close duplicate issues automatically - error_exceeds_maximum_hours_per_day: Cannot log more than %{max_hours} hours on the - same day (%{logged_hours} hours have already been logged) - setting_time_entry_list_defaults: Timelog list defaults - setting_timelog_accept_0_hours: Accept time logs with 0 hours - setting_timelog_max_hours_per_day: Maximum hours that can be logged per day and user - label_x_revisions: "%{count} revisions" - error_can_not_delete_auth_source: This authentication mode is in use and cannot be - deleted. - button_actions: Actions - mail_body_lost_password_validity: Please be aware that you may change the password - only once using this link. - text_login_required_html: When not requiring authentication, public projects and their - contents are openly available on the network. You can edit - the applicable permissions. - label_login_required_yes: 'Yes' - label_login_required_no: No, allow anonymous access to public projects - text_project_is_public_non_member: Public projects and their contents are available - to all logged-in users. - text_project_is_public_anonymous: Public projects and their contents are openly available - on the network. - label_version_and_files: Versions (%{count}) and Files - label_ldap: LDAP - label_ldaps_verify_none: LDAPS (without certificate check) - label_ldaps_verify_peer: LDAPS - label_ldaps_warning: It is recommended to use an encrypted LDAPS connection with certificate - check to prevent any manipulation during the authentication process. - label_nothing_to_preview: Nothing to preview - error_token_expired: This password recovery link has expired, please try again. - error_spent_on_future_date: Cannot log time on a future date - setting_timelog_accept_future_dates: Accept time logs on future dates - label_delete_link_to_subtask: Poista suhde - error_not_allowed_to_log_time_for_other_users: You are not allowed to log time - for other users - permission_log_time_for_other_users: Log spent time for other users - label_tomorrow: tomorrow - label_next_week: next week - label_next_month: next month - text_role_no_workflow: No workflow defined for this role - text_status_no_workflow: No tracker uses this status in the workflows - setting_mail_handler_preferred_body_part: Preferred part of multipart (HTML) emails - setting_show_status_changes_in_mail_subject: Show status changes in issue mail notifications - subject - label_inherited_from_parent_project: Inherited from parent project - label_inherited_from_group: Inherited from group %{name} - label_trackers_description: Trackers description - label_open_trackers_description: View all trackers description - label_preferred_body_part_text: Text - label_preferred_body_part_html: HTML (experimental) - field_parent_issue_subject: Parent task subject - permission_edit_own_issues: Edit own issues - text_select_apply_tracker: Select tracker - label_updated_issues: Updated issues - text_avatar_server_config_html: The current avatar server is %{url}. - You can configure it in config/configuration.yml. - setting_gantt_months_limit: Maximum number of months displayed on the gantt chart - permission_import_time_entries: Import time entries - label_import_notifications: Send email notifications during the import - text_gs_available: ImageMagick PDF support available (optional) - field_recently_used_projects: Number of recently used projects in jump box - label_optgroup_bookmarks: Bookmarks - label_optgroup_others: Other projects - label_optgroup_recents: Recently used - button_project_bookmark: Add bookmark - button_project_bookmark_delete: Remove bookmark - field_history_default_tab: Issue's history default tab - label_issue_history_properties: Property changes - label_issue_history_notes: Notes - label_last_tab_visited: Last visited tab - field_unique_id: Unique ID - text_no_subject: no subject - setting_password_required_char_classes: Required character classes for passwords - label_password_char_class_uppercase: uppercase letters - label_password_char_class_lowercase: lowercase letters - label_password_char_class_digits: digits - label_password_char_class_special_chars: special characters - text_characters_must_contain: Must contain %{character_classes}. - label_starts_with: starts with - label_ends_with: ends with - label_issue_fixed_version_updated: Target version updated - setting_project_list_defaults: Projects list defaults - label_display_type: Display results as - label_display_type_list: List - label_display_type_board: Board - label_my_bookmarks: My bookmarks - label_import_time_entries: Import time entries diff --git a/config/locales/fr.yml b/config/locales/fr.yml deleted file mode 100644 index 9cd41b0..0000000 --- a/config/locales/fr.yml +++ /dev/null @@ -1,1305 +0,0 @@ -# French translations for Ruby on Rails -# by Christian Lescuyer (christian@flyingcoders.com) -# contributor: Sebastien Grosjean - ZenCocoon.com -# contributor: Thibaut Cuvelier - Developpez.com - -fr: - direction: ltr - date: - formats: - default: "%d/%m/%Y" - short: "%e %b" - long: "%e %B %Y" - long_ordinal: "%e %B %Y" - only_day: "%e" - - day_names: [dimanche, lundi, mardi, mercredi, jeudi, vendredi, samedi] - abbr_day_names: [dim, lun, mar, mer, jeu, ven, sam] - - # Don't forget the nil at the beginning; there's no such thing as a 0th month - month_names: [~, janvier, février, mars, avril, mai, juin, juillet, août, septembre, octobre, novembre, décembre] - abbr_month_names: [~, jan., fév., mar., avr., mai, juin, juil., août, sept., oct., nov., déc.] - # Used in date_select and datime_select. - order: - - :day - - :month - - :year - - time: - formats: - default: "%d/%m/%Y %H:%M" - time: "%H:%M" - short: "%d %b %H:%M" - long: "%A %d %B %Y %H:%M:%S %Z" - long_ordinal: "%A %d %B %Y %H:%M:%S %Z" - only_second: "%S" - am: 'am' - pm: 'pm' - - datetime: - distance_in_words: - half_a_minute: "30 secondes" - less_than_x_seconds: - zero: "moins d'une seconde" - one: "moins d'une seconde" - other: "moins de %{count} secondes" - x_seconds: - one: "1 seconde" - other: "%{count} secondes" - less_than_x_minutes: - zero: "moins d'une minute" - one: "moins d'une minute" - other: "moins de %{count} minutes" - x_minutes: - one: "1 minute" - other: "%{count} minutes" - about_x_hours: - one: "environ une heure" - other: "environ %{count} heures" - x_hours: - one: "une heure" - other: "%{count} heures" - x_days: - one: "un jour" - other: "%{count} jours" - about_x_months: - one: "environ un mois" - other: "environ %{count} mois" - x_months: - one: "un mois" - other: "%{count} mois" - about_x_years: - one: "environ un an" - other: "environ %{count} ans" - over_x_years: - one: "plus d'un an" - other: "plus de %{count} ans" - almost_x_years: - one: "presqu'un an" - other: "presque %{count} ans" - prompts: - year: "Année" - month: "Mois" - day: "Jour" - hour: "Heure" - minute: "Minute" - second: "Seconde" - - number: - format: - precision: 3 - separator: ',' - delimiter: ' ' - currency: - format: - unit: '€' - precision: 2 - format: '%n %u' - human: - format: - precision: 3 - storage_units: - format: "%n %u" - units: - byte: - one: "octet" - other: "octets" - kb: "ko" - mb: "Mo" - gb: "Go" - tb: "To" - - support: - array: - sentence_connector: 'et' - skip_last_comma: true - word_connector: ", " - two_words_connector: " et " - last_word_connector: " et " - - activerecord: - errors: - template: - header: - one: "Impossible d'enregistrer %{model} : une erreur" - other: "Impossible d'enregistrer %{model} : %{count} erreurs." - body: "Veuillez vérifier les champs suivants :" - messages: - inclusion: "n'est pas inclus(e) dans la liste" - exclusion: "n'est pas disponible" - invalid: "n'est pas valide" - confirmation: "ne concorde pas avec la confirmation" - accepted: "doit être accepté(e)" - empty: "doit être renseigné(e)" - blank: "doit être renseigné(e)" - too_long: "est trop long (pas plus de %{count} caractères)" - too_short: "est trop court (au moins %{count} caractères)" - wrong_length: "ne fait pas la bonne longueur (doit comporter %{count} caractères)" - taken: "est déjà utilisé" - not_a_number: "n'est pas un nombre" - not_a_date: "n'est pas une date valide" - greater_than: "doit être supérieur à %{count}" - greater_than_or_equal_to: "doit être supérieur ou égal à %{count}" - equal_to: "doit être égal à %{count}" - less_than: "doit être inférieur à %{count}" - less_than_or_equal_to: "doit être inférieur ou égal à %{count}" - odd: "doit être impair" - even: "doit être pair" - greater_than_start_date: "doit être postérieure à la date de début" - not_same_project: "n'appartient pas au même projet" - circular_dependency: "Cette relation créerait une dépendance circulaire" - cant_link_an_issue_with_a_descendant: "Une demande ne peut pas être liée à l'une de ses sous-tâches" - earlier_than_minimum_start_date: "ne peut pas être antérieure au %{date} à cause des demandes qui précèdent" - not_a_regexp: "n'est pas une expression regulière valide" - open_issue_with_closed_parent: "Une demande ouverte ne peut pas être rattachée à une demande fermée" - must_contain_uppercase: "must contain uppercase letters (A-Z)" - must_contain_lowercase: "must contain lowercase letters (a-z)" - must_contain_digits: "must contain digits (0-9)" - must_contain_special_chars: "must contain special characters (!, $, %, ...)" - - actionview_instancetag_blank_option: Choisir - - general_text_No: 'Non' - general_text_Yes: 'Oui' - general_text_no: 'non' - general_text_yes: 'oui' - general_lang_name: 'French (Français)' - general_csv_separator: ';' - general_csv_decimal_separator: ',' - general_csv_encoding: ISO-8859-1 - general_pdf_fontname: freesans - general_pdf_monospaced_fontname: freemono - general_first_day_of_week: '1' - - notice_account_updated: Le compte a été mis à jour avec succès. - notice_account_invalid_credentials: Identifiant ou mot de passe invalide. - notice_account_password_updated: Mot de passe mis à jour avec succès. - notice_account_wrong_password: Mot de passe incorrect - notice_account_register_done: Un message contenant les instructions pour activer votre compte vous a été envoyé à l'adresse %{email}. - notice_account_unknown_email: Aucun compte ne correspond à cette adresse. - notice_account_not_activated_yet: Vous n'avez pas encore activé votre compte. Si vous voulez recevoir un nouveau message d'activation, veuillez cliquer sur ce lien. - notice_account_locked: Votre compte est verrouillé. - notice_can_t_change_password: Ce compte utilise une authentification externe. Impossible de changer le mot de passe. - notice_account_lost_email_sent: Un message contenant les instructions pour choisir un nouveau mot de passe vous a été envoyé. - notice_account_activated: Votre compte a été activé. Vous pouvez à présent vous connecter. - notice_successful_create: Création effectuée avec succès. - notice_successful_update: Mise à jour effectuée avec succès. - notice_successful_delete: Suppression effectuée avec succès. - notice_successful_connection: Connexion réussie. - notice_file_not_found: "La page à laquelle vous souhaitez accéder n'existe pas ou a été supprimée." - notice_locking_conflict: Les données ont été mises à jour par un autre utilisateur. Mise à jour impossible. - notice_not_authorized: "Vous n'êtes pas autorisé à accéder à cette page." - notice_not_authorized_archived_project: Le projet auquel vous tentez d'accéder a été archivé. - notice_email_sent: "Un email a été envoyé à %{value}" - notice_email_error: "Erreur lors de l'envoi de l'email (%{value})" - notice_feeds_access_key_reseted: "Votre clé d'accès aux flux Atom a été réinitialisée." - notice_api_access_key_reseted: Votre clé d'accès API a été réinitialisée. - notice_failed_to_save_issues: "%{count} demande(s) sur les %{total} sélectionnées n'ont pas pu être mise(s) à jour : %{ids}." - notice_failed_to_save_time_entries: "%{count} temps passé(s) sur les %{total} sélectionnés n'ont pas pu être mis à jour: %{ids}." - notice_failed_to_save_members: "Erreur lors de la sauvegarde des membres: %{errors}." - notice_no_issue_selected: "Aucune demande sélectionnée ! Cochez les demandes que vous voulez mettre à jour." - notice_account_pending: "Votre compte a été créé et attend l'approbation de l'administrateur." - notice_default_data_loaded: Paramétrage par défaut chargé avec succès. - notice_unable_delete_version: Impossible de supprimer cette version. - notice_unable_delete_time_entry: Impossible de supprimer le temps passé. - notice_issue_done_ratios_updated: L'avancement des demandes a été mis à jour. - notice_gantt_chart_truncated: "Le diagramme a été tronqué car il excède le nombre maximal d'éléments pouvant être affichés (%{max})" - notice_issue_successful_create: "Demande %{id} créée." - notice_issue_update_conflict: "La demande a été mise à jour par un autre utilisateur pendant que vous la modifiez." - notice_account_deleted: "Votre compte a été définitivement supprimé." - notice_user_successful_create: "Utilisateur %{id} créé." - notice_new_password_must_be_different: Votre nouveau mot de passe doit être différent de votre mot de passe actuel - notice_import_finished: "%{count} éléments ont été importé(s)" - notice_import_finished_with_errors: "%{count} élément(s) sur %{total} n'ont pas pu être importé(s)" - - error_can_t_load_default_data: "Une erreur s'est produite lors du chargement du paramétrage : %{value}" - error_scm_not_found: "L'entrée et/ou la révision demandée n'existe pas dans le dépôt." - error_scm_command_failed: "Une erreur s'est produite lors de l'accès au dépôt : %{value}" - error_scm_annotate: "L'entrée n'existe pas ou ne peut pas être annotée." - error_scm_annotate_big_text_file: Cette entrée ne peut pas être annotée car elle excède la taille maximale. - error_issue_not_found_in_project: "La demande n'existe pas ou n'appartient pas à ce projet" - error_no_tracker_in_project: "Aucun tracker n'est associé à ce projet. Vérifier la configuration du projet." - error_no_default_issue_status: "Aucun statut de demande n'est défini par défaut. Vérifier votre configuration (Administration -> Statuts de demandes)." - error_can_not_delete_custom_field: Impossible de supprimer le champ personnalisé - error_can_not_delete_tracker: Ce tracker contient des demandes et ne peut pas être supprimé. - error_can_not_remove_role: Ce rôle est utilisé et ne peut pas être supprimé. - error_can_not_reopen_issue_on_closed_version: 'Une demande assignée à une version fermée ne peut pas être réouverte' - error_can_not_archive_project: "Ce projet ne peut pas être archivé" - error_issue_done_ratios_not_updated: L'avancement des demandes n'a pas pu être mis à jour. - error_workflow_copy_source: 'Veuillez sélectionner un tracker et/ou un rôle source' - error_workflow_copy_target: 'Veuillez sélectionner les trackers et rôles cibles' - error_unable_delete_issue_status: Impossible de supprimer le statut de demande (%{value}) - error_unable_to_connect: Connexion impossible (%{value}) - error_attachment_too_big: Ce fichier ne peut pas être attaché car il excède la taille maximale autorisée (%{max_size}) - error_session_expired: "Votre session a expiré. Veuillez vous reconnecter." - warning_attachments_not_saved: "%{count} fichier(s) n'ont pas pu être sauvegardés." - error_password_expired: "Votre mot de passe a expiré ou nécessite d'être changé." - error_invalid_file_encoding: "Le fichier n'est pas un fichier %{encoding} valide" - error_invalid_csv_file_or_settings: "Le fichier n'est pas un fichier CSV ou n'est pas conforme aux paramètres sélectionnés" - error_can_not_read_import_file: "Une erreur est survenue lors de la lecture du fichier à importer" - error_attachment_extension_not_allowed: "L'extension %{extension} n'est pas autorisée" - error_ldap_bind_credentials: "Identifiant ou mot de passe LDAP incorrect" - error_no_tracker_allowed_for_new_issue_in_project: "Le projet ne dispose d'aucun tracker sur lequel vous pouvez créer une demande" - error_no_projects_with_tracker_allowed_for_new_issue: "Aucun projet ne dispose d'un tracker sur lequel vous pouvez créer une demande" - error_move_of_child_not_possible: "La sous-tâche %{child} n'a pas pu être déplacée dans le nouveau projet : %{errors}" - error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted: "Le temps passé ne peut pas être réaffecté à une demande qui va être supprimée" - warning_fields_cleared_on_bulk_edit: "Les changements apportés entraîneront la suppression automatique des valeurs d'un ou plusieurs champs sur les objets sélectionnés" - error_exceeds_maximum_hours_per_day: "Impossible de saisir plus de %{max_hours} heures pour le même jour (%{logged_hours} heures ont déjà été saisies)" - - mail_subject_lost_password: "Votre mot de passe %{value}" - mail_body_lost_password: 'Pour changer votre mot de passe, cliquez sur le lien suivant :' - mail_subject_register: "Activation de votre compte %{value}" - mail_body_register: 'Pour activer votre compte, cliquez sur le lien suivant :' - mail_body_account_information_external: "Vous pouvez utiliser votre compte %{value} pour vous connecter." - mail_body_account_information: Paramètres de connexion de votre compte - mail_subject_account_activation_request: "Demande d'activation d'un compte %{value}" - mail_body_account_activation_request: "Un nouvel utilisateur (%{value}) s'est inscrit. Son compte nécessite votre approbation :" - mail_subject_reminder: "%{count} demande(s) arrivent à échéance (%{days})" - mail_body_reminder: "%{count} demande(s) qui vous sont assignées arrivent à échéance dans les %{days} prochains jours :" - mail_subject_wiki_content_added: "Page wiki '%{id}' ajoutée" - mail_body_wiki_content_added: "La page wiki '%{id}' a été ajoutée par %{author}." - mail_subject_wiki_content_updated: "Page wiki '%{id}' mise à jour" - mail_body_wiki_content_updated: "La page wiki '%{id}' a été mise à jour par %{author}." - mail_body_settings_updated: "Les paramètres suivants ont été modifiés :" - mail_body_password_updated: "Votre mot de passe a été changé." - - field_name: Nom - field_description: Description - field_summary: Résumé - field_is_required: Obligatoire - field_firstname: Prénom - field_lastname: Nom - field_mail: Email - field_address: Email - field_filename: Fichier - field_filesize: Taille - field_downloads: Téléchargements - field_author: Auteur - field_created_on: Créé - field_updated_on: Mis-à-jour - field_closed_on: Fermé - field_field_format: Format - field_is_for_all: Pour tous les projets - field_possible_values: Valeurs possibles - field_regexp: Expression régulière - field_min_length: Longueur minimum - field_max_length: Longueur maximum - field_value: Valeur - field_category: Catégorie - field_title: Titre - field_project: Projet - field_issue: Demande - field_status: Statut - field_notes: Notes - field_is_closed: Demande fermée - field_is_default: Valeur par défaut - field_tracker: Tracker - field_subject: Sujet - field_due_date: Echéance - field_assigned_to: Assigné à - field_priority: Priorité - field_fixed_version: Version cible - field_user: Utilisateur - field_principal: Principal - field_role: Rôle - field_homepage: Site web - field_is_public: Public - field_parent: Sous-projet de - field_is_in_roadmap: Demandes affichées dans la roadmap - field_login: Identifiant - field_mail_notification: Notifications par mail - field_admin: Administrateur - field_last_login_on: Dernière connexion - field_language: Langue - field_effective_date: Date - field_password: Mot de passe - field_new_password: Nouveau mot de passe - field_password_confirmation: Confirmation - field_version: Version - field_type: Type - field_host: Hôte - field_port: Port - field_account: Compte - field_base_dn: Base DN - field_attr_login: Attribut Identifiant - field_attr_firstname: Attribut Prénom - field_attr_lastname: Attribut Nom - field_attr_mail: Attribut Email - field_onthefly: Création des utilisateurs à la volée - field_start_date: Début - field_done_ratio: "% réalisé" - field_auth_source: Mode d'authentification - field_hide_mail: Cacher mon adresse mail - field_comments: Commentaire - field_url: URL - field_start_page: Page de démarrage - field_subproject: Sous-projet - field_hours: Heures - field_activity: Activité - field_spent_on: Date - field_identifier: Identifiant - field_is_filter: Utilisé comme filtre - field_issue_to: Demande liée - field_delay: Retard - field_assignable: Demandes assignables aux utilisateurs ayant ce rôle - field_redirect_existing_links: Rediriger les liens existants - field_estimated_hours: Temps estimé - field_column_names: Colonnes - field_time_entries: Temps passé - field_time_zone: Fuseau horaire - field_searchable: Utilisé pour les recherches - field_default_value: Valeur par défaut - field_comments_sorting: Afficher les commentaires - field_parent_title: Page parent - field_editable: Modifiable - field_watcher: Observateur - field_identity_url: URL OpenID - field_content: Contenu - field_group_by: Grouper par - field_sharing: Partage - field_parent_issue: Tâche parente - field_member_of_group: Groupe de l'assigné - field_assigned_to_role: Rôle de l'assigné - field_text: Champ texte - field_visible: Visible - field_warn_on_leaving_unsaved: "M'avertir lorsque je quitte une page contenant du texte non sauvegardé" - field_issues_visibility: Visibilité des demandes - field_is_private: Privée - field_commit_logs_encoding: Encodage des messages de commit - field_scm_path_encoding: Encodage des chemins - field_path_to_repository: Chemin du dépôt - field_root_directory: Répertoire racine - field_cvsroot: CVSROOT - field_cvs_module: Module - field_repository_is_default: Dépôt principal - field_multiple: Valeurs multiples - field_auth_source_ldap_filter: Filtre LDAP - field_core_fields: Champs standards - field_timeout: "Timeout (en secondes)" - field_board_parent: Forum parent - field_private_notes: Notes privées - field_inherit_members: Hériter les membres - field_generate_password: Générer un mot de passe - field_must_change_passwd: Doit changer de mot de passe à la prochaine connexion - field_default_status: Statut par défaut - field_users_visibility: Visibilité des utilisateurs - field_time_entries_visibility: Visibilité du temps passé - field_total_estimated_hours: Temps estimé total - field_default_version: Version par défaut - field_textarea_font: Police utilisée pour les champs texte - field_updated_by: Mise à jour par - field_last_updated_by: Dernière mise à jour par - field_full_width_layout: Afficher sur toute la largeur - field_digest: Checksum - field_default_assigned_to: Assigné par défaut - - setting_app_title: Titre de l'application - setting_welcome_text: Texte d'accueil - setting_default_language: Langue par défaut - setting_login_required: Authentification obligatoire - setting_self_registration: Inscription des nouveaux utilisateurs - setting_show_custom_fields_on_registration: Afficher les champs personnalisés sur le formulaire d'inscription - setting_attachment_max_size: Taille maximale des fichiers - setting_issues_export_limit: Limite d'exportation des demandes - setting_mail_from: Adresse d'émission - setting_bcc_recipients: Destinataires en copie cachée (cci) - setting_plain_text_mail: Mail en texte brut (non HTML) - setting_host_name: Nom d'hôte et chemin - setting_text_formatting: Formatage du texte - setting_wiki_compression: Compression de l'historique des pages wiki - setting_feeds_limit: Nombre maximal d'éléments dans les flux Atom - setting_default_projects_public: Définir les nouveaux projets comme publics par défaut - setting_autofetch_changesets: Récupération automatique des commits - setting_sys_api_enabled: Activer les WS pour la gestion des dépôts - setting_commit_ref_keywords: Mots-clés de référencement - setting_commit_fix_keywords: Mots-clés de résolution - setting_autologin: Durée maximale de connexion automatique - setting_date_format: Format de date - setting_time_format: Format d'heure - setting_timespan_format: Format des temps en heures - setting_cross_project_issue_relations: Autoriser les relations entre demandes de différents projets - setting_cross_project_subtasks: Autoriser les sous-tâches dans des projets différents - setting_issue_list_default_columns: Colonnes affichées par défaut sur la liste des demandes - setting_repositories_encodings: Encodages des fichiers et des dépôts - setting_emails_header: En-tête des emails - setting_emails_footer: Pied-de-page des emails - setting_protocol: Protocole - setting_per_page_options: Options d'objets affichés par page - setting_user_format: Format d'affichage des utilisateurs - setting_activity_days_default: Nombre de jours affichés sur l'activité des projets - setting_display_subprojects_issues: Afficher par défaut les demandes des sous-projets sur les projets principaux - setting_enabled_scm: SCM activés - setting_mail_handler_body_delimiters: "Tronquer les emails après l'une de ces lignes" - setting_mail_handler_enable_regex: "Utiliser les expressions regulières" - setting_mail_handler_api_enabled: "Activer le WS pour la réception d'emails" - setting_mail_handler_api_key: Clé de protection de l'API - setting_sequential_project_identifiers: Générer des identifiants de projet séquentiels - setting_gravatar_enabled: Afficher les Gravatar des utilisateurs - setting_gravatar_default: Image Gravatar par défaut - setting_diff_max_lines_displayed: Nombre maximum de lignes de diff affichées - setting_file_max_size_displayed: Taille maximum des fichiers texte affichés en ligne - setting_repository_log_display_limit: "Nombre maximum de révisions affichées sur l'historique d'un fichier" - setting_openid: "Autoriser l'authentification et l'enregistrement OpenID" - setting_password_max_age: Expiration des mots de passe après - setting_password_min_length: Longueur minimum des mots de passe - setting_new_project_user_role_id: Rôle donné à un utilisateur non-administrateur qui crée un projet - setting_default_projects_modules: Modules activés par défaut pour les nouveaux projets - setting_issue_done_ratio: Calcul de l'avancement des demandes - setting_issue_done_ratio_issue_field: 'Utiliser le champ % effectué' - setting_issue_done_ratio_issue_status: Utiliser le statut - setting_start_of_week: Jour de début des calendriers - setting_rest_api_enabled: Activer l'API REST - setting_cache_formatted_text: Mettre en cache le texte formaté - setting_default_notification_option: Option de notification par défaut - setting_commit_logtime_enabled: Permettre la saisie de temps - setting_commit_logtime_activity_id: Activité pour le temps saisi - setting_gantt_items_limit: Nombre maximum d'éléments affichés sur le gantt - setting_issue_group_assignment: Permettre l'assignation des demandes aux groupes - setting_default_issue_start_date_to_creation_date: Donner à la date de début d'une nouvelle demande la valeur de la date du jour - setting_commit_cross_project_ref: Permettre le référencement et la résolution des demandes de tous les autres projets - setting_unsubscribe: Permettre aux utilisateurs de supprimer leur propre compte - setting_session_lifetime: Durée de vie maximale des sessions - setting_session_timeout: Durée maximale d'inactivité - setting_thumbnails_enabled: Afficher les vignettes des images - setting_thumbnails_size: Taille des vignettes (en pixels) - setting_non_working_week_days: Jours non travaillés - setting_jsonp_enabled: Activer le support JSONP - setting_default_projects_tracker_ids: Trackers par défaut pour les nouveaux projets - setting_mail_handler_excluded_filenames: Exclure les fichiers attachés par leur nom - setting_force_default_language_for_anonymous: Forcer la langue par défault pour les utilisateurs anonymes - setting_force_default_language_for_loggedin: Forcer la langue par défault pour les utilisateurs identifiés - setting_link_copied_issue: Lier les demandes lors de la copie - setting_max_additional_emails: Nombre maximal d'adresses email additionnelles - setting_search_results_per_page: Résultats de recherche affichés par page - setting_attachment_extensions_allowed: Extensions autorisées - setting_attachment_extensions_denied: Extensions non autorisées - setting_sys_api_key: Clé de protection de l'API - setting_lost_password: Autoriser la réinitialisation par email de mot de passe perdu - setting_new_item_menu_tab: Onglet de création d'objets dans le menu du project - setting_commit_logs_formatting: Appliquer le formattage de texte aux messages de commit - setting_timelog_required_fields: Champs obligatoire pour les temps passés - setting_close_duplicate_issues: Fermer les doublons automatiquement - setting_time_entry_list_defaults: Affichage par défaut de la liste des temps passés - setting_timelog_accept_0_hours: Autoriser la saisie de temps avec 0 heure - setting_timelog_max_hours_per_day: Maximum d'heures pouvant être saisies par un utilisateur sur un jour - - permission_add_project: Créer un projet - permission_add_subprojects: Créer des sous-projets - permission_edit_project: Modifier le projet - permission_close_project: Fermer / réouvrir le projet - permission_select_project_modules: Choisir les modules - permission_manage_members: Gérer les membres - permission_manage_project_activities: Gérer les activités - permission_manage_versions: Gérer les versions - permission_manage_categories: Gérer les catégories de demandes - permission_view_issues: Voir les demandes - permission_add_issues: Créer des demandes - permission_edit_issues: Modifier les demandes - permission_copy_issues: Copier les demandes - permission_manage_issue_relations: Gérer les relations - permission_set_issues_private: Rendre les demandes publiques ou privées - permission_set_own_issues_private: Rendre ses propres demandes publiques ou privées - permission_add_issue_notes: Ajouter des notes - permission_edit_issue_notes: Modifier les notes - permission_edit_own_issue_notes: Modifier ses propres notes - permission_view_private_notes: Voir les notes privées - permission_set_notes_private: Rendre les notes privées - permission_delete_issues: Supprimer les demandes - permission_manage_public_queries: Gérer les requêtes publiques - permission_save_queries: Sauvegarder les requêtes - permission_view_gantt: Voir le gantt - permission_view_calendar: Voir le calendrier - permission_view_issue_watchers: Voir la liste des observateurs - permission_add_issue_watchers: Ajouter des observateurs - permission_delete_issue_watchers: Supprimer des observateurs - permission_log_time: Saisir le temps passé - permission_view_time_entries: Voir le temps passé - permission_edit_time_entries: Modifier les temps passés - permission_edit_own_time_entries: Modifier son propre temps passé - permission_view_news: Voir les annonces - permission_manage_news: Gérer les annonces - permission_comment_news: Commenter les annonces - permission_view_documents: Voir les documents - permission_add_documents: Ajouter des documents - permission_edit_documents: Modifier les documents - permission_delete_documents: Supprimer les documents - permission_manage_files: Gérer les fichiers - permission_view_files: Voir les fichiers - permission_manage_wiki: Gérer le wiki - permission_rename_wiki_pages: Renommer les pages - permission_delete_wiki_pages: Supprimer les pages - permission_view_wiki_pages: Voir le wiki - permission_view_wiki_edits: "Voir l'historique des modifications" - permission_edit_wiki_pages: Modifier les pages - permission_delete_wiki_pages_attachments: Supprimer les fichiers joints - permission_protect_wiki_pages: Protéger les pages - permission_manage_repository: Gérer le dépôt de sources - permission_browse_repository: Parcourir les sources - permission_view_changesets: Voir les révisions - permission_commit_access: Droit de commit - permission_manage_boards: Gérer les forums - permission_view_messages: Voir les messages - permission_add_messages: Poster un message - permission_edit_messages: Modifier les messages - permission_edit_own_messages: Modifier ses propres messages - permission_delete_messages: Supprimer les messages - permission_delete_own_messages: Supprimer ses propres messages - permission_export_wiki_pages: Exporter les pages - permission_manage_subtasks: Gérer les sous-tâches - permission_manage_related_issues: Gérer les demandes associées - permission_import_issues: Importer des demandes - - project_module_issue_tracking: Suivi des demandes - project_module_time_tracking: Suivi du temps passé - project_module_news: Publication d'annonces - project_module_documents: Publication de documents - project_module_files: Publication de fichiers - project_module_wiki: Wiki - project_module_repository: Dépôt de sources - project_module_boards: Forums de discussion - project_module_calendar: Calendrier - project_module_gantt: Gantt - - label_user: Utilisateur - label_user_plural: Utilisateurs - label_user_new: Nouvel utilisateur - label_user_anonymous: Anonyme - label_project: Projet - label_project_new: Nouveau projet - label_project_plural: Projets - label_x_projects: - zero: aucun projet - one: un projet - other: "%{count} projets" - label_project_all: Tous les projets - label_project_latest: Derniers projets - label_issue: Demande - label_issue_new: Nouvelle demande - label_issue_plural: Demandes - label_issue_view_all: Voir toutes les demandes - label_issues_by: "Demandes par %{value}" - label_issue_added: Demande ajoutée - label_issue_updated: Demande mise à jour - label_issue_note_added: Note ajoutée - label_issue_status_updated: Statut changé - label_issue_assigned_to_updated: Assigné changé - label_issue_priority_updated: Priorité changée - label_document: Document - label_document_new: Nouveau document - label_document_plural: Documents - label_document_added: Document ajouté - label_role: Rôle - label_role_plural: Rôles - label_role_new: Nouveau rôle - label_role_and_permissions: Rôles et permissions - label_role_anonymous: Anonyme - label_role_non_member: Non membre - label_member: Membre - label_member_new: Nouveau membre - label_member_plural: Membres - label_tracker: Tracker - label_tracker_plural: Trackers - label_tracker_all: Tous les trackers - label_tracker_new: Nouveau tracker - label_workflow: Workflow - label_issue_status: Statut de demandes - label_issue_status_plural: Statuts de demandes - label_issue_status_new: Nouveau statut - label_issue_category: Catégorie de demandes - label_issue_category_plural: Catégories de demandes - label_issue_category_new: Nouvelle catégorie - label_custom_field: Champ personnalisé - label_custom_field_plural: Champs personnalisés - label_custom_field_new: Nouveau champ personnalisé - label_enumerations: Listes de valeurs - label_enumeration_new: Nouvelle valeur - label_information: Information - label_information_plural: Informations - label_register: S'enregistrer - label_login_with_open_id_option: S'authentifier avec OpenID - label_password_lost: Mot de passe perdu - label_password_required: Confirmez votre mot de passe pour continuer - label_home: Accueil - label_my_page: Ma page - label_my_account: Mon compte - label_my_projects: Mes projets - label_administration: Administration - label_login: Connexion - label_logout: Déconnexion - label_help: Aide - label_reported_issues: Demandes soumises - label_assigned_issues: Demandes assignées - label_assigned_to_me_issues: Demandes qui me sont assignées - label_last_login: Dernière connexion - label_registered_on: Inscrit le - label_activity: Activité - label_overall_activity: Activité globale - label_user_activity: "Activité de %{value}" - label_new: Nouveau - label_logged_as: Connecté en tant que - label_environment: Environnement - label_authentication: Authentification - label_auth_source: Mode d'authentification - label_auth_source_new: Nouveau mode d'authentification - label_auth_source_plural: Modes d'authentification - label_subproject_plural: Sous-projets - label_subproject_new: Nouveau sous-projet - label_and_its_subprojects: "%{value} et ses sous-projets" - label_min_max_length: Longueurs mini - maxi - label_list: Liste - label_date: Date - label_integer: Entier - label_float: Nombre décimal - label_boolean: Booléen - label_string: Texte - label_text: Texte long - label_attribute: Attribut - label_attribute_plural: Attributs - label_no_data: Aucune donnée à afficher - label_change_status: Changer le statut - label_history: Historique - label_attachment: Fichier - label_attachment_new: Nouveau fichier - label_attachment_delete: Supprimer le fichier - label_attachment_plural: Fichiers - label_file_added: Fichier ajouté - label_report: Rapport - label_report_plural: Rapports - label_news: Annonce - label_news_new: Nouvelle annonce - label_news_plural: Annonces - label_news_latest: Dernières annonces - label_news_view_all: Voir toutes les annonces - label_news_added: Annonce ajoutée - label_news_comment_added: Commentaire ajouté à une annonce - label_settings: Configuration - label_overview: Aperçu - label_version: Version - label_version_new: Nouvelle version - label_version_plural: Versions - label_close_versions: Fermer les versions terminées - label_confirmation: Confirmation - label_export_to: 'Formats disponibles :' - label_read: Lire... - label_public_projects: Projets publics - label_open_issues: ouvert - label_open_issues_plural: ouverts - label_closed_issues: fermé - label_closed_issues_plural: fermés - label_x_open_issues_abbr: - zero: 0 ouverte - one: 1 ouverte - other: "%{count} ouvertes" - label_x_closed_issues_abbr: - zero: 0 fermée - one: 1 fermée - other: "%{count} fermées" - label_x_issues: - zero: 0 demande - one: 1 demande - other: "%{count} demandes" - label_total: Total - label_total_plural: Totaux - label_total_time: Temps total - label_permissions: Permissions - label_current_status: Statut actuel - label_new_statuses_allowed: Nouveaux statuts autorisés - label_all: tous - label_any: tous - label_none: aucun - label_nobody: personne - label_next: Suivant - label_previous: Précédent - label_used_by: Utilisé par - label_details: Détails - label_add_note: Ajouter une note - label_calendar: Calendrier - label_months_from: mois depuis - label_gantt: Gantt - label_internal: Interne - label_last_changes: "%{count} derniers changements" - label_change_view_all: Voir tous les changements - label_comment: Commentaire - label_comment_plural: Commentaires - label_x_comments: - zero: aucun commentaire - one: un commentaire - other: "%{count} commentaires" - label_comment_add: Ajouter un commentaire - label_comment_added: Commentaire ajouté - label_comment_delete: Supprimer les commentaires - label_query: Rapport personnalisé - label_query_plural: Rapports personnalisés - label_query_new: Nouveau rapport - label_my_queries: Mes rapports personnalisés - label_filter_add: Ajouter le filtre - label_filter_plural: Filtres - label_equals: égal - label_not_equals: différent - label_in_less_than: dans moins de - label_in_more_than: dans plus de - label_in_the_next_days: dans les prochains jours - label_in_the_past_days: dans les derniers jours - label_greater_or_equal: '>=' - label_less_or_equal: '<=' - label_between: entre - label_in: dans - label_today: aujourd'hui - label_yesterday: hier - label_this_week: cette semaine - label_last_week: la semaine dernière - label_last_n_weeks: "les %{count} dernières semaines" - label_last_n_days: "les %{count} derniers jours" - label_this_month: ce mois-ci - label_last_month: le mois dernier - label_this_year: cette année - label_date_range: Période - label_less_than_ago: il y a moins de - label_more_than_ago: il y a plus de - label_ago: il y a - label_contains: contient - label_not_contains: ne contient pas - label_any_issues_in_project: une demande du projet - label_any_issues_not_in_project: une demande hors du projet - label_no_issues_in_project: aucune demande du projet - label_any_open_issues: une demande ouverte - label_no_open_issues: aucune demande ouverte - label_day_plural: jours - label_repository: Dépôt - label_repository_new: Nouveau dépôt - label_repository_plural: Dépôts - label_browse: Parcourir - label_branch: Branche - label_tag: Tag - label_revision: Révision - label_revision_plural: Révisions - label_revision_id: "Révision %{value}" - label_associated_revisions: Révisions associées - label_added: ajouté - label_modified: modifié - label_copied: copié - label_renamed: renommé - label_deleted: supprimé - label_latest_revision: Dernière révision - label_latest_revision_plural: Dernières révisions - label_view_revisions: Voir les révisions - label_view_all_revisions: Voir toutes les révisions - label_x_revisions: "%{count} révisions" - label_max_size: Taille maximale - label_sort_highest: Remonter en premier - label_sort_higher: Remonter - label_sort_lower: Descendre - label_sort_lowest: Descendre en dernier - label_roadmap: Roadmap - label_roadmap_due_in: "Échéance dans %{value}" - label_roadmap_overdue: "En retard de %{value}" - label_roadmap_no_issues: Aucune demande pour cette version - label_search: Recherche - label_result_plural: Résultats - label_all_words: Tous les mots - label_wiki: Wiki - label_wiki_edit: Révision wiki - label_wiki_edit_plural: Révisions wiki - label_wiki_page: Page wiki - label_wiki_page_plural: Pages wiki - label_wiki_page_new: Nouvelle page wiki - label_index_by_title: Index par titre - label_index_by_date: Index par date - label_current_version: Version actuelle - label_preview: Prévisualisation - label_feed_plural: Flux Atom - label_changes_details: Détails de tous les changements - label_issue_tracking: Suivi des demandes - label_spent_time: Temps passé - label_total_spent_time: Temps passé total - label_overall_spent_time: Temps passé global - label_f_hour: "%{value} heure" - label_f_hour_plural: "%{value} heures" - label_f_hour_short: "%{value} h" - label_time_tracking: Suivi du temps - label_change_plural: Changements - label_statistics: Statistiques - label_commits_per_month: Commits par mois - label_commits_per_author: Commits par auteur - label_diff: diff - label_view_diff: Voir les différences - label_diff_inline: en ligne - label_diff_side_by_side: côte à côte - label_options: Options - label_copy_workflow_from: Copier le workflow de - label_permissions_report: Synthèse des permissions - label_watched_issues: Demandes surveillées - label_related_issues: Demandes liées - label_applied_status: Statut appliqué - label_loading: Chargement... - label_relation_new: Nouvelle relation - label_relation_delete: Supprimer la relation - label_relates_to: Lié à - label_duplicates: Duplique - label_duplicated_by: Dupliqué par - label_blocks: Bloque - label_blocked_by: Bloqué par - label_precedes: Précède - label_follows: Suit - label_copied_to: Copié vers - label_copied_from: Copié depuis - label_stay_logged_in: Rester connecté - label_disabled: désactivé - label_show_completed_versions: Voir les versions passées - label_me: moi - label_board: Forum - label_board_new: Nouveau forum - label_board_plural: Forums - label_board_locked: Verrouillé - label_board_sticky: Sticky - label_topic_plural: Discussions - label_message_plural: Messages - label_message_last: Dernier message - label_message_new: Nouveau message - label_message_posted: Message ajouté - label_reply_plural: Réponses - label_send_information: Envoyer les informations à l'utilisateur - label_year: Année - label_month: Mois - label_week: Semaine - label_date_from: Du - label_date_to: Au - label_language_based: Basé sur la langue de l'utilisateur - label_sort_by: "Trier par %{value}" - label_send_test_email: Envoyer un email de test - label_feeds_access_key: Clé d'accès Atom - label_missing_feeds_access_key: Clé d'accès Atom manquante - label_feeds_access_key_created_on: "Clé d'accès Atom créée il y a %{value}" - label_module_plural: Modules - label_added_time_by: "Ajouté par %{author} il y a %{age}" - label_updated_time_by: "Mis à jour par %{author} il y a %{age}" - label_updated_time: "Mis à jour il y a %{value}" - label_jump_to_a_project: Aller à un projet... - label_file_plural: Fichiers - label_changeset_plural: Révisions - label_default_columns: Colonnes par défaut - label_no_change_option: (Pas de changement) - label_bulk_edit_selected_issues: Modifier les demandes sélectionnées - label_bulk_edit_selected_time_entries: Modifier les temps passés sélectionnés - label_theme: Thème - label_default: Défaut - label_search_titles_only: Uniquement dans les titres - label_user_mail_option_all: "Pour tous les événements de tous mes projets" - label_user_mail_option_selected: "Pour tous les événements des projets sélectionnés..." - label_user_mail_option_none: Aucune notification - label_user_mail_option_only_my_events: Seulement pour ce que je surveille - label_user_mail_no_self_notified: "Je ne veux pas être notifié des changements que j'effectue" - label_registration_activation_by_email: activation du compte par email - label_registration_manual_activation: activation manuelle du compte - label_registration_automatic_activation: activation automatique du compte - label_display_per_page: "Par page : %{value}" - label_age: Âge - label_change_properties: Changer les propriétés - label_general: Général - label_scm: SCM - label_plugins: Plugins - label_ldap_authentication: Authentification LDAP - label_downloads_abbr: D/L - label_optional_description: Description facultative - label_add_another_file: Ajouter un autre fichier - label_preferences: Préférences - label_chronological_order: Dans l'ordre chronologique - label_reverse_chronological_order: Dans l'ordre chronologique inverse - label_incoming_emails: Emails entrants - label_generate_key: Générer une clé - label_issue_watchers: Observateurs - label_example: Exemple - label_display: Affichage - label_sort: Tri - label_ascending: Croissant - label_descending: Décroissant - label_date_from_to: Du %{start} au %{end} - label_wiki_content_added: Page wiki ajoutée - label_wiki_content_updated: Page wiki mise à jour - label_group: Groupe - label_group_plural: Groupes - label_group_new: Nouveau groupe - label_group_anonymous: Utilisateurs anonymes - label_group_non_member: Utilisateurs non membres - label_time_entry_plural: Temps passé - label_version_sharing_none: Non partagé - label_version_sharing_descendants: Avec les sous-projets - label_version_sharing_hierarchy: Avec toute la hiérarchie - label_version_sharing_tree: Avec tout l'arbre - label_version_sharing_system: Avec tous les projets - label_update_issue_done_ratios: Mettre à jour l'avancement des demandes - label_copy_source: Source - label_copy_target: Cible - label_copy_same_as_target: Comme la cible - label_display_used_statuses_only: N'afficher que les statuts utilisés dans ce tracker - label_api_access_key: Clé d'accès API - label_missing_api_access_key: Clé d'accès API manquante - label_api_access_key_created_on: Clé d'accès API créée il y a %{value} - label_profile: Profil - label_subtask_plural: Sous-tâches - label_project_copy_notifications: Envoyer les notifications durant la copie du projet - label_principal_search: "Rechercher un utilisateur ou un groupe :" - label_user_search: "Rechercher un utilisateur :" - label_additional_workflow_transitions_for_author: Autorisations supplémentaires lorsque l'utilisateur a créé la demande - label_additional_workflow_transitions_for_assignee: Autorisations supplémentaires lorsque la demande est assignée à l'utilisateur - label_issues_visibility_all: Toutes les demandes - label_issues_visibility_public: Toutes les demandes non privées - label_issues_visibility_own: Demandes créées par ou assignées à l'utilisateur - label_git_report_last_commit: Afficher le dernier commit des fichiers et répertoires - label_parent_revision: Parent - label_child_revision: Enfant - label_export_options: Options d'exportation %{export_format} - label_copy_attachments: Copier les fichiers - label_copy_subtasks: Copier les sous-tâches - label_item_position: "%{position} sur %{count}" - label_completed_versions: Versions passées - label_search_for_watchers: Rechercher des observateurs - label_session_expiration: Expiration des sessions - label_status_transitions: Changements de statut - label_fields_permissions: Permissions sur les champs - label_readonly: Lecture - label_required: Obligatoire - label_hidden: Caché - label_attribute_of_project: "%{name} du projet" - label_attribute_of_issue: "%{name} de la demande" - label_attribute_of_author: "%{name} de l'auteur" - label_attribute_of_assigned_to: "%{name} de l'assigné" - label_attribute_of_user: "%{name} de l'utilisateur" - label_attribute_of_fixed_version: "%{name} de la version cible" - label_attribute_of_object: "%{name} de \"%{object_name}\"" - label_cross_project_descendants: Avec les sous-projets - label_cross_project_tree: Avec tout l'arbre - label_cross_project_hierarchy: Avec toute la hiérarchie - label_cross_project_system: Avec tous les projets - label_gantt_progress_line: Ligne de progression - label_visibility_private: par moi uniquement - label_visibility_roles: par ces rôles uniquement - label_visibility_public: par tout le monde - label_link: Lien - label_only: seulement - label_drop_down_list: liste déroulante - label_checkboxes: cases à cocher - label_radio_buttons: boutons radio - label_link_values_to: Lier les valeurs vers l'URL - label_custom_field_select_type: Selectionner le type d'objet auquel attacher le champ personnalisé - label_check_for_updates: Vérifier les mises à jour - label_latest_compatible_version: Dernière version compatible - label_unknown_plugin: Plugin inconnu - label_add_projects: Ajouter des projets - label_users_visibility_all: Tous les utilisateurs actifs - label_users_visibility_members_of_visible_projects: Membres des projets visibles - label_edit_attachments: Modifier les fichiers attachés - label_link_copied_issue: Lier la demande copiée - label_ask: Demander - label_search_attachments_yes: Rechercher les noms et descriptions de fichiers - label_search_attachments_no: Ne pas rechercher les fichiers - label_search_attachments_only: Rechercher les fichiers uniquement - label_search_open_issues_only: Demandes ouvertes uniquement - label_email_address_plural: Emails - label_email_address_add: Ajouter une adresse email - label_enable_notifications: Activer les notifications - label_disable_notifications: Désactiver les notifications - label_blank_value: non renseigné - label_parent_task_attributes: Attributs des tâches parentes - label_time_entries_visibility_all: Tous les temps passés - label_time_entries_visibility_own: Ses propres temps passés - label_member_management: Gestion des membres - label_member_management_all_roles: Tous les rôles - label_member_management_selected_roles_only: Ces rôles uniquement - label_import_issues: Importer des demandes - label_select_file_to_import: Sélectionner le fichier à importer - label_fields_separator: Séparateur de champs - label_fields_wrapper: Délimiteur de texte - label_encoding: Encodage - label_comma_char: Virgule - label_semi_colon_char: Point virgule - label_quote_char: Apostrophe - label_double_quote_char: Double apostrophe - label_fields_mapping: Correspondance des champs - label_file_content_preview: Aperçu du contenu du fichier - label_create_missing_values: Créer les valeurs manquantes - label_api: API - label_field_format_enumeration: Liste clé/valeur - label_default_values_for_new_users: Valeurs par défaut pour les nouveaux utilisateurs - label_relations: Relations - label_new_project_issue_tab_enabled: Afficher l'onglet "Nouvelle demande" - label_new_object_tab_enabled: Afficher le menu déroulant "+" - label_table_of_contents: Contenu - label_font_default: Police par défaut - label_font_monospace: Police non proportionnelle - label_font_proportional: Police proportionnelle - label_last_notes: Dernières notes - label_trackers_description: Description des trackers - label_open_trackers_description: Afficher la description des trackers - - button_login: Connexion - button_submit: Soumettre - button_save: Sauvegarder - button_check_all: Tout cocher - button_uncheck_all: Tout décocher - button_collapse_all: Plier tout - button_expand_all: Déplier tout - button_delete: Supprimer - button_create: Créer - button_create_and_continue: Créer et continuer - button_test: Tester - button_edit: Modifier - button_edit_associated_wikipage: "Modifier la page wiki associée: %{page_title}" - button_add: Ajouter - button_change: Changer - button_apply: Appliquer - button_clear: Effacer - button_lock: Verrouiller - button_unlock: Déverrouiller - button_download: Télécharger - button_list: Lister - button_view: Voir - button_move: Déplacer - button_move_and_follow: Déplacer et suivre - button_back: Retour - button_cancel: Annuler - button_activate: Activer - button_sort: Trier - button_log_time: Saisir temps - button_rollback: Revenir à cette version - button_watch: Surveiller - button_unwatch: Ne plus surveiller - button_reply: Répondre - button_archive: Archiver - button_unarchive: Désarchiver - button_reset: Réinitialiser - button_rename: Renommer - button_change_password: Changer de mot de passe - button_copy: Copier - button_copy_and_follow: Copier et suivre - button_annotate: Annoter - button_update: Mettre à jour - button_configure: Configurer - button_quote: Citer - button_show: Afficher - button_hide: Cacher - button_edit_section: Modifier cette section - button_export: Exporter - button_delete_my_account: Supprimer mon compte - button_close: Fermer - button_reopen: Réouvrir - button_import: Importer - button_filter: Filtrer - - status_active: actif - status_registered: enregistré - status_locked: verrouillé - - project_status_active: actif - project_status_closed: fermé - project_status_archived: archivé - - version_status_open: ouvert - version_status_locked: verrouillé - version_status_closed: fermé - - field_active: Actif - - text_select_mail_notifications: Actions pour lesquelles une notification par e-mail est envoyée - text_regexp_info: ex. ^[A-Z0-9]+$ - text_min_max_length_info: 0 pour aucune restriction - text_project_destroy_confirmation: Êtes-vous sûr de vouloir supprimer ce projet et toutes ses données ? - text_subprojects_destroy_warning: "Ses sous-projets : %{value} seront également supprimés." - text_workflow_edit: Sélectionner un tracker et un rôle pour éditer le workflow - text_are_you_sure: Êtes-vous sûr ? - text_journal_changed: "%{label} changé de %{old} à %{new}" - text_journal_changed_no_detail: "%{label} mis à jour" - text_journal_set_to: "%{label} mis à %{value}" - text_journal_deleted: "%{label} %{old} supprimé" - text_journal_added: "%{label} %{value} ajouté" - text_tip_issue_begin_day: tâche commençant ce jour - text_tip_issue_end_day: tâche finissant ce jour - text_tip_issue_begin_end_day: tâche commençant et finissant ce jour - text_project_identifier_info: 'Seuls les lettres minuscules (a-z), chiffres, tirets et tirets bas sont autorisés.
    Un fois sauvegardé, l''identifiant ne pourra plus être modifié.' - text_caracters_maximum: "%{count} caractères maximum." - text_caracters_minimum: "%{count} caractères minimum." - text_length_between: "Longueur comprise entre %{min} et %{max} caractères." - text_tracker_no_workflow: Aucun workflow n'est défini pour ce tracker - text_unallowed_characters: Caractères non autorisés - text_comma_separated: Plusieurs valeurs possibles (séparées par des virgules). - text_line_separated: Plusieurs valeurs possibles (une valeur par ligne). - text_issues_ref_in_commit_messages: Référencement et résolution des demandes dans les commentaires de commits - text_issue_added: "La demande %{id} a été soumise par %{author}." - text_issue_updated: "La demande %{id} a été mise à jour par %{author}." - text_wiki_destroy_confirmation: Etes-vous sûr de vouloir supprimer ce wiki et tout son contenu ? - text_issue_category_destroy_question: "%{count} demandes sont affectées à cette catégorie. Que voulez-vous faire ?" - text_issue_category_destroy_assignments: N'affecter les demandes à aucune autre catégorie - text_issue_category_reassign_to: Réaffecter les demandes à cette catégorie - text_user_mail_option: "Pour les projets non sélectionnés, vous recevrez seulement des notifications pour ce que vous surveillez ou à quoi vous participez (exemple: demandes dont vous êtes l'auteur ou la personne assignée)." - text_no_configuration_data: "Les rôles, trackers, statuts et le workflow ne sont pas encore paramétrés.\nIl est vivement recommandé de charger le paramétrage par defaut. Vous pourrez le modifier une fois chargé." - text_load_default_configuration: Charger le paramétrage par défaut - text_status_changed_by_changeset: "Appliqué par commit %{value}." - text_time_logged_by_changeset: "Appliqué par commit %{value}" - text_issues_destroy_confirmation: 'Êtes-vous sûr de vouloir supprimer la ou les demandes(s) selectionnée(s) ?' - text_issues_destroy_descendants_confirmation: "Cela entrainera également la suppression de %{count} sous-tâche(s)." - text_time_entries_destroy_confirmation: "Etes-vous sûr de vouloir supprimer les temps passés sélectionnés ?" - text_select_project_modules: 'Sélectionner les modules à activer pour ce projet :' - text_default_administrator_account_changed: Compte administrateur par défaut changé - text_file_repository_writable: Répertoire de stockage des fichiers accessible en écriture - text_plugin_assets_writable: Répertoire public des plugins accessible en écriture - text_minimagick_available: Bibliothèque MiniMagick présente (optionnelle) - text_convert_available: Binaire convert de ImageMagick présent (optionel) - text_destroy_time_entries_question: "%{hours} heures ont été enregistrées sur les demandes à supprimer. Que voulez-vous faire ?" - text_destroy_time_entries: Supprimer les heures - text_assign_time_entries_to_project: Reporter les heures sur le projet - text_reassign_time_entries: 'Reporter les heures sur cette demande:' - text_user_wrote: "%{value} a écrit :" - text_user_wrote_in: "%{value} a écrit (%{link}):" - text_enumeration_destroy_question: "La valeur « %{name} » est affectée à %{count} objet(s)." - text_enumeration_category_reassign_to: 'Réaffecter les objets à cette valeur:' - text_email_delivery_not_configured: "L'envoi de mail n'est pas configuré, les notifications sont désactivées.\nConfigurez votre serveur SMTP dans config/configuration.yml et redémarrez l'application pour les activer." - text_repository_usernames_mapping: "Vous pouvez sélectionner ou modifier l'utilisateur Redmine associé à chaque nom d'utilisateur figurant dans l'historique du dépôt.\nLes utilisateurs avec le même identifiant ou la même adresse mail seront automatiquement associés." - text_diff_truncated: '... Ce différentiel a été tronqué car il excède la taille maximale pouvant être affichée.' - text_custom_field_possible_values_info: 'Une ligne par valeur' - text_wiki_page_destroy_question: "Cette page possède %{descendants} sous-page(s) et descendante(s). Que voulez-vous faire ?" - text_wiki_page_nullify_children: "Conserver les sous-pages en tant que pages racines" - text_wiki_page_destroy_children: "Supprimer les sous-pages et toutes leurs descedantes" - text_wiki_page_reassign_children: "Réaffecter les sous-pages à cette page" - text_own_membership_delete_confirmation: "Vous allez supprimer tout ou partie de vos permissions sur ce projet et ne serez peut-être plus autorisé à modifier ce projet.\nEtes-vous sûr de vouloir continuer ?" - text_zoom_in: Zoom avant - text_zoom_out: Zoom arrière - text_warn_on_leaving_unsaved: "Cette page contient du texte non sauvegardé qui sera perdu si vous quittez la page." - text_scm_path_encoding_note: "Défaut : UTF-8" - text_subversion_repository_note: "Exemples (en fonction des protocoles supportés) : file:///, http://, https://, svn://, svn+[tunnelscheme]://" - text_git_repository_note: "Chemin vers un dépôt vide et local (exemples : /gitrepo, c:\\gitrepo)" - text_mercurial_repository_note: "Chemin vers un dépôt local (exemples : /hgrepo, c:\\hgrepo)" - text_scm_command: Commande - text_scm_command_version: Version - text_scm_config: Vous pouvez configurer les commandes des SCM dans config/configuration.yml. Redémarrer l'application après modification. - text_scm_command_not_available: Ce SCM n'est pas disponible. Vérifier les paramètres dans la section administration. - text_issue_conflict_resolution_overwrite: "Appliquer quand même ma mise à jour (les notes précédentes seront conservées mais des changements pourront être écrasés)" - text_issue_conflict_resolution_add_notes: "Ajouter mes notes et ignorer mes autres changements" - text_issue_conflict_resolution_cancel: "Annuler ma mise à jour et réafficher %{link}" - text_account_destroy_confirmation: "Êtes-vous sûr de vouloir continuer ?\nVotre compte sera définitivement supprimé, sans aucune possibilité de le réactiver." - text_session_expiration_settings: "Attention : le changement de ces paramètres peut entrainer l'expiration des sessions utilisateurs en cours, y compris la vôtre." - text_project_closed: Ce projet est fermé et accessible en lecture seule. - text_turning_multiple_off: "Si vous désactivez les valeurs multiples, les valeurs multiples seront supprimées pour n'en conserver qu'une par objet." - - default_role_manager: Manager - default_role_developer: Développeur - default_role_reporter: Rapporteur - default_tracker_bug: Anomalie - default_tracker_feature: Evolution - default_tracker_support: Assistance - default_issue_status_new: Nouveau - default_issue_status_in_progress: En cours - default_issue_status_resolved: Résolu - default_issue_status_feedback: Commentaire - default_issue_status_closed: Fermé - default_issue_status_rejected: Rejeté - default_doc_category_user: Documentation utilisateur - default_doc_category_tech: Documentation technique - default_priority_low: Bas - default_priority_normal: Normal - default_priority_high: Haut - default_priority_urgent: Urgent - default_priority_immediate: Immédiat - default_activity_design: Conception - default_activity_development: Développement - - enumeration_issue_priorities: Priorités des demandes - enumeration_doc_categories: Catégories des documents - enumeration_activities: Activités (suivi du temps) - enumeration_system_activity: Activité système - description_filter: Filtre - description_search: Champ de recherche - description_choose_project: Projets - description_project_scope: Périmètre de recherche - description_notes: Notes - description_message_content: Contenu du message - description_query_sort_criteria_attribute: Critère de tri - description_query_sort_criteria_direction: Ordre de tri - description_user_mail_notification: Option de notification - description_available_columns: Colonnes disponibles - description_selected_columns: Colonnes sélectionnées - description_all_columns: Toutes les colonnes - description_issue_category_reassign: Choisir une catégorie - description_wiki_subpages_reassign: Choisir une nouvelle page parent - text_repository_identifier_info: 'Seuls les lettres minuscules (a-z), chiffres, tirets et tirets bas sont autorisés.
    Un fois sauvegardé, l''identifiant ne pourra plus être modifié.' - label_parent_task_attributes_derived: Calculé à partir des sous-tâches - label_parent_task_attributes_independent: Indépendent des sous-tâches - mail_subject_security_notification: Notification de sécurité - mail_body_security_notification_change: ! '%{field} modifié(e).' - mail_body_security_notification_change_to: ! '%{field} changé(e) en %{value}.' - mail_body_security_notification_add: ! '%{field} %{value} ajouté(e).' - mail_body_security_notification_remove: ! '%{field} %{value} supprimé(e).' - mail_body_security_notification_notify_enabled: Les notifications ont été activées pour l'adresse %{value} - mail_body_security_notification_notify_disabled: Les notifications ont été désactivées pour l'adresse %{value} - field_remote_ip: Adresse IP - label_no_preview: Aucun aperçu disponible - label_no_preview_alternative_html: Aucun aperçu disponible. Veuillez %{link} le fichier. - label_no_preview_download: télécharger - label_user_mail_option_only_assigned: Seulement pour ce que je surveille ou qui m'est assigné - label_user_mail_option_only_owner: Seulement pour ce que je surveille ou que j'ai créé - error_can_not_delete_auth_source: "Ce mode d'authentification est utilisé par des comptes utilisateurs et ne peut pas être supprimé" - button_actions: Actions - mail_body_lost_password_validity: "Ce lien ne vous permettra de changer de mot de passe qu'une seule fois." - text_login_required_html: "En désactivant l'authentification obligatoire, les projets publics et leurs contenus sont librement accessibles à toute personne sur le réseau. Vous pouvez éditer les permissions applicables." - label_login_required_yes: Oui - label_login_required_no: Non, autoriser l'accès anonyme aux projets publics - text_project_is_public_non_member: "Les projets publics et leurs contenus sont accessibles à tout utilisateur authentifié." - text_project_is_public_anonymous: "Les projets publics et leurs contenus sont librement accessibles à toute personne sur le réseau." - label_version_and_files: Versions (%{count}) et fichiers - label_ldap: LDAP - label_ldaps_verify_none: "LDAPS (sans vérification du certificat)" - label_ldaps_verify_peer: LDAPS - label_ldaps_warning: "Il est recommandé d'utiliser une connexion LDPAS avec vérification du certificat pour empêcher toute interception des données durant la procédure d'authentification." - label_nothing_to_preview: "Aucun texte à prévisualiser" - error_token_expired: "Ce lien de récupération de votre mot de passe a expiré, veuillez recommencer." - error_spent_on_future_date: "Impossible d'enregistrer un temps passé sur une date future" - setting_timelog_accept_future_dates: "Autoriser la saisie de temps sur une date future" - label_delete_link_to_subtask: "Supprimer la relation avec la sous-tâche" - error_not_allowed_to_log_time_for_other_users: "Vous n'êtes pas autorisé à saisir le temps passé pour d'autres utilisateurs" - permission_log_time_for_other_users: "Saisir le temps passé pour d'autres utilisateurs" - label_inherited_from_parent_project: "Hérité du projet parent" - label_inherited_from_group: "Hérité du groupe %{name}" - label_tomorrow: demain - label_next_week: semaine prochaine - label_next_month: mois prochain - text_role_no_workflow: "Aucun workflow défini pour ce rôle" - text_status_no_workflow: "Aucun tracker n'utilise ce statut dans le workflow" - setting_mail_handler_preferred_body_part: "Partie privilégiée des messages multipart (HTML)" - setting_show_status_changes_in_mail_subject: "Inclure les changements de statut des demandes dans le sujet des notifications" - label_preferred_body_part_text: "Texte" - label_preferred_body_part_html: "HTML (expérimental)" - field_parent_issue_subject: "Sujet de la demande parent" - permission_edit_own_issues: "Modifier ses propres demandes" - text_select_apply_tracker: "Sélectionner un tracker" - label_updated_issues: "Demandes mises à jour" - text_avatar_server_config_html: "Le serveur d'avatars actuel est %{url}. Vous pouvez le configurer dans config/configuration.yml." - setting_gantt_months_limit: "Nombre maximum de mois affichés sur le gantt" - permission_import_time_entries: "Importer des temps passés" - label_import_notifications: "Envoyer les notifications durant l'import" - text_gs_available: "Support PDF ImageMagick disponible (optionnel)" - field_recently_used_projects: "Nombre de projets consultés récemment affichés dans le menu" - label_optgroup_bookmarks: "Favoris" - label_optgroup_others: "Autres projets" - label_optgroup_recents: "Consultés récemment" - button_project_bookmark: "Ajouter aux favoris" - button_project_bookmark_delete: "Retirer des favoris" - field_history_default_tab: "Onglet par défaut de l'historique d'une demande" - label_issue_history_properties: "Changements" - label_issue_history_notes: "Notes" - label_last_tab_visited: "Dernier onglet visité" - field_unique_id: "ID unique" - text_no_subject: "sans sujet" - setting_password_required_char_classes: "Caractères requis pour les mots de passe" - label_password_char_class_uppercase: "lettres majuscules" - label_password_char_class_lowercase: "lettres miniscules" - label_password_char_class_digits: "chiffres" - label_password_char_class_special_chars: "caractères spéciaux" - text_characters_must_contain: "Doit contenir les types de caractères suivants : %{character_classes}." - label_starts_with: "commence par" - label_ends_with: "se termine par" - label_issue_fixed_version_updated: "Version cible mise à jour" - setting_project_list_defaults: "Affichage par défaut de la liste des projets" - label_display_type: "Affichage" - label_display_type_list: "Liste" - label_display_type_board: "Tableau" - label_my_bookmarks: "Favoris" - label_import_time_entries: "Importer des temps passés" diff --git a/config/locales/gl.yml b/config/locales/gl.yml deleted file mode 100644 index e7ac556..0000000 --- a/config/locales/gl.yml +++ /dev/null @@ -1,1322 +0,0 @@ -# Galician (Spain) for Ruby on Rails -# By: -# Marcos Arias Pena -# Adrián Chaves Fernández (Gallaecio) - -gl: - number: - format: - separator: "," - delimiter: "." - precision: 3 - - currency: - format: - format: "%n %u" - unit: "€" - separator: "," - delimiter: "." - precision: 2 - - percentage: - format: - # separator: - delimiter: "" - # precision: - - precision: - format: - # separator: - delimiter: "" - # precision: - - human: - format: - # separator: - delimiter: "" - precision: 3 - storage_units: - format: "%n %u" - units: - byte: - one: "B" - other: "B" - kb: "KB" - mb: "MB" - gb: "GB" - tb: "TB" - - direction: ltr - date: - formats: - default: "%e/%m/%Y" - short: "%e %b" - long: "%A %e de %B de %Y" - day_names: [Domingo, Luns, Martes, Mércores, Xoves, Venres, Sábado] - abbr_day_names: [Dom, Lun, Mar, Mer, Xov, Ven, Sab] - month_names: [~, Xaneiro, Febreiro, Marzo, Abril, Maio, Xunio, Xullo, Agosto, Setembro, Outubro, Novembro, Decembro] - abbr_month_names: [~, Xan, Feb, Maz, Abr, Mai, Xun, Xul, Ago, Set, Out, Nov, Dec] - order: - - :day - - :month - - :year - - time: - formats: - default: "%A, %e de %B de %Y, %H:%M hs" - time: "%H:%M hs" - short: "%e/%m, %H:%M hs" - long: "%A %e de %B de %Y ás %H:%M horas" - - am: '' - pm: '' - - datetime: - distance_in_words: - half_a_minute: 'medio minuto' - less_than_x_seconds: - zero: 'menos dun segundo' - one: '1 segundo' - few: 'poucos segundos' - other: '%{count} segundos' - x_seconds: - one: '1 segundo' - other: '%{count} segundos' - less_than_x_minutes: - zero: 'menos dun minuto' - one: '1 minuto' - other: '%{count} minutos' - x_minutes: - one: '1 minuto' - other: '%{count} minuto' - about_x_hours: - one: 'aproximadamente unha hora' - other: '%{count} horas' - x_hours: - one: "1 hora" - other: "%{count} horas" - x_days: - one: '1 día' - other: '%{count} días' - x_weeks: - one: '1 semana' - other: '%{count} semanas' - about_x_months: - one: 'aproximadamente 1 mes' - other: '%{count} meses' - x_months: - one: '1 mes' - other: '%{count} meses' - about_x_years: - one: 'aproximadamente 1 ano' - other: '%{count} anos' - over_x_years: - one: 'máis dun ano' - other: '%{count} anos' - almost_x_years: - one: "almost 1 year" - other: "almost %{count} years" - now: 'agora' - today: 'hoxe' - tomorrow: 'mañá' - in: 'dentro de' - - support: - array: - sentence_connector: e - - activerecord: - models: - attributes: - errors: - template: - header: - one: "1 erro evitou que se poidese gardar o %{model}" - other: "%{count} erros evitaron que se poidese gardar o %{model}" - body: "Atopáronse os seguintes problemas:" - messages: - inclusion: "non está incluido na lista" - exclusion: "xa existe" - invalid: "non é válido" - confirmation: "non coincide coa confirmación" - accepted: "debe ser aceptado" - empty: "non pode estar baleiro" - blank: "non pode estar en branco" - too_long: "é demasiado longo (non máis de %{count} carácteres)" - too_short: "é demasiado curto (non menos de %{count} carácteres)" - wrong_length: "non ten a lonxitude correcta (debe ser de %{count} carácteres)" - taken: "non está dispoñíbel" - not_a_number: "non é un número" - greater_than: "debe ser maior que %{count}" - greater_than_or_equal_to: "debe ser maior ou igual que %{count}" - equal_to: "debe ser igual a %{count}" - less_than: "debe ser menor que %{count}" - less_than_or_equal_to: "debe ser menor ou igual que %{count}" - odd: "debe ser par" - even: "debe ser impar" - greater_than_start_date: "debe ser posterior á data de comezo" - not_same_project: "non pertence ao mesmo proxecto" - circular_dependency: "Esta relación podería crear unha dependencia circular" - cant_link_an_issue_with_a_descendant: "As peticións non poden estar ligadas coas súas subtarefas" - earlier_than_minimum_start_date: "Non pode ser antes de %{date} por mor de peticións anteriores" - not_a_regexp: "non é unha expresión regular válida" - open_issue_with_closed_parent: "Unha petición aberta non pode ser asignada a unha tarefa pai pechada" - must_contain_uppercase: "debe conter letras maiúsculas (A-Z)" - must_contain_lowercase: "debe conter letras minúsculas (a-z)" - must_contain_digits: "debe conter díxitos (0-9)" - must_contain_special_chars: "debe conter caracteres especiais (!, $, %, ...)" - - actionview_instancetag_blank_option: Por favor seleccione - - button_activate: Activar - button_add: Engadir - button_annotate: Anotar - button_apply: Aceptar - button_archive: Arquivar - button_back: Atrás - button_cancel: Cancelar - button_change: Cambiar - button_change_password: "Cambiar o contrasinal" - button_check_all: "Seleccionalo todo" - button_clear: Anular - button_configure: Configurar - button_copy: Copiar - button_create: Crear - button_delete: Borrar - button_download: Descargar - button_edit: Modificar - button_list: Listar - button_lock: Bloquear - button_log_time: Tempo dedicado - button_login: Acceder - button_move: Mover - button_quote: Citar - button_rename: Renomear - button_reply: Respostar - button_reset: Restablecer - button_rollback: Volver a esta versión - button_save: Gardar - button_sort: Ordenar - button_submit: Aceptar - button_test: Probar - button_unarchive: Desarquivar - button_uncheck_all: Non seleccionar nada - button_unlock: Desbloquear - button_unwatch: Non monitorizar - button_update: Actualizar - button_view: Ver - button_watch: Monitorizar - default_activity_design: Deseño - default_activity_development: Desenvolvemento - default_doc_category_tech: Documentación técnica - default_doc_category_user: Documentación de usuario - default_issue_status_in_progress: "En curso" - default_issue_status_closed: Pechada - default_issue_status_feedback: Comentarios - default_issue_status_new: Nova - default_issue_status_rejected: Rexeitada - default_issue_status_resolved: Resolta - default_priority_high: Alta - default_priority_immediate: Inmediata - default_priority_low: Baixa - default_priority_normal: Normal - default_priority_urgent: Urxente - default_role_developer: Desenvolvedor - default_role_manager: Xefe de proxecto - default_role_reporter: Informador - default_tracker_bug: Erros - default_tracker_feature: Tarefas - default_tracker_support: Soporte - enumeration_activities: Actividades (tempo dedicado) - enumeration_doc_categories: Categorías do documento - enumeration_issue_priorities: Prioridade das peticións - error_can_t_load_default_data: "Non se puido cargar a configuración predeterminada: %{value}" - error_issue_not_found_in_project: 'A petición non se atopa ou non está asociada a este proxecto' - error_scm_annotate: "Non existe a entrada ou non se puido anotar" - error_scm_command_failed: "Aconteceu un erro ao acceder ao repositorio: %{value}" - error_scm_not_found: "A entrada e/ou revisión non existe no repositorio." - field_account: Conta - field_activity: Actividade - field_admin: Administrador - field_assignable: Pódense asignar peticións a este perfil - field_assigned_to: Asignado a - field_attr_firstname: "Atributo do nome" - field_attr_lastname: "Atributo dos apelidos" - field_attr_login: "Atributo do nome de usuario" - field_attr_mail: "Atributo da conta de correo electrónico" - field_auth_source: Modo de identificación - field_author: Autor - field_base_dn: DN base - field_category: Categoría - field_column_names: Columnas - field_comments: Comentario - field_comments_sorting: Mostrar comentarios - field_created_on: Creado - field_default_value: "Estado predeterminado" - field_delay: Retraso - field_description: Descrición - field_done_ratio: "% Realizado" - field_downloads: Descargas - field_due_date: Data fin - field_effective_date: Data - field_estimated_hours: Tempo estimado - field_field_format: Formato - field_filename: Ficheiro - field_filesize: Tamaño - field_firstname: Nome - field_fixed_version: Versión prevista - field_hide_mail: "Agochar o enderezo de correo." - field_homepage: Sitio web - field_host: Anfitrión - field_hours: Horas - field_identifier: Identificador - field_is_closed: Petición resolta - field_is_default: "Estado predeterminado" - field_is_filter: Usado como filtro - field_is_for_all: Para todos os proxectos - field_is_in_roadmap: Consultar as peticións na planificación - field_is_public: Público - field_is_required: Obrigatorio - field_issue: Petición - field_issue_to: Petición relacionada - field_language: Idioma - field_last_login_on: "Último acceso" - field_lastname: "Apelidos" - field_login: "Usuario" - field_mail: Correo electrónico - field_mail_notification: Notificacións por correo - field_max_length: Lonxitude máxima - field_min_length: Lonxitude mínima - field_name: Nome - field_new_password: Novo contrasinal - field_notes: Notas - field_onthefly: Creación do usuario "ao voo" - field_parent: Proxecto pai - field_parent_title: Páxina pai - field_password: Contrasinal - field_password_confirmation: Confirmación - field_port: Porto - field_possible_values: Valores posibles - field_priority: Prioridade - field_project: Proxecto - field_redirect_existing_links: Redireccionar ligazóns existentes - field_regexp: Expresión regular - field_role: Perfil - field_searchable: Incluír nas buscas - field_spent_on: Data - field_start_date: Data de inicio - field_start_page: Páxina principal - field_status: Estado - field_subject: Tema - field_subproject: Proxecto secundario - field_summary: Resumo - field_time_zone: Zona horaria - field_title: Título - field_tracker: Tipo - field_type: Tipo - field_updated_on: Actualizado - field_url: URL - field_user: Usuario - field_value: Valor - field_version: Versión - general_csv_decimal_separator: ',' - general_csv_encoding: ISO-8859-15 - general_csv_separator: ';' - general_pdf_fontname: freesans - general_pdf_monospaced_fontname: freemono - general_first_day_of_week: '1' - general_lang_name: 'Galician (Galego)' - general_text_No: 'Non' - general_text_Yes: 'Si' - general_text_no: 'non' - general_text_yes: 'si' - label_activity: Actividade - label_add_another_file: Engadir outro ficheiro - label_add_note: Engadir unha nota - label_added: engadido - label_added_time_by: "Engadido por %{author} hai %{age}" - label_administration: Administración - label_age: Idade - label_ago: "hai" - label_all: todos - label_all_words: Tódalas palabras - label_and_its_subprojects: "%{value} e proxectos secundarios" - label_applied_status: Aplicar estado - label_assigned_to_me_issues: "Peticións asignadas a vostede" - label_associated_revisions: Revisións asociadas - label_attachment: Ficheiro - label_attachment_delete: Borrar o ficheiro - label_attachment_new: Novo ficheiro - label_attachment_plural: Ficheiros - label_attribute: Atributo - label_attribute_plural: Atributos - label_auth_source: Modo de autenticación - label_auth_source_new: Novo modo de autenticación - label_auth_source_plural: Modos de autenticación - label_authentication: Autenticación - label_blocked_by: bloqueado por - label_blocks: bloquea a - label_board: Foro - label_board_new: Novo foro - label_board_plural: Foros - label_boolean: Booleano - label_browse: Ollar - label_bulk_edit_selected_issues: Editar as peticións seleccionadas - label_calendar: Calendario - label_change_plural: Cambios - label_change_properties: Cambiar propiedades - label_change_status: Cambiar o estado - label_change_view_all: Ver todos os cambios - label_changes_details: Detalles de todos os cambios - label_changeset_plural: Cambios - label_chronological_order: En orde cronolóxica - label_closed_issues: pechada - label_closed_issues_plural: pechadas - label_x_open_issues_abbr: - zero: 0 open - one: 1 open - other: "%{count} open" - label_x_closed_issues_abbr: - zero: 0 closed - one: 1 closed - other: "%{count} closed" - label_comment: Comentario - label_comment_add: Engadir un comentario - label_comment_added: Comentario engadido - label_comment_delete: Borrar comentarios - label_comment_plural: Comentarios - label_x_comments: - zero: no comments - one: 1 comment - other: "%{count} comments" - label_commits_per_author: Remisións por autor - label_commits_per_month: Remisións por mes - label_confirmation: Confirmación - label_contains: conten - label_copied: copiado - label_copy_workflow_from: Copiar fluxo de traballo dende - label_current_status: Estado actual - label_current_version: Versión actual - label_custom_field: Campo personalizado - label_custom_field_new: Novo campo personalizado - label_custom_field_plural: Campos personalizados - label_date: Data - label_date_from: Dende - label_date_range: Rango de datas - label_date_to: Ata - label_day_plural: días - label_default: Predeterminada - label_default_columns: Columnas predeterminadas - label_deleted: suprimido - label_details: Detalles - label_diff_inline: liña por liña - label_diff_side_by_side: un a cada lado - label_disabled: deshabilitado - label_display_per_page: "Por páxina: %{value}" - label_document: Documento - label_document_added: Documento engadido - label_document_new: Novo documento - label_document_plural: Documentos - label_downloads_abbr: D/L - label_duplicated_by: duplicada por - label_duplicates: duplicada de - label_enumeration_new: Novo valor - label_enumerations: Listas de valores - label_environment: Entorno - label_equals: igual - label_example: Exemplo - label_export_to: 'Exportar a:' - label_f_hour: "%{value} hora" - label_f_hour_plural: "%{value} horas" - label_feed_plural: Feeds - label_feeds_access_key_created_on: "Chave de acceso por Atom creada hai %{value}" - label_file_added: Ficheiro engadido - label_file_plural: Ficheiros - label_filter_add: Engadir o filtro - label_filter_plural: Filtros - label_float: Flotante - label_follows: posterior a - label_gantt: Gantt - label_general: Xeral - label_generate_key: Xerar chave - label_help: Axuda - label_history: Histórico - label_home: Inicio - label_in: en - label_in_less_than: "en menos de" - label_in_more_than: "en máis de" - label_incoming_emails: Correos entrantes - label_index_by_date: Índice por data - label_index_by_title: Índice por título - label_information: Información - label_information_plural: Información - label_integer: Número - label_internal: Interno - label_issue: Petición - label_issue_added: Petición engadida - label_issue_category: Categoría das peticións - label_issue_category_new: Nova categoría - label_issue_category_plural: Categorías das peticións - label_issue_new: Nova petición - label_issue_plural: Peticións - label_issue_status: Estado da petición - label_issue_status_new: Novo estado - label_issue_status_plural: Estados das peticións - label_issue_tracking: Peticións - label_issue_updated: Petición actualizada - label_issue_view_all: Ver todas as peticións - label_issue_watchers: Seguidores - label_issues_by: "Peticións por %{value}" - label_jump_to_a_project: Ir ao proxecto… - label_language_based: Baseado no idioma - label_last_changes: "últimos %{count} cambios" - label_last_login: "Último acceso" - label_last_month: último mes - label_last_n_days: "últimos %{count} días" - label_last_week: última semana - label_latest_revision: Última revisión - label_latest_revision_plural: Últimas revisións - label_ldap_authentication: Autenticación LDAP - label_less_than_ago: "hai menos de" - label_list: Lista - label_loading: Cargando… - label_logged_as: "Identificado como" - label_login: "Acceder" - label_logout: "Saír" - label_max_size: Tamaño máximo - label_me: eu mesmo - label_member: Membro - label_member_new: Novo membro - label_member_plural: Membros - label_message_last: Última mensaxe - label_message_new: Nova mensaxe - label_message_plural: Mensaxes - label_message_posted: Mensaxe engadida - label_min_max_length: Lonxitude mín - máx - label_modified: modificado - label_module_plural: Módulos - label_month: Mes - label_months_from: meses de - label_more_than_ago: "hai máis de" - label_my_account: "Conta" - label_my_page: "Páxina persoal" - label_my_projects: "Proxectos persoais" - label_new: Novo - label_new_statuses_allowed: Novos estados autorizados - label_news: Noticia - label_news_added: Noticia engadida - label_news_latest: Últimas noticias - label_news_new: Nova noticia - label_news_plural: Noticias - label_news_view_all: Ver todas as noticias - label_next: Seguinte - label_no_change_option: (sen cambios) - label_no_data: "Non hai ningún dato que mostrar." - label_nobody: ninguén - label_none: ningún - label_not_contains: non conten - label_not_equals: non igual - label_open_issues: aberta - label_open_issues_plural: abertas - label_optional_description: Descrición opcional - label_options: Opcións - label_overall_activity: Actividade global - label_overview: Vistazo - label_password_lost: "Esqueceu o contrasinal?" - label_permissions: Permisos - label_permissions_report: Informe de permisos - label_plugins: Complementos - label_precedes: anterior a - label_preferences: Preferencias - label_preview: "Vista previa" - label_previous: Anterior - label_project: Proxecto - label_project_all: Tódolos proxectos - label_project_latest: Últimos proxectos - label_project_new: Novo proxecto - label_project_plural: Proxectos - label_x_projects: - zero: "ningún proxecto" - one: "un proxecto" - other: "%{count} proxectos" - label_public_projects: Proxectos públicos - label_query: Consulta personalizada - label_query_new: Nova consulta - label_query_plural: Consultas personalizadas - label_read: Ler… - label_register: "Rexistrarse" - label_registered_on: Inscrito o - label_registration_activation_by_email: activación de conta por correo - label_registration_automatic_activation: activación automática de conta - label_registration_manual_activation: activación manual de conta - label_related_issues: Peticións relacionadas - label_relates_to: relacionada con - label_relation_delete: Eliminar relación - label_relation_new: Nova relación - label_renamed: renomeado - label_reply_plural: Respostas - label_report: Informe - label_report_plural: Informes - label_reported_issues: "Peticións rexistradas por vostede" - label_repository: Repositorio - label_repository_plural: Repositorios - label_result_plural: Resultados - label_reverse_chronological_order: En orde cronolóxica inversa - label_revision: Revisión - label_revision_plural: Revisións - label_roadmap: Planificación - label_roadmap_due_in: "Remata en %{value}" - label_roadmap_no_issues: Non hai peticións para esta versión - label_roadmap_overdue: "%{value} tarde" - label_role: Perfil - label_role_and_permissions: Perfís e permisos - label_role_new: Novo perfil - label_role_plural: Perfís - label_scm: SCM - label_search: Busca - label_search_titles_only: Buscar só en títulos - label_send_information: Enviar información da conta ao usuario - label_send_test_email: Enviar un correo de proba - label_settings: Configuración - label_show_completed_versions: Mostra as versións rematadas - label_sort_by: "Ordenar por %{value}" - label_sort_higher: Subir - label_sort_highest: Primeiro - label_sort_lower: Baixar - label_sort_lowest: Último - label_spent_time: Tempo dedicado - label_statistics: Estatísticas - label_stay_logged_in: "Lembrar o contrasinal." - label_string: Texto - label_subproject_plural: Proxectos secundarios - label_text: Texto largo - label_theme: Tema - label_this_month: este mes - label_this_week: esta semana - label_this_year: este ano - label_time_tracking: Control de tempo - label_today: hoxe - label_topic_plural: Temas - label_total: Total - label_tracker: Tipo - label_tracker_new: Novo tipo - label_tracker_plural: Tipos de peticións - label_updated_time: "Actualizado hai %{value}" - label_updated_time_by: "Actualizado por %{author} hai %{age}" - label_used_by: Utilizado por - label_user: Usuario - label_user_activity: "Actividade de %{value}" - label_user_mail_no_self_notified: "Non quero ser avisado de cambios feitos por min mesmo." - label_user_mail_option_all: "Para calquera evento en todos os proxectos." - label_user_mail_option_selected: "Para calquera evento dos proxectos seleccionados…" - label_user_new: Novo usuario - label_user_plural: Usuarios - label_version: Versión - label_version_new: Nova versión - label_version_plural: Versións - label_view_diff: Ver diferencias - label_view_revisions: Ver as revisións - label_watched_issues: Peticións monitorizadas - label_week: Semana - label_wiki: Wiki - label_wiki_edit: Wiki edición - label_wiki_edit_plural: Wiki edicións - label_wiki_page: Wiki páxina - label_wiki_page_plural: Wiki páxinas - label_workflow: Fluxo de traballo - label_year: Ano - label_yesterday: onte - mail_body_account_activation_request: "Inscribiuse un novo usuario (%{value}). A conta está pendente de aprobación:" - mail_body_account_information: Información sobre a súa conta - mail_body_account_information_external: "Pode usar a súa conta %{value} para conectarse." - mail_body_lost_password: 'Para cambiar o seu contrasinal, prema a seguinte ligazón:' - mail_body_register: 'Para activar a súa conta, prema a seguinte ligazón:' - mail_body_reminder: "%{count} petición(s) asignadas a ti rematan nos próximos %{days} días:" - mail_subject_account_activation_request: "Petición de activación de conta %{value}" - mail_subject_lost_password: "O teu contrasinal de %{value}" - mail_subject_register: "Activación da conta de %{value}" - mail_subject_reminder: "%{count} petición(s) rematarán nos próximos %{days} días" - notice_account_activated: A súa conta foi activada. Xa pode conectarse. - notice_account_invalid_credentials: "O usuario ou contrasinal non é correcto." - notice_account_lost_email_sent: Enviouse un correo con instrucións para elixir un novo contrasinal. - notice_account_password_updated: Contrasinal modificado correctamente. - notice_account_pending: "A súa conta creouse e está pendente da aprobación por parte do administrador." - notice_account_register_done: "A conta creouse correctamente. Recibirá unha ligazón na súa conta de correo electrónico, sígaa para activar a nova conta." - notice_account_unknown_email: Usuario descoñecido. - notice_account_updated: Conta actualizada correctamente. - notice_account_wrong_password: Contrasinal incorrecto. - notice_can_t_change_password: Esta conta utiliza unha fonte de autenticación externa. Non é posible cambiar o contrasinal. - notice_default_data_loaded: "A configuración predeterminada cargouse correctamente." - notice_email_error: "Ocorreu un error enviando o correo (%{value})" - notice_email_sent: "Enviouse un correo a %{value}" - notice_failed_to_save_issues: "Imposible gravar %{count} petición(s) de %{total} seleccionada(s): %{ids}." - notice_feeds_access_key_reseted: A súa chave de acceso para Atom reiniciouse. - notice_file_not_found: A páxina á que tenta acceder non existe. - notice_locking_conflict: Os datos modificáronse por outro usuario. - notice_no_issue_selected: "Ningunha petición seleccionada. Por favor, comprobe a petición que quere modificar" - notice_not_authorized: Non ten autorización para acceder a esta páxina. - notice_successful_connection: "Accedeu correctamente." - notice_successful_create: Creación correcta. - notice_successful_delete: Borrado correcto. - notice_successful_update: Modificación correcta. - notice_unable_delete_version: Non se pode borrar a versión - permission_add_issue_notes: Engadir notas - permission_add_issue_watchers: Engadir seguidores - permission_add_issues: Engadir peticións - permission_add_messages: Enviar mensaxes - permission_browse_repository: Ollar repositorio - permission_comment_news: Comentar noticias - permission_commit_access: Acceso de escritura - permission_delete_issues: Borrar peticións - permission_delete_messages: Borrar mensaxes - permission_delete_own_messages: Borrar mensaxes propios - permission_delete_wiki_pages: Borrar páxinas wiki - permission_delete_wiki_pages_attachments: Borrar ficheiros - permission_edit_issue_notes: Modificar notas - permission_edit_issues: Modificar peticións - permission_edit_messages: Modificar mensaxes - permission_edit_own_issue_notes: Modificar notas propias - permission_edit_own_messages: Editar mensaxes propios - permission_edit_own_time_entries: Modificar tempos dedicados propios - permission_edit_project: Modificar proxecto - permission_edit_time_entries: Modificar tempos dedicados - permission_edit_wiki_pages: Modificar páxinas wiki - permission_log_time: Anotar tempo dedicado - permission_manage_boards: Administrar foros - permission_manage_categories: Administrar categorías de peticións - permission_manage_files: Administrar ficheiros - permission_manage_issue_relations: Administrar relación con outras peticións - permission_manage_members: Administrar membros - permission_manage_news: Administrar noticias - permission_manage_public_queries: Administrar consultas públicas - permission_manage_repository: Administrar repositorio - permission_manage_versions: Administrar versións - permission_manage_wiki: Administrar wiki - permission_protect_wiki_pages: Protexer páxinas wiki - permission_rename_wiki_pages: Renomear páxinas wiki - permission_save_queries: Gravar consultas - permission_select_project_modules: Seleccionar módulos do proxecto - permission_view_calendar: Ver calendario - permission_view_changesets: Ver cambios - permission_view_documents: Ver documentos - permission_view_files: Ver ficheiros - permission_view_gantt: Ver diagrama de Gantt - permission_view_issue_watchers: Ver lista de seguidores - permission_view_messages: Ver mensaxes - permission_view_time_entries: Ver tempo dedicado - permission_view_wiki_edits: Ver histórico do wiki - permission_view_wiki_pages: Ver wiki - project_module_boards: Foros - project_module_documents: Documentos - project_module_files: Ficheiros - project_module_issue_tracking: Peticións - project_module_news: Noticias - project_module_repository: Repositorio - project_module_time_tracking: Control de tempo - project_module_wiki: Wiki - setting_activity_days_default: Días a mostrar na actividade do proxecto - setting_app_title: Título da aplicación - setting_attachment_max_size: Tamaño máximo do ficheiro - setting_autofetch_changesets: Autorechear as remisións do repositorio - setting_autologin: "Identificarse automaticamente." - setting_bcc_recipients: Ocultar as copias de carbón (bcc) - setting_commit_fix_keywords: Palabras chave para a corrección - setting_commit_ref_keywords: Palabras chave para a referencia - setting_cross_project_issue_relations: Permitir relacionar peticións de distintos proxectos - setting_date_format: Formato da data - setting_default_language: Idioma predeterminado - setting_default_projects_public: "Os proxectos novos son públicos de maneira predeterminada." - setting_diff_max_lines_displayed: Número máximo de diferencias mostradas - setting_display_subprojects_issues: "Mostrar peticións de prox. secundarios no principal de maneira predeterminada." - setting_emails_footer: Pe de mensaxes - setting_enabled_scm: Activar SCM - setting_feeds_limit: Límite de contido para sindicación - setting_gravatar_enabled: Usar iconas de usuario (Gravatar) - setting_host_name: Nome e ruta do servidor - setting_issue_list_default_columns: "Columnas predeterminadas para a lista de peticións." - setting_issues_export_limit: Límite de exportación de peticións - setting_login_required: Requírese identificación - setting_mail_from: Correo dende o que enviar mensaxes - setting_mail_handler_api_enabled: Activar o programa para mensaxes entrantes - setting_mail_handler_api_key: Chave da API - setting_per_page_options: Obxectos por páxina - setting_plain_text_mail: só texto plano (non HTML) - setting_protocol: Protocolo - setting_self_registration: Rexistro permitido - setting_sequential_project_identifiers: Xerar identificadores de proxecto - setting_sys_api_enabled: Activar o programa para a xestión do repositorio - setting_text_formatting: Formato de texto - setting_time_format: Formato de hora - setting_user_format: Formato de nome de usuario - setting_welcome_text: Texto de benvida - setting_wiki_compression: Compresión do historial do Wiki - status_active: activo - status_locked: bloqueado - status_registered: rexistrado - text_are_you_sure: Está seguro? - text_assign_time_entries_to_project: Asignar as horas ao proxecto - text_caracters_maximum: "%{count} caracteres como máximo." - text_caracters_minimum: "%{count} caracteres como mínimo." - text_comma_separated: Múltiples valores permitidos (separados por coma). - text_default_administrator_account_changed: "Cambiouse a conta predeterminada de administrador." - text_destroy_time_entries: Borrar as horas - text_destroy_time_entries_question: Existen %{hours} horas asignadas á petición que quere borrar. Que quere facer ? - text_diff_truncated: '… Diferencia truncada por exceder o máximo tamaño visíbel.' - text_email_delivery_not_configured: "O envío de correos non está configurado, e as notificacións desactiváronse. \n Configure o servidor de SMTP en config/configuration.yml e reinicie a aplicación para activar os cambios." - text_enumeration_category_reassign_to: 'Reasignar ao seguinte valor:' - text_enumeration_destroy_question: "%{count} obxectos con este valor asignado." - text_file_repository_writable: Pódese escribir no repositorio - text_issue_added: "Petición %{id} engadida por %{author}." - text_issue_category_destroy_assignments: Deixar as peticións sen categoría - text_issue_category_destroy_question: "Algunhas peticións (%{count}) están asignadas a esta categoría. Que desexa facer?" - text_issue_category_reassign_to: Reasignar as peticións á categoría - text_issue_updated: "A petición %{id} actualizouse por %{author}." - text_issues_destroy_confirmation: 'Seguro que quere borrar as peticións seleccionadas?' - text_issues_ref_in_commit_messages: Referencia e petición de corrección nas mensaxes - text_length_between: "Lonxitude entre %{min} e %{max} caracteres." - text_load_default_configuration: "Cargar a configuración predeterminada" - text_min_max_length_info: 0 para ningunha restrición - text_no_configuration_data: "Inda non se configuraron perfiles, nin tipos, estados e fluxo de traballo asociado a peticións. Recoméndase encarecidamente cargar a configuración predeterminada. Unha vez cargada, poderá modificala." - text_project_destroy_confirmation: Estás seguro de querer eliminar o proxecto? - text_reassign_time_entries: 'Reasignar as horas a esta petición:' - text_regexp_info: ex. ^[A-Z0-9]+$ - text_repository_usernames_mapping: "Estableza a correspondencia entre os usuarios de Redmine e os presentes no historial do repositorio.\nOs usuarios co mesmo nome ou correo en Redmine e no repositorio serán asociados automaticamente." - text_minimagick_available: MiniMagick dispoñíbel (opcional) - text_select_mail_notifications: Seleccionar os eventos a notificar - text_select_project_modules: 'Seleccione os módulos a activar para este proxecto:' - text_status_changed_by_changeset: "Aplicado nos cambios %{value}" - text_subprojects_destroy_warning: "Os proxectos secundarios: %{value} tamén se eliminarán" - text_tip_issue_begin_day: tarefa que comeza este día - text_tip_issue_begin_end_day: tarefa que comeza e remata este día - text_tip_issue_end_day: tarefa que remata este día - text_tracker_no_workflow: Non hai ningún fluxo de traballo definido para este tipo de petición - text_unallowed_characters: Caracteres non permitidos - text_user_mail_option: "Dos proxectos non seleccionados, só recibirá notificacións sobre elementos monitorizados ou elementos nos que estea involucrado (por exemplo, peticións das que vostede sexa autor ou asignadas a vostede)." - text_user_wrote: "%{value} escribiu:" - text_user_wrote_in: "%{value} escribiu (%{link}):" - text_wiki_destroy_confirmation: Seguro que quere borrar o wiki e todo o seu contido? - text_workflow_edit: Seleccionar un fluxo de traballo para actualizar - warning_attachments_not_saved: "Non foi posíbel gardar %{count} ficheiros." - field_editable: "Editábel" - text_plugin_assets_writable: "Ten permisos de escritura no cartafol de recursos do complemento." - label_display: "Mostrar" - button_create_and_continue: "Crear en continuar" - text_custom_field_possible_values_info: "Cada valor nunha liña." - setting_repository_log_display_limit: "Número máximo de revisións que se mostran no ficheiro do historial." - setting_file_max_size_displayed: "Tamaño máximo dos ficheiros de texto que se mostran liña por liña." - field_watcher: "Seguidor" - setting_openid: "Permitir rexistrarse e acceder mediante OpenID." - field_identity_url: "URL de OpenID" - label_login_with_open_id_option: "ou acceda mediante OpenID." - field_content: "Contido" - label_descending: "Descendente" - label_sort: "Ordenar" - label_ascending: "Ascendente" - label_date_from_to: "De %{start} a %{end}" - label_greater_or_equal: ">=" - label_less_or_equal: "<=" - text_wiki_page_destroy_question: "Esta páxina ten %{descendants} subpáxinas e descendentes. Que quere facer?" - text_wiki_page_reassign_children: "Asignar as subpáxinas a esta páxina superior." - text_wiki_page_nullify_children: "Manter as subpáxinas como páxinas raíz." - text_wiki_page_destroy_children: "Eliminar as subpáxinas e todas as súas descendentes." - setting_password_min_length: "Lonxitude mínima dos contrasinais" - field_group_by: "Agrupar os resultados por" - mail_subject_wiki_content_updated: "Actualizouse a páxina «%{id}» do wiki." - label_wiki_content_added: "Engadiuse unha páxina ao wiki." - mail_subject_wiki_content_added: "Engadiuse a páxina «%{id}» ao wiki." - mail_body_wiki_content_added: "%{author} engadiu a páxina «%{id}» ao wiki." - label_wiki_content_updated: "Actualizouse a páxina." - mail_body_wiki_content_updated: "%{author} actualizou a páxina «%{id}» do wiki." - permission_add_project: "Crear un proxecto" - setting_new_project_user_role_id: "Rol que se lle dá aos usuarios que non son administradores e crear algún proxecto." - label_view_all_revisions: "Ver todas as revisións" - label_tag: "Etiqueta" - label_branch: "Rama" - error_no_tracker_in_project: "Non hai ningún tipo de petición asociado con este proxecto. Revise a configuración do proxecto." - error_no_default_issue_status: "Non se definiu un estado predeterminado para as peticións. Revise a configuración desde «Administración → Estados das peticións»." - text_journal_changed: "O campo «%{label}» cambiou de «%{old}» a «%{new}»." - text_journal_set_to: "O campo «%{label}» é agora «%{value}»." - text_journal_deleted: "Eliminouse o campo «%{label}» (%{old})." - label_group_plural: "Grupos" - label_group: "Grupo" - label_group_new: "Crear un grupo" - label_time_entry_plural: "Tempo empregado" - text_journal_added: "Engadiuse o campo «%{label}» co valor «%{value}»." - field_active: "Activo" - enumeration_system_activity: "Actividade do sistema" - permission_delete_issue_watchers: "Eliminar os seguidores" - version_status_closed: "pechada" - version_status_locked: "bloqueada" - version_status_open: "aberta" - error_can_not_reopen_issue_on_closed_version: "Non se pode volver abrir unha petición que estea asignada a unha versión pechada." - label_user_anonymous: "Anónimo" - button_move_and_follow: "Mover e seguir" - setting_default_projects_modules: "Módulos activados de maneira predeterminada para novos proxectos." - setting_gravatar_default: "Imaxe de Gravatar predeterminada" - field_sharing: "Compartir" - label_version_sharing_hierarchy: "Coa xerarquía do proxecto" - label_version_sharing_system: "Con todos os proxectos" - label_version_sharing_descendants: "Cos subproxectos" - label_version_sharing_tree: "Coa árbore de proxectos" - label_version_sharing_none: "Non compartir" - error_can_not_archive_project: "Non é posíbel arquivar este proxecto." - button_copy_and_follow: "Copiar e seguir" - label_copy_source: "Fonte" - setting_issue_done_ratio: "Calcular a proporción de peticións completadas mediante" - setting_issue_done_ratio_issue_status: "O estado das peticións" - error_issue_done_ratios_not_updated: "Non se actualizaron as proporcións de peticións completadas." - error_workflow_copy_target: "Seleccione os tipos de petición e os roles." - setting_issue_done_ratio_issue_field: "Use o campo da petición" - label_copy_same_as_target: "O mesmo que o de destino" - label_copy_target: "Petición de destino" - notice_issue_done_ratios_updated: "Actualizáronse as proporcións de peticións completadas." - error_workflow_copy_source: "Seleccione un tipo de petición e rol de orixe." - label_update_issue_done_ratios: "Actualizar as proporcións de peticións completadas" - setting_start_of_week: "Que os calendarios comecen o" - permission_view_issues: "Ver as peticións" - label_display_used_statuses_only: "Só mostrar os estados que osa este tipo de petición." - label_revision_id: "Revisión %{value}" - label_api_access_key: "Chave de acceso á API" - label_api_access_key_created_on: "A chave de acceso á API creouse hai %{value}." - label_feeds_access_key: "Chave de acceso mediante Atom" - notice_api_access_key_reseted: "Restableceuse a súa chave de acceso á API." - setting_rest_api_enabled: "Activar o servizo web REST." - label_missing_api_access_key: "Necesita unha chave de acceso á API." - label_missing_feeds_access_key: "Necesita unha chave de acceso mediante Atom." - button_show: "Mostrar" - text_line_separated: "Permítense varios valores (un por liña)." - setting_mail_handler_body_delimiters: "Acurtar as mensaxes a partir dunha destas liñas." - permission_add_subprojects: "Crear subproxectos" - label_subproject_new: "Crear un sobproxecto" - text_own_membership_delete_confirmation: |- - Está a piques de eliminar todos ou parte dos permisos de que dispón, e pode - que en canto remate perda a capacidade de facer máis cambios neste proxecto. - Está seguro de que quere continuar? - label_close_versions: "Pechar as versións completadas" - label_board_sticky: "Destacado" - label_board_locked: "Bloqueado" - permission_export_wiki_pages: "Exportar as páxinas do wiki" - setting_cache_formatted_text: "Gardar o texto formatado na caché." - permission_manage_project_activities: "Xestionar as actividades do proxecto" - error_unable_delete_issue_status: "Non foi posíbel eliminar o estado da petición. (%{value})" - label_profile: "Perfil" - permission_manage_subtasks: "Xestionar as subtarefas" - field_parent_issue: "Tarefa superior" - label_subtask_plural: "Subtarefas" - label_project_copy_notifications: "Enviar notificacións por correo electrónico durante a copia do proxecto." - error_can_not_delete_custom_field: "Non foi posíbel eliminar o campo personalizado." - error_unable_to_connect: "Non foi posíbel conectarse (%{value})." - error_can_not_remove_role: "Este rol non pode eliminarse porque está a usarse." - error_can_not_delete_tracker: "Este tipo de petición non pode eliminarse porque existen peticións deste tipo." - field_principal: "Principal" - notice_failed_to_save_members: "Non foi posíbel gardar os membros: %{errors}." - text_zoom_out: "Afastar" - text_zoom_in: "Achegar" - notice_unable_delete_time_entry: "Non foi posíbel eliminar a entrada do historial." - label_overall_spent_time: "Tempo total empregado" - field_time_entries: "Rexistrar tempo" - project_module_gantt: "Gantt" - project_module_calendar: "Calendario" - button_edit_associated_wikipage: "Editar a páxina do wiki asociada: %{page_title}" - field_text: "Campo de texto" - setting_default_notification_option: "Opción de notificación predeterminada" - label_user_mail_option_only_my_events: "Só para as cousas que sigo ou nas que estou involucrado" - label_user_mail_option_none: "Non hai eventos." - field_member_of_group: "Grupo do asignado" - field_assigned_to_role: "Rol do asignado" - notice_not_authorized_archived_project: "O proxecto ao que intenta acceder está arquivado." - label_principal_search: "Buscar un usuario ou grupo:" - label_user_search: "Buscar un usuario:" - field_visible: "Visíbel" - setting_commit_logtime_activity_id: "Actividade de tempo rexistrado" - text_time_logged_by_changeset: "Aplicado nos cambios %{value}." - setting_commit_logtime_enabled: "Activar o rexistro de tempo." - notice_gantt_chart_truncated: "O diagrama recortouse porque se superou o número de elementos que pode mostrar (%{max})." - setting_gantt_items_limit: "Número máximo de elementos que se poden mostrar no diagrama de Gantt." - field_warn_on_leaving_unsaved: "Avisarme antes de pechar unha páxina que conteña texto sen gardar." - text_warn_on_leaving_unsaved: "A páxina actual contén texto sen gardar que se perderá se continúa." - label_my_queries: "Consultas personalizadas" - text_journal_changed_no_detail: "Actualizouse o campo «%{label}»." - label_news_comment_added: "Engadiuse un comentario a unha nova." - button_expand_all: "Expandilo todo" - button_collapse_all: "Recollelo todo" - label_additional_workflow_transitions_for_assignee: "Transicións adicionais que se lle permiten ao asignado" - label_additional_workflow_transitions_for_author: "Transicións adicionais que se lle permiten ao autor" - label_bulk_edit_selected_time_entries: "Editar as entradas de tempo seleccionadas á vez" - text_time_entries_destroy_confirmation: "Está seguro de que quere eliminar as entradas de tempo seleccionadas?" - label_role_anonymous: "Anónimo" - label_role_non_member: "Non membro" - label_issue_note_added: "Engadiuse a nota." - label_issue_status_updated: "Actualizouse o estado." - label_issue_priority_updated: "Actualizouse a prioridade." - label_issues_visibility_own: "Peticións creadas polo usuario ou asignadas a el" - field_issues_visibility: "Visibilidade das peticións" - label_issues_visibility_all: "Todas as peticións" - permission_set_own_issues_private: "Peticións propias públicas ou privadas" - field_is_private: "Privadas" - permission_set_issues_private: "Peticións públicas ou privadas" - label_issues_visibility_public: "Todas as peticións non privadas" - text_issues_destroy_descendants_confirmation: "Isto tamén eliminará %{count} subtareas." - field_commit_logs_encoding: "Codificación das mensaxes das remisións" - field_scm_path_encoding: "Codificación das rutas" - text_scm_path_encoding_note: "Predeterminada: UTF-8" - field_path_to_repository: "Ruta do repositorio" - field_root_directory: "Cartafol raíz" - field_cvs_module: "Módulo" - field_cvsroot: "CVSROOT" - text_mercurial_repository_note: "Repositorio local (por exemplo «/hgrepo» ou «C:\\hgrepo»)" - text_scm_command: "Orde" - text_scm_command_version: "Versión" - label_git_report_last_commit: "Informar da última remisión de ficheiros e cartafoles" - notice_issue_successful_create: "Creouse a petición %{id}." - label_between: "entre" - setting_issue_group_assignment: "Permitir asignar peticións a grupos." - label_diff: "Diferencias" - text_git_repository_note: "O repositorio está baleiro e é local (por exemplo, «/gitrepo» ou «C:\\gitrepo»)" - description_query_sort_criteria_direction: "Dirección da orde" - description_project_scope: "Ámbito da busca" - description_filter: "Filtro" - description_user_mail_notification: "Configuración das notificacións por correo electrónico" - description_message_content: "Contido da mensaxe" - description_available_columns: "Columnas dispoñíbeis" - description_issue_category_reassign: "Escolla a categoría da petición." - description_search: "Campo de busca" - description_notes: "Notas" - description_choose_project: "Proxectos" - description_query_sort_criteria_attribute: "Ordenar polo atributo" - description_wiki_subpages_reassign: "Escoller unha nova páxina superior" - description_selected_columns: "Columnas seleccionadas" - label_parent_revision: "Revisión superior" - label_child_revision: "Subrevisión" - error_scm_annotate_big_text_file: "Non pode engadirse unha anotación á entrada, supera o tamaño máximo para os ficheiros de texto." - setting_default_issue_start_date_to_creation_date: "usar a data actual como a data de inicio das novas peticións." - button_edit_section: "Editar esta sección" - setting_repositories_encodings: "Anexos e codificación dos repositorios" - description_all_columns: "Todas as columnas" - button_export: "Exportar" - label_export_options: "Opcións de exportación a %{export_format}" - error_attachment_too_big: "Non é posíbel enviar este ficheiro porque o seu tamaño supera o máximo permitido (%{max_size})." - notice_failed_to_save_time_entries: "Non foi posíbel gardar %{count} das %{total} entradas de tempo seleccionadas: %{ids}." - label_x_issues: - zero: "0 peticións" - one: "1 petición" - other: "%{count} peticións" - label_repository_new: "Engadir un repositorio" - field_repository_is_default: "Repositorio principal" - label_copy_attachments: "Copiar os anexos" - label_item_position: "%{position}/%{count}" - label_completed_versions: "Versións completadas" - text_project_identifier_info: "Só se permiten letras latinas minúsculas (a-z), díxitos, guións e guións baixos.
    Non pode cambiar o identificador despois de gardalo." - field_multiple: "Varios valores" - setting_commit_cross_project_ref: "Permitir ligar e solucionar peticións do resto de proxectos." - text_issue_conflict_resolution_add_notes: "Engadir as notas e descartar o resto dos cambios." - text_issue_conflict_resolution_overwrite: "Aplicar os cambios de todos xeitos (as notas anteriores manteranse, pero pode que se perda algún dos outros cambios)." - notice_issue_update_conflict: "Outro usuario actualizou a petición mentres vostede estaba a modificala." - text_issue_conflict_resolution_cancel: "Descartar todos os meus cambios e volver mostrar %{link}." - permission_manage_related_issues: "Xestionar as peticións relacionadas" - field_auth_source_ldap_filter: "Filtro de LDAP" - label_search_for_watchers: "Buscar seguidores que engadir" - notice_account_deleted: "A súa conta eliminouse de maneira permanente." - setting_unsubscribe: "Permitirlle aos usuarios eliminar as súas contas." - button_delete_my_account: "Eliminar a miña conta." - text_account_destroy_confirmation: |- - Está seguro de que quere continuar? - A súa conta eliminarase de maneira permanente, e non poderá volvela activar nunca. - error_session_expired: "Caducou a sesión, acceda de novo ao sitio." - text_session_expiration_settings: "Advertencia: ao cambiar estas opcións é posíbel que caduquen todas as sesións actuais, incluída a súa, e todos os usuarios deban identificarse de novo." - setting_session_lifetime: "Tempo de vida máximo das sesións" - setting_session_timeout: "Tempo de inactividade máximo das sesións" - label_session_expiration: "Caducidade das sesións" - permission_close_project: "Pechar ou volver abrir o proxecto" - button_close: "Pechar" - button_reopen: "Volver abrir" - project_status_active: "activo" - project_status_closed: "pechado" - project_status_archived: "arquivado" - text_project_closed: "O proxecto está pechado, e só admite accións de lectura." - notice_user_successful_create: "Creouse o usuario %{id}." - field_core_fields: "Campos estándar" - field_timeout: "Tempo límite (en segundos)" - setting_thumbnails_enabled: "Mostrar as miniaturas dos anexos." - setting_thumbnails_size: "Tamaño das miniaturas (en píxeles)" - label_status_transitions: "Transicións de estado" - label_fields_permissions: "Permisos dos campos" - label_readonly: "Só lectura" - label_required: "Necesario" - text_repository_identifier_info: "Só se permiten letras minúsculas latinas (a-z), díxitos, guións e guións baixos.
    Non pode cambiar o identificador unha vez queda gardado." - field_board_parent: "Foro superior" - label_attribute_of_project: "%{name} do proxecto" - label_attribute_of_author: "%{name} do autor" - label_attribute_of_assigned_to: "%{name} do asignado" - label_attribute_of_fixed_version: "%{name} da versión de destino" - label_copy_subtasks: "Copiar as subtarefas" - label_copied_to: "copiado a" - label_copied_from: "copiado de" - label_any_issues_in_project: "calquera petición do proxecto" - label_any_issues_not_in_project: "calquera petición fóra do proxecto" - field_private_notes: "Notas privadas" - permission_view_private_notes: "Ver as notas privadas" - permission_set_notes_private: "Marcar as notas como privadas" - label_no_issues_in_project: "O proxecto non ten peticións." - label_any: "todos" - label_last_n_weeks: "ultimas %{count} semanas" - setting_cross_project_subtasks: "Permitir tarefas en varios proxectos" - label_cross_project_descendants: "Con subproxectos" - label_cross_project_tree: "Con árbore de proxectos" - label_cross_project_hierarchy: "Con xerarquía de proxectos" - label_cross_project_system: "Con todos os proxectos" - button_hide: "Agochar" - setting_non_working_week_days: "Días non lectivos" - label_in_the_next_days: "nos seguintes" - label_in_the_past_days: "nos últimos" - label_attribute_of_user: "%{name} do usuario" - text_turning_multiple_off: "Se desactiva varios valores, eliminaranse varios valores para preservar só un valor por elemento." - label_attribute_of_issue: "%{name} da petición" - permission_add_documents: "Engadir documentos" - permission_edit_documents: "Editar os documentos" - permission_delete_documents: "Eliminar os documentos" - label_gantt_progress_line: "Liña do progreso" - setting_jsonp_enabled: "Activar a compatibilidade con JSONP." - field_inherit_members: "Herdar os membros" - field_closed_on: "Pechado" - field_generate_password: "Xerar un contrasinal" - setting_default_projects_tracker_ids: "Tipos de petición predeterminados para novos proxectos." - label_total_time: "Total" - text_scm_config: "Pode configurar as súas ordes de SCM en «config/configuration.yml». Reinicie o programa despois de gardar os cambios." - text_scm_command_not_available: "A orde de SCM non está dispoñíbel. Revise a opción desde o panel de administración." - setting_emails_header: "Cabeceira da mensaxe" - notice_account_not_activated_yet: 'Aínda non activou a conta. Siga esta ligazón para solicitar unha nova mensaxe de confirmación.' - notice_account_locked: "A conta está bloqueada." - label_hidden: "Agochado" - label_visibility_private: "só para min" - label_visibility_roles: "só para estes roles" - label_visibility_public: "para calquera usuario" - field_must_change_passwd: "Debe cambiar de contrasinal a seguinte vez que acceda ao sitio." - notice_new_password_must_be_different: "O novo contrasinal non pode ser idéntico ao contrasinal actual." - setting_mail_handler_excluded_filenames: "Excluír anexos por nome" - text_convert_available: "O programa «convert» de ImageMagick está dispoñíbel (opcional)." - label_link: "Ligazón" - label_only: "só" - label_drop_down_list: "lista despregábel" - label_checkboxes: "caixas de opción múltiple" - label_link_values_to: "Ligar os valores co URL" - setting_force_default_language_for_anonymous: "Definir un idioma predeterminado para os usuarios anónimos." - setting_force_default_language_for_loggedin: "Definir un idioma predeterminado para os usuarios rexistrados." - label_custom_field_select_type: "Seleccionar o tipo de obxecto ao que se anexará o campo personalizado." - label_issue_assigned_to_updated: "Actualizouse o asignado." - label_check_for_updates: "Comprobar se hai actualizacións" - label_latest_compatible_version: "Última versión compatíbel" - label_unknown_plugin: "Complemento descoñecido" - label_radio_buttons: "caixas de opción única" - label_group_anonymous: "Usuarios anónimos" - label_group_non_member: "Usuarios non membros" - label_add_projects: "Engadir proxectos" - field_default_status: "Estado predeterminado" - text_subversion_repository_note: "Exemplos: file:///, http://, https://, svn://, svn+[esquema de túnel]://" - field_users_visibility: "Visibilidade dos usuarios" - label_users_visibility_all: "Todos os usuarios activos" - label_users_visibility_members_of_visible_projects: "Membros de proxectos visíbeis" - label_edit_attachments: "Editar os ficheiros anexos" - setting_link_copied_issue: "Ligar aos tíckets ao copialos" - label_link_copied_issue: "Ligar ao tícket copiado" - label_ask: "Preguntar" - label_search_attachments_yes: Buscar nomes e descricións dos ficheiros - label_search_attachments_no: Non buscar ficheiros - label_search_attachments_only: Buscar só ficheiros - label_search_open_issues_only: Só peticións abertas - field_address: Correo electrónico - setting_max_additional_emails: Máximo número de enderezos de correo adicionais - label_email_address_plural: Correos - label_email_address_add: Engadir enderezo de correo - label_enable_notifications: Activar notificacións - label_disable_notifications: Desactivar notificacións - setting_search_results_per_page: Resultados da busca por páxina - label_blank_value: En branco - permission_copy_issues: Copiar peticións - error_password_expired: A túa contrasinal caducou ou o administrador obrígate - a cambiala. - field_time_entries_visibility: Visibilidade das entradas de tempo - setting_password_max_age: Obrigar a cambiar a contrasinal despois de - label_parent_task_attributes: Atributos da tarefa pai - label_parent_task_attributes_derived: Calculada a partir das subtarefas - label_parent_task_attributes_independent: Independente das subtarefas - label_time_entries_visibility_all: Todas as entradas de tempo - label_time_entries_visibility_own: Horas creadas polo usuario - label_member_management: Xestión de membros - label_member_management_all_roles: Todos os roles - label_member_management_selected_roles_only: Só estes roles - label_password_required: Confirma a túa contrasinal para continuar - label_total_spent_time: "Tempo total empregado" - notice_import_finished: "%{count} elementos foron importados" - notice_import_finished_with_errors: "%{count} dun total de %{total} elementos non puideron ser importados" - error_invalid_file_encoding: O ficheiro non é un ficheiro codificado %{encoding} válido - error_invalid_csv_file_or_settings: O ficheiro non é un arquivo CSV ou non coincide coas - opcións de abaixo - error_can_not_read_import_file: Aconteceu un erro lendo o ficheiro a importar - permission_import_issues: Importar peticións - label_import_issues: Importar peticións - label_select_file_to_import: Selecciona o ficheiro a importar - label_fields_separator: Separador dos campos - label_fields_wrapper: Envoltorio dos campos - label_encoding: Codificación - label_comma_char: Coma - label_semi_colon_char: Punto e coma - label_quote_char: Comilla simple - label_double_quote_char: Comilla dobre - label_fields_mapping: Mapeo de campos - label_file_content_preview: Vista previa do contido - label_create_missing_values: Crear valores non presentes - button_import: Importar - field_total_estimated_hours: Total de tempo estimado - label_api: API - label_total_plural: Totais - label_assigned_issues: Peticións asignadas - label_field_format_enumeration: Listaxe chave/valor - label_f_hour_short: '%{value} h' - field_default_version: Versión predeterminada - error_attachment_extension_not_allowed: A extensión anexada %{extension} non é permitida - setting_attachment_extensions_allowed: Extensións permitidas - setting_attachment_extensions_denied: Extensións prohibidas - label_any_open_issues: Calquera petición aberta - label_no_open_issues: Peticións non abertas - label_default_values_for_new_users: Valor predeterminado para novos usuarios - error_ldap_bind_credentials: A conta/contrasinal do LDAP non é válida - setting_sys_api_key: Chave da API - setting_lost_password: Esqueceu a contrasinal? - mail_subject_security_notification: Notificación de seguridade - mail_body_security_notification_change: ! '%{field} modificado.' - mail_body_security_notification_change_to: ! '%{field} modificado por %{value}.' - mail_body_security_notification_add: ! '%{field} %{value} engadido.' - mail_body_security_notification_remove: ! '%{field} %{value} eliminado.' - mail_body_security_notification_notify_enabled: O correo electrónico %{value} agora recibirá - notificacións - mail_body_security_notification_notify_disabled: O correo electrónico %{value} deixará de recibir - notificacións - mail_body_settings_updated: ! 'As seguintes opcións foron actualizadas:' - field_remote_ip: Enderezo IP - label_wiki_page_new: Nova páxina wiki - label_relations: Relacións - button_filter: Filtro - mail_body_password_updated: A súa contrasinal foi cambiada. - label_no_preview: Non hai vista previa dispoñible - error_no_tracker_allowed_for_new_issue_in_project: O proxecto non ten ningún tipo - para que poida crear unha petición - label_tracker_all: Tódolos tipos - label_new_project_issue_tab_enabled: Amosar a lapela "Nova petición" - setting_new_item_menu_tab: Lapela no menú de cada proxecto para creación de novos obxectos - label_new_object_tab_enabled: Amosar a lista despregable "+" - error_no_projects_with_tracker_allowed_for_new_issue: Non hai proxectos con tipos - para as que poida crear unha petición - field_textarea_font: Fonte usada nas áreas de texto - label_font_default: Fonte por defecto - label_font_monospace: Fonte Monospaced - label_font_proportional: Fonte Proporcional - setting_timespan_format: Formato de período temporal - label_table_of_contents: Índice de contidos - setting_commit_logs_formatting: Aplicar formateo de texto para as mensaxes de commit - setting_mail_handler_enable_regex: Activar expresións regulares - error_move_of_child_not_possible: 'A subtarefa %{child} non se pode mover ao novo - proxecto: %{errors}' - error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted: O tempo empregado non pode - ser reasignado a unha petición que vai ser eliminada - setting_timelog_required_fields: Campos obrigatorios para as imputacións de tempo - label_attribute_of_object: '%{object_name}''s %{name}' - label_user_mail_option_only_assigned: Só para as cousas que sigo ou que teño asignado - label_user_mail_option_only_owner: Só para as cousas que sigo ou son o propietario - warning_fields_cleared_on_bulk_edit: Os cambios provocarán o borrado automático - dos valores de un ou máis campos dos obxectos seleccionados - field_updated_by: Actualizado por - field_last_updated_by: Última actualización por - field_full_width_layout: Deseño para ancho completo - label_last_notes: Últimas notas - field_digest: Suma de verificación - field_default_assigned_to: Asignado por defecto - setting_show_custom_fields_on_registration: Amosar os campos personalizados no rexistro - permission_view_news: Ver noticias - label_no_preview_alternative_html: Non hai vista previa dispoñible. %{link} o ficheiro no seu lugar. - label_no_preview_download: Descargar - setting_close_duplicate_issues: Pechar as peticións duplicadas de xeito automático - error_exceeds_maximum_hours_per_day: Non se poden imputar máis de %{max_hours} horas no - mesmo día (%{logged_hours} horas teñen sido xa imputadas) - setting_time_entry_list_defaults: Configuración por defecto do tempo imputado - setting_timelog_accept_0_hours: Admitir tempo imputado con 0 horas - setting_timelog_max_hours_per_day: Máximo número de horas que poden imputarse por día e usuario - label_x_revisions: "%{count} revisións" - error_can_not_delete_auth_source: Este método de autenticación está en uso e non pode - ser borrado. - button_actions: Accións - mail_body_lost_password_validity: Por favor, teña en conta que só pode cambiar a contrasinal - unha vez usando esta ligazón. - text_login_required_html: Cando non precisan autenticación os proxectos públicos e os seus - contidos están dispoñibles libremente na rede. Vostede pode editar - os permisos aplicados. - label_login_required_yes: 'Si' - label_login_required_no: Non, permitir acceso anónimo aos proxectos públicos - text_project_is_public_non_member: Os proxectos públicos e os seus contidos están dispoñibles - para todos os usuarios logueados. - text_project_is_public_anonymous: Os proxectos públicos e os seus contidos están dispoñibles libremente - na rede. - label_version_and_files: Versións (%{count}) e Ficheiros - label_ldap: LDAP - label_ldaps_verify_none: LDAPS (sen comprobación de certificado) - label_ldaps_verify_peer: LDAPS - label_ldaps_warning: Se recomenda usar unha conexión LDAPS con comprobación de - certificado para evitar calquera manipulación durante o proceso de autenticación. - label_nothing_to_preview: Nada que previsualizar - error_token_expired: Esta ligazón para recuperar a contrasinal ten caducado, por favor, tente de novo. - error_spent_on_future_date: Non pode imputar tempo nunha data futura - setting_timelog_accept_future_dates: Permitir imputar tempo en datas futuras - label_delete_link_to_subtask: Eliminar relación - error_not_allowed_to_log_time_for_other_users: Vostede non ten permitido imputar tempo para outros usuarios - permission_log_time_for_other_users: Imputar tempo dedicado a outros usuarios - label_tomorrow: mañá - label_next_week: próxima semana - label_next_month: próximo mes - text_role_no_workflow: Non hai fluxo de traballo definido para este rol - text_status_no_workflow: Ningún tipo de tarefa usa este estado nos fluxos de traballo - setting_mail_handler_preferred_body_part: Parte preferida dos correos multiparte (HTML) - setting_show_status_changes_in_mail_subject: Amosar os cambios de estado no asunto das notificacións de correo das - tarefas - label_inherited_from_parent_project: Herdado do proxecto pai - label_inherited_from_group: Herdado do grupo %{name} - label_trackers_description: Descricións dos tipos de tarefas - label_open_trackers_description: Ver as descricións de todos os tipos de tarefas - label_preferred_body_part_text: Texto - label_preferred_body_part_html: HTML (experimental) - field_parent_issue_subject: Asunto da tarefa pai - permission_edit_own_issues: Editar as propias tarefas - text_select_apply_tracker: Seleccionar o tipo de tarefa - label_updated_issues: Tarefas actualizadas - text_avatar_server_config_html: O servidor de avatares é actualmente %{url}. - Vostede o pode configurar en config/configuration.yml. - setting_gantt_months_limit: Máximo número de meses amosados no diagrama de gantt - permission_import_time_entries: Importar tempos dedicados - label_import_notifications: Enviar notificacións de correo durante a importación - text_gs_available: Soporte de PDF ImageMagick dispoñible (opcional) - field_recently_used_projects: Número de proxectos recentemente usados no despregable de proxectos - label_optgroup_bookmarks: Favoritos - label_optgroup_others: Outros proxectos - label_optgroup_recents: Usado recentemente - button_project_bookmark: Engadir favoritos - button_project_bookmark_delete: Borrar favoritos - field_history_default_tab: Lapela por defecto no histórico de tarefas - label_issue_history_properties: Cambios nas propiedades - label_issue_history_notes: Notas - label_last_tab_visited: Última lapela visitada - field_unique_id: ID único - text_no_subject: sen asunto - setting_password_required_char_classes: Clases de caracteres requeridos para as contrasinais - label_password_char_class_uppercase: letras maiúsculas - label_password_char_class_lowercase: letras minúsculas - label_password_char_class_digits: díxitos - label_password_char_class_special_chars: caracteres especiais - text_characters_must_contain: Debe conter %{character_classes}. - label_starts_with: comeza con - label_ends_with: finaliza con - label_issue_fixed_version_updated: Versión destino actualizada - setting_project_list_defaults: Listaxes por defecto dos proxectos - label_display_type: Amosar os resultados coma - label_display_type_list: Listaxe - label_display_type_board: Taboleiro - label_my_bookmarks: Meus favoritos - label_import_time_entries: Importar tempos dedicados diff --git a/config/locales/he.yml b/config/locales/he.yml deleted file mode 100644 index fc076f6..0000000 --- a/config/locales/he.yml +++ /dev/null @@ -1,1320 +0,0 @@ -# Hebrew translation for Redmine -# Initiated by Dotan Nahum (dipidi@gmail.com) -# Jul 2010 - Updated by Orgad Shaneh (orgads@gmail.com) - -he: - direction: rtl - date: - formats: - default: "%d/%m/%Y" - short: "%d/%m" - long: "%d/%m/%Y" - only_day: "%e" - - day_names: [ראשון, שני, שלישי, רביעי, חמישי, שישי, שבת] - abbr_day_names: ["א'", "ב'", "ג'", "ד'", "ה'", "ו'", "ש'"] - month_names: [~, ינואר, פברואר, מרץ, אפריל, מאי, יוני, יולי, אוגוסט, ספטמבר, אוקטובר, נובמבר, דצמבר] - abbr_month_names: [~, יאנ, פבר, מרץ, אפר, מאי, יונ, יול, אוג, ספט, אוק, נוב, דצמ] - order: - - :day - - :month - - :year - - time: - formats: - default: "%a %d/%m/%Y %H:%M:%S" - time: "%H:%M" - short: "%d %b %H:%M" - long: "%B %d, %Y %H:%M" - only_second: "%S" - - datetime: - formats: - default: "%d-%m-%YT%H:%M:%S%Z" - - am: 'am' - pm: 'pm' - - datetime: - distance_in_words: - half_a_minute: 'חצי דקה' - less_than_x_seconds: - zero: 'פחות משניה' - one: 'פחות משניה' - other: 'פחות מ־%{count} שניות' - x_seconds: - one: 'שניה אחת' - other: '%{count} שניות' - less_than_x_minutes: - zero: 'פחות מדקה אחת' - one: 'פחות מדקה אחת' - other: 'פחות מ־%{count} דקות' - x_minutes: - one: 'דקה אחת' - other: '%{count} דקות' - about_x_hours: - one: 'בערך שעה אחת' - other: 'בערך %{count} שעות' - x_hours: - one: "1 שעה" - other: "%{count} שעות" - x_days: - one: 'יום אחד' - other: '%{count} ימים' - about_x_months: - one: 'בערך חודש אחד' - other: 'בערך %{count} חודשים' - x_months: - one: 'חודש אחד' - other: '%{count} חודשים' - about_x_years: - one: 'בערך שנה אחת' - other: 'בערך %{count} שנים' - over_x_years: - one: 'מעל שנה אחת' - other: 'מעל %{count} שנים' - almost_x_years: - one: "כמעט שנה" - other: "כמעט %{count} שנים" - - number: - format: - precision: 3 - separator: '.' - delimiter: ',' - currency: - format: - unit: 'ש"ח' - precision: 2 - format: '%u %n' - human: - storage_units: - format: "%n %u" - units: - byte: - one: "בייט" - other: "בתים" - kb: "KB" - mb: "MB" - gb: "GB" - tb: "TB" - - support: - array: - sentence_connector: "וגם" - skip_last_comma: true - - activerecord: - errors: - template: - header: - one: "1 error prohibited this %{model} from being saved" - other: "%{count} errors prohibited this %{model} from being saved" - messages: - inclusion: "לא נכלל ברשימה" - exclusion: "לא זמין" - invalid: "לא ולידי" - confirmation: "לא תואם לאישור" - accepted: "חייב באישור" - empty: "חייב להכלל" - blank: "חייב להכלל" - too_long: "ארוך מדי (לא יותר מ־%{count} תוים)" - too_short: "קצר מדי (לא יותר מ־%{count} תוים)" - wrong_length: "לא באורך הנכון (חייב להיות %{count} תוים)" - taken: "לא זמין" - not_a_number: "הוא לא מספר" - greater_than: "חייב להיות גדול מ־%{count}" - greater_than_or_equal_to: "חייב להיות גדול או שווה ל־%{count}" - equal_to: "חייב להיות שווה ל־%{count}" - less_than: "חייב להיות קטן מ־%{count}" - less_than_or_equal_to: "חייב להיות קטן או שווה ל־%{count}" - odd: "חייב להיות אי זוגי" - even: "חייב להיות זוגי" - greater_than_start_date: "חייב להיות מאוחר יותר מתאריך ההתחלה" - not_same_project: "לא שייך לאותו הפרויקט" - circular_dependency: "קשר זה יצור תלות מעגלית" - cant_link_an_issue_with_a_descendant: "לא ניתן לקשר נושא לתת־משימה שלו" - earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" - not_a_regexp: "is not a valid regular expression" - open_issue_with_closed_parent: "An open issue cannot be attached to a closed parent task" - must_contain_uppercase: "must contain uppercase letters (A-Z)" - must_contain_lowercase: "must contain lowercase letters (a-z)" - must_contain_digits: "must contain digits (0-9)" - must_contain_special_chars: "must contain special characters (!, $, %, ...)" - - actionview_instancetag_blank_option: בחר בבקשה - - general_text_No: 'לא' - general_text_Yes: 'כן' - general_text_no: 'לא' - general_text_yes: 'כן' - general_lang_name: 'Hebrew (עברית)' - general_csv_separator: ',' - general_csv_decimal_separator: '.' - general_csv_encoding: ISO-8859-8 - general_pdf_fontname: freesans - general_pdf_monospaced_fontname: freemono - general_first_day_of_week: '7' - - notice_account_updated: החשבון עודכן בהצלחה! - notice_account_invalid_credentials: שם משתמש או סיסמה שגויים - notice_account_password_updated: הסיסמה עודכנה בהצלחה! - notice_account_wrong_password: סיסמה שגויה - notice_account_register_done: החשבון נוצר בהצלחה. להפעלת החשבון לחץ על הקישור שנשלח לדוא"ל שלך. - notice_account_unknown_email: משתמש לא מוכר. - notice_can_t_change_password: החשבון הזה משתמש במקור הזדהות חיצוני. שינוי סיסמה הינו בילתי אפשר - notice_account_lost_email_sent: דוא"ל עם הוראות לבחירת סיסמה חדשה נשלח אליך. - notice_account_activated: חשבונך הופעל. אתה יכול להתחבר כעת. - notice_successful_create: יצירה מוצלחת. - notice_successful_update: עידכון מוצלח. - notice_successful_delete: מחיקה מוצלחת. - notice_successful_connection: חיבור מוצלח. - notice_file_not_found: הדף שאתה מנסה לגשת אליו אינו קיים או שהוסר. - notice_locking_conflict: המידע עודכן על ידי משתמש אחר. - notice_not_authorized: אינך מורשה לראות דף זה. - notice_not_authorized_archived_project: הפרויקט שאתה מנסה לגשת אליו נמצא בארכיון. - notice_email_sent: "דואל נשלח לכתובת %{value}" - notice_email_error: "ארעה שגיאה בעת שליחת הדואל (%{value})" - notice_feeds_access_key_reseted: מפתח ה־Atom שלך אופס. - notice_api_access_key_reseted: מפתח הגישה שלך ל־API אופס. - notice_failed_to_save_issues: "נכשרת בשמירת %{count} נושאים ב %{total} נבחרו: %{ids}." - notice_failed_to_save_members: "כשלון בשמירת חבר(ים): %{errors}." - notice_no_issue_selected: "לא נבחר אף נושא! בחר בבקשה את הנושאים שברצונך לערוך." - notice_account_pending: "החשבון שלך נוצר ועתה מחכה לאישור מנהל המערכת." - notice_default_data_loaded: אפשרויות ברירת מחדל מופעלות. - notice_unable_delete_version: לא ניתן למחוק גירסה - notice_unable_delete_time_entry: לא ניתן למחוק רשומת זמן. - notice_issue_done_ratios_updated: אחוזי התקדמות לנושא עודכנו. - - error_can_t_load_default_data: "אפשרויות ברירת המחדל לא הצליחו להיטען: %{value}" - error_scm_not_found: כניסה ו\או מהדורה אינם קיימים במאגר. - error_scm_command_failed: "ארעה שגיאה בעת ניסון גישה למאגר: %{value}" - error_scm_annotate: "הכניסה לא קיימת או שלא ניתן לתאר אותה." - error_issue_not_found_in_project: 'הנושאים לא נמצאו או אינם שיכים לפרויקט' - error_no_tracker_in_project: לא הוגדר סיווג לפרויקט זה. נא בדוק את הגדרות הפרויקט. - error_no_default_issue_status: לא מוגדר מצב ברירת מחדל לנושאים. נא בדוק את התצורה ("ניהול -> מצבי נושא"). - error_can_not_delete_custom_field: לא ניתן למחוק שדה מותאם אישית - error_can_not_delete_tracker: קיימים נושאים בסיווג זה, ולא ניתן למחוק אותו. - error_can_not_remove_role: תפקיד זה נמצא בשימוש, ולא ניתן למחוק אותו. - error_can_not_reopen_issue_on_closed_version: לא ניתן לפתוח מחדש נושא שמשויך לגירסה סגורה - error_can_not_archive_project: לא ניתן לארכב פרויקט זה - error_issue_done_ratios_not_updated: אחוז התקדמות לנושא לא עודכן. - error_workflow_copy_source: נא בחר סיווג או תפקיד מקור - error_workflow_copy_target: נא בחר תפקיד(ים) וסיווג(ים) - error_unable_delete_issue_status: לא ניתן למחוק מצב נושא (%{value}) - error_unable_to_connect: לא ניתן להתחבר (%{value}) - warning_attachments_not_saved: "כשלון בשמירת %{count} קבצים." - - mail_subject_lost_password: "סיסמת ה־%{value} שלך" - mail_body_lost_password: 'לשינו סיסמת ה־Redmine שלך, לחץ על הקישור הבא:' - mail_subject_register: "הפעלת חשבון %{value}" - mail_body_register: 'להפעלת חשבון ה־Redmine שלך, לחץ על הקישור הבא:' - mail_body_account_information_external: "אתה יכול להשתמש בחשבון %{value} כדי להתחבר" - mail_body_account_information: פרטי החשבון שלך - mail_subject_account_activation_request: "בקשת הפעלה לחשבון %{value}" - mail_body_account_activation_request: "משתמש חדש (%{value}) נרשם. החשבון שלו מחכה לאישור שלך:" - mail_subject_reminder: "%{count} נושאים מיועדים להגשה בימים הקרובים (%{days})" - mail_body_reminder: "%{count} נושאים שמיועדים אליך מיועדים להגשה בתוך %{days} ימים:" - mail_subject_wiki_content_added: "דף ה־wiki ‏'%{id}' נוסף" - mail_body_wiki_content_added: דף ה־wiki ‏'%{id}' נוסף ע"י %{author}. - mail_subject_wiki_content_updated: "דף ה־wiki ‏'%{id}' עודכן" - mail_body_wiki_content_updated: דף ה־wiki ‏'%{id}' עודכן ע"י %{author}. - - - field_name: שם - field_description: תיאור - field_summary: תקציר - field_is_required: נדרש - field_firstname: שם פרטי - field_lastname: שם משפחה - field_mail: דוא"ל - field_filename: קובץ - field_filesize: גודל - field_downloads: הורדות - field_author: כותב - field_created_on: נוצר - field_updated_on: עודכן - field_field_format: פורמט - field_is_for_all: לכל הפרויקטים - field_possible_values: ערכים אפשריים - field_regexp: ביטוי רגיל - field_min_length: אורך מינימאלי - field_max_length: אורך מקסימאלי - field_value: ערך - field_category: קטגוריה - field_title: כותרת - field_project: פרויקט - field_issue: נושא - field_status: מצב - field_notes: הערות - field_is_closed: נושא סגור - field_is_default: ערך ברירת מחדל - field_tracker: סיווג - field_subject: שם נושא - field_due_date: תאריך סיום - field_assigned_to: אחראי - field_priority: עדיפות - field_fixed_version: גירסת יעד - field_user: מתשמש - field_principal: מנהל - field_role: תפקיד - field_homepage: דף הבית - field_is_public: פומבי - field_parent: תת פרויקט של - field_is_in_roadmap: נושאים המוצגים במפת הדרכים - field_login: שם משתמש - field_mail_notification: הודעות דוא"ל - field_admin: ניהול - field_last_login_on: התחברות אחרונה - field_language: שפה - field_effective_date: תאריך - field_password: סיסמה - field_new_password: סיסמה חדשה - field_password_confirmation: אישור - field_version: גירסה - field_type: סוג - field_host: שרת - field_port: פורט - field_account: חשבון - field_base_dn: בסיס DN - field_attr_login: תכונת התחברות - field_attr_firstname: תכונת שם פרטים - field_attr_lastname: תכונת שם משפחה - field_attr_mail: תכונת דוא"ל - field_onthefly: יצירת משתמשים זריזה - field_start_date: תאריך התחלה - field_done_ratio: "% גמור" - field_auth_source: מקור הזדהות - field_hide_mail: החבא את כתובת הדוא"ל שלי - field_comments: הערות - field_url: URL - field_start_page: דף התחלתי - field_subproject: תת־פרויקט - field_hours: שעות - field_activity: פעילות - field_spent_on: תאריך - field_identifier: מזהה - field_is_filter: משמש כמסנן - field_issue_to: נושאים קשורים - field_delay: עיקוב - field_assignable: ניתן להקצות נושאים לתפקיד זה - field_redirect_existing_links: העבר קישורים קיימים - field_estimated_hours: זמן משוער - field_column_names: עמודות - field_time_entries: רישום זמנים - field_time_zone: איזור זמן - field_searchable: ניתן לחיפוש - field_default_value: ערך ברירת מחדל - field_comments_sorting: הצג הערות - field_parent_title: דף אב - field_editable: ניתן לעריכה - field_watcher: צופה - field_identity_url: כתובת OpenID - field_content: תוכן - field_group_by: קבץ את התוצאות לפי - field_sharing: שיתוף - field_parent_issue: משימת אב - field_text: שדה טקסט - - setting_app_title: כותרת ישום - setting_welcome_text: טקסט "ברוך הבא" - setting_default_language: שפת ברירת מחדל - setting_login_required: דרושה הזדהות - setting_self_registration: אפשר הרשמה עצמית - setting_attachment_max_size: גודל דבוקה מקסימאלי - setting_issues_export_limit: גבול יצוא נושאים - setting_mail_from: כתובת שליחת דוא"ל - setting_bcc_recipients: מוסתר (bcc) - setting_plain_text_mail: טקסט פשוט בלבד (ללא HTML) - setting_host_name: שם שרת - setting_text_formatting: עיצוב טקסט - setting_wiki_compression: כיווץ היסטורית wiki - setting_feeds_limit: גבול תוכן הזנות - setting_default_projects_public: פרויקטים חדשים הינם פומביים כברירת מחדל - setting_autofetch_changesets: משיכה אוטומטית של שינויים - setting_sys_api_enabled: אפשר שירות רשת לניהול המאגר - setting_commit_ref_keywords: מילות מפתח מקשרות - setting_commit_fix_keywords: מילות מפתח מתקנות - setting_autologin: התחברות אוטומטית - setting_date_format: פורמט תאריך - setting_time_format: פורמט זמן - setting_cross_project_issue_relations: הרשה קישור נושאים בין פרויקטים - setting_issue_list_default_columns: עמודות ברירת מחדל המוצגות ברשימת הנושאים - setting_emails_footer: תחתית דוא"ל - setting_protocol: פרוטוקול - setting_per_page_options: אפשרויות אוביקטים לפי דף - setting_user_format: פורמט הצגת משתמשים - setting_activity_days_default: ימים המוצגים על פעילות הפרויקט - setting_display_subprojects_issues: הצג נושאים של תתי־פרויקטים כברירת מחדל - setting_enabled_scm: אפשר ניהול תצורה - setting_mail_handler_body_delimiters: חתוך כתובות דואר אחרי אחת משורות אלה - setting_mail_handler_api_enabled: אפשר שירות רשת לדואר נכנס - setting_mail_handler_api_key: מפתח API - setting_sequential_project_identifiers: השתמש במספרים עוקבים למזהי פרויקט - setting_gravatar_enabled: שימוש בצלמיות משתמשים מ־Gravatar - setting_gravatar_default: תמונת Gravatar ברירת מחדל - setting_diff_max_lines_displayed: מספר מירבי של שורות בתצוגת שינויים - setting_file_max_size_displayed: גודל מירבי של מלל המוצג בתוך השורה - setting_repository_log_display_limit: מספר מירבי של מהדורות המוצגות ביומן קובץ - setting_openid: אפשר התחברות ורישום באמצעות OpenID - setting_password_min_length: אורך סיסמה מינימאלי - setting_new_project_user_role_id: התפקיד שמוגדר למשתמש פשוט אשר יוצר פרויקט - setting_default_projects_modules: מודולים מאופשרים בברירת מחדל עבור פרויקטים חדשים - setting_issue_done_ratio: חשב אחוז התקדמות בנושא עם - setting_issue_done_ratio_issue_field: השתמש בשדה הנושא - setting_issue_done_ratio_issue_status: השתמש במצב הנושא - setting_start_of_week: השבוע מתחיל ביום - setting_rest_api_enabled: אפשר שירות רשת REST - setting_cache_formatted_text: שמור טקסט מעוצב במטמון - setting_default_notification_option: אפשרות התראה ברירת־מחדל - - permission_add_project: יצירת פרויקט - permission_add_subprojects: יצירת תתי־פרויקט - permission_edit_project: עריכת פרויקט - permission_select_project_modules: בחירת מודולי פרויקט - permission_manage_members: ניהול חברים - permission_manage_project_activities: נהל פעילויות פרויקט - permission_manage_versions: ניהול גירסאות - permission_manage_categories: ניהול קטגוריות נושאים - permission_view_issues: צפיה בנושאים - permission_add_issues: הוספת נושא - permission_edit_issues: עריכת נושאים - permission_manage_issue_relations: ניהול קשרים בין נושאים - permission_add_issue_notes: הוספת הערות לנושאים - permission_edit_issue_notes: עריכת רשימות - permission_edit_own_issue_notes: עריכת הערות של עצמו - permission_delete_issues: מחיקת נושאים - permission_manage_public_queries: ניהול שאילתות פומביות - permission_save_queries: שמירת שאילתות - permission_view_gantt: צפיה בגאנט - permission_view_calendar: צפיה בלוח השנה - permission_view_issue_watchers: צפיה ברשימת צופים - permission_add_issue_watchers: הוספת צופים - permission_delete_issue_watchers: הסרת צופים - permission_log_time: תיעוד זמן שהושקע - permission_view_time_entries: צפיה ברישום זמנים - permission_edit_time_entries: עריכת רישום זמנים - permission_edit_own_time_entries: עריכת רישום הזמנים של עצמו - permission_manage_news: ניהול חדשות - permission_comment_news: תגובה לחדשות - permission_view_documents: צפיה במסמכים - permission_manage_files: ניהול קבצים - permission_view_files: צפיה בקבצים - permission_manage_wiki: ניהול wiki - permission_rename_wiki_pages: שינוי שם של דפי wiki - permission_delete_wiki_pages: מחיקת דפי wiki - permission_view_wiki_pages: צפיה ב־wiki - permission_view_wiki_edits: צפיה בהיסטורית wiki - permission_edit_wiki_pages: עריכת דפי wiki - permission_delete_wiki_pages_attachments: מחיקת דבוקות - permission_protect_wiki_pages: הגנה על כל דפי wiki - permission_manage_repository: ניהול מאגר - permission_browse_repository: סיור במאגר - permission_view_changesets: צפיה בסדרות שינויים - permission_commit_access: אישור הפקדות - permission_manage_boards: ניהול לוחות - permission_view_messages: צפיה בהודעות - permission_add_messages: הצבת הודעות - permission_edit_messages: עריכת הודעות - permission_edit_own_messages: עריכת הודעות של עצמו - permission_delete_messages: מחיקת הודעות - permission_delete_own_messages: מחיקת הודעות של עצמו - permission_export_wiki_pages: יצא דפי wiki - permission_manage_subtasks: נהל תתי־משימות - - project_module_issue_tracking: מעקב נושאים - project_module_time_tracking: מעקב אחר זמנים - project_module_news: חדשות - project_module_documents: מסמכים - project_module_files: קבצים - project_module_wiki: Wiki - project_module_repository: מאגר - project_module_boards: לוחות - project_module_calendar: לוח שנה - project_module_gantt: גאנט - - label_user: משתמש - label_user_plural: משתמשים - label_user_new: משתמש חדש - label_user_anonymous: אלמוני - label_project: פרויקט - label_project_new: פרויקט חדש - label_project_plural: פרויקטים - label_x_projects: - zero: ללא פרויקטים - one: פרויקט אחד - other: "%{count} פרויקטים" - label_project_all: כל הפרויקטים - label_project_latest: הפרויקטים החדשים ביותר - label_issue: נושא - label_issue_new: נושא חדש - label_issue_plural: נושאים - label_issue_view_all: צפה בכל הנושאים - label_issues_by: "נושאים לפי %{value}" - label_issue_added: נושא נוסף - label_issue_updated: נושא עודכן - label_document: מסמך - label_document_new: מסמך חדש - label_document_plural: מסמכים - label_document_added: מסמך נוסף - label_role: תפקיד - label_role_plural: תפקידים - label_role_new: תפקיד חדש - label_role_and_permissions: תפקידים והרשאות - label_member: חבר - label_member_new: חבר חדש - label_member_plural: חברים - label_tracker: סיווג - label_tracker_plural: סיווגים - label_tracker_new: סיווג חדש - label_workflow: זרימת עבודה - label_issue_status: מצב נושא - label_issue_status_plural: מצבי נושא - label_issue_status_new: מצב חדש - label_issue_category: קטגורית נושא - label_issue_category_plural: קטגוריות נושא - label_issue_category_new: קטגוריה חדשה - label_custom_field: שדה אישי - label_custom_field_plural: שדות אישיים - label_custom_field_new: שדה אישי חדש - label_enumerations: אינומרציות - label_enumeration_new: ערך חדש - label_information: מידע - label_information_plural: מידע - label_register: הרשמה - label_login_with_open_id_option: או התחבר באמצעות OpenID - label_password_lost: אבדה הסיסמה? - label_home: דף הבית - label_my_page: הדף שלי - label_my_account: החשבון שלי - label_my_projects: הפרויקטים שלי - label_administration: ניהול - label_login: התחבר - label_logout: התנתק - label_help: עזרה - label_reported_issues: נושאים שדווחו - label_assigned_to_me_issues: נושאים שהוצבו לי - label_last_login: התחברות אחרונה - label_registered_on: נרשם בתאריך - label_activity: פעילות - label_overall_activity: פעילות כוללת - label_user_activity: "הפעילות של %{value}" - label_new: חדש - label_logged_as: מחובר כ - label_environment: סביבה - label_authentication: הזדהות - label_auth_source: מקור הזדהות - label_auth_source_new: מקור הזדהות חדש - label_auth_source_plural: מקורות הזדהות - label_subproject_plural: תת־פרויקטים - label_subproject_new: תת־פרויקט חדש - label_and_its_subprojects: "%{value} וכל תתי־הפרויקטים שלו" - label_min_max_length: אורך מינימאלי - מקסימאלי - label_list: רשימה - label_date: תאריך - label_integer: מספר שלם - label_float: צף - label_boolean: ערך בוליאני - label_string: טקסט - label_text: טקסט ארוך - label_attribute: תכונה - label_attribute_plural: תכונות - label_no_data: אין מידע להציג - label_change_status: שנה מצב - label_history: היסטוריה - label_attachment: קובץ - label_attachment_new: קובץ חדש - label_attachment_delete: מחק קובץ - label_attachment_plural: קבצים - label_file_added: קובץ נוסף - label_report: דו"ח - label_report_plural: דו"חות - label_news: חדשות - label_news_new: הוסף חדשות - label_news_plural: חדשות - label_news_latest: חדשות אחרונות - label_news_view_all: צפה בכל החדשות - label_news_added: חדשות נוספו - label_settings: הגדרות - label_overview: מבט רחב - label_version: גירסה - label_version_new: גירסה חדשה - label_version_plural: גירסאות - label_close_versions: סגור גירסאות שהושלמו - label_confirmation: אישור - label_export_to: יצא ל - label_read: קרא... - label_public_projects: פרויקטים פומביים - label_open_issues: פתוח - label_open_issues_plural: פתוחים - label_closed_issues: סגור - label_closed_issues_plural: סגורים - label_x_open_issues_abbr: - zero: 0 פתוחים - one: 1 פתוח - other: "%{count} פתוחים" - label_x_closed_issues_abbr: - zero: 0 סגורים - one: 1 סגור - other: "%{count} סגורים" - label_total: סה"כ - label_permissions: הרשאות - label_current_status: מצב נוכחי - label_new_statuses_allowed: מצבים חדשים אפשריים - label_all: הכל - label_none: כלום - label_nobody: אף אחד - label_next: הבא - label_previous: הקודם - label_used_by: בשימוש ע"י - label_details: פרטים - label_add_note: הוסף הערה - label_calendar: לוח שנה - label_months_from: חודשים מ - label_gantt: גאנט - label_internal: פנימי - label_last_changes: "%{count} שינוים אחרונים" - label_change_view_all: צפה בכל השינוים - label_comment: תגובה - label_comment_plural: תגובות - label_x_comments: - zero: אין הערות - one: הערה אחת - other: "%{count} הערות" - label_comment_add: הוסף תגובה - label_comment_added: תגובה נוספה - label_comment_delete: מחק תגובות - label_query: שאילתה אישית - label_query_plural: שאילתות אישיות - label_query_new: שאילתה חדשה - label_filter_add: הוסף מסנן - label_filter_plural: מסננים - label_equals: הוא - label_not_equals: הוא לא - label_in_less_than: בפחות מ - label_in_more_than: ביותר מ - label_greater_or_equal: ">=" - label_less_or_equal: <= - label_in: ב - label_today: היום - label_yesterday: אתמול - label_this_week: השבוע - label_last_week: השבוע שעבר - label_last_n_days: "ב־%{count} ימים אחרונים" - label_this_month: החודש - label_last_month: חודש שעבר - label_this_year: השנה - label_date_range: טווח תאריכים - label_less_than_ago: פחות מ - label_more_than_ago: יותר מ - label_ago: לפני - label_contains: מכיל - label_not_contains: לא מכיל - label_day_plural: ימים - label_repository: מאגר - label_repository_plural: מאגרים - label_browse: סייר - label_branch: ענף - label_tag: סימון - label_revision: מהדורה - label_revision_plural: מהדורות - label_revision_id: מהדורה %{value} - label_associated_revisions: מהדורות קשורות - label_added: נוסף - label_modified: שונה - label_copied: הועתק - label_renamed: השם שונה - label_deleted: נמחק - label_latest_revision: מהדורה אחרונה - label_latest_revision_plural: מהדורות אחרונות - label_view_revisions: צפה במהדורות - label_view_all_revisions: צפה בכל המהדורות - label_max_size: גודל מקסימאלי - label_sort_highest: הזז לראשית - label_sort_higher: הזז למעלה - label_sort_lower: הזז למטה - label_sort_lowest: הזז לתחתית - label_roadmap: מפת הדרכים - label_roadmap_due_in: "נגמר בעוד %{value}" - label_roadmap_overdue: "%{value} מאחר" - label_roadmap_no_issues: אין נושאים לגירסה זו - label_search: חפש - label_result_plural: תוצאות - label_all_words: כל המילים - label_wiki: Wiki - label_wiki_edit: ערוך wiki - label_wiki_edit_plural: עריכות wiki - label_wiki_page: דף Wiki - label_wiki_page_plural: דפי wiki - label_index_by_title: סדר על פי כותרת - label_index_by_date: סדר על פי תאריך - label_current_version: גירסה נוכחית - label_preview: תצוגה מקדימה - label_feed_plural: הזנות - label_changes_details: פירוט כל השינויים - label_issue_tracking: מעקב אחר נושאים - label_spent_time: זמן שהושקע - label_overall_spent_time: זמן שהושקע סה"כ - label_f_hour: "%{value} שעה" - label_f_hour_plural: "%{value} שעות" - label_time_tracking: מעקב זמנים - label_change_plural: שינויים - label_statistics: סטטיסטיקות - label_commits_per_month: הפקדות לפי חודש - label_commits_per_author: הפקדות לפי כותב - label_view_diff: צפה בשינויים - label_diff_inline: בתוך השורה - label_diff_side_by_side: צד לצד - label_options: אפשרויות - label_copy_workflow_from: העתק זירמת עבודה מ - label_permissions_report: דו"ח הרשאות - label_watched_issues: נושאים שנצפו - label_related_issues: נושאים קשורים - label_applied_status: מצב מוחל - label_loading: טוען... - label_relation_new: קשר חדש - label_relation_delete: מחק קשר - label_relates_to: קשור ל - label_duplicates: מכפיל את - label_duplicated_by: שוכפל ע"י - label_blocks: חוסם את - label_blocked_by: חסום ע"י - label_precedes: מקדים את - label_follows: עוקב אחרי - label_stay_logged_in: השאר מחובר - label_disabled: מבוטל - label_show_completed_versions: הצג גירסאות גמורות - label_me: אני - label_board: פורום - label_board_new: פורום חדש - label_board_plural: פורומים - label_board_locked: נעול - label_board_sticky: דביק - label_topic_plural: נושאים - label_message_plural: הודעות - label_message_last: הודעה אחרונה - label_message_new: הודעה חדשה - label_message_posted: הודעה נוספה - label_reply_plural: השבות - label_send_information: שלח מידע על חשבון למשתמש - label_year: שנה - label_month: חודש - label_week: שבוע - label_date_from: מתאריך - label_date_to: עד - label_language_based: מבוסס שפה - label_sort_by: "מיין לפי %{value}" - label_send_test_email: שלח דוא"ל בדיקה - label_feeds_access_key: מפתח גישה ל־Atom - label_missing_feeds_access_key: חסר מפתח גישה ל־Atom - label_feeds_access_key_created_on: "מפתח הזנת Atom נוצר לפני%{value}" - label_module_plural: מודולים - label_added_time_by: 'נוסף ע"י %{author} לפני %{age}' - label_updated_time_by: 'עודכן ע"י %{author} לפני %{age}' - label_updated_time: "עודכן לפני %{value} " - label_jump_to_a_project: קפוץ לפרויקט... - label_file_plural: קבצים - label_changeset_plural: סדרות שינויים - label_default_columns: עמודת ברירת מחדל - label_no_change_option: (אין שינוים) - label_bulk_edit_selected_issues: ערוך את הנושאים המסומנים - label_theme: ערכת נושא - label_default: ברירת מחדל - label_search_titles_only: חפש בכותרות בלבד - label_user_mail_option_all: "לכל אירוע בכל הפרויקטים שלי" - label_user_mail_option_selected: "לכל אירוע בפרויקטים שבחרתי בלבד..." - label_user_mail_option_only_my_events: עבור דברים שאני צופה או מעורב בהם בלבד - label_user_mail_no_self_notified: "אני לא רוצה שיודיעו לי על שינויים שאני מבצע" - label_registration_activation_by_email: הפעל חשבון באמצעות דוא"ל - label_registration_manual_activation: הפעלת חשבון ידנית - label_registration_automatic_activation: הפעלת חשבון אוטומטית - label_display_per_page: "בכל דף: %{value} תוצאות" - label_age: גיל - label_change_properties: שנה מאפיינים - label_general: כללי - label_scm: מערכת ניהול תצורה - label_plugins: תוספים - label_ldap_authentication: הזדהות LDAP - label_downloads_abbr: D/L - label_optional_description: תיאור רשות - label_add_another_file: הוסף עוד קובץ - label_preferences: העדפות - label_chronological_order: בסדר כרונולוגי - label_reverse_chronological_order: בסדר כרונולוגי הפוך - label_incoming_emails: דוא"ל נכנס - label_generate_key: צור מפתח - label_issue_watchers: צופים - label_example: דוגמא - label_display: תצוגה - label_sort: מיון - label_ascending: בסדר עולה - label_descending: בסדר יורד - label_date_from_to: 'מתאריך %{start} ועד תאריך %{end}' - label_wiki_content_added: נוסף דף ל־wiki - label_wiki_content_updated: דף wiki עודכן - label_group: קבוצה - label_group_plural: קבוצות - label_group_new: קבוצה חדשה - label_time_entry_plural: זמן שהושקע - label_version_sharing_none: לא משותף - label_version_sharing_descendants: עם פרויקטים בנים - label_version_sharing_hierarchy: עם היררכית הפרויקטים - label_version_sharing_tree: עם עץ הפרויקט - label_version_sharing_system: עם כל הפרויקטים - label_update_issue_done_ratios: עדכן אחוז התקדמות לנושא - label_copy_source: מקור - label_copy_target: יעד - label_copy_same_as_target: זהה ליעד - label_display_used_statuses_only: הצג רק את המצבים בשימוש לסיווג זה - label_api_access_key: מפתח גישה ל־API - label_missing_api_access_key: חסר מפתח גישה ל־API - label_api_access_key_created_on: 'מפתח גישה ל־API נוצר לפני %{value}' - label_profile: פרופיל - label_subtask_plural: תתי־משימות - label_project_copy_notifications: שלח התראות דואר במהלך העתקת הפרויקט - - button_login: התחבר - button_submit: אשר - button_save: שמור - button_check_all: בחר הכל - button_uncheck_all: בחר כלום - button_delete: מחק - button_create: צור - button_create_and_continue: צור ופתח חדש - button_test: בדוק - button_edit: ערוך - button_edit_associated_wikipage: "ערוך דף wiki מקושר: %{page_title}" - button_add: הוסף - button_change: שנה - button_apply: החל - button_clear: נקה - button_lock: נעל - button_unlock: בטל נעילה - button_download: הורד - button_list: רשימה - button_view: צפה - button_move: הזז - button_move_and_follow: העבר ועקוב - button_back: הקודם - button_cancel: בטל - button_activate: הפעל - button_sort: מיין - button_log_time: רישום זמנים - button_rollback: חזור למהדורה זו - button_watch: צפה - button_unwatch: בטל צפיה - button_reply: השב - button_archive: ארכיון - button_unarchive: הוצא מהארכיון - button_reset: אפס - button_rename: שנה שם - button_change_password: שנה סיסמה - button_copy: העתק - button_copy_and_follow: העתק ועקוב - button_annotate: הוסף תיאור מסגרת - button_update: עדכן - button_configure: אפשרויות - button_quote: צטט - button_show: הצג - - status_active: פעיל - status_registered: רשום - status_locked: נעול - - version_status_open: פתוח - version_status_locked: נעול - version_status_closed: סגור - - field_active: פעיל - - text_select_mail_notifications: בחר פעולת שבגללן ישלח דוא"ל. - text_regexp_info: כגון. ^[A-Z0-9]+$ - text_min_max_length_info: 0 משמעו ללא הגבלות - text_project_destroy_confirmation: האם אתה בטוח שברצונך למחוק את הפרויקט ואת כל המידע הקשור אליו? - text_subprojects_destroy_warning: "תת־הפרויקטים: %{value} ימחקו גם כן." - text_workflow_edit: בחר תפקיד וסיווג כדי לערוך את זרימת העבודה - text_are_you_sure: האם אתה בטוח? - text_journal_changed: "%{label} השתנה מ%{old} ל%{new}" - text_journal_set_to: "%{label} נקבע ל%{value}" - text_journal_deleted: "%{label} נמחק (%{old})" - text_journal_added: "%{label} %{value} נוסף" - text_tip_issue_begin_day: מטלה המתחילה היום - text_tip_issue_end_day: מטלה המסתיימת היום - text_tip_issue_begin_end_day: מטלה המתחילה ומסתיימת היום - text_caracters_maximum: "מקסימום %{count} תווים." - text_caracters_minimum: "חייב להיות לפחות באורך של %{count} תווים." - text_length_between: "אורך בין %{min} ל %{max} תווים." - text_tracker_no_workflow: זרימת עבודה לא הוגדרה עבור סיווג זה - text_unallowed_characters: תווים לא מורשים - text_comma_separated: הכנסת ערכים מרובים מותרת (מופרדים בפסיקים). - text_line_separated: ניתן להזין מספר ערכים (שורה אחת לכל ערך). - text_issues_ref_in_commit_messages: קישור ותיקום נושאים בהודעות הפקדה - text_issue_added: "הנושא %{id} דווח (בידי %{author})." - text_issue_updated: "הנושא %{id} עודכן (בידי %{author})." - text_wiki_destroy_confirmation: האם אתה בטוח שברצונך למחוק את הWIKI הזה ואת כל תוכנו? - text_issue_category_destroy_question: "כמה נושאים (%{count}) מוצבים לקטגוריה הזו. מה ברצונך לעשות?" - text_issue_category_destroy_assignments: הסר הצבת קטגוריה - text_issue_category_reassign_to: הצב מחדש את הקטגוריה לנושאים - text_user_mail_option: "בפרויקטים שלא בחרת, אתה רק תקבל התרעות על שאתה צופה או קשור אליהם (לדוגמא:נושאים שאתה היוצר שלהם או אחראי עליהם)." - text_no_configuration_data: "לא הוגדרה תצורה עבור תפקידים, סיווגים, מצבי נושא וזרימת עבודה.\nמומלץ מאד לטעון את תצורת ברירת המחדל. תוכל לשנותה מאוחר יותר." - text_load_default_configuration: טען את אפשרויות ברירת המחדל - text_status_changed_by_changeset: "הוחל בסדרת השינויים %{value}." - text_issues_destroy_confirmation: 'האם אתה בטוח שברצונך למחוק את הנושאים?' - text_select_project_modules: 'בחר מודולים להחיל על פרויקט זה:' - text_default_administrator_account_changed: מנהל המערכת ברירת המחדל שונה - text_file_repository_writable: מאגר הקבצים ניתן לכתיבה - text_plugin_assets_writable: ספרית נכסי תוספים ניתנת לכתיבה - text_minimagick_available: MiniMagick זמין (רשות) - text_destroy_time_entries_question: "%{hours} שעות דווחו על הנושאים שאתה עומד למחוק. מה ברצונך לעשות?" - text_destroy_time_entries: מחק שעות שדווחו - text_assign_time_entries_to_project: הצב שעות שדווחו לפרויקט הזה - text_reassign_time_entries: 'הצב מחדש שעות שדווחו לפרויקט הזה:' - text_user_wrote: "%{value} כתב:" - text_user_wrote_in: "%{value} כתב (%{link}):" - text_enumeration_destroy_question: "%{count} אוביקטים מוצבים לערך זה." - text_enumeration_category_reassign_to: 'הצב מחדש לערך הזה:' - text_email_delivery_not_configured: 'לא נקבעה תצורה לשליחת דואר, וההתראות כבויות.\nקבע את תצורת שרת ה־SMTP בקובץ /etc/redmine/<instance>/configuration.yml והתחל את האפליקציה מחדש ע"מ לאפשר אותם.' - text_repository_usernames_mapping: "בחר או עדכן את משתמש Redmine הממופה לכל שם משתמש ביומן המאגר.\nמשתמשים בעלי שם או כתובת דואר זהה ב־Redmine ובמאגר ממופים באופן אוטומטי." - text_diff_truncated: '... השינויים עוברים את מספר השורות המירבי לתצוגה, ולכן הם קוצצו.' - text_custom_field_possible_values_info: שורה אחת לכל ערך - text_wiki_page_destroy_question: לדף זה יש %{descendants} דפים בנים ותלויים. מה ברצונך לעשות? - text_wiki_page_nullify_children: השאר דפים בנים כדפים ראשיים - text_wiki_page_destroy_children: מחק את הדפים הבנים ואת כל התלויים בהם - text_wiki_page_reassign_children: הצב מחדש דפים בנים לדף האב הנוכחי - text_own_membership_delete_confirmation: |- - בכוונתך למחוק חלק או את כל ההרשאות שלך. לאחר מכן לא תוכל יותר לערוך פרויקט זה. - האם אתה בטוח שברצונך להמשיך? - text_zoom_in: התקרב - text_zoom_out: התרחק - - default_role_manager: מנהל - default_role_developer: מפתח - default_role_reporter: מדווח - default_tracker_bug: תקלה - default_tracker_feature: יכולת - default_tracker_support: תמיכה - default_issue_status_new: חדש - default_issue_status_in_progress: בעבודה - default_issue_status_resolved: נפתר - default_issue_status_feedback: משוב - default_issue_status_closed: סגור - default_issue_status_rejected: נדחה - default_doc_category_user: תיעוד משתמש - default_doc_category_tech: תיעוד טכני - default_priority_low: נמוכה - default_priority_normal: רגילה - default_priority_high: גבוהה - default_priority_urgent: דחופה - default_priority_immediate: מידית - default_activity_design: עיצוב - default_activity_development: פיתוח - - enumeration_issue_priorities: עדיפות נושאים - enumeration_doc_categories: קטגוריות מסמכים - enumeration_activities: פעילויות (מעקב אחר זמנים) - enumeration_system_activity: פעילות מערכת - label_user_mail_option_none: No events - field_member_of_group: Assignee's group - field_assigned_to_role: Assignee's role - label_principal_search: "Search for user or group:" - label_user_search: "Search for user:" - field_visible: Visible - setting_commit_logtime_activity_id: Activity for logged time - text_time_logged_by_changeset: Applied in changeset %{value}. - setting_commit_logtime_enabled: Enable time logging - notice_gantt_chart_truncated: The chart was truncated because it exceeds the maximum number of items that can be displayed (%{max}) - setting_gantt_items_limit: Maximum number of items displayed on the gantt chart - field_warn_on_leaving_unsaved: Warn me when leaving a page with unsaved text - text_warn_on_leaving_unsaved: The current page contains unsaved text that will be lost if you leave this page. - label_my_queries: My custom queries - text_journal_changed_no_detail: "%{label} updated" - label_news_comment_added: Comment added to a news - button_expand_all: Expand all - button_collapse_all: Collapse all - label_additional_workflow_transitions_for_assignee: Additional transitions allowed when the user is the assignee - label_additional_workflow_transitions_for_author: Additional transitions allowed when the user is the author - label_bulk_edit_selected_time_entries: Bulk edit selected time entries - text_time_entries_destroy_confirmation: Are you sure you want to delete the selected time entr(y/ies)? - label_role_anonymous: Anonymous - label_role_non_member: Non member - label_issue_note_added: Note added - label_issue_status_updated: Status updated - label_issue_priority_updated: Priority updated - label_issues_visibility_own: Issues created by or assigned to the user - field_issues_visibility: Issues visibility - label_issues_visibility_all: All issues - permission_set_own_issues_private: Set own issues public or private - field_is_private: Private - permission_set_issues_private: Set issues public or private - label_issues_visibility_public: All non private issues - text_issues_destroy_descendants_confirmation: This will also delete %{count} subtask(s). - field_commit_logs_encoding: קידוד הודעות הפקדה - field_scm_path_encoding: Path encoding - text_scm_path_encoding_note: "Default: UTF-8" - field_path_to_repository: Path to repository - field_root_directory: Root directory - field_cvs_module: Module - field_cvsroot: CVSROOT - text_mercurial_repository_note: Local repository (e.g. /hgrepo, c:\hgrepo) - text_scm_command: Command - text_scm_command_version: Version - label_git_report_last_commit: Report last commit for files and directories - notice_issue_successful_create: Issue %{id} created. - label_between: between - setting_issue_group_assignment: Allow issue assignment to groups - label_diff: diff - text_git_repository_note: Repository is bare and local (e.g. /gitrepo, c:\gitrepo) - description_query_sort_criteria_direction: Sort direction - description_project_scope: Search scope - description_filter: Filter - description_user_mail_notification: Mail notification settings - description_message_content: Message content - description_available_columns: Available Columns - description_issue_category_reassign: Choose issue category - description_search: Searchfield - description_notes: Notes - description_choose_project: Projects - description_query_sort_criteria_attribute: Sort attribute - description_wiki_subpages_reassign: Choose new parent page - description_selected_columns: Selected Columns - label_parent_revision: Parent - label_child_revision: Child - error_scm_annotate_big_text_file: The entry cannot be annotated, as it exceeds the maximum text file size. - setting_default_issue_start_date_to_creation_date: Use current date as start date for new issues - button_edit_section: Edit this section - setting_repositories_encodings: Attachments and repositories encodings - description_all_columns: All Columns - button_export: Export - label_export_options: "%{export_format} export options" - error_attachment_too_big: This file cannot be uploaded because it exceeds the maximum allowed file size (%{max_size}) - notice_failed_to_save_time_entries: "Failed to save %{count} time entrie(s) on %{total} selected: %{ids}." - label_x_issues: - zero: 0 נושא - one: 1 נושא - other: "%{count} נושאים" - label_repository_new: New repository - field_repository_is_default: Main repository - label_copy_attachments: Copy attachments - label_item_position: "%{position}/%{count}" - label_completed_versions: Completed versions - text_project_identifier_info: Only lower case letters (a-z), numbers, dashes and underscores are allowed.
    Once saved, the identifier cannot be changed. - field_multiple: Multiple values - setting_commit_cross_project_ref: Allow issues of all the other projects to be referenced and fixed - text_issue_conflict_resolution_add_notes: Add my notes and discard my other changes - text_issue_conflict_resolution_overwrite: Apply my changes anyway (previous notes will be kept but some changes may be overwritten) - notice_issue_update_conflict: The issue has been updated by an other user while you were editing it. - text_issue_conflict_resolution_cancel: Discard all my changes and redisplay %{link} - permission_manage_related_issues: Manage related issues - field_auth_source_ldap_filter: LDAP filter - label_search_for_watchers: Search for watchers to add - notice_account_deleted: Your account has been permanently deleted. - setting_unsubscribe: Allow users to delete their own account - button_delete_my_account: Delete my account - text_account_destroy_confirmation: |- - Are you sure you want to proceed? - Your account will be permanently deleted, with no way to reactivate it. - error_session_expired: Your session has expired. Please login again. - text_session_expiration_settings: "Warning: changing these settings may expire the current sessions including yours." - setting_session_lifetime: Session maximum lifetime - setting_session_timeout: Session inactivity timeout - label_session_expiration: Session expiration - permission_close_project: Close / reopen the project - button_close: Close - button_reopen: Reopen - project_status_active: active - project_status_closed: closed - project_status_archived: archived - text_project_closed: This project is closed and read-only. - notice_user_successful_create: User %{id} created. - field_core_fields: Standard fields - field_timeout: Timeout (in seconds) - setting_thumbnails_enabled: Display attachment thumbnails - setting_thumbnails_size: Thumbnails size (in pixels) - label_status_transitions: Status transitions - label_fields_permissions: Fields permissions - label_readonly: Read-only - label_required: Required - text_repository_identifier_info: Only lower case letters (a-z), numbers, dashes and underscores are allowed.
    Once saved, the identifier cannot be changed. - field_board_parent: Parent forum - label_attribute_of_project: Project's %{name} - label_attribute_of_author: Author's %{name} - label_attribute_of_assigned_to: Assignee's %{name} - label_attribute_of_fixed_version: Target version's %{name} - label_copy_subtasks: Copy subtasks - label_copied_to: copied to - label_copied_from: copied from - label_any_issues_in_project: any issues in project - label_any_issues_not_in_project: any issues not in project - field_private_notes: Private notes - permission_view_private_notes: View private notes - permission_set_notes_private: Set notes as private - label_no_issues_in_project: no issues in project - label_any: הכל - label_last_n_weeks: last %{count} weeks - setting_cross_project_subtasks: Allow cross-project subtasks - label_cross_project_descendants: עם פרויקטים בנים - label_cross_project_tree: עם עץ הפרויקט - label_cross_project_hierarchy: עם היררכית הפרויקטים - label_cross_project_system: עם כל הפרויקטים - button_hide: Hide - setting_non_working_week_days: Non-working days - label_in_the_next_days: in the next - label_in_the_past_days: in the past - label_attribute_of_user: User's %{name} - text_turning_multiple_off: If you disable multiple values, multiple values will be - removed in order to preserve only one value per item. - label_attribute_of_issue: Issue's %{name} - permission_add_documents: Add documents - permission_edit_documents: Edit documents - permission_delete_documents: Delete documents - label_gantt_progress_line: Progress line - setting_jsonp_enabled: Enable JSONP support - field_inherit_members: Inherit members - field_closed_on: Closed - field_generate_password: Generate password - setting_default_projects_tracker_ids: Default trackers for new projects - label_total_time: סה"כ - text_scm_config: You can configure your SCM commands in config/configuration.yml. Please restart the application after editing it. - text_scm_command_not_available: SCM command is not available. Please check settings on the administration panel. - setting_emails_header: Email header - notice_account_not_activated_yet: You haven't activated your account yet. If you want - to receive a new activation email, please click this link. - notice_account_locked: Your account is locked. - label_hidden: Hidden - label_visibility_private: to me only - label_visibility_roles: to these roles only - label_visibility_public: to any users - field_must_change_passwd: Must change password at next logon - notice_new_password_must_be_different: The new password must be different from the - current password - setting_mail_handler_excluded_filenames: Exclude attachments by name - text_convert_available: ImageMagick convert available (optional) - label_link: Link - label_only: only - label_drop_down_list: drop-down list - label_checkboxes: checkboxes - label_link_values_to: Link values to URL - setting_force_default_language_for_anonymous: Force default language for anonymous - users - setting_force_default_language_for_loggedin: Force default language for logged-in - users - label_custom_field_select_type: Select the type of object to which the custom field - is to be attached - label_issue_assigned_to_updated: Assignee updated - label_check_for_updates: Check for updates - label_latest_compatible_version: Latest compatible version - label_unknown_plugin: Unknown plugin - label_radio_buttons: radio buttons - label_group_anonymous: Anonymous users - label_group_non_member: Non member users - label_add_projects: Add projects - field_default_status: Default status - text_subversion_repository_note: 'Examples: file:///, http://, https://, svn://, svn+[tunnelscheme]://' - field_users_visibility: Users visibility - label_users_visibility_all: All active users - label_users_visibility_members_of_visible_projects: Members of visible projects - label_edit_attachments: Edit attached files - setting_link_copied_issue: Link issues on copy - label_link_copied_issue: Link copied issue - label_ask: Ask - label_search_attachments_yes: Search attachment filenames and descriptions - label_search_attachments_no: Do not search attachments - label_search_attachments_only: Search attachments only - label_search_open_issues_only: Open issues only - field_address: דוא"ל - setting_max_additional_emails: Maximum number of additional email addresses - label_email_address_plural: Emails - label_email_address_add: Add email address - label_enable_notifications: Enable notifications - label_disable_notifications: Disable notifications - setting_search_results_per_page: Search results per page - label_blank_value: blank - permission_copy_issues: Copy issues - error_password_expired: Your password has expired or the administrator requires you - to change it. - field_time_entries_visibility: Time logs visibility - setting_password_max_age: Require password change after - label_parent_task_attributes: Parent tasks attributes - label_parent_task_attributes_derived: Calculated from subtasks - label_parent_task_attributes_independent: Independent of subtasks - label_time_entries_visibility_all: All time entries - label_time_entries_visibility_own: Time entries created by the user - label_member_management: Member management - label_member_management_all_roles: All roles - label_member_management_selected_roles_only: Only these roles - label_password_required: Confirm your password to continue - label_total_spent_time: זמן שהושקע סה"כ - notice_import_finished: "%{count} items have been imported" - notice_import_finished_with_errors: "%{count} out of %{total} items could not be imported" - error_invalid_file_encoding: The file is not a valid %{encoding} encoded file - error_invalid_csv_file_or_settings: The file is not a CSV file or does not match the - settings below - error_can_not_read_import_file: An error occurred while reading the file to import - permission_import_issues: Import issues - label_import_issues: Import issues - label_select_file_to_import: Select the file to import - label_fields_separator: Field separator - label_fields_wrapper: Field wrapper - label_encoding: Encoding - label_comma_char: Comma - label_semi_colon_char: Semicolon - label_quote_char: Quote - label_double_quote_char: Double quote - label_fields_mapping: Fields mapping - label_file_content_preview: File content preview - label_create_missing_values: Create missing values - button_import: Import - field_total_estimated_hours: Total estimated time - label_api: API - label_total_plural: Totals - label_assigned_issues: Assigned issues - label_field_format_enumeration: Key/value list - label_f_hour_short: '%{value} h' - field_default_version: Default version - error_attachment_extension_not_allowed: Attachment extension %{extension} is not allowed - setting_attachment_extensions_allowed: Allowed extensions - setting_attachment_extensions_denied: Disallowed extensions - label_any_open_issues: any open issues - label_no_open_issues: no open issues - label_default_values_for_new_users: Default values for new users - error_ldap_bind_credentials: Invalid LDAP Account/Password - setting_sys_api_key: מפתח API - setting_lost_password: אבדה הסיסמה? - mail_subject_security_notification: Security notification - mail_body_security_notification_change: ! '%{field} was changed.' - mail_body_security_notification_change_to: ! '%{field} was changed to %{value}.' - mail_body_security_notification_add: ! '%{field} %{value} was added.' - mail_body_security_notification_remove: ! '%{field} %{value} was removed.' - mail_body_security_notification_notify_enabled: Email address %{value} now receives - notifications. - mail_body_security_notification_notify_disabled: Email address %{value} no longer - receives notifications. - mail_body_settings_updated: ! 'The following settings were changed:' - field_remote_ip: IP address - label_wiki_page_new: New wiki page - label_relations: Relations - button_filter: Filter - mail_body_password_updated: Your password has been changed. - label_no_preview: No preview available - error_no_tracker_allowed_for_new_issue_in_project: The project doesn't have any trackers - for which you can create an issue - label_tracker_all: All trackers - label_new_project_issue_tab_enabled: Display the "New issue" tab - setting_new_item_menu_tab: Project menu tab for creating new objects - label_new_object_tab_enabled: Display the "+" drop-down - error_no_projects_with_tracker_allowed_for_new_issue: There are no projects with trackers - for which you can create an issue - field_textarea_font: Font used for text areas - label_font_default: Default font - label_font_monospace: Monospaced font - label_font_proportional: Proportional font - setting_timespan_format: Time span format - label_table_of_contents: Table of contents - setting_commit_logs_formatting: Apply text formatting to commit messages - setting_mail_handler_enable_regex: Enable regular expressions - error_move_of_child_not_possible: 'Subtask %{child} could not be moved to the new - project: %{errors}' - error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted: Spent time cannot - be reassigned to an issue that is about to be deleted - setting_timelog_required_fields: Required fields for time logs - label_attribute_of_object: '%{object_name}''s %{name}' - label_user_mail_option_only_assigned: Only for things I watch or I am assigned to - label_user_mail_option_only_owner: Only for things I watch or I am the owner of - warning_fields_cleared_on_bulk_edit: Changes will result in the automatic deletion - of values from one or more fields on the selected objects - field_updated_by: Updated by - field_last_updated_by: Last updated by - field_full_width_layout: Full width layout - label_last_notes: Last notes - field_digest: Checksum - field_default_assigned_to: Default assignee - setting_show_custom_fields_on_registration: Show custom fields on registration - permission_view_news: View news - label_no_preview_alternative_html: No preview available. %{link} the file instead. - label_no_preview_download: Download - setting_close_duplicate_issues: Close duplicate issues automatically - error_exceeds_maximum_hours_per_day: Cannot log more than %{max_hours} hours on the - same day (%{logged_hours} hours have already been logged) - setting_time_entry_list_defaults: Timelog list defaults - setting_timelog_accept_0_hours: Accept time logs with 0 hours - setting_timelog_max_hours_per_day: Maximum hours that can be logged per day and user - label_x_revisions: "%{count} revisions" - error_can_not_delete_auth_source: This authentication mode is in use and cannot be - deleted. - button_actions: Actions - mail_body_lost_password_validity: Please be aware that you may change the password - only once using this link. - text_login_required_html: When not requiring authentication, public projects and their - contents are openly available on the network. You can edit - the applicable permissions. - label_login_required_yes: 'Yes' - label_login_required_no: No, allow anonymous access to public projects - text_project_is_public_non_member: Public projects and their contents are available - to all logged-in users. - text_project_is_public_anonymous: Public projects and their contents are openly available - on the network. - label_version_and_files: Versions (%{count}) and Files - label_ldap: LDAP - label_ldaps_verify_none: LDAPS (without certificate check) - label_ldaps_verify_peer: LDAPS - label_ldaps_warning: It is recommended to use an encrypted LDAPS connection with certificate - check to prevent any manipulation during the authentication process. - label_nothing_to_preview: Nothing to preview - error_token_expired: This password recovery link has expired, please try again. - error_spent_on_future_date: Cannot log time on a future date - setting_timelog_accept_future_dates: Accept time logs on future dates - label_delete_link_to_subtask: מחק קשר - error_not_allowed_to_log_time_for_other_users: You are not allowed to log time - for other users - permission_log_time_for_other_users: Log spent time for other users - label_tomorrow: tomorrow - label_next_week: next week - label_next_month: next month - text_role_no_workflow: No workflow defined for this role - text_status_no_workflow: No tracker uses this status in the workflows - setting_mail_handler_preferred_body_part: Preferred part of multipart (HTML) emails - setting_show_status_changes_in_mail_subject: Show status changes in issue mail notifications - subject - label_inherited_from_parent_project: Inherited from parent project - label_inherited_from_group: Inherited from group %{name} - label_trackers_description: Trackers description - label_open_trackers_description: View all trackers description - label_preferred_body_part_text: Text - label_preferred_body_part_html: HTML (experimental) - field_parent_issue_subject: Parent task subject - permission_edit_own_issues: Edit own issues - text_select_apply_tracker: Select tracker - label_updated_issues: Updated issues - text_avatar_server_config_html: The current avatar server is %{url}. - You can configure it in config/configuration.yml. - setting_gantt_months_limit: Maximum number of months displayed on the gantt chart - permission_import_time_entries: Import time entries - label_import_notifications: Send email notifications during the import - text_gs_available: ImageMagick PDF support available (optional) - field_recently_used_projects: Number of recently used projects in jump box - label_optgroup_bookmarks: Bookmarks - label_optgroup_others: Other projects - label_optgroup_recents: Recently used - button_project_bookmark: Add bookmark - button_project_bookmark_delete: Remove bookmark - field_history_default_tab: Issue's history default tab - label_issue_history_properties: Property changes - label_issue_history_notes: Notes - label_last_tab_visited: Last visited tab - field_unique_id: Unique ID - text_no_subject: no subject - setting_password_required_char_classes: Required character classes for passwords - label_password_char_class_uppercase: uppercase letters - label_password_char_class_lowercase: lowercase letters - label_password_char_class_digits: digits - label_password_char_class_special_chars: special characters - text_characters_must_contain: Must contain %{character_classes}. - label_starts_with: starts with - label_ends_with: ends with - label_issue_fixed_version_updated: Target version updated - setting_project_list_defaults: Projects list defaults - label_display_type: Display results as - label_display_type_list: List - label_display_type_board: Board - label_my_bookmarks: My bookmarks - label_import_time_entries: Import time entries diff --git a/config/locales/hr.yml b/config/locales/hr.yml deleted file mode 100644 index f093dfb..0000000 --- a/config/locales/hr.yml +++ /dev/null @@ -1,1312 +0,0 @@ -hr: - direction: ltr - date: - formats: - # Use the strftime parameters for formats. - # When no format has been given, it uses default. - # You can provide other formats here if you like! - default: "%m/%d/%Y" - short: "%b %d" - long: "%B %d, %Y" - - day_names: [Nedjelja, Ponedjeljak, Utorak, Srijeda, Četvrtak, Petak, Subota] - abbr_day_names: [Ned, Pon, Uto, Sri, Čet, Pet, Sub] - - # Don't forget the nil at the beginning; there's no such thing as a 0th month - month_names: [~, Siječanj, Veljača, Ožujak, Travanj, Svibanj, Lipanj, Srpanj, Kolovoz, Rujan, Listopad, Studeni, Prosinac] - abbr_month_names: [~, Sij, Velj, Ožu, Tra, Svi, Lip, Srp, Kol, Ruj, Lis, Stu, Pro] - # Used in date_select and datime_select. - order: - - :year - - :month - - :day - - time: - formats: - default: "%m/%d/%Y %I:%M %p" - time: "%I:%M %p" - short: "%d %b %H:%M" - long: "%B %d, %Y %H:%M" - am: "am" - pm: "pm" - - datetime: - distance_in_words: - half_a_minute: "pola minute" - less_than_x_seconds: - one: "manje od sekunde" - other: "manje od %{count} sekundi" - x_seconds: - one: "1 sekunda" - other: "%{count} sekundi" - less_than_x_minutes: - one: "manje od minute" - other: "manje od %{count} minuta" - x_minutes: - one: "1 minuta" - other: "%{count} minuta" - about_x_hours: - one: "oko sat vremena" - other: "oko %{count} sati" - x_hours: - one: "1 sata" - other: "%{count} sati" - x_days: - one: "1 dan" - other: "%{count} dana" - about_x_months: - one: "oko 1 mjesec" - other: "oko %{count} mjeseci" - x_months: - one: "mjesec" - other: "%{count} mjeseci" - about_x_years: - one: "1 godina" - other: "%{count} godina" - over_x_years: - one: "preko 1 godine" - other: "preko %{count} godina" - - number: - format: - separator: "." - delimiter: "" - precision: 3 - human: - format: - delimiter: "" - precision: 3 - storage_units: - format: "%n %u" - units: - byte: - one: "Byte" - other: "Bytes" - kb: "KB" - mb: "MB" - gb: "GB" - tb: "TB" - -# Used in array.to_sentence. - support: - array: - sentence_connector: "i" - skip_last_comma: false - - activerecord: - errors: - template: - header: - one: "1 error prohibited this %{model} from being saved" - other: "%{count} errors prohibited this %{model} from being saved" - messages: - inclusion: "nije ukljuceno u listu" - exclusion: "je rezervirano" - invalid: "nije ispravno" - confirmation: "ne odgovara za potvrdu" - accepted: "mora biti prihvaćen" - empty: "ne može biti prazno" - blank: "ne može biti razmaka" - too_long: "je predug (maximum is %{count} characters)" - too_short: "je prekratak (minimum is %{count} characters)" - wrong_length: "je pogrešne dužine (should be %{count} characters)" - taken: "već je zauzeto" - not_a_number: "nije broj" - not_a_date: "nije ispravan datum" - greater_than: "mora biti veći od %{count}" - greater_than_or_equal_to: "mora biti veći ili jednak %{count}" - equal_to: "mora biti jednak %{count}" - less_than: "mora biti manji od %{count}" - less_than_or_equal_to: "mora bit manji ili jednak%{count}" - odd: "mora biti neparan" - even: "mora biti paran" - greater_than_start_date: "mora biti veci nego pocetni datum" - not_same_project: "ne pripada istom projektu" - circular_dependency: "Ovaj relacija stvara kružnu ovisnost" - cant_link_an_issue_with_a_descendant: "An issue can not be linked to one of its subtasks" - earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" - not_a_regexp: "is not a valid regular expression" - open_issue_with_closed_parent: "An open issue cannot be attached to a closed parent task" - must_contain_uppercase: "must contain uppercase letters (A-Z)" - must_contain_lowercase: "must contain lowercase letters (a-z)" - must_contain_digits: "must contain digits (0-9)" - must_contain_special_chars: "must contain special characters (!, $, %, ...)" - - actionview_instancetag_blank_option: Molimo odaberite - - general_text_No: 'Ne' - general_text_Yes: 'Da' - general_text_no: 'ne' - general_text_yes: 'da' - general_lang_name: 'Croatian (Hrvatski)' - general_csv_separator: ';' - general_csv_decimal_separator: ',' - general_csv_encoding: UTF-8 - general_pdf_fontname: freesans - general_pdf_monospaced_fontname: freemono - general_first_day_of_week: '7' - - notice_account_updated: Vaš profil je uspješno promijenjen. - notice_account_invalid_credentials: Neispravno korisničko ime ili zaporka. - notice_account_password_updated: Zaporka je uspješno promijenjena. - notice_account_wrong_password: Pogrešna zaporka - notice_account_register_done: Racun je uspješno napravljen. Da biste aktivirali svoj račun, kliknite na link koji vam je poslan na e-mail. - notice_account_unknown_email: Nepoznati korisnik. - notice_can_t_change_password: Ovaj račun koristi eksterni izvor prijavljivanja. Nemoguće je promijeniti zaporku. - notice_account_lost_email_sent: E-mail s uputama kako bi odabrali novu zaporku je poslan na na vašu e-mail adresu. - notice_account_activated: Vaš racun je aktiviran. Možete se prijaviti. - notice_successful_create: Uspješno napravljeno. - notice_successful_update: Uspješna promjena. - notice_successful_delete: Uspješno brisanje. - notice_successful_connection: Uspješna veza. - notice_file_not_found: Stranica kojoj ste pokušali pristupiti ne postoji ili je uklonjena. - notice_locking_conflict: Podataci su ažurirani od strane drugog korisnika. - notice_not_authorized: Niste ovlašteni za pristup ovoj stranici. - notice_email_sent: E-mail je poslan %{value}" - notice_email_error: Dogodila se pogreška tijekom slanja E-maila (%{value})" - notice_feeds_access_key_reseted: Vaš Atom pristup je resetovan. - notice_api_access_key_reseted: Vaš API pristup je resetovan. - notice_failed_to_save_issues: "Neuspjelo spremanje %{count} predmeta na %{total} odabrane: %{ids}." - notice_no_issue_selected: "Niti jedan predmet nije odabran! Molim, odaberite predmete koje želite urediti." - notice_account_pending: "Vaš korisnicki račun je otvoren, čeka odobrenje administratora." - notice_default_data_loaded: Konfiguracija je uspješno učitana. - notice_unable_delete_version: Nije moguće izbrisati verziju. - notice_issue_done_ratios_updated: Issue done ratios updated. - - error_can_t_load_default_data: "Zadanu konfiguracija nije učitana: %{value}" - error_scm_not_found: "Unos i/ili revizija nije pronađen." - error_scm_command_failed: "Dogodila se pogreška prilikom pokušaja pristupa: %{value}" - error_scm_annotate: "Ne postoji ili ne može biti obilježen." - error_issue_not_found_in_project: 'Nije pronađen ili ne pripada u ovaj projekt' - error_no_tracker_in_project: 'No tracker is associated to this project. Please check the Project settings.' - error_no_default_issue_status: 'No default issue status is defined. Please check your configuration (Go to "Administration -> Issue statuses").' - error_can_not_reopen_issue_on_closed_version: 'An issue assigned to a closed version can not be reopened' - error_can_not_archive_project: This project can not be archived - error_issue_done_ratios_not_updated: "Issue done ratios not updated." - error_workflow_copy_source: 'Please select a source tracker or role' - error_workflow_copy_target: 'Please select target tracker(s) and role(s)' - - warning_attachments_not_saved: "%{count} Datoteka/e nije mogla biti spremljena." - - mail_subject_lost_password: "Vaša %{value} zaporka" - mail_body_lost_password: 'Kako biste promijenili Vašu zaporku slijedite poveznicu:' - mail_subject_register: "Aktivacija korisničog računa %{value}" - mail_body_register: 'Da biste aktivirali svoj račun, kliknite na sljedeci link:' - mail_body_account_information_external: "Možete koristiti vaš račun %{value} za prijavu." - mail_body_account_information: Vaši korisnički podaci - mail_subject_account_activation_request: "%{value} predmet za aktivaciju korisničkog računa" - mail_body_account_activation_request: "Novi korisnik (%{value}) je registriran. Njegov korisnički račun čeka vaše odobrenje:" - mail_subject_reminder: "%{count} predmet(a) dospijeva sljedećih %{days} dana" - mail_body_reminder: "%{count} vama dodijeljen(ih) predmet(a) dospijeva u sljedećih %{days} dana:" - mail_subject_wiki_content_added: "'%{id}' wiki page has been added" - mail_body_wiki_content_added: "The '%{id}' wiki page has been added by %{author}." - mail_subject_wiki_content_updated: "'%{id}' wiki page has been updated" - mail_body_wiki_content_updated: "The '%{id}' wiki page has been updated by %{author}." - - - field_name: Ime - field_description: Opis - field_summary: Sažetak - field_is_required: Obavezno - field_firstname: Ime - field_lastname: Prezime - field_mail: E-pošta - field_filename: Datoteka - field_filesize: Veličina - field_downloads: Preuzimanja - field_author: Autor - field_created_on: Napravljen - field_updated_on: Promijenjen - field_field_format: Format - field_is_for_all: Za sve projekte - field_possible_values: Moguće vrijednosti - field_regexp: Regularni izraz - field_min_length: Minimalna dužina - field_max_length: Maksimalna dužina - field_value: Vrijednost - field_category: Kategorija - field_title: Naslov - field_project: Projekt - field_issue: Predmet - field_status: Status - field_notes: Napomene - field_is_closed: Predmet je zatvoren - field_is_default: Zadana vrijednost - field_tracker: Tracker - field_subject: Predmet - field_due_date: Do datuma - field_assigned_to: Dodijeljeno - field_priority: Prioritet - field_fixed_version: Verzija - field_user: Korisnik - field_role: Uloga - field_homepage: Naslovnica - field_is_public: Javni projekt - field_parent: Potprojekt od - field_is_in_roadmap: Predmeti se prikazuju u Putokazu - field_login: Korisničko ime - field_mail_notification: Obavijest putem e-pošte - field_admin: Administrator - field_last_login_on: Zadnja prijava - field_language: Primarni jezik - field_effective_date: Datum - field_password: Zaporka - field_new_password: Nova zaporka - field_password_confirmation: Potvrda zaporke - field_version: Verzija - field_type: Tip - field_host: Host - field_port: Port - field_account: Racun - field_base_dn: Osnovni DN - field_attr_login: Login atribut - field_attr_firstname: Atribut imena - field_attr_lastname: Atribut prezimena - field_attr_mail: Atribut e-pošte - field_onthefly: "Izrada korisnika \"u hodu\"" - field_start_date: Pocetak - field_done_ratio: "% Učinjeno" - field_auth_source: Vrsta prijavljivanja - field_hide_mail: Sakrij moju adresu e-pošte - field_comments: Komentar - field_url: URL - field_start_page: Početna stranica - field_subproject: Potprojekt - field_hours: Sati - field_activity: Aktivnost - field_spent_on: Datum - field_identifier: Identifikator - field_is_filter: Korišteno kao filtar - field_delay: Odgodeno - field_assignable: Predmeti mogu biti dodijeljeni ovoj ulozi - field_redirect_existing_links: Preusmjeravanje postojećih linkova - field_estimated_hours: Procijenjeno vrijeme - field_column_names: Stupci - field_time_zone: Vremenska zona - field_searchable: Pretraživo - field_default_value: Zadana vrijednost - field_comments_sorting: Prikaz komentara - field_parent_title: Parent page - field_editable: Editable - field_watcher: Watcher - field_identity_url: OpenID URL - field_content: Content - field_group_by: Group results by - - setting_app_title: Naziv aplikacije - setting_welcome_text: Tekst dobrodošlice - setting_default_language: Zadani jezik - setting_login_required: Potrebna je prijava - setting_self_registration: Samoregistracija je dozvoljena - setting_attachment_max_size: Maksimalna veličina privitka - setting_issues_export_limit: Ograničenje izvoza predmeta - setting_mail_from: Izvorna adresa e-pošte - setting_bcc_recipients: Blind carbon copy primatelja (bcc) - setting_plain_text_mail: obični tekst pošte (bez HTML-a) - setting_host_name: Naziv domaćina (host) - setting_text_formatting: Oblikovanje teksta - setting_wiki_compression: Sažimanje - setting_feeds_limit: Ogranicenje unosa sadržaja - setting_default_projects_public: Novi projekti su javni po defaultu - setting_autofetch_changesets: Autofetch commits - setting_sys_api_enabled: Omogući WS za upravljanje skladištem - setting_commit_ref_keywords: Referentne ključne riječi - setting_commit_fix_keywords: Fiksne ključne riječi - setting_autologin: Automatska prijava - setting_date_format: Format datuma - setting_time_format: Format vremena - setting_cross_project_issue_relations: Dozvoli povezivanje predmeta izmedu različitih projekata - setting_issue_list_default_columns: Stupci prikazani na listi predmeta - setting_emails_footer: Zaglavlje e-pošte - setting_protocol: Protokol - setting_per_page_options: Objekata po stranici opcija - setting_user_format: Oblik prikaza korisnika - setting_activity_days_default: Dani prikazane aktivnosti na projektu - setting_display_subprojects_issues: Prikaz predmeta potprojekta na glavnom projektu po defaultu - setting_enabled_scm: Omogućen SCM - setting_mail_handler_body_delimiters: "Truncate emails after one of these lines" - setting_mail_handler_api_enabled: Omoguci WS za dolaznu e-poštu - setting_mail_handler_api_key: API ključ - setting_sequential_project_identifiers: Generiraj slijedne identifikatore projekta - setting_gravatar_enabled: Koristi Gravatar korisničke ikone - setting_gravatar_default: Default Gravatar image - setting_diff_max_lines_displayed: Maksimalni broj diff linija za prikazati - setting_file_max_size_displayed: Max size of text files displayed inline - setting_repository_log_display_limit: Maximum number of revisions displayed on file log - setting_openid: Allow OpenID login and registration - setting_password_min_length: Minimum password length - setting_new_project_user_role_id: Role given to a non-admin user who creates a project - setting_default_projects_modules: Default enabled modules for new projects - setting_issue_done_ratio: Calculate the issue done ratio with - setting_issue_done_ratio_issue_field: Use the issue field - setting_issue_done_ratio_issue_status: Use the issue status - setting_start_of_week: Start calendars on - setting_rest_api_enabled: Enable REST web service - - permission_add_project: Dodaj projekt - permission_add_subprojects: Dodaj potprojekt - permission_edit_project: Uredi projekt - permission_select_project_modules: Odaberi projektne module - permission_manage_members: Upravljaj članovima - permission_manage_versions: Upravljaj verzijama - permission_manage_categories: Upravljaj kategorijama predmeta - permission_view_issues: Pregledaj zahtjeve - permission_add_issues: Dodaj predmete - permission_edit_issues: Uredi predmete - permission_manage_issue_relations: Upravljaj relacijama predmeta - permission_add_issue_notes: Dodaj bilješke - permission_edit_issue_notes: Uredi bilješke - permission_edit_own_issue_notes: Uredi vlastite bilješke - permission_delete_issues: Brisanje predmeta - permission_manage_public_queries: Upravljaj javnim upitima - permission_save_queries: Spremi upite - permission_view_gantt: Pregledaj gantt grafikon - permission_view_calendar: Pregledaj kalendar - permission_view_issue_watchers: Pregledaj listu promatraca - permission_add_issue_watchers: Dodaj promatrača - permission_delete_issue_watchers: Delete watchers - permission_log_time: Dnevnik utrošenog vremena - permission_view_time_entries: Pregledaj utrošeno vrijeme - permission_edit_time_entries: Uredi vremenske dnevnike - permission_edit_own_time_entries: Edit own time logs - permission_manage_news: Upravljaj novostima - permission_comment_news: Komentiraj novosti - permission_view_documents: Pregledaj dokumente - permission_manage_files: Upravljaj datotekama - permission_view_files: Pregledaj datoteke - permission_manage_wiki: Upravljaj wikijem - permission_rename_wiki_pages: Promijeni ime wiki stranicama - permission_delete_wiki_pages: Obriši wiki stranice - permission_view_wiki_pages: Pregledaj wiki - permission_view_wiki_edits: Pregledaj povijest wikija - permission_edit_wiki_pages: Uredi wiki stranice - permission_delete_wiki_pages_attachments: Obriši privitke - permission_protect_wiki_pages: Zaštiti wiki stranice - permission_manage_repository: Upravljaj skladištem - permission_browse_repository: Browse repository - permission_view_changesets: View changesets - permission_commit_access: Mogućnost pohranjivanja - permission_manage_boards: Manage boards - permission_view_messages: Pregledaj poruke - permission_add_messages: Objavi poruke - permission_edit_messages: Uredi poruke - permission_edit_own_messages: Uredi vlastite poruke - permission_delete_messages: Obriši poruke - permission_delete_own_messages: Obriši vlastite poruke - - project_module_issue_tracking: Praćenje predmeta - project_module_time_tracking: Praćenje vremena - project_module_news: Novosti - project_module_documents: Dokumenti - project_module_files: Datoteke - project_module_wiki: Wiki - project_module_repository: Skladište - project_module_boards: Boards - - label_user: Korisnik - label_user_plural: Korisnici - label_user_new: Novi korisnik - label_user_anonymous: Anonymous - label_project: Projekt - label_project_new: Novi projekt - label_project_plural: Projekti - label_x_projects: - zero: no projects - one: 1 project - other: "%{count} projects" - label_project_all: Svi Projekti - label_project_latest: Najnoviji projekt - label_issue: Predmet - label_issue_new: Novi predmet - label_issue_plural: Predmeti - label_issue_view_all: Pregled svih predmeta - label_issues_by: "Predmeti od %{value}" - label_issue_added: Predmet dodan - label_issue_updated: Predmet promijenjen - label_document: Dokument - label_document_new: Novi dokument - label_document_plural: Dokumenti - label_document_added: Dokument dodan - label_role: Uloga - label_role_plural: Uloge - label_role_new: Nova uloga - label_role_and_permissions: Uloge i ovlasti - label_member: Član - label_member_new: Novi član - label_member_plural: Članovi - label_tracker: Vrsta - label_tracker_plural: Vrste predmeta - label_tracker_new: Nova vrsta - label_workflow: Tijek rada - label_issue_status: Status predmeta - label_issue_status_plural: Status predmeta - label_issue_status_new: Novi status - label_issue_category: Kategorija predmeta - label_issue_category_plural: Kategorije predmeta - label_issue_category_new: Nova kategorija - label_custom_field: Korisnički definirano polje - label_custom_field_plural: Korisnički definirana polja - label_custom_field_new: Novo korisnički definirano polje - label_enumerations: Pobrojenice - label_enumeration_new: Nova vrijednost - label_information: Informacija - label_information_plural: Informacije - label_register: Registracija - label_login_with_open_id_option: or login with OpenID - label_password_lost: Izgubljena zaporka - label_home: Početna stranica - label_my_page: Moja stranica - label_my_account: Moj profil - label_my_projects: Moji projekti - label_administration: Administracija - label_login: Korisnik - label_logout: Odjava - label_help: Pomoć - label_reported_issues: Prijavljeni predmeti - label_assigned_to_me_issues: Moji predmeti - label_last_login: Last connection - label_registered_on: Registrirano - label_activity: Aktivnosti - label_overall_activity: Aktivnosti - label_user_activity: "%{value} ova/ina aktivnost" - label_new: Novi - label_logged_as: Prijavljeni ste kao - label_environment: Okolina - label_authentication: Autentikacija - label_auth_source: Način prijavljivanja - label_auth_source_new: Novi način prijavljivanja - label_auth_source_plural: Načini prijavljivanja - label_subproject_plural: Potprojekti - label_subproject_new: Novi potprojekt - label_and_its_subprojects: "%{value} i njegovi potprojekti" - label_min_max_length: Min - Maks veličina - label_list: Liste - label_date: Datum - label_integer: Integer - label_float: Float - label_boolean: Boolean - label_string: Text - label_text: Long text - label_attribute: Atribut - label_attribute_plural: Atributi - label_no_data: Nema podataka za prikaz - label_change_status: Promjena statusa - label_history: Povijest - label_attachment: Datoteka - label_attachment_new: Nova datoteka - label_attachment_delete: Brisanje datoteke - label_attachment_plural: Datoteke - label_file_added: Datoteka dodana - label_report: Izvješće - label_report_plural: Izvješća - label_news: Novosti - label_news_new: Dodaj novost - label_news_plural: Novosti - label_news_latest: Novosti - label_news_view_all: Pregled svih novosti - label_news_added: Novosti dodane - label_settings: Postavke - label_overview: Pregled - label_version: Verzija - label_version_new: Nova verzija - label_version_plural: Verzije - label_confirmation: Potvrda - label_export_to: 'Izvoz u:' - label_read: Čitaj... - label_public_projects: Javni projekti - label_open_issues: Otvoren - label_open_issues_plural: Otvoreno - label_closed_issues: Zatvoren - label_closed_issues_plural: Zatvoreno - label_x_open_issues_abbr: - zero: 0 open - one: 1 open - other: "%{count} open" - label_x_closed_issues_abbr: - zero: 0 closed - one: 1 closed - other: "%{count} closed" - label_total: Ukupno - label_permissions: Dozvole - label_current_status: Trenutni status - label_new_statuses_allowed: Novi status je dozvoljen - label_all: Svi - label_none: nema - label_nobody: nitko - label_next: Naredni - label_previous: Prethodni - label_used_by: Korišten od - label_details: Detalji - label_add_note: Dodaj napomenu - label_calendar: Kalendar - label_months_from: Mjeseci od - label_gantt: Gantt - label_internal: Interno - label_last_changes: "Posljednjih %{count} promjena" - label_change_view_all: Prikaz svih promjena - label_comment: Komentar - label_comment_plural: Komentari - label_x_comments: - zero: no comments - one: 1 comment - other: "%{count} comments" - label_comment_add: Dodaj komentar - label_comment_added: Komentar dodan - label_comment_delete: Brisanje komentara - label_query: Korisnički upit - label_query_plural: Korisnički upiti - label_query_new: Novi upit - label_filter_add: Dodaj filtar - label_filter_plural: Filtri - label_equals: je - label_not_equals: nije - label_in_less_than: za manje od - label_in_more_than: za više od - label_greater_or_equal: '>=' - label_less_or_equal: '<=' - label_in: za točno - label_today: danas - label_yesterday: jučer - label_this_week: ovog tjedna - label_last_week: prošlog tjedna - label_last_n_days: "zadnjih %{count} dana" - label_this_month: ovog mjeseca - label_last_month: prošlog mjeseca - label_this_year: ove godine - label_date_range: vremenski raspon - label_less_than_ago: manje od - label_more_than_ago: više od - label_ago: prije - label_contains: Sadrži - label_not_contains: ne sadrži - label_day_plural: dana - label_repository: Skladište - label_repository_plural: Skladišta - label_browse: Pregled - label_branch: Branch - label_tag: Tag - label_revision: Revizija - label_revision_plural: Revizije - label_revision_id: "Revision %{value}" - label_associated_revisions: Dodijeljene revizije - label_added: dodano - label_modified: promijenjen - label_copied: kopirano - label_renamed: preimenovano - label_deleted: obrisano - label_latest_revision: Posljednja revizija - label_latest_revision_plural: Posljednje revizije - label_view_revisions: Pregled revizija - label_view_all_revisions: View all revisions - label_max_size: Maksimalna veličina - label_sort_highest: Premjesti na vrh - label_sort_higher: Premjesti prema gore - label_sort_lower: Premjesti prema dolje - label_sort_lowest: Premjesti na dno - label_roadmap: Putokaz - label_roadmap_due_in: "Završava se za %{value}" - label_roadmap_overdue: "%{value} kasni" - label_roadmap_no_issues: Nema predmeta za ovu verziju - label_search: Traži - label_result_plural: Rezultati - label_all_words: Sve riječi - label_wiki: Wiki - label_wiki_edit: Wiki promjena - label_wiki_edit_plural: Wiki promjene - label_wiki_page: Wiki stranica - label_wiki_page_plural: Wiki stranice - label_index_by_title: Indeks po naslovima - label_index_by_date: Indeks po datumu - label_current_version: Trenutna verzija - label_preview: Brzi pregled - label_feed_plural: Feeds - label_changes_details: Detalji svih promjena - label_issue_tracking: Praćenje predmeta - label_spent_time: Utrošeno vrijeme - label_f_hour: "%{value} sata" - label_f_hour_plural: "%{value} sati" - label_time_tracking: Praćenje vremena - label_change_plural: Promjene - label_statistics: Statistika - label_commits_per_month: Pohrana po mjesecu - label_commits_per_author: Pohrana po autoru - label_view_diff: Pregled razlika - label_diff_inline: uvučeno - label_diff_side_by_side: paralelno - label_options: Opcije - label_copy_workflow_from: Kopiraj tijek rada od - label_permissions_report: Izvješće o dozvolama - label_watched_issues: Praćeni predmeti - label_related_issues: Povezani predmeti - label_applied_status: Primijenjen status - label_loading: Učitavam... - label_relation_new: Nova relacija - label_relation_delete: Brisanje relacije - label_relates_to: u relaciji sa - label_duplicates: Duplira - label_duplicated_by: ponovljen kao - label_blocks: blokira - label_blocked_by: blokiran od strane - label_precedes: prethodi - label_follows: slijedi - label_stay_logged_in: Ostanite prijavljeni - label_disabled: Isključen - label_show_completed_versions: Prikaži završene verzije - label_me: ja - label_board: Forum - label_board_new: Novi forum - label_board_plural: Forumi - label_topic_plural: Teme - label_message_plural: Poruke - label_message_last: Posljednja poruka - label_message_new: Nova poruka - label_message_posted: Poruka dodana - label_reply_plural: Odgovori - label_send_information: Pošalji korisniku informaciju o profilu - label_year: Godina - label_month: Mjesec - label_week: Tjedan - label_date_from: Od - label_date_to: Do - label_language_based: Zasnovano na jeziku - label_sort_by: "Uredi po %{value}" - label_send_test_email: Pošalji testno E-pismo - label_feeds_access_key: Atom access key - label_missing_feeds_access_key: Missing a Atom access key - label_feeds_access_key_created_on: "Atom kljuc za pristup je napravljen prije %{value}" - label_module_plural: Moduli - label_added_time_by: "Promijenio %{author} prije %{age}" - label_updated_time_by: "Dodao/la %{author} prije %{age}" - label_updated_time: "Promijenjeno prije %{value}" - label_jump_to_a_project: Prebaci se na projekt... - label_file_plural: Datoteke - label_changeset_plural: Promjene - label_default_columns: Zadani stupci - label_no_change_option: (Bez promjene) - label_bulk_edit_selected_issues: Zajednička promjena izabranih predmeta - label_theme: Tema - label_default: Zadana - label_search_titles_only: Pretraživanje samo naslova - label_user_mail_option_all: "Za bilo koji događaj na svim mojim projektima" - label_user_mail_option_selected: "Za bilo koji događaj samo za izabrane projekte..." - label_user_mail_no_self_notified: "Ne želim primati obavijesti o promjenama koje sam napravim" - label_registration_activation_by_email: aktivacija putem e-pošte - label_registration_manual_activation: ručna aktivacija - label_registration_automatic_activation: automatska aktivacija - label_display_per_page: "Po stranici: %{value}" - label_age: Starost - label_change_properties: Promijeni svojstva - label_general: Općenito - label_scm: SCM - label_plugins: Plugins - label_ldap_authentication: LDAP autentikacija - label_downloads_abbr: D/L - label_optional_description: Opcije - label_add_another_file: Dodaj još jednu datoteku - label_preferences: Preferences - label_chronological_order: U kronološkom redoslijedu - label_reverse_chronological_order: U obrnutom kronološkom redoslijedu - label_incoming_emails: Dolazne poruke e-pošte - label_generate_key: Generiraj ključ - label_issue_watchers: Promatrači - label_example: Primjer - label_display: Display - label_sort: Sort - label_ascending: Ascending - label_descending: Descending - label_date_from_to: From %{start} to %{end} - label_wiki_content_added: Wiki page added - label_wiki_content_updated: Wiki page updated - label_group: Group - label_group_plural: Grupe - label_group_new: Nova grupa - label_time_entry_plural: Spent time - label_version_sharing_none: Not shared - label_version_sharing_descendants: With subprojects - label_version_sharing_hierarchy: With project hierarchy - label_version_sharing_tree: With project tree - label_version_sharing_system: With all projects - label_update_issue_done_ratios: Update issue done ratios - label_copy_source: Source - label_copy_target: Target - label_copy_same_as_target: Same as target - label_display_used_statuses_only: Only display statuses that are used by this tracker - label_api_access_key: API access key - label_missing_api_access_key: Missing an API access key - label_api_access_key_created_on: "API access key created %{value} ago" - - button_login: Prijavi - button_submit: Pošalji - button_save: Spremi - button_check_all: Označi sve - button_uncheck_all: Isključi sve - button_delete: Obriši - button_create: Napravi - button_create_and_continue: Napravi i nastavi - button_test: Test - button_edit: Uredi - button_add: Dodaj - button_change: Promijeni - button_apply: Primijeni - button_clear: Ukloni - button_lock: Zaključaj - button_unlock: Otključaj - button_download: Preuzmi - button_list: Spisak - button_view: Pregled - button_move: Premjesti - button_move_and_follow: Move and follow - button_back: Nazad - button_cancel: Odustani - button_activate: Aktiviraj - button_sort: Redoslijed - button_log_time: Zapiši vrijeme - button_rollback: Izvrši rollback na ovu verziju - button_watch: Prati - button_unwatch: Prekini pracenje - button_reply: Odgovori - button_archive: Arhiviraj - button_rollback: Dearhiviraj - button_reset: Poništi - button_rename: Promijeni ime - button_change_password: Promjena zaporke - button_copy: Kopiraj - button_copy_and_follow: Copy and follow - button_annotate: Annotate - button_update: Promijeni - button_configure: Konfiguracija - button_quote: Navod - button_show: Show - - status_active: aktivan - status_registered: Registriran - status_locked: zaključan - - version_status_open: open - version_status_locked: locked - version_status_closed: closed - - field_active: Active - - text_select_mail_notifications: Izbor akcija za koje će biti poslana obavijest e-poštom. - text_regexp_info: eg. ^[A-Z0-9]+$ - text_min_max_length_info: 0 znači bez ograničenja - text_project_destroy_confirmation: Da li ste sigurni da želite izbrisati ovaj projekt i sve njegove podatke? - text_subprojects_destroy_warning: "Njegov(i) potprojekt(i): %{value} će također biti obrisan." - text_workflow_edit: Select a role and a tracker to edit the workflow - text_are_you_sure: Da li ste sigurni? - text_journal_changed: "%{label} promijenjen iz %{old} u %{new}" - text_journal_set_to: "%{label} postavi na %{value}" - text_journal_deleted: "%{label} izbrisano (%{old})" - text_journal_added: "%{label} %{value} added" - text_tip_issue_begin_day: Zadaci koji počinju ovog dana - text_tip_issue_end_day: zadaci koji se završavaju ovog dana - text_tip_issue_begin_end_day: Zadaci koji počinju i završavaju se ovog dana - text_caracters_maximum: "Najviše %{count} znakova." - text_caracters_minimum: "Mora biti dugačko najmanje %{count} znakova." - text_length_between: "Dužina izmedu %{min} i %{max} znakova." - text_tracker_no_workflow: Tijek rada nije definiran za ovaj tracker - text_unallowed_characters: Nedozvoljeni znakovi - text_comma_separated: Višestruke vrijednosti su dozvoljene (razdvojene zarezom). - text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages - text_tracker_no_workflow: No workflow defined for this tracker - text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages - text_issue_added: "Predmet %{id} je prijavljen (prijavio %{author})." - text_issue_updated: "Predmet %{id} je promijenjen %{author})." - text_wiki_destroy_confirmation: Da li ste sigurni da želite izbrisati ovaj wiki i njegov sadržaj? - text_issue_category_destroy_question: "Neke predmeti (%{count}) su dodijeljeni ovoj kategoriji. Što želite uraditi?" - text_issue_category_destroy_assignments: Ukloni dodjeljivanje kategorija - text_issue_category_reassign_to: Ponovo dodijeli predmete ovoj kategoriji - text_user_mail_option: "Za neizabrane projekte, primit ćete obavjesti samo o stvarima koje pratite ili u kojima sudjelujete (npr. predmete koje ste vi napravili ili koje su vama dodjeljeni)." - text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded." - text_load_default_configuration: Učitaj početnu konfiguraciju - text_status_changed_by_changeset: "Applied in changeset %{value}." - text_issues_destroy_confirmation: 'Jeste li sigurni da želite obrisati izabrani/e predmet(e)?' - text_select_project_modules: 'Odaberite module koji će biti omogućeni za ovaj projekt:' - text_default_administrator_account_changed: Default administrator account changed - text_file_repository_writable: Dozvoljeno pisanje u direktorij za privitke - text_plugin_assets_writable: Plugin assets directory writable - text_minimagick_available: MiniMagick dostupan (nije obavezno) - text_destroy_time_entries_question: "%{hours} sati je prijavljeno za predmete koje želite obrisati. Što ćete učiniti?" - text_destroy_time_entries: Obriši prijavljene sate - text_assign_time_entries_to_project: Pridruži prijavljene sate projektu - text_reassign_time_entries: 'Premjesti prijavljene sate ovom predmetu:' - text_user_wrote: "%{value} je napisao/la:" - text_user_wrote_in: "%{value} je napisao/la (%{link}):" - text_enumeration_destroy_question: "%{count} objekata je pridruženo toj vrijednosti." - text_enumeration_category_reassign_to: 'Premjesti ih ovoj vrijednosti:' - text_email_delivery_not_configured: "Email delivery is not configured, and notifications are disabled.\nConfigure your SMTP server in config/configuration.yml and restart the application to enable them." - text_repository_usernames_mapping: "Select or update the Redmine user mapped to each username found in the repository log.\nUsers with the same Redmine and repository username or email are automatically mapped." - text_diff_truncated: '... Ovaj diff je odrezan zato što prelazi maksimalnu veličinu koja može biti prikazana.' - text_custom_field_possible_values_info: 'One line for each value' - text_wiki_page_destroy_question: "This page has %{descendants} child page(s) and descendant(s). What do you want to do?" - text_wiki_page_nullify_children: "Keep child pages as root pages" - text_wiki_page_destroy_children: "Delete child pages and all their descendants" - text_wiki_page_reassign_children: "Reassign child pages to this parent page" - default_role_manager: Upravitelj - default_role_developer: Razvojni inženjer - default_role_reporter: Korisnik - default_tracker_bug: Pogreška - default_tracker_feature: Funkcionalnost - default_tracker_support: Podrška - default_issue_status_new: Novo - default_issue_status_resolved: Riješeno - default_issue_status_feedback: Povratna informacija - default_issue_status_closed: Zatvoreno - default_issue_status_rejected: Odbaceno - default_doc_category_user: Korisnička dokumentacija - default_doc_category_tech: Tehnička dokumentacija - default_priority_low: Nizak - default_priority_normal: Redovan - default_priority_high: Visok - default_priority_urgent: Hitan - default_priority_immediate: Odmah - default_activity_design: Dizajn - default_activity_development: Razvoj - enumeration_issue_priorities: Prioriteti predmeta - enumeration_doc_categories: Kategorija dokumenata - enumeration_activities: Aktivnosti (po vremenu) - enumeration_system_activity: System Activity - field_sharing: Sharing - text_line_separated: Multiple values allowed (one line for each value). - label_close_versions: Close completed versions - button_unarchive: Unarchive - field_issue_to: Related issue - default_issue_status_in_progress: In Progress - 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. - Are you sure you want to continue? - label_board_sticky: Sticky - label_board_locked: Locked - permission_export_wiki_pages: Export wiki pages - setting_cache_formatted_text: Cache formatted text - permission_manage_project_activities: Manage project activities - error_unable_delete_issue_status: Unable to delete issue status (%{value}) - label_profile: Profile - permission_manage_subtasks: Manage subtasks - field_parent_issue: Parent task - label_subtask_plural: Subtasks - label_project_copy_notifications: Send email notifications during the project copy - error_can_not_delete_custom_field: Unable to delete custom field - error_unable_to_connect: Unable to connect (%{value}) - error_can_not_remove_role: This role is in use and can not be deleted. - error_can_not_delete_tracker: This tracker contains issues and cannot be deleted. - field_principal: Principal - notice_failed_to_save_members: "Failed to save member(s): %{errors}." - text_zoom_out: Zoom out - text_zoom_in: Zoom in - notice_unable_delete_time_entry: Unable to delete time log entry. - label_overall_spent_time: Overall spent time - field_time_entries: Log time - project_module_gantt: Gantt - project_module_calendar: Calendar - button_edit_associated_wikipage: "Edit associated Wiki page: %{page_title}" - field_text: Text field - setting_default_notification_option: Default notification option - label_user_mail_option_only_my_events: Only for things I watch or I'm involved in - label_user_mail_option_none: No events - field_member_of_group: Assignee's group - field_assigned_to_role: Assignee's role - notice_not_authorized_archived_project: The project you're trying to access has been archived. - label_principal_search: "Search for user or group:" - label_user_search: "Search for user:" - field_visible: Visible - setting_commit_logtime_activity_id: Activity for logged time - text_time_logged_by_changeset: Applied in changeset %{value}. - setting_commit_logtime_enabled: Enable time logging - notice_gantt_chart_truncated: The chart was truncated because it exceeds the maximum number of items that can be displayed (%{max}) - setting_gantt_items_limit: Maximum number of items displayed on the gantt chart - field_warn_on_leaving_unsaved: Warn me when leaving a page with unsaved text - text_warn_on_leaving_unsaved: The current page contains unsaved text that will be lost if you leave this page. - label_my_queries: My custom queries - text_journal_changed_no_detail: "%{label} updated" - label_news_comment_added: Comment added to a news - button_expand_all: Expand all - button_collapse_all: Collapse all - label_additional_workflow_transitions_for_assignee: Additional transitions allowed when the user is the assignee - label_additional_workflow_transitions_for_author: Additional transitions allowed when the user is the author - label_bulk_edit_selected_time_entries: Bulk edit selected time entries - text_time_entries_destroy_confirmation: Are you sure you want to delete the selected time entr(y/ies)? - label_role_anonymous: Anonymous - label_role_non_member: Non member - label_issue_note_added: Note added - label_issue_status_updated: Status updated - label_issue_priority_updated: Priority updated - label_issues_visibility_own: Issues created by or assigned to the user - field_issues_visibility: Issues visibility - label_issues_visibility_all: All issues - permission_set_own_issues_private: Set own issues public or private - field_is_private: Private - permission_set_issues_private: Set issues public or private - label_issues_visibility_public: All non private issues - text_issues_destroy_descendants_confirmation: This will also delete %{count} subtask(s). - field_commit_logs_encoding: Commit messages encoding - field_scm_path_encoding: Path encoding - text_scm_path_encoding_note: "Default: UTF-8" - field_path_to_repository: Path to repository - field_root_directory: Root directory - field_cvs_module: Module - field_cvsroot: CVSROOT - text_mercurial_repository_note: Local repository (e.g. /hgrepo, c:\hgrepo) - text_scm_command: Command - text_scm_command_version: Version - label_git_report_last_commit: Report last commit for files and directories - notice_issue_successful_create: Issue %{id} created. - label_between: between - setting_issue_group_assignment: Allow issue assignment to groups - label_diff: diff - text_git_repository_note: Repository is bare and local (e.g. /gitrepo, c:\gitrepo) - description_query_sort_criteria_direction: Sort direction - description_project_scope: Search scope - description_filter: Filter - description_user_mail_notification: Mail notification settings - description_message_content: Message content - description_available_columns: Available Columns - description_issue_category_reassign: Choose issue category - description_search: Searchfield - description_notes: Notes - description_choose_project: Projects - description_query_sort_criteria_attribute: Sort attribute - description_wiki_subpages_reassign: Choose new parent page - description_selected_columns: Selected Columns - label_parent_revision: Parent - label_child_revision: Child - error_scm_annotate_big_text_file: The entry cannot be annotated, as it exceeds the maximum text file size. - setting_default_issue_start_date_to_creation_date: Use current date as start date for new issues - button_edit_section: Edit this section - setting_repositories_encodings: Attachments and repositories encodings - description_all_columns: All Columns - button_export: Export - label_export_options: "%{export_format} export options" - error_attachment_too_big: This file cannot be uploaded because it exceeds the maximum allowed file size (%{max_size}) - notice_failed_to_save_time_entries: "Failed to save %{count} time entrie(s) on %{total} selected: %{ids}." - label_x_issues: - zero: 0 predmet - one: 1 predmet - other: "%{count} predmeti" - label_repository_new: New repository - field_repository_is_default: Main repository - label_copy_attachments: Copy attachments - label_item_position: "%{position}/%{count}" - label_completed_versions: Completed versions - text_project_identifier_info: Only lower case letters (a-z), numbers, dashes and underscores are allowed.
    Once saved, the identifier cannot be changed. - field_multiple: Multiple values - setting_commit_cross_project_ref: Allow issues of all the other projects to be referenced and fixed - text_issue_conflict_resolution_add_notes: Add my notes and discard my other changes - text_issue_conflict_resolution_overwrite: Apply my changes anyway (previous notes will be kept but some changes may be overwritten) - notice_issue_update_conflict: The issue has been updated by an other user while you were editing it. - text_issue_conflict_resolution_cancel: Discard all my changes and redisplay %{link} - permission_manage_related_issues: Manage related issues - field_auth_source_ldap_filter: LDAP filter - label_search_for_watchers: Search for watchers to add - notice_account_deleted: Your account has been permanently deleted. - setting_unsubscribe: Allow users to delete their own account - button_delete_my_account: Delete my account - text_account_destroy_confirmation: |- - Are you sure you want to proceed? - Your account will be permanently deleted, with no way to reactivate it. - error_session_expired: Your session has expired. Please login again. - text_session_expiration_settings: "Warning: changing these settings may expire the current sessions including yours." - setting_session_lifetime: Session maximum lifetime - setting_session_timeout: Session inactivity timeout - label_session_expiration: Session expiration - permission_close_project: Close / reopen the project - button_close: Close - button_reopen: Reopen - project_status_active: active - project_status_closed: closed - project_status_archived: archived - text_project_closed: This project is closed and read-only. - notice_user_successful_create: User %{id} created. - field_core_fields: Standard fields - field_timeout: Timeout (in seconds) - setting_thumbnails_enabled: Display attachment thumbnails - setting_thumbnails_size: Thumbnails size (in pixels) - label_status_transitions: Status transitions - label_fields_permissions: Fields permissions - label_readonly: Read-only - label_required: Required - text_repository_identifier_info: Only lower case letters (a-z), numbers, dashes and underscores are allowed.
    Once saved, the identifier cannot be changed. - field_board_parent: Parent forum - label_attribute_of_project: Project's %{name} - label_attribute_of_author: Author's %{name} - label_attribute_of_assigned_to: Assignee's %{name} - label_attribute_of_fixed_version: Target version's %{name} - label_copy_subtasks: Copy subtasks - label_copied_to: copied to - label_copied_from: copied from - label_any_issues_in_project: any issues in project - label_any_issues_not_in_project: any issues not in project - field_private_notes: Private notes - permission_view_private_notes: View private notes - permission_set_notes_private: Set notes as private - label_no_issues_in_project: no issues in project - label_any: Svi - label_last_n_weeks: last %{count} weeks - setting_cross_project_subtasks: Allow cross-project subtasks - label_cross_project_descendants: With subprojects - label_cross_project_tree: With project tree - label_cross_project_hierarchy: With project hierarchy - label_cross_project_system: With all projects - button_hide: Hide - setting_non_working_week_days: Non-working days - label_in_the_next_days: in the next - label_in_the_past_days: in the past - label_attribute_of_user: User's %{name} - text_turning_multiple_off: If you disable multiple values, multiple values will be - removed in order to preserve only one value per item. - label_attribute_of_issue: Issue's %{name} - permission_add_documents: Add documents - permission_edit_documents: Edit documents - permission_delete_documents: Delete documents - label_gantt_progress_line: Progress line - setting_jsonp_enabled: Enable JSONP support - field_inherit_members: Inherit members - field_closed_on: Closed - field_generate_password: Generate password - setting_default_projects_tracker_ids: Default trackers for new projects - label_total_time: Ukupno - text_scm_config: You can configure your SCM commands in config/configuration.yml. Please restart the application after editing it. - text_scm_command_not_available: SCM command is not available. Please check settings on the administration panel. - setting_emails_header: Email header - notice_account_not_activated_yet: You haven't activated your account yet. If you want - to receive a new activation email, please click this link. - notice_account_locked: Your account is locked. - label_hidden: Hidden - label_visibility_private: to me only - label_visibility_roles: to these roles only - label_visibility_public: to any users - field_must_change_passwd: Must change password at next logon - notice_new_password_must_be_different: The new password must be different from the - current password - setting_mail_handler_excluded_filenames: Exclude attachments by name - text_convert_available: ImageMagick convert available (optional) - label_link: Link - label_only: only - label_drop_down_list: drop-down list - label_checkboxes: checkboxes - label_link_values_to: Link values to URL - setting_force_default_language_for_anonymous: Force default language for anonymous - users - setting_force_default_language_for_loggedin: Force default language for logged-in - users - label_custom_field_select_type: Select the type of object to which the custom field - is to be attached - label_issue_assigned_to_updated: Assignee updated - label_check_for_updates: Check for updates - label_latest_compatible_version: Latest compatible version - label_unknown_plugin: Unknown plugin - label_radio_buttons: radio buttons - label_group_anonymous: Anonymous users - label_group_non_member: Non member users - label_add_projects: Add projects - field_default_status: Default status - text_subversion_repository_note: 'Examples: file:///, http://, https://, svn://, svn+[tunnelscheme]://' - field_users_visibility: Users visibility - label_users_visibility_all: All active users - label_users_visibility_members_of_visible_projects: Members of visible projects - label_edit_attachments: Edit attached files - setting_link_copied_issue: Link issues on copy - label_link_copied_issue: Link copied issue - label_ask: Ask - label_search_attachments_yes: Search attachment filenames and descriptions - label_search_attachments_no: Do not search attachments - label_search_attachments_only: Search attachments only - label_search_open_issues_only: Open issues only - field_address: E-pošta - setting_max_additional_emails: Maximum number of additional email addresses - label_email_address_plural: Emails - label_email_address_add: Add email address - label_enable_notifications: Enable notifications - label_disable_notifications: Disable notifications - setting_search_results_per_page: Search results per page - label_blank_value: blank - permission_copy_issues: Copy issues - error_password_expired: Your password has expired or the administrator requires you - to change it. - field_time_entries_visibility: Time logs visibility - setting_password_max_age: Require password change after - label_parent_task_attributes: Parent tasks attributes - label_parent_task_attributes_derived: Calculated from subtasks - label_parent_task_attributes_independent: Independent of subtasks - label_time_entries_visibility_all: All time entries - label_time_entries_visibility_own: Time entries created by the user - label_member_management: Member management - label_member_management_all_roles: All roles - label_member_management_selected_roles_only: Only these roles - label_password_required: Confirm your password to continue - label_total_spent_time: Overall spent time - notice_import_finished: "%{count} items have been imported" - notice_import_finished_with_errors: "%{count} out of %{total} items could not be imported" - error_invalid_file_encoding: The file is not a valid %{encoding} encoded file - error_invalid_csv_file_or_settings: The file is not a CSV file or does not match the - settings below - error_can_not_read_import_file: An error occurred while reading the file to import - permission_import_issues: Import issues - label_import_issues: Import issues - label_select_file_to_import: Select the file to import - label_fields_separator: Field separator - label_fields_wrapper: Field wrapper - label_encoding: Encoding - label_comma_char: Comma - label_semi_colon_char: Semicolon - label_quote_char: Quote - label_double_quote_char: Double quote - label_fields_mapping: Fields mapping - label_file_content_preview: File content preview - label_create_missing_values: Create missing values - button_import: Import - field_total_estimated_hours: Total estimated time - label_api: API - label_total_plural: Totals - label_assigned_issues: Assigned issues - label_field_format_enumeration: Key/value list - label_f_hour_short: '%{value} h' - field_default_version: Default version - error_attachment_extension_not_allowed: Attachment extension %{extension} is not allowed - setting_attachment_extensions_allowed: Allowed extensions - setting_attachment_extensions_denied: Disallowed extensions - label_any_open_issues: any open issues - label_no_open_issues: no open issues - label_default_values_for_new_users: Default values for new users - error_ldap_bind_credentials: Invalid LDAP Account/Password - setting_sys_api_key: API ključ - setting_lost_password: Izgubljena zaporka - mail_subject_security_notification: Security notification - mail_body_security_notification_change: ! '%{field} was changed.' - mail_body_security_notification_change_to: ! '%{field} was changed to %{value}.' - mail_body_security_notification_add: ! '%{field} %{value} was added.' - mail_body_security_notification_remove: ! '%{field} %{value} was removed.' - mail_body_security_notification_notify_enabled: Email address %{value} now receives - notifications. - mail_body_security_notification_notify_disabled: Email address %{value} no longer - receives notifications. - mail_body_settings_updated: ! 'The following settings were changed:' - field_remote_ip: IP address - label_wiki_page_new: New wiki page - label_relations: Relations - button_filter: Filter - mail_body_password_updated: Your password has been changed. - label_no_preview: No preview available - error_no_tracker_allowed_for_new_issue_in_project: The project doesn't have any trackers - for which you can create an issue - label_tracker_all: All trackers - label_new_project_issue_tab_enabled: Display the "New issue" tab - setting_new_item_menu_tab: Project menu tab for creating new objects - label_new_object_tab_enabled: Display the "+" drop-down - error_no_projects_with_tracker_allowed_for_new_issue: There are no projects with trackers - for which you can create an issue - field_textarea_font: Font used for text areas - label_font_default: Default font - label_font_monospace: Monospaced font - label_font_proportional: Proportional font - setting_timespan_format: Time span format - label_table_of_contents: Table of contents - setting_commit_logs_formatting: Apply text formatting to commit messages - setting_mail_handler_enable_regex: Enable regular expressions - error_move_of_child_not_possible: 'Subtask %{child} could not be moved to the new - project: %{errors}' - error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted: Spent time cannot - be reassigned to an issue that is about to be deleted - setting_timelog_required_fields: Required fields for time logs - label_attribute_of_object: '%{object_name}''s %{name}' - label_user_mail_option_only_assigned: Only for things I watch or I am assigned to - label_user_mail_option_only_owner: Only for things I watch or I am the owner of - warning_fields_cleared_on_bulk_edit: Changes will result in the automatic deletion - of values from one or more fields on the selected objects - field_updated_by: Updated by - field_last_updated_by: Last updated by - field_full_width_layout: Full width layout - label_last_notes: Last notes - field_digest: Checksum - field_default_assigned_to: Default assignee - setting_show_custom_fields_on_registration: Show custom fields on registration - permission_view_news: View news - label_no_preview_alternative_html: No preview available. %{link} the file instead. - label_no_preview_download: Download - setting_close_duplicate_issues: Close duplicate issues automatically - error_exceeds_maximum_hours_per_day: Cannot log more than %{max_hours} hours on the - same day (%{logged_hours} hours have already been logged) - setting_time_entry_list_defaults: Timelog list defaults - setting_timelog_accept_0_hours: Accept time logs with 0 hours - setting_timelog_max_hours_per_day: Maximum hours that can be logged per day and user - label_x_revisions: "%{count} revisions" - error_can_not_delete_auth_source: This authentication mode is in use and cannot be - deleted. - button_actions: Actions - mail_body_lost_password_validity: Please be aware that you may change the password - only once using this link. - text_login_required_html: When not requiring authentication, public projects and their - contents are openly available on the network. You can edit - the applicable permissions. - label_login_required_yes: 'Yes' - label_login_required_no: No, allow anonymous access to public projects - text_project_is_public_non_member: Public projects and their contents are available - to all logged-in users. - text_project_is_public_anonymous: Public projects and their contents are openly available - on the network. - label_version_and_files: Versions (%{count}) and Files - label_ldap: LDAP - label_ldaps_verify_none: LDAPS (without certificate check) - label_ldaps_verify_peer: LDAPS - label_ldaps_warning: It is recommended to use an encrypted LDAPS connection with certificate - check to prevent any manipulation during the authentication process. - label_nothing_to_preview: Nothing to preview - error_token_expired: This password recovery link has expired, please try again. - error_spent_on_future_date: Cannot log time on a future date - setting_timelog_accept_future_dates: Accept time logs on future dates - label_delete_link_to_subtask: Brisanje relacije - error_not_allowed_to_log_time_for_other_users: You are not allowed to log time - for other users - permission_log_time_for_other_users: Log spent time for other users - label_tomorrow: tomorrow - label_next_week: next week - label_next_month: next month - text_role_no_workflow: No workflow defined for this role - text_status_no_workflow: No tracker uses this status in the workflows - setting_mail_handler_preferred_body_part: Preferred part of multipart (HTML) emails - setting_show_status_changes_in_mail_subject: Show status changes in issue mail notifications - subject - label_inherited_from_parent_project: Inherited from parent project - label_inherited_from_group: Inherited from group %{name} - label_trackers_description: Trackers description - label_open_trackers_description: View all trackers description - label_preferred_body_part_text: Text - label_preferred_body_part_html: HTML (experimental) - field_parent_issue_subject: Parent task subject - permission_edit_own_issues: Edit own issues - text_select_apply_tracker: Select tracker - label_updated_issues: Updated issues - text_avatar_server_config_html: The current avatar server is %{url}. - You can configure it in config/configuration.yml. - setting_gantt_months_limit: Maximum number of months displayed on the gantt chart - permission_import_time_entries: Import time entries - label_import_notifications: Send email notifications during the import - text_gs_available: ImageMagick PDF support available (optional) - field_recently_used_projects: Number of recently used projects in jump box - label_optgroup_bookmarks: Bookmarks - label_optgroup_others: Other projects - label_optgroup_recents: Recently used - button_project_bookmark: Add bookmark - button_project_bookmark_delete: Remove bookmark - field_history_default_tab: Issue's history default tab - label_issue_history_properties: Property changes - label_issue_history_notes: Notes - label_last_tab_visited: Last visited tab - field_unique_id: Unique ID - text_no_subject: no subject - setting_password_required_char_classes: Required character classes for passwords - label_password_char_class_uppercase: uppercase letters - label_password_char_class_lowercase: lowercase letters - label_password_char_class_digits: digits - label_password_char_class_special_chars: special characters - text_characters_must_contain: Must contain %{character_classes}. - label_starts_with: starts with - label_ends_with: ends with - label_issue_fixed_version_updated: Target version updated - setting_project_list_defaults: Projects list defaults - label_display_type: Display results as - label_display_type_list: List - label_display_type_board: Board - label_my_bookmarks: My bookmarks - label_import_time_entries: Import time entries diff --git a/config/locales/hu.yml b/config/locales/hu.yml deleted file mode 100644 index abec41b..0000000 --- a/config/locales/hu.yml +++ /dev/null @@ -1,1334 +0,0 @@ -# Hungarian translations for Ruby on Rails -# by Richard Abonyi (richard.abonyi@gmail.com) -# thanks to KKata, replaced and #hup.hu -# Cleaned up by László Bácsi (http://lackac.hu) -# updated by kfl62 kfl62g@gmail.com -# updated by Gábor Takács (taky77@gmail.com) - -"hu": - direction: ltr - date: - formats: - default: "%Y.%m.%d." - short: "%b %e." - long: "%Y. %B %e." - day_names: [vasárnap, hétfő, kedd, szerda, csütörtök, péntek, szombat] - abbr_day_names: [v., h., k., sze., cs., p., szo.] - month_names: [~, január, február, március, április, május, június, július, augusztus, szeptember, október, november, december] - abbr_month_names: [~, jan., febr., márc., ápr., máj., jún., júl., aug., szept., okt., nov., dec.] - order: - - :year - - :month - - :day - - time: - formats: - default: "%Y. %b %d., %H:%M" - time: "%H:%M" - short: "%b %e., %H:%M" - long: "%Y. %B %e., %A, %H:%M" - am: "de." - pm: "du." - - datetime: - distance_in_words: - half_a_minute: 'fél perc' - less_than_x_seconds: -# zero: 'kevesebb, mint 1 másodperce' - one: 'kevesebb, mint 1 másodperce' - other: 'kevesebb, mint %{count} másodperce' - x_seconds: - one: '1 másodperce' - other: '%{count} másodperce' - less_than_x_minutes: -# zero: 'kevesebb, mint 1 perce' - one: 'kevesebb, mint 1 perce' - other: 'kevesebb, mint %{count} perce' - x_minutes: - one: '1 perce' - other: '%{count} perce' - about_x_hours: - one: 'csaknem 1 órája' - other: 'csaknem %{count} órája' - x_hours: - one: "1 óra" - other: "%{count} óra" - x_days: - one: '1 napja' - other: '%{count} napja' - about_x_months: - one: 'csaknem 1 hónapja' - other: 'csaknem %{count} hónapja' - x_months: - one: '1 hónapja' - other: '%{count} hónapja' - about_x_years: - one: 'csaknem 1 éve' - other: 'csaknem %{count} éve' - over_x_years: - one: 'több, mint 1 éve' - other: 'több, mint %{count} éve' - almost_x_years: - one: "csaknem 1 éve" - other: "csaknem %{count} éve" - prompts: - year: "Év" - month: "Hónap" - day: "Nap" - hour: "Óra" - minute: "Perc" - second: "Másodperc" - - number: - format: - precision: 2 - separator: ',' - delimiter: ' ' - currency: - format: - unit: 'Ft' - precision: 0 - format: '%n %u' - separator: "," - delimiter: "" - percentage: - format: - delimiter: "" - precision: - format: - delimiter: "" - human: - format: - delimiter: "" - precision: 3 - storage_units: - format: "%n %u" - units: - byte: - one: "bájt" - other: "bájt" - kb: "KB" - mb: "MB" - gb: "GB" - tb: "TB" - - support: - array: -# sentence_connector: "és" -# skip_last_comma: true - words_connector: ", " - two_words_connector: " és " - last_word_connector: " és " - activerecord: - errors: - template: - header: - one: "1 hiba miatt nem menthető a következő: %{model}" - other: "%{count} hiba miatt nem menthető a következő: %{model}" - body: "Problémás mezők:" - messages: - inclusion: "nincs a listában" - exclusion: "nem elérhető" - invalid: "nem megfelelő" - confirmation: "nem egyezik" - accepted: "nincs elfogadva" - empty: "nincs megadva" - blank: "nincs megadva" - too_long: "túl hosszú (nem lehet több %{count} karakternél)" - too_short: "túl rövid (legalább %{count} karakter kell legyen)" - wrong_length: "nem megfelelő hosszúságú (%{count} karakter szükséges)" - taken: "már foglalt" - not_a_number: "nem szám" - greater_than: "nagyobb kell legyen, mint %{count}" - greater_than_or_equal_to: "legalább %{count} kell legyen" - equal_to: "pontosan %{count} kell legyen" - less_than: "kevesebb, mint %{count} kell legyen" - less_than_or_equal_to: "legfeljebb %{count} lehet" - odd: "páratlan kell legyen" - even: "páros kell legyen" - greater_than_start_date: "nagyobbnak kell lennie, mint az indítás dátuma" - not_same_project: "nem azonos projekthez tartozik" - circular_dependency: "Ez a kapcsolat egy körkörös függőséget eredményez" - cant_link_an_issue_with_a_descendant: "An issue can not be linked to one of its subtasks" - earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" - not_a_regexp: "is not a valid regular expression" - open_issue_with_closed_parent: "An open issue cannot be attached to a closed parent task" - must_contain_uppercase: "must contain uppercase letters (A-Z)" - must_contain_lowercase: "must contain lowercase letters (a-z)" - must_contain_digits: "must contain digits (0-9)" - must_contain_special_chars: "must contain special characters (!, $, %, ...)" - - actionview_instancetag_blank_option: Kérem válasszon - - general_text_No: 'Nem' - general_text_Yes: 'Igen' - general_text_no: 'nem' - general_text_yes: 'igen' - general_lang_name: 'Hungarian (Magyar)' - general_csv_separator: ',' - general_csv_decimal_separator: '.' - general_csv_encoding: ISO-8859-2 - general_pdf_fontname: freesans - general_pdf_monospaced_fontname: freemono - general_first_day_of_week: '1' - - notice_account_updated: A fiók adatai sikeresen frissítve. - notice_account_invalid_credentials: Hibás felhasználói név, vagy jelszó - notice_account_password_updated: A jelszó módosítása megtörtént. - notice_account_wrong_password: Hibás jelszó - notice_account_register_done: A fiók sikeresen létrehozva. Aktiválásához kattints az e-mailben kapott linkre - notice_account_unknown_email: Ismeretlen felhasználó. - notice_can_t_change_password: A fiók külső azonosítási forrást használ. A jelszó megváltoztatása nem lehetséges. - notice_account_lost_email_sent: Egy e-mail üzenetben postáztunk Önnek egy leírást az új jelszó beállításáról. - notice_account_activated: Fiókját aktiváltuk. Most már be tud jelentkezni a rendszerbe. - notice_successful_create: Sikeres létrehozás. - notice_successful_update: Sikeres módosítás. - notice_successful_delete: Sikeres törlés. - notice_successful_connection: Sikeres bejelentkezés. - notice_file_not_found: Az oldal, amit meg szeretne nézni nem található, vagy átkerült egy másik helyre. - notice_locking_conflict: Az adatot egy másik felhasználó idő közben módosította. - notice_not_authorized: Nincs hozzáférési engedélye ehhez az oldalhoz. - notice_email_sent: "Egy e-mail üzenetet küldtünk a következő címre %{value}" - notice_email_error: "Hiba történt a levél küldése közben (%{value})" - notice_feeds_access_key_reseted: Az Atom hozzáférési kulcsát újra generáltuk. - notice_failed_to_save_issues: "Nem sikerült a %{count} feladat(ok) mentése a %{total} -ban kiválasztva: %{ids}." - notice_no_issue_selected: "Nincs feladat kiválasztva! Kérem jelölje meg melyik feladatot szeretné szerkeszteni!" - notice_account_pending: "A fiókja létrejött, és adminisztrátori jóváhagyásra vár." - notice_default_data_loaded: Az alapértelmezett konfiguráció betöltése sikeresen megtörtént. - - error_can_t_load_default_data: "Az alapértelmezett konfiguráció betöltése nem lehetséges: %{value}" - error_scm_not_found: "A bejegyzés, vagy revízió nem található a tárolóban." - error_scm_command_failed: "A tároló elérése közben hiba lépett fel: %{value}" - error_scm_annotate: "A bejegyzés nem létezik, vagy nics jegyzetekkel ellátva." - error_issue_not_found_in_project: 'A feladat nem található, vagy nem ehhez a projekthez tartozik' - - mail_subject_lost_password: Az Ön Redmine jelszava - mail_body_lost_password: 'A Redmine jelszó megváltoztatásához, kattintson a következő linkre:' - mail_subject_register: Redmine azonosító aktiválása - mail_body_register: 'A Redmine azonosítója aktiválásához, kattintson a következő linkre:' - mail_body_account_information_external: "A %{value} azonosító használatával bejelentkezhet a Redmine-ba." - mail_body_account_information: Az Ön Redmine azonosítójának információi - mail_subject_account_activation_request: Redmine azonosító aktiválási kérelem - mail_body_account_activation_request: "Egy új felhasználó (%{value}) regisztrált, azonosítója jóváhasgyásra várakozik:" - - - field_name: Név - field_description: Leírás - field_summary: Összegzés - field_is_required: Kötelező - field_firstname: Keresztnév - field_lastname: Vezetéknév - field_mail: E-mail - field_filename: Fájl - field_filesize: Méret - field_downloads: Letöltések - field_author: Szerző - field_created_on: Létrehozva - field_updated_on: Módosítva - field_field_format: Formátum - field_is_for_all: Minden projekthez - field_possible_values: Lehetséges értékek - field_regexp: Reguláris kifejezés - field_min_length: Minimum hossz - field_max_length: Maximum hossz - field_value: Érték - field_category: Kategória - field_title: Cím - field_project: Projekt - field_issue: Feladat - field_status: Státusz - field_notes: Feljegyzések - field_is_closed: Feladat lezárva - field_is_default: Alapértelmezett érték - field_tracker: Típus - field_subject: Tárgy - field_due_date: Befejezés dátuma - field_assigned_to: Felelős - field_priority: Prioritás - field_fixed_version: Cél verzió - field_user: Felhasználó - field_role: Szerepkör - field_homepage: Weboldal - field_is_public: Nyilvános - field_parent: Szülő projekt - field_is_in_roadmap: Feladatok látszanak az életútban - field_login: Azonosító - field_mail_notification: E-mail értesítések - field_admin: Adminisztrátor - field_last_login_on: Utolsó bejelentkezés - field_language: Nyelv - field_effective_date: Dátum - field_password: Jelszó - field_new_password: Új jelszó - field_password_confirmation: Megerősítés - field_version: Verzió - field_type: Típus - field_host: Kiszolgáló - field_port: Port - field_account: Felhasználói fiók - field_base_dn: Base DN - field_attr_login: Bejelentkezési tulajdonság - field_attr_firstname: Keresztnév - field_attr_lastname: Vezetéknév - field_attr_mail: E-mail - field_onthefly: On-the-fly felhasználó létrehozás - field_start_date: Kezdés dátuma - field_done_ratio: Készültség (%) - field_auth_source: Azonosítási mód - field_hide_mail: Rejtse el az e-mail címem - field_comments: Megjegyzés - field_url: URL - field_start_page: Kezdőlap - field_subproject: Alprojekt - field_hours: Óra - field_activity: Aktivitás - field_spent_on: Dátum - field_identifier: Azonosító - field_is_filter: Szűrőként használható - field_issue_to: Kapcsolódó feladat - field_delay: Késés - field_assignable: Feladat rendelhető ehhez a szerepkörhöz - field_redirect_existing_links: Létező linkek átirányítása - field_estimated_hours: Becsült időigény - field_column_names: Oszlopok - field_time_zone: Időzóna - field_searchable: Kereshető - field_default_value: Alapértelmezett érték - field_comments_sorting: Feljegyzések megjelenítése - - setting_app_title: Alkalmazás címe - setting_welcome_text: Üdvözlő üzenet - setting_default_language: Alapértelmezett nyelv - setting_login_required: Azonosítás szükséges - setting_self_registration: Regisztráció - setting_attachment_max_size: Melléklet max. mérete - setting_issues_export_limit: Feladatok exportálásának korlátja - setting_mail_from: Kibocsátó e-mail címe - setting_bcc_recipients: Titkos másolat címzet (bcc) - setting_host_name: Kiszolgáló neve - setting_text_formatting: Szöveg formázás - setting_wiki_compression: Wiki történet tömörítés - setting_feeds_limit: Atom tartalom korlát - setting_default_projects_public: Az új projektek alapértelmezés szerint nyilvánosak - setting_autofetch_changesets: Commitok automatikus lehúzása - setting_sys_api_enabled: WS engedélyezése a tárolók kezeléséhez - setting_commit_ref_keywords: Hivatkozó kulcsszavak - setting_commit_fix_keywords: Javítások kulcsszavai - setting_autologin: Automatikus bejelentkezés - setting_date_format: Dátum formátum - setting_time_format: Idő formátum - setting_cross_project_issue_relations: Kereszt-projekt feladat hivatkozások engedélyezése - setting_issue_list_default_columns: Az alapértelmezésként megjelenített oszlopok a feladat listában - setting_emails_footer: E-mail lábléc - setting_protocol: Protokol - setting_per_page_options: Objektum / oldal opciók - setting_user_format: Felhasználók megjelenítésének formája - setting_activity_days_default: Napok megjelenítése a project aktivitásnál - setting_display_subprojects_issues: Alapértelmezettként mutassa az alprojektek feladatait is a projekteken - setting_start_of_week: A hét első napja - - project_module_issue_tracking: Feladat követés - project_module_time_tracking: Idő rögzítés - project_module_news: Hírek - project_module_documents: Dokumentumok - project_module_files: Fájlok - project_module_wiki: Wiki - project_module_repository: Forráskód - project_module_boards: Fórumok - - label_user: Felhasználó - label_user_plural: Felhasználók - label_user_new: Új felhasználó - label_project: Projekt - label_project_new: Új projekt - label_project_plural: Projektek - label_x_projects: - zero: nincsenek projektek - one: 1 projekt - other: "%{count} projekt" - label_project_all: Az összes projekt - label_project_latest: Legutóbbi projektek - label_issue: Feladat - label_issue_new: Új feladat - label_issue_plural: Feladatok - label_issue_view_all: Minden feladat - label_issues_by: "%{value} feladatai" - label_issue_added: Feladat hozzáadva - label_issue_updated: Feladat frissítve - label_document: Dokumentum - label_document_new: Új dokumentum - label_document_plural: Dokumentumok - label_document_added: Dokumentum hozzáadva - label_role: Szerepkör - label_role_plural: Szerepkörök - label_role_new: Új szerepkör - label_role_and_permissions: Szerepkörök, és jogosultságok - label_member: Résztvevő - label_member_new: Új résztvevő - label_member_plural: Résztvevők - label_tracker: Feladat típus - label_tracker_plural: Feladat típusok - label_tracker_new: Új feladat típus - label_workflow: Workflow - label_issue_status: Feladat státusz - label_issue_status_plural: Feladat státuszok - label_issue_status_new: Új státusz - label_issue_category: Feladat kategória - label_issue_category_plural: Feladat kategóriák - label_issue_category_new: Új kategória - label_custom_field: Egyéni mező - label_custom_field_plural: Egyéni mezők - label_custom_field_new: Új egyéni mező - label_enumerations: Felsorolások - label_enumeration_new: Új érték - label_information: Információ - label_information_plural: Információk - label_register: Regisztráljon - label_password_lost: Elfelejtett jelszó - label_home: Kezdőlap - label_my_page: Saját kezdőlapom - label_my_account: Fiókom adatai - label_my_projects: Saját projektem - label_administration: Adminisztráció - label_login: Bejelentkezés - label_logout: Kijelentkezés - label_help: Súgó - label_reported_issues: Bejelentett feladatok - label_assigned_to_me_issues: A nekem kiosztott feladatok - label_last_login: Utolsó bejelentkezés - label_registered_on: Regisztrált - label_activity: Történések - label_overall_activity: Teljes aktivitás - label_new: Új - label_logged_as: Bejelentkezve, mint - label_environment: Környezet - label_authentication: Azonosítás - label_auth_source: Azonosítás módja - label_auth_source_new: Új azonosítási mód - label_auth_source_plural: Azonosítási módok - label_subproject_plural: Alprojektek - label_and_its_subprojects: "%{value} és alprojektjei" - label_min_max_length: Min - Max hossz - label_list: Lista - label_date: Dátum - label_integer: Egész - label_float: Lebegőpontos - label_boolean: Logikai - label_string: Szöveg - label_text: Hosszú szöveg - label_attribute: Tulajdonság - label_attribute_plural: Tulajdonságok - label_no_data: Nincs megjeleníthető adat - label_change_status: Státusz módosítása - label_history: Történet - label_attachment: Fájl - label_attachment_new: Új fájl - label_attachment_delete: Fájl törlése - label_attachment_plural: Fájlok - label_file_added: Fájl hozzáadva - label_report: Jelentés - label_report_plural: Jelentések - label_news: Hírek - label_news_new: Hír hozzáadása - label_news_plural: Hírek - label_news_latest: Legutóbbi hírek - label_news_view_all: Minden hír megtekintése - label_news_added: Hír hozzáadva - label_settings: Beállítások - label_overview: Áttekintés - label_version: Verzió - label_version_new: Új verzió - label_version_plural: Verziók - label_confirmation: Jóváhagyás - label_export_to: Exportálás - label_read: Olvas... - label_public_projects: Nyilvános projektek - label_open_issues: nyitott - label_open_issues_plural: nyitott - label_closed_issues: lezárt - label_closed_issues_plural: lezárt - label_x_open_issues_abbr: - zero: 0 nyitott - one: 1 nyitott - other: "%{count} nyitott" - label_x_closed_issues_abbr: - zero: 0 lezárt - one: 1 lezárt - other: "%{count} lezárt" - label_total: Összesen - label_permissions: Jogosultságok - label_current_status: Jelenlegi státusz - label_new_statuses_allowed: Státusz változtatások engedélyei - label_all: mind - label_none: nincs - label_nobody: senki - label_next: Következő - label_previous: Előző - label_used_by: Használja - label_details: Részletek - label_add_note: Jegyzet hozzáadása - label_calendar: Naptár - label_months_from: hónap, kezdve - label_gantt: Gantt - label_internal: Belső - label_last_changes: "utolsó %{count} változás" - label_change_view_all: Minden változás megtekintése - label_comment: Megjegyzés - label_comment_plural: Megjegyzés - label_x_comments: - zero: nincs megjegyzés - one: 1 megjegyzés - other: "%{count} megjegyzés" - label_comment_add: Megjegyzés hozzáadása - label_comment_added: Megjegyzés hozzáadva - label_comment_delete: Megjegyzések törlése - label_query: Egyéni lekérdezés - label_query_plural: Egyéni lekérdezések - label_query_new: Új lekérdezés - label_filter_add: Szűrő hozzáadása - label_filter_plural: Szűrők - label_equals: egyenlő - label_not_equals: nem egyenlő - label_in_less_than: kevesebb, mint - label_in_more_than: több, mint - label_in: in - label_today: ma - label_yesterday: tegnap - label_this_week: aktuális hét - label_last_week: múlt hét - label_last_n_days: "az elmúlt %{count} nap" - label_this_month: aktuális hónap - label_last_month: múlt hónap - label_this_year: aktuális év - label_date_range: Dátum intervallum - label_less_than_ago: kevesebb, mint nappal ezelőtt - label_more_than_ago: több, mint nappal ezelőtt - label_ago: nappal ezelőtt - label_contains: tartalmazza - label_not_contains: nem tartalmazza - label_day_plural: nap - label_repository: Forráskód - label_repository_plural: Forráskódok - label_browse: Tallóz - label_revision: Revízió - label_revision_plural: Revíziók - label_associated_revisions: Kapcsolt revíziók - label_added: hozzáadva - label_modified: módosítva - label_deleted: törölve - label_latest_revision: Legutolsó revízió - label_latest_revision_plural: Legutolsó revíziók - label_view_revisions: Revíziók megtekintése - label_max_size: Maximális méret - label_sort_highest: Az elejére - label_sort_higher: Eggyel feljebb - label_sort_lower: Eggyel lejjebb - label_sort_lowest: Az aljára - label_roadmap: Életút - label_roadmap_due_in: "Elkészültéig várhatóan még %{value}" - label_roadmap_overdue: "%{value} késésben" - label_roadmap_no_issues: Nincsenek feladatok ehhez a verzióhoz - label_search: Keresés - label_result_plural: Találatok - label_all_words: Minden szó - label_wiki: Wiki - label_wiki_edit: Wiki szerkesztés - label_wiki_edit_plural: Wiki szerkesztések - label_wiki_page: Wiki oldal - label_wiki_page_plural: Wiki oldalak - label_index_by_title: Cím szerint indexelve - label_index_by_date: Dátum szerint indexelve - label_current_version: Jelenlegi verzió - label_preview: Előnézet - label_feed_plural: Visszajelzések - label_changes_details: Változások részletei - label_issue_tracking: Feladat követés - label_spent_time: Ráfordított idő - label_f_hour: "%{value} óra" - label_f_hour_plural: "%{value} óra" - label_time_tracking: Idő rögzítés - label_change_plural: Változások - label_statistics: Statisztikák - label_commits_per_month: Commitok havonta - label_commits_per_author: Commitok szerzőnként - label_view_diff: Különbségek megtekintése - label_diff_inline: soronként - label_diff_side_by_side: egymás mellett - label_options: Opciók - label_copy_workflow_from: Workflow másolása innen - label_permissions_report: Jogosultsági riport - label_watched_issues: Megfigyelt feladatok - label_related_issues: Kapcsolódó feladatok - label_applied_status: Alkalmazandó státusz - label_loading: Betöltés... - label_relation_new: Új kapcsolat - label_relation_delete: Kapcsolat törlése - label_relates_to: kapcsolódik - label_duplicates: duplikálja - label_blocks: zárolja - label_blocked_by: zárolta - label_precedes: megelőzi - label_follows: követi - label_stay_logged_in: Emlékezzen rám - label_disabled: kikapcsolva - label_show_completed_versions: A kész verziók mutatása - label_me: én - label_board: Fórum - label_board_new: Új fórum - label_board_plural: Fórumok - label_topic_plural: Témák - label_message_plural: Üzenetek - label_message_last: Utolsó üzenet - label_message_new: Új üzenet - label_message_posted: Üzenet hozzáadva - label_reply_plural: Válaszok - label_send_information: Fiók infomációk küldése a felhasználónak - label_year: Év - label_month: Hónap - label_week: Hét - label_date_from: 'Kezdet:' - label_date_to: 'Vége:' - label_language_based: A felhasználó nyelve alapján - label_sort_by: "%{value} szerint rendezve" - label_send_test_email: Teszt e-mail küldése - label_feeds_access_key_created_on: "Atom hozzáférési kulcs létrehozva %{value}" - label_module_plural: Modulok - label_added_time_by: "%{author} adta hozzá %{age}" - label_updated_time: "Utolsó módosítás %{value}" - label_jump_to_a_project: Ugrás projekthez... - label_file_plural: Fájlok - label_changeset_plural: Changesets - label_default_columns: Alapértelmezett oszlopok - label_no_change_option: (Nincs változás) - label_bulk_edit_selected_issues: A kiválasztott feladatok kötegelt szerkesztése - label_theme: Téma - label_default: Alapértelmezett - label_search_titles_only: Keresés csak a címekben - label_user_mail_option_all: "Minden eseményről minden saját projektemben" - label_user_mail_option_selected: "Minden eseményről a kiválasztott projektekben..." - label_user_mail_no_self_notified: "Nem kérek értesítést az általam végzett módosításokról" - label_registration_activation_by_email: Fiók aktiválása e-mailben - label_registration_manual_activation: Manuális fiók aktiválás - label_registration_automatic_activation: Automatikus fiók aktiválás - label_display_per_page: "Oldalanként: %{value}" - label_age: Kor - label_change_properties: Tulajdonságok változtatása - label_general: Általános - label_scm: SCM - label_plugins: Pluginek - label_ldap_authentication: LDAP azonosítás - label_downloads_abbr: D/L - label_optional_description: Opcionális leírás - label_add_another_file: Újabb fájl hozzáadása - label_preferences: Tulajdonságok - label_chronological_order: Időrendben - label_reverse_chronological_order: Fordított időrendben - - button_login: Bejelentkezés - button_submit: Elfogad - button_save: Mentés - button_check_all: Mindent kijelöl - button_uncheck_all: Kijelölés törlése - button_delete: Töröl - button_create: Létrehoz - button_test: Teszt - button_edit: Szerkeszt - button_add: Hozzáad - button_change: Változtat - button_apply: Alkalmaz - button_clear: Töröl - button_lock: Zárol - button_unlock: Felold - button_download: Letöltés - button_list: Lista - button_view: Megnéz - button_move: Mozgat - button_back: Vissza - button_cancel: Mégse - button_activate: Aktivál - button_sort: Rendezés - button_log_time: Idő rögzítés - button_rollback: Visszaáll erre a verzióra - button_watch: Megfigyel - button_unwatch: Megfigyelés törlése - button_reply: Válasz - button_archive: Archivál - button_unarchive: Dearchivál - button_reset: Reset - button_rename: Átnevez - button_change_password: Jelszó megváltoztatása - button_copy: Másol - button_annotate: Jegyzetel - button_update: Módosít - button_configure: Konfigurál - - status_active: aktív - status_registered: regisztrált - status_locked: zárolt - - text_select_mail_notifications: Válasszon eseményeket, amelyekről e-mail értesítést kell küldeni. - text_regexp_info: pl. ^[A-Z0-9]+$ - text_min_max_length_info: 0 = nincs korlátozás - text_project_destroy_confirmation: Biztosan törölni szeretné a projektet és vele együtt minden kapcsolódó adatot ? - text_subprojects_destroy_warning: "Az alprojekt(ek): %{value} szintén törlésre kerülnek." - text_workflow_edit: Válasszon egy szerepkört, és egy feladat típust a workflow szerkesztéséhez - text_are_you_sure: Biztos benne ? - text_tip_issue_begin_day: a feladat ezen a napon kezdődik - text_tip_issue_end_day: a feladat ezen a napon ér véget - text_tip_issue_begin_end_day: a feladat ezen a napon kezdődik és ér véget - text_caracters_maximum: "maximum %{count} karakter." - text_caracters_minimum: "Legkevesebb %{count} karakter hosszúnek kell lennie." - text_length_between: "Legalább %{min} és legfeljebb %{max} hosszú karakter." - text_tracker_no_workflow: Nincs workflow definiálva ehhez a feladat típushoz - text_unallowed_characters: Tiltott karakterek - text_comma_separated: Több érték megengedett (vesszővel elválasztva) - text_issues_ref_in_commit_messages: Hivatkozás feladatokra, feladatok javítása a commit üzenetekben - text_issue_added: "%{author} új feladatot hozott létre %{id} sorszámmal." - text_issue_updated: "%{author} módosította a %{id} sorszámú feladatot." - text_wiki_destroy_confirmation: Biztosan törölni szeretné ezt a wiki-t minden tartalmával együtt ? - text_issue_category_destroy_question: "Néhány feladat (%{count}) hozzá van rendelve ehhez a kategóriához. Mit szeretne tenni?" - text_issue_category_destroy_assignments: Kategória hozzárendelés megszüntetése - text_issue_category_reassign_to: Feladatok újra hozzárendelése másik kategóriához - text_user_mail_option: "A nem kiválasztott projektekről csak akkor kap értesítést, ha figyelést kér rá, vagy részt vesz benne (pl. Ön a létrehozó, vagy a hozzárendelő)" - text_no_configuration_data: "Szerepkörök, feladat típusok, feladat státuszok, és workflow adatok még nincsenek konfigurálva.\nErősen ajánlott, az alapértelmezett konfiguráció betöltése, és utána módosíthatja azt." - text_load_default_configuration: Alapértelmezett konfiguráció betöltése - text_status_changed_by_changeset: "Applied in changeset %{value}." - text_issues_destroy_confirmation: 'Biztos benne, hogy törölni szeretné a kijelölt feladato(ka)t ?' - text_select_project_modules: 'Válassza ki az engedélyezett modulokat ehhez a projekthez:' - text_default_administrator_account_changed: Alapértelmezett adminisztrátor fiók megváltoztatva - text_file_repository_writable: Fájl tároló írható - text_minimagick_available: MiniMagick elérhető (nem kötelező) - text_destroy_time_entries_question: "%{hours} órányi munka van rögzítve a feladatokon, amiket törölni szeretne. Mit szeretne tenni?" - text_destroy_time_entries: A rögzített órák törlése - text_assign_time_entries_to_project: A rögzített órák hozzárendelése a projekthez - text_reassign_time_entries: 'A rögzített órák újra hozzárendelése másik feladathoz:' - - default_role_manager: Vezető - default_role_developer: Fejlesztő - default_role_reporter: Bejelentő - default_tracker_bug: Hiba - default_tracker_feature: Fejlesztés - default_tracker_support: Támogatás - default_issue_status_new: Új - default_issue_status_in_progress: Folyamatban - default_issue_status_resolved: Megoldva - default_issue_status_feedback: Visszajelzés - default_issue_status_closed: Lezárt - default_issue_status_rejected: Elutasított - default_doc_category_user: Felhasználói dokumentáció - default_doc_category_tech: Technikai dokumentáció - default_priority_low: Alacsony - default_priority_normal: Normál - default_priority_high: Magas - default_priority_urgent: Sürgős - default_priority_immediate: Azonnal - default_activity_design: Tervezés - default_activity_development: Fejlesztés - - enumeration_issue_priorities: Feladat prioritások - enumeration_doc_categories: Dokumentum kategóriák - enumeration_activities: Tevékenységek (idő rögzítés) - mail_body_reminder: "%{count} neked kiosztott feladat határidős az elkövetkező %{days} napban:" - mail_subject_reminder: "%{count} feladat határidős az elkövetkező %{days} napban" - text_user_wrote: "%{value} írta:" - text_user_wrote_in: "%{value} írta (%{link}):" - label_duplicated_by: duplikálta - setting_enabled_scm: Forráskódkezelő (SCM) engedélyezése - text_enumeration_category_reassign_to: 'Újra hozzárendelés ehhez:' - text_enumeration_destroy_question: "%{count} objektum van hozzárendelve ehhez az értékhez." - label_incoming_emails: Beérkezett levelek - label_generate_key: Kulcs generálása - setting_mail_handler_api_enabled: Web Service engedélyezése a beérkezett levelekhez - setting_mail_handler_api_key: API kulcs - text_email_delivery_not_configured: "Az E-mail küldés nincs konfigurálva, és az értesítések ki vannak kapcsolva.\nÁllítsd be az SMTP szervert a config/configuration.yml fájlban és indítsd újra az alkalmazást, hogy érvénybe lépjen." - field_parent_title: Szülő oldal - label_issue_watchers: Megfigyelők - button_quote: Hozzászólás / Idézet - setting_sequential_project_identifiers: Szekvenciális projekt azonosítók generálása - notice_unable_delete_version: A verziót nem lehet törölni - label_renamed: átnevezve - label_copied: lemásolva - setting_plain_text_mail: csak szöveg (nem HTML) - permission_view_files: Fájlok megtekintése - permission_edit_issues: Feladatok szerkesztése - permission_edit_own_time_entries: Saját időnapló szerkesztése - permission_manage_public_queries: Nyilvános kérések kezelése - permission_add_issues: Feladat felvétele - permission_log_time: Idő rögzítése - permission_view_changesets: Változáskötegek megtekintése - permission_view_time_entries: Időrögzítések megtekintése - permission_manage_versions: Verziók kezelése - permission_manage_wiki: Wiki kezelése - permission_manage_categories: Feladat kategóriák kezelése - permission_protect_wiki_pages: Wiki oldalak védelme - permission_comment_news: Hírek kommentelése - permission_delete_messages: Üzenetek törlése - permission_select_project_modules: Projekt modulok kezelése - permission_edit_wiki_pages: Wiki oldalak szerkesztése - permission_add_issue_watchers: Megfigyelők felvétele - permission_view_gantt: Gannt diagramm megtekintése - permission_manage_issue_relations: Feladat kapcsolatok kezelése - permission_delete_wiki_pages: Wiki oldalak törlése - permission_manage_boards: Fórumok kezelése - permission_delete_wiki_pages_attachments: Csatolmányok törlése - permission_view_wiki_edits: Wiki történet megtekintése - permission_add_messages: Üzenet beküldése - permission_view_messages: Üzenetek megtekintése - permission_manage_files: Fájlok kezelése - permission_edit_issue_notes: Jegyzetek szerkesztése - permission_manage_news: Hírek kezelése - permission_view_calendar: Naptár megtekintése - permission_manage_members: Tagok kezelése - permission_edit_messages: Üzenetek szerkesztése - permission_delete_issues: Feladatok törlése - permission_view_issue_watchers: Megfigyelők listázása - permission_manage_repository: Tárolók kezelése - permission_commit_access: Commit hozzáférés - permission_browse_repository: Tároló böngészése - permission_view_documents: Dokumetumok megtekintése - permission_edit_project: Projekt szerkesztése - permission_add_issue_notes: Jegyzet rögzítése - permission_save_queries: Kérések mentése - permission_view_wiki_pages: Wiki megtekintése - permission_rename_wiki_pages: Wiki oldalak átnevezése - permission_edit_time_entries: Időnaplók szerkesztése - permission_edit_own_issue_notes: Saját jegyzetek szerkesztése - setting_gravatar_enabled: Felhasználói fényképek engedélyezése - label_example: Példa - text_repository_usernames_mapping: "Állítsd be a felhasználó összerendeléseket a Redmine, és a tároló logban található felhasználók között.\nAz azonos felhasználó nevek összerendelése automatikusan megtörténik." - permission_edit_own_messages: Saját üzenetek szerkesztése - permission_delete_own_messages: Saját üzenetek törlése - label_user_activity: "%{value} tevékenységei" - label_updated_time_by: "Módosította %{author} %{age}" - text_diff_truncated: '... A diff fájl vége nem jelenik meg, mert hosszab, mint a megjeleníthető sorok száma.' - setting_diff_max_lines_displayed: A megjelenítendő sorok száma (maximum) a diff fájloknál - text_plugin_assets_writable: Plugin eszközök könyvtár írható - warning_attachments_not_saved: "%{count} fájl mentése nem sikerült." - button_create_and_continue: Létrehozás és folytatás - text_custom_field_possible_values_info: 'Értékenként egy sor' - label_display: Megmutat - field_editable: Szerkeszthető - setting_repository_log_display_limit: Maximum hány revíziót mutasson meg a log megjelenítésekor - setting_file_max_size_displayed: Maximum mekkora szövegfájlokat jelenítsen meg soronkénti összehasonlításnál - field_watcher: Megfigyelő - setting_openid: OpenID regisztráció és bejelentkezés engedélyezése - field_identity_url: OpenID URL - label_login_with_open_id_option: bejelentkezés OpenID használatával - field_content: Tartalom - label_descending: Csökkenő - label_sort: Rendezés - label_ascending: Növekvő - label_date_from_to: "%{start} -tól %{end} -ig" - label_greater_or_equal: ">=" - label_less_or_equal: "<=" - text_wiki_page_destroy_question: Ennek az oldalnak %{descendants} gyermek-, és leszármazott oldala van. Mit szeretne tenni? - text_wiki_page_reassign_children: Aloldalak hozzárendelése ehhez a szülő oldalhoz - text_wiki_page_nullify_children: Aloldalak átalakítása főoldallá - text_wiki_page_destroy_children: Minden aloldal és leszármazottjának törlése - setting_password_min_length: Minimum jelszó hosszúság - field_group_by: Szerint csoportosítva - mail_subject_wiki_content_updated: "'%{id}' wiki oldal frissítve" - label_wiki_content_added: Wiki oldal hozzáadva - mail_subject_wiki_content_added: "Új wiki oldal: '%{id}'" - mail_body_wiki_content_added: "%{author} létrehozta a '%{id}' wiki oldalt." - label_wiki_content_updated: Wiki oldal frissítve - mail_body_wiki_content_updated: "%{author} frissítette a '%{id}' wiki oldalt." - permission_add_project: Projekt létrehozása - setting_new_project_user_role_id: Projekt létrehozási jog nem adminisztrátor felhasználóknak - label_view_all_revisions: Összes verzió - label_tag: Tag - label_branch: Branch - error_no_tracker_in_project: Nincs feladat típus hozzárendelve ehhez a projekthez. Kérem ellenőrizze a projekt beállításait. - error_no_default_issue_status: Nincs alapértelmezett feladat státusz beállítva. Kérem ellenőrizze a beállításokat (Itt találja "Adminisztráció -> Feladat státuszok"). - text_journal_changed: "%{label} megváltozott, %{old} helyett %{new} lett" - text_journal_set_to: "%{label} új értéke: %{value}" - text_journal_deleted: "%{label} törölve lett (%{old})" - label_group_plural: Csoportok - label_group: Csoport - label_group_new: Új csoport - label_time_entry_plural: Időráfordítás - text_journal_added: "%{label} %{value} hozzáadva" - field_active: Aktív - enumeration_system_activity: Rendszertevékenység - permission_delete_issue_watchers: Megfigyelők törlése - version_status_closed: lezárt - version_status_locked: zárolt - version_status_open: nyitott - error_can_not_reopen_issue_on_closed_version: Lezárt verzióhoz rendelt feladatot nem lehet újranyitni - label_user_anonymous: Névtelen - button_move_and_follow: Mozgatás és követés - setting_default_projects_modules: Alapértelmezett modulok az új projektekhez - setting_gravatar_default: Alapértelmezett Gravatar kép - field_sharing: Megosztás - label_version_sharing_hierarchy: Projekt hierarchiával - label_version_sharing_system: Minden projekttel - label_version_sharing_descendants: Alprojektekkel - label_version_sharing_tree: Projekt fával - label_version_sharing_none: Nincs megosztva - error_can_not_archive_project: A projektet nem lehet archiválni - button_copy_and_follow: Másolás és követés - label_copy_source: Forrás - setting_issue_done_ratio: Feladat készültségi szint számolása a következő alapján - setting_issue_done_ratio_issue_status: Feladat státusz alapján - error_issue_done_ratios_not_updated: A feladat készültségi szintek nem lettek frissítve. - error_workflow_copy_target: Kérem válasszon cél feladat típus(oka)t és szerepkör(öke)t. - setting_issue_done_ratio_issue_field: A feladat mező alapján - label_copy_same_as_target: A céllal egyező - label_copy_target: Cél - notice_issue_done_ratios_updated: Feladat készültségi szintek frissítve. - error_workflow_copy_source: Kérem válasszon forrás feladat típust vagy szerepkört - label_update_issue_done_ratios: Feladat készültségi szintek frissítése - setting_start_of_week: A hét első napja - permission_view_issues: Feladatok megtekintése - label_display_used_statuses_only: Csak olyan feladat státuszok megjelenítése, amit ez a feladat típus használ - label_revision_id: Revízió %{value} - label_api_access_key: API hozzáférési kulcs - label_api_access_key_created_on: API hozzáférési kulcs létrehozva %{value} ezelőtt - label_feeds_access_key: Atom hozzáférési kulcs - notice_api_access_key_reseted: Az API hozzáférési kulcsa újragenerálva. - setting_rest_api_enabled: REST web service engedélyezése - label_missing_api_access_key: Egy API hozzáférési kulcs hiányzik - label_missing_feeds_access_key: Atom hozzáférési kulcs hiányzik - button_show: Megmutat - text_line_separated: Több érték megadása lehetséges (soronként 1 érték). - setting_mail_handler_body_delimiters: E-mailek levágása a következő sorok valamelyike esetén - permission_add_subprojects: Alprojektek létrehozása - label_subproject_new: Új alprojekt - text_own_membership_delete_confirmation: |- - Arra készül, hogy eltávolítja egyes vagy minden jogosultságát! Ezt követően lehetséges, hogy nem fogja tudni szerkeszteni ezt a projektet! - Biztosan folyatni szeretné? - label_close_versions: Kész verziók lezárása - label_board_sticky: Sticky - setting_cache_formatted_text: Formázott szöveg gyorsítótárazása (Cache) - permission_export_wiki_pages: Wiki oldalak exportálása - permission_manage_project_activities: Projekt tevékenységek kezelése - label_board_locked: Zárolt - error_can_not_delete_custom_field: Nem lehet törölni az egyéni mezőt - permission_manage_subtasks: Alfeladatok kezelése - label_profile: Profil - error_unable_to_connect: Nem lehet csatlakozni (%{value}) - error_can_not_remove_role: Ez a szerepkör használatban van és ezért nem törölhető- - field_parent_issue: Szülő feladat - error_unable_delete_issue_status: Nem lehet törölni a feladat állapotát (%{value}) - label_subtask_plural: Alfeladatok - error_can_not_delete_tracker: Ebbe a kategóriába feladatok tartoznak és ezért nem törölhető. - label_project_copy_notifications: Küldjön e-mail értesítéseket projektmásolás közben. - field_principal: Felelős - notice_failed_to_save_members: "Nem sikerült menteni a tago(ka)t: %{errors}." - text_zoom_out: Kicsinyít - text_zoom_in: Nagyít - notice_unable_delete_time_entry: Az időrögzítés nem törölhető - label_overall_spent_time: Összes ráfordított idő - field_time_entries: Idő rögzítés - project_module_gantt: Gantt - project_module_calendar: Naptár - button_edit_associated_wikipage: "Hozzárendelt Wiki oldal szerkesztése: %{page_title}" - field_text: Szöveg mező - setting_default_notification_option: Alapértelmezett értesítési beállítások - label_user_mail_option_only_my_events: Csak az általam megfigyelt dolgokról vagy amiben részt veszek - label_user_mail_option_none: Semilyen eseményről - field_member_of_group: Hozzárendelt csoport - field_assigned_to_role: Hozzárendelt szerepkör - notice_not_authorized_archived_project: A projekt, amihez hozzá szeretnél férni archiválva lett. - label_principal_search: "Felhasználó vagy csoport keresése:" - label_user_search: "Felhasználó keresése:" - field_visible: Látható - setting_emails_header: Emailek fejléce - setting_commit_logtime_activity_id: A rögzített időhöz tartozó tevékenység - text_time_logged_by_changeset: Alkalmazva a %{value} changeset-ben. - setting_commit_logtime_enabled: Időrögzítés engedélyezése - notice_gantt_chart_truncated: A diagram le lett vágva, mert elérte a maximálisan megjeleníthető elemek számát (%{max}) - setting_gantt_items_limit: A gantt diagrammon megjeleníthető maximális elemek száma - field_warn_on_leaving_unsaved: Figyelmeztessen, nem mentett módosításokat tartalmazó oldal elhagyásakor - text_warn_on_leaving_unsaved: A jelenlegi oldal nem mentett módosításokat tartalmaz, ami elvész, ha elhagyja az oldalt. - label_my_queries: Egyéni lekérdezéseim - text_journal_changed_no_detail: "%{label} módosítva" - label_news_comment_added: Megjegyzés hozzáadva a hírhez - button_expand_all: Mindet kibont - button_collapse_all: Mindet összecsuk - label_additional_workflow_transitions_for_assignee: További átmenetek engedélyezettek, ha a felhasználó a hozzárendelt - label_additional_workflow_transitions_for_author: További átmenetek engedélyezettek, ha a felhasználó a szerző - label_bulk_edit_selected_time_entries: A kiválasztott idő bejegyzések csoportos szerkesztése - text_time_entries_destroy_confirmation: Biztos benne, hogy törölni szeretné a kiválasztott idő bejegyzés(eke)t? - label_role_anonymous: Anonymous - label_role_non_member: Nem tag - label_issue_note_added: Jegyzet hozzáadva - label_issue_status_updated: Állapot módosítva - label_issue_priority_updated: Prioritás módosítva - label_issues_visibility_own: A felhasználó által létrehozott vagy hozzárendelt feladatok - field_issues_visibility: Feladatok láthatósága - label_issues_visibility_all: Minden feladat - permission_set_own_issues_private: Saját feladatok beállítása nyilvánosra vagy privátra - field_is_private: Privát - permission_set_issues_private: Feladatok beállítása nyilvánosra vagy privátra - label_issues_visibility_public: Minden nem privát feladat - text_issues_destroy_descendants_confirmation: Ezzel törölni fog %{count} alfeladatot is. - field_commit_logs_encoding: Commit üzenetek kódlapja - field_scm_path_encoding: Elérési útvonal kódlapja - text_scm_path_encoding_note: "Alapértelmezett: UTF-8" - field_path_to_repository: A repository elérési útja - field_root_directory: Gyökér könyvtár - field_cvs_module: Modul - field_cvsroot: CVSROOT - text_mercurial_repository_note: Helyi repository (e.g. /hgrepo, c:\hgrepo) - text_scm_command: Parancs - text_scm_command_version: Verzió - label_git_report_last_commit: Report last commit for files and directories - notice_issue_successful_create: Issue %{id} created. - label_between: between - setting_issue_group_assignment: Allow issue assignment to groups - label_diff: diff - text_git_repository_note: Repository is bare and local (e.g. /gitrepo, c:\gitrepo) - description_query_sort_criteria_direction: Sort direction - description_project_scope: Search scope - description_filter: Filter - description_user_mail_notification: Mail notification settings - description_message_content: Message content - description_available_columns: Available Columns - description_issue_category_reassign: Choose issue category - description_search: Searchfield - description_notes: Notes - description_choose_project: Projects - description_query_sort_criteria_attribute: Sort attribute - description_wiki_subpages_reassign: Choose new parent page - description_selected_columns: Selected Columns - label_parent_revision: Parent - label_child_revision: Child - error_scm_annotate_big_text_file: The entry cannot be annotated, as it exceeds the maximum text file size. - setting_default_issue_start_date_to_creation_date: Use current date as start date for new issues - button_edit_section: Edit this section - setting_repositories_encodings: Attachments and repositories encodings - description_all_columns: All Columns - button_export: Export - label_export_options: "%{export_format} export options" - error_attachment_too_big: This file cannot be uploaded because it exceeds the maximum allowed file size (%{max_size}) - notice_failed_to_save_time_entries: "Failed to save %{count} time entrie(s) on %{total} selected: %{ids}." - label_x_issues: - zero: 0 feladat - one: 1 feladat - other: "%{count} feladatok" - label_repository_new: New repository - field_repository_is_default: Main repository - label_copy_attachments: Copy attachments - label_item_position: "%{position}/%{count}" - label_completed_versions: Completed versions - text_project_identifier_info: Only lower case letters (a-z), numbers, dashes and underscores are allowed.
    Once saved, the identifier cannot be changed. - field_multiple: Multiple values - setting_commit_cross_project_ref: Allow issues of all the other projects to be referenced and fixed - text_issue_conflict_resolution_add_notes: Add my notes and discard my other changes - text_issue_conflict_resolution_overwrite: Apply my changes anyway (previous notes will be kept but some changes may be overwritten) - notice_issue_update_conflict: The issue has been updated by an other user while you were editing it. - text_issue_conflict_resolution_cancel: Discard all my changes and redisplay %{link} - permission_manage_related_issues: Manage related issues - field_auth_source_ldap_filter: LDAP filter - label_search_for_watchers: Search for watchers to add - notice_account_deleted: Your account has been permanently deleted. - setting_unsubscribe: Allow users to delete their own account - button_delete_my_account: Delete my account - text_account_destroy_confirmation: |- - Are you sure you want to proceed? - Your account will be permanently deleted, with no way to reactivate it. - error_session_expired: Your session has expired. Please login again. - text_session_expiration_settings: "Warning: changing these settings may expire the current sessions including yours." - setting_session_lifetime: Session maximum lifetime - setting_session_timeout: Session inactivity timeout - label_session_expiration: Session expiration - permission_close_project: Close / reopen the project - button_close: Close - button_reopen: Reopen - project_status_active: active - project_status_closed: closed - project_status_archived: archived - text_project_closed: This project is closed and read-only. - notice_user_successful_create: User %{id} created. - field_core_fields: Standard fields - field_timeout: Timeout (in seconds) - setting_thumbnails_enabled: Display attachment thumbnails - setting_thumbnails_size: Thumbnails size (in pixels) - label_status_transitions: Status transitions - label_fields_permissions: Fields permissions - label_readonly: Read-only - label_required: Required - text_repository_identifier_info: Only lower case letters (a-z), numbers, dashes and underscores are allowed.
    Once saved, the identifier cannot be changed. - field_board_parent: Parent forum - label_attribute_of_project: Project's %{name} - label_attribute_of_author: Author's %{name} - label_attribute_of_assigned_to: Assignee's %{name} - label_attribute_of_fixed_version: Target version's %{name} - label_copy_subtasks: Copy subtasks - label_copied_to: copied to - label_copied_from: copied from - label_any_issues_in_project: any issues in project - label_any_issues_not_in_project: any issues not in project - field_private_notes: Private notes - permission_view_private_notes: View private notes - permission_set_notes_private: Set notes as private - label_no_issues_in_project: no issues in project - label_any: mind - label_last_n_weeks: last %{count} weeks - setting_cross_project_subtasks: Allow cross-project subtasks - label_cross_project_descendants: Alprojektekkel - label_cross_project_tree: Projekt fával - label_cross_project_hierarchy: Projekt hierarchiával - label_cross_project_system: Minden projekttel - button_hide: Hide - setting_non_working_week_days: Non-working days - label_in_the_next_days: in the next - label_in_the_past_days: in the past - label_attribute_of_user: User's %{name} - text_turning_multiple_off: If you disable multiple values, multiple values will be - removed in order to preserve only one value per item. - label_attribute_of_issue: Issue's %{name} - permission_add_documents: Add documents - permission_edit_documents: Edit documents - permission_delete_documents: Delete documents - label_gantt_progress_line: Progress line - setting_jsonp_enabled: Enable JSONP support - field_inherit_members: Inherit members - field_closed_on: Closed - field_generate_password: Generate password - setting_default_projects_tracker_ids: Default trackers for new projects - label_total_time: Összesen - text_scm_config: You can configure your SCM commands in config/configuration.yml. Please restart the application after editing it. - text_scm_command_not_available: SCM command is not available. Please check settings on the administration panel. - notice_account_not_activated_yet: You haven't activated your account yet. If you want - to receive a new activation email, please click this link. - notice_account_locked: Your account is locked. - label_hidden: Hidden - label_visibility_private: to me only - label_visibility_roles: to these roles only - label_visibility_public: to any users - field_must_change_passwd: Must change password at next logon - notice_new_password_must_be_different: The new password must be different from the - current password - setting_mail_handler_excluded_filenames: Exclude attachments by name - text_convert_available: ImageMagick convert available (optional) - label_link: Link - label_only: only - label_drop_down_list: drop-down list - label_checkboxes: checkboxes - label_link_values_to: Link values to URL - setting_force_default_language_for_anonymous: Force default language for anonymous - users - setting_force_default_language_for_loggedin: Force default language for logged-in - users - label_custom_field_select_type: Select the type of object to which the custom field - is to be attached - label_issue_assigned_to_updated: Assignee updated - label_check_for_updates: Check for updates - label_latest_compatible_version: Latest compatible version - label_unknown_plugin: Unknown plugin - label_radio_buttons: radio buttons - label_group_anonymous: Anonymous users - label_group_non_member: Non member users - label_add_projects: Add projects - field_default_status: Default status - text_subversion_repository_note: 'Examples: file:///, http://, https://, svn://, svn+[tunnelscheme]://' - field_users_visibility: Users visibility - label_users_visibility_all: All active users - label_users_visibility_members_of_visible_projects: Members of visible projects - label_edit_attachments: Edit attached files - setting_link_copied_issue: Link issues on copy - label_link_copied_issue: Link copied issue - label_ask: Ask - label_search_attachments_yes: Search attachment filenames and descriptions - label_search_attachments_no: Do not search attachments - label_search_attachments_only: Search attachments only - label_search_open_issues_only: Open issues only - field_address: E-mail - setting_max_additional_emails: Maximum number of additional email addresses - label_email_address_plural: Emails - label_email_address_add: Add email address - label_enable_notifications: Enable notifications - label_disable_notifications: Disable notifications - setting_search_results_per_page: Search results per page - label_blank_value: blank - permission_copy_issues: Copy issues - error_password_expired: Your password has expired or the administrator requires you - to change it. - field_time_entries_visibility: Time logs visibility - setting_password_max_age: Require password change after - label_parent_task_attributes: Parent tasks attributes - label_parent_task_attributes_derived: Calculated from subtasks - label_parent_task_attributes_independent: Independent of subtasks - label_time_entries_visibility_all: All time entries - label_time_entries_visibility_own: Time entries created by the user - label_member_management: Member management - label_member_management_all_roles: All roles - label_member_management_selected_roles_only: Only these roles - label_password_required: Confirm your password to continue - label_total_spent_time: Összes ráfordított idő - notice_import_finished: "%{count} items have been imported" - notice_import_finished_with_errors: "%{count} out of %{total} items could not be imported" - error_invalid_file_encoding: The file is not a valid %{encoding} encoded file - error_invalid_csv_file_or_settings: The file is not a CSV file or does not match the - settings below - error_can_not_read_import_file: An error occurred while reading the file to import - permission_import_issues: Import issues - label_import_issues: Import issues - label_select_file_to_import: Select the file to import - label_fields_separator: Field separator - label_fields_wrapper: Field wrapper - label_encoding: Encoding - label_comma_char: Comma - label_semi_colon_char: Semicolon - label_quote_char: Quote - label_double_quote_char: Double quote - label_fields_mapping: Fields mapping - label_file_content_preview: File content preview - label_create_missing_values: Create missing values - button_import: Import - field_total_estimated_hours: Total estimated time - label_api: API - label_total_plural: Totals - label_assigned_issues: Assigned issues - label_field_format_enumeration: Key/value list - label_f_hour_short: '%{value} h' - field_default_version: Default version - error_attachment_extension_not_allowed: Attachment extension %{extension} is not allowed - setting_attachment_extensions_allowed: Allowed extensions - setting_attachment_extensions_denied: Disallowed extensions - label_any_open_issues: any open issues - label_no_open_issues: no open issues - label_default_values_for_new_users: Default values for new users - error_ldap_bind_credentials: Invalid LDAP Account/Password - setting_sys_api_key: API kulcs - setting_lost_password: Elfelejtett jelszó - mail_subject_security_notification: Security notification - mail_body_security_notification_change: ! '%{field} was changed.' - mail_body_security_notification_change_to: ! '%{field} was changed to %{value}.' - mail_body_security_notification_add: ! '%{field} %{value} was added.' - mail_body_security_notification_remove: ! '%{field} %{value} was removed.' - mail_body_security_notification_notify_enabled: Email address %{value} now receives - notifications. - mail_body_security_notification_notify_disabled: Email address %{value} no longer - receives notifications. - mail_body_settings_updated: ! 'The following settings were changed:' - field_remote_ip: IP address - label_wiki_page_new: New wiki page - label_relations: Relations - button_filter: Filter - mail_body_password_updated: Your password has been changed. - label_no_preview: No preview available - error_no_tracker_allowed_for_new_issue_in_project: The project doesn't have any trackers - for which you can create an issue - label_tracker_all: All trackers - label_new_project_issue_tab_enabled: Display the "New issue" tab - setting_new_item_menu_tab: Project menu tab for creating new objects - label_new_object_tab_enabled: Display the "+" drop-down - error_no_projects_with_tracker_allowed_for_new_issue: There are no projects with trackers - for which you can create an issue - field_textarea_font: Font used for text areas - label_font_default: Default font - label_font_monospace: Monospaced font - label_font_proportional: Proportional font - setting_timespan_format: Time span format - label_table_of_contents: Table of contents - setting_commit_logs_formatting: Apply text formatting to commit messages - setting_mail_handler_enable_regex: Enable regular expressions - error_move_of_child_not_possible: 'Subtask %{child} could not be moved to the new - project: %{errors}' - error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted: Spent time cannot - be reassigned to an issue that is about to be deleted - setting_timelog_required_fields: Required fields for time logs - label_attribute_of_object: '%{object_name}''s %{name}' - label_user_mail_option_only_assigned: Only for things I watch or I am assigned to - label_user_mail_option_only_owner: Only for things I watch or I am the owner of - warning_fields_cleared_on_bulk_edit: Changes will result in the automatic deletion - of values from one or more fields on the selected objects - field_updated_by: Updated by - field_last_updated_by: Last updated by - field_full_width_layout: Full width layout - label_last_notes: Last notes - field_digest: Checksum - field_default_assigned_to: Default assignee - setting_show_custom_fields_on_registration: Show custom fields on registration - permission_view_news: View news - label_no_preview_alternative_html: No preview available. %{link} the file instead. - label_no_preview_download: Download - setting_close_duplicate_issues: Close duplicate issues automatically - error_exceeds_maximum_hours_per_day: Cannot log more than %{max_hours} hours on the - same day (%{logged_hours} hours have already been logged) - setting_time_entry_list_defaults: Timelog list defaults - setting_timelog_accept_0_hours: Accept time logs with 0 hours - setting_timelog_max_hours_per_day: Maximum hours that can be logged per day and user - label_x_revisions: "%{count} revisions" - error_can_not_delete_auth_source: This authentication mode is in use and cannot be - deleted. - button_actions: Actions - mail_body_lost_password_validity: Please be aware that you may change the password - only once using this link. - text_login_required_html: When not requiring authentication, public projects and their - contents are openly available on the network. You can edit - the applicable permissions. - label_login_required_yes: 'Yes' - label_login_required_no: No, allow anonymous access to public projects - text_project_is_public_non_member: Public projects and their contents are available - to all logged-in users. - text_project_is_public_anonymous: Public projects and their contents are openly available - on the network. - label_version_and_files: Versions (%{count}) and Files - label_ldap: LDAP - label_ldaps_verify_none: LDAPS (without certificate check) - label_ldaps_verify_peer: LDAPS - label_ldaps_warning: It is recommended to use an encrypted LDAPS connection with certificate - check to prevent any manipulation during the authentication process. - label_nothing_to_preview: Nothing to preview - error_token_expired: This password recovery link has expired, please try again. - error_spent_on_future_date: Cannot log time on a future date - setting_timelog_accept_future_dates: Accept time logs on future dates - label_delete_link_to_subtask: Kapcsolat törlése - error_not_allowed_to_log_time_for_other_users: You are not allowed to log time - for other users - permission_log_time_for_other_users: Log spent time for other users - label_tomorrow: tomorrow - label_next_week: next week - label_next_month: next month - text_role_no_workflow: No workflow defined for this role - text_status_no_workflow: No tracker uses this status in the workflows - setting_mail_handler_preferred_body_part: Preferred part of multipart (HTML) emails - setting_show_status_changes_in_mail_subject: Show status changes in issue mail notifications - subject - label_inherited_from_parent_project: Inherited from parent project - label_inherited_from_group: Inherited from group %{name} - label_trackers_description: Trackers description - label_open_trackers_description: View all trackers description - label_preferred_body_part_text: Text - label_preferred_body_part_html: HTML (experimental) - field_parent_issue_subject: Parent task subject - permission_edit_own_issues: Edit own issues - text_select_apply_tracker: Select tracker - label_updated_issues: Updated issues - text_avatar_server_config_html: The current avatar server is %{url}. - You can configure it in config/configuration.yml. - setting_gantt_months_limit: Maximum number of months displayed on the gantt chart - permission_import_time_entries: Import time entries - label_import_notifications: Send email notifications during the import - text_gs_available: ImageMagick PDF support available (optional) - field_recently_used_projects: Number of recently used projects in jump box - label_optgroup_bookmarks: Bookmarks - label_optgroup_others: Other projects - label_optgroup_recents: Recently used - button_project_bookmark: Add bookmark - button_project_bookmark_delete: Remove bookmark - field_history_default_tab: Issue's history default tab - label_issue_history_properties: Property changes - label_issue_history_notes: Notes - label_last_tab_visited: Last visited tab - field_unique_id: Unique ID - text_no_subject: no subject - setting_password_required_char_classes: Required character classes for passwords - label_password_char_class_uppercase: uppercase letters - label_password_char_class_lowercase: lowercase letters - label_password_char_class_digits: digits - label_password_char_class_special_chars: special characters - text_characters_must_contain: Must contain %{character_classes}. - label_starts_with: starts with - label_ends_with: ends with - label_issue_fixed_version_updated: Target version updated - setting_project_list_defaults: Projects list defaults - label_display_type: Display results as - label_display_type_list: List - label_display_type_board: Board - label_my_bookmarks: My bookmarks - label_import_time_entries: Import time entries diff --git a/config/locales/id.yml b/config/locales/id.yml deleted file mode 100644 index b03bbe5..0000000 --- a/config/locales/id.yml +++ /dev/null @@ -1,1317 +0,0 @@ -# Indonesian translations -# by Raden Prabowo (cakbowo@gmail.com) - -id: - direction: ltr - date: - formats: - default: "%d-%m-%Y" - short: "%d %b" - long: "%d %B %Y" - - day_names: [Minggu, Senin, Selasa, Rabu, Kamis, Jumat, Sabtu] - abbr_day_names: [Ming, Sen, Sel, Rab, Kam, Jum, Sab] - - month_names: [~, Januari, Februari, Maret, April, Mei, Juni, Juli, Agustus, September, Oktober, November, Desember] - abbr_month_names: [~, Jan, Feb, Mar, Apr, Mei, Jun, Jul, Agu, Sep, Okt, Nov, Des] - order: - - :day - - :month - - :year - - time: - formats: - default: "%a %d %b %Y, %H:%M:%S" - time: "%H:%M" - short: "%d %b %H:%M" - long: "%d %B %Y %H:%M" - am: "am" - pm: "pm" - - datetime: - distance_in_words: - half_a_minute: "setengah menit" - less_than_x_seconds: - one: "kurang dari sedetik" - other: "kurang dari %{count} detik" - x_seconds: - one: "sedetik" - other: "%{count} detik" - less_than_x_minutes: - one: "kurang dari semenit" - other: "kurang dari %{count} menit" - x_minutes: - one: "semenit" - other: "%{count} menit" - about_x_hours: - one: "sekitar sejam" - other: "sekitar %{count} jam" - x_hours: - one: "1 jam" - other: "%{count} jam" - x_days: - one: "sehari" - other: "%{count} hari" - about_x_months: - one: "sekitar sebulan" - other: "sekitar %{count} bulan" - x_months: - one: "sebulan" - other: "%{count} bulan" - about_x_years: - one: "sekitar setahun" - other: "sekitar %{count} tahun" - over_x_years: - one: "lebih dari setahun" - other: "lebih dari %{count} tahun" - almost_x_years: - one: "almost 1 year" - other: "almost %{count} years" - - number: - format: - precision: 3 - separator: ',' - delimiter: '.' - currency: - format: - unit: 'Rp' - precision: 2 - format: '%n %u' - human: - format: - delimiter: "" - precision: 3 - storage_units: - format: "%n %u" - units: - byte: - one: "Byte" - other: "Bytes" - kb: "KB" - mb: "MB" - gb: "GB" - tb: "TB" - - support: - array: - sentence_connector: "dan" - skip_last_comma: false - - activerecord: - errors: - template: - header: - one: "1 error prohibited this %{model} from being saved" - other: "%{count} errors prohibited this %{model} from being saved" - messages: - inclusion: "tidak termasuk dalam daftar" - exclusion: "sudah dicadangkan" - invalid: "salah" - confirmation: "tidak sesuai konfirmasi" - accepted: "harus disetujui" - empty: "tidak boleh kosong" - blank: "tidak boleh kosong" - too_long: "terlalu panjang (maksimum %{count} karakter)" - too_short: "terlalu pendek (minimum %{count} karakter)" - wrong_length: "panjangnya salah (seharusnya %{count} karakter)" - taken: "sudah diambil" - not_a_number: "bukan angka" - not_a_date: "bukan tanggal" - greater_than: "harus lebih besar dari %{count}" - greater_than_or_equal_to: "harus lebih besar atau sama dengan %{count}" - equal_to: "harus sama dengan %{count}" - less_than: "harus kurang dari %{count}" - less_than_or_equal_to: "harus kurang atau sama dengan %{count}" - odd: "harus ganjil" - even: "harus genap" - greater_than_start_date: "harus lebih besar dari tanggal mulai" - not_same_project: "tidak tergabung dalam proyek yang sama" - circular_dependency: "kaitan ini akan menghasilkan circular dependency" - cant_link_an_issue_with_a_descendant: "An issue can not be linked to one of its subtasks" - earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" - not_a_regexp: "is not a valid regular expression" - open_issue_with_closed_parent: "An open issue cannot be attached to a closed parent task" - must_contain_uppercase: "must contain uppercase letters (A-Z)" - must_contain_lowercase: "must contain lowercase letters (a-z)" - must_contain_digits: "must contain digits (0-9)" - must_contain_special_chars: "must contain special characters (!, $, %, ...)" - - actionview_instancetag_blank_option: Silakan pilih - - general_text_No: 'Tidak' - general_text_Yes: 'Ya' - general_text_no: 'tidak' - general_text_yes: 'ya' - general_lang_name: 'Indonesian (Bahasa Indonesia)' - general_csv_separator: ',' - general_csv_decimal_separator: '.' - general_csv_encoding: ISO-8859-1 - general_pdf_fontname: freesans - general_pdf_monospaced_fontname: freemono - general_first_day_of_week: '7' - - notice_account_updated: Akun sudah berhasil diperbarui. - notice_account_invalid_credentials: Pengguna atau kata sandi salah - notice_account_password_updated: Kata sandi sudah berhasil diperbarui. - notice_account_wrong_password: Kata sandi salah. - notice_account_register_done: Akun sudah berhasil dibuat. Untuk mengaktifkan akun anda, silakan klik tautan (link) yang dikirim kepada anda melalui e-mail. - notice_account_unknown_email: Pengguna tidak dikenal. - notice_can_t_change_password: Akun ini menggunakan sumber otentikasi eksternal yang tidak dikenal. Kata sandi tidak bisa diubah. - notice_account_lost_email_sent: Email berisi instruksi untuk memilih kata sandi baru sudah dikirimkan kepada anda. - notice_account_activated: Akun anda sudah diaktifasi. Sekarang anda bisa login. - notice_successful_create: Berhasil dibuat. - notice_successful_update: Berhasil diperbarui. - notice_successful_delete: Berhasil dihapus. - notice_successful_connection: Berhasil terhubung. - notice_file_not_found: Berkas yang anda buka tidak ada atau sudah dihapus. - notice_locking_conflict: Data sudah diubah oleh pengguna lain. - notice_not_authorized: Anda tidak memiliki akses ke halaman ini. - notice_email_sent: "Email sudah dikirim ke %{value}" - notice_email_error: "Terjadi kesalahan pada saat pengiriman email (%{value})" - notice_feeds_access_key_reseted: Atom access key anda sudah direset. - notice_failed_to_save_issues: "Gagal menyimpan %{count} masalah dari %{total} yang dipilih: %{ids}." - notice_no_issue_selected: "Tidak ada masalah yang dipilih! Silakan pilih masalah yang akan anda sunting." - notice_account_pending: "Akun anda sudah dibuat dan sekarang sedang menunggu persetujuan administrator." - notice_default_data_loaded: Konfigurasi default sudah berhasil dimuat. - notice_unable_delete_version: Tidak bisa menghapus versi. - - error_can_t_load_default_data: "Konfigurasi default tidak bisa dimuat: %{value}" - error_scm_not_found: "Entri atau revisi tidak terdapat pada repositori." - error_scm_command_failed: "Terjadi kesalahan pada saat mengakses repositori: %{value}" - error_scm_annotate: "Entri tidak ada, atau tidak dapat di anotasi." - error_issue_not_found_in_project: 'Masalah tidak ada atau tidak tergabung dalam proyek ini.' - error_no_tracker_in_project: 'Tidak ada pelacak yang diasosiasikan pada proyek ini. Silakan pilih Pengaturan Proyek.' - error_no_default_issue_status: 'Nilai default untuk Status masalah belum didefinisikan. Periksa kembali konfigurasi anda (Pilih "Administrasi --> Status masalah").' - error_can_not_reopen_issue_on_closed_version: 'Masalah yang ditujukan pada versi tertutup tidak bisa dibuka kembali' - error_can_not_archive_project: Proyek ini tidak bisa diarsipkan - - warning_attachments_not_saved: "%{count} berkas tidak bisa disimpan." - - mail_subject_lost_password: "Kata sandi %{value} anda" - mail_body_lost_password: 'Untuk mengubah kata sandi anda, klik tautan berikut::' - mail_subject_register: "Aktivasi akun %{value} anda" - mail_body_register: 'Untuk mengaktifkan akun anda, klik tautan berikut:' - mail_body_account_information_external: "Anda dapat menggunakan akun %{value} anda untuk login." - mail_body_account_information: Informasi akun anda - mail_subject_account_activation_request: "Permintaan aktivasi akun %{value} " - mail_body_account_activation_request: "Pengguna baru (%{value}) sudan didaftarkan. Akun tersebut menunggu persetujuan anda:" - mail_subject_reminder: "%{count} masalah harus selesai pada hari berikutnya (%{days})" - mail_body_reminder: "%{count} masalah yang ditugaskan pada anda harus selesai dalam %{days} hari kedepan:" - mail_subject_wiki_content_added: "'%{id}' halaman wiki sudah ditambahkan" - mail_body_wiki_content_added: "The '%{id}' halaman wiki sudah ditambahkan oleh %{author}." - mail_subject_wiki_content_updated: "'%{id}' halaman wiki sudah diperbarui" - mail_body_wiki_content_updated: "The '%{id}' halaman wiki sudah diperbarui oleh %{author}." - - - field_name: Nama - field_description: Deskripsi - field_summary: Ringkasan - field_is_required: Dibutuhkan - field_firstname: Nama depan - field_lastname: Nama belakang - field_mail: Email - field_filename: Berkas - field_filesize: Ukuran - field_downloads: Unduhan - field_author: Pengarang - field_created_on: Dibuat - field_updated_on: Diperbarui - field_field_format: Format - field_is_for_all: Untuk semua proyek - field_possible_values: Nilai yang mungkin - field_regexp: Regular expression - field_min_length: Panjang minimum - field_max_length: Panjang maksimum - field_value: Nilai - field_category: Kategori - field_title: Judul - field_project: Proyek - field_issue: Masalah - field_status: Status - field_notes: Catatan - field_is_closed: Masalah ditutup - field_is_default: Nilai default - field_tracker: Pelacak - field_subject: Perihal - field_due_date: Harus selesai - field_assigned_to: Ditugaskan ke - field_priority: Prioritas - field_fixed_version: Versi target - field_user: Pengguna - field_role: Peran - field_homepage: Halaman web - field_is_public: Publik - field_parent: Subproyek dari - field_is_in_roadmap: Masalah ditampilkan di rencana kerja - field_login: Login - field_mail_notification: Notifikasi email - field_admin: Administrator - field_last_login_on: Terakhir login - field_language: Bahasa - field_effective_date: Tanggal - field_password: Kata sandi - field_new_password: Kata sandi baru - field_password_confirmation: Konfirmasi - field_version: Versi - field_type: Tipe - field_host: Host - field_port: Port - field_account: Akun - field_base_dn: Base DN - field_attr_login: Atribut login - field_attr_firstname: Atribut nama depan - field_attr_lastname: Atribut nama belakang - field_attr_mail: Atribut email - field_onthefly: Pembuatan pengguna seketika - field_start_date: Mulai - field_done_ratio: "% Selesai" - field_auth_source: Mode otentikasi - field_hide_mail: Sembunyikan email saya - field_comments: Komentar - field_url: URL - field_start_page: Halaman awal - field_subproject: Subproyek - field_hours: Jam - field_activity: Kegiatan - field_spent_on: Tanggal - field_identifier: Pengenal - field_is_filter: Digunakan sebagai penyaring - field_issue_to: Masalah terkait - field_delay: Tertunday - field_assignable: Masalah dapat ditugaskan pada peran ini - field_redirect_existing_links: Alihkan tautan yang ada - field_estimated_hours: Perkiraan waktu - field_column_names: Kolom - field_time_zone: Zona waktu - field_searchable: Dapat dicari - field_default_value: Nilai default - field_comments_sorting: Tampilkan komentar - field_parent_title: Halaman induk - field_editable: Dapat disunting - field_watcher: Pemantau - field_identity_url: OpenID URL - field_content: Isi - field_group_by: Dikelompokkan berdasar - field_sharing: Berbagi - - setting_app_title: Judul aplikasi - setting_welcome_text: Teks sambutan - setting_default_language: Bahasa Default - setting_login_required: Butuhkan otentikasi - setting_self_registration: Swa-pendaftaran - setting_attachment_max_size: Ukuran maksimum untuk lampiran - setting_issues_export_limit: Batasan ukuran export masalah - setting_mail_from: Emisi alamat email - setting_bcc_recipients: Blind carbon copy recipients (bcc) - setting_plain_text_mail: Plain text mail (no HTML) - setting_host_name: Nama host dan path - setting_text_formatting: Format teks - setting_wiki_compression: Kompresi untuk riwayat wiki - setting_feeds_limit: Batasan isi feed - setting_default_projects_public: Proyek baru defaultnya adalah publik - setting_autofetch_changesets: Autofetch commits - setting_sys_api_enabled: Aktifkan WS untuk pengaturan repositori - setting_commit_ref_keywords: Referensi kaca kunci - setting_commit_fix_keywords: Pembetulan kaca kunci - setting_autologin: Autologin - setting_date_format: Format tanggal - setting_time_format: Format waktu - setting_cross_project_issue_relations: Perbolehkan kaitan masalah proyek berbeda - setting_issue_list_default_columns: Kolom default ditampilkan di daftar masalah - setting_emails_footer: Footer untuk email - setting_protocol: Protokol - setting_per_page_options: Pilihan obyek per halaman - setting_user_format: Format tampilan untuk pengguna - setting_activity_days_default: Hari tertampil pada kegiatan proyek - setting_display_subprojects_issues: Secara default, tampilkan masalah subproyek pada proyek utama - setting_enabled_scm: Enabled SCM - setting_mail_handler_api_enabled: Enable WS for incoming emails - setting_mail_handler_api_key: API key - setting_sequential_project_identifiers: Buat pengenal proyek terurut - setting_gravatar_enabled: Gunakan icon pengguna dari Gravatar - setting_gravatar_default: Gambar default untuk Gravatar - setting_diff_max_lines_displayed: Maksimum perbedaan baris tertampil - setting_file_max_size_displayed: Maksimum berkas tertampil secara inline - setting_repository_log_display_limit: Nilai maksimum dari revisi ditampilkan di log berkas - setting_openid: Perbolehkan Login dan pendaftaran melalui OpenID - setting_password_min_length: Panjang minimum untuk kata sandi - setting_new_project_user_role_id: Peran diberikan pada pengguna non-admin yang membuat proyek - setting_default_projects_modules: Modul yang diaktifkan pada proyek baru - - permission_add_project: Tambahkan proyek - permission_edit_project: Sunting proyek - permission_select_project_modules: Pilih modul proyek - permission_manage_members: Atur anggota - permission_manage_versions: Atur versi - permission_manage_categories: Atur kategori masalah - permission_add_issues: Tambahkan masalah - permission_edit_issues: Sunting masalah - permission_manage_issue_relations: Atur kaitan masalah - permission_add_issue_notes: Tambahkan catatan - permission_edit_issue_notes: Sunting catatan - permission_edit_own_issue_notes: Sunting catatan saya - permission_delete_issues: Hapus masalah - permission_manage_public_queries: Atur query publik - permission_save_queries: Simpan query - permission_view_gantt: Tampilkan gantt chart - permission_view_calendar: Tampilkan kalender - permission_view_issue_watchers: Tampilkan daftar pemantau - permission_add_issue_watchers: Tambahkan pemantau - permission_delete_issue_watchers: Hapus pemantau - permission_log_time: Log waktu terpakai - permission_view_time_entries: Tampilkan waktu terpakai - permission_edit_time_entries: Sunting catatan waktu - permission_edit_own_time_entries: Sunting catatan waktu saya - permission_manage_news: Atur berita - permission_comment_news: Komentari berita - permission_view_documents: Tampilkan dokumen - permission_manage_files: Atur berkas - permission_view_files: Tampilkan berkas - permission_manage_wiki: Atur wiki - permission_rename_wiki_pages: Ganti nama halaman wiki - permission_delete_wiki_pages: Hapus halaman wiki - permission_view_wiki_pages: Tampilkan wiki - permission_view_wiki_edits: Tampilkan riwayat wiki - permission_edit_wiki_pages: Sunting halaman wiki - permission_delete_wiki_pages_attachments: Hapus lampiran - permission_protect_wiki_pages: Proteksi halaman wiki - permission_manage_repository: Atur repositori - permission_browse_repository: Jelajah repositori - permission_view_changesets: Tampilkan set perubahan - permission_commit_access: Commit akses - permission_manage_boards: Atur forum - permission_view_messages: Tampilkan pesan - permission_add_messages: Tambahkan pesan - permission_edit_messages: Sunting pesan - permission_edit_own_messages: Sunting pesan saya - permission_delete_messages: Hapus pesan - permission_delete_own_messages: Hapus pesan saya - - project_module_issue_tracking: Pelacak masalah - project_module_time_tracking: Pelacak waktu - project_module_news: Berita - project_module_documents: Dokumen - project_module_files: Berkas - project_module_wiki: Wiki - project_module_repository: Repositori - project_module_boards: Forum - - label_user: Pengguna - label_user_plural: Pengguna - label_user_new: Pengguna baru - label_user_anonymous: Anonymous - label_project: Proyek - label_project_new: Proyek baru - label_project_plural: Proyek - label_x_projects: - zero: tidak ada proyek - one: 1 proyek - other: "%{count} proyek" - label_project_all: Semua Proyek - label_project_latest: Proyek terakhir - label_issue: Masalah - label_issue_new: Masalah baru - label_issue_plural: Masalah - label_issue_view_all: tampilkan semua masalah - label_issues_by: "Masalah ditambahkan oleh %{value}" - label_issue_added: Masalah ditambahan - label_issue_updated: Masalah diperbarui - label_document: Dokumen - label_document_new: Dokumen baru - label_document_plural: Dokumen - label_document_added: Dokumen ditambahkan - label_role: Peran - label_role_plural: Peran - label_role_new: Peran baru - label_role_and_permissions: Peran dan perijinan - label_member: Anggota - label_member_new: Anggota baru - label_member_plural: Anggota - label_tracker: Pelacak - label_tracker_plural: Pelacak - label_tracker_new: Pelacak baru - label_workflow: Alur kerja - label_issue_status: Status masalah - label_issue_status_plural: Status masalah - label_issue_status_new: Status baru - label_issue_category: Kategori masalah - label_issue_category_plural: Kategori masalah - label_issue_category_new: Kategori baru - label_custom_field: Field kustom - label_custom_field_plural: Field kustom - label_custom_field_new: Field kustom - label_enumerations: Enumerasi - label_enumeration_new: Buat baru - label_information: Informasi - label_information_plural: Informasi - label_register: mendaftar - label_login_with_open_id_option: atau login menggunakan OpenID - label_password_lost: Lupa password - label_home: Halaman depan - label_my_page: Beranda - label_my_account: Akun saya - label_my_projects: Proyek saya - label_administration: Administrasi - label_login: Login - label_logout: Keluar - label_help: Bantuan - label_reported_issues: Masalah terlapor - label_assigned_to_me_issues: Masalah yang ditugaskan pada saya - label_last_login: Terakhir login - label_registered_on: Terdaftar pada - label_activity: Kegiatan - label_overall_activity: Kegiatan umum - label_user_activity: "kegiatan %{value}" - label_new: Baru - label_logged_as: Login sebagai - label_environment: Lingkungan - label_authentication: Otentikasi - label_auth_source: Mode Otentikasi - label_auth_source_new: Mode otentikasi baru - label_auth_source_plural: Mode Otentikasi - label_subproject_plural: Subproyek - label_and_its_subprojects: "%{value} dan subproyeknya" - label_min_max_length: Panjang Min - Maks - label_list: Daftar - label_date: Tanggal - label_integer: Integer - label_float: Float - label_boolean: Boolean - label_string: Text - label_text: Long text - label_attribute: Atribut - label_attribute_plural: Atribut - label_no_data: Tidak ada data untuk ditampilkan - label_change_status: Status perubahan - label_history: Riwayat - label_attachment: Berkas - label_attachment_new: Berkas baru - label_attachment_delete: Hapus Berkas - label_attachment_plural: Berkas - label_file_added: Berkas ditambahkan - label_report: Laporan - label_report_plural: Laporan - label_news: Berita - label_news_new: Tambahkan berita - label_news_plural: Berita - label_news_latest: Berita terakhir - label_news_view_all: Tampilkan semua berita - label_news_added: Berita ditambahkan - label_settings: Pengaturan - label_overview: Umum - label_version: Versi - label_version_new: Versi baru - label_version_plural: Versi - label_confirmation: Konfirmasi - label_export_to: 'Juga tersedia dalam:' - label_read: Baca... - label_public_projects: Proyek publik - label_open_issues: belum selesai - label_open_issues_plural: belum selesai - label_closed_issues: selesai - label_closed_issues_plural: selesai - label_x_open_issues_abbr: - zero: 0 belum selesai - one: 1 belum selesai - other: "%{count} belum selesai" - label_x_closed_issues_abbr: - zero: 0 selesai - one: 1 selesai - other: "%{count} selesai" - label_total: Total - label_permissions: Perijinan - label_current_status: Status sekarang - label_new_statuses_allowed: Status baru yang diijinkan - label_all: semua - label_none: tidak ada - label_nobody: tidak ada - label_next: Berikut - label_previous: Sebelum - label_used_by: Digunakan oleh - label_details: Rincian - label_add_note: Tambahkan catatan - label_calendar: Kalender - label_months_from: dari bulan - label_gantt: Gantt - label_internal: Internal - label_last_changes: "%{count} perubahan terakhir" - label_change_view_all: Tampilkan semua perubahan - label_comment: Komentar - label_comment_plural: Komentar - label_x_comments: - zero: tak ada komentar - one: 1 komentar - other: "%{count} komentar" - label_comment_add: Tambahkan komentar - label_comment_added: Komentar ditambahkan - label_comment_delete: Hapus komentar - label_query: Custom query - label_query_plural: Custom queries - label_query_new: Query baru - label_filter_add: Tambahkan filter - label_filter_plural: Filter - label_equals: sama dengan - label_not_equals: tidak sama dengan - label_in_less_than: kurang dari - label_in_more_than: lebih dari - label_greater_or_equal: '>=' - label_less_or_equal: '<=' - label_in: pada - label_today: hari ini - label_yesterday: kemarin - label_this_week: minggu ini - label_last_week: minggu lalu - label_last_n_days: "%{count} hari terakhir" - label_this_month: bulan ini - label_last_month: bulan lalu - label_this_year: this year - label_date_range: Jangkauan tanggal - label_less_than_ago: kurang dari hari yang lalu - label_more_than_ago: lebih dari hari yang lalu - label_ago: hari yang lalu - label_contains: berisi - label_not_contains: tidak berisi - label_day_plural: hari - label_repository: Repositori - label_repository_plural: Repositori - label_browse: Jelajah - label_branch: Cabang - label_tag: Tag - label_revision: Revisi - label_revision_plural: Revisi - label_associated_revisions: Revisi terkait - label_added: ditambahkan - label_modified: diubah - label_copied: disalin - label_renamed: diganti nama - label_deleted: dihapus - label_latest_revision: Revisi terakhir - label_latest_revision_plural: Revisi terakhir - label_view_revisions: Tampilkan revisi - label_view_all_revisions: Tampilkan semua revisi - label_max_size: Ukuran maksimum - label_sort_highest: Ke paling atas - label_sort_higher: Ke atas - label_sort_lower: Ke bawah - label_sort_lowest: Ke paling bawah - label_roadmap: Rencana kerja - label_roadmap_due_in: "Harus selesai dalam %{value}" - label_roadmap_overdue: "%{value} terlambat" - label_roadmap_no_issues: Tak ada masalah pada versi ini - label_search: Cari - label_result_plural: Hasil - label_all_words: Semua kata - label_wiki: Wiki - label_wiki_edit: Sunting wiki - label_wiki_edit_plural: Sunting wiki - label_wiki_page: Halaman wiki - label_wiki_page_plural: Halaman wiki - label_index_by_title: Indeks menurut judul - label_index_by_date: Indeks menurut tanggal - label_current_version: Versi sekarang - label_preview: Tinjauan - label_feed_plural: Feeds - label_changes_details: Rincian semua perubahan - label_issue_tracking: Pelacak masalah - label_spent_time: Waktu terpakai - label_f_hour: "%{value} jam" - label_f_hour_plural: "%{value} jam" - label_time_tracking: Pelacak waktu - label_change_plural: Perubahan - label_statistics: Statistik - label_commits_per_month: Komit per bulan - label_commits_per_author: Komit per pengarang - label_view_diff: Tampilkan perbedaan - label_diff_inline: inline - label_diff_side_by_side: berdampingan - label_options: Pilihan - label_copy_workflow_from: Salin alur kerja dari - label_permissions_report: Laporan perijinan - label_watched_issues: Masalah terpantau - label_related_issues: Masalah terkait - label_applied_status: Status teraplikasi - label_loading: Memuat... - label_relation_new: Kaitan baru - label_relation_delete: Hapus kaitan - label_relates_to: terkait pada - label_duplicates: salinan - label_duplicated_by: disalin oleh - label_blocks: blok - label_blocked_by: diblok oleh - label_precedes: mendahului - label_follows: mengikuti - label_stay_logged_in: Tetap login - label_disabled: tidak diaktifkan - label_show_completed_versions: Tampilkan versi lengkap - label_me: saya - label_board: Forum - label_board_new: Forum baru - label_board_plural: Forum - label_topic_plural: Topik - label_message_plural: Pesan - label_message_last: Pesan terakhir - label_message_new: Pesan baru - label_message_posted: Pesan ditambahkan - label_reply_plural: Balasan - label_send_information: Kirim informasi akun ke pengguna - label_year: Tahun - label_month: Bulan - label_week: Minggu - label_date_from: Dari - label_date_to: Sampai - label_language_based: Berdasarkan bahasa pengguna - label_sort_by: "Urut berdasarkan %{value}" - label_send_test_email: Kirim email percobaan - label_feeds_access_key_created_on: "Atom access key dibuat %{value} yang lalu" - label_module_plural: Modul - label_added_time_by: "Ditambahkan oleh %{author} %{age} yang lalu" - label_updated_time_by: "Diperbarui oleh %{author} %{age} yang lalu" - label_updated_time: "Diperbarui oleh %{value} yang lalu" - label_jump_to_a_project: Pilih proyek... - label_file_plural: Berkas - label_changeset_plural: Set perubahan - label_default_columns: Kolom default - label_no_change_option: (Tak ada perubahan) - label_bulk_edit_selected_issues: Ubah masalah terpilih secara masal - label_theme: Tema - label_default: Default - label_search_titles_only: Cari judul saja - label_user_mail_option_all: "Untuk semua kejadian pada semua proyek saya" - label_user_mail_option_selected: "Hanya untuk semua kejadian pada proyek yang saya pilih ..." - label_user_mail_no_self_notified: "Saya tak ingin diberitahu untuk perubahan yang saya buat sendiri" - label_registration_activation_by_email: aktivasi akun melalui email - label_registration_manual_activation: aktivasi akun secara manual - label_registration_automatic_activation: aktivasi akun secara otomatis - label_display_per_page: "Per halaman: %{value}" - label_age: Umur - label_change_properties: Rincian perubahan - label_general: Umum - label_scm: SCM - label_plugins: Plugin - label_ldap_authentication: Otentikasi LDAP - label_downloads_abbr: Unduh - label_optional_description: Deskripsi optional - label_add_another_file: Tambahkan berkas lain - label_preferences: Preferensi - label_chronological_order: Urut sesuai kronologis - label_reverse_chronological_order: Urut dari yang terbaru - label_incoming_emails: Email masuk - label_generate_key: Buat kunci - label_issue_watchers: Pemantau - label_example: Contoh - label_display: Tampilan - label_sort: Urut - label_ascending: Menaik - label_descending: Menurun - label_date_from_to: Dari %{start} sampai %{end} - label_wiki_content_added: Halaman wiki ditambahkan - label_wiki_content_updated: Halaman wiki diperbarui - label_group: Kelompok - label_group_plural: Kelompok - label_group_new: Kelompok baru - label_time_entry_plural: Waktu terpakai - label_version_sharing_none: Tidak dibagi - label_version_sharing_descendants: Dengan subproyek - label_version_sharing_hierarchy: Dengan hirarki proyek - label_version_sharing_tree: Dengan pohon proyek - label_version_sharing_system: Dengan semua proyek - - - button_login: Login - button_submit: Kirim - button_save: Simpan - button_check_all: Contreng semua - button_uncheck_all: Hilangkan semua contreng - button_delete: Hapus - button_create: Buat - button_create_and_continue: Buat dan lanjutkan - button_test: Test - button_edit: Sunting - button_add: Tambahkan - button_change: Ubah - button_apply: Terapkan - button_clear: Bersihkan - button_lock: Kunci - button_unlock: Buka kunci - button_download: Unduh - button_list: Daftar - button_view: Tampilkan - button_move: Pindah - button_move_and_follow: Pindah dan ikuti - button_back: Kembali - button_cancel: Batal - button_activate: Aktifkan - button_sort: Urut - button_log_time: Rekam waktu - button_rollback: Kembali ke versi ini - button_watch: Pantau - button_unwatch: Tidak Memantau - button_reply: Balas - button_archive: Arsip - button_unarchive: Batalkan arsip - button_reset: Reset - button_rename: Ganti nama - button_change_password: Ubah kata sandi - button_copy: Salin - button_copy_and_follow: Salin dan ikuti - button_annotate: Anotasi - button_update: Perbarui - button_configure: Konfigur - button_quote: Kutip - - status_active: aktif - status_registered: terdaftar - status_locked: terkunci - - version_status_open: terbuka - version_status_locked: terkunci - version_status_closed: tertutup - - field_active: Aktif - - text_select_mail_notifications: Pilih aksi dimana email notifikasi akan dikirimkan. - text_regexp_info: mis. ^[A-Z0-9]+$ - text_min_max_length_info: 0 berarti tidak ada pembatasan - text_project_destroy_confirmation: Apakah anda benar-benar akan menghapus proyek ini beserta data terkait ? - text_subprojects_destroy_warning: "Subproyek: %{value} juga akan dihapus." - text_workflow_edit: Pilih peran dan pelacak untuk menyunting alur kerja - text_are_you_sure: Anda yakin ? - text_journal_changed: "%{label} berubah dari %{old} menjadi %{new}" - text_journal_set_to: "%{label} di set ke %{value}" - text_journal_deleted: "%{label} dihapus (%{old})" - text_journal_added: "%{label} %{value} ditambahkan" - text_tip_issue_begin_day: tugas dimulai hari itu - text_tip_issue_end_day: tugas berakhir hari itu - text_tip_issue_begin_end_day: tugas dimulai dan berakhir hari itu - text_caracters_maximum: "maximum %{count} karakter." - text_caracters_minimum: "Setidaknya harus sepanjang %{count} karakter." - text_length_between: "Panjang diantara %{min} dan %{max} karakter." - text_tracker_no_workflow: Tidak ada alur kerja untuk pelacak ini - text_unallowed_characters: Karakter tidak diperbolehkan - text_comma_separated: Beberapa nilai diperbolehkan (dipisahkan koma). - text_issues_ref_in_commit_messages: Mereferensikan dan membetulkan masalah pada pesan komit - text_issue_added: "Masalah %{id} sudah dilaporkan oleh %{author}." - text_issue_updated: "Masalah %{id} sudah diperbarui oleh %{author}." - text_wiki_destroy_confirmation: Apakah anda benar-benar akan menghapus wiki ini beserta semua isinya ? - text_issue_category_destroy_question: "Beberapa masalah (%{count}) ditugaskan pada kategori ini. Apa yang anda lakukan ?" - text_issue_category_destroy_assignments: Hapus kategori penugasan - text_issue_category_reassign_to: Tugaskan kembali masalah untuk kategori ini - text_user_mail_option: "Untuk proyek yang tidak dipilih, anda hanya akan menerima notifikasi hal-hal yang anda pantau atau anda terlibat di dalamnya (misalnya masalah yang anda tulis atau ditugaskan pada anda)." - text_no_configuration_data: "Peran, pelacak, status masalah dan alur kerja belum dikonfigur.\nSangat disarankan untuk memuat konfigurasi default. Anda akan bisa mengubahnya setelah konfigurasi dimuat." - text_load_default_configuration: Muat konfigurasi default - text_status_changed_by_changeset: "Diterapkan di set perubahan %{value}." - text_issues_destroy_confirmation: 'Apakah anda yakin untuk menghapus masalah terpilih ?' - text_select_project_modules: 'Pilih modul untuk diaktifkan pada proyek ini:' - text_default_administrator_account_changed: Akun administrator default sudah berubah - text_file_repository_writable: Direktori yang bisa ditulisi untuk lampiran - text_plugin_assets_writable: Direktori yang bisa ditulisi untuk plugin asset - text_minimagick_available: MiniMagick tersedia (optional) - text_destroy_time_entries_question: "%{hours} jam sudah dilaporkan pada masalah yang akan anda hapus. Apa yang akan anda lakukan ?" - text_destroy_time_entries: Hapus jam yang terlapor - text_assign_time_entries_to_project: Tugaskan jam terlapor pada proyek - text_reassign_time_entries: 'Tugaskan kembali jam terlapor pada masalah ini:' - text_user_wrote: "%{value} menulis:" - text_user_wrote_in: "%{value} menulis (%{link}):" - text_enumeration_destroy_question: "%{count} obyek ditugaskan untuk nilai ini." - text_enumeration_category_reassign_to: 'Tugaskan kembali untuk nilai ini:' - text_email_delivery_not_configured: "Pengiriman email belum dikonfigurasi, notifikasi tidak diaktifkan.\nAnda harus mengkonfigur SMTP server anda pada config/configuration.yml dan restart kembali aplikasi untuk mengaktifkan." - text_repository_usernames_mapping: "Pilih atau perbarui pengguna Redmine yang terpetakan ke setiap nama pengguna yang ditemukan di log repositori.\nPengguna dengan nama pengguna dan repositori atau email yang sama secara otomasit akan dipetakan." - text_diff_truncated: '... Perbedaan terpotong karena melebihi batas maksimum yang bisa ditampilkan.' - text_custom_field_possible_values_info: 'Satu baris untuk setiap nilai' - text_wiki_page_destroy_question: "Halaman ini mempunyai %{descendants} halaman anak dan turunannya. Apa yang akan anda lakukan ?" - text_wiki_page_nullify_children: "Biarkan halaman anak sebagai halaman teratas (root)" - text_wiki_page_destroy_children: "Hapus halaman anak dan semua turunannya" - text_wiki_page_reassign_children: "Tujukan halaman anak ke halaman induk yang ini" - - default_role_manager: Manager - default_role_developer: Pengembang - default_role_reporter: Pelapor - default_tracker_bug: Bug - default_tracker_feature: Fitur - default_tracker_support: Dukungan - default_issue_status_new: Baru - default_issue_status_in_progress: Dalam proses - default_issue_status_resolved: Resolved - default_issue_status_feedback: Umpan balik - default_issue_status_closed: Ditutup - default_issue_status_rejected: Ditolak - default_doc_category_user: Dokumentasi pengguna - default_doc_category_tech: Dokumentasi teknis - default_priority_low: Rendah - default_priority_normal: Normal - default_priority_high: Tinggi - default_priority_urgent: Penting - default_priority_immediate: Segera - default_activity_design: Rancangan - default_activity_development: Pengembangan - - enumeration_issue_priorities: Prioritas masalah - enumeration_doc_categories: Kategori dokumen - enumeration_activities: Kegiatan - enumeration_system_activity: Kegiatan Sistem - label_copy_source: Source - label_update_issue_done_ratios: Update issue done ratios - setting_issue_done_ratio: Calculate the issue done ratio with - label_api_access_key: API access key - text_line_separated: Multiple values allowed (one line for each value). - label_revision_id: Revision %{value} - permission_view_issues: View Issues - setting_issue_done_ratio_issue_status: Use the issue status - error_issue_done_ratios_not_updated: Issue done ratios not updated. - label_display_used_statuses_only: Only display statuses that are used by this tracker - error_workflow_copy_target: Please select target tracker(s) and role(s) - label_api_access_key_created_on: API access key created %{value} ago - label_feeds_access_key: Atom access key - notice_api_access_key_reseted: Your API access key was reset. - setting_rest_api_enabled: Enable REST web service - label_copy_same_as_target: Same as target - button_show: Show - setting_issue_done_ratio_issue_field: Use the issue field - label_missing_api_access_key: Missing an API access key - label_copy_target: Target - label_missing_feeds_access_key: Missing a Atom access key - notice_issue_done_ratios_updated: Issue done ratios updated. - error_workflow_copy_source: Please select a source tracker or role - setting_start_of_week: Start calendars on - setting_mail_handler_body_delimiters: Truncate emails after one of these lines - permission_add_subprojects: Create subprojects - label_subproject_new: New subproject - 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. - Are you sure you want to continue? - label_close_versions: Close completed versions - label_board_sticky: Sticky - label_board_locked: Locked - permission_export_wiki_pages: Export wiki pages - setting_cache_formatted_text: Cache formatted text - permission_manage_project_activities: Manage project activities - error_unable_delete_issue_status: Unable to delete issue status (%{value}) - label_profile: Profile - permission_manage_subtasks: Manage subtasks - field_parent_issue: Parent task - label_subtask_plural: Subtasks - label_project_copy_notifications: Send email notifications during the project copy - error_can_not_delete_custom_field: Unable to delete custom field - error_unable_to_connect: Unable to connect (%{value}) - error_can_not_remove_role: This role is in use and can not be deleted. - error_can_not_delete_tracker: This tracker contains issues and cannot be deleted. - field_principal: Principal - notice_failed_to_save_members: "Failed to save member(s): %{errors}." - text_zoom_out: Zoom out - text_zoom_in: Zoom in - notice_unable_delete_time_entry: Unable to delete time log entry. - label_overall_spent_time: Overall spent time - field_time_entries: Log time - project_module_gantt: Gantt - project_module_calendar: Calendar - button_edit_associated_wikipage: "Edit associated Wiki page: %{page_title}" - field_text: Text field - setting_default_notification_option: Default notification option - label_user_mail_option_only_my_events: Only for things I watch or I'm involved in - label_user_mail_option_none: No events - field_member_of_group: Assignee's group - field_assigned_to_role: Assignee's role - notice_not_authorized_archived_project: The project you're trying to access has been archived. - label_principal_search: "Search for user or group:" - label_user_search: "Search for user:" - field_visible: Visible - setting_commit_logtime_activity_id: Activity for logged time - text_time_logged_by_changeset: Applied in changeset %{value}. - setting_commit_logtime_enabled: Enable time logging - notice_gantt_chart_truncated: The chart was truncated because it exceeds the maximum number of items that can be displayed (%{max}) - setting_gantt_items_limit: Maximum number of items displayed on the gantt chart - field_warn_on_leaving_unsaved: Warn me when leaving a page with unsaved text - text_warn_on_leaving_unsaved: The current page contains unsaved text that will be lost if you leave this page. - label_my_queries: My custom queries - text_journal_changed_no_detail: "%{label} updated" - label_news_comment_added: Comment added to a news - button_expand_all: Expand all - button_collapse_all: Collapse all - label_additional_workflow_transitions_for_assignee: Additional transitions allowed when the user is the assignee - label_additional_workflow_transitions_for_author: Additional transitions allowed when the user is the author - label_bulk_edit_selected_time_entries: Bulk edit selected time entries - text_time_entries_destroy_confirmation: Are you sure you want to delete the selected time entr(y/ies)? - label_role_anonymous: Anonymous - label_role_non_member: Non member - label_issue_note_added: Note added - label_issue_status_updated: Status updated - label_issue_priority_updated: Priority updated - label_issues_visibility_own: Issues created by or assigned to the user - field_issues_visibility: Issues visibility - label_issues_visibility_all: All issues - permission_set_own_issues_private: Set own issues public or private - field_is_private: Private - permission_set_issues_private: Set issues public or private - label_issues_visibility_public: All non private issues - text_issues_destroy_descendants_confirmation: This will also delete %{count} subtask(s). - field_commit_logs_encoding: Commit messages encoding - field_scm_path_encoding: Path encoding - text_scm_path_encoding_note: "Default: UTF-8" - field_path_to_repository: Path to repository - field_root_directory: Root directory - field_cvs_module: Module - field_cvsroot: CVSROOT - text_mercurial_repository_note: Local repository (e.g. /hgrepo, c:\hgrepo) - text_scm_command: Command - text_scm_command_version: Version - label_git_report_last_commit: Report last commit for files and directories - notice_issue_successful_create: Issue %{id} created. - label_between: between - setting_issue_group_assignment: Allow issue assignment to groups - label_diff: diff - text_git_repository_note: Repository is bare and local (e.g. /gitrepo, c:\gitrepo) - description_query_sort_criteria_direction: Sort direction - description_project_scope: Search scope - description_filter: Filter - description_user_mail_notification: Mail notification settings - description_message_content: Message content - description_available_columns: Available Columns - description_issue_category_reassign: Choose issue category - description_search: Searchfield - description_notes: Notes - description_choose_project: Projects - description_query_sort_criteria_attribute: Sort attribute - description_wiki_subpages_reassign: Choose new parent page - description_selected_columns: Selected Columns - label_parent_revision: Parent - label_child_revision: Child - error_scm_annotate_big_text_file: The entry cannot be annotated, as it exceeds the maximum text file size. - setting_default_issue_start_date_to_creation_date: Use current date as start date for new issues - button_edit_section: Edit this section - setting_repositories_encodings: Attachments and repositories encodings - description_all_columns: All Columns - button_export: Export - label_export_options: "%{export_format} export options" - error_attachment_too_big: This file cannot be uploaded because it exceeds the maximum allowed file size (%{max_size}) - notice_failed_to_save_time_entries: "Failed to save %{count} time entrie(s) on %{total} selected: %{ids}." - label_x_issues: - zero: 0 masalah - one: 1 masalah - other: "%{count} masalah" - label_repository_new: New repository - field_repository_is_default: Main repository - label_copy_attachments: Copy attachments - label_item_position: "%{position}/%{count}" - label_completed_versions: Completed versions - text_project_identifier_info: Only lower case letters (a-z), numbers, dashes and underscores are allowed.
    Once saved, the identifier cannot be changed. - field_multiple: Multiple values - setting_commit_cross_project_ref: Allow issues of all the other projects to be referenced and fixed - text_issue_conflict_resolution_add_notes: Add my notes and discard my other changes - text_issue_conflict_resolution_overwrite: Apply my changes anyway (previous notes will be kept but some changes may be overwritten) - notice_issue_update_conflict: The issue has been updated by an other user while you were editing it. - text_issue_conflict_resolution_cancel: Discard all my changes and redisplay %{link} - permission_manage_related_issues: Manage related issues - field_auth_source_ldap_filter: LDAP filter - label_search_for_watchers: Search for watchers to add - notice_account_deleted: Your account has been permanently deleted. - setting_unsubscribe: Allow users to delete their own account - button_delete_my_account: Delete my account - text_account_destroy_confirmation: |- - Are you sure you want to proceed? - Your account will be permanently deleted, with no way to reactivate it. - error_session_expired: Your session has expired. Please login again. - text_session_expiration_settings: "Warning: changing these settings may expire the current sessions including yours." - setting_session_lifetime: Session maximum lifetime - setting_session_timeout: Session inactivity timeout - label_session_expiration: Session expiration - permission_close_project: Close / reopen the project - button_close: Close - button_reopen: Reopen - project_status_active: active - project_status_closed: closed - project_status_archived: archived - text_project_closed: This project is closed and read-only. - notice_user_successful_create: User %{id} created. - field_core_fields: Standard fields - field_timeout: Timeout (in seconds) - setting_thumbnails_enabled: Display attachment thumbnails - setting_thumbnails_size: Thumbnails size (in pixels) - label_status_transitions: Status transitions - label_fields_permissions: Fields permissions - label_readonly: Read-only - label_required: Required - text_repository_identifier_info: Only lower case letters (a-z), numbers, dashes and underscores are allowed.
    Once saved, the identifier cannot be changed. - field_board_parent: Parent forum - label_attribute_of_project: Project's %{name} - label_attribute_of_author: Author's %{name} - label_attribute_of_assigned_to: Assignee's %{name} - label_attribute_of_fixed_version: Target version's %{name} - label_copy_subtasks: Copy subtasks - label_copied_to: copied to - label_copied_from: copied from - label_any_issues_in_project: any issues in project - label_any_issues_not_in_project: any issues not in project - field_private_notes: Private notes - permission_view_private_notes: View private notes - permission_set_notes_private: Set notes as private - label_no_issues_in_project: no issues in project - label_any: semua - label_last_n_weeks: last %{count} weeks - setting_cross_project_subtasks: Allow cross-project subtasks - label_cross_project_descendants: Dengan subproyek - label_cross_project_tree: Dengan pohon proyek - label_cross_project_hierarchy: Dengan hirarki proyek - label_cross_project_system: Dengan semua proyek - button_hide: Hide - setting_non_working_week_days: Non-working days - label_in_the_next_days: in the next - label_in_the_past_days: in the past - label_attribute_of_user: User's %{name} - text_turning_multiple_off: If you disable multiple values, multiple values will be - removed in order to preserve only one value per item. - label_attribute_of_issue: Issue's %{name} - permission_add_documents: Add documents - permission_edit_documents: Edit documents - permission_delete_documents: Delete documents - label_gantt_progress_line: Progress line - setting_jsonp_enabled: Enable JSONP support - field_inherit_members: Inherit members - field_closed_on: Closed - field_generate_password: Generate password - setting_default_projects_tracker_ids: Default trackers for new projects - label_total_time: Total - text_scm_config: You can configure your SCM commands in config/configuration.yml. Please restart the application after editing it. - text_scm_command_not_available: SCM command is not available. Please check settings on the administration panel. - setting_emails_header: Email header - notice_account_not_activated_yet: You haven't activated your account yet. If you want - to receive a new activation email, please click this link. - notice_account_locked: Your account is locked. - label_hidden: Hidden - label_visibility_private: to me only - label_visibility_roles: to these roles only - label_visibility_public: to any users - field_must_change_passwd: Must change password at next logon - notice_new_password_must_be_different: The new password must be different from the - current password - setting_mail_handler_excluded_filenames: Exclude attachments by name - text_convert_available: ImageMagick convert available (optional) - label_link: Link - label_only: only - label_drop_down_list: drop-down list - label_checkboxes: checkboxes - label_link_values_to: Link values to URL - setting_force_default_language_for_anonymous: Force default language for anonymous - users - setting_force_default_language_for_loggedin: Force default language for logged-in - users - label_custom_field_select_type: Select the type of object to which the custom field - is to be attached - label_issue_assigned_to_updated: Assignee updated - label_check_for_updates: Check for updates - label_latest_compatible_version: Latest compatible version - label_unknown_plugin: Unknown plugin - label_radio_buttons: radio buttons - label_group_anonymous: Anonymous users - label_group_non_member: Non member users - label_add_projects: Add projects - field_default_status: Default status - text_subversion_repository_note: 'Examples: file:///, http://, https://, svn://, svn+[tunnelscheme]://' - field_users_visibility: Users visibility - label_users_visibility_all: All active users - label_users_visibility_members_of_visible_projects: Members of visible projects - label_edit_attachments: Edit attached files - setting_link_copied_issue: Link issues on copy - label_link_copied_issue: Link copied issue - label_ask: Ask - label_search_attachments_yes: Search attachment filenames and descriptions - label_search_attachments_no: Do not search attachments - label_search_attachments_only: Search attachments only - label_search_open_issues_only: Open issues only - field_address: Email - setting_max_additional_emails: Maximum number of additional email addresses - label_email_address_plural: Emails - label_email_address_add: Add email address - label_enable_notifications: Enable notifications - label_disable_notifications: Disable notifications - setting_search_results_per_page: Search results per page - label_blank_value: blank - permission_copy_issues: Copy issues - error_password_expired: Your password has expired or the administrator requires you - to change it. - field_time_entries_visibility: Time logs visibility - setting_password_max_age: Require password change after - label_parent_task_attributes: Parent tasks attributes - label_parent_task_attributes_derived: Calculated from subtasks - label_parent_task_attributes_independent: Independent of subtasks - label_time_entries_visibility_all: All time entries - label_time_entries_visibility_own: Time entries created by the user - label_member_management: Member management - label_member_management_all_roles: All roles - label_member_management_selected_roles_only: Only these roles - label_password_required: Confirm your password to continue - label_total_spent_time: Overall spent time - notice_import_finished: "%{count} items have been imported" - notice_import_finished_with_errors: "%{count} out of %{total} items could not be imported" - error_invalid_file_encoding: The file is not a valid %{encoding} encoded file - error_invalid_csv_file_or_settings: The file is not a CSV file or does not match the - settings below - error_can_not_read_import_file: An error occurred while reading the file to import - permission_import_issues: Import issues - label_import_issues: Import issues - label_select_file_to_import: Select the file to import - label_fields_separator: Field separator - label_fields_wrapper: Field wrapper - label_encoding: Encoding - label_comma_char: Comma - label_semi_colon_char: Semicolon - label_quote_char: Quote - label_double_quote_char: Double quote - label_fields_mapping: Fields mapping - label_file_content_preview: File content preview - label_create_missing_values: Create missing values - button_import: Import - field_total_estimated_hours: Total estimated time - label_api: API - label_total_plural: Totals - label_assigned_issues: Assigned issues - label_field_format_enumeration: Key/value list - label_f_hour_short: '%{value} h' - field_default_version: Default version - error_attachment_extension_not_allowed: Attachment extension %{extension} is not allowed - setting_attachment_extensions_allowed: Allowed extensions - setting_attachment_extensions_denied: Disallowed extensions - label_any_open_issues: any open issues - label_no_open_issues: no open issues - label_default_values_for_new_users: Default values for new users - error_ldap_bind_credentials: Invalid LDAP Account/Password - setting_sys_api_key: API key - setting_lost_password: Lupa password - mail_subject_security_notification: Security notification - mail_body_security_notification_change: ! '%{field} was changed.' - mail_body_security_notification_change_to: ! '%{field} was changed to %{value}.' - mail_body_security_notification_add: ! '%{field} %{value} was added.' - mail_body_security_notification_remove: ! '%{field} %{value} was removed.' - mail_body_security_notification_notify_enabled: Email address %{value} now receives - notifications. - mail_body_security_notification_notify_disabled: Email address %{value} no longer - receives notifications. - mail_body_settings_updated: ! 'The following settings were changed:' - field_remote_ip: IP address - label_wiki_page_new: New wiki page - label_relations: Relations - button_filter: Filter - mail_body_password_updated: Your password has been changed. - label_no_preview: No preview available - error_no_tracker_allowed_for_new_issue_in_project: The project doesn't have any trackers - for which you can create an issue - label_tracker_all: All trackers - label_new_project_issue_tab_enabled: Display the "New issue" tab - setting_new_item_menu_tab: Project menu tab for creating new objects - label_new_object_tab_enabled: Display the "+" drop-down - error_no_projects_with_tracker_allowed_for_new_issue: There are no projects with trackers - for which you can create an issue - field_textarea_font: Font used for text areas - label_font_default: Default font - label_font_monospace: Monospaced font - label_font_proportional: Proportional font - setting_timespan_format: Time span format - label_table_of_contents: Table of contents - setting_commit_logs_formatting: Apply text formatting to commit messages - setting_mail_handler_enable_regex: Enable regular expressions - error_move_of_child_not_possible: 'Subtask %{child} could not be moved to the new - project: %{errors}' - error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted: Spent time cannot - be reassigned to an issue that is about to be deleted - setting_timelog_required_fields: Required fields for time logs - label_attribute_of_object: '%{object_name}''s %{name}' - label_user_mail_option_only_assigned: Only for things I watch or I am assigned to - label_user_mail_option_only_owner: Only for things I watch or I am the owner of - warning_fields_cleared_on_bulk_edit: Changes will result in the automatic deletion - of values from one or more fields on the selected objects - field_updated_by: Updated by - field_last_updated_by: Last updated by - field_full_width_layout: Full width layout - label_last_notes: Last notes - field_digest: Checksum - field_default_assigned_to: Default assignee - setting_show_custom_fields_on_registration: Show custom fields on registration - permission_view_news: View news - label_no_preview_alternative_html: No preview available. %{link} the file instead. - label_no_preview_download: Download - setting_close_duplicate_issues: Close duplicate issues automatically - error_exceeds_maximum_hours_per_day: Cannot log more than %{max_hours} hours on the - same day (%{logged_hours} hours have already been logged) - setting_time_entry_list_defaults: Timelog list defaults - setting_timelog_accept_0_hours: Accept time logs with 0 hours - setting_timelog_max_hours_per_day: Maximum hours that can be logged per day and user - label_x_revisions: "%{count} revisions" - error_can_not_delete_auth_source: This authentication mode is in use and cannot be - deleted. - button_actions: Actions - mail_body_lost_password_validity: Please be aware that you may change the password - only once using this link. - text_login_required_html: When not requiring authentication, public projects and their - contents are openly available on the network. You can edit - the applicable permissions. - label_login_required_yes: 'Yes' - label_login_required_no: No, allow anonymous access to public projects - text_project_is_public_non_member: Public projects and their contents are available - to all logged-in users. - text_project_is_public_anonymous: Public projects and their contents are openly available - on the network. - label_version_and_files: Versions (%{count}) and Files - label_ldap: LDAP - label_ldaps_verify_none: LDAPS (without certificate check) - label_ldaps_verify_peer: LDAPS - label_ldaps_warning: It is recommended to use an encrypted LDAPS connection with certificate - check to prevent any manipulation during the authentication process. - label_nothing_to_preview: Nothing to preview - error_token_expired: This password recovery link has expired, please try again. - error_spent_on_future_date: Cannot log time on a future date - setting_timelog_accept_future_dates: Accept time logs on future dates - label_delete_link_to_subtask: Hapus kaitan - error_not_allowed_to_log_time_for_other_users: You are not allowed to log time - for other users - permission_log_time_for_other_users: Log spent time for other users - label_tomorrow: tomorrow - label_next_week: next week - label_next_month: next month - text_role_no_workflow: No workflow defined for this role - text_status_no_workflow: No tracker uses this status in the workflows - setting_mail_handler_preferred_body_part: Preferred part of multipart (HTML) emails - setting_show_status_changes_in_mail_subject: Show status changes in issue mail notifications - subject - label_inherited_from_parent_project: Inherited from parent project - label_inherited_from_group: Inherited from group %{name} - label_trackers_description: Trackers description - label_open_trackers_description: View all trackers description - label_preferred_body_part_text: Text - label_preferred_body_part_html: HTML (experimental) - field_parent_issue_subject: Parent task subject - permission_edit_own_issues: Edit own issues - text_select_apply_tracker: Select tracker - label_updated_issues: Updated issues - text_avatar_server_config_html: The current avatar server is %{url}. - You can configure it in config/configuration.yml. - setting_gantt_months_limit: Maximum number of months displayed on the gantt chart - permission_import_time_entries: Import time entries - label_import_notifications: Send email notifications during the import - text_gs_available: ImageMagick PDF support available (optional) - field_recently_used_projects: Number of recently used projects in jump box - label_optgroup_bookmarks: Bookmarks - label_optgroup_others: Other projects - label_optgroup_recents: Recently used - button_project_bookmark: Add bookmark - button_project_bookmark_delete: Remove bookmark - field_history_default_tab: Issue's history default tab - label_issue_history_properties: Property changes - label_issue_history_notes: Notes - label_last_tab_visited: Last visited tab - field_unique_id: Unique ID - text_no_subject: no subject - setting_password_required_char_classes: Required character classes for passwords - label_password_char_class_uppercase: uppercase letters - label_password_char_class_lowercase: lowercase letters - label_password_char_class_digits: digits - label_password_char_class_special_chars: special characters - text_characters_must_contain: Must contain %{character_classes}. - label_starts_with: starts with - label_ends_with: ends with - label_issue_fixed_version_updated: Target version updated - setting_project_list_defaults: Projects list defaults - label_display_type: Display results as - label_display_type_list: List - label_display_type_board: Board - label_my_bookmarks: My bookmarks - label_import_time_entries: Import time entries diff --git a/config/locales/it.yml b/config/locales/it.yml deleted file mode 100644 index ba28f41..0000000 --- a/config/locales/it.yml +++ /dev/null @@ -1,1308 +0,0 @@ -# Italian translations for Ruby on Rails -# by Claudio Poli (masterkain@gmail.com) -# by Diego Pierotto (ita.translations@tiscali.it) -# by Emidio Stani (emidiostani@gmail.com) - -it: - direction: ltr - date: - formats: - default: "%d-%m-%Y" - short: "%d %b" - long: "%d %B %Y" - only_day: "%e" - - day_names: [Domenica, Lunedì, Martedì, Mercoledì, Giovedì, Venerdì, Sabato] - abbr_day_names: [Dom, Lun, Mar, Mer, Gio, Ven, Sab] - month_names: [~, Gennaio, Febbraio, Marzo, Aprile, Maggio, Giugno, Luglio, Agosto, Settembre, Ottobre, Novembre, Dicembre] - abbr_month_names: [~, Gen, Feb, Mar, Apr, Mag, Giu, Lug, Ago, Set, Ott, Nov, Dic] - order: - - :day - - :month - - :year - - time: - formats: - default: "%a %d %b %Y, %H:%M:%S %z" - time: "%H:%M" - short: "%d %b %H:%M" - long: "%d %B %Y %H:%M" - only_second: "%S" - - datetime: - formats: - default: "%d-%m-%YT%H:%M:%S%Z" - - am: 'am' - pm: 'pm' - - datetime: - distance_in_words: - half_a_minute: "mezzo minuto" - less_than_x_seconds: - one: "meno di un secondo" - other: "meno di %{count} secondi" - x_seconds: - one: "1 secondo" - other: "%{count} secondi" - less_than_x_minutes: - one: "meno di un minuto" - other: "meno di %{count} minuti" - x_minutes: - one: "1 minuto" - other: "%{count} minuti" - about_x_hours: - one: "circa un'ora" - other: "circa %{count} ore" - x_hours: - one: "1 ora" - other: "%{count} ore" - x_days: - one: "1 giorno" - other: "%{count} giorni" - about_x_months: - one: "circa un mese" - other: "circa %{count} mesi" - x_months: - one: "1 mese" - other: "%{count} mesi" - about_x_years: - one: "circa un anno" - other: "circa %{count} anni" - over_x_years: - one: "oltre un anno" - other: "oltre %{count} anni" - almost_x_years: - one: "quasi 1 anno" - other: "quasi %{count} anni" - - number: - format: - precision: 3 - separator: ',' - delimiter: '.' - currency: - format: - unit: '€' - precision: 2 - format: '%n %u' - human: - storage_units: - format: "%n %u" - units: - byte: - one: "Byte" - other: "Bytes" - kb: "KB" - mb: "MB" - gb: "GB" - tb: "TB" - - support: - array: - sentence_connector: "e" - skip_last_comma: false - - activerecord: - errors: - template: - header: - one: "Non posso salvare questo %{model}: 1 errore" - other: "Non posso salvare questo %{model}: %{count} errori." - body: "Per favore ricontrolla i seguenti campi:" - messages: - inclusion: "non è incluso nella lista" - exclusion: "è riservato" - invalid: "non è valido" - confirmation: "non coincide con la conferma" - accepted: "deve essere accettata" - empty: "non può essere vuoto" - blank: "non può essere lasciato in bianco" - too_long: "è troppo lungo (il massimo è %{count} lettere)" - too_short: "è troppo corto (il minimo è %{count} lettere)" - wrong_length: "è della lunghezza sbagliata (deve essere di %{count} lettere)" - taken: "è già in uso" - not_a_number: "non è un numero" - greater_than: "deve essere superiore a %{count}" - greater_than_or_equal_to: "deve essere superiore o uguale a %{count}" - equal_to: "deve essere uguale a %{count}" - less_than: "deve essere meno di %{count}" - less_than_or_equal_to: "deve essere meno o uguale a %{count}" - odd: "deve essere dispari" - even: "deve essere pari" - greater_than_start_date: "deve essere maggiore della data di partenza" - not_same_project: "non appartiene allo stesso progetto" - circular_dependency: "Questa relazione creerebbe una dipendenza circolare" - cant_link_an_issue_with_a_descendant: "Una segnalazione non può essere collegata a una delle sue discendenti" - earlier_than_minimum_start_date: "non può essere precedente a %{date} a causa di una precedente segnalazione" - not_a_regexp: "is not a valid regular expression" - open_issue_with_closed_parent: "An open issue cannot be attached to a closed parent task" - must_contain_uppercase: "must contain uppercase letters (A-Z)" - must_contain_lowercase: "must contain lowercase letters (a-z)" - must_contain_digits: "must contain digits (0-9)" - must_contain_special_chars: "must contain special characters (!, $, %, ...)" - - actionview_instancetag_blank_option: Scegli - - general_text_No: 'No' - general_text_Yes: 'Sì' - general_text_no: 'no' - general_text_yes: 'sì' - general_lang_name: 'Italian (Italiano)' - general_csv_separator: ';' - general_csv_decimal_separator: ',' - general_csv_encoding: ISO-8859-1 - general_pdf_fontname: freesans - general_pdf_monospaced_fontname: freemono - general_first_day_of_week: '1' - - notice_account_updated: L'utente è stato aggiornato. - notice_account_invalid_credentials: Nome utente o password non validi. - notice_account_password_updated: La password è stata aggiornata. - notice_account_wrong_password: Password errata - notice_account_unknown_email: Utente sconosciuto. - notice_can_t_change_password: Questo utente utilizza un metodo di autenticazione esterno. Impossibile cambiare la password. - notice_account_lost_email_sent: Ti è stata spedita una email con le istruzioni per cambiare la password. - notice_account_activated: Il tuo account è stato attivato. Ora puoi effettuare l'accesso. - notice_successful_create: Creazione effettuata con successo. - notice_successful_update: Modifica effettuata con successo. - notice_successful_delete: Eliminazione effettuata con successo. - notice_successful_connection: Connessione con successo. - notice_file_not_found: La pagina desiderata non esiste o è stata rimossa. - notice_locking_conflict: Le informazioni sono state modificate da un altro utente. - notice_not_authorized: Non sei autorizzato ad accedere a questa pagina. - notice_email_sent: "Una email è stata spedita a %{value}" - notice_email_error: "Si è verificato un errore durante l'invio di una email (%{value})" - notice_feeds_access_key_reseted: La tua chiave di accesso Atom è stata reimpostata. - - error_scm_not_found: "La risorsa e/o la versione non esistono nel repository." - error_scm_command_failed: "Si è verificato un errore durante l'accesso al repository: %{value}" - - mail_subject_lost_password: "Password %{value}" - mail_body_lost_password: 'Per cambiare la password, usa il seguente collegamento:' - mail_subject_register: "Attivazione utente %{value}" - mail_body_register: "Per attivare l'utente, usa il seguente collegamento:" - - - field_name: Nome - field_description: Descrizione - field_summary: Sommario - field_is_required: Richiesto - field_firstname: Nome - field_lastname: Cognome - field_mail: Email - field_filename: File - field_filesize: Dimensione - field_downloads: Download - field_author: Autore - field_created_on: Creato - field_updated_on: Aggiornato - field_field_format: Formato - field_is_for_all: Per tutti i progetti - field_possible_values: Valori possibili - field_regexp: Espressione regolare - field_min_length: Lunghezza minima - field_max_length: Lunghezza massima - field_value: Valore - field_category: Categoria - field_title: Titolo - field_project: Progetto - field_issue: Segnalazione - field_status: Stato - field_notes: Note - field_is_closed: Chiudi la segnalazione - field_is_default: Stato predefinito - field_tracker: Tracker - field_subject: Oggetto - field_due_date: Scadenza - field_assigned_to: Assegnato a - field_priority: Priorità - field_fixed_version: Versione prevista - field_user: Utente - field_role: Ruolo - field_homepage: Homepage - field_is_public: Pubblico - field_parent: Sottoprogetto di - field_is_in_roadmap: Segnalazioni mostrate nella roadmap - field_login: Utente - field_mail_notification: Notifiche via email - field_admin: Amministratore - field_last_login_on: Ultima connessione - field_language: Lingua - field_effective_date: Data - field_password: Password - field_new_password: Nuova password - field_password_confirmation: Conferma - field_version: Versione - field_type: Tipo - field_host: Host - field_port: Porta - field_account: Utente - field_base_dn: DN base - field_attr_login: Attributo connessione - field_attr_firstname: Attributo nome - field_attr_lastname: Attributo cognome - field_attr_mail: Attributo email - field_onthefly: Creazione utente "al volo" - field_start_date: Inizio - field_done_ratio: "% Completato" - field_auth_source: Modalità di autenticazione - field_hide_mail: Nascondi il mio indirizzo email - field_comments: Commento - field_url: URL - field_start_page: Pagina principale - field_subproject: Sottoprogetto - field_hours: Ore - field_activity: Attività - field_spent_on: Data - field_identifier: Identificativo - field_is_filter: Usato come filtro - field_issue_to: Segnalazioni correlate - field_delay: Ritardo - field_assignable: E' possibile assegnare segnalazioni a questo ruolo - field_redirect_existing_links: Redirige i collegamenti esistenti - field_estimated_hours: Tempo stimato - field_default_value: Stato predefinito - - setting_app_title: Titolo applicazione - setting_welcome_text: Testo di benvenuto - setting_default_language: Lingua predefinita - setting_login_required: Autenticazione richiesta - setting_self_registration: Auto-registrazione abilitata - setting_attachment_max_size: Dimensione massima allegati - setting_issues_export_limit: Limite esportazione segnalazioni - setting_mail_from: Indirizzo sorgente email - setting_host_name: Nome host - setting_text_formatting: Formattazione testo - setting_wiki_compression: Comprimi cronologia wiki - setting_feeds_limit: Limite contenuti del feed - setting_autofetch_changesets: Acquisisci automaticamente le commit - setting_sys_api_enabled: Abilita WS per la gestione del repository - setting_commit_ref_keywords: Parole chiave riferimento - setting_commit_fix_keywords: Parole chiave chiusura - setting_autologin: Connessione automatica - setting_date_format: Formato data - setting_cross_project_issue_relations: Consenti la creazione di relazioni tra segnalazioni in progetti differenti - - label_user: Utente - label_user_plural: Utenti - label_user_new: Nuovo utente - label_project: Progetto - label_project_new: Nuovo progetto - label_project_plural: Progetti - label_x_projects: - zero: nessun progetto - one: 1 progetto - other: "%{count} progetti" - label_project_all: Tutti i progetti - label_project_latest: Ultimi progetti registrati - label_issue: Segnalazione - label_issue_new: Nuova segnalazione - label_issue_plural: Segnalazioni - label_issue_view_all: Mostra tutte le segnalazioni - label_document: Documento - label_document_new: Nuovo documento - label_document_plural: Documenti - label_role: Ruolo - label_role_plural: Ruoli - label_role_new: Nuovo ruolo - label_role_and_permissions: Ruoli e permessi - label_member: Membro - label_member_new: Nuovo membro - label_member_plural: Membri - label_tracker: Tracker - label_tracker_plural: Tracker - label_tracker_new: Nuovo tracker - label_workflow: Workflow - label_issue_status: Stato segnalazione - label_issue_status_plural: Stati segnalazioni - label_issue_status_new: Nuovo stato - label_issue_category: Categoria segnalazione - label_issue_category_plural: Categorie segnalazioni - label_issue_category_new: Nuova categoria - label_custom_field: Campo personalizzato - label_custom_field_plural: Campi personalizzati - label_custom_field_new: Nuovo campo personalizzato - label_enumerations: Enumerazioni - label_enumeration_new: Nuovo valore - label_information: Informazione - label_information_plural: Informazioni - label_register: Registrati - label_password_lost: Password dimenticata - label_home: Home - label_my_page: Pagina personale - label_my_account: Il mio utente - label_my_projects: I miei progetti - label_administration: Amministrazione - label_login: Entra - label_logout: Esci - label_help: Aiuto - label_reported_issues: Segnalazioni - label_assigned_to_me_issues: Le mie segnalazioni - label_last_login: Ultimo collegamento - label_registered_on: Registrato il - label_activity: Attività - label_new: Nuovo - label_logged_as: Collegato come - label_environment: Ambiente - label_authentication: Autenticazione - label_auth_source: Modalità di autenticazione - label_auth_source_new: Nuova modalità di autenticazione - label_auth_source_plural: Modalità di autenticazione - label_subproject_plural: Sottoprogetti - label_min_max_length: Lunghezza minima - massima - label_list: Elenco - label_date: Data - label_integer: Intero - label_boolean: Booleano - label_string: Testo - label_text: Testo esteso - label_attribute: Attributo - label_attribute_plural: Attributi - label_no_data: Nessun dato disponibile - label_change_status: Cambia stato - label_history: Cronologia - label_attachment: File - label_attachment_new: Nuovo file - label_attachment_delete: Elimina file - label_attachment_plural: File - label_report: Report - label_report_plural: Report - label_news: Notizia - label_news_new: Aggiungi notizia - label_news_plural: Notizie - label_news_latest: Utime notizie - label_news_view_all: Tutte le notizie - label_settings: Impostazioni - label_overview: Panoramica - label_version: Versione - label_version_new: Nuova versione - label_version_plural: Versioni - label_confirmation: Conferma - label_export_to: Esporta su - label_read: Leggi... - label_public_projects: Progetti pubblici - label_open_issues: aperta - label_open_issues_plural: aperte - label_closed_issues: chiusa - label_closed_issues_plural: chiuse - label_x_open_issues_abbr: - zero: 0 aperte - one: 1 aperta - other: "%{count} aperte" - label_x_closed_issues_abbr: - zero: 0 chiuse - one: 1 chiusa - other: "%{count} chiuse" - label_total: Totale - label_permissions: Permessi - label_current_status: Stato attuale - label_new_statuses_allowed: Nuovi stati possibili - label_all: tutti - label_none: nessuno - label_next: Successivo - label_previous: Precedente - label_used_by: Usato da - label_details: Dettagli - label_add_note: Aggiungi una nota - label_calendar: Calendario - label_months_from: mesi da - label_gantt: Gantt - label_internal: Interno - label_last_changes: "ultime %{count} modifiche" - label_change_view_all: Tutte le modifiche - label_comment: Commento - label_comment_plural: Commenti - label_x_comments: - zero: nessun commento - one: 1 commento - other: "%{count} commenti" - label_comment_add: Aggiungi un commento - label_comment_added: Commento aggiunto - label_comment_delete: Elimina commenti - label_query: Query personalizzata - label_query_plural: Query personalizzate - label_query_new: Nuova query - label_filter_add: Aggiungi filtro - label_filter_plural: Filtri - label_equals: è - label_not_equals: non è - label_in_less_than: è minore di - label_in_more_than: è maggiore di - label_in: in - label_today: oggi - label_this_week: questa settimana - label_less_than_ago: meno di giorni fa - label_more_than_ago: più di giorni fa - label_ago: giorni fa - label_contains: contiene - label_not_contains: non contiene - label_day_plural: giorni - label_repository: Repository - label_browse: Sfoglia - label_revision: Versione - label_revision_plural: Versioni - label_added: aggiunto - label_modified: modificato - label_deleted: eliminato - label_latest_revision: Ultima versione - label_latest_revision_plural: Ultime versioni - label_view_revisions: Mostra versioni - label_max_size: Dimensione massima - label_sort_highest: Sposta in cima - label_sort_higher: Su - label_sort_lower: Giù - label_sort_lowest: Sposta in fondo - label_roadmap: Roadmap - label_roadmap_due_in: "Da ultimare in %{value}" - label_roadmap_overdue: "%{value} di ritardo" - label_roadmap_no_issues: Nessuna segnalazione per questa versione - label_search: Ricerca - label_result_plural: Risultati - label_all_words: Tutte le parole - label_wiki: Wiki - label_wiki_edit: Modifica wiki - label_wiki_edit_plural: Modifiche wiki - label_wiki_page: Pagina Wiki - label_wiki_page_plural: Pagine wiki - label_index_by_title: Ordina per titolo - label_index_by_date: Ordina per data - label_current_version: Versione corrente - label_preview: Anteprima - label_feed_plural: Feed - label_changes_details: Particolari di tutti i cambiamenti - label_issue_tracking: Tracking delle segnalazioni - label_spent_time: Tempo impiegato - label_f_hour: "%{value} ora" - label_f_hour_plural: "%{value} ore" - label_time_tracking: Tracking del tempo - label_change_plural: Modifiche - label_statistics: Statistiche - label_commits_per_month: Commit per mese - label_commits_per_author: Commit per autore - label_view_diff: mostra differenze - label_diff_inline: in linea - label_diff_side_by_side: fianco a fianco - label_options: Opzioni - label_copy_workflow_from: Copia workflow da - label_permissions_report: Report permessi - label_watched_issues: Segnalazioni osservate - label_related_issues: Segnalazioni correlate - label_applied_status: Stato applicato - label_loading: Caricamento... - label_relation_new: Nuova relazione - label_relation_delete: Elimina relazione - label_relates_to: Correlata a - label_duplicates: Duplica - label_blocks: Blocca - label_blocked_by: Bloccata da - label_precedes: Precede - label_follows: Segue - label_stay_logged_in: Rimani collegato - label_disabled: disabilitato - label_show_completed_versions: Mostra versioni completate - label_me: io - label_board: Forum - label_board_new: Nuovo forum - label_board_plural: Forum - label_topic_plural: Argomenti - label_message_plural: Messaggi - label_message_last: Ultimo messaggio - label_message_new: Nuovo messaggio - label_reply_plural: Risposte - label_send_information: Invia all'utente le informazioni relative all'account - label_year: Anno - label_month: Mese - label_week: Settimana - label_date_from: Da - label_date_to: A - label_language_based: Basato sul linguaggio - label_sort_by: "Ordina per %{value}" - label_send_test_email: Invia una email di prova - label_feeds_access_key_created_on: "chiave di accesso Atom creata %{value} fa" - label_module_plural: Moduli - label_added_time_by: "Aggiunto da %{author} %{age} fa" - label_updated_time: "Aggiornato %{value} fa" - label_jump_to_a_project: Vai al progetto... - - button_login: Entra - button_submit: Invia - button_save: Salva - button_check_all: Seleziona tutti - button_uncheck_all: Deseleziona tutti - button_delete: Elimina - button_create: Crea - button_test: Prova - button_edit: Modifica - button_add: Aggiungi - button_change: Cambia - button_apply: Applica - button_clear: Pulisci - button_lock: Blocca - button_unlock: Sblocca - button_download: Scarica - button_list: Elenca - button_view: Mostra - button_move: Sposta - button_back: Indietro - button_cancel: Annulla - button_activate: Attiva - button_sort: Ordina - button_log_time: Registra tempo - button_rollback: Ripristina questa versione - button_watch: Osserva - button_unwatch: Dimentica - button_reply: Rispondi - button_archive: Archivia - button_unarchive: Ripristina - button_reset: Reimposta - button_rename: Rinomina - - status_active: attivo - status_registered: registrato - status_locked: bloccato - - text_select_mail_notifications: Seleziona le azioni per cui deve essere inviata una notifica. - text_regexp_info: es. ^[A-Z0-9]+$ - text_min_max_length_info: 0 significa nessuna restrizione - text_project_destroy_confirmation: Sei sicuro di voler eliminare il progetto e tutti i dati ad esso collegati? - text_workflow_edit: Seleziona un ruolo ed un tracker per modificare il workflow - text_are_you_sure: Sei sicuro ? - text_tip_issue_begin_day: attività che iniziano in questa giornata - text_tip_issue_end_day: attività che terminano in questa giornata - text_tip_issue_begin_end_day: attività che iniziano e terminano in questa giornata - text_caracters_maximum: "massimo %{count} caratteri." - text_length_between: "Lunghezza compresa tra %{min} e %{max} caratteri." - text_tracker_no_workflow: Nessun workflow definito per questo tracker - text_unallowed_characters: Caratteri non permessi - text_comma_separated: Valori multipli permessi (separati da virgole). - text_issues_ref_in_commit_messages: Segnalazioni di riferimento e chiusura nei messaggi di commit - text_issue_added: "%{author} ha aggiunto la segnalazione %{id}." - text_issue_updated: "La segnalazione %{id} è stata aggiornata da %{author}." - text_wiki_destroy_confirmation: Sicuro di voler eliminare questo wiki e tutti i suoi contenuti? - text_issue_category_destroy_question: "Alcune segnalazioni (%{count}) risultano assegnate a questa categoria. Cosa vuoi fare ?" - text_issue_category_destroy_assignments: Rimuovi le assegnazioni a questa categoria - text_issue_category_reassign_to: Riassegna segnalazioni a questa categoria - - default_role_manager: Gestore - default_role_developer: Sviluppatore - default_role_reporter: Segnalatore - default_tracker_bug: Segnalazione - default_tracker_feature: Funzione - default_tracker_support: Supporto - default_issue_status_new: Nuovo - default_issue_status_in_progress: In elaborazione - default_issue_status_resolved: Risolto - default_issue_status_feedback: Commenti - default_issue_status_closed: Chiuso - default_issue_status_rejected: Rifiutato - default_doc_category_user: Documentazione utente - default_doc_category_tech: Documentazione tecnica - default_priority_low: Bassa - default_priority_normal: Normale - default_priority_high: Alta - default_priority_urgent: Urgente - default_priority_immediate: Immediata - default_activity_design: Progettazione - default_activity_development: Sviluppo - - enumeration_issue_priorities: Priorità segnalazioni - enumeration_doc_categories: Categorie di documenti - enumeration_activities: Attività (time tracking) - label_file_plural: File - label_changeset_plural: Changeset - field_column_names: Colonne - label_default_columns: Colonne predefinite - setting_issue_list_default_columns: Colonne predefinite mostrate nell'elenco segnalazioni - notice_no_issue_selected: "Nessuna segnalazione selezionata! Seleziona le segnalazioni che intendi modificare." - label_bulk_edit_selected_issues: Modifica massiva delle segnalazioni selezionate - label_no_change_option: (Nessuna modifica) - notice_failed_to_save_issues: "Impossibile salvare %{count} segnalazioni su %{total} selezionate: %{ids}." - label_theme: Tema - label_default: Predefinito - label_search_titles_only: Cerca solo nei titoli - label_nobody: nessuno - button_change_password: Modifica password - text_user_mail_option: "Per i progetti non selezionati, riceverai solo le notifiche riguardanti le cose che osservi o nelle quali sei coinvolto (per esempio segnalazioni che hai creato o che ti sono state assegnate)." - label_user_mail_option_selected: "Solo per gli eventi relativi ai progetti selezionati..." - label_user_mail_option_all: "Per ogni evento relativo ad uno dei miei progetti" - setting_emails_footer: Piè di pagina email - label_float: Decimale - button_copy: Copia - mail_body_account_information_external: "Puoi utilizzare il tuo account %{value} per accedere al sistema." - mail_body_account_information: Le informazioni riguardanti il tuo account - setting_protocol: Protocollo - label_user_mail_no_self_notified: "Non voglio notifiche riguardanti modifiche da me apportate" - setting_time_format: Formato ora - label_registration_activation_by_email: attivazione account via email - mail_subject_account_activation_request: "%{value} richiesta attivazione account" - mail_body_account_activation_request: "Un nuovo utente (%{value}) ha effettuato la registrazione. Il suo account è in attesa di abilitazione da parte tua:" - label_registration_automatic_activation: attivazione account automatica - label_registration_manual_activation: attivazione account manuale - notice_account_pending: "Il tuo account è stato creato ed è in attesa di attivazione da parte dell'amministratore." - field_time_zone: Fuso orario - text_caracters_minimum: "Deve essere lungo almeno %{count} caratteri." - setting_bcc_recipients: Destinatari in copia nascosta (bcc) - button_annotate: Annota - label_issues_by: "Segnalazioni di %{value}" - field_searchable: Ricercabile - label_display_per_page: "Per pagina: %{value}" - setting_per_page_options: Opzioni oggetti per pagina - label_age: Età - notice_default_data_loaded: Configurazione predefinita caricata con successo. - text_load_default_configuration: Carica la configurazione predefinita - text_no_configuration_data: "Ruoli, tracker, stati delle segnalazioni e workflow non sono stati ancora configurati.\nE' vivamente consigliato caricare la configurazione predefinita. Potrai modificarla una volta caricata." - error_can_t_load_default_data: "Non è stato possibile caricare la configurazione predefinita : %{value}" - button_update: Aggiorna - label_change_properties: Modifica le proprietà - label_general: Generale - label_repository_plural: Repository - label_associated_revisions: Revisioni associate - setting_user_format: Formato visualizzazione utenti - text_status_changed_by_changeset: "Applicata nel changeset %{value}." - text_issues_destroy_confirmation: 'Sei sicuro di voler eliminare le segnalazioni selezionate?' - label_scm: SCM - text_select_project_modules: 'Seleziona i moduli abilitati per questo progetto:' - label_issue_added: Segnalazioni aggiunte - label_issue_updated: Segnalazioni aggiornate - label_document_added: Documenti aggiunti - label_message_posted: Messaggi aggiunti - label_file_added: File aggiunti - label_news_added: Notizie aggiunte - project_module_boards: Forum - project_module_issue_tracking: Tracking delle segnalazioni - project_module_wiki: Wiki - project_module_files: File - project_module_documents: Documenti - project_module_repository: Repository - project_module_news: Notizie - project_module_time_tracking: Time tracking - text_file_repository_writable: Repository dei file scrivibile - text_default_administrator_account_changed: L'account amministrativo predefinito è stato modificato - text_minimagick_available: MiniMagick disponibile (opzionale) - button_configure: Configura - label_plugins: Plugin - label_ldap_authentication: Autenticazione LDAP - label_downloads_abbr: D/L - label_this_month: questo mese - label_last_n_days: "ultimi %{count} giorni" - label_this_year: quest'anno - label_date_range: Intervallo di date - label_last_week: ultima settimana - label_yesterday: ieri - label_last_month: ultimo mese - label_add_another_file: Aggiungi un altro file - label_optional_description: Descrizione opzionale - text_destroy_time_entries_question: "%{hours} ore risultano spese sulle segnalazioni che stai per eliminare. Cosa vuoi fare ?" - error_issue_not_found_in_project: 'La segnalazione non è stata trovata o non appartiene al progetto' - text_assign_time_entries_to_project: Assegna le ore segnalate al progetto - text_destroy_time_entries: Elimina le ore segnalate - text_reassign_time_entries: 'Riassegna le ore a questa segnalazione:' - setting_activity_days_default: Giorni mostrati sulle attività di progetto - label_chronological_order: In ordine cronologico - field_comments_sorting: Mostra commenti - label_reverse_chronological_order: In ordine cronologico inverso - label_preferences: Preferenze - setting_display_subprojects_issues: Mostra le segnalazioni dei sottoprogetti nel progetto principale in modo predefinito - label_overall_activity: Attività generale - setting_default_projects_public: I nuovi progetti sono pubblici in modo predefinito - error_scm_annotate: "L'oggetto non esiste o non può essere annotato." - text_subprojects_destroy_warning: "Anche i suoi sottoprogetti: %{value} verranno eliminati." - label_and_its_subprojects: "%{value} ed i suoi sottoprogetti" - mail_body_reminder: "%{count} segnalazioni che ti sono state assegnate scadranno nei prossimi %{days} giorni:" - mail_subject_reminder: "%{count} segnalazioni in scadenza nei prossimi %{days} giorni" - text_user_wrote: "%{value} ha scritto:" - text_user_wrote_in: "%{value} ha scritto (%{link}):" - label_duplicated_by: duplicata da - setting_enabled_scm: SCM abilitato - text_enumeration_category_reassign_to: 'Riassegnale a questo valore:' - text_enumeration_destroy_question: "%{count} oggetti hanno un assegnamento su questo valore." - label_incoming_emails: Email in arrivo - label_generate_key: Genera una chiave - setting_mail_handler_api_enabled: Abilita WS per le email in arrivo - setting_mail_handler_api_key: Chiave API - text_email_delivery_not_configured: "La consegna via email non è configurata e le notifiche sono disabilitate.\nConfigura il tuo server SMTP in config/configuration.yml e riavvia l'applicazione per abilitarle." - field_parent_title: Pagina principale - label_issue_watchers: Osservatori - button_quote: Quota - setting_sequential_project_identifiers: Genera progetti con identificativi in sequenza - notice_unable_delete_version: Impossibile eliminare la versione - label_renamed: rinominato - label_copied: copiato - setting_plain_text_mail: Solo testo (non HTML) - permission_view_files: Vedi files - permission_edit_issues: Modifica segnalazioni - permission_edit_own_time_entries: Modifica propri time logs - permission_manage_public_queries: Gestisci query pubbliche - permission_add_issues: Aggiungi segnalazioni - permission_log_time: Segna tempo impiegato - permission_view_changesets: Vedi changesets - permission_view_time_entries: Vedi tempi impiegati - permission_manage_versions: Gestisci versioni - permission_manage_wiki: Gestisci wiki - permission_manage_categories: Gestisci categorie segnalazioni - permission_protect_wiki_pages: Proteggi pagine wiki - permission_comment_news: Commenta notizie - permission_delete_messages: Elimina messaggi - permission_select_project_modules: Seleziona moduli progetto - permission_edit_wiki_pages: Modifica pagine wiki - permission_add_issue_watchers: Aggiungi osservatori - permission_view_gantt: Vedi diagrammi gantt - permission_manage_issue_relations: Gestisci relazioni tra segnalazioni - permission_delete_wiki_pages: Elimina pagine wiki - permission_manage_boards: Gestisci forum - permission_delete_wiki_pages_attachments: Elimina allegati - permission_view_wiki_edits: Vedi cronologia wiki - permission_add_messages: Aggiungi messaggi - permission_view_messages: Vedi messaggi - permission_manage_files: Gestisci files - permission_edit_issue_notes: Modifica note - permission_manage_news: Gestisci notizie - permission_view_calendar: Vedi calendario - permission_manage_members: Gestisci membri - permission_edit_messages: Modifica messaggi - permission_delete_issues: Elimina segnalazioni - permission_view_issue_watchers: Vedi lista osservatori - permission_manage_repository: Gestisci repository - permission_commit_access: Permesso di commit - permission_browse_repository: Sfoglia repository - permission_view_documents: Vedi documenti - permission_edit_project: Modifica progetti - permission_add_issue_notes: Aggiungi note - permission_save_queries: Salva query - permission_view_wiki_pages: Vedi pagine wiki - permission_rename_wiki_pages: Rinomina pagine wiki - permission_edit_time_entries: Modifica time logs - permission_edit_own_issue_notes: Modifica proprie note - setting_gravatar_enabled: Usa icone utente Gravatar - label_example: Esempio - text_repository_usernames_mapping: "Seleziona per aggiornare la corrispondenza tra gli utenti Redmine e quelli presenti nel log del repository.\nGli utenti Redmine e repository con lo stesso note utente o email sono mappati automaticamente." - permission_edit_own_messages: Modifica propri messaggi - permission_delete_own_messages: Elimina propri messaggi - label_user_activity: "attività di %{value}" - label_updated_time_by: "Aggiornato da %{author} %{age} fa" - text_diff_truncated: '... Le differenze sono state troncate perchè superano il limite massimo visualizzabile.' - setting_diff_max_lines_displayed: Limite massimo di differenze (linee) mostrate - text_plugin_assets_writable: Directory attività dei plugins scrivibile - warning_attachments_not_saved: "%{count} file non possono essere salvati." - button_create_and_continue: Crea e continua - text_custom_field_possible_values_info: 'Un valore per ogni riga' - label_display: Mostra - field_editable: Modificabile - setting_repository_log_display_limit: Numero massimo di revisioni elencate nella cronologia file - setting_file_max_size_displayed: Dimensione massima dei contenuti testuali visualizzati - field_watcher: Osservatore - setting_openid: Accetta connessione e registrazione con OpenID - field_identity_url: URL OpenID - label_login_with_open_id_option: oppure autenticati usando OpenID - field_content: Contenuto - label_descending: Discendente - label_sort: Ordina - label_ascending: Ascendente - label_date_from_to: Da %{start} a %{end} - label_greater_or_equal: ">=" - label_less_or_equal: <= - text_wiki_page_destroy_question: Questa pagina ha %{descendants} pagine figlie. Cosa ne vuoi fare? - text_wiki_page_reassign_children: Riassegna le pagine figlie al padre di questa pagina - text_wiki_page_nullify_children: Mantieni le pagine figlie come pagine radice - text_wiki_page_destroy_children: Elimina le pagine figlie e tutta la discendenza - setting_password_min_length: Lunghezza minima password - field_group_by: Raggruppa risultati per - mail_subject_wiki_content_updated: "La pagina wiki '%{id}' è stata aggiornata" - label_wiki_content_added: Aggiunta pagina al wiki - mail_subject_wiki_content_added: "La pagina '%{id}' è stata aggiunta al wiki" - mail_body_wiki_content_added: La pagina '%{id}' è stata aggiunta al wiki da %{author}. - label_wiki_content_updated: Aggiornata pagina wiki - mail_body_wiki_content_updated: La pagina '%{id}' wiki è stata aggiornata da%{author}. - permission_add_project: Crea progetto - setting_new_project_user_role_id: Ruolo assegnato agli utenti non amministratori che creano un progetto - label_view_all_revisions: Mostra tutte le revisioni - label_tag: Tag - label_branch: Branch - error_no_tracker_in_project: Nessun tracker è associato a questo progetto. Per favore verifica le impostazioni del Progetto. - error_no_default_issue_status: Nessuno stato predefinito delle segnalazioni è configurato. Per favore verifica le impostazioni (Vai in "Amministrazione -> Stati segnalazioni"). - text_journal_changed: "%{label} modificata da %{old} a %{new}" - text_journal_set_to: "%{label} impostata a %{value}" - text_journal_deleted: "%{label} eliminata (%{old})" - label_group_plural: Gruppi - label_group: Gruppo - label_group_new: Nuovo gruppo - label_time_entry_plural: Tempo impiegato - text_journal_added: "%{value} %{label} aggiunto" - field_active: Attivo - enumeration_system_activity: Attività di sistema - permission_delete_issue_watchers: Elimina osservatori - version_status_closed: chiusa - version_status_locked: bloccata - version_status_open: aperta - error_can_not_reopen_issue_on_closed_version: Una segnalazione assegnata ad una versione chiusa non può essere riaperta - label_user_anonymous: Anonimo - button_move_and_follow: Sposta e segui - setting_default_projects_modules: Moduli predefiniti abilitati per i nuovi progetti - setting_gravatar_default: Immagine Gravatar predefinita - field_sharing: Condivisione - label_version_sharing_hierarchy: Con gerarchia progetto - label_version_sharing_system: Con tutti i progetti - label_version_sharing_descendants: Con sottoprogetti - label_version_sharing_tree: Con progetto padre - label_version_sharing_none: Nessuna condivisione - error_can_not_archive_project: Questo progetto non può essere archiviato - button_copy_and_follow: Copia e segui - label_copy_source: Sorgente - setting_issue_done_ratio: Calcola la percentuale di segnalazioni completate con - setting_issue_done_ratio_issue_status: Usa lo stato segnalazioni - error_issue_done_ratios_not_updated: La percentuale delle segnalazioni completate non è aggiornata. - error_workflow_copy_target: Per favore seleziona trackers finali e ruolo(i) - setting_issue_done_ratio_issue_field: Usa il campo segnalazioni - label_copy_same_as_target: Uguale a destinazione - label_copy_target: Destinazione - notice_issue_done_ratios_updated: La percentuale delle segnalazioni completate è aggiornata. - error_workflow_copy_source: Per favore seleziona un tracker sorgente o ruolo - label_update_issue_done_ratios: Aggiorna la percentuale delle segnalazioni completate - setting_start_of_week: Avvia calendari il - permission_view_issues: Mostra segnalazioni - label_display_used_statuses_only: Mostra solo stati che vengono usati per questo tracker - label_revision_id: Revisione %{value} - label_api_access_key: Chiave di accesso API - label_api_access_key_created_on: Chiave di accesso API creata %{value} fa - label_feeds_access_key: Chiave di accesso Atom - notice_api_access_key_reseted: La chiave di accesso API è stata reimpostata. - setting_rest_api_enabled: Abilita il servizio web REST - label_missing_api_access_key: Chiave di accesso API mancante - label_missing_feeds_access_key: Chiave di accesso Atom mancante - button_show: Mostra - text_line_separated: Valori multipli permessi (un valore per ogni riga). - setting_mail_handler_body_delimiters: Tronca email dopo una di queste righe - permission_add_subprojects: Crea sottoprogetti - label_subproject_new: Nuovo sottoprogetto - text_own_membership_delete_confirmation: |- - Stai per eliminare alcuni o tutti i permessi e non sarai più in grado di modificare questo progetto dopo tale azione. - Sei sicuro di voler continuare? - label_close_versions: Versioni completate chiuse - label_board_sticky: Annunci - label_board_locked: Bloccato - permission_export_wiki_pages: Esporta pagine wiki - setting_cache_formatted_text: Cache testo formattato - permission_manage_project_activities: Gestisci attività progetti - error_unable_delete_issue_status: Impossibile eliminare lo stato segnalazioni (%{value}) - label_profile: Profilo - permission_manage_subtasks: Gestisci sottoattività - field_parent_issue: Attività principale - label_subtask_plural: Sottoattività - label_project_copy_notifications: Invia notifiche email durante la copia del progetto - error_can_not_delete_custom_field: Impossibile eliminare il campo personalizzato - error_unable_to_connect: Impossibile connettersi (%{value}) - error_can_not_remove_role: Questo ruolo è in uso e non può essere eliminato. - error_can_not_delete_tracker: Questo tracker contiene segnalazioni e non può essere eliminato. - field_principal: Principale - notice_failed_to_save_members: "Impossibile salvare il membro(i): %{errors}." - text_zoom_out: Riduci ingrandimento - text_zoom_in: Aumenta ingrandimento - notice_unable_delete_time_entry: Impossibile eliminare il valore time log. - label_overall_spent_time: Totale tempo impiegato - field_time_entries: Tempo di collegamento - project_module_gantt: Gantt - project_module_calendar: Calendario - button_edit_associated_wikipage: "Modifica la pagina wiki associata: %{page_title}" - field_text: Campo di testo - setting_default_notification_option: Opzione di notifica predefinita - label_user_mail_option_only_my_events: Solo se sono un osservatore o sono coinvolto - label_user_mail_option_none: Nessun evento - field_member_of_group: Gruppo dell'assegnatario - field_assigned_to_role: Ruolo dell'assegnatario - notice_not_authorized_archived_project: Il progetto a cui stai accedendo è stato archiviato. - label_principal_search: "Cerca utente o gruppo:" - label_user_search: "Cerca utente:" - field_visible: Visibile - setting_emails_header: Intestazione email - setting_commit_logtime_activity_id: Attività per il tempo di collegamento - text_time_logged_by_changeset: Usato nel changeset %{value}. - setting_commit_logtime_enabled: Abilita registrazione del tempo di collegamento - notice_gantt_chart_truncated: Il grafico è stato troncato perchè eccede il numero di oggetti (%{max}) da visualizzare - setting_gantt_items_limit: Massimo numero di oggetti da visualizzare sul diagramma di gantt - field_warn_on_leaving_unsaved: Avvisami quando lascio una pagina con testo non salvato - text_warn_on_leaving_unsaved: La pagina corrente contiene del testo non salvato che verrà perso se lasci questa pagina. - label_my_queries: Le mie queries personalizzate - text_journal_changed_no_detail: "%{label} aggiornato" - label_news_comment_added: Commento aggiunto a una notizia - button_expand_all: Espandi tutto - button_collapse_all: Comprimi tutto - label_additional_workflow_transitions_for_assignee: Transizioni supplementari consentite quando l'utente è l'assegnatario - label_additional_workflow_transitions_for_author: Transizioni supplementari consentite quando l'utente è l'autore - label_bulk_edit_selected_time_entries: Modifica massiva delle ore segnalate selezionate - text_time_entries_destroy_confirmation: Sei sicuro di voler eliminare l'ora\e selezionata\e? - label_role_anonymous: Anonimo - label_role_non_member: Non membro - label_issue_note_added: Nota aggiunta - label_issue_status_updated: Stato aggiornato - label_issue_priority_updated: Priorità aggiornata - label_issues_visibility_own: Segnalazioni create o assegnate all'utente - field_issues_visibility: Visibilità segnalazioni - label_issues_visibility_all: Tutte le segnalazioni - permission_set_own_issues_private: Imposta le proprie segnalazioni pubbliche o private - field_is_private: Privato - permission_set_issues_private: Imposta le segnalazioni pubbliche o private - label_issues_visibility_public: Tutte le segnalazioni non private - text_issues_destroy_descendants_confirmation: Questo eliminerà anche %{count} sottoattività. - field_commit_logs_encoding: Codifica dei messaggi di commit - field_scm_path_encoding: Codifica del percorso - text_scm_path_encoding_note: "Predefinito: UTF-8" - field_path_to_repository: Percorso del repository - field_root_directory: Directory radice - field_cvs_module: Modulo - field_cvsroot: CVSROOT - text_mercurial_repository_note: Repository locale (es. /hgrepo, c:\hgrepo) - text_scm_command: Comando - text_scm_command_version: Versione - label_git_report_last_commit: Riporta l'ultimo commit per files e directories - text_scm_config: Puoi configurare i comandi scm nel file config/configuration.yml. E' necessario riavviare l'applicazione dopo averlo modificato. - text_scm_command_not_available: Il comando scm non è disponibile. Controllare le impostazioni nel pannello di amministrazione. - notice_issue_successful_create: Segnalazione %{id} creata. - label_between: tra - setting_issue_group_assignment: Permetti di assegnare una segnalazione a gruppi - label_diff: diff - text_git_repository_note: Il repository è spoglio e locale (e.g. /gitrepo, c:\gitrepo) - description_query_sort_criteria_direction: Ordinamento - description_project_scope: Ambito della ricerca - description_filter: Filtro - description_user_mail_notification: Impostazioni notifica via mail - description_message_content: Contenuto del messaggio - description_available_columns: Colonne disponibili - description_issue_category_reassign: Scegli la categoria della segnalazione - description_search: Campo di ricerca - description_notes: Note - description_choose_project: Progetti - description_query_sort_criteria_attribute: Attributo di ordinamento - description_wiki_subpages_reassign: Scegli la nuova pagina padre - description_selected_columns: Colonne selezionate - label_parent_revision: Padre - label_child_revision: Figlio - error_scm_annotate_big_text_file: La nota non può essere salvata, supera la dimensiona massima del campo di testo. - setting_default_issue_start_date_to_creation_date: Usa la data corrente come data d'inizio per le nuove segnalazioni - button_edit_section: Modifica questa sezione - setting_repositories_encodings: Codifica degli allegati e dei repository - description_all_columns: Tutte le colonne - button_export: Esporta - label_export_options: "%{export_format} opzioni per l'export" - error_attachment_too_big: Questo file non può essere caricato in quanto la sua dimensione supera la massima consentita (%{max_size}) - notice_failed_to_save_time_entries: "Non ho potuto salvare %{count} registrazioni di tempo impiegato su %{total} selezionate: %{ids}." - label_x_issues: - zero: 0 segnalazione - one: 1 segnalazione - other: "%{count} segnalazioni" - label_repository_new: Nuovo repository - field_repository_is_default: Repository principale - label_copy_attachments: Copia allegati - label_item_position: "%{position}/%{count}" - label_completed_versions: Versioni completate - text_project_identifier_info: Consentiti solo lettere minuscole (a-z), numeri, trattini e trattini bassi.
    Una volta salvato, l'identificatore non può essere modificato. - field_multiple: Valori multipli - setting_commit_cross_project_ref: Permetti alle segnalazioni degli altri progetti di essere referenziate e risolte - text_issue_conflict_resolution_add_notes: Aggiunge le mie note e non salvare le mie ulteriori modifiche - text_issue_conflict_resolution_overwrite: Applica comunque le mie modifiche (le note precedenti verranno mantenute ma alcuni cambiamenti potrebbero essere sovrascritti) - notice_issue_update_conflict: La segnalazione è stata aggiornata da un altro utente mentre la stavi editando. - text_issue_conflict_resolution_cancel: Cancella ogni modifica e rivisualizza %{link} - permission_manage_related_issues: Gestisci relative segnalazioni - field_auth_source_ldap_filter: Filtro LDAP - label_search_for_watchers: Cerca osservatori da aggiungere - notice_account_deleted: Il tuo account sarà definitivamente rimosso. - setting_unsubscribe: Consentire agli utenti di cancellare il proprio account - button_delete_my_account: Cancella il mio account - text_account_destroy_confirmation: "Sei sicuro di voler procedere?\nIl tuo account sarà definitivamente cancellato, senza alcuna possibilità di ripristino." - error_session_expired: "La tua sessione è scaduta. Effettua nuovamente il login." - text_session_expiration_settings: "Attenzione: la modifica di queste impostazioni può far scadere le sessioni correnti, compresa la tua." - setting_session_lifetime: Massima durata di una sessione - setting_session_timeout: Timeout di inattività di una sessione - label_session_expiration: Scadenza sessione - permission_close_project: Chiusura / riapertura progetto - button_close: Chiudi - button_reopen: Riapri - project_status_active: attivo - project_status_closed: chiuso - project_status_archived: archiviato - text_project_closed: Questo progetto è chiuso e in sola lettura. - notice_user_successful_create: Creato utente %{id}. - field_core_fields: Campi standard - field_timeout: Timeout (in secondi) - setting_thumbnails_enabled: Mostra miniature degli allegati - setting_thumbnails_size: Dimensioni delle miniature (in pixels) - label_status_transitions: Transizioni di stato - label_fields_permissions: Permessi sui campi - label_readonly: Sola lettura - label_required: Richiesto - text_repository_identifier_info: Consentiti solo lettere minuscole (a-z), numeri, trattini e trattini bassi.
    Una volta salvato, ll'identificatore non può essere modificato. - field_board_parent: Forum padre - label_attribute_of_project: del progetto %{name} - label_attribute_of_author: Author's %{name} - label_attribute_of_assigned_to: Assegnatari %{name} - label_attribute_of_fixed_version: Target version's %{name} - label_copy_subtasks: Copia sottoattività - label_copied_to: copia - label_copied_from: copiata da - label_any_issues_in_project: ogni segnalazione del progetto - label_any_issues_not_in_project: ogni segnalazione non nel progetto - field_private_notes: Note private - permission_view_private_notes: Visualizza note private - permission_set_notes_private: Imposta note come private - label_no_issues_in_project: progetto privo di segnalazioni - label_any: tutti - label_last_n_weeks: ultime %{count} settimane - setting_cross_project_subtasks: Consenti sottoattività cross-project - label_cross_project_descendants: Con sottoprogetti - label_cross_project_tree: Con progetto padre - label_cross_project_hierarchy: Con gerarchia progetto - label_cross_project_system: Con tutti i progetti - button_hide: Nascondi - setting_non_working_week_days: Giorni non lavorativi - label_in_the_next_days: nei prossimi - label_in_the_past_days: nei passati - label_attribute_of_user: Utente %{name} - text_turning_multiple_off: Disabilitando valori multipli, i valori multipli verranno rimossi, in modo da mantenere un solo valore per item. - label_attribute_of_issue: Segnalazione %{name} - permission_add_documents: Aggiungi documenti - permission_edit_documents: Edita documenti - permission_delete_documents: Cancella documenti - label_gantt_progress_line: Linea avanzamento - setting_jsonp_enabled: Abilita supporto a JSONP - field_inherit_members: Eredita membri - field_closed_on: Chiuso - field_generate_password: Genera password - setting_default_projects_tracker_ids: Trackers di default per nuovi progetti - label_total_time: Totale - notice_account_not_activated_yet: Non hai ancora attivato il tuo account. Se vuoi - ricevere una nuova email di attivazione clicca qui. - notice_account_locked: Il tuo account è bloccato. - notice_account_register_done: Account creato correttamente. E' stata inviata un'email contenente - le istruzioni per attivare l'account a %{email}. - label_hidden: Nascosto - label_visibility_private: solo a me - label_visibility_roles: solo a questi ruoli - label_visibility_public: a tutti gli utenti - field_must_change_passwd: Cambio password obbligatorio al prossimo logon - notice_new_password_must_be_different: La nuova password deve essere differente da - quella attuale - setting_mail_handler_excluded_filenames: Escludi allegati per nome - text_convert_available: ImageMagick convert disponibile (opzionale) - label_link: Link - label_only: solo - label_drop_down_list: drop-down list - label_checkboxes: checkboxes - label_link_values_to: Collega valori ad un URL - setting_force_default_language_for_anonymous: Forza la lingua di default per gli utenti anonimi - setting_force_default_language_for_loggedin: Forza la lingua di default per gli utenti loggati - label_custom_field_select_type: Seleziona il tipo di oggetto a cui il campo personalizzato è collegato - label_issue_assigned_to_updated: Assegnatario aggiornato - label_check_for_updates: Verifica aggiornamenti - label_latest_compatible_version: Ultima versione compatibile - label_unknown_plugin: Plugin sconosciuto - label_radio_buttons: radio buttons - label_group_anonymous: Utenti anonimi - label_group_non_member: Utenti non membri - label_add_projects: Aggiungi progetti - field_default_status: Stato predefinito - text_subversion_repository_note: 'Esempio: file:///, http://, https://, svn://, svn+[tunnelscheme]://' - field_users_visibility: Visibilità degli utenti - label_users_visibility_all: Tutti gli utenti attivi - label_users_visibility_members_of_visible_projects: Membri dei progetti visibili - label_edit_attachments: Modifica gli allegati - setting_link_copied_issue: Collega le segnalazioni dopo la copia - label_link_copied_issue: Collega le segnalazioni copiate - label_ask: Chiedi - label_search_attachments_yes: Cerca nel nome e nelle descrizioni degli allegati - label_search_attachments_no: Non cercare gli allegati - label_search_attachments_only: Cerca solo allegati - label_search_open_issues_only: Solo segnalazioni aperte - field_address: Email - setting_max_additional_emails: Numero massimo di email aggiuntive - label_email_address_plural: Emails - label_email_address_add: Aggiungi un'email - label_enable_notifications: Attiva le notifiche - label_disable_notifications: Disattiva le notifiche - setting_search_results_per_page: Risultati per pagina - label_blank_value: vuoto - permission_copy_issues: Copia segnalazioni - error_password_expired: La password è scaduta o l'amministratore ha richiesto che sia cambiata. - field_time_entries_visibility: Visibilità Time logs - setting_password_max_age: Richiesta cambio password dopo - label_parent_task_attributes: Attributi attività padre - label_parent_task_attributes_derived: Calcolati dalle sottoattività - label_parent_task_attributes_independent: Indipendente dalle sottoattività - label_time_entries_visibility_all: Tutte le registrazioni del tempo impiegato - label_time_entries_visibility_own: Solo le registrazioni del tempo impiegato create dall'utente - label_member_management: Gestione membri - label_member_management_all_roles: Tutti i ruoli - label_member_management_selected_roles_only: Solo questi ruoli - label_password_required: Confirm your password to continue - label_total_spent_time: Totale tempo impiegato - notice_import_finished: "%{count} items have been imported" - notice_import_finished_with_errors: "%{count} out of %{total} items could not be imported" - error_invalid_file_encoding: The file is not a valid %{encoding} encoded file - error_invalid_csv_file_or_settings: The file is not a CSV file or does not match the - settings below - error_can_not_read_import_file: An error occurred while reading the file to import - permission_import_issues: Import issues - label_import_issues: Importa segnalazioni - label_select_file_to_import: Select the file to import - label_fields_separator: Field separator - label_fields_wrapper: Field wrapper - label_encoding: Encoding - label_comma_char: Virgola - label_semi_colon_char: Punto e virgola - label_quote_char: Apici - label_double_quote_char: Doppi apici - label_fields_mapping: Fields mapping - label_file_content_preview: File content preview - label_create_missing_values: Create missing values - button_import: Import - field_total_estimated_hours: Totale tempo stimato - label_api: API - label_total_plural: Totali - label_assigned_issues: Segnalazioni assegnate - label_field_format_enumeration: Key/value list - label_f_hour_short: '%{value} h' - field_default_version: Versione predefinita - error_attachment_extension_not_allowed: Attachment extension %{extension} is not allowed - setting_attachment_extensions_allowed: Estensioni abilitate - setting_attachment_extensions_denied: Estensioni disabilitate - label_any_open_issues: any open issues - label_no_open_issues: no open issues - label_default_values_for_new_users: Default values for new users - error_ldap_bind_credentials: Invalid LDAP Account/Password - setting_sys_api_key: Chiave API - setting_lost_password: Password dimenticata - mail_subject_security_notification: Security notification - mail_body_security_notification_change: ! '%{field} was changed.' - mail_body_security_notification_change_to: ! '%{field} was changed to %{value}.' - mail_body_security_notification_add: ! '%{field} %{value} was added.' - mail_body_security_notification_remove: ! '%{field} %{value} was removed.' - mail_body_security_notification_notify_enabled: Email address %{value} now receives - notifications. - mail_body_security_notification_notify_disabled: Email address %{value} no longer - receives notifications. - mail_body_settings_updated: ! 'The following settings were changed:' - field_remote_ip: IP address - label_wiki_page_new: New wiki page - label_relations: Relazioni - button_filter: Filter - mail_body_password_updated: Your password has been changed. - label_no_preview: No preview available - error_no_tracker_allowed_for_new_issue_in_project: The project doesn't have any trackers - for which you can create an issue - label_tracker_all: All trackers - label_new_project_issue_tab_enabled: Mostra la scheda "Nuova segnalazione" - setting_new_item_menu_tab: Scheda di creazione oggetti nel menu del progetto - label_new_object_tab_enabled: Mostra l'elenco a discesa "+" - error_no_projects_with_tracker_allowed_for_new_issue: There are no projects with trackers - for which you can create an issue - field_textarea_font: Font utilizzato per le aree di testo - label_font_default: Font predefinito - label_font_monospace: Font monospace - label_font_proportional: Font proporzionale - setting_timespan_format: Formato intervallo di tempo - label_table_of_contents: Sommario - setting_commit_logs_formatting: Formatta il testo dei messaggi di commit - setting_mail_handler_enable_regex: Abilita espressioni regolari - error_move_of_child_not_possible: 'Subtask %{child} could not be moved to the new - project: %{errors}' - error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted: Spent time cannot - be reassigned to an issue that is about to be deleted - setting_timelog_required_fields: Campi obbligatori per le registrazioni del tempo impiegato - label_attribute_of_object: '%{object_name}''s %{name}' - label_user_mail_option_only_assigned: Solo se sono un osservatore o sono assegnatario - label_user_mail_option_only_owner: Solo se sono un osservatore o sono autore - warning_fields_cleared_on_bulk_edit: Changes will result in the automatic deletion - of values from one or more fields on the selected objects - field_updated_by: Aggiornato da - field_last_updated_by: Ultimo aggiornamento di - field_full_width_layout: Full width layout - label_last_notes: Last notes - field_digest: Checksum - field_default_assigned_to: Assegnatario predefinito - setting_show_custom_fields_on_registration: Alla registrazione mostra i campi personalizzati - permission_view_news: View news - label_no_preview_alternative_html: No preview available. %{link} the file instead. - label_no_preview_download: Download - setting_close_duplicate_issues: Chiudi automaticamente le segnalazioni duplicate - error_exceeds_maximum_hours_per_day: Cannot log more than %{max_hours} hours on the - same day (%{logged_hours} hours have already been logged) - setting_time_entry_list_defaults: Colonne predefinite mostrate nell'elenco del tempo impiegato - setting_timelog_accept_0_hours: Accetta registrazioni di tempo impiegato con 0 ore - setting_timelog_max_hours_per_day: Numero massimo di ore che possono essere registrate al giorno per utente - label_x_revisions: "%{count} revisions" - error_can_not_delete_auth_source: This authentication mode is in use and cannot be - deleted. - button_actions: Actions - mail_body_lost_password_validity: Please be aware that you may change the password - only once using this link. - text_login_required_html: Disattivando l'autenticazione obbligatoria, i progetti pubblici e il loro - contenuto, saranno liberamente accessibili in rete. Si possono modificare - i permessi applicabili. - label_login_required_yes: 'Si' - label_login_required_no: No, consenti accesso anonimo ai progetti pubblici - text_project_is_public_non_member: Public projects and their contents are available - to all logged-in users. - text_project_is_public_anonymous: Public projects and their contents are openly available - on the network. - label_version_and_files: Versioni (%{count}) e Files - label_ldap: LDAP - label_ldaps_verify_none: LDAPS (without certificate check) - label_ldaps_verify_peer: LDAPS - label_ldaps_warning: It is recommended to use an encrypted LDAPS connection with certificate - check to prevent any manipulation during the authentication process. - label_nothing_to_preview: Nessuna anteprima da visualizzare - error_token_expired: This password recovery link has expired, please try again. - error_spent_on_future_date: Cannot log time on a future date - setting_timelog_accept_future_dates: Accetta registrazioni di tempo impiegato in date future - label_delete_link_to_subtask: Elimina relazione - error_not_allowed_to_log_time_for_other_users: You are not allowed to log time - for other users - permission_log_time_for_other_users: Log spent time for other users - label_tomorrow: domani - label_next_week: prossima settimana - label_next_month: prossimo mese - text_role_no_workflow: No workflow defined for this role - text_status_no_workflow: No tracker uses this status in the workflows - setting_mail_handler_preferred_body_part: Preferred part of multipart (HTML) emails - setting_show_status_changes_in_mail_subject: Mostra i cambiamenti di stato nell'oggetto delle emails di notifica - label_inherited_from_parent_project: Inherited from parent project - label_inherited_from_group: Inherited from group %{name} - label_trackers_description: Trackers description - label_open_trackers_description: View all trackers description - label_preferred_body_part_text: Text - label_preferred_body_part_html: HTML (experimental) - field_parent_issue_subject: Parent task subject - permission_edit_own_issues: Edit own issues - text_select_apply_tracker: Select tracker - label_updated_issues: Segnalazioni aggiornate - text_avatar_server_config_html: "Il server corrente degli avatars è %{url}. E' possibile configurarlo in config/configuration.yml." - setting_gantt_months_limit: Maximum number of months displayed on the gantt chart - permission_import_time_entries: Importa tempo impiegato - label_import_notifications: Send email notifications during the import - text_gs_available: ImageMagick PDF support available (optional) - field_recently_used_projects: Numero dei progetti recenti mostrati nella jump box - label_optgroup_bookmarks: Segnalibri - label_optgroup_others: Altri progetti - label_optgroup_recents: Recenti - button_project_bookmark: Aggiungi segnalibro - button_project_bookmark_delete: Elimina segnalibro - field_history_default_tab: Scheda predefinita per lo storico della segnalazione - label_issue_history_properties: Proprietà modificate - label_issue_history_notes: Note - label_last_tab_visited: Ultima scheda visitata - field_unique_id: ID univoco - text_no_subject: nessun soggetto - setting_password_required_char_classes: Caratteri richiesti per le passwords - label_password_char_class_uppercase: lettere maiuscole - label_password_char_class_lowercase: lettere minuscole - label_password_char_class_digits: numeri - label_password_char_class_special_chars: caratteri speciali - text_characters_must_contain: "Deve contenere i seguenti tipi di caratteri %{character_classes}." - label_starts_with: inizia con - label_ends_with: finisce con - label_issue_fixed_version_updated: Versione prevista aggiornata - setting_project_list_defaults: Colonne predefinite mostrate nell'elenco progetti - label_display_type: Mostra risultati come - label_display_type_list: Lista - label_display_type_board: Board - label_my_bookmarks: I miei segnalibri - label_import_time_entries: Importa tempo impiegato diff --git a/config/locales/ja.yml b/config/locales/ja.yml deleted file mode 100644 index dce23d9..0000000 --- a/config/locales/ja.yml +++ /dev/null @@ -1,1311 +0,0 @@ -# Japanese translations for Ruby on Rails -# by Akira Matsuda (ronnie@dio.jp) -# AR error messages are basically taken from Ruby-GetText-Package. Thanks to Masao Mutoh. - -ja: - direction: ltr - date: - formats: - # Use the strftime parameters for formats. - # When no format has been given, it uses default. - # You can provide other formats here if you like! - default: "%Y/%m/%d" - short: "%m/%d" - long: "%Y年%m月%d日(%a)" - - day_names: [日曜日, 月曜日, 火曜日, 水曜日, 木曜日, 金曜日, 土曜日] - abbr_day_names: [日, 月, 火, 水, 木, 金, 土] - - # Don't forget the nil at the beginning; there's no such thing as a 0th month - month_names: [~, 1月, 2月, 3月, 4月, 5月, 6月, 7月, 8月, 9月, 10月, 11月, 12月] - abbr_month_names: [~, 1月, 2月, 3月, 4月, 5月, 6月, 7月, 8月, 9月, 10月, 11月, 12月] - # Used in date_select and datime_select. - order: - - :year - - :month - - :day - - time: - formats: - default: "%Y/%m/%d %H:%M:%S" - time: "%H:%M" - short: "%y/%m/%d %H:%M" - long: "%Y年%m月%d日(%a) %H時%M分%S秒 %Z" - am: "午前" - pm: "午後" - - datetime: - distance_in_words: - half_a_minute: "30秒前後" - less_than_x_seconds: - one: "1秒以内" - other: "%{count}秒以内" - x_seconds: - one: "1秒" - other: "%{count}秒" - less_than_x_minutes: - one: "1分以内" - other: "%{count}分以内" - x_minutes: - one: "1分" - other: "%{count}分" - about_x_hours: - one: "約1時間" - other: "約%{count}時間" - x_hours: - one: "1時間" - other: "%{count}時間" - x_days: - one: "1日" - other: "%{count}日" - about_x_months: - one: "約1ヶ月" - other: "約%{count}ヶ月" - x_months: - one: "1ヶ月" - other: "%{count}ヶ月" - about_x_years: - one: "約1年" - other: "約%{count}年" - over_x_years: - one: "1年以上" - other: "%{count}年以上" - almost_x_years: - one: "ほぼ1年" - other: "ほぼ%{count}年" - - number: - format: - separator: "." - delimiter: "," - precision: 3 - - currency: - format: - format: "%n%u" - unit: "円" - separator: "." - delimiter: "," - precision: 0 - - percentage: - format: - delimiter: "" - - precision: - format: - delimiter: "" - - human: - format: - delimiter: "" - precision: 3 - storage_units: - format: "%n %u" - units: - byte: - one: "Byte" - other: "Bytes" - kb: "KB" - mb: "MB" - gb: "GB" - tb: "TB" - -# Used in array.to_sentence. - support: - array: - sentence_connector: "及び" - skip_last_comma: true - - activerecord: - errors: - template: - header: - one: "%{model} にエラーが発生しました。" - other: "%{model} に %{count} つのエラーが発生しました。" - body: "次の項目を確認してください。" - - messages: - inclusion: "は一覧にありません" - exclusion: "は予約されています" - invalid: "は不正な値です" - confirmation: "が一致しません" - accepted: "を受諾してください" - empty: "を入力してください" - blank: "を入力してください" - too_long: "は%{count}文字以内で入力してください" - too_short: "は%{count}文字以上で入力してください" - wrong_length: "は%{count}文字で入力してください" - taken: "はすでに存在します" - not_a_number: "は数値で入力してください" - not_a_date: "は日付を入力してください" - greater_than: "は%{count}より大きい値にしてください" - greater_than_or_equal_to: "は%{count}以上の値にしてください" - equal_to: "は%{count}にしてください" - less_than: "は%{count}より小さい値にしてください" - less_than_or_equal_to: "は%{count}以下の値にしてください" - odd: "は奇数にしてください" - even: "は偶数にしてください" - greater_than_start_date: "を開始日より後にしてください" - not_same_project: "同じプロジェクトに属していません" - circular_dependency: "この関係では、循環依存になります" - cant_link_an_issue_with_a_descendant: "親子関係にあるチケット間での関連の設定はできません" - earlier_than_minimum_start_date: "を%{date}より前にすることはできません。先行するチケットがあります" - not_a_regexp: "は正しい正規表現ではありません" - open_issue_with_closed_parent: "完了したチケットに未完了の子チケットを追加することはできません" - must_contain_uppercase: "は大文字 (A-Z) を含む必要があります" - must_contain_lowercase: "は小文字 (a-z) を含む必要があります" - must_contain_digits: "は数字 (0-9) を含む必要があります" - must_contain_special_chars: "は記号 (!, $, %, ...) を含む必要があります" - - actionview_instancetag_blank_option: 選んでください - - general_text_No: 'いいえ' - general_text_Yes: 'はい' - general_text_no: 'いいえ' - general_text_yes: 'はい' - general_lang_name: 'Japanese (日本語)' - general_csv_separator: ',' - general_csv_decimal_separator: '.' - general_csv_encoding: CP932 - general_pdf_fontname: kozminproregular - general_pdf_monospaced_fontname: kozminproregular - general_first_day_of_week: '7' - - notice_account_updated: アカウントが更新されました。 - notice_account_invalid_credentials: ユーザー名もしくはパスワードが無効です - notice_account_password_updated: パスワードが更新されました。 - notice_account_wrong_password: パスワードが違います - notice_account_register_done: アカウントを作成しました。アカウントを有効にするための手順を記載したメールを %{email} 宛に送信しました。 - notice_account_unknown_email: ユーザーが存在しません。 - notice_can_t_change_password: このアカウントでは外部認証を使っています。パスワードは変更できません。 - notice_account_lost_email_sent: パスワードを再設定する手順を記載したメールを送信しました。 - notice_account_activated: アカウントが有効になりました。ログインできます。 - notice_successful_create: 作成しました。 - notice_successful_update: 更新しました。 - notice_successful_delete: 削除しました。 - notice_successful_connection: 接続しました。 - notice_file_not_found: アクセスしようとしたページは存在しないか削除されています。 - notice_locking_conflict: 別のユーザーがデータを更新しています。 - notice_not_authorized: このページのアクセスは許可されていません。 - notice_not_authorized_archived_project: プロジェクトはアーカイブされています。 - notice_email_sent: "%{value} 宛にメールを送信しました。" - notice_email_error: "メール送信中にエラーが発生しました (%{value})" - notice_feeds_access_key_reseted: Atomアクセスキーを初期化しました。 - notice_api_access_key_reseted: APIアクセスキーを初期化しました。 - notice_failed_to_save_issues: "全%{total}件中%{count}件のチケットが保存できませんでした: %{ids}。" - notice_failed_to_save_members: "メンバーの保存に失敗しました: %{errors}。" - notice_no_issue_selected: "チケットが選択されていません! 更新対象のチケットを選択してください。" - notice_account_pending: アカウントを作成しました。システム管理者の承認待ちです。 - notice_default_data_loaded: デフォルト設定をロードしました。 - notice_unable_delete_version: バージョンを削除できません - notice_unable_delete_time_entry: 作業時間を削除できません - notice_issue_done_ratios_updated: チケットの進捗率を更新しました。 - notice_gantt_chart_truncated: ガントチャートは、最大表示件数(%{max})を超えたため切り捨てられました。 - - error_can_t_load_default_data: "デフォルト設定がロードできませんでした: %{value}" - error_scm_not_found: リポジトリに、エントリ/リビジョンが存在しません。 - error_scm_command_failed: "リポジトリへアクセスしようとしてエラーになりました: %{value}" - error_scm_annotate: "エントリが存在しない、もしくはアノテートできません。" - error_issue_not_found_in_project: 'チケットが見つかりません、もしくはこのプロジェクトに属していません' - error_unable_delete_issue_status: "チケットのステータスを削除できませんでした。 (%{value})" - error_no_tracker_in_project: 'このプロジェクトにはトラッカーが登録されていません。プロジェクト設定を確認してください。' - error_no_default_issue_status: 'デフォルトのチケットステータスが定義されていません。設定を確認してください(管理→チケットのステータス)。' - error_can_not_delete_custom_field: 'カスタムフィールドを削除できません。' - error_unable_to_connect: "接続できません。 (%{value})" - error_can_not_remove_role: 'このロールは使用中です。削除できません。' - error_can_not_reopen_issue_on_closed_version: '終了したバージョンにひも付けされたチケットの再オープンはできません。' - error_can_not_archive_project: このプロジェクトはアーカイブできません - error_issue_done_ratios_not_updated: "チケットの進捗率が更新できません。" - error_workflow_copy_source: 'コピー元となるトラッカーまたはロールを選択してください' - error_workflow_copy_target: 'コピー先となるトラッカーとロールを選択してください' - error_can_not_delete_tracker: 'このトラッカーは使用中です。削除できません。' - - warning_attachments_not_saved: "%{count}個の添付ファイルが保存できませんでした。" - - mail_subject_lost_password: "%{value} パスワード再設定" - mail_body_lost_password: 'パスワードを変更するには、以下のリンクをクリックしてください:' - mail_body_lost_password_validity: 'このリンクでパスワードを再設定できるのは1回だけです。ご注意ください。' - mail_subject_register: "%{value} アカウント登録の確認" - mail_body_register: 'アカウント登録を完了するには、以下のアドレスをクリックしてください:' - mail_body_account_information_external: "%{value} アカウントを使ってにログインできます。" - mail_body_account_information: アカウント情報 - mail_subject_account_activation_request: "%{value} アカウントの承認要求" - mail_body_account_activation_request: "新しいユーザー %{value} が登録されました。このアカウントはあなたの承認待ちです:" - mail_subject_reminder: "%{count}件のチケットの期日が%{days}日以内に到来します" - mail_body_reminder: "%{count}件の担当チケットの期日が%{days}日以内に到来します:" - mail_subject_wiki_content_added: "Wikiページ %{id} が追加されました" - mail_body_wiki_content_added: "Wikiページ %{id} を %{author} さんが追加しました。" - mail_subject_wiki_content_updated: "Wikiページ %{id} が更新されました" - mail_body_wiki_content_updated: "Wikiページ %{id} を %{author} さんが更新しました。" - - - field_name: 名称 - field_description: 説明 - field_summary: サマリー - field_is_required: 必須 - field_firstname: 名 - field_lastname: 姓 - field_mail: メールアドレス - field_filename: ファイル - field_filesize: サイズ - field_downloads: ダウンロード - field_author: 作成者 - field_created_on: 作成日 - field_updated_on: 更新日 - field_field_format: 形式 - field_is_for_all: 全プロジェクト向け - field_possible_values: 選択肢 - field_regexp: 正規表現 - field_min_length: 最短長 - field_max_length: 最大長 - field_value: 値 - field_category: カテゴリ - field_title: タイトル - field_project: プロジェクト - field_issue: チケット - field_status: ステータス - field_notes: コメント - field_is_closed: 終了したチケット - field_is_default: デフォルト値 - field_tracker: トラッカー - field_subject: 題名 - field_due_date: 期日 - field_assigned_to: 担当者 - field_priority: 優先度 - field_fixed_version: 対象バージョン - field_user: ユーザー - field_principal: 主体 - field_role: ロール - field_homepage: ホームページ - field_is_public: 公開 - field_parent: 親プロジェクト名 - field_is_in_roadmap: チケットをロードマップに表示する - field_login: ログインID - field_mail_notification: メール通知 - field_admin: システム管理者 - field_last_login_on: 最終接続日 - field_language: 言語 - field_effective_date: 期日 - field_password: パスワード - field_new_password: 新しいパスワード - field_password_confirmation: パスワードの確認 - field_version: バージョン - field_type: タイプ - field_host: ホスト - field_port: ポート - field_account: アカウント - field_base_dn: ベースDN - field_attr_login: ログインIDの属性 - field_attr_firstname: 名の属性 - field_attr_lastname: 姓の属性 - field_attr_mail: メールアドレスの属性 - field_onthefly: あわせてユーザーを作成 - field_start_date: 開始日 - field_done_ratio: 進捗率 - field_auth_source: 認証方式 - field_hide_mail: メールアドレスを隠す - field_comments: コメント - field_url: URL - field_start_page: メインページ - field_subproject: サブプロジェクト - field_hours: 時間 - field_activity: 作業分類 - field_spent_on: 日付 - field_identifier: 識別子 - field_is_filter: フィルタとして使用 - field_issue_to: 関連するチケット - field_delay: 遅延 - field_assignable: このロールのユーザーにチケットを割り当て可能 - field_redirect_existing_links: 既存のリンクをリダイレクトする - field_estimated_hours: 予定工数 - field_column_names: 項目 - field_time_entries: 時間を記録 - field_time_zone: タイムゾーン - field_searchable: 検索対象 - field_default_value: デフォルト値 - field_comments_sorting: コメントの表示順 - field_parent_title: 親ページ - field_editable: 編集可能 - field_watcher: ウォッチャー - field_identity_url: OpenID URL - field_content: 内容 - field_group_by: グループ条件 - field_sharing: 共有 - field_parent_issue: 親チケット - field_member_of_group: 担当者のグループ - field_assigned_to_role: 担当者のロール - field_text: テキスト - field_visible: 表示 - field_warn_on_leaving_unsaved: データを保存せずにページから移動するときに警告 - field_commit_logs_encoding: コミットメッセージのエンコーディング - field_scm_path_encoding: パスのエンコーディング - field_path_to_repository: リポジトリのパス - field_root_directory: ルートディレクトリ - field_cvsroot: CVSROOT - field_cvs_module: モジュール - - setting_app_title: アプリケーションのタイトル - setting_welcome_text: ウェルカムメッセージ - setting_default_language: デフォルトの言語 - setting_login_required: 認証が必要 - setting_self_registration: ユーザーによるアカウント登録 - setting_attachment_max_size: 添付ファイルサイズの上限 - setting_issues_export_limit: エクスポートするチケット数の上限 - setting_mail_from: 送信元メールアドレス - setting_bcc_recipients: 宛先を非表示(bcc) - setting_plain_text_mail: プレインテキスト形式(HTMLなし) - setting_host_name: ホスト名とパス - setting_text_formatting: テキスト書式 - setting_cache_formatted_text: テキスト書式の変換結果をキャッシュ - setting_wiki_compression: Wiki履歴を圧縮する - setting_feeds_limit: Atomフィードの最大出力件数 - setting_default_projects_public: デフォルトで新しいプロジェクトは公開にする - setting_autofetch_changesets: コミットを自動取得する - setting_sys_api_enabled: リポジトリ管理用のWebサービスを有効にする - setting_commit_ref_keywords: 参照用キーワード - setting_commit_fix_keywords: 修正用キーワード - setting_autologin: 自動ログイン - setting_date_format: 日付の形式 - setting_time_format: 時刻の形式 - setting_cross_project_issue_relations: 異なるプロジェクトのチケット間で関連の設定を許可 - setting_issue_list_default_columns: チケットの一覧で表示する項目 - setting_repositories_encodings: 添付ファイルとリポジトリのエンコーディング - setting_emails_header: メールのヘッダ - setting_emails_footer: メールのフッタ - setting_protocol: プロトコル - setting_per_page_options: ページごとの表示件数 - setting_user_format: ユーザー名の表示形式 - setting_activity_days_default: プロジェクトの活動ページに表示する日数 - setting_display_subprojects_issues: サブプロジェクトのチケットをメインプロジェクトに表示する - setting_enabled_scm: 使用するバージョン管理システム - setting_mail_handler_body_delimiters: "メール本文から一致する行以降を切り捨てる" - setting_mail_handler_api_enabled: 受信メール用のWebサービスを有効にする - setting_mail_handler_api_key: APIキー - setting_sequential_project_identifiers: プロジェクト識別子を連番で生成する - setting_gravatar_enabled: Gravatarのアイコンを使用する - setting_gravatar_default: デフォルトのGravatarアイコン - setting_diff_max_lines_displayed: 差分の表示行数の上限 - setting_file_max_size_displayed: 画面表示するテキストファイルサイズの上限 - setting_repository_log_display_limit: ファイルのリビジョン表示数の上限 - setting_openid: OpenIDによるログインと登録 - setting_password_min_length: パスワードの最低必要文字数 - setting_new_project_user_role_id: システム管理者以外のユーザーが作成したプロジェクトに設定するロール - setting_default_projects_modules: 新規プロジェクトにおいてデフォルトで有効になるモジュール - setting_issue_done_ratio: 進捗率の算出方法 - setting_issue_done_ratio_issue_field: チケットのフィールドを使用 - setting_issue_done_ratio_issue_status: チケットのステータスに連動 - setting_start_of_week: 週の開始曜日 - setting_rest_api_enabled: RESTによるWebサービスを有効にする - setting_default_notification_option: デフォルトのメール通知オプション - setting_commit_logtime_enabled: コミット時に作業時間を記録する - setting_commit_logtime_activity_id: 作業時間の作業分類 - setting_gantt_items_limit: ガントチャート最大表示件数 - setting_default_projects_tracker_ids: 新規プロジェクトにおいてデフォルトで有効になるトラッカー - - permission_add_project: プロジェクトの追加 - permission_add_subprojects: サブプロジェクトの追加 - permission_edit_project: プロジェクトの編集 - permission_select_project_modules: モジュールの選択 - permission_manage_members: メンバーの管理 - permission_manage_versions: バージョンの管理 - permission_manage_categories: チケットのカテゴリの管理 - permission_view_issues: チケットの閲覧 - permission_add_issues: チケットの追加 - permission_edit_issues: チケットの編集 - permission_manage_issue_relations: 関連するチケットの管理 - permission_add_issue_notes: コメントの追加 - permission_edit_issue_notes: コメントの編集 - permission_edit_own_issue_notes: 自分が追加したコメントの編集 - permission_delete_issues: チケットの削除 - permission_manage_public_queries: 公開クエリの管理 - permission_save_queries: クエリの保存 - permission_view_gantt: ガントチャートの閲覧 - permission_view_calendar: カレンダーの閲覧 - permission_view_issue_watchers: ウォッチャー一覧の閲覧 - permission_add_issue_watchers: ウォッチャーの追加 - permission_delete_issue_watchers: ウォッチャーの削除 - permission_log_time: 作業時間の記録 - permission_view_time_entries: 作業時間の閲覧 - permission_edit_time_entries: 作業時間の編集 - permission_edit_own_time_entries: 自分の作業時間の編集 - permission_manage_project_activities: 作業分類 (時間管理) の管理 - permission_view_news: ニュースの閲覧 - permission_manage_news: ニュースの管理 - permission_comment_news: ニュースへのコメント - permission_view_documents: 文書の閲覧 - permission_manage_files: ファイルの管理 - permission_view_files: ファイルの閲覧 - permission_manage_wiki: Wikiの管理 - permission_rename_wiki_pages: Wikiページ名の変更 - permission_delete_wiki_pages: Wikiページの削除 - permission_view_wiki_pages: Wikiの閲覧 - permission_export_wiki_pages: Wikiページのエクスポート - permission_view_wiki_edits: Wiki履歴の閲覧 - permission_edit_wiki_pages: Wikiページの編集 - permission_delete_wiki_pages_attachments: 添付ファイルの削除 - permission_protect_wiki_pages: Wikiページの保護 - permission_manage_repository: リポジトリの管理 - permission_browse_repository: リポジトリの閲覧 - permission_view_changesets: 更新履歴の閲覧 - permission_commit_access: コミット権限 - permission_manage_boards: フォーラムの管理 - permission_view_messages: メッセージの閲覧 - permission_add_messages: メッセージの追加 - permission_edit_messages: メッセージの編集 - permission_edit_own_messages: 自分が追加したメッセージの編集 - permission_delete_messages: メッセージの削除 - permission_delete_own_messages: 自分が追加したメッセージの削除 - permission_manage_subtasks: 子チケットの管理 - - project_module_issue_tracking: チケットトラッキング - project_module_time_tracking: 時間管理 - project_module_news: ニュース - project_module_documents: 文書 - project_module_files: ファイル - project_module_wiki: Wiki - project_module_repository: リポジトリ - project_module_boards: フォーラム - project_module_gantt: ガントチャート - project_module_calendar: カレンダー - - label_user: ユーザー - label_user_plural: ユーザー - label_user_new: 新しいユーザー - label_user_anonymous: 匿名ユーザー - label_profile: プロフィール - label_project: プロジェクト - label_project_new: 新しいプロジェクト - label_project_plural: プロジェクト - label_x_projects: - zero: プロジェクトはありません - one: 1プロジェクト - other: "%{count}プロジェクト" - label_project_all: 全プロジェクト - label_project_latest: 最近のプロジェクト - label_issue: チケット - label_issue_new: 新しいチケット - label_issue_plural: チケット - label_issue_view_all: すべてのチケットを表示 - label_issues_by: "%{value} 別のチケット" - label_issue_added: チケットの追加 - label_issue_updated: チケットの更新 - label_document: 文書 - label_document_new: 新しい文書 - label_document_plural: 文書 - label_document_added: 文書の追加 - label_role: ロール - label_role_plural: ロール - label_role_new: 新しいロール - label_role_and_permissions: ロールと権限 - label_member: メンバー - label_member_new: 新しいメンバー - label_member_plural: メンバー - label_tracker: トラッカー - label_tracker_plural: トラッカー - label_tracker_new: 新しいトラッカー - label_workflow: ワークフロー - label_issue_status: チケットのステータス - label_issue_status_plural: チケットのステータス - label_issue_status_new: 新しいステータス - label_issue_category: チケットのカテゴリ - label_issue_category_plural: チケットのカテゴリ - label_issue_category_new: 新しいカテゴリ - label_custom_field: カスタムフィールド - label_custom_field_plural: カスタムフィールド - label_custom_field_new: 新しいカスタムフィールド - label_enumerations: 選択肢の値 - label_enumeration_new: 新しい値 - label_information: 情報 - label_information_plural: 情報 - label_register: 登録する - label_login_with_open_id_option: またはOpenIDでログインする - label_password_lost: パスワードの再設定 - label_home: ホーム - label_my_page: マイページ - label_my_account: 個人設定 - label_my_projects: マイプロジェクト - label_administration: 管理 - label_login: ログイン - label_logout: ログアウト - label_help: ヘルプ - label_reported_issues: 報告したチケット - label_assigned_to_me_issues: 担当しているチケット - label_last_login: 最近の接続 - label_registered_on: 登録日 - label_activity: 活動 - label_overall_activity: すべての活動 - label_user_activity: "%{value} の活動" - label_new: 新しく作成 - label_logged_as: ログイン中: - label_environment: 環境 - label_authentication: 認証 - label_auth_source: 認証方式 - label_auth_source_new: 新しい認証方式 - label_auth_source_plural: 認証方式 - label_subproject_plural: サブプロジェクト - label_subproject_new: 新しいサブプロジェクト - label_and_its_subprojects: "%{value} とサブプロジェクト" - label_min_max_length: 最短 - 最大長 - label_list: リスト - label_date: 日付 - label_integer: 整数 - label_float: 小数 - label_boolean: 真偽値 - label_string: テキスト - label_text: 長いテキスト - label_attribute: 属性 - label_attribute_plural: 属性 - label_no_data: 表示するデータがありません - label_change_status: ステータスの変更 - label_history: 履歴 - label_attachment: ファイル - label_attachment_new: 新しいファイル - label_attachment_delete: ファイルを削除 - label_attachment_plural: ファイル - label_file_added: ファイルの追加 - label_report: レポート - label_report_plural: レポート - label_news: ニュース - label_news_new: ニュースを追加 - label_news_plural: ニュース - label_news_latest: 最新ニュース - label_news_view_all: すべてのニュースを表示 - label_news_added: ニュースの追加 - label_news_comment_added: ニュースへのコメント追加 - label_settings: 設定 - label_overview: 概要 - label_version: バージョン - label_version_new: 新しいバージョン - label_version_plural: バージョン - label_confirmation: 確認 - label_close_versions: 完了したバージョンを終了にする - label_export_to: '他の形式にエクスポート:' - label_read: 読む... - label_public_projects: 公開プロジェクト - label_open_issues: 未完了 - label_open_issues_plural: 未完了 - label_closed_issues: 完了 - label_closed_issues_plural: 完了 - label_x_open_issues_abbr: - zero: 0件未完了 - one: 1件未完了 - other: "%{count}件未完了" - label_x_closed_issues_abbr: - zero: 0件完了 - one: 1件完了 - other: "%{count}件完了" - label_total: 合計 - label_permissions: 権限 - label_current_status: 現在のステータス - label_new_statuses_allowed: 遷移できるステータス - label_all: すべて - label_none: なし - label_nobody: 無記名 - label_next: 次 - label_previous: 前 - label_used_by: 使用中 - label_details: 詳細 - label_add_note: コメントを追加 - label_calendar: カレンダー - label_months_from: ヶ月分 - label_gantt: ガントチャート - label_internal: 内部 - label_last_changes: "最新の変更 %{count}件" - label_change_view_all: すべての変更を表示 - label_comment: コメント - label_comment_plural: コメント - label_x_comments: - zero: コメントがありません - one: 1コメント - other: "%{count}コメント" - label_comment_add: コメント追加 - label_comment_added: コメントが追加されました - label_comment_delete: コメント削除 - label_query: カスタムクエリ - label_query_plural: カスタムクエリ - label_query_new: 新しいクエリ - label_my_queries: マイカスタムクエリ - label_filter_add: フィルタ追加 - label_filter_plural: フィルタ - label_equals: 等しい - label_not_equals: 等しくない - label_in_less_than: N日後以前 - label_in_more_than: N日後以降 - label_greater_or_equal: 以上 - label_less_or_equal: 以下 - label_in: N日後 - label_today: 今日 - label_yesterday: 昨日 - label_tomorrow: 明日 - label_this_week: 今週 - label_last_week: 先週 - label_next_week: 来週 - label_last_n_days: "直近%{count}日間" - label_this_month: 今月 - label_last_month: 先月 - label_next_month: 来月 - label_this_year: 今年 - label_date_range: 期間 - label_less_than_ago: N日前以降 - label_more_than_ago: N日前以前 - label_ago: N日前 - label_contains: 含む - label_not_contains: 含まない - label_day_plural: 日 - label_repository: リポジトリ - label_repository_plural: リポジトリ - label_browse: ブラウズ - label_branch: ブランチ - label_tag: タグ - label_revision: リビジョン - label_revision_plural: リビジョン - label_revision_id: リビジョン %{value} - label_associated_revisions: 関係しているリビジョン - label_added: 追加 - label_modified: 変更 - label_copied: コピー - label_renamed: 名称変更 - label_deleted: 削除 - label_latest_revision: 最新リビジョン - label_latest_revision_plural: 最新リビジョン - label_view_revisions: リビジョンを表示 - label_view_all_revisions: すべてのリビジョンを表示 - label_max_size: サイズの上限 - label_sort_highest: 一番上へ - label_sort_higher: 上へ - label_sort_lower: 下へ - label_sort_lowest: 一番下へ - label_roadmap: ロードマップ - label_roadmap_due_in: "期日まで %{value}" - label_roadmap_overdue: "%{value} 遅れ" - label_roadmap_no_issues: このバージョンに関するチケットはありません - label_search: 検索 - label_result_plural: 結果 - label_all_words: すべての単語 - label_wiki: Wiki - label_wiki_edit: Wiki編集 - label_wiki_edit_plural: Wiki編集 - label_wiki_page: Wikiページ - label_wiki_page_plural: Wikiページ - label_index_by_title: 索引(名前順) - label_index_by_date: 索引(日付順) - label_current_version: 最新版 - label_preview: プレビュー - label_feed_plural: フィード - label_changes_details: 全変更の詳細 - label_issue_tracking: チケットトラッキング - label_spent_time: 作業時間 - label_overall_spent_time: すべての作業時間 - label_f_hour: "%{value}時間" - label_f_hour_plural: "%{value}時間" - label_time_tracking: 時間管理 - label_change_plural: 変更 - label_statistics: 統計 - label_commits_per_month: 月別のコミット - label_commits_per_author: 作成者別のコミット - label_diff: 差分 - label_view_diff: 差分を表示 - label_diff_inline: インライン - label_diff_side_by_side: 横に並べる - label_options: オプション - label_copy_workflow_from: ワークフローをここからコピー - label_permissions_report: 権限レポート - label_watched_issues: ウォッチしているチケット - label_related_issues: 関連するチケット - label_applied_status: 適用されるステータス - label_loading: ロード中... - label_relation_new: 新しい関連 - label_relation_delete: 関連の削除 - label_relates_to: 関連している - label_duplicates: 次のチケットと重複 - label_duplicated_by: 次のチケットが重複 - label_blocks: ブロック先 - label_blocked_by: ブロック元 - label_precedes: 次のチケットに先行 - label_follows: 次のチケットに後続 - label_stay_logged_in: ログインを維持 - label_disabled: 無効 - label_show_completed_versions: 完了したバージョンを表示 - label_me: 自分 - label_board: フォーラム - label_board_new: 新しいフォーラム - label_board_plural: フォーラム - label_board_sticky: スティッキー - label_board_locked: ロック - label_topic_plural: トピック - label_message_plural: メッセージ - label_message_last: 最新のメッセージ - label_message_new: 新しいメッセージ - label_message_posted: メッセージの追加 - label_reply_plural: 返答 - label_send_information: アカウント情報をユーザーに送信 - label_year: 年 - label_month: 月 - label_week: 週 - label_date_from: "日付指定: " - label_date_to: から - label_language_based: ユーザーの言語の設定に従う - label_sort_by: "並べ替え %{value}" - label_send_test_email: テストメールを送信 - label_feeds_access_key: Atomアクセスキー - label_missing_feeds_access_key: Atomアクセスキーが見つかりません - label_feeds_access_key_created_on: "Atomアクセスキーは%{value}前に作成されました" - label_module_plural: モジュール - label_added_time_by: "%{author} さんが%{age}前に追加" - label_updated_time_by: "%{author} さんが%{age}前に更新" - label_updated_time: "%{value}前に更新" - label_jump_to_a_project: プロジェクトへ移動... - label_file_plural: ファイル - label_changeset_plural: 更新履歴 - label_default_columns: デフォルトの項目 - label_no_change_option: (変更無し) - label_bulk_edit_selected_issues: チケットの一括編集 - label_theme: テーマ - label_default: デフォルト - label_search_titles_only: タイトルのみ - label_user_mail_option_all: "参加しているプロジェクトのすべての通知" - label_user_mail_option_selected: "選択したプロジェクトのすべての通知..." - label_user_mail_option_none: "通知しない" - label_user_mail_option_only_my_events: "ウォッチ中または自分が関係しているもの" - label_user_mail_option_only_assigned: "ウォッチ中または自分が担当しているもの" - label_user_mail_option_only_owner: "ウォッチ中または自分が作成したもの" - label_user_mail_no_self_notified: 自分自身による変更の通知は不要 - label_registration_activation_by_email: メールでアカウントを有効化 - label_registration_manual_activation: 手動でアカウントを有効化 - label_registration_automatic_activation: 自動でアカウントを有効化 - label_display_per_page: "1ページに: %{value}" - label_age: 経過期間 - label_change_properties: プロパティの変更 - label_general: 全般 - label_scm: バージョン管理システム - label_plugins: プラグイン - label_ldap_authentication: LDAP認証 - label_downloads_abbr: DL - label_optional_description: 説明 (任意) - label_add_another_file: 別のファイルを追加 - label_preferences: 設定 - label_chronological_order: 古い順 - label_reverse_chronological_order: 新しい順 - label_incoming_emails: 受信メール - label_generate_key: キーの生成 - label_issue_watchers: ウォッチャー - label_example: 例 - label_display: 表示 - label_sort: ソート条件 - label_ascending: 昇順 - label_descending: 降順 - label_date_from_to: "%{start}から%{end}まで" - label_wiki_content_added: Wikiページの追加 - label_wiki_content_updated: Wikiページの更新 - label_group: グループ - label_group_plural: グループ - label_group_new: 新しいグループ - label_time_entry_plural: 作業時間 - label_version_sharing_none: 共有しない - label_version_sharing_descendants: サブプロジェクト単位 - label_version_sharing_hierarchy: プロジェクト階層単位 - label_version_sharing_tree: プロジェクトツリー単位 - label_version_sharing_system: すべてのプロジェクト - label_update_issue_done_ratios: 進捗率の更新 - label_copy_source: コピー元 - label_copy_target: コピー先 - label_copy_same_as_target: 同じコピー先 - label_display_used_statuses_only: このトラッカーで使用中のステータスのみ表示 - label_api_access_key: APIアクセスキー - label_missing_api_access_key: APIアクセスキーが見つかりません - label_api_access_key_created_on: "APIアクセスキーは%{value}前に作成されました" - label_subtask_plural: 子チケット - label_project_copy_notifications: コピーしたチケットのメール通知を送信する - label_principal_search: "ユーザーまたはグループの検索:" - label_user_search: "ユーザーの検索:" - label_git_report_last_commit: ファイルとディレクトリの最新コミットを表示する - label_parent_revision: 親 - label_child_revision: 子 - label_gantt_progress_line: イナズマ線 - - button_login: ログイン - button_submit: 送信 - button_save: 保存 - button_check_all: すべてにチェックをつける - button_uncheck_all: すべてのチェックを外す - button_expand_all: 展開 - button_collapse_all: 折りたたみ - button_delete: 削除 - button_create: 作成 - button_create_and_continue: 連続作成 - button_test: テスト - button_edit: 編集 - button_edit_associated_wikipage: "関連するWikiページを編集: %{page_title}" - button_add: 追加 - button_change: 変更 - button_apply: 適用 - button_clear: クリア - button_lock: ロック - button_unlock: アンロック - button_download: ダウンロード - button_list: 一覧 - button_view: 表示 - button_move: 移動 - button_move_and_follow: 移動後表示 - button_back: 戻る - button_cancel: キャンセル - button_activate: 有効にする - button_sort: ソート - button_log_time: 時間を記録 - button_rollback: このバージョンにロールバック - button_watch: ウォッチ - button_unwatch: ウォッチをやめる - button_reply: 返答 - button_archive: アーカイブ - button_unarchive: アーカイブ解除 - button_reset: リセット - button_rename: 名前変更 - button_change_password: パスワード変更 - button_copy: コピー - button_copy_and_follow: コピー後表示 - button_annotate: アノテート - button_update: 更新 - button_configure: 設定 - button_quote: 引用 - button_show: 表示 - - status_active: 有効 - status_registered: 登録 - status_locked: ロック中 - - version_status_open: 進行中 - version_status_locked: ロック中 - version_status_closed: 終了 - - field_active: 有効 - - text_select_mail_notifications: メール通知の送信対象とする操作を選択してください。 - text_regexp_info: 例) ^[A-Z0-9]+$ - text_min_max_length_info: 0だと無制限になります - text_project_destroy_confirmation: 本当にこのプロジェクトと関連データを削除しますか? - text_subprojects_destroy_warning: "サブプロジェクト %{value} も削除されます。" - text_workflow_edit: ワークフローを編集するロールとトラッカーを選んでください - text_are_you_sure: よろしいですか? - text_journal_changed: "%{label} を %{old} から %{new} に変更" - text_journal_changed_no_detail: "%{label} を更新" - text_journal_set_to: "%{label} を %{value} にセット" - text_journal_deleted: "%{label} を削除 (%{old})" - text_journal_added: "%{label} %{value} を追加" - text_tip_issue_begin_day: この日に開始するチケット - text_tip_issue_end_day: この日に終了するチケット - text_tip_issue_begin_end_day: この日に開始・終了するチケット - text_caracters_maximum: "最大%{count}文字です。" - text_caracters_minimum: "最低%{count}文字の長さが必要です。" - text_length_between: "長さは%{min}から%{max}文字までです。" - text_tracker_no_workflow: このトラッカーにワークフローが定義されていません - text_unallowed_characters: 次の文字は使用できません - text_comma_separated: (カンマで区切ることで)複数の値を設定できます。 - text_line_separated: (1行ごとに書くことで)複数の値を設定できます。 - text_issues_ref_in_commit_messages: コミットメッセージ内でチケットの参照/修正 - text_issue_added: "チケット %{id} を %{author} さんが作成しました。" - text_issue_updated: "チケット %{id} を %{author} さんが更新しました。" - text_wiki_destroy_confirmation: 本当にこのwikiとその内容のすべてを削除しますか? - text_issue_category_destroy_question: "%{count}件のチケットがこのカテゴリに割り当てられています。" - text_issue_category_destroy_assignments: カテゴリの割り当てを削除する - text_issue_category_reassign_to: チケットをこのカテゴリに再割り当てする - text_user_mail_option: "未選択のプロジェクトでは、ウォッチ中または自分が関係しているもの(例: 自分が作成または担当しているチケット)のみメールが送信されます。" - text_no_configuration_data: "ロール、トラッカー、チケットのステータス、ワークフローがまだ設定されていません。\nデフォルト設定のロードを強くお勧めします。ロードした後、それを修正することができます。" - text_load_default_configuration: デフォルト設定をロード - text_status_changed_by_changeset: "更新履歴 %{value} で適用されました。" - text_time_logged_by_changeset: "更新履歴 %{value} で適用されました。" - text_issues_destroy_confirmation: '本当に選択したチケットを削除しますか?' - text_select_project_modules: 'このプロジェクトで使用するモジュールを選択してください:' - text_default_administrator_account_changed: デフォルト管理アカウントが変更済 - text_file_repository_writable: ファイルリポジトリに書き込み可能 - text_plugin_assets_writable: Plugin assetsディレクトリに書き込み可能 - text_minimagick_available: MiniMagickが利用可能 (オプション) - text_destroy_time_entries_question: このチケットの%{hours}時間分の作業記録の扱いを選択してください。 - text_destroy_time_entries: 記録された作業時間を含めて削除 - text_assign_time_entries_to_project: 記録された作業時間をプロジェクト自体に割り当て - text_reassign_time_entries: '記録された作業時間をこのチケットに再割り当て:' - text_user_wrote: "%{value} さんは書きました:" - text_user_wrote_in: "%{value} さんは %{link} で書きました:" - text_enumeration_destroy_question: "%{count}個のオブジェクトがこの値に割り当てられています。" - text_enumeration_category_reassign_to: '次の値に割り当て直す:' - text_email_delivery_not_configured: "メールを送信するために必要な設定が行われていないため、メール通知は利用できません。\nconfig/configuration.ymlでSMTPサーバの設定を行い、アプリケーションを再起動してください。" - text_repository_usernames_mapping: "リポジトリのログから検出されたユーザー名をどのRedmineユーザーに関連づけるのか選択してください。\nログ上のユーザー名またはメールアドレスがRedmineのユーザーと一致する場合は自動的に関連づけられます。" - text_diff_truncated: '... 差分の行数が表示可能な上限を超えました。超過分は表示しません。' - text_custom_field_possible_values_info: '選択肢の値は1行に1個ずつ記述してください。' - text_wiki_page_destroy_question: "この親ページの配下に%{descendants}ページの子孫ページがあります。" - text_wiki_page_nullify_children: "子ページをメインページ配下に移動する" - text_wiki_page_destroy_children: "配下の子孫ページも削除する" - text_wiki_page_reassign_children: "子ページを次の親ページの配下に移動する" - text_own_membership_delete_confirmation: "一部またはすべての権限を自分自身から剥奪しようとしているため、このプロジェクトを編集できなくなる可能性があります。\n本当に続けますか?" - text_zoom_in: 拡大 - text_zoom_out: 縮小 - text_warn_on_leaving_unsaved: このページから移動すると、保存されていないデータが失われます。 - text_scm_path_encoding_note: "デフォルト: UTF-8" - text_mercurial_repository_note: "ローカルリポジトリ (例: /hgrepo, c:\\hgrepo)" - text_git_repository_note: "ローカルのベア(bare)リポジトリ (例: /gitrepo, c:\\gitrepo)" - text_scm_command: コマンド - text_scm_command_version: バージョン - text_scm_config: バージョン管理システムのコマンドをconfig/configuration.ymlで設定できます。設定後、Redmineを再起動してください。 - text_scm_command_not_available: バージョン管理システムのコマンドが利用できません。管理画面にて設定を確認してください。 - - default_role_manager: 管理者 - default_role_developer: 開発者 - default_role_reporter: 報告者 - default_tracker_bug: バグ - default_tracker_feature: 機能 - default_tracker_support: サポート - default_issue_status_new: 新規 - default_issue_status_in_progress: 進行中 - default_issue_status_resolved: 解決 - default_issue_status_feedback: フィードバック - default_issue_status_closed: 終了 - default_issue_status_rejected: 却下 - default_doc_category_user: ユーザー文書 - default_doc_category_tech: 技術文書 - default_priority_low: 低め - default_priority_normal: 通常 - default_priority_high: 高め - default_priority_urgent: 急いで - default_priority_immediate: 今すぐ - default_activity_design: 設計作業 - default_activity_development: 開発作業 - - enumeration_issue_priorities: チケットの優先度 - enumeration_doc_categories: 文書カテゴリ - enumeration_activities: 作業分類 (時間管理) - enumeration_system_activity: システム作業分類 - label_additional_workflow_transitions_for_assignee: チケット担当者に追加で許可する遷移 - label_additional_workflow_transitions_for_author: チケット作成者に追加で許可する遷移 - label_bulk_edit_selected_time_entries: 作業時間の一括編集 - text_time_entries_destroy_confirmation: 本当に選択した作業時間を削除しますか? - - label_role_anonymous: 匿名ユーザー - label_role_non_member: 非メンバー - - label_issue_note_added: コメントの追加 - label_issue_status_updated: ステータスの更新 - label_issue_priority_updated: 優先度の更新 - label_issues_visibility_own: 作成者か担当者であるチケット - field_issues_visibility: 表示できるチケット - label_issues_visibility_all: すべてのチケット - permission_set_own_issues_private: 自分が追加したチケットのプライベート設定 - field_is_private: プライベート - permission_set_issues_private: チケットのプライベート設定 - label_issues_visibility_public: プライベートチケット以外 - text_issues_destroy_descendants_confirmation: "%{count}個の子チケットも削除されます。" - notice_issue_successful_create: チケット %{id} が作成されました。 - label_between: 次の範囲内 - setting_issue_group_assignment: グループへのチケット割り当てを許可 - description_query_sort_criteria_direction: 順序 - description_project_scope: 検索範囲 - description_filter: Filter - description_user_mail_notification: メール通知の設定 - description_message_content: 内容 - description_available_columns: 利用できる項目 - description_issue_category_reassign: 新しいカテゴリを選択してください - description_search: 検索キーワード - description_notes: コメント - description_choose_project: プロジェクト - description_query_sort_criteria_attribute: 項目 - description_wiki_subpages_reassign: 新しい親ページを選択してください - description_selected_columns: 選択された項目 - error_scm_annotate_big_text_file: テキストファイルサイズの上限を超えているためアノテートできません。 - setting_default_issue_start_date_to_creation_date: 現在の日付を新しいチケットの開始日とする - button_edit_section: このセクションを編集 - description_all_columns: すべての項目 - button_export: エクスポート - label_export_options: "%{export_format} エクスポート設定" - error_attachment_too_big: このファイルはアップロードできません。添付ファイルサイズの上限(%{max_size})を超えています。 - notice_failed_to_save_time_entries: "全%{total}件中%{count}件の作業時間が保存できませんでした: %{ids}。" - label_x_issues: - zero: 0 チケット - one: 1 チケット - other: "%{count} チケット" - label_repository_new: 新しいリポジトリ - field_repository_is_default: メインリポジトリ - label_copy_attachments: 添付ファイルをコピー - label_item_position: "%{position}/%{count}" - label_completed_versions: 完了したバージョン - text_project_identifier_info: アルファベット小文字(a-z)・数字・ハイフン・アンダースコアが使えます。
    識別子は後で変更することはできません。 - field_multiple: 複数選択可 - setting_commit_cross_project_ref: 異なるプロジェクトのチケットの参照/修正を許可 - text_issue_conflict_resolution_add_notes: 自分の編集内容を破棄しコメントのみ追加 - text_issue_conflict_resolution_overwrite: 自分の編集内容の保存を強行 (他のユーザーの更新内容はコメントを除き上書きされます) - notice_issue_update_conflict: このチケットを編集中に他のユーザーが更新しました。 - text_issue_conflict_resolution_cancel: 自分の編集内容を破棄し %{link} を再表示 - permission_manage_related_issues: リビジョンとチケットの関連の管理 - field_auth_source_ldap_filter: LDAPフィルタ - label_search_for_watchers: ウォッチャーを検索して追加 - notice_account_deleted: アカウントが削除されました。 - setting_unsubscribe: ユーザーによるアカウント削除を許可 - button_delete_my_account: 自分のアカウントを削除 - text_account_destroy_confirmation: |- - 本当にアカウントを削除しますか? - アカウントは恒久的に削除されます。削除後に再度アカウントを有効にする手段はありません。 - error_session_expired: セッションが失効しました。ログインし直してください。 - text_session_expiration_settings: "警告: この設定を変更すると現在有効なセッションが失効する可能性があります。" - setting_session_lifetime: 有効期間の最大値 - setting_session_timeout: 無操作タイムアウト - label_session_expiration: セッション有効期間 - permission_close_project: プロジェクトの終了/再開 - button_close: 終了 - button_reopen: 再開 - project_status_active: 有効 - project_status_closed: 終了 - project_status_archived: アーカイブ - text_project_closed: このプロジェクトは終了しているため読み取り専用です。 - notice_user_successful_create: ユーザー %{id} を作成しました。 - field_core_fields: 標準フィールド - field_timeout: タイムアウト(秒単位) - setting_thumbnails_enabled: 添付ファイルのサムネイル画像を表示 - setting_thumbnails_size: サムネイル画像の大きさ(ピクセル単位) - label_status_transitions: ステータスの遷移 - label_fields_permissions: フィールドに対する権限 - label_readonly: 読み取り専用 - label_required: 必須 - text_repository_identifier_info: アルファベット小文字(a-z)・数字・ハイフン・アンダースコアが使えます。
    識別子は後で変更することはできません。 - field_board_parent: 親フォーラム - label_attribute_of_project: プロジェクトの %{name} - label_attribute_of_author: 作成者の %{name} - label_attribute_of_assigned_to: 担当者の %{name} - label_attribute_of_fixed_version: 対象バージョンの %{name} - label_copy_subtasks: 子チケットをコピー - label_copied_to: コピー先 - label_copied_from: コピー元 - label_any_issues_in_project: 次のプロジェクト内のチケット - label_any_issues_not_in_project: 次のプロジェクト外のチケット - field_private_notes: プライベートコメント - permission_view_private_notes: プライベートコメントの閲覧 - permission_set_notes_private: コメントのプライベート設定 - label_no_issues_in_project: 次のプロジェクト内のチケットを除く - label_any: すべて - label_last_n_weeks: 直近%{count}週間 - setting_cross_project_subtasks: 異なるプロジェクトのチケット間の親子関係を許可 - label_cross_project_descendants: サブプロジェクト単位 - label_cross_project_tree: プロジェクトツリー単位 - label_cross_project_hierarchy: プロジェクト階層単位 - label_cross_project_system: すべてのプロジェクト - button_hide: 隠す - setting_non_working_week_days: 休業日 - label_in_the_next_days: 今後N日 - label_in_the_past_days: 過去N日 - label_attribute_of_user: ユーザーの %{name} - text_turning_multiple_off: この設定を無効にすると、複数選択されている値のうち1個だけが保持され残りは選択解除されます。 - label_attribute_of_issue: チケットの %{name} - permission_add_documents: 文書の追加 - permission_edit_documents: 文書の編集 - permission_delete_documents: 文書の削除 - setting_jsonp_enabled: JSONPを有効にする - field_inherit_members: メンバーを継承 - field_closed_on: 終了日 - field_generate_password: パスワードを自動生成 - label_total_time: 合計 - notice_account_not_activated_yet: アカウントが有効化されていません。アカウントを有効にするためのメールをもう一度受信したいときはこのリンクをクリックしてください。 - notice_account_locked: アカウントがロックされています - label_hidden: 非表示 - label_visibility_private: 自分のみ - label_visibility_roles: 次のロールのみ - label_visibility_public: すべてのユーザー - field_must_change_passwd: 次回ログイン時にパスワード変更を強制 - notice_new_password_must_be_different: 新しいパスワードは現在のパスワードと異なるものでなければなりません - setting_mail_handler_excluded_filenames: 除外する添付ファイル名 - text_convert_available: ImageMagickのconvertコマンドが利用可能 (オプション) - label_link: リンク - label_only: 次のもののみ - label_drop_down_list: ドロップダウンリスト - label_checkboxes: チェックボックス - label_link_values_to: 値に設定するリンクURL - setting_force_default_language_for_anonymous: 匿名ユーザーにデフォルトの言語を強制 - setting_force_default_language_for_loggedin: ログインユーザーにデフォルトの言語を強制 - label_custom_field_select_type: カスタムフィールドを追加するオブジェクトを選択してください - label_issue_assigned_to_updated: 担当者の更新 - label_check_for_updates: アップデートを確認 - label_latest_compatible_version: 互換性のある最新バージョン - label_unknown_plugin: 不明なプラグイン - label_radio_buttons: ラジオボタン - label_group_anonymous: 匿名ユーザー - label_group_non_member: 非メンバー - label_add_projects: プロジェクトの追加 - field_default_status: デフォルトのステータス - text_subversion_repository_note: '例: file:///, http://, https://, svn://, svn+[tunnelscheme]://' - field_users_visibility: 表示できるユーザー - label_users_visibility_all: すべてのアクティブなユーザー - label_users_visibility_members_of_visible_projects: 見ることができるプロジェクトのメンバー - label_edit_attachments: 添付ファイルの編集 - setting_link_copied_issue: チケットをコピーしたときに関連を設定 - label_link_copied_issue: コピーしたチケットに関連を設定 - label_ask: 都度選択 - label_search_attachments_yes: 添付ファイルの名前と説明も検索 - label_search_attachments_no: 添付ファイルを除外 - label_search_attachments_only: 添付ファイルのみ検索 - label_search_open_issues_only: 未完了のチケットのみ - field_address: メールアドレス - setting_max_additional_emails: 追加メールアドレス数の上限 - label_email_address_plural: メールアドレス - label_email_address_add: メールアドレスの追加 - label_enable_notifications: 通知を有効にする - label_disable_notifications: 通知を無効にする - setting_search_results_per_page: ページごとの検索結果表示件数 - label_blank_value: 空 - permission_copy_issues: チケットのコピー - error_password_expired: パスワードの有効期限が過ぎたか、システム管理者より変更を求められています。 - field_time_entries_visibility: 表示できる作業時間 - setting_password_max_age: パスワードの有効期限 - label_parent_task_attributes: 親チケットの値の算出方法 - label_parent_task_attributes_derived: 子チケットの値から算出 - label_parent_task_attributes_independent: 子チケットから独立 - label_time_entries_visibility_all: すべての作業時間 - label_time_entries_visibility_own: 自分の作業時間 - label_member_management: メンバーの管理 - label_member_management_all_roles: すべてのロール - label_member_management_selected_roles_only: 次のロールのみ - label_password_required: この操作を続行するにはパスワードを入力してください - label_total_spent_time: 合計作業時間 - notice_import_finished: "%{count}件のデータをすべてインポートしました" - notice_import_finished_with_errors: "全%{total}件中%{count}件のデータがインポートできませんでした" - error_invalid_file_encoding: このファイルのエンコーディングは正しい%{encoding}ではありません - error_invalid_csv_file_or_settings: このファイルはCSVファイルではないか、以下の設定と一致していません - error_can_not_read_import_file: インポート元のファイルを読み込み中にエラーが発生しました - permission_import_issues: チケットのインポート - label_import_issues: チケットのインポート - label_select_file_to_import: インポートするファイルを選択してください - label_fields_separator: 区切り文字 - label_fields_wrapper: 文字列の引用符 - label_encoding: エンコーディング - label_comma_char: コンマ - label_semi_colon_char: セミコロン - label_quote_char: シングルクォート - label_double_quote_char: ダブルクォート - label_fields_mapping: フィールドの対応関係 - label_file_content_preview: ファイル内容のプレビュー - label_create_missing_values: 存在しない値は新規作成 - button_import: インポート - field_total_estimated_hours: 合計予定工数 - label_api: API - label_total_plural: 合計 - label_assigned_issues: 担当しているチケット - label_field_format_enumeration: キー・バリュー リスト - label_f_hour_short: '%{value}時間' - field_default_version: デフォルトのバージョン - error_attachment_extension_not_allowed: 拡張子が %{extension} のファイルの添付は禁止されています - setting_attachment_extensions_allowed: 許可する拡張子 - setting_attachment_extensions_denied: 禁止する拡張子 - label_any_open_issues: 未完了のチケット - label_no_open_issues: なし または完了したチケット - label_default_values_for_new_users: 新しいユーザーのデフォルト設定 - error_ldap_bind_credentials: LDAPアカウント/パスワードが無効です - setting_sys_api_key: APIキー - setting_lost_password: パスワード再設定機能の使用を許可 - mail_subject_security_notification: セキュリティ通知 - mail_body_security_notification_change: ! '%{field} が変更されました。' - mail_body_security_notification_change_to: ! '%{field} が %{value} に変更されました。' - mail_body_security_notification_add: ! '%{field} に %{value} が追加されました。' - mail_body_security_notification_remove: ! '%{field} から %{value} が削除されました。' - mail_body_security_notification_notify_enabled: メールアドレス %{value} に今後の通知が送信されます。 - mail_body_security_notification_notify_disabled: メールアドレス %{value} には今後は通知が送信されません。 - mail_body_settings_updated: ! '下記の設定が変更されました:' - field_remote_ip: IPアドレス - label_wiki_page_new: 新しいWikiページ - label_relations: 関係 - button_filter: フィルタ - mail_body_password_updated: パスワードが変更されました。 - label_no_preview: このファイルはプレビューできません - error_no_tracker_allowed_for_new_issue_in_project: このプロジェクトにはチケットの追加が許可されているトラッカーがありません - label_tracker_all: すべてのトラッカー - label_new_project_issue_tab_enabled: '"新しいチケット" タブを表示' - setting_new_item_menu_tab: 新規オブジェクト作成タブ - label_new_object_tab_enabled: '"+" ドロップダウンを表示' - error_no_projects_with_tracker_allowed_for_new_issue: チケットを追加できるプロジェクトがありません - field_textarea_font: テキストエリアのフォント - label_font_default: デフォルト - label_font_monospace: 等幅 - label_font_proportional: プロポーショナル - setting_timespan_format: 時間の形式 - label_table_of_contents: 目次 - setting_commit_logs_formatting: コミットメッセージにテキスト書式を適用 - setting_mail_handler_enable_regex: 正規表現を使用 - error_move_of_child_not_possible: '子チケット %{child} を指定されたプロジェクトに移動できませんでした: %{errors}' - error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted: 削除対象チケットへの作業時間の再割り当てはできません - setting_timelog_required_fields: 作業時間の必須入力フィールド - label_attribute_of_object: '%{object_name}の %{name}' - warning_fields_cleared_on_bulk_edit: この編集操作により次のフィールドの値がチケットから削除されます - field_updated_by: 更新者 - field_last_updated_by: 最終更新者 - field_full_width_layout: ワイド表示 - label_last_notes: 最新のコメント - field_digest: チェックサム - field_default_assigned_to: デフォルトの担当者 - setting_show_custom_fields_on_registration: アカウント登録画面でカスタムフィールドを表示 - label_no_preview_alternative_html: このファイルはプレビューできません。 %{link} してください。 - label_no_preview_download: ダウンロード - setting_close_duplicate_issues: 重複しているチケットを連動して終了 - error_exceeds_maximum_hours_per_day: 作業時間は1日・1人あたり%{max_hours}時間を超えることはできません (すでに%{logged_hours}時間記録済み) - setting_time_entry_list_defaults: 作業時間の一覧で表示する項目 - setting_timelog_accept_0_hours: 作業時間に0時間の入力を許可 - setting_timelog_max_hours_per_day: 1日・1人あたりの作業時間の上限 - label_x_revisions: "%{count}件の履歴" - error_can_not_delete_auth_source: この認証方式は使用中です。削除できません。 - button_actions: 操作 - text_login_required_html: 認証を必須としない場合、公開プロジェクトとその中の情報にはネットワーク上の誰もがアクセスできます。匿名ユーザーの権限を編集できます。 - label_login_required_yes: 'はい' - label_login_required_no: いいえ (匿名ユーザーに公開プロジェクトへのアクセスを許可) - text_project_is_public_non_member: 公開プロジェクトとその中の情報にはログイン済みの全ユーザーがアクセスできます。 - text_project_is_public_anonymous: 公開プロジェクトとその中の情報にはネットワーク上の全ユーザーがアクセスできます。 - label_version_and_files: バージョン (%{count}) とファイル - label_ldap: LDAP - label_ldaps_verify_none: LDAPS (証明書の検証なし) - label_ldaps_verify_peer: LDAPS - label_ldaps_warning: 認証処理中の盗聴や改ざんなどの攻撃を防ぐために、暗号化されたLDAPSによる通信 (証明書の検証あり) の使用をお勧めします。 - label_nothing_to_preview: プレビューするものがありません - error_token_expired: パスワード再発行用のリンクはすでに失効しています。もう一度やり直してください。 - error_spent_on_future_date: 未来日付の作業時間は入力できません - setting_timelog_accept_future_dates: 未来日付の作業時間の入力を許可 - label_delete_link_to_subtask: 関連の削除 - error_not_allowed_to_log_time_for_other_users: 他のユーザーの作業時間を入力する権限がありません - permission_log_time_for_other_users: 他のユーザーの作業時間の入力 - text_role_no_workflow: このロールにワークフローが定義されていません - text_status_no_workflow: このステータスはどのトラッカーのワークフローでも使われていません - setting_mail_handler_preferred_body_part: マルチパート (HTML) メールの優先パート - setting_show_status_changes_in_mail_subject: 通知メールの題名にステータス変更の情報を挿入 - label_inherited_from_parent_project: 親プロジェクトから継承 - label_inherited_from_group: グループ %{name} から継承 - label_trackers_description: トラッカーの説明 - label_open_trackers_description: すべてのトラッカーの説明を表示 - label_preferred_body_part_text: テキスト - label_preferred_body_part_html: HTML (experimental) - field_parent_issue_subject: 親チケットの題名 - permission_edit_own_issues: 自分が追加したチケットの編集 - text_select_apply_tracker: このトラッカーを適用 - label_updated_issues: 更新したチケット - text_avatar_server_config_html: 現在のアバターサーバーは %{url} です。サーバーは config/configuration.yml で変更できます。 - setting_gantt_months_limit: ガントチャート最大表示月数 - permission_import_time_entries: 作業時間のインポート - label_import_notifications: インポート中のメール通知 - text_gs_available: ImageMagickのPDFサポートが利用可能 (オプション) - field_recently_used_projects: 最近使用したプロジェクトの表示件数 - label_optgroup_bookmarks: ブックマーク - label_optgroup_others: 他のプロジェクト - label_optgroup_recents: 最近使用したもの - button_project_bookmark: ブックマークに追加 - button_project_bookmark_delete: ブックマークから削除 - field_history_default_tab: チケットの履歴のデフォルトタブ - label_issue_history_properties: プロパティ更新履歴 - label_issue_history_notes: コメント - label_last_tab_visited: 最後に開いたタブ - field_unique_id: Unique ID - text_no_subject: 題名なし - setting_password_required_char_classes: パスワードの必須文字種別 - label_password_char_class_uppercase: 大文字 - label_password_char_class_lowercase: 小文字 - label_password_char_class_digits: 数字 - label_password_char_class_special_chars: 記号 - text_characters_must_contain: "%{character_classes}を含む必要があります。" - label_starts_with: 前方一致 - label_ends_with: 後方一致 - label_issue_fixed_version_updated: 対象バージョンの更新 - setting_project_list_defaults: プロジェクトの一覧で表示する項目 - label_display_type: 表示形式 - label_display_type_list: リスト - label_display_type_board: ボード - label_my_bookmarks: My bookmarks - label_import_time_entries: 作業時間のインポート diff --git a/config/locales/ko.yml b/config/locales/ko.yml deleted file mode 100644 index 9e2f233..0000000 --- a/config/locales/ko.yml +++ /dev/null @@ -1,1353 +0,0 @@ -# Korean translations for Ruby on Rails -ko: - direction: ltr - date: - formats: - # Use the strftime parameters for formats. - # When no format has been given, it uses default. - # You can provide other formats here if you like! - default: "%Y/%m/%d" - short: "%m/%d" - long: "%Y년 %m월 %d일 (%a)" - - day_names: [일요일, 월요일, 화요일, 수요일, 목요일, 금요일, 토요일] - abbr_day_names: [일, 월, 화, 수, 목, 금, 토] - - # Don't forget the nil at the beginning; there's no such thing as a 0th month - month_names: [~, 1월, 2월, 3월, 4월, 5월, 6월, 7월, 8월, 9월, 10월, 11월, 12월] - abbr_month_names: [~, 1월, 2월, 3월, 4월, 5월, 6월, 7월, 8월, 9월, 10월, 11월, 12월] - # Used in date_select and datime_select. - order: - - :year - - :month - - :day - - time: - formats: - default: "%Y/%m/%d %H:%M:%S" - time: "%H:%M" - short: "%y/%m/%d %H:%M" - long: "%Y년 %B월 %d일, %H시 %M분 %S초 %Z" - am: "오전" - pm: "오후" - - datetime: - distance_in_words: - half_a_minute: "30초" - less_than_x_seconds: - one: "일초 이하" - other: "%{count}초 이하" - x_seconds: - one: "일초" - other: "%{count}초" - less_than_x_minutes: - one: "일분 이하" - other: "%{count}분 이하" - x_minutes: - one: "일분" - other: "%{count}분" - about_x_hours: - one: "약 한시간" - other: "약 %{count}시간" - x_hours: - one: "1 시간" - other: "%{count} 시간" - x_days: - one: "하루" - other: "%{count}일" - about_x_months: - one: "약 한달" - other: "약 %{count}달" - x_months: - one: "한달" - other: "%{count}달" - about_x_years: - one: "약 일년" - other: "약 %{count}년" - over_x_years: - one: "일년 이상" - other: "%{count}년 이상" - almost_x_years: - one: "약 1년" - other: "약 %{count}년" - prompts: - year: "년" - month: "월" - day: "일" - hour: "시" - minute: "분" - second: "초" - - number: - # Used in number_with_delimiter() - # These are also the defaults for 'currency', 'percentage', 'precision', and 'human' - format: - # Sets the separator between the units, for more precision (e.g. 1.0 / 2.0 == 0.5) - separator: "." - # Delimets thousands (e.g. 1,000,000 is a million) (always in groups of three) - delimiter: "," - # Number of decimals, behind the separator (the number 1 with a precision of 2 gives: 1.00) - precision: 3 - - # Used in number_to_currency() - currency: - format: - # Where is the currency sign? %u is the currency unit, %n the number (default: $5.00) - format: "%u%n" - unit: "₩" - # These three are to override number.format and are optional - separator: "." - delimiter: "," - precision: 0 - - # Used in number_to_percentage() - percentage: - format: - # These three are to override number.format and are optional - # separator: - delimiter: "" - # precision: - - # Used in number_to_precision() - precision: - format: - # These three are to override number.format and are optional - # separator: - delimiter: "" - # precision: - - # Used in number_to_human_size() - human: - format: - # These three are to override number.format and are optional - # separator: - delimiter: "" - precision: 3 - storage_units: - format: "%n %u" - units: - byte: - one: "Byte" - other: "Bytes" - kb: "KB" - mb: "MB" - gb: "GB" - tb: "TB" - -# Used in array.to_sentence. - support: - array: - words_connector: ", " - two_words_connector: "과 " - last_word_connector: ", " - sentence_connector: "그리고" - skip_last_comma: false - - activerecord: - errors: - template: - header: - one: "한개의 오류가 발생해 %{model}을(를) 저장하지 않았습니다." - other: "%{count}개의 오류가 발생해 %{model}을(를) 저장하지 않았습니다." - # The variable :count is also available - body: "다음 항목에 문제가 발견했습니다:" - - messages: - inclusion: "은 목록에 포함되어 있지 않습니다" - exclusion: "은 예약되어 있습니다" - invalid: "은 유효하지 않습니다." - confirmation: "은 확인이 되지 않았습니다" - accepted: "은 인정되어야 합니다" - empty: "은 길이가 0이어서는 안됩니다." - blank: "은 빈 값이어서는 안 됩니다" - too_long: "은 너무 깁니다 (최대 %{count}자 까지)" - too_short: "은 너무 짧습니다 (최소 %{count}자 까지)" - wrong_length: "은 길이가 틀렸습니다 (%{count}자이어야 합니다.)" - taken: "은 이미 선택된 겁니다" - not_a_number: "은 숫자가 아닙니다" - greater_than: "은 %{count}보다 커야 합니다." - greater_than_or_equal_to: "은 %{count}보다 크거나 같아야 합니다" - equal_to: "은 %{count}(와)과 같아야 합니다" - less_than: "은 %{count}보다 작어야 합니다" - less_than_or_equal_to: "은 %{count}과 같거나 이하을 요구합니다" - odd: "은 홀수여야 합니다" - even: "은 짝수여야 합니다" - greater_than_start_date: "는 시작날짜보다 커야 합니다" - not_same_project: "는 같은 프로젝트에 속해 있지 않습니다" - circular_dependency: "이 관계는 순환 의존관계를 만들 수 있습니다" - cant_link_an_issue_with_a_descendant: "일감은 하위 일감과 연결할 수 없습니다." - earlier_than_minimum_start_date: "시작날짜 %{date}보다 앞선 시간으로 설정할 수 없습니다." - not_a_regexp: "is not a valid regular expression" - open_issue_with_closed_parent: "An open issue cannot be attached to a closed parent task" - must_contain_uppercase: "must contain uppercase letters (A-Z)" - must_contain_lowercase: "must contain lowercase letters (a-z)" - must_contain_digits: "must contain digits (0-9)" - must_contain_special_chars: "must contain special characters (!, $, %, ...)" - - actionview_instancetag_blank_option: 선택하세요 - - general_text_No: '아니오' - general_text_Yes: '예' - general_text_no: '아니오' - general_text_yes: '예' - general_lang_name: 'Korean (한국어)' - general_csv_separator: ',' - general_csv_decimal_separator: '.' - general_csv_encoding: CP949 - general_pdf_fontname: hysmyeongjostdmedium - general_pdf_monospaced_fontname: hysmyeongjostdmedium - general_first_day_of_week: '7' - - notice_account_updated: 계정이 성공적으로 변경되었습니다. - notice_account_invalid_credentials: 잘못된 계정 또는 비밀번호 - notice_account_password_updated: 비밀번호가 잘 변경되었습니다. - notice_account_wrong_password: 잘못된 비밀번호 - notice_account_register_done: 계정이 잘 만들어졌습니다. 계정을 활성화하시려면 받은 메일의 링크를 클릭해주세요. - notice_account_unknown_email: 알려지지 않은 사용자. - notice_can_t_change_password: 이 계정은 외부 인증을 이용합니다. 비밀번호를 변경할 수 없습니다. - notice_account_lost_email_sent: 새로운 비밀번호를 위한 메일이 발송되었습니다. - notice_account_activated: 계정이 활성화되었습니다. 이제 로그인 하실수 있습니다. - notice_successful_create: 생성 성공. - notice_successful_update: 변경 성공. - notice_successful_delete: 삭제 성공. - notice_successful_connection: 연결 성공. - notice_file_not_found: 요청하신 페이지는 삭제되었거나 옮겨졌습니다. - notice_locking_conflict: 다른 사용자에 의해서 데이터가 변경되었습니다. - notice_not_authorized: 이 페이지에 접근할 권한이 없습니다. - notice_email_sent: "%{value}님에게 메일이 발송되었습니다." - notice_email_error: "메일을 전송하는 과정에 오류가 발생했습니다. (%{value})" - notice_feeds_access_key_reseted: Atom에 접근가능한 열쇠(key)가 생성되었습니다. - notice_failed_to_save_issues: "저장에 실패하였습니다: 실패 %{count}(선택 %{total}): %{ids}." - notice_no_issue_selected: "일감이 선택되지 않았습니다. 수정하기 원하는 일감을 선택하세요" - notice_account_pending: "계정이 만들어졌으며 관리자 승인 대기중입니다." - notice_default_data_loaded: 기본값을 성공적으로 읽어들였습니다. - notice_unable_delete_version: 삭제할 수 없는 버전입니다. - - error_can_t_load_default_data: "기본값을 읽어들일 수 없습니다.: %{value}" - error_scm_not_found: 항목이나 리비젼이 저장소에 존재하지 않습니다. - error_scm_command_failed: "저장소에 접근하는 도중에 오류가 발생하였습니다.: %{value}" - error_scm_annotate: "항목이 없거나 행별 이력을 볼 수 없습니다." - error_issue_not_found_in_project: '일감이 없거나 이 프로젝트의 것이 아닙니다.' - - warning_attachments_not_saved: "%{count}개 파일을 저장할 수 없습니다." - - mail_subject_lost_password: "%{value} 비밀번호" - mail_body_lost_password: '비밀번호를 변경하려면 다음 링크를 클릭하세요.' - mail_subject_register: "%{value} 계정 활성화" - mail_body_register: '계정을 활성화하려면 링크를 클릭하세요.:' - mail_body_account_information_external: "로그인할 때 %{value} 계정을 사용하실 수 있습니다." - mail_body_account_information: 계정 정보 - mail_subject_account_activation_request: "%{value} 계정 활성화 요청" - mail_body_account_activation_request: "새 사용자(%{value})가 등록되었습니다. 관리자님의 승인을 기다리고 있습니다.:" - mail_body_reminder: "당신이 맡고 있는 일감 %{count}개의 완료기한이 %{days}일 후 입니다." - mail_subject_reminder: "내일이 만기인 일감 %{count}개 (%{days})" - mail_subject_wiki_content_added: "위키페이지 '%{id}'이(가) 추가되었습니다." - mail_subject_wiki_content_updated: "'위키페이지 %{id}'이(가) 수정되었습니다." - mail_body_wiki_content_added: "%{author}이(가) 위키페이지 '%{id}'을(를) 추가하였습니다." - mail_body_wiki_content_updated: "%{author}이(가) 위키페이지 '%{id}'을(를) 수정하였습니다." - - - field_name: 이름 - field_description: 설명 - field_summary: 요약 - field_is_required: 필수 - field_firstname: 이름 - field_lastname: 성 - field_mail: 메일 - field_filename: 파일 - field_filesize: 크기 - field_downloads: 다운로드 - field_author: 저자 - field_created_on: 등록 - field_updated_on: 변경 - field_field_format: 형식 - field_is_for_all: 모든 프로젝트 - field_possible_values: 가능한 값들 - field_regexp: 정규식 - field_min_length: 최소 길이 - field_max_length: 최대 길이 - field_value: 값 - field_category: 범주 - field_title: 제목 - field_project: 프로젝트 - field_issue: 일감 - field_status: 상태 - field_notes: 덧글 - field_is_closed: 완료 상태 - field_is_default: 기본값 - field_tracker: 유형 - field_subject: 제목 - field_due_date: 완료기한 - field_assigned_to: 담당자 - field_priority: 우선순위 - field_fixed_version: 목표버전 - field_user: 사용자 - field_role: 역할 - field_homepage: 홈페이지 - field_is_public: 공개 - field_parent: 상위 프로젝트 - field_is_in_roadmap: 로드맵에 표시 - field_login: 로그인 - field_mail_notification: 메일 알림 - field_admin: 관리자 - field_last_login_on: 마지막 로그인 - field_language: 언어 - field_effective_date: 날짜 - field_password: 비밀번호 - field_new_password: 새 비밀번호 - field_password_confirmation: 비밀번호 확인 - field_version: 버전 - field_type: 방식 - field_host: 호스트 - field_port: 포트 - field_account: 계정 - field_base_dn: 기본 DN - field_attr_login: 로그인 속성 - field_attr_firstname: 이름 속성 - field_attr_lastname: 성 속성 - field_attr_mail: 메일 속성 - field_onthefly: 동적 사용자 생성 - field_start_date: 시작시간 - field_done_ratio: 진척도 - field_auth_source: 인증 공급자 - field_hide_mail: 메일 주소 숨기기 - field_comments: 설명 - field_url: URL - field_start_page: 첫 페이지 - field_subproject: 하위 프로젝트 - field_hours: 시간 - field_activity: 작업종류 - field_spent_on: 작업시간 - field_identifier: 식별자 - field_is_filter: 검색조건으로 사용됨 - field_delay: 지연 - field_assignable: 일감을 맡길 수 있음 - field_redirect_existing_links: 기존의 링크로 돌려보냄(redirect) - field_estimated_hours: 추정시간 - field_column_names: 컬럼 - field_default_value: 기본값 - field_time_zone: 시간대 - field_searchable: 검색가능 - field_comments_sorting: 댓글 정렬 - field_parent_title: 상위 제목 - field_editable: 편집가능 - field_watcher: 일감관람자 - field_identity_url: OpenID URL - field_content: 내용 - field_group_by: 결과를 묶어 보여줄 기준 - - setting_app_title: 레드마인 제목 - setting_welcome_text: 환영 메시지 - setting_default_language: 기본 언어 - setting_login_required: 인증이 필요함 - setting_self_registration: 사용자 직접등록 - setting_attachment_max_size: 최대 첨부파일 크기 - setting_issues_export_limit: 일감 내보내기 제한 - setting_mail_from: 발신 메일 주소 - setting_bcc_recipients: 참조자들을 bcc로 숨기기 - setting_plain_text_mail: 텍스트만 (HTML 없이) - setting_host_name: 호스트 이름과 경로 - setting_text_formatting: 본문 형식 - setting_wiki_compression: 위키 이력 압축 - setting_feeds_limit: 피드에 포함할 항목의 수 - setting_default_projects_public: 새 프로젝트를 공개로 설정 - setting_autofetch_changesets: 커밋을 자동으로 가져오기 - setting_sys_api_enabled: 저장소 관리에 WS를 사용 - setting_commit_ref_keywords: 일감 참조에 사용할 키워드들 - setting_commit_fix_keywords: 일감 해결에 사용할 키워드들 - setting_autologin: 자동 로그인 - setting_date_format: 날짜 형식 - setting_time_format: 시간 형식 - setting_cross_project_issue_relations: 다른 프로젝트의 일감과 연결하는 것을 허용 - setting_issue_list_default_columns: 일감 목록에 표시할 항목 - setting_emails_footer: 메일 꼬리 - setting_protocol: 프로토콜 - setting_per_page_options: 목록에서, 한 페이지에 표시할 행 - setting_user_format: 사용자 표시 형식 - setting_activity_days_default: 프로젝트 작업내역에 표시할 기간 - setting_display_subprojects_issues: 하위 프로젝트의 일감을 함께 표시 - setting_enabled_scm: "지원할 SCM(Source Control Management)" - setting_mail_handler_api_enabled: 수신 메일에 WS를 허용 - setting_mail_handler_api_key: API 키 - setting_sequential_project_identifiers: 프로젝트 식별자를 순차적으로 생성 - setting_gravatar_enabled: 그라바타 사용자 아이콘 사용 - setting_diff_max_lines_displayed: 차이점(diff) 보기에 표시할 최대 줄수 - setting_repository_log_display_limit: 저장소 보기에 표시할 개정이력의 최대 갯수 - setting_file_max_size_displayed: 바로 보여줄 텍스트파일의 최대 크기 - setting_openid: OpenID 로그인과 등록 허용 - setting_password_min_length: 최소 암호 길이 - setting_new_project_user_role_id: 프로젝트를 만든 사용자에게 주어질 역할 - - permission_add_project: 프로젝트 생성 - permission_edit_project: 프로젝트 편집 - permission_select_project_modules: 프로젝트 모듈 선택 - permission_manage_members: 구성원 관리 - permission_manage_versions: 버전 관리 - permission_manage_categories: 일감 범주 관리 - permission_add_issues: 일감 추가 - permission_edit_issues: 일감 편집 - permission_manage_issue_relations: 일감 관계 관리 - permission_add_issue_notes: 덧글 추가 - permission_edit_issue_notes: 덧글 편집 - permission_edit_own_issue_notes: 내 덧글 편집 - permission_delete_issues: 일감 삭제 - permission_manage_public_queries: 공용 검색양식 관리 - permission_save_queries: 검색양식 저장 - permission_view_gantt: Gantt차트 보기 - permission_view_calendar: 달력 보기 - permission_view_issue_watchers: 일감관람자 보기 - permission_add_issue_watchers: 일감관람자 추가 - permission_log_time: 작업시간 기록 - permission_view_time_entries: 시간입력 보기 - permission_edit_time_entries: 시간입력 편집 - permission_edit_own_time_entries: 내 시간입력 편집 - permission_manage_news: 뉴스 관리 - permission_comment_news: 뉴스에 댓글달기 - permission_view_documents: 문서 보기 - permission_manage_files: 파일관리 - permission_view_files: 파일보기 - permission_manage_wiki: 위키 관리 - permission_rename_wiki_pages: 위키 페이지 이름변경 - permission_delete_wiki_pages: 위치 페이지 삭제 - permission_view_wiki_pages: 위키 보기 - permission_view_wiki_edits: 위키 기록 보기 - permission_edit_wiki_pages: 위키 페이지 편집 - permission_delete_wiki_pages_attachments: 첨부파일 삭제 - permission_protect_wiki_pages: 프로젝트 위키 페이지 - permission_manage_repository: 저장소 관리 - permission_browse_repository: 저장소 둘러보기 - permission_view_changesets: 변경묶음 보기 - permission_commit_access: 변경로그 보기 - permission_manage_boards: 게시판 관리 - permission_view_messages: 메시지 보기 - permission_add_messages: 메시지 추가 - permission_edit_messages: 메시지 편집 - permission_edit_own_messages: 자기 메시지 편집 - permission_delete_messages: 메시지 삭제 - permission_delete_own_messages: 자기 메시지 삭제 - - project_module_issue_tracking: 일감관리 - project_module_time_tracking: 시간추적 - project_module_news: 뉴스 - project_module_documents: 문서 - project_module_files: 파일 - project_module_wiki: 위키 - project_module_repository: 저장소 - project_module_boards: 게시판 - - label_user: 사용자 - label_user_plural: 사용자 - label_user_new: 새 사용자 - label_project: 프로젝트 - label_project_new: 새 프로젝트 - label_project_plural: 프로젝트 - label_x_projects: - zero: 없음 - one: "한 프로젝트" - other: "%{count}개 프로젝트" - label_project_all: 모든 프로젝트 - label_project_latest: 최근 프로젝트 - label_issue: 일감 - label_issue_new: 새 일감만들기 - label_issue_plural: 일감 - label_issue_view_all: 모든 일감 보기 - label_issues_by: "%{value}별 일감" - label_issue_added: 일감 추가 - label_issue_updated: 일감 수정 - label_document: 문서 - label_document_new: 새 문서 - label_document_plural: 문서 - label_document_added: 문서 추가 - label_role: 역할 - label_role_plural: 역할 - label_role_new: 새 역할 - label_role_and_permissions: 역할 및 권한 - label_member: 구성원 - label_member_new: 새 구성원 - label_member_plural: 구성원 - label_tracker: 일감 유형 - label_tracker_plural: 일감 유형 - label_tracker_new: 새 일감 유형 - label_workflow: 업무흐름 - label_issue_status: 일감 상태 - label_issue_status_plural: 일감 상태 - label_issue_status_new: 새 일감 상태 - label_issue_category: 일감 범주 - label_issue_category_plural: 일감 범주 - label_issue_category_new: 새 일감 범주 - label_custom_field: 사용자 정의 항목 - label_custom_field_plural: 사용자 정의 항목 - label_custom_field_new: 새 사용자 정의 항목 - label_enumerations: 코드값 - label_enumeration_new: 새 코드값 - label_information: 정보 - label_information_plural: 정보 - label_register: 등록 - label_login_with_open_id_option: 또는 OpenID로 로그인 - label_password_lost: 비밀번호 찾기 - label_home: 초기화면 - label_my_page: 내 페이지 - label_my_account: 내 계정 - label_my_projects: 내 프로젝트 - label_administration: 관리 - label_login: 로그인 - label_logout: 로그아웃 - label_help: 도움말 - label_reported_issues: 보고한 일감 - label_assigned_to_me_issues: 내가 맡은 일감 - label_last_login: 마지막 접속 - label_registered_on: 등록시각 - label_activity: 작업내역 - label_overall_activity: 전체 작업내역 - label_user_activity: "%{value}의 작업내역" - label_new: 새로 만들기 - label_logged_as: '로그인계정:' - label_environment: 환경 - label_authentication: 인증 - label_auth_source: 인증 공급자 - label_auth_source_new: 새 인증 공급자 - label_auth_source_plural: 인증 공급자 - label_subproject_plural: 하위 프로젝트 - label_and_its_subprojects: "%{value}와 하위 프로젝트들" - label_min_max_length: 최소 - 최대 길이 - label_list: 목록 - label_date: 날짜 - label_integer: 정수 - label_float: 부동소수 - label_boolean: 부울린 - label_string: 문자열 - label_text: 텍스트 - label_attribute: 속성 - label_attribute_plural: 속성 - label_no_data: 표시할 데이터가 없습니다. - label_change_status: 상태 변경 - label_history: 이력 - label_attachment: 파일 - label_attachment_new: 파일추가 - label_attachment_delete: 파일삭제 - label_attachment_plural: 파일 - label_file_added: 파일 추가 - label_report: 보고서 - label_report_plural: 보고서 - label_news: 뉴스 - label_news_new: 새 뉴스 - label_news_plural: 뉴스 - label_news_latest: 최근 뉴스 - label_news_view_all: 모든 뉴스 - label_news_added: 뉴스 추가 - label_settings: 설정 - label_overview: 개요 - label_version: 버전 - label_version_new: 새 버전 - label_version_plural: 버전 - label_confirmation: 확인 - label_export_to: 내보내기 - label_read: 읽기... - label_public_projects: 공개 프로젝트 - label_open_issues: 진행중 - label_open_issues_plural: 진행중 - label_closed_issues: 완료됨 - label_closed_issues_plural: 완료됨 - label_x_open_issues_abbr: - zero: 모두 완료 - one: 한 건 진행 중 - other: "%{count} 건 진행 중" - label_x_closed_issues_abbr: - zero: 모두 미완료 - one: 한 건 완료 - other: "%{count} 건 완료" - label_total: 합계 - label_permissions: 권한 - label_current_status: 일감 상태 - label_new_statuses_allowed: 허용되는 일감 상태 - label_all: 모두 - label_none: 없음 - label_nobody: 미지정 - label_next: 다음 - label_previous: 뒤로 - label_used_by: 사용됨 - label_details: 자세히 - label_add_note: 일감덧글 추가 - label_calendar: 달력 - label_months_from: 개월 동안 | 다음부터 - label_gantt: Gantt 챠트 - label_internal: 내부 - label_last_changes: "최근 %{count}개의 변경사항" - label_change_view_all: 모든 변경 내역 보기 - label_comment: 댓글 - label_comment_plural: 댓글 - label_x_comments: - zero: 댓글 없음 - one: 한 개의 댓글 - other: "%{count} 개의 댓글" - label_comment_add: 댓글 추가 - label_comment_added: 댓글이 추가되었습니다. - label_comment_delete: 댓글 삭제 - label_query: 검색양식 - label_query_plural: 검색양식 - label_query_new: 새 검색양식 - label_filter_add: 검색조건 추가 - label_filter_plural: 검색조건 - label_equals: 이다 - label_not_equals: 아니다 - label_in_less_than: 이내 - label_in_more_than: 이후 - label_greater_or_equal: ">=" - label_less_or_equal: "<=" - label_in: 이내 - label_today: 오늘 - label_yesterday: 어제 - label_this_week: 이번주 - label_last_week: 지난 주 - label_last_n_days: "지난 %{count} 일" - label_this_month: 이번 달 - label_last_month: 지난 달 - label_this_year: 올해 - label_date_range: 날짜 범위 - label_less_than_ago: 이전 - label_more_than_ago: 이후 - label_ago: 일 전 - label_contains: 포함되는 키워드 - label_not_contains: 포함하지 않는 키워드 - label_day_plural: 일 - label_repository: 저장소 - label_repository_plural: 저장소 - label_browse: 저장소 둘러보기 - label_revision: 개정판 - label_revision_plural: 개정판 - label_associated_revisions: 관련된 개정판들 - label_added: 추가됨 - label_modified: 변경됨 - label_copied: 복사됨 - label_renamed: 이름바뀜 - label_deleted: 삭제됨 - label_latest_revision: 최근 개정판 - label_latest_revision_plural: 최근 개정판 - label_view_revisions: 개정판 보기 - label_max_size: 최대 크기 - label_sort_highest: 맨 위로 - label_sort_higher: 위로 - label_sort_lower: 아래로 - label_sort_lowest: 맨 아래로 - label_roadmap: 로드맵 - label_roadmap_due_in: "기한 %{value}" - label_roadmap_overdue: "%{value} 지연" - label_roadmap_no_issues: 이 버전에 해당하는 일감 없음 - label_search: 검색 - label_result_plural: 결과 - label_all_words: 모든 단어 - label_wiki: 위키 - label_wiki_edit: 위키 편집 - label_wiki_edit_plural: 위키 편집 - label_wiki_page: 위키 페이지 - label_wiki_page_plural: 위키 페이지 - label_index_by_title: 제목별 색인 - label_index_by_date: 날짜별 색인 - label_current_version: 현재 버전 - label_preview: 미리보기 - label_feed_plural: 피드(Feeds) - label_changes_details: 모든 상세 변경 내역 - label_issue_tracking: 일감 추적 - label_spent_time: 소요 시간 - label_f_hour: "%{value} 시간" - label_f_hour_plural: "%{value} 시간" - label_time_tracking: 시간추적 - label_change_plural: 변경사항들 - label_statistics: 통계 - label_commits_per_month: 월별 커밋 내역 - label_commits_per_author: 저자별 커밋 내역 - label_view_diff: 차이점 보기 - label_diff_inline: 두줄로 - label_diff_side_by_side: 한줄로 - label_options: 옵션 - label_copy_workflow_from: 업무흐름 복사하기 - label_permissions_report: 권한 보고서 - label_watched_issues: 지켜보고 있는 일감 - label_related_issues: 연결된 일감 - label_applied_status: 적용된 상태 - label_loading: 읽는 중... - label_relation_new: 새 관계 - label_relation_delete: 관계 지우기 - label_relates_to: "다음 일감과 관련됨:" - label_duplicates: "다음 일감에 중복됨:" - label_duplicated_by: "중복된 일감:" - label_blocks: "다음 일감의 해결을 막고 있음:" - label_blocked_by: "다음 일감에게 막혀 있음:" - label_precedes: "다음에 진행할 일감:" - label_follows: "다음 일감을 우선 진행:" - label_stay_logged_in: 로그인 유지 - label_disabled: 비활성화 - label_show_completed_versions: 완료된 버전 보기 - label_me: 나 - label_board: 게시판 - label_board_new: 새 게시판 - label_board_plural: 게시판 - label_topic_plural: 주제 - label_message_plural: 글 - label_message_last: 마지막 글 - label_message_new: 새글쓰기 - label_message_posted: 글 추가 - label_reply_plural: 답글 - label_send_information: 사용자에게 계정정보를 보내기 - label_year: 년 - label_month: 월 - label_week: 주 - label_date_from: '기간:' - label_date_to: ' ~ ' - label_language_based: 언어설정에 따름 - label_sort_by: "%{value}(으)로 정렬" - label_send_test_email: 테스트 메일 보내기 - label_feeds_access_key_created_on: "피드 접근 키가 %{value} 이전에 생성되었습니다." - label_module_plural: 모듈 - label_added_time_by: "%{author}이(가) %{age} 전에 추가함" - label_updated_time_by: "%{author}이(가) %{age} 전에 변경" - label_updated_time: "%{value} 전에 수정됨" - label_jump_to_a_project: 프로젝트 바로가기 - label_file_plural: 파일 - label_changeset_plural: 변경묶음 - label_default_columns: 기본 컬럼 - label_no_change_option: (수정 안함) - label_bulk_edit_selected_issues: 선택한 일감들을 한꺼번에 수정하기 - label_theme: 테마 - label_default: 기본 - label_search_titles_only: 제목에서만 찾기 - label_user_mail_option_all: "내가 속한 프로젝트들로부터 모든 메일 받기" - label_user_mail_option_selected: "선택한 프로젝트들로부터 모든 메일 받기.." - label_user_mail_no_self_notified: "내가 만든 변경사항들에 대해서는 알림을 받지 않습니다." - label_registration_activation_by_email: 메일로 계정을 활성화하기 - label_registration_automatic_activation: 자동 계정 활성화 - label_registration_manual_activation: 수동 계정 활성화 - label_display_per_page: "페이지당 줄수: %{value}" - label_age: 마지막 수정일 - label_change_properties: 속성 변경 - label_general: 일반 - label_scm: 형상관리시스템 - label_plugins: 플러그인 - label_ldap_authentication: LDAP 인증 - label_downloads_abbr: D/L - label_optional_description: 부가적인 설명 - label_add_another_file: 다른 파일 추가 - label_preferences: 설정 - label_chronological_order: 시간 순으로 정렬 - label_reverse_chronological_order: 시간 역순으로 정렬 - label_incoming_emails: 수신 메일 - label_generate_key: 키 생성 - label_issue_watchers: 일감관람자 - label_example: 예 - label_display: 표시방식 - label_sort: 정렬 - label_ascending: 오름차순 - label_descending: 내림차순 - label_date_from_to: "%{start}부터 %{end}까지" - label_wiki_content_added: 위키페이지 추가 - label_wiki_content_updated: 위키페이지 수정 - - button_login: 로그인 - button_submit: 확인 - button_save: 저장 - button_check_all: 모두선택 - button_uncheck_all: 선택해제 - button_delete: 삭제 - button_create: 만들기 - button_create_and_continue: 만들고 계속하기 - button_test: 테스트 - button_edit: 편집 - button_add: 추가 - button_change: 변경 - button_apply: 적용 - button_clear: 지우기 - button_lock: 잠금 - button_unlock: 잠금해제 - button_download: 다운로드 - button_list: 목록 - button_view: 보기 - button_move: 이동 - button_back: 뒤로 - button_cancel: 취소 - button_activate: 활성화 - button_sort: 정렬 - button_log_time: 작업시간 기록 - button_rollback: 이 버전으로 되돌리기 - button_watch: 지켜보기 - button_unwatch: 관심끄기 - button_reply: 답글 - button_archive: 잠금보관 - button_unarchive: 잠금보관해제 - button_reset: 초기화 - button_rename: 이름바꾸기 - button_change_password: 비밀번호 바꾸기 - button_copy: 복사 - button_annotate: 이력해설 - button_update: 업데이트 - button_configure: 설정 - button_quote: 댓글달기 - - status_active: 사용중 - status_registered: 등록대기 - status_locked: 잠김 - - text_select_mail_notifications: 알림메일이 필요한 작업을 선택하세요. - text_regexp_info: 예) ^[A-Z0-9]+$ - text_min_max_length_info: 0 는 제한이 없음을 의미함 - text_project_destroy_confirmation: 이 프로젝트를 삭제하고 모든 데이터를 지우시겠습니까? - text_subprojects_destroy_warning: "하위 프로젝트(%{value})이(가) 자동으로 지워질 것입니다." - text_workflow_edit: 업무흐름을 수정하려면 역할과 일감 유형을 선택하세요. - text_are_you_sure: 계속 진행 하시겠습니까? - text_tip_issue_begin_day: 오늘 시작하는 업무(task) - text_tip_issue_end_day: 오늘 종료하는 업무(task) - text_tip_issue_begin_end_day: 오늘 시작하고 종료하는 업무(task) - text_caracters_maximum: "최대 %{count} 글자 가능" - text_caracters_minimum: "최소한 %{count} 글자 이상이어야 합니다." - text_length_between: "%{min} 에서 %{max} 글자" - text_tracker_no_workflow: 이 일감 유형에는 업무흐름이 정의되지 않았습니다. - text_unallowed_characters: 허용되지 않는 문자열 - text_comma_separated: "구분자','를 이용해서 여러 개의 값을 입력할 수 있습니다." - text_issues_ref_in_commit_messages: 커밋 메시지에서 일감을 참조하거나 해결하기 - text_issue_added: "%{author}이(가) 일감 %{id}을(를) 보고하였습니다." - text_issue_updated: "%{author}이(가) 일감 %{id}을(를) 수정하였습니다." - text_wiki_destroy_confirmation: 이 위키와 모든 내용을 지우시겠습니까? - text_issue_category_destroy_question: "일부 일감들(%{count}개)이 이 범주에 지정되어 있습니다. 어떻게 하시겠습니까?" - text_issue_category_destroy_assignments: 범주 지정 지우기 - text_issue_category_reassign_to: 일감을 이 범주에 다시 지정하기 - text_user_mail_option: "선택하지 않은 프로젝트에서도, 지켜보는 중이거나 속해있는 사항(일감를 발행했거나 할당된 경우)이 있으면 알림메일을 받게 됩니다." - text_no_configuration_data: "역할, 일감 유형, 일감 상태들과 업무흐름이 아직 설정되지 않았습니다.\n기본 설정을 읽어들이는 것을 권장합니다. 읽어들인 후에 수정할 수 있습니다." - text_load_default_configuration: 기본 설정을 읽어들이기 - text_status_changed_by_changeset: "변경묶음 %{value}에 의하여 변경됨" - text_issues_destroy_confirmation: '선택한 일감를 정말로 삭제하시겠습니까?' - text_select_project_modules: '이 프로젝트에서 활성화시킬 모듈을 선택하세요:' - text_default_administrator_account_changed: 기본 관리자 계정이 변경 - text_file_repository_writable: 파일 저장소 쓰기 가능 - text_plugin_assets_writable: 플러그인 전용 디렉토리가 쓰기 가능 - text_minimagick_available: MiniMagick 사용 가능 (선택적) - text_destroy_time_entries_question: 삭제하려는 일감에 %{hours} 시간이 보고되어 있습니다. 어떻게 하시겠습니까? - text_destroy_time_entries: 보고된 시간을 삭제하기 - text_assign_time_entries_to_project: 보고된 시간을 프로젝트에 할당하기 - text_reassign_time_entries: '이 알림에 보고된 시간을 재할당하기:' - text_user_wrote: "%{value}의 덧글:" - text_user_wrote_in: "%{value}의 덧글 (%{link}):" - text_enumeration_category_reassign_to: '새로운 값을 설정:' - text_enumeration_destroy_question: "%{count} 개의 일감이 이 값을 사용하고 있습니다." - text_email_delivery_not_configured: "이메일 전달이 설정되지 않았습니다. 그래서 알림이 비활성화되었습니다.\n SMTP서버를 config/configuration.yml에서 설정하고 어플리케이션을 다시 시작하십시오. 그러면 동작합니다." - text_repository_usernames_mapping: "저장소 로그에서 발견된 각 사용자에 레드마인 사용자를 업데이트할때 선택합니다.\n레드마인과 저장소의 이름이나 이메일이 같은 사용자가 자동으로 연결됩니다." - text_diff_truncated: '... 이 차이점은 표시할 수 있는 최대 줄수를 초과해서 이 차이점은 잘렸습니다.' - text_custom_field_possible_values_info: '각 값 당 한 줄' - text_wiki_page_destroy_question: 이 페이지는 %{descendants} 개의 하위 페이지와 관련 내용이 있습니다. 이 내용을 어떻게 하시겠습니까? - text_wiki_page_nullify_children: 하위 페이지를 최상위 페이지 아래로 지정 - text_wiki_page_destroy_children: 모든 하위 페이지와 관련 내용을 삭제 - text_wiki_page_reassign_children: 하위 페이지를 이 페이지 아래로 지정 - - default_role_manager: 관리자 - default_role_developer: 개발자 - default_role_reporter: 보고자 - default_tracker_bug: 결함 - default_tracker_feature: 새기능 - default_tracker_support: 지원 - default_issue_status_new: 신규 - default_issue_status_in_progress: 진행 - default_issue_status_resolved: 해결 - default_issue_status_feedback: 의견 - default_issue_status_closed: 완료 - default_issue_status_rejected: 거절 - default_doc_category_user: 사용자 문서 - default_doc_category_tech: 기술 문서 - default_priority_low: 낮음 - default_priority_normal: 보통 - default_priority_high: 높음 - default_priority_urgent: 긴급 - default_priority_immediate: 즉시 - default_activity_design: 설계 - default_activity_development: 개발 - - enumeration_issue_priorities: 일감 우선순위 - enumeration_doc_categories: 문서 범주 - enumeration_activities: 작업분류(시간추적) - - field_issue_to: 관련 일감 - label_view_all_revisions: 모든 개정판 표시 - label_tag: 태그(Tag) - label_branch: 브랜치(Branch) - error_no_tracker_in_project: 사용할 수 있도록 설정된 일감 유형이 없습니다. 프로젝트 설정을 확인하십시오. - error_no_default_issue_status: '기본 상태가 정해져 있지 않습니다. 설정을 확인하십시오. (주 메뉴의 "관리" -> "일감 상태")' - text_journal_changed: "%{label}을(를) %{old}에서 %{new}(으)로 변경되었습니다." - text_journal_set_to: "%{label}을(를) %{value}(으)로 지정되었습니다." - text_journal_deleted: "%{label} 값이 지워졌습니다. (%{old})" - label_group_plural: 그룹 - label_group: 그룹 - label_group_new: 새 그룹 - label_time_entry_plural: 작업시간 - text_journal_added: "%{label}에 %{value}이(가) 추가되었습니다." - field_active: 사용중 - enumeration_system_activity: 시스템 작업 - permission_delete_issue_watchers: 일감관람자 지우기 - version_status_closed: 닫힘 - version_status_locked: 잠김 - version_status_open: 진행 - error_can_not_reopen_issue_on_closed_version: 닫힌 버전에 할당된 일감은 다시 재발생시킬 수 없습니다. - label_user_anonymous: 이름없음 - button_move_and_follow: 이동하고 따라가기 - setting_default_projects_modules: 새 프로젝트에 기본적으로 활성화될 모듈 - setting_gravatar_default: 기본 그라바타 이미지 - field_sharing: 공유 - label_version_sharing_hierarchy: 상위 및 하위 프로젝트 - label_version_sharing_system: 모든 프로젝트 - label_version_sharing_descendants: 하위 프로젝트 - label_version_sharing_tree: 최상위 및 모든 하위 프로젝트 - label_version_sharing_none: 공유없음 - error_can_not_archive_project: 이 프로젝트를 잠금보관할 수 없습니다. - button_copy_and_follow: 복사하고 따라가기 - label_copy_source: 원본 - setting_issue_done_ratio: 일감의 진척도 계산방법 - setting_issue_done_ratio_issue_status: 일감 상태를 사용하기 - error_issue_done_ratios_not_updated: 일감 진척도가 수정되지 않았습니다. - error_workflow_copy_target: 대상 일감의 유형과 역할을 선택하세요. - setting_issue_done_ratio_issue_field: 일감 수정에서 진척도 입력하기 - label_copy_same_as_target: 대상과 같음. - label_copy_target: 대상 - notice_issue_done_ratios_updated: 일감 진척도가 수정되었습니다. - error_workflow_copy_source: 원본 일감의 유형이나 역할을 선택하세요. - label_update_issue_done_ratios: 모든 일감 진척도 갱신하기 - setting_start_of_week: 달력 시작 요일 - permission_view_issues: 일감 보기 - label_display_used_statuses_only: 이 일감 유형에서 사용되는 상태만 보여주기 - label_revision_id: 개정판 %{value} - label_api_access_key: API 접근키 - label_api_access_key_created_on: API 접근키가 %{value} 전에 생성되었습니다. - label_feeds_access_key: Atom 접근키 - notice_api_access_key_reseted: API 접근키가 초기화되었습니다. - setting_rest_api_enabled: REST 웹서비스 활성화 - label_missing_api_access_key: API 접근키가 없습니다. - label_missing_feeds_access_key: Atom 접근키가 없습니다. - button_show: 보기 - text_line_separated: 여러 값이 허용됨(값 마다 한 줄씩) - setting_mail_handler_body_delimiters: 메일 본문 구분자 - permission_add_subprojects: 하위 프로젝트 만들기 - label_subproject_new: 새 하위 프로젝트 - text_own_membership_delete_confirmation: |- - 권한들 일부 또는 전부를 막 삭제하려고 하고 있습니다. 그렇게 되면 이 프로젝트를 더이상 수정할 수 없게 됩니다. - 계속하시겠습니까? - label_close_versions: 완료된 버전 닫기 - label_board_sticky: 붙박이 - label_board_locked: 잠금 - permission_export_wiki_pages: 위키 페이지 내보내기 - setting_cache_formatted_text: 형식을 가진 텍스트 빠른 임시 기억 - permission_manage_project_activities: 프로젝트 작업내역 관리 - error_unable_delete_issue_status: 일감 상태를 지울 수 없습니다. (%{value}) - label_profile: 사용자정보 - permission_manage_subtasks: 하위 일감 관리 - field_parent_issue: 상위 일감 - label_subtask_plural: 하위 일감 - label_project_copy_notifications: 프로젝트 복사 중에 이메일 알림 보내기 - error_can_not_delete_custom_field: 사용자 정의 필드를 삭제할 수 없습니다. - error_unable_to_connect: 연결할 수 없습니다((%{value}) - error_can_not_remove_role: 이 역할은 현재 사용 중이이서 삭제할 수 없습니다. - error_can_not_delete_tracker: 이 유형의 일감들이 있어서 삭제할 수 없습니다. - field_principal: 신원 - notice_failed_to_save_members: "%{errors}:구성원을 저장 중 실패하였습니다" - text_zoom_out: 더 작게 - text_zoom_in: 더 크게 - notice_unable_delete_time_entry: 시간 기록 항목을 삭제할 수 없습니다. - label_overall_spent_time: 총 소요시간 - field_time_entries: 기록된 시간 - project_module_gantt: Gantt 챠트 - project_module_calendar: 달력 - button_edit_associated_wikipage: "연관된 위키 페이지 %{page_title} 수정" - field_text: 텍스트 영역 - setting_default_notification_option: 기본 알림 옵션 - label_user_mail_option_only_my_events: 내가 지켜보거나 속해있는 사항만 - label_user_mail_option_none: 알림 없음 - field_member_of_group: 할당된 사람의 그룹 - field_assigned_to_role: 할당된 사람의 역할 - notice_not_authorized_archived_project: 접근하려는 프로젝트는 이미 잠금보관되어 있습니다. - label_principal_search: "사용자 및 그룹 찾기:" - label_user_search: "사용자 찾기::" - field_visible: 보이기 - setting_emails_header: 이메일 헤더 - setting_commit_logtime_activity_id: 기록된 시간에 적용할 작업분류 - text_time_logged_by_changeset: "변경묶음 %{value}에서 적용되었습니다." - setting_commit_logtime_enabled: 커밋 시점에 작업 시간 기록 활성화 - notice_gantt_chart_truncated: "표시할 수 있는 최대 항목수(%{max})를 초과하여 차트가 잘렸습니다." - setting_gantt_items_limit: "Gantt 차트에 표시되는 최대 항목수" - field_warn_on_leaving_unsaved: "저장하지 않은 페이지를 빠져나갈 때 나에게 알림" - text_warn_on_leaving_unsaved: "현재 페이지는 저장되지 않은 문자가 있습니다. 이 페이지를 빠져나가면 내용을 잃을 것입니다." - label_my_queries: "내 검색 양식" - text_journal_changed_no_detail: "%{label}이 변경되었습니다." - label_news_comment_added: "뉴스에 설명이 추가되었습니다." - button_expand_all: "모두 확장" - button_collapse_all: "모두 축소" - label_additional_workflow_transitions_for_assignee: "사용자가 작업자일 때 허용되는 추가 상태" - label_additional_workflow_transitions_for_author: "사용자가 저자일 때 허용되는 추가 상태" - label_bulk_edit_selected_time_entries: "선택된 소요 시간 대량 편집" - text_time_entries_destroy_confirmation: "선택한 소요 시간 항목을 삭제하시겠습니까?" - label_role_anonymous: 익명 - label_role_non_member: 비회원 - - label_issue_note_added: "덧글이 추가되었습니다." - label_issue_status_updated: "상태가 변경되었습니다." - label_issue_priority_updated: "우선 순위가 변경되었습니다." - label_issues_visibility_own: "일감을 생성하거나 맡은 사용자" - field_issues_visibility: "일감 보임" - label_issues_visibility_all: "모든 일감" - permission_set_own_issues_private: "자신의 일감을 공개나 비공개로 설정" - field_is_private: "비공개" - permission_set_issues_private: "일감을 공개나 비공개로 설정" - label_issues_visibility_public: "비공개 일감 제외" - text_issues_destroy_descendants_confirmation: "%{count} 개의 하위 일감을 삭제할 것입니다." - field_commit_logs_encoding: "커밋 기록 인코딩" - field_scm_path_encoding: "경로 인코딩" - text_scm_path_encoding_note: "기본: UTF-8" - field_path_to_repository: "저장소 경로" - field_root_directory: "루트 경로" - field_cvs_module: "모듈" - field_cvsroot: "CVS 루트" - text_mercurial_repository_note: "로컬 저장소 (예: /hgrepo, c:\\hgrepo)" - text_scm_command: "명령" - text_scm_command_version: "버전" - label_git_report_last_commit: "파일이나 폴더의 마지막 커밋을 보고" - text_scm_config: "SCM 명령을 config/configuration.yml에서 수정할 수 있습니다. 수정후에는 재시작하십시오." - text_scm_command_not_available: "SCM 명령을 사용할 수 없습니다. 관리 페이지의 설정을 검사하십시오." - notice_issue_successful_create: "%{id} 일감이 생성되었습니다." - label_between: "사이" - setting_issue_group_assignment: "그룹에 일감 할당 허용" - label_diff: "비교(diff)" - text_git_repository_note: "로컬의 bare 저장소 (예: /gitrepo, c:\\gitrepo)" - description_query_sort_criteria_direction: "정렬 방향" - description_project_scope: "검색 범위" - description_filter: "검색 조건" - description_user_mail_notification: "메일 알림 설정" - description_message_content: "메세지 내용" - description_available_columns: "가능한 컬럼" - description_issue_category_reassign: "일감 범주를 선택하십시오." - description_search: "검색항목" - description_notes: "덧글" - description_choose_project: "프로젝트" - description_query_sort_criteria_attribute: "정렬 속성" - description_wiki_subpages_reassign: "새로운 상위 페이지를 선택하십시오." - description_selected_columns: "선택된 컬럼" - label_parent_revision: "상위" - label_child_revision: "하위" - error_scm_annotate_big_text_file: "최대 텍스트 파일 크기를 초과 하면 항목은 이력화 될 수 없습니다." - setting_default_issue_start_date_to_creation_date: "새로운 일감의 시작 날짜로 오늘 날짜 사용" - button_edit_section: "이 부분 수정" - setting_repositories_encodings: "첨부파일이나 저장소 인코딩" - description_all_columns: "모든 컬럼" - button_export: "내보내기" - label_export_options: "내보내기 옵션: %{export_format}" - error_attachment_too_big: "이 파일은 제한된 크기(%{max_size})를 초과하였기 때문에 업로드 할 수 없습니다." - - notice_failed_to_save_time_entries: "%{total} 개의 시간입력중 다음 %{count} 개의 저장에 실패했습니다:: %{ids}." - label_x_issues: - zero: 0 일감 - one: 1 일감 - other: "%{count} 일감" - label_repository_new: 저장소 추가 - field_repository_is_default: 주 저장소 - label_copy_attachments: 첨부파일 복사 - label_item_position: "%{position}/%{count}" - label_completed_versions: 완료 버전 - text_project_identifier_info: "소문자(a-z),숫자,대쉬(-)와 밑줄(_)만 가능합니다.
    식별자는 저장후에는 수정할 수 없습니다." - field_multiple: 복수선택가능 - setting_commit_cross_project_ref: 다른 프로젝트의 일감 참조 및 수정 허용 - text_issue_conflict_resolution_add_notes: 변경내용은 취소하고 덧글만 추가 - text_issue_conflict_resolution_overwrite: 변경내용 강제적용 (이전 덧글을 제외하고 덮어 씁니다) - notice_issue_update_conflict: 일감이 수정되는 동안 다른 사용자에 의해서 변경되었습니다. - text_issue_conflict_resolution_cancel: "변경내용을 되돌리고 다시 표시 %{link}" - permission_manage_related_issues: 연결된 일감 관리 - field_auth_source_ldap_filter: LDAP 필터 - label_search_for_watchers: 추가할 일감관람자 검색 - notice_account_deleted: 당신의 계정이 완전히 삭제되었습니다. - setting_unsubscribe: 사용자들이 자신의 계정을 삭제토록 허용 - button_delete_my_account: 나의 계정 삭제 - text_account_destroy_confirmation: |- - 계속하시겠습니까? - 계정이 삭제되면 복구할 수 없습니다. - error_session_expired: 당신의 세션이 만료되었습니다. 다시 로그인하세요. - text_session_expiration_settings: "경고: 이 설정을 바꾸면 당신을 포함하여 현재의 세션들을 만료시킬 수 있습니다." - setting_session_lifetime: 세션 최대 시간 - setting_session_timeout: 세션 비활성화 타임아웃 - label_session_expiration: 세션 만료 - permission_close_project: 프로젝트를 닫거나 다시 열기 - button_close: 닫기 - button_reopen: 다시 열기 - project_status_active: 사용중 - project_status_closed: 닫힘 - project_status_archived: 잠금보관 - text_project_closed: 이 프로젝트는 닫혀 있으며 읽기 전용입니다. - notice_user_successful_create: 사용자 %{id} 이(가) 생성되었습니다. - field_core_fields: 표준 항목들 - field_timeout: 타임아웃 (초) - setting_thumbnails_enabled: 첨부파일의 썸네일을 보여줌 - setting_thumbnails_size: 썸네일 크기 (픽셀) - label_status_transitions: 일감 상태 변경 - label_fields_permissions: 항목 편집 권한 - label_readonly: 읽기 전용 - label_required: 필수 - text_repository_identifier_info: "소문자(a-z),숫자,대쉬(-)와 밑줄(_)만 가능합니다.
    식별자는 저장후에는 수정할 수 없습니다." - field_board_parent: Parent forum - label_attribute_of_project: "프로젝트의 %{name}" - label_attribute_of_author: "저자의 %{name}" - label_attribute_of_assigned_to: "담당자의 %{name}" - label_attribute_of_fixed_version: "목표버전의 %{name}" - label_copy_subtasks: 하위 일감들을 복사 - label_copied_to: "다음 일감으로 복사됨:" - label_copied_from: "다음 일감으로부터 복사됨:" - label_any_issues_in_project: 다음 프로젝트에 속한 아무 일감 - label_any_issues_not_in_project: 다음 프로젝트에 속하지 않은 아무 일감 - field_private_notes: 비공개 덧글 - permission_view_private_notes: 비공개 덧글 보기 - permission_set_notes_private: 덧글을 비공개로 설정 - label_no_issues_in_project: 다음 프로젝트의 일감 제외 - label_any: 모두 - label_last_n_weeks: 최근 %{count} 주 - setting_cross_project_subtasks: 다른 프로젝트로부터 상위 일감 지정 허용 - label_cross_project_descendants: 하위 프로젝트 - label_cross_project_tree: 최상위 및 모든 하위 프로젝트 - label_cross_project_hierarchy: 상위 및 하위 프로젝트 - label_cross_project_system: 모든 프로젝트 - button_hide: 숨기기 - setting_non_working_week_days: 휴일 - label_in_the_next_days: 다음 - label_in_the_past_days: 지난 - label_attribute_of_user: "사용자의 %{name}" - text_turning_multiple_off: 복수선택을 비활성화하면, 하나의 값을 제외한 나머지 값들이 지워집니다. - label_attribute_of_issue: "일감의 %{name}" - permission_add_documents: 문서 추가 - permission_edit_documents: 문서 편집 - permission_delete_documents: 문서 삭제 - label_gantt_progress_line: 진행 선 - setting_jsonp_enabled: JSONP 허용 - field_inherit_members: 상위 프로젝트 구성원 상속 - field_closed_on: 완료일 - field_generate_password: 비밀번호 생성 - setting_default_projects_tracker_ids: 새 프로젝트에 기본적으로 추가할 일감 유형 - label_total_time: 합계 - notice_account_not_activated_yet: 계정이 활성화되지 않았습니다. 계정을 활성화하기 위해 메일을 다시 수신하려면 여기를 클릭해 주세요. - notice_account_locked: 계정이 잠겨 있습니다. - label_hidden: 숨김 - label_visibility_private: 자신 만 - label_visibility_roles: 다음 역할 만 - label_visibility_public: 모든 사용자 - field_must_change_passwd: 다음 로그온 시 암호 변경 - notice_new_password_must_be_different: 새 암호는 현재 암호와 달라야 합니다. - setting_mail_handler_excluded_filenames: 제외할 첨부 파일명 - text_convert_available: ImageMagick 변환 사용 가능 (옵션) - label_link: 링크 - label_only: 다음의 것만 - label_drop_down_list: 드롭다운 목록 - label_checkboxes: 체크박스 - label_link_values_to: URL 링크 값 - setting_force_default_language_for_anonymous: 익명 사용자의 기본 언어 강제 - setting_force_default_language_for_loggedin: 로그인 사용자의 기본 언어 강제 - label_custom_field_select_type: 사용자 정의 필드에 추가할 대상을 선택해주세요. - label_issue_assigned_to_updated: 담당자 업데이트 - label_check_for_updates: 업데이트 확인 - label_latest_compatible_version: 최종 호환 버전 - label_unknown_plugin: 알 수 없는 플러그인 - label_radio_buttons: radio buttons - label_group_anonymous: 익명 사용자 - label_group_non_member: 비회원 사용자 - label_add_projects: 프로젝트 추가 - field_default_status: 초기 상태 - text_subversion_repository_note: '예: file:///, http://, https://, svn://, svn+[tunnelscheme]://' - field_users_visibility: 사용자 가시성 - label_users_visibility_all: 모든 활성 사용자 - label_users_visibility_members_of_visible_projects: 보이는 프로젝트 회원 - label_edit_attachments: 첨부파일 편집 - setting_link_copied_issue: 복사할 때 일감 연결 - label_link_copied_issue: 복사한 일감 연결 - label_ask: 물어보기 - label_search_attachments_yes: 첨부파일명과 설명만 검색 - label_search_attachments_no: 첨부는 검색하지 않음 - label_search_attachments_only: 첨부만 검색 - label_search_open_issues_only: 열린 일감만 - field_address: 메일 - setting_max_additional_emails: 허용하는 메일주소 개수 - label_email_address_plural: 메일주소 - label_email_address_add: 메일주소 추가 - label_enable_notifications: 알림 켜기 - label_disable_notifications: 알림 끄기 - setting_search_results_per_page: 페이지당 검색 결과 - label_blank_value: blank - permission_copy_issues: 일감 복사 - error_password_expired: 암호가 만료되었거나 관리자가 변경하도록 설정하였습니다. - field_time_entries_visibility: 시간기록 가시성 - setting_password_max_age: 암호 변경 주기 - label_parent_task_attributes: 상위일감 속성 - label_parent_task_attributes_derived: 하위일감으로부터 계산 - label_parent_task_attributes_independent: 하위일감과 별도로 계산 - label_time_entries_visibility_all: 모든 시간기록 - label_time_entries_visibility_own: 이 사용자가 생성한 시간기록 - label_member_management: 회원 관리 - label_member_management_all_roles: 모든 역할 - label_member_management_selected_roles_only: 선택된 역할 만 - label_password_required: 계속하려면 암호를 확인해야 합니다. - label_total_spent_time: 총 소요시간 - notice_import_finished: "총 %{count} 건을 가져왔습니다" - notice_import_finished_with_errors: "총 %{total} 건 중 %{count} 건을 가져오지 못했습니다" - error_invalid_file_encoding: 이 파일은 정상적인 %{encoding} 파일이 아닙니다. - error_invalid_csv_file_or_settings: 이 파일은 CSV 파일이 아니거나 아래 조건에 맞지 않습니다. - error_can_not_read_import_file: 가져오기 파일을 읽을 수 없습니다. - permission_import_issues: 일감 가져오기 - label_import_issues: 일감 가져오기 - label_select_file_to_import: 가져올 파일 선택 - label_fields_separator: 구분자 - label_fields_wrapper: 묶음 기호 - label_encoding: 인코딩 - label_comma_char: 쉼표(,) - label_semi_colon_char: 세미콜론(;) - label_quote_char: 작은따옴표 - label_double_quote_char: 큰따옴표 - label_fields_mapping: 항목 연결 - label_file_content_preview: 내용 미리보기 - label_create_missing_values: 값이 없으면 자동으로 만들기 - button_import: 가져오기 - field_total_estimated_hours: 추정 시간 - label_api: API - label_total_plural: 합계 - label_assigned_issues: 할당된 일감 - label_field_format_enumeration: 키/값 목록 - label_f_hour_short: '%{value} h' - field_default_version: 기본 버전 - error_attachment_extension_not_allowed: 첨부의 확장자 %{extension}은(는) 허용되지 않습니다. - setting_attachment_extensions_allowed: 허용되는 확장자 - setting_attachment_extensions_denied: 허용되지 않는 확장자 - label_any_open_issues: any open issues - label_no_open_issues: no open issues - label_default_values_for_new_users: 새 사용자 기본값 - error_ldap_bind_credentials: 잘못된 LDAP 계정/암호 - setting_sys_api_key: API 키 - setting_lost_password: 비밀번호 찾기 - mail_subject_security_notification: 보안 알림 - mail_body_security_notification_change: ! '%{field}이(가) 변경되었습니다.' - mail_body_security_notification_change_to: ! '%{field}이(가) %{value}(으)로 변경되었습니다.' - mail_body_security_notification_add: ! '%{field}에 %{value}이(가) 추가되었습니다.' - mail_body_security_notification_remove: ! '%{field}에 %{value}이(가) 삭제되었습니다.' - mail_body_security_notification_notify_enabled: 이제 %{value}(으)로 알람이 발송됩니다. - mail_body_security_notification_notify_disabled: '%{value}(으)로 더 이상 알람이 발송되지 않습니다.' - mail_body_settings_updated: ! '다음의 설정이 변경되었습니다:' - field_remote_ip: IP 주소 - label_wiki_page_new: 새 위키 페이지 - label_relations: 관계 - button_filter: 필터 - mail_body_password_updated: 암호가 변경되었습니다. - label_no_preview: 미리보기 없음 - error_no_tracker_allowed_for_new_issue_in_project: 프로젝트에 사용할 수 있는 일감 유형이 없습니다 - label_tracker_all: 모든 유형 - label_new_project_issue_tab_enabled: '"새 일감" 탭 표시' - setting_new_item_menu_tab: 프로젝트 메뉴의 새로 만들기 탭 - label_new_object_tab_enabled: 메뉴에 "+" 탭 표시 - error_no_projects_with_tracker_allowed_for_new_issue: There are no projects with trackers - for which you can create an issue - field_textarea_font: Font used for text areas - label_font_default: Default font - label_font_monospace: Monospaced font - label_font_proportional: Proportional font - setting_timespan_format: Time span format - label_table_of_contents: Table of contents - setting_commit_logs_formatting: Apply text formatting to commit messages - setting_mail_handler_enable_regex: Enable regular expressions - error_move_of_child_not_possible: 'Subtask %{child} could not be moved to the new - project: %{errors}' - error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted: Spent time cannot - be reassigned to an issue that is about to be deleted - setting_timelog_required_fields: Required fields for time logs - label_attribute_of_object: '%{object_name}''s %{name}' - label_user_mail_option_only_assigned: Only for things I watch or I am assigned to - label_user_mail_option_only_owner: Only for things I watch or I am the owner of - warning_fields_cleared_on_bulk_edit: Changes will result in the automatic deletion - of values from one or more fields on the selected objects - field_updated_by: Updated by - field_last_updated_by: Last updated by - field_full_width_layout: Full width layout - label_last_notes: Last notes - field_digest: Checksum - field_default_assigned_to: Default assignee - setting_show_custom_fields_on_registration: Show custom fields on registration - permission_view_news: View news - label_no_preview_alternative_html: No preview available. %{link} the file instead. - label_no_preview_download: Download - setting_close_duplicate_issues: Close duplicate issues automatically - error_exceeds_maximum_hours_per_day: Cannot log more than %{max_hours} hours on the - same day (%{logged_hours} hours have already been logged) - setting_time_entry_list_defaults: Timelog list defaults - setting_timelog_accept_0_hours: Accept time logs with 0 hours - setting_timelog_max_hours_per_day: Maximum hours that can be logged per day and user - label_x_revisions: "%{count} revisions" - error_can_not_delete_auth_source: This authentication mode is in use and cannot be - deleted. - button_actions: Actions - mail_body_lost_password_validity: Please be aware that you may change the password - only once using this link. - text_login_required_html: When not requiring authentication, public projects and their - contents are openly available on the network. You can edit - the applicable permissions. - label_login_required_yes: 'Yes' - label_login_required_no: No, allow anonymous access to public projects - text_project_is_public_non_member: Public projects and their contents are available - to all logged-in users. - text_project_is_public_anonymous: Public projects and their contents are openly available - on the network. - label_version_and_files: Versions (%{count}) and Files - label_ldap: LDAP - label_ldaps_verify_none: LDAPS (without certificate check) - label_ldaps_verify_peer: LDAPS - label_ldaps_warning: It is recommended to use an encrypted LDAPS connection with certificate - check to prevent any manipulation during the authentication process. - label_nothing_to_preview: Nothing to preview - error_token_expired: This password recovery link has expired, please try again. - error_spent_on_future_date: Cannot log time on a future date - setting_timelog_accept_future_dates: Accept time logs on future dates - label_delete_link_to_subtask: 관계 지우기 - error_not_allowed_to_log_time_for_other_users: You are not allowed to log time - for other users - permission_log_time_for_other_users: Log spent time for other users - label_tomorrow: tomorrow - label_next_week: next week - label_next_month: next month - text_role_no_workflow: No workflow defined for this role - text_status_no_workflow: No tracker uses this status in the workflows - setting_mail_handler_preferred_body_part: Preferred part of multipart (HTML) emails - setting_show_status_changes_in_mail_subject: Show status changes in issue mail notifications - subject - label_inherited_from_parent_project: Inherited from parent project - label_inherited_from_group: Inherited from group %{name} - label_trackers_description: Trackers description - label_open_trackers_description: View all trackers description - label_preferred_body_part_text: Text - label_preferred_body_part_html: HTML (experimental) - field_parent_issue_subject: Parent task subject - permission_edit_own_issues: Edit own issues - text_select_apply_tracker: Select tracker - label_updated_issues: Updated issues - text_avatar_server_config_html: The current avatar server is %{url}. - You can configure it in config/configuration.yml. - setting_gantt_months_limit: Maximum number of months displayed on the gantt chart - permission_import_time_entries: Import time entries - label_import_notifications: Send email notifications during the import - text_gs_available: ImageMagick PDF support available (optional) - field_recently_used_projects: Number of recently used projects in jump box - label_optgroup_bookmarks: Bookmarks - label_optgroup_others: Other projects - label_optgroup_recents: Recently used - button_project_bookmark: Add bookmark - button_project_bookmark_delete: Remove bookmark - field_history_default_tab: Issue's history default tab - label_issue_history_properties: Property changes - label_issue_history_notes: Notes - label_last_tab_visited: Last visited tab - field_unique_id: Unique ID - text_no_subject: no subject - setting_password_required_char_classes: Required character classes for passwords - label_password_char_class_uppercase: uppercase letters - label_password_char_class_lowercase: lowercase letters - label_password_char_class_digits: digits - label_password_char_class_special_chars: special characters - text_characters_must_contain: Must contain %{character_classes}. - label_starts_with: starts with - label_ends_with: ends with - label_issue_fixed_version_updated: Target version updated - setting_project_list_defaults: Projects list defaults - label_display_type: Display results as - label_display_type_list: List - label_display_type_board: Board - label_my_bookmarks: My bookmarks - label_import_time_entries: Import time entries diff --git a/config/locales/lt.yml b/config/locales/lt.yml deleted file mode 100644 index ec16a3d..0000000 --- a/config/locales/lt.yml +++ /dev/null @@ -1,1305 +0,0 @@ -# Lithuanian translations for Ruby on Rails -# by Laurynas Butkus (laurynas.butkus@gmail.com) -# and Sergej Jegorov sergej.jegorov@gmail.com -# and Gytis Gurklys gytis.gurklys@gmail.com -# and Andrius Kriučkovas andrius.kriuckovas@gmail.com -# and Gediminas Muižis gediminas.muizis@gmail.com -# and Marius Žilėnas m.zilenas@litrail.lt - -lt: - # Text direction: Left-to-Right (ltr) or Right-to-Left (rtl) - direction: ltr - date: - formats: - # Use the strftime parameters for formats. - # When no format has been given, it uses default. - # You can provide other formats here if you like! - default: "%m/%d/%Y" - short: "%b %d" - long: "%B %d, %Y" - - day_names: [sekmadienis, pirmadienis, antradienis, trečiadienis, ketvirtadienis, penktadienis, šeštadienis] - abbr_day_names: [Sek, Pir, Ant, Tre, Ket, Pen, Šeš] - - # Don't forget the nil at the beginning; there's no such thing as a 0th month - month_names: [~, sausio, vasario, kovo, balandžio, gegužės, birželio, liepos, rugpjūčio, rugsėjo, spalio, lapkričio, gruodžio] - abbr_month_names: [~, Sau, Vas, Kov, Bal, Geg, Bir, Lie, Rgp, Rgs, Spa, Lap, Grd] - # Used in date_select and datime_select. - order: - - :year - - :month - - :day - - time: - formats: - default: "%a, %d %b %Y %H:%M:%S %z" - time: "%H:%M" - short: "%d %b %H:%M" - long: "%B %d, %Y %H:%M" - am: "ryto" - pm: "vakaro" - - datetime: - distance_in_words: - half_a_minute: "pusė minutės" - less_than_x_seconds: - one: "mažiau nei 1 sekundę" - other: "mažiau nei %{count} sekundžių(ės)" - x_seconds: - one: "1 sekundė" - other: "%{count} sekundžių(ės)" - less_than_x_minutes: - one: "mažiau nei minutė" - other: "mažiau nei %{count} minučių(ės)" - x_minutes: - one: "1 minutė" - other: "mažiau nei %{count} minučių(ės)" - about_x_hours: - one: "apie 1 valandą" - other: "apie %{count} valandų(as)" - x_hours: - one: "1 valanda" - other: "%{count} valandų(os)" - x_days: - one: "1 diena" - other: "%{count} dienų(os)" - about_x_months: - one: "apie 1 mėnesį" - other: "apie %{count} mėnesių(ius)" - x_months: - one: "1 mėnuo" - other: "%{count} mėnesių(iai)" - about_x_years: - one: "apie 1 metus" - other: "apie %{count} metų(us)" - over_x_years: - one: "virš 1 metų" - other: "virš %{count} metų" - almost_x_years: - one: "beveik 1 metai" - other: "beveik %{count} metų(ai)" - - number: - format: - separator: "," - delimiter: " " - precision: 3 - - human: - format: - delimiter: " " - precision: 3 - storage_units: - format: "%n %u" - units: - byte: - one: "baitas" - other: "baitų(ai)" - kb: "KB" - mb: "MB" - gb: "GB" - tb: "TB" - -# Used in array.to_sentence. - support: - array: - sentence_connector: "ir" - skip_last_comma: false - - activerecord: - errors: - template: - header: - one: "Išsaugant objektą %{model} rasta 1 klaida" - other: "Išsaugant objektą %{model} rastos %{count} klaidų(os)" - messages: - inclusion: "neįtraukta į sąrašą" - exclusion: "užimtas" - invalid: "neteisingas" - confirmation: "neteisingai pakartotas" - accepted: "turi būti patvirtinta(as)" - empty: "negali būti tuščias" - blank: "negali būti tuščias" - too_long: "per ilgas tekstas (daugiausiai %{count} simbolių" - not_a_number: "ne skaičius" - not_a_date: "neteisinga data" - greater_than: "turi būti daugiau už %{count}" - greater_than_or_equal_to: "turi būti daugiau arba lygu %{count}" - equal_to: "turi būti lygus %{count}" - less_than: "turi būti mažiau už %{count}" - less_than_or_equal_to: "turi būti mažiau arba lygu %{count}" - odd: "turi būti nelyginis" - even: "turi būti lyginis" - greater_than_start_date: "turi būti didesnė negu pradžios data" - not_same_project: "nepriklauso tam pačiam projektui" - circular_dependency: "Šis ryšys sukurtų ciklinę priklausomybę" - cant_link_an_issue_with_a_descendant: "Darbas negali būti susietas su viena iš savo darbo dalių" - earlier_than_minimum_start_date: "negali būti anksčiau už %{date} dėl ankstesnių darbų" - not_a_regexp: "neteisingas reguliarusis reiškinys" - open_issue_with_closed_parent: "Atviras darbas negali būti pridėtas prie uždarytos tėvinės užduoties" - must_contain_uppercase: "must contain uppercase letters (A-Z)" - must_contain_lowercase: "must contain lowercase letters (a-z)" - must_contain_digits: "must contain digits (0-9)" - must_contain_special_chars: "must contain special characters (!, $, %, ...)" - - actionview_instancetag_blank_option: Prašom parinkti - - general_text_No: 'Ne' - general_text_Yes: 'Taip' - general_text_no: 'ne' - general_text_yes: 'taip' - general_lang_name: 'Lithuanian (lietuvių)' - general_csv_separator: ',' - general_csv_decimal_separator: '.' - general_csv_encoding: UTF-8 - general_pdf_fontname: freesans - general_pdf_monospaced_fontname: freemono - general_first_day_of_week: '1' - - notice_account_updated: Paskyra buvo sėkmingai atnaujinta. - notice_account_invalid_credentials: Neteisingas vartotojo vardas ar slaptažodis - notice_account_password_updated: Slaptažodis buvo sėkmingai atnaujintas. - notice_account_wrong_password: Neteisingas slaptažodis - notice_account_register_done: Paskyra buvo sėkmingai sukurta. Norint aktyvinti savo paskyrą, paspauskite nuorodą, kuri jums buvo siųsta į %{email}. - notice_account_unknown_email: Nežinomas vartotojas. - notice_account_not_activated_yet: Dar nesatę aktyvavę savo paskyros. Jei norite gauti naują aktyvavimo laišką, paspauskite šią nuorodą - notice_account_locked: Jūsų paskyra užblokuota. - notice_can_t_change_password: Šis pranešimas naudoja išorinį autentiškumo nustatymo šaltinį. Neįmanoma pakeisti slaptažodžio. - notice_account_lost_email_sent: Į Jūsų paštą išsiųstas laiškas su naujo slaptažodžio pasirinkimo instrukcija. - notice_account_activated: Jūsų paskyra aktyvuota. Galite prisijungti. - notice_successful_create: Sėkmingas sukūrimas. - notice_successful_update: Sėkmingas atnaujinimas. - notice_successful_delete: Sėkmingas panaikinimas. - notice_successful_connection: Sėkmingas susijungimas. - notice_file_not_found: Puslapis, į kurį ketinate įeiti, neegzistuoja arba yra pašalintas. - notice_locking_conflict: Duomenys buvo atnaujinti kito vartotojo. - notice_not_authorized: Jūs neturite teisių gauti prieigą prie šio puslapio. - notice_not_authorized_archived_project: Projektas, kurį bandote atidaryti, buvo suarchyvuotas. - notice_email_sent: "Laiškas išsiųstas į %{value}" - notice_email_error: "Laiško siuntimo metu (%{value}) įvyko klaida" - notice_feeds_access_key_reseted: Jūsų Atom raktas buvo atnaujintas. - notice_api_access_key_reseted: Jūsų API prieigos raktas buvo atnaujintas. - notice_failed_to_save_issues: "Nepavyko išsaugoti %{count} darbo(ų) iš %{total} pasirinktų: %{ids}." - notice_failed_to_save_time_entries: "Nepavyko išsaugoti %{count} laiko įrašo(ų) iš %{total} pasirinktų: %{ids}." - notice_failed_to_save_members: "Nepavyko išsaugoti nario(ių): %{errors}." - notice_no_issue_selected: "Nepasirinktas nei vienas darbas! Prašom pažymėti darbus, kuriuos norite redaguoti" - notice_account_pending: "Jūsų paskyra buvo sukurta ir dabar laukiama administratoriaus patvirtinimo." - notice_default_data_loaded: Numatytoji konfigūracija sėkmingai įkrauta. - notice_unable_delete_version: Neįmanoma ištrinti versijos. - notice_unable_delete_time_entry: Neįmano ištrinti laiko žurnalo įrašo. - notice_issue_done_ratios_updated: Darbo atlikimo progresas atnaujintas. - notice_gantt_chart_truncated: "Grafikas buvo sutrumpintas, kadangi jis viršija maksimalų (%{max}) leistinų atvaizduoti elementų kiekį" - notice_issue_successful_create: "Darbas %{id} sukurtas." - notice_issue_update_conflict: "Darbas buvo atnaujintas kito vartotojo kol jūs jį redagavote." - notice_account_deleted: "Jūsų paskyra panaikinta." - notice_user_successful_create: "Vartotojas %{id} sukurtas." - notice_new_password_must_be_different: Naujas slaptažodis turi skirtis nuo esamo slaptažodžio - notice_import_finished: "%{count} įrašai hbuvo suimportuoti" - notice_import_finished_with_errors: "%{count} iš %{total} įrašų nepavyko suimportuoti" - error_can_t_load_default_data: "Numatytoji konfigūracija negali būti užkrauta: %{value}" - error_scm_not_found: "Saugykloje nebuvo rastas toks įrašas ar revizija" - error_scm_command_failed: "Įvyko klaida jungiantis prie saugyklos: %{value}" - error_scm_annotate: "Įrašas neegzistuoja arba jo negalima atvaizduoti" - error_scm_annotate_big_text_file: "Įrašo negalima atvaizduoti, nes jis viršija maksimalų tekstinio failo dydį." - error_issue_not_found_in_project: 'Darbas nerastas arba nepriklauso šiam projektui' - error_no_tracker_in_project: 'Joks pėdsekys nesusietas su šiuo projektu. Prašom patikrinti Projekto nustatymus.' - error_no_default_issue_status: 'Nenustatyta numatytoji darbo būsena. Prašome patikrinti nustatymus ("Administravimas -> Darbų būsenos").' - error_can_not_delete_custom_field: Negalima ištrinti kliento lauko - error_can_not_delete_tracker: "Šis pėdsekys turi įrašų ir todėl negali būti ištrintas." - error_can_not_remove_role: "Ši rolė yra naudojama ir negali būti ištrinta." - error_can_not_reopen_issue_on_closed_version: 'Uždarytai versijai priskirtas darbas negali būti atnaujintas.' - error_can_not_archive_project: Šio projekto negalima suarchyvuoti - error_issue_done_ratios_not_updated: "Įrašo baigtumo rodikliai nebuvo atnaujinti. " - error_workflow_copy_source: 'Prašome pasirinkti pirminį seklį arba rolę, kurį norite kopijuoti' - error_workflow_copy_target: 'Prašome pasirinkti seklį(-ius) arba rolę(-s) į kuriuos norite kopijuoti' - error_unable_delete_issue_status: 'Negalima ištrinti darbo statuso (%{value})' - error_unable_to_connect: "Negalima prisijungti (%{value})" - error_attachment_too_big: "Šis failas negali būti įkeltas, nes viršija maksimalų (%{max_size}) leistiną failo dydį" - error_session_expired: "Jūsų sesija pasibaigė. Prašome prisijunti iš naujo." - warning_attachments_not_saved: "%{count} byla(-ų) negali būti išsaugota." - error_password_expired: "Jūsų slaptažodžio galiojimo laikas baigėsi arba administratorius reikalauja jūsų jį pasikeisti" - error_invalid_file_encoding: "Failas nėra tinkamas %{encoding} koduotės failas" - error_invalid_csv_file_or_settings: "Failas nėra CSV failas arba neatitinka žemiau esančių nustatymų" - error_can_not_read_import_file: "Iškilo klaida skaitant importuojamą failą" - error_attachment_extension_not_allowed: "Priedo plėtinys %{extension} negalimas" - error_ldap_bind_credentials: "Netinkamas LDAP Vartotojo vardas/Slaptažodis" - - mail_subject_lost_password: "Jūsų %{value} slaptažodis" - mail_body_lost_password: 'Norėdami pakeisti slaptažodį, spauskite nuorodą:' - mail_subject_register: "Jūsų %{value} paskyros aktyvavimas" - mail_body_register: 'Norėdami aktyvuoti paskyrą, spauskite nuorodą:' - mail_body_account_information_external: "Jūs galite naudoti savo %{value} paskyrą, norėdami prisijungti." - mail_body_account_information: Informacija apie Jūsų paskyrą - mail_subject_account_activation_request: "%{value} paskyros aktyvavimo prašymas" - mail_body_account_activation_request: "Užsiregistravo naujas vartotojas (%{value}). Jo paskyra laukia jūsų patvirtinimo:" - mail_subject_reminder: "%{count} darbų(ai) baigiasi per artimiausias %{days} dienų(as)" - mail_body_reminder: "%{count} darbas(ai), kurie yra jums priskirti, baigiasi per artimiausias %{days} dienų(as):" - mail_subject_wiki_content_added: "Wiki puslapis '%{id}' pridėtas" - mail_body_wiki_content_added: "Wiki puslapis '%{id}' buvo pridėtas %{author}." - mail_subject_wiki_content_updated: "Wiki puslapis '%{id}' buvo atnaujintas" - mail_body_wiki_content_updated: "'%{id}' wiki puslapį atnaujino %{author}." - mail_subject_security_notification: "Saugumo pranešimas" - mail_body_security_notification_change: "%{field} buvo pakeista(as)." - mail_body_security_notification_change_to: "%{field} buvo pakeista(as) į %{value}." - mail_body_security_notification_add: "Prie %{field} pridėta %{value}." - mail_body_security_notification_remove: "Iš %{field} pašalinta vertė %{value}." - mail_body_security_notification_notify_enabled: "Elektroninis paštas %{value} dabar gauna pranešimus." - mail_body_security_notification_notify_disabled: "Elektroninis paštas %{value} nebegauna pranešimų." - mail_body_settings_updated: "Tokie nustatymai buvo pakeisti:" - - field_name: Pavadinimas - field_description: Aprašas - field_summary: Santrauka - field_is_required: Reikalaujama - field_firstname: Vardas - field_lastname: Pavardė - field_mail: El. paštas - field_address: El. paštas - field_filename: Failas - field_filesize: Dydis - field_downloads: Atsiuntimai - field_author: Autorius - field_created_on: Sukurta - field_updated_on: Atnaujintas(a) - field_closed_on: Uždarytas - field_field_format: Formatas - field_is_for_all: Visiems projektams - field_possible_values: Galimos reikšmės - field_regexp: Pastovi išraiška - field_min_length: Minimalus ilgis - field_max_length: Maksimalus ilgis - field_value: Vertė - field_category: Kategorija - field_title: Pavadinimas - field_project: Projektas - field_issue: Darbas - field_status: Būsena - field_notes: Pastabos - field_is_closed: Darbas uždarytas - field_is_default: Numatytoji vertė - field_tracker: Pėdsekys - field_subject: Tema - field_due_date: Užbaigimo data - field_assigned_to: Paskirtas - field_priority: Prioritetas - field_fixed_version: Tikslinė versija - field_user: Vartotojas - field_principal: Vardas - field_role: Vaidmuo - field_homepage: Pagrindinis puslapis - field_is_public: Viešas - field_parent: Priklauso projektui - field_is_in_roadmap: Darbai rodomi veiklos grafike - field_login: Registracijos vardas - field_mail_notification: Elektroninio pašto pranešimai - field_admin: Administratorius - field_last_login_on: Paskutinis prisijungimas - field_language: Kalba - field_effective_date: Data - field_password: Slaptažodis - field_new_password: Naujas slaptažodis - field_password_confirmation: Patvirtinimas - field_version: Versija - field_type: Tipas - field_host: Pagrindinis kompiuteris - field_port: Prievadas - field_account: Paskyra - field_base_dn: Bazinis skiriamasis vardas (base DN) - field_attr_login: Registracijos vardo požymis (login) - field_attr_firstname: Vardo požymis - field_attr_lastname: Pavardės požymis - field_attr_mail: Elektroninio pašto požymis - field_onthefly: Automatinis vartotojų registravimas - field_start_date: Pradėti - field_done_ratio: "% atlikta" - field_auth_source: Autentiškumo nustatymo būdas - field_hide_mail: Slėpti mano elektroninio pašto adresą - field_comments: Komentaras - field_url: URL - field_start_page: Pradžios puslapis - field_subproject: Sub-projektas - field_hours: Valandos - field_activity: Veikla - field_spent_on: Data - field_identifier: Identifikatorius - field_is_filter: Naudojamas kaip filtras - field_issue_to: Susijęs darbas - field_delay: Užlaikymas - field_assignable: Darbai gali būti paskirti šiam vaidmeniui - field_redirect_existing_links: Peradresuokite egzistuojančias sąsajas - field_estimated_hours: Numatyta trukmė - field_column_names: Stulpeliai - field_time_entries: Praleistas laikas - field_time_zone: Laiko juosta - field_searchable: Randamas - field_default_value: Numatytoji vertė - field_comments_sorting: Rodyti komentarus - field_parent_title: Pagrindinis puslapis - field_editable: Redaguojamas - field_watcher: Stebėtojas - field_identity_url: OpenID URL - field_content: Turinys - field_group_by: Sugrupuoti pagal - field_sharing: Dalijimasis - field_parent_issue: Pagrindinė užduotis - field_member_of_group: "Priskirtojo grupė" - field_assigned_to_role: "Priskirtojo rolė" - field_text: Teksto laukas - field_visible: Matomas - field_warn_on_leaving_unsaved: "Įspėti mane, kai paliekamas puslapis su neišsaugotu tekstu" - field_issues_visibility: Darbų matomumas - field_is_private: Privatus - field_commit_logs_encoding: Commit žinučių koduotė - field_scm_path_encoding: SCM kelio koduotė - field_path_to_repository: Saugyklos kelias - field_root_directory: Šakninis katalogas - field_cvsroot: CVSROOT - field_cvs_module: Modulis - field_repository_is_default: Pagrindinė saugykla - field_multiple: Keletas reikšmių - field_auth_source_ldap_filter: LDAP filtras - field_core_fields: Standartiniai laukai - field_timeout: "Timeout (po sek.)" - field_board_parent: Pagrindinis forumas - field_private_notes: Privačios žinutės - field_inherit_members: Paveldėti narius - field_generate_password: Sugeneruoti slaptažodį - field_must_change_passwd: Privalo pakeisti slaptažodį kito prisijungimo metu - field_default_status: Numatytoji būsena - field_users_visibility: Vartotojų matomumas - field_time_entries_visibility: Laiko įrašų matomumas - field_total_estimated_hours: Visas įsivertinas laikas - field_default_version: Numatytoji versija - field_remote_ip: IP adresas - - setting_app_title: Programos pavadinimas - setting_welcome_text: Pasveikinimas - setting_default_language: Numatytoji kalba - setting_login_required: Reikalingas autentiškumo nustatymas - setting_self_registration: Savi-registracija - setting_attachment_max_size: Priedo maksimalus dydis - setting_issues_export_limit: Darbų eksportavimo riba - setting_mail_from: Išleidimo elektroninio pašto adresas - setting_bcc_recipients: Nematomos kopijos (bcc) gavėjai - setting_plain_text_mail: Tik tekstas laiške (be HTML) - setting_host_name: Pagrindinio kompiuterio pavadinimas ir kelias - setting_text_formatting: Teksto formatavimas - setting_wiki_compression: Wiki istorijos suspaudimas - setting_feeds_limit: Maksimalus objektų kiekis Atom sklaidos kanale - setting_default_projects_public: Nauji projektai yra vieši pagal nutylėjimą - setting_autofetch_changesets: Automatinis pakeitimų atnaujinimas - setting_sys_api_enabled: Įgalinti WS saugyklos valdymui - setting_commit_ref_keywords: Nuoroda į reikšminius žodžius - setting_commit_fix_keywords: Reikšminių žodžių fiksavimas - setting_autologin: Automatinis prisijungimas - setting_date_format: Datos formatas - setting_time_format: Laiko formatas - setting_cross_project_issue_relations: Leisti tarp-projektinius darbų ryšius - setting_cross_project_subtasks: Leisti susieti skirtingų projektų užduočių dalis - setting_issue_list_default_columns: Numatytieji stulpeliai darbų sąraše - setting_repositories_encodings: Pridėtų failų ir saugyklų šifravimas - setting_emails_header: Laiško antraštė - setting_emails_footer: Laiško paraštė - setting_protocol: Protokolas - setting_per_page_options: Įrašų puslapyje nustatymas - setting_user_format: Vartotojo atvaizdavimo formatas - setting_activity_days_default: Atvaizduojamos dienos projekto veikloje - setting_display_subprojects_issues: Pagal nutylėjimą, rodyti sub-projektų darbus pagrindiniame projekte - setting_enabled_scm: Įgalinti SCM - setting_mail_handler_body_delimiters: "Trumpinti laiškus po vienos iš šių eilučių" - setting_mail_handler_api_enabled: Įgalinti WS įeinantiems laiškams - setting_mail_handler_api_key: Įeinančių laiškų WS API raktas - setting_sys_api_key: Repository management WS API key - setting_sequential_project_identifiers: Generuoti nuoseklius projekto identifikatorius - setting_gravatar_enabled: Naudoti Gravatar vartotojo paveiksliukus - setting_gravatar_default: Gravatar paveiksliukas pagal nutylėjimą - setting_diff_max_lines_displayed: Maksimalus rodomas pakeitimų eilučių skaičius - setting_file_max_size_displayed: Maksimalus tekstinių failų dydis rodomas vienoje eilutėje - setting_repository_log_display_limit: Maksimalus revizijų skaičius rodomas failo žurnale - setting_openid: Leisti OpenID prisijungimą ir registraciją - setting_password_max_age: Reikalauti slaptažodžio pakeitimo po - setting_password_min_length: Minimalus slaptažodžio ilgis - setting_lost_password: Leisti slaptažodžio atstatymą elektroninu laišku - setting_new_project_user_role_id: Vaidmuo suteiktas vartotojui, kuris nėra administratorius ir kuris sukuria projektą - setting_default_projects_modules: Pagal nutylėjimą naujame projekte įjungti moduliai - setting_issue_done_ratio: Darbo įvykdymo progresą skaičiuoti pagal - setting_issue_done_ratio_issue_field: Naudoti darbo lauką - setting_issue_done_ratio_issue_status: Naudoti darbo statusą - setting_start_of_week: Savaitės pradžios diena - setting_rest_api_enabled: Įjungti REST tinklo servisą (WS) - setting_cache_formatted_text: Laikyti atmintyje formatuotą tekstą - setting_default_notification_option: Numatytosios pranešimų nuostatos - setting_commit_logtime_enabled: Įjungti laiko registravimą - setting_commit_logtime_activity_id: Laiko įrašų veikla - setting_gantt_items_limit: Maksimalus rodmenų skaičius rodomas Gantt'o grafike - setting_issue_group_assignment: Leisti darbo priskirimą grupėms - setting_default_issue_start_date_to_creation_date: Naudoti dabartinę datą kaip naujų darbų pradžios datą - setting_commit_cross_project_ref: Leisti kurti nuorodą darbams iš visų kitų projektų - setting_unsubscribe: Leisti vartotojams panaikinti savo paskyrą - setting_session_lifetime: Sesijos maksimalus galiojimas - setting_session_timeout: Sesijos neveiklumo laiko tarpas - setting_thumbnails_enabled: Rodyti sumažintus priedų atvaizdus - setting_thumbnails_size: Sumažinto atvaizdo dydis (pikseliais) - setting_non_working_week_days: Nedarbo dienos - setting_jsonp_enabled: Įgalinti JSONP palaikymą - setting_default_projects_tracker_ids: Numatytieji pėdsekiai naujiems projektams - setting_mail_handler_excluded_filenames: Neįtraukti priedų su pavadinimu - setting_force_default_language_for_anonymous: Priverstinai nustatyti numatytąją kalbą anoniminiams vartotojams - setting_force_default_language_for_loggedin: Priverstinai nustatyti numatytąją kalbą prisijungusiems vartotojams - setting_link_copied_issue: Susieti darbus kopijavimo metu - setting_max_additional_emails: Maksimalus skaičius papildomų elektronikių laiškų adresų - setting_search_results_per_page: Paieškos rezultatai puslapyje - setting_attachment_extensions_allowed: Leistini plėtiniai - setting_attachment_extensions_denied: Neleistini plėtiniai - - permission_add_project: Sukurti projektą - permission_add_subprojects: Kurti sub-projektus - permission_edit_project: Redaguoti projektą - permission_close_project: Uždaryti / atkurti projektą - permission_select_project_modules: Parinkti projekto modulius - permission_manage_members: Valdyti narius - permission_manage_project_activities: Valdyti projekto veiklas - permission_manage_versions: Valdyti versijas - permission_manage_categories: Valdyti darbų kategorijas - permission_view_issues: Peržiūrėti Darbus - permission_add_issues: Sukurti darbus - permission_edit_issues: Redaguoti darbus - permission_copy_issues: Kopijuoti darbus - permission_manage_issue_relations: Valdyti darbų ryšius - permission_set_issues_private: Nustatyti darbą viešu ar privačiu - permission_set_own_issues_private: Nustatyti savo darbus viešais ar privačiais - permission_add_issue_notes: Rašyti pastabas - permission_edit_issue_notes: Redaguoti pastabas - permission_edit_own_issue_notes: Redaguoti savo pastabas - permission_view_private_notes: Matyti privačias pastabas - permission_set_notes_private: Nustatyti pastabas privačiomis - permission_delete_issues: Pašalinti darbus - permission_manage_public_queries: Valdyti viešas užklausas - permission_save_queries: Išsaugoti užklausas - permission_view_gantt: Matyti Gantt grafiką - permission_view_calendar: Matyti kalendorių - permission_view_issue_watchers: Matyti stebėtojų sąrašą - permission_add_issue_watchers: Pridėti stebėtojus - permission_delete_issue_watchers: Pašalinti stebėtojus - permission_log_time: Regsitruoti dirbtą laiką - permission_view_time_entries: Matyti dirbtą laiką - permission_edit_time_entries: Redaguoti laiko įrašus - permission_edit_own_time_entries: Redaguoti savo laiko įrašus - permission_manage_news: Valdyti naujienas - permission_comment_news: Komentuoti naujienas - permission_view_documents: Matyti dokumentus - permission_add_documents: Pridėti dokumentus - permission_edit_documents: Redaguoti dokumentus - permission_delete_documents: Trinti dokumentus - permission_manage_files: Valdyti failus - permission_view_files: Matyti failus - permission_manage_wiki: Valdyti wiki - permission_rename_wiki_pages: Pervadinti wiki puslapius - permission_delete_wiki_pages: Pašalinti wiki puslapius - permission_view_wiki_pages: Matyti wiki - permission_view_wiki_edits: Matyti wiki istoriją - permission_edit_wiki_pages: Redaguoti wiki puslapius - permission_delete_wiki_pages_attachments: Pašalinti priedus - permission_protect_wiki_pages: Apsaugoti wiki puslapius - permission_manage_repository: Valdyti saugyklą - permission_browse_repository: Peržiūrėti saugyklą - permission_view_changesets: Matyti pakeitimus - permission_commit_access: Prieiga prie pakeitimų - permission_manage_boards: Valdyti forumus - permission_view_messages: Matyti pranešimus - permission_add_messages: Skelbti pranešimus - permission_edit_messages: Redaguoti pranešimus - permission_edit_own_messages: Redaguoti savo pranešimus - permission_delete_messages: Pašalinti pranešimus - permission_delete_own_messages: Pašalinti savo pranešimus - permission_export_wiki_pages: Eksportuoti wiki puslapius - permission_manage_subtasks: Valdyti darbo dalis - permission_manage_related_issues: Tvarkyti susietus darbus - permission_import_issues: Importuoti darbus - - project_module_issue_tracking: Darbų pėdsekys - project_module_time_tracking: Laiko pėdsekys - project_module_news: Naujienos - project_module_documents: Dokumentai - project_module_files: Failai - project_module_wiki: Wiki - project_module_repository: Saugykla - project_module_boards: Forumai - project_module_calendar: Kalendorius - project_module_gantt: Gantt - - label_user: Vartotojas - label_user_plural: Vartotojai - label_user_new: Naujas vartotojas - label_user_anonymous: Anonimas - label_project: Projektas - label_project_new: Naujas projektas - label_project_plural: Projektai - label_x_projects: - zero: nėra projektų - one: 1 projektas - other: "%{count} projektų(ai)" - label_project_all: Visi Projektai - label_project_latest: Naujausi projektai - label_issue: Darbas - label_issue_new: Naujas darbas - label_issue_plural: Darbai - label_issue_view_all: Peržiūrėti visus darbus - label_issues_by: "Darbai pagal %{value}" - label_issue_added: Darbas pridėtas - label_issue_updated: Darbas atnaujintas - label_issue_note_added: Pastaba pridėta - label_issue_status_updated: Statusas atnaujintas - label_issue_assigned_to_updated: Paskirtasis atnaujintas - label_issue_priority_updated: Prioritetas atnaujintas - label_document: Dokumentas - label_document_new: Naujas dokumentas - label_document_plural: Dokumentai - label_document_added: Dokumentas pridėtas - label_role: Vaidmuo - label_role_plural: Vaidmenys - label_role_new: Naujas vaidmuo - label_role_and_permissions: Vaidmenys ir leidimai - label_role_anonymous: Anonimas - label_role_non_member: Nėra narys - label_member: Narys - label_member_new: Naujas narys - label_member_plural: Nariai - label_tracker: Pėdsekys - label_tracker_plural: Pėdsekiai - label_tracker_new: Naujas pėdsekys - label_workflow: Darbų eiga - label_issue_status: Darbo būsena - label_issue_status_plural: Darbų būsenos - label_issue_status_new: Nauja būsena - label_issue_category: Darbo kategorija - label_issue_category_plural: Darbo kategorijos - label_issue_category_new: Nauja kategorija - label_custom_field: Kliento laukas - label_custom_field_plural: Kliento laukai - label_custom_field_new: Naujas kliento laukas - label_enumerations: Išvardinimai - label_enumeration_new: Nauja vertė - label_information: Informacija - label_information_plural: Informacija - label_register: Užsiregistruoti - label_login_with_open_id_option: arba prisijunkite su OpenID - label_password_lost: Prarastas slaptažodis - label_password_required: Norėdami tęsti, patvirtinkite savo slaptažodį - label_home: Pagrindinis - label_my_page: Mano puslapis - label_my_account: Mano paskyra - label_my_projects: Mano projektai - label_administration: Administravimas - label_login: Prisijungti - label_logout: Atsijungti - label_help: Pagalba - label_reported_issues: Pranešti darbai - label_assigned_issues: Priskirti darbai - label_assigned_to_me_issues: Darbai, priskirti man - label_last_login: Paskutinis prisijungimas - label_registered_on: Užregistruota - label_activity: Veikla - label_overall_activity: Visa veikla - label_user_activity: "%{value} veikla" - label_new: Naujas - label_logged_as: Prisijungęs kaip - label_environment: Aplinka - label_authentication: Autentiškumo nustatymas - label_auth_source: Autentiškumo nustatymo būdas - label_auth_source_new: Naujas autentiškumo nustatymo būdas - label_auth_source_plural: Autentiškumo nustatymo būdai - label_subproject_plural: Sub-projektai - label_subproject_new: Naujas sub-projektas - label_and_its_subprojects: "%{value} projektas ir jo sub-projektai" - label_min_max_length: Min - Maks ilgis - label_list: Sąrašas - label_date: Data - label_integer: Sveikasis skaičius - label_float: Slankiojo kablelio skaičius - label_boolean: BLoginis - label_string: Tekstas - label_text: Ilgas tekstas - label_attribute: Požymis - label_attribute_plural: Požymiai - label_no_data: Nėra ką atvaizduoti - label_change_status: Pakeitimo būsena - label_history: Istorija - label_attachment: Failas - label_attachment_new: Naujas failas - label_attachment_delete: Pašalinkite failą - label_attachment_plural: Failai - label_file_added: Failas pridėtas - label_report: Ataskaita - label_report_plural: Ataskaitos - label_news: Naujiena - label_news_new: Pridėti naujienas - label_news_plural: Naujienos - label_news_latest: Paskutinės naujienos - label_news_view_all: Peržiūrėti visas naujienas - label_news_added: Naujiena pridėta - label_news_comment_added: Prie naujienos pridėtas komentaras - label_settings: Nustatymai - label_overview: Apžvalga - label_version: Versija - label_version_new: Nauja versija - label_version_plural: Versijos - label_close_versions: Uždaryti užbaigtas versijas - label_confirmation: Patvirtinimas - label_export_to: 'Eksportuoti į:' - label_read: Skaitykite... - label_public_projects: Vieši projektai - label_open_issues: atidaryta - label_open_issues_plural: atidaryti - label_closed_issues: uždaryta - label_closed_issues_plural: uždaryti - label_x_open_issues_abbr: - zero: 0 atidarytų - one: 1 atidarytas - other: "%{count} atidarytų(i)" - label_x_closed_issues_abbr: - zero: 0 uždarytų - one: 1 uždarytas - other: "%{count} uždarytų(i)" - label_x_issues: - zero: 0 darbų - one: 1 darbas - other: "%{count} darbų(ai)" - label_total: Iš viso - label_total_plural: Iš viso - label_total_time: Visas laikas - label_permissions: Leidimai - label_current_status: Dabartinė būsena - label_new_statuses_allowed: Naujos būsenos galimos - label_all: visi - label_any: bet kuris - label_none: joks - label_nobody: niekas - label_next: Kitas - label_previous: Ankstesnis - label_used_by: Naudotas - label_details: Detalės - label_add_note: Pridėkite pastabą - label_calendar: Kalendorius - label_months_from: mėnesiai nuo - label_gantt: Gantt - label_internal: Vidinis - label_last_changes: "paskutiniai %{count} pokyčiai(-ių)" - label_change_view_all: Peržiūrėti visus pakeitimus - label_comment: Komentaras - label_comment_plural: Komentarai - label_x_comments: - zero: 0 komentarų - one: 1 komentaras - other: "%{count} komentarų(-ai)" - label_comment_add: Pridėkite komentarą - label_comment_added: Komentaras pridėtas - label_comment_delete: Pašalinti komentarus - label_query: Išsaugota užklausa - label_query_plural: Išsaugotos užklausos - label_query_new: Nauja užklausa - label_my_queries: Mano sukurtos užklausos - label_filter_add: Pridėti filtrą - label_filter_plural: Filtrai - label_equals: yra - label_not_equals: nėra - label_in_less_than: mažiau nei - label_in_more_than: daugiau nei - label_in_the_next_days: per ateinančias - label_in_the_past_days: per paskutines - label_greater_or_equal: '>=' - label_less_or_equal: '<=' - label_between: tarp - label_in: per - label_today: šiandien - label_yesterday: vakar - label_this_week: šią savaitę - label_last_week: praeita savaitė - label_last_n_weeks: "paskutinės %{count} sav." - label_last_n_days: "paskutinės %{count} dienų" - label_this_month: šis mėnuo - label_last_month: praeitas mėnuo - label_this_year: šiemet - label_date_range: Dienų diapazonas - label_less_than_ago: vėliau nei prieš dienų - label_more_than_ago: anksčiau nei prieš dienų - label_ago: dienų prieš - label_contains: turi - label_not_contains: neturi - label_any_issues_in_project: bet kurie darbai projekte - label_any_issues_not_in_project: bet kurie ne projekto darbai - label_no_issues_in_project: projekte nėra darbų - label_any_open_issues: bet kurie atviri darbai - label_no_open_issues: nėra atvirų darbų - label_day_plural: dienų(-os) - label_repository: Saugykla - label_repository_new: Nauja saugykla - label_repository_plural: Saugyklos - label_browse: Naršyti - label_branch: Šaka - label_tag: Tag'as - label_revision: Revizija - label_revision_plural: Revizijos - label_revision_id: "Revizija %{value}" - label_associated_revisions: Susijusios revizijos - label_added: pridėtas - label_modified: pakeistas - label_copied: nukopijuotas - label_renamed: pervardintas - label_deleted: pašalintas - label_latest_revision: Paskutinė revizija - label_latest_revision_plural: Paskutinės revizijos - label_view_revisions: Peržiūrėti revizijas - label_view_all_revisions: Peržiūrėti visas revizijas - label_max_size: Maksimalus dydis - label_sort_highest: Perkelti į viršūnę - label_sort_higher: Perkelti į viršų - label_sort_lower: Perkelti žemyn - label_sort_lowest: Perkelti į apačią - label_roadmap: Veiklos grafikas - label_roadmap_due_in: "Baigiasi po %{value}" - label_roadmap_overdue: "%{value} vėluojama" - label_roadmap_no_issues: Šiai versijai nepriskirtas joks darbas - label_search: Ieškoti - label_result_plural: Rezultatai - label_all_words: Visi žodžiai - label_wiki: Wiki - label_wiki_edit: Wiki redakcija - label_wiki_edit_plural: Wiki redakcijos - label_wiki_page: Wiki puslapis - label_wiki_page_plural: Wiki puslapiai - label_index_by_title: Rūšiuoti pagal pavadinimą - label_index_by_date: Rūšiuoti pagal datą - label_current_version: Einamoji versija - label_preview: Peržiūra - label_feed_plural: Kanalai - label_changes_details: Visų pakeitimų detalės - label_issue_tracking: Darbų sekimas - label_spent_time: Dirbtas laikas - label_total_spent_time: Visas dirbtas laikas - label_overall_spent_time: Visas dirbtas laikas - label_f_hour: "%{value} valanda" - label_f_hour_plural: "%{value} valandų(-os)" - label_f_hour_short: "%{value} h" - label_time_tracking: Laiko apskaita - label_change_plural: Pakeitimai - label_statistics: Statistika - label_commits_per_month: Įkėlimai per mėnesį - label_commits_per_author: Įkėlimai pagal autorių - label_diff: skirt. - label_view_diff: Skirtumų peržiūra - label_diff_inline: įterptas - label_diff_side_by_side: šalia - label_options: Pasirinkimai - label_copy_workflow_from: Kopijuoti darbų eiga iš - label_permissions_report: Leidimų apžvalga - label_watched_issues: Stebimi darbai - label_related_issues: Susiję darbai - label_applied_status: Taikomoji būsena - label_loading: Kraunama... - label_relation_new: Naujas ryšys - label_relation_delete: Pašalinti ryšį - label_relates_to: Susietas su - label_duplicates: Dubliuoja - label_duplicated_by: Dubliuojasi su - label_blocks: Blokuoja - label_blocked_by: Blokuojamas - label_precedes: Pradedamas vėliau - label_follows: Užbaigiamas anksčiau - label_copied_to: Nukopijuota į - label_copied_from: Nukopijuota iš - label_stay_logged_in: Likti prisijungus - label_disabled: išjungta(-as) - label_show_completed_versions: Rodyti užbaigtas versijas - label_me: aš - label_board: Forumas - label_board_new: Naujas forumas - label_board_plural: Forumai - label_board_locked: Užrakinta - label_board_sticky: Lipnus - label_topic_plural: Temos - label_message_plural: Pranešimai - label_message_last: Paskutinis pranešimas - label_message_new: Naujas pranešimas - label_message_posted: Pranešimas pridėtas - label_reply_plural: Atsakymai - label_send_information: Nusiųsti vartotojui paskyros informaciją - label_year: Metai - label_month: Mėnuo - label_week: Savaitė - label_date_from: Nuo - label_date_to: Iki - label_language_based: Pagrįsta vartotojo kalba - label_sort_by: "Rūšiuoti pagal %{value}" - label_send_test_email: Nusiųsti bandomąjį laišką - label_feeds_access_key: Atom prieigos raktas - label_missing_feeds_access_key: Trūksta Atom prieigos rakto - label_feeds_access_key_created_on: "Atom prieigos raktas sukurtas prieš %{value}" - label_module_plural: Moduliai - label_added_time_by: "%{author} pridėjo prieš %{age}" - label_updated_time_by: "%{author} atnaujino prieš %{age}" - label_updated_time: "Atnaujinta prieš %{value}" - label_jump_to_a_project: Šuolis į projektą... - label_file_plural: Failai - label_changeset_plural: Pakeitimų rinkiniai - label_default_columns: Numatytieji stulpeliai - label_no_change_option: (Jokio pakeitimo) - label_bulk_edit_selected_issues: Masiškai redaguoti pasirinktus darbus - label_bulk_edit_selected_time_entries: Masiškai redaguotumėte pasirinktus laiko įrašus - label_theme: Tema - label_default: Numatyta(-as) - label_search_titles_only: Ieškoti tiktai pavadinimuose - label_user_mail_option_all: "Bet kokiam įvykiui visuose mano projektuose" - label_user_mail_option_selected: "Bet kokiam įvykiui tiktai pasirinktuose projektuose ..." - label_user_mail_option_none: "Jokių įvykių" - label_user_mail_option_only_my_events: "Tiktai dalykai, kuriuos stebiu arba esu įtrauktas" - label_user_mail_no_self_notified: "Nenoriu būti informuotas apie pakeitimus, kuriuos pats atlieku" - label_registration_activation_by_email: paskyros aktyvacija per e-paštą - label_registration_manual_activation: rankinė paskyros aktyvacija - label_registration_automatic_activation: automatinė paskyros aktyvacija - label_display_per_page: "%{value} įrašų puslapyje" - label_age: Amžius - label_change_properties: Pakeisti nustatymus - label_general: Bendri(-as) - label_scm: SCM - label_plugins: Įskiepiai - label_ldap_authentication: LDAP autentifikacija - label_downloads_abbr: Siunt. - label_optional_description: Laisvai pasirenkamas apibūdinimas - label_add_another_file: Pridėti kitą failą - label_preferences: Savybės - label_chronological_order: Chronologine tvarka - label_reverse_chronological_order: Atbuline chronologine tvarka - label_incoming_emails: Įeinantys laiškai - label_generate_key: Generuoti raktą - label_issue_watchers: Stebėtojai - label_example: Pavyzdys - label_display: Demonstruoti - label_sort: Rūšiuoti - label_ascending: Didėjantis - label_descending: Mažėjantis - label_date_from_to: Nuo %{start} iki %{end} - label_wiki_content_added: Wiki puslapis pridėtas - label_wiki_content_updated: Wiki puslapis atnaujintas - label_group: Grupė - label_group_plural: Grupės - label_group_new: Nauja grupė - label_group_anonymous: Anoniminiai vartotojai - label_group_non_member: Nepriklausantys projektui vartotojai - label_time_entry_plural: Sprendimo laikas - label_version_sharing_none: Nesidalinama - label_version_sharing_descendants: Su sub-projektais - label_version_sharing_hierarchy: Su projekto hierarchija - label_version_sharing_tree: Su projekto medžiu - label_version_sharing_system: Su visais projektais - label_update_issue_done_ratios: Atnaujinti darbo atlikimo progresą - label_copy_source: Šaltinis - label_copy_target: Tikslas - label_copy_same_as_target: Toks pat kaip tikslas - label_display_used_statuses_only: Rodyti tik tuos statusus, kurie naudojami šio pėdsekio - label_api_access_key: API prieigos raktas - label_missing_api_access_key: Trūksta API prieigos rakto - label_api_access_key_created_on: "API prieigos raktas sukurtas prieš %{value}" - label_profile: Profilis - label_subtask_plural: Darbo dalys - label_project_copy_notifications: Siųsti pranešimus į e-paštą kopijuojant projektą - label_principal_search: "Ieškoti vartotojo arba grupės:" - label_user_search: "Ieškoti vartotojo:" - label_additional_workflow_transitions_for_author: Papildomi darbų eigos variantai leistini, kai vartotojas yra darbo autorius - label_additional_workflow_transitions_for_assignee: Papildomi darbų eigos variantai leistini, kai darbas paskirtas vartotojui - label_issues_visibility_all: Visi darbai - label_issues_visibility_public: Visi vieši darbai - label_issues_visibility_own: Darbai, sukurti vartotojo arba jam priskirti - label_git_report_last_commit: Nurodyti paskutinį failų ir katalogų pakeitimą - label_parent_revision: Pirminė revizija - label_child_revision: Sekanti revizija - label_export_options: "%{export_format} eksportavimo nustatymai" - label_copy_attachments: Kopijuoti priedus - label_copy_subtasks: Kopijuoti darbo dalis - label_item_position: "%{position}/%{count}" - label_completed_versions: Užbaigtos versijos - label_search_for_watchers: Ieškoti vartotojų kuriuos įtraukti kaip stebėtojus - label_session_expiration: Baigėsi sujungimo sesija - label_status_transitions: Darbų eiga - label_fields_permissions: Leidimai - label_readonly: Tik peržiūra - label_required: Privaloma(s) - label_hidden: Paslėptas - label_attribute_of_project: "Projekto %{name}" - label_attribute_of_issue: "Darbo %{name}" - label_attribute_of_author: "Autoriaus %{name}" - label_attribute_of_assigned_to: "Paskirto %{name}" - label_attribute_of_user: "Vartotojo %{name}" - label_attribute_of_fixed_version: "Versijos %{name}" - label_cross_project_descendants: Su sub-projektais - label_cross_project_tree: Su projekto medžiu - label_cross_project_hierarchy: Su projekto hierarchija - label_cross_project_system: Su visais projektais - label_gantt_progress_line: Progreso linija - label_visibility_private: tik man - label_visibility_roles: tik šioms rolėms - label_visibility_public: bet kuriam vartotojui - label_link: Nuoroda - label_only: tik - label_drop_down_list: pasirinkimų sąrašas - label_checkboxes: žymimieji langeliai - label_radio_buttons: akutės - label_link_values_to: Nuorodos vertės į URL - label_custom_field_select_type: Pasirinkite objektą, su kuriuo kliento laukas bus susietas - label_check_for_updates: Tikrinti, ar yra atnaujinimų - label_latest_compatible_version: Naujausia suderinama versija - label_unknown_plugin: Nežinomas įskiepis - label_add_projects: Pridėti projektus - label_users_visibility_all: Visi aktyvūs vartotojai - label_users_visibility_members_of_visible_projects: Visų prieinamų projektų vartotojai - label_edit_attachments: Redaguoti prisegtus failus - label_link_copied_issue: Susieti nukopijuotą darbą - label_ask: Klausti - label_search_attachments_yes: Ieškoti priedų pavadinimuose ir jų aprašymuose - label_search_attachments_no: Neieškoti prieduose - label_search_attachments_only: Ieškoti tik prieduose - label_search_open_issues_only: Tik atidaryti darbai - label_email_address_plural: E-paštai - label_email_address_add: E-pašto adresas - label_enable_notifications: Įjungti pranešimus - label_disable_notifications: Išjungti pranešimus - label_blank_value: tuščias(ia) - label_parent_task_attributes: Pagrindinės užduoties požymiai - label_parent_task_attributes_derived: Apskaičiuota iš darbo dalių - label_parent_task_attributes_independent: Nepriklauso nuo darbo dalių - label_time_entries_visibility_all: Visi laiko įrašai - label_time_entries_visibility_own: Laiko įrašai įrašyti vartotojo - label_member_management: Vartotojų valdymas - label_member_management_all_roles: Visos rolės - label_member_management_selected_roles_only: Tik šios rolės - label_import_issues: Importuoti darbus - label_select_file_to_import: Pasirinkite failą importavimui - label_fields_separator: Lauko skirtukas - label_fields_wrapper: Lauko aplankas - label_encoding: Kodavimas - label_comma_char: Kablelis - label_semi_colon_char: Kabliataškis - label_quote_char: Kabutės - label_double_quote_char: Apostrofas - label_fields_mapping: Laukų sujungimas - label_file_content_preview: Failo turinio peržiūra - label_create_missing_values: Sukurti trūkstamas reikšmes - label_api: API - label_field_format_enumeration: Raktas/reikšmė sąrašas - label_default_values_for_new_users: Numatytosios reikšmės naujiems vartotojams - - button_login: Prisijungti - button_submit: Pateikti - button_save: Išsaugoti - button_check_all: Žymėti visus - button_uncheck_all: Atžymėti visus - button_collapse_all: Sutraukti visus - button_expand_all: Išskleisti visus - button_delete: Pašalinti - button_create: Sukurti - button_create_and_continue: Sukurti ir tęsti - button_test: Testas - button_edit: Redaguoti - button_edit_associated_wikipage: "Redaguoti susijusį Wiki puslapį: %{page_title}" - button_add: Pridėti - button_change: Keisti - button_apply: Pritaikyti - button_clear: Išvalyti - button_lock: Rakinti - button_unlock: Atrakinti - button_download: Atsisiųsti - button_list: Sąrašas - button_view: Žiūrėti - button_move: Perkelti - button_move_and_follow: Perkelti ir sekti - button_back: Atgal - button_cancel: Atšaukti - button_activate: Aktyvinti - button_sort: Rūšiuoti - button_log_time: Registruoti laiką - button_rollback: Grąžinti į šią versiją - button_watch: Stebėti - button_unwatch: Nestebėti - button_reply: Atsakyti - button_archive: Archyvuoti - button_unarchive: Išpakuoti - button_reset: Atstatyti - button_rename: RPervadinti - button_change_password: Pakeisti slaptažodį - button_copy: Kopijuoti - button_copy_and_follow: Kopijuoti ir sekti - button_annotate: Rašyti pastabą - button_update: Atnaujinti - button_configure: Konfigūruoti - button_quote: Cituoti - button_show: Rodyti - button_hide: Slėpti - button_edit_section: Redaguoti šį skirsnį - button_export: Eksportuoti - button_delete_my_account: Panaikinti savo paskyrą - button_close: Uždaryti - button_reopen: Atidaryti iš naujo - button_import: Importuoti - - status_active: aktyvus - status_registered: užregistruotas - status_locked: užrakintas - - project_status_active: aktyvus - project_status_closed: uždarytas - project_status_archived: archyvuotas - - version_status_open: atidaryta - version_status_locked: užrakinta - version_status_closed: uždaryta - - field_active: Aktyvus - - text_select_mail_notifications: Išrinkite veiksmus, apie kuriuos būtų pranešta elektroniniu paštu. - text_regexp_info: pvz. ^[A-Z0-9]+$ - text_min_max_length_info: 0 reiškia jokių apribojimų - text_project_destroy_confirmation: Ar esate įsitikinęs, kad norite pašalinti šį projektą ir visus susijusius duomenis? - text_subprojects_destroy_warning: "Šis(-ie) sub-projektas(-ai): %{value} bus taip pat pašalinti." - text_workflow_edit: Išrinkite vaidmenį ir pėdsekį, kad redaguotumėte darbų eigą - text_are_you_sure: Ar esate įsitikinęs? - text_journal_changed: "%{label} pakeistas(a) iš %{old} į %{new}" - text_journal_changed_no_detail: "%{label} atnaujintas(a)" - text_journal_set_to: "%{label} nustatytas(a) į %{value}" - text_journal_deleted: "%{label} ištrintas(a) (%{old})" - text_journal_added: "%{label} pridėtas(a) %{value}" - text_tip_issue_begin_day: užduotis, prasidedanti šią dieną - text_tip_issue_end_day: užduotis, pasibaigianti šią dieną - text_tip_issue_begin_end_day: užduotis, prasidedanti ir pasibaigianti šią dieną - text_project_identifier_info: 'Leistinos mažosios raidės (a-z), skaičiai, pabraukimai ir brūkšniai, bei turi prasidėti mažąja raide .
    Išsaugojus, identifikatorius negali būti keičiamas.' - text_caracters_maximum: "%{count} simbolių maksimumas." - text_caracters_minimum: "Turi būti mažiausiai %{count} simbolių ilgio." - text_length_between: "Ilgis tarp %{min} ir %{max} simbolių." - text_tracker_no_workflow: Jokia darbų eiga neparinkta šiam pėdsekiui - text_unallowed_characters: Neleistini simboliai - text_comma_separated: Leistinos kelios reikšmės (atskirtos kableliu). - text_line_separated: Galimos kelios reikšmės (viena linija vienai vertei). - text_issues_ref_in_commit_messages: Darbų susiejimas ir fiksavimas pavedimų žinutėse - text_issue_added: "%{author} užregistravo darbą %{id}." - text_issue_updated: "%{author} atnaujino darbą %{id}." - text_wiki_destroy_confirmation: Ar esate įsitikinęs, jog norite pašalinti šį wiki puslapį ir visą jo turinį? - text_issue_category_destroy_question: "Kai kurie darbai (%{count}) yra paskirti šiai kategorijai. Ką jūs norite daryti?" - text_issue_category_destroy_assignments: Pašalinti priskirimus kategorijai - text_issue_category_reassign_to: Iš naujo priskirti darbus šiai kategorijai - text_user_mail_option: "Nepasirinktiems projektams, jūs gausite pranešimus tiktai apie tuos įvykius, kuriuos jūs stebite, arba į kuriuos esate įtrauktas (pvz. darbai, kurių autorius esate ar kuriems esate priskirtas)." - text_no_configuration_data: "Vaidmenys, pėdsekiai, darbų būsenos ir darbų eiga dar nebuvo sukonfigūruota.\nGriežtai rekomenduojam užkrauti numatytąją (default) konfigūraciją. Užkrovus, galėsite ją modifikuoti." - text_load_default_configuration: Užkrauti numatytąją konfigūraciją - text_status_changed_by_changeset: "Pakeista %{value} revizijoje." - text_time_logged_by_changeset: "Pakeista %{value} revizijoje." - text_issues_destroy_confirmation: 'Ar jūs tikrai norite ištrinti pažymėtą(-us) darbą(-us)?' - text_issues_destroy_descendants_confirmation: "Taip pat bus ištrinta(-os) %{count} darbo dalis(ys)." - text_time_entries_destroy_confirmation: 'Ar jūs tikrai norite ištrinti pasirinktą(-us) laiko įrašą(-us)?' - text_select_project_modules: 'Parinkite modulius, kuriuos norite naudoti šiame projekte:' - text_default_administrator_account_changed: Administratoriaus numatytoji paskyra pakeista - text_file_repository_writable: Į failų saugyklą saugoti galima (RW) - text_plugin_assets_writable: Į įskiepių katalogą įrašyti galima - text_minimagick_available: MiniMagick pasiekiamas (pasirinktinai) - text_convert_available: ImageMagick konvertavimas galimas (pasirinktinai) - text_destroy_time_entries_question: "Naikinamam darbui priskirta %{hours} valandų. Ką norite su jomis daryti?" - text_destroy_time_entries: Ištrinti įrašytas valandas - text_assign_time_entries_to_project: Priskirti įrašytas valandas prie projekto - text_reassign_time_entries: 'Priskirti įrašytas valandas šiam darbui:' - text_user_wrote: "%{value} parašė:" - text_user_wrote_in: "%{value} parašė (%{link}):" - text_enumeration_destroy_question: "%{count} objektai(ų) priskirti šiai reikšmei “%{name}”." - text_enumeration_category_reassign_to: 'Priskirti juos šiai reikšmei:' - text_email_delivery_not_configured: "El.pašto siuntimas nesukonfigūruotas ir perspėjimai neaktyvus.\nSukonfigūruokite savo SMTP serverį byloje config/configuration.yml ir perleiskite programą norėdami pritaikyti pakeitimus." - text_repository_usernames_mapping: "Parinkite ar atnaujinkite Redmine vartotoją, kuris paminėtas saugyklos žurnale.\nVartotojai, turintys tą patį Redmine ir saugyklos vardą ar el. paštą yra automatiškai surišti." - text_diff_truncated: "... Šis diff'as sutrauktas, nes viršija maksimalų rodomų eilučių skaičių." - text_custom_field_possible_values_info: 'Po vieną eilutę kiekvienai reikšmei' - text_wiki_page_destroy_question: "Šis puslapis turi %{descendants} susijusių arba išvestinių puslapių. Ką norite daryti?" - text_wiki_page_nullify_children: "Palikti susijusius puslapius kaip pagrindinius puslapius" - text_wiki_page_destroy_children: "Pašalinti susijusius puslapius ir jų palikuonis" - text_wiki_page_reassign_children: "Priskirkite iš naujo 'susijusius' puslapius šiam pagrindiniam puslapiui" - text_own_membership_delete_confirmation: "Jūs tuoj panaikinsite dalį arba visus leidimus ir po šio pakeitimo galite prarasti šio projekto redagavimo galimybę.\nAr jūs tikrai norite tęsti?" - text_zoom_in: Priartinti - text_zoom_out: Nutolinti - text_warn_on_leaving_unsaved: "Dabartinis puslapis turi neišsaugoto teksto, kuris bus prarastas, jeigu paliksite šį puslapį." - text_scm_path_encoding_note: "Numatytasis: UTF-8" - text_subversion_repository_note: "Pavyzdžiai: file:///, http://, https://, svn://, svn+[tunnelscheme]://" - text_git_repository_note: Saugykla (repository) yra tuščia ir lokali (pvz. /gitrepo, c:\gitrepo) - text_mercurial_repository_note: Lokali saugykla (e.g. /hgrepo, c:\hgrepo) - text_scm_command: Komanda - text_scm_command_version: Versija - text_scm_config: Jūs galite nustatyti SCM komandas config/configuration.yml faile. Prašome perkrauti programą po failo redagavimo, norint įgalinti pakeitimus. - text_scm_command_not_available: SCM komanda nepasiekiama. Patikrinkite nustatymus administravimo skyriuje. - text_issue_conflict_resolution_overwrite: Išsaugoti mano pakeitimus bet kuriuo atveju (ankstesni įrašai bus išsaugot, tačiau kai kurie pakeitimai bus perrašyti) - text_issue_conflict_resolution_add_notes: "Išsaugoti mano įrašus ir atmesti likusius mano pakeitimus" - text_issue_conflict_resolution_cancel: "Atmesti visus mano pakeitimus ir iš naujo rodyti %{link}" - text_account_destroy_confirmation: "Ar tikrai norite tęsti?\nJūsų paskyra bus negrįžtamai pašalinta be galimybės ją vėl aktyvuoti." - text_session_expiration_settings: "Įspėjimas: šių nustatymų pakeitimas gali nutraukti galiojančias sesijas, įskaitant jūsų." - text_project_closed: Šis projektas yra uždarytas ir prieinamas tik peržiūrai. - text_turning_multiple_off: "Jei jūs išjungsite kelių reikšmių pasirinkimą, visos išvardintos reikšmės bus pašalintos ir palikta tik viena reikšmė kiekvienam laukui." - - default_role_manager: Vadovas - default_role_developer: Plėtotojas - default_role_reporter: Pranešėjas - default_tracker_bug: Klaida - default_tracker_feature: Ypatybė - default_tracker_support: Palaikymas - default_issue_status_new: Naujas - default_issue_status_in_progress: Vykdomas - default_issue_status_resolved: Išspręstas - default_issue_status_feedback: Grįžtamasis ryšys - default_issue_status_closed: Uždarytas - default_issue_status_rejected: Atmestas - default_doc_category_user: Vartotojo dokumentacija - default_doc_category_tech: Techninė dokumentacija - default_priority_low: Žemas - default_priority_normal: Normalus - default_priority_high: Aukštas - default_priority_urgent: Skubus - default_priority_immediate: Neatidėliotinas - default_activity_design: Projektavimas - default_activity_development: Vystymas - - enumeration_issue_priorities: Darbo prioritetai - enumeration_doc_categories: Dokumento kategorijos - enumeration_activities: Veiklos (laiko) sekimas - enumeration_system_activity: Sistemos veikla - description_filter: Filtras - description_search: Paieškos laukas - description_choose_project: Projektai - description_project_scope: Paieškos sritis - description_notes: Pastabos - description_message_content: MŽinutės turinys - description_query_sort_criteria_attribute: Rūšiuoti atributą - description_query_sort_criteria_direction: Rūšiuoti kryptį - description_user_mail_notification: Pašto pranešimų nustatymai - description_available_columns: Galimi Stulpeliai - description_selected_columns: Pasirinkti Stulpeliai - description_all_columns: AVisi stulpeliai - description_issue_category_reassign: Pasirinkti darbo kategoriją - description_wiki_subpages_reassign: Pasirinkti naują pagrindinį puslapį - text_repository_identifier_info: 'Leidžiamos tik mažosios raidės (a-z), skaitmenys, brūkšneliai ir pabraukimo simboliai.
    Kartą išsaugojus pakeitimai negalimi' - label_wiki_page_new: Naujas wiki puslapis - label_relations: Ryšiai - button_filter: Filtras - mail_body_password_updated: Slaptažodis pakeistas. - label_no_preview: Peržiūra negalima - error_no_tracker_allowed_for_new_issue_in_project: Projektas neturi jokių pėdsekių, - kuriems galima būtų sukurti darbą - label_tracker_all: Visi pėdsekiai - label_new_project_issue_tab_enabled: Rodyti "Naujo darbo kortelę" - setting_new_item_menu_tab: Projekto meniu ąselė naujų objektų kūrimui - label_new_object_tab_enabled: Rodyti "+" išskleidžiąmąjį sąrašą - error_no_projects_with_tracker_allowed_for_new_issue: Nėra projektų su pėdsekiais, - kuriems galima būtų sukurti darbą - field_textarea_font: Šriftas naudojamas teksto sritims - label_font_default: Numatytasis šriftas - label_font_monospace: Lygiaplotis šriftas - label_font_proportional: Įvairiaplotis šriftas - setting_timespan_format: Laiko tarpo formatas - label_table_of_contents: Turinio lentelė - setting_commit_logs_formatting: Pritaikyti teksto formatavimą patvirtinimo žinutėms - setting_mail_handler_enable_regex: Įjungti reguliariuosius reiškinius - error_move_of_child_not_possible: 'Darbo dalis %{child} negali būti perkelta į naują - projektą: %{errors}' - error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted: Dirbtas laikas negali būti - iš naujo paskirtas darbui, kuris bus ištrintas - setting_timelog_required_fields: Privalomi laukai laiko registracijai - label_attribute_of_object: '%{object_name}''s %{name}' - label_user_mail_option_only_assigned: Tik dalykai, kuriuos stebiu arba esu įtrauktas - label_user_mail_option_only_owner: Tik dalykai, kuriuos stebiu arba esu jų savininkas - warning_fields_cleared_on_bulk_edit: Pakeitimai iššauks automatinį reikšmių - pašalinimą iš vieno arba kelių laukų pažymėtiems objektams - field_updated_by: Atnaujino - field_last_updated_by: Paskutinį kartą atnaujino - field_full_width_layout: Viso pločio išdėstymas - label_last_notes: Paskutinės pastabos - field_digest: Kontrolinė suma - field_default_assigned_to: Numatytasis paskirtasis - setting_show_custom_fields_on_registration: Rodyti individualizuotus laukus registracijoje - permission_view_news: Žiūrėti naujienas - label_no_preview_alternative_html: Peržiūra neprieinama. Naudokite failą %{link}. - label_no_preview_download: Atsisiųsti - setting_close_duplicate_issues: Close duplicate issues automatically - error_exceeds_maximum_hours_per_day: Cannot log more than %{max_hours} hours on the - same day (%{logged_hours} hours have already been logged) - setting_time_entry_list_defaults: Timelog list defaults - setting_timelog_accept_0_hours: Accept time logs with 0 hours - setting_timelog_max_hours_per_day: Maximum hours that can be logged per day and user - label_x_revisions: "%{count} revisions" - error_can_not_delete_auth_source: This authentication mode is in use and cannot be - deleted. - button_actions: Actions - mail_body_lost_password_validity: Please be aware that you may change the password - only once using this link. - text_login_required_html: When not requiring authentication, public projects and their - contents are openly available on the network. You can edit - the applicable permissions. - label_login_required_yes: 'Yes' - label_login_required_no: No, allow anonymous access to public projects - text_project_is_public_non_member: Public projects and their contents are available - to all logged-in users. - text_project_is_public_anonymous: Public projects and their contents are openly available - on the network. - label_version_and_files: Versions (%{count}) and Files - label_ldap: LDAP - label_ldaps_verify_none: LDAPS (without certificate check) - label_ldaps_verify_peer: LDAPS - label_ldaps_warning: It is recommended to use an encrypted LDAPS connection with certificate - check to prevent any manipulation during the authentication process. - label_nothing_to_preview: Nothing to preview - error_token_expired: This password recovery link has expired, please try again. - error_spent_on_future_date: Cannot log time on a future date - setting_timelog_accept_future_dates: Accept time logs on future dates - label_delete_link_to_subtask: Pašalinti ryšį - error_not_allowed_to_log_time_for_other_users: You are not allowed to log time - for other users - permission_log_time_for_other_users: Log spent time for other users - label_tomorrow: tomorrow - label_next_week: next week - label_next_month: next month - text_role_no_workflow: No workflow defined for this role - text_status_no_workflow: No tracker uses this status in the workflows - setting_mail_handler_preferred_body_part: Preferred part of multipart (HTML) emails - setting_show_status_changes_in_mail_subject: Show status changes in issue mail notifications - subject - label_inherited_from_parent_project: Inherited from parent project - label_inherited_from_group: Inherited from group %{name} - label_trackers_description: Trackers description - label_open_trackers_description: View all trackers description - label_preferred_body_part_text: Text - label_preferred_body_part_html: HTML (experimental) - field_parent_issue_subject: Parent task subject - permission_edit_own_issues: Edit own issues - text_select_apply_tracker: Select tracker - label_updated_issues: Updated issues - text_avatar_server_config_html: The current avatar server is %{url}. - You can configure it in config/configuration.yml. - setting_gantt_months_limit: Maximum number of months displayed on the gantt chart - permission_import_time_entries: Import time entries - label_import_notifications: Send email notifications during the import - text_gs_available: ImageMagick PDF support available (optional) - field_recently_used_projects: Number of recently used projects in jump box - label_optgroup_bookmarks: Bookmarks - label_optgroup_others: Other projects - label_optgroup_recents: Recently used - button_project_bookmark: Add bookmark - button_project_bookmark_delete: Remove bookmark - field_history_default_tab: Issue's history default tab - label_issue_history_properties: Property changes - label_issue_history_notes: Notes - label_last_tab_visited: Last visited tab - field_unique_id: Unique ID - text_no_subject: no subject - setting_password_required_char_classes: Required character classes for passwords - label_password_char_class_uppercase: uppercase letters - label_password_char_class_lowercase: lowercase letters - label_password_char_class_digits: digits - label_password_char_class_special_chars: special characters - text_characters_must_contain: Must contain %{character_classes}. - label_starts_with: starts with - label_ends_with: ends with - label_issue_fixed_version_updated: Target version updated - setting_project_list_defaults: Projects list defaults - label_display_type: Display results as - label_display_type_list: List - label_display_type_board: Board - label_my_bookmarks: My bookmarks - label_import_time_entries: Import time entries diff --git a/config/locales/lv.yml b/config/locales/lv.yml deleted file mode 100644 index d632934..0000000 --- a/config/locales/lv.yml +++ /dev/null @@ -1,1309 +0,0 @@ -# translated by Dzintars Bergs (dzintars.bergs@gmail.com) - -lv: - direction: ltr - date: - formats: - default: "%d.%m.%Y" - short: "%d %b" - long: "%d %B %Y" - - day_names: [Svētdiena, Pirmdiena, Otrdiena, Trešdiena, Ceturtdiena, Piektdiena, Sestdiena] - abbr_day_names: [Sv, Pr, Ot, Tr, Ct, Pk, St] - - month_names: [~, Janvāris, Februāris, Marts, Aprīlis , Maijs, Jūnijs, Jūlijs, Augusts, Septembris, Oktobris, Novembris, Decembris] - abbr_month_names: [~, Jan, Feb, Mar, Apr, Mai, Jūn, Jūl, Aug, Sep, Okt, Nov, Dec] - order: - - :day - - :month - - :year - - time: - formats: - default: "%a, %d %b %Y, %H:%M:%S %z" - time: "%H:%M" - short: "%d %b, %H:%M" - long: "%B %d, %Y %H:%M" - am: "rītā" - pm: "vakarā" - - datetime: - distance_in_words: - half_a_minute: "pus minūte" - less_than_x_seconds: - one: "mazāk kā 1 sekunde" - other: "mazāk kā %{count} sekundes" - x_seconds: - one: "1 sekunde" - other: "%{count} sekundes" - less_than_x_minutes: - one: "mazāk kā minūte" - other: "mazāk kā %{count} minūtes" - x_minutes: - one: "1 minūte" - other: "%{count} minūtes" - about_x_hours: - one: "aptuveni 1 stunda" - other: "aptuveni %{count} stundas" - x_hours: - one: "1 stunda" - other: "%{count} stundas" - x_days: - one: "1 diena" - other: "%{count} dienas" - about_x_months: - one: "aptuveni 1 mēnesis" - other: "aptuveni %{count} mēneši" - x_months: - one: "1 mēnesis" - other: "%{count} mēneši" - about_x_years: - one: "aptuveni 1 gads" - other: "aptuveni %{count} gadi" - over_x_years: - one: "ilgāk par 1 gadu" - other: "ilgāk par %{count} gadiem" - almost_x_years: - one: "gandrīz 1 gadu" - other: "gandrīz %{count} gadus" - - number: - format: - separator: "." - delimiter: "" - precision: 3 - human: - format: - delimiter: " " - precision: 3 - storage_units: - format: "%n %u" - units: - byte: - one: "Baits" - other: "Baiti" - kb: "KB" - mb: "MB" - gb: "GB" - tb: "TB" - - support: - array: - sentence_connector: "un" - skip_last_comma: false - - activerecord: - errors: - template: - header: - one: "1 error prohibited this %{model} from being saved" - other: "%{count} errors prohibited this %{model} from being saved" - messages: - inclusion: "nav iekļauts sarakstā" - exclusion: "ir rezervēts" - invalid: "nederīgs" - confirmation: "apstiprinājums nesakrīt" - accepted: "jābūt akceptētam" - empty: "nevar būt tukšs" - blank: "nevar būt neaizpildīts" - too_long: "ir pārāk gara(š) (maksimālais garums ir %{count} simboli)" - too_short: "ir pārāk īsa(s) (minimālais garums ir %{count} simboli)" - wrong_length: "ir nepareiza garuma (vajadzētu būt %{count} simboli)" - taken: "eksistē" - not_a_number: "nav skaitlis" - not_a_date: "nav derīgs datums" - greater_than: "jābūt lielākam par %{count}" - greater_than_or_equal_to: "jābūt lielākam vai vienādam ar %{count}" - equal_to: "jābūt vienādam ar %{count}" - less_than: "jābūt mazākam kā %{count}" - less_than_or_equal_to: "jābūt mazākam vai vienādam ar %{count}" - odd: "jāatšķirās" - even: "jāsakrīt" - greater_than_start_date: "jābūt vēlākam par sākuma datumu" - not_same_project: "nepieder pie tā paša projekta" - circular_dependency: "Šī relācija radītu ciklisku atkarību" - cant_link_an_issue_with_a_descendant: "An issue can not be linked to one of its subtasks" - earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" - not_a_regexp: "is not a valid regular expression" - open_issue_with_closed_parent: "An open issue cannot be attached to a closed parent task" - must_contain_uppercase: "must contain uppercase letters (A-Z)" - must_contain_lowercase: "must contain lowercase letters (a-z)" - must_contain_digits: "must contain digits (0-9)" - must_contain_special_chars: "must contain special characters (!, $, %, ...)" - - actionview_instancetag_blank_option: Izvēlieties - - general_text_No: 'Nē' - general_text_Yes: 'Jā' - general_text_no: 'nē' - general_text_yes: 'jā' - general_lang_name: 'Latvian (Latviešu)' - general_csv_separator: ',' - general_csv_decimal_separator: '.' - general_csv_encoding: UTF-8 - general_pdf_fontname: freesans - general_pdf_monospaced_fontname: freemono - general_first_day_of_week: '1' - - notice_account_updated: Konts tika atjaunots veiksmīgi. - notice_account_invalid_credentials: Nepareizs lietotāja vārds vai parole. - notice_account_password_updated: Parole tika veiksmīgi atjaunota. - notice_account_wrong_password: Nepareiza parole - notice_account_register_done: Konts veiksmīgi izveidots. Lai aktivizētu kontu, spiediet uz saites, kas Jums tika nosūtīta. - notice_account_unknown_email: Nezināms lietotājs - notice_can_t_change_password: Šis konts izmanto ārēju pilnvarošanas avotu. Nav iespējams nomainīt paroli. - notice_account_lost_email_sent: Jums tika nosūtīts e-pasts ar instrukcijām, kā izveidot jaunu paroli. - notice_account_activated: Jūsu konts ir aktivizēts. Varat pieslēgties sistēmai. - notice_successful_create: Veiksmīga izveide. - notice_successful_update: Veiksmīga atjaunošana. - notice_successful_delete: Veiksmīga dzēšana. - notice_successful_connection: Veiksmīgs savienojums. - notice_file_not_found: Lapa, ko Jūs mēģināt atvērt, neeksistē vai ir pārvietota. - notice_locking_conflict: Datus ir atjaunojis cits lietotājs. - notice_not_authorized: Jums nav tiesību piekļūt šai lapai. - notice_email_sent: "E-pasts tika nosūtīts uz %{value}" - notice_email_error: "Kļūda sūtot e-pastu (%{value})" - notice_feeds_access_key_reseted: Jūsu Atom pieejas atslēga tika iestatīta sākuma stāvoklī. - notice_api_access_key_reseted: Jūsu API pieejas atslēga tika iestatīta sākuma stāvoklī. - notice_failed_to_save_issues: "Neizdevās saglabāt %{count} uzdevumu(us) no %{total} izvēlēti: %{ids}." - notice_no_issue_selected: "Nav izvēlēts uzdevums! Lūdzu, atzīmējiet uzdevumus, kurus vēlaties rediģēt!" - notice_account_pending: "Jūsu konts tika izveidots un šobrīd gaida administratora apstiprinājumu." - notice_default_data_loaded: Noklusētā konfigurācija tika veiksmīgi ielādēta. - notice_unable_delete_version: Neizdevās dzēst versiju. - notice_issue_done_ratios_updated: Uzdevuma izpildes koeficients atjaunots. - - error_can_t_load_default_data: "Nevar ielādēt noklusētos konfigurācijas datus: %{value}" - error_scm_not_found: "Ieraksts vai versija nebija repozitorijā." - error_scm_command_failed: "Mēģinot piekļūt repozitorijam, notika kļūda: %{value}" - error_scm_annotate: "Ieraksts neeksistē vai tam nevar tikt pievienots paskaidrojums." - error_issue_not_found_in_project: 'Uzdevums netika atrasts vai nepieder šim projektam.' - error_no_tracker_in_project: 'Neviens trakeris nav saistīts ar šo projektu. Pārbaudiet projekta iestatījumus.' - error_no_default_issue_status: 'Nav definēts uzdevuma noklusētais statuss. Pārbaudiet konfigurāciju (Ejat uz: "Administrācija -> Uzdevumu statusi")!' - error_can_not_reopen_issue_on_closed_version: 'Nevar pievienot atsauksmi uzdevumam, kas saistīts ar slēgtu versiju.' - error_can_not_archive_project: Šis projekts nevar tikt arhivēts - error_issue_done_ratios_not_updated: "Uzdevuma izpildes koeficients nav atjaunots." - error_workflow_copy_source: 'Lūdzu izvēlieties avota trakeri vai lomu' - error_workflow_copy_target: 'Lūdzu izvēlēties mērķa trakeri(us) un lomu(as)' - - warning_attachments_not_saved: "%{count} datnes netika saglabātas." - - mail_subject_lost_password: "Jūsu %{value} parole" - mail_body_lost_password: 'Lai mainītu paroli, spiediet uz šīs saites:' - mail_subject_register: "Jūsu %{value} konta aktivizācija" - mail_body_register: 'Lai izveidotu kontu, spiediet uz šīs saites:' - mail_body_account_information_external: "Varat izmantot Jūsu %{value} kontu, lai pieslēgtos." - mail_body_account_information: Jūsu konta informācija - mail_subject_account_activation_request: "%{value} konta aktivizācijas pieprasījums" - mail_body_account_activation_request: "Jauns lietotājs (%{value}) ir reģistrēts. Lietotāja konts gaida Jūsu apstiprinājumu:" - mail_subject_reminder: "%{count} uzdevums(i) sagaidāms(i) tuvākajās %{days} dienās" - mail_body_reminder: "%{count} uzdevums(i), kurš(i) ir nozīmēts(i) Jums, sagaidāms(i) tuvākajās %{days} dienās:" - mail_subject_wiki_content_added: "'%{id}' Wiki lapa pievienota" - mail_body_wiki_content_added: "The '%{id}' Wiki lapu pievienojis %{author}." - mail_subject_wiki_content_updated: "'%{id}' Wiki lapa atjaunota" - mail_body_wiki_content_updated: "The '%{id}' Wiki lapu atjaunojis %{author}." - - - field_name: Nosaukums - field_description: Apraksts - field_summary: Kopsavilkums - field_is_required: Nepieciešams - field_firstname: Vārds - field_lastname: Uzvārds - field_mail: "E-pasts" - field_filename: Datne - field_filesize: Izmērs - field_downloads: Lejupielādes - field_author: Autors - field_created_on: Izveidots - field_updated_on: Atjaunots - field_field_format: Formāts - field_is_for_all: Visiem projektiem - field_possible_values: Iespējamās vērtības - field_regexp: Regulārā izteiksme - field_min_length: Minimālais garums - field_max_length: Maksimālais garums - field_value: Vērtība - field_category: Kategorija - field_title: Nosaukums - field_project: Projekts - field_issue: Uzdevums - field_status: Statuss - field_notes: Piezīmes - field_is_closed: Uzdevums slēgts - field_is_default: Noklusētā vērtība - field_tracker: Trakeris - field_subject: Temats - field_due_date: Sagaidāmais datums - field_assigned_to: Piešķirts - field_priority: Prioritāte - field_fixed_version: Mērķa versija - field_user: Lietotājs - field_role: Loma - field_homepage: Vietne - field_is_public: Publisks - field_parent: Apakšprojekts projektam - field_is_in_roadmap: Ceļvedī parādītie uzdevumi - field_login: Pieslēgties - field_mail_notification: "E-pasta paziņojumi" - field_admin: Administrators - field_last_login_on: Pēdējo reizi pieslēdzies - field_language: Valoda - field_effective_date: Datums - field_password: Parole - field_new_password: Janā parole - field_password_confirmation: Paroles apstiprinājums - field_version: Versija - field_type: Tips - field_host: Hosts - field_port: Ports - field_account: Konts - field_base_dn: Base DN - field_attr_login: Pieslēgšanās atribūts - field_attr_firstname: Vārda atribūts - field_attr_lastname: Uzvārda atribūts - field_attr_mail: "E-pasta atribūts" - field_onthefly: "Lietotāja izveidošana on-the-fly" - field_start_date: Sākuma datums - field_done_ratio: "% padarīti" - field_auth_source: Pilnvarošanas režīms - field_hide_mail: "Paslēpt manu e-pasta adresi" - field_comments: Komentārs - field_url: URL - field_start_page: Sākuma lapa - field_subproject: Apakšprojekts - field_hours: Stundas - field_activity: Aktivitāte - field_spent_on: Datums - field_identifier: Identifikators - field_is_filter: Izmantots kā filtrs - field_issue_to: Saistīts uzdevums - field_delay: Kavējums - field_assignable: Uzdevums var tikt piesaistīts šai lomai - field_redirect_existing_links: Pāradresēt eksistējošās saites - field_estimated_hours: Paredzētais laiks - field_column_names: Kolonnas - field_time_zone: Laika zona - field_searchable: Meklējams - field_default_value: Noklusētā vērtība - field_comments_sorting: Rādīt komentārus - field_parent_title: Vecāka lapa - field_editable: Rediģējams - field_watcher: Vērotājs - field_identity_url: OpenID URL - field_content: Saturs - field_group_by: Grupēt rezultātus pēc - field_sharing: Koplietošana - - setting_app_title: Programmas nosaukums - setting_welcome_text: Sveiciena teksts - setting_default_language: Noklusētā valoda - setting_login_required: Nepieciešama pilnvarošana - setting_self_registration: Pašreģistrēšanās - setting_attachment_max_size: Pielikuma maksimālais izmērs - setting_issues_export_limit: Uzdevumu eksporta ierobežojums - setting_mail_from: "E-pasta adrese informācijas nosūtīšanai" - setting_bcc_recipients: "Saņēmēju adreses neparādīsies citu saņēmēju vēstulēs (bcc)" - setting_plain_text_mail: "Vēstule brīvā tekstā (bez HTML)" - setting_host_name: Hosta nosaukums un piekļuves ceļš - setting_text_formatting: Teksta formatēšana - setting_wiki_compression: Wiki vēstures saspiešana - setting_feeds_limit: Barotnes satura ierobežojums - setting_default_projects_public: Jaunie projekti noklusēti ir publiski pieejami - setting_autofetch_changesets: "Automātiski lietot jaunāko versiju, pieslēdzoties repozitorijam (Autofetch)" - setting_sys_api_enabled: Ieslēgt WS repozitoriju menedžmentam - setting_commit_ref_keywords: Norādes atslēgvārdi - setting_commit_fix_keywords: Fiksējošie atslēgvārdi - setting_autologin: Automātiskā pieslēgšanās - setting_date_format: Datuma formāts - setting_time_format: Laika formāts - setting_cross_project_issue_relations: "Atļaut starp-projektu uzdevumu relācijas" - setting_issue_list_default_columns: Noklusēti rādītās kolonnas uzdevumu sarakstā - setting_emails_footer: "E-pastu kājene" - setting_protocol: Protokols - setting_per_page_options: Objekti vienā lapā - setting_user_format: Lietotāju rādīšanas formāts - setting_activity_days_default: Dienus skaits aktivitāšu rādīšanai aktivitāšu sadaļā - setting_display_subprojects_issues: Rādīt apakšprojekta uzdevumus galvenajā projektā pēc noklusējuma - setting_enabled_scm: Lietot SCM - setting_mail_handler_body_delimiters: "Saīsināt pēc vienas no šim rindām" - setting_mail_handler_api_enabled: "Lietot WS ienākošajiem e-pastiem" - setting_mail_handler_api_key: API atslēga - setting_sequential_project_identifiers: Ģenerēt secīgus projektu identifikatorus - setting_gravatar_enabled: Izmantot Gravatar lietotāju ikonas - setting_gravatar_default: Noklusētais Gravatar attēls - setting_diff_max_lines_displayed: Maksimālais rādīto diff rindu skaits - setting_file_max_size_displayed: Maksimālais izmērs iekļautajiem teksta failiem - setting_repository_log_display_limit: Maksimālais žurnāla datnē rādīto revīziju skaits - setting_openid: Atļaut OpenID pieslēgšanos un reģistrēšanos - setting_password_min_length: Minimālais paroles garums - setting_new_project_user_role_id: Loma, kura tiek piešķirta ne-administratora lietotājam, kurš izveido projektu - setting_default_projects_modules: Noklusētie lietotie moduļi jaunam projektam - setting_issue_done_ratio: Aprēķināt uzdevuma izpildes koeficientu ar - setting_issue_done_ratio_issue_field: uzdevuma lauku - setting_issue_done_ratio_issue_status: uzdevuma statusu - setting_start_of_week: Sākt kalendāru ar - setting_rest_api_enabled: Lietot REST web-servisu - setting_cache_formatted_text: Kešot formatētu tekstu - - permission_add_project: Izveidot projektu - permission_add_subprojects: Izveidot apakšprojektu - permission_edit_project: Rediģēt projektu - permission_select_project_modules: Izvēlēties projekta moduļus - permission_manage_members: Pārvaldīt dalībniekus - permission_manage_project_activities: Pārvaldīt projekta aktivitātes - permission_manage_versions: Pārvaldīt versijas - permission_manage_categories: Pārvaldīt uzdevumu kategorijas - permission_view_issues: Apskatīt uzdevumus - permission_add_issues: Pievienot uzdevumus - permission_edit_issues: Rediģēt uzdevumus - permission_manage_issue_relations: Pārvaldīt uzdevumu relācijas - permission_add_issue_notes: Pievienot piezīmes - permission_edit_issue_notes: Rediģēt piezīmes - permission_edit_own_issue_notes: Rediģēt paša piezīmes - permission_delete_issues: Dzēst uzdevumus - permission_manage_public_queries: Pārvaldīt publiskos pieprasījumus - permission_save_queries: Saglabāt pieprasījumus - permission_view_gantt: Skatīt Ganta diagrammu - permission_view_calendar: Skatīt kalendāru - permission_view_issue_watchers: Skatīt vērotāju sarakstu - permission_add_issue_watchers: Pievienot vērotājus - permission_delete_issue_watchers: Dzēst vērotājus - permission_log_time: Piereģistrēt pavadīto laiku - permission_view_time_entries: Skatīt pavadīto laiku - permission_edit_time_entries: Rdiģēt laika reģistrus - permission_edit_own_time_entries: Rediģēt savus laika reģistrus - permission_manage_news: Pārvaldīt jaunumus - permission_comment_news: Komentēt jaunumus - permission_view_documents: Skatīt dokumentus - permission_manage_files: Pārvaldīt failus - permission_view_files: Skatīt failus - permission_manage_wiki: Pārvaldīt wiki - permission_rename_wiki_pages: Pārsaukt wiki lapas - permission_delete_wiki_pages: Dzēst wiki lapas - permission_view_wiki_pages: Skatīt wiki - permission_view_wiki_edits: Skatīt wiki vēsturi - permission_edit_wiki_pages: Rdiģēt wiki lapas - permission_delete_wiki_pages_attachments: Dzēst pielikumus - permission_protect_wiki_pages: Projekta wiki lapas - permission_manage_repository: Pārvaldīt repozitoriju - permission_browse_repository: Pārlūkot repozitoriju - permission_view_changesets: Skatīt izmaiņu kopumus - permission_commit_access: Atļaut piekļuvi - permission_manage_boards: Pārvaldīt ziņojumu dēļus - permission_view_messages: Skatīt ziņas - permission_add_messages: Publicēt ziņas - permission_edit_messages: Rediģēt ziņas - permission_edit_own_messages: Rediģēt savas ziņas - permission_delete_messages: Dzēst ziņas - permission_delete_own_messages: Dzēst savas ziņas - permission_export_wiki_pages: Eksportēt Wiki lapas - - project_module_issue_tracking: Uzdevumu uzskaite - project_module_time_tracking: Laika uzskaite - project_module_news: Jaunumi - project_module_documents: Dokumenti - project_module_files: Datnes - project_module_wiki: Wiki - project_module_repository: Repozitorijs - project_module_boards: Ziņojumu dēļi - - label_user: Lietotājs - label_user_plural: Lietotāji - label_user_new: Jauns lietotājs - label_user_anonymous: Anonīms - label_project: Projekts - label_project_new: Jauns projekts - label_project_plural: Projekti - label_x_projects: - zero: nav projektu - one: 1 projekts - other: "%{count} projekti" - label_project_all: Visi projekti - label_project_latest: Jaunākie projekti - label_issue: Uzdevums - label_issue_new: Jauns uzdevums - label_issue_plural: Uzdevumi - label_issue_view_all: Skatīt visus uzdevumus - label_issues_by: "Kārtot pēc %{value}" - label_issue_added: Uzdevums pievienots - label_issue_updated: Uzdevums atjaunots - label_document: Dokuments - label_document_new: Jauns dokuments - label_document_plural: Dokumenti - label_document_added: Dokuments pievienots - label_role: Loma - label_role_plural: Lomas - label_role_new: Jauna loma - label_role_and_permissions: Lomas un atļaujas - label_member: Dalībnieks - label_member_new: Jauns dalībnieks - label_member_plural: Dalībnieki - label_tracker: Trakeris - label_tracker_plural: Trakeri - label_tracker_new: Jauns trakeris - label_workflow: Darba gaita - label_issue_status: Uzdevuma statuss - label_issue_status_plural: Uzdevumu statusi - label_issue_status_new: Jauns statuss - label_issue_category: Uzdevuma kategorija - label_issue_category_plural: Uzdevumu kategorijas - label_issue_category_new: Jauna kategorija - label_custom_field: Pielāgojams lauks - label_custom_field_plural: Pielāgojami lauki - label_custom_field_new: Jauns pielāgojams lauks - label_enumerations: Uzskaitījumi - label_enumeration_new: Jauna vērtība - label_information: Informācija - label_information_plural: Informācija - label_register: Reģistrēties - label_login_with_open_id_option: vai pieslēgties ar OpenID - label_password_lost: Nozaudēta parole - label_home: Sākums - label_my_page: Mana lapa - label_my_account: Mans konts - label_my_projects: Mani projekti - label_administration: Administrācija - label_login: Pieslēgties - label_logout: Atslēgties - label_help: Palīdzība - label_reported_issues: Ziņotie uzdevumi - label_assigned_to_me_issues: Man piesaistītie uzdevumi - label_last_login: Pēdējā pieslēgšanās - label_registered_on: Reģistrējies - label_activity: Aktivitāte - label_overall_activity: Kopējās aktivitātes - label_user_activity: "Lietotāja %{value} aktivitātes" - label_new: Jauns - label_logged_as: Pieslēdzies kā - label_environment: Vide - label_authentication: Pilnvarošana - label_auth_source: Pilnvarošanas režīms - label_auth_source_new: Jauns pilnvarošanas režīms - label_auth_source_plural: Pilnvarošanas režīmi - label_subproject_plural: Apakšprojekti - label_subproject_new: Jauns apakšprojekts - label_and_its_subprojects: "%{value} un tā apakšprojekti" - label_min_max_length: Minimālais - Maksimālais garums - label_list: Saraksts - label_date: Datums - label_integer: Vesels skaitlis - label_float: Decimālskaitlis - label_boolean: Patiesuma vērtība - label_string: Teksts - label_text: Garš teksts - label_attribute: Atribūts - label_attribute_plural: Atribūti - label_no_data: Nav datu, ko parādīt - label_change_status: Mainīt statusu - label_history: Vēsture - label_attachment: Pielikums - label_attachment_new: Jauns pielikums - label_attachment_delete: Dzēst pielikumu - label_attachment_plural: Pielikumi - label_file_added: Lauks pievienots - label_report: Atskaite - label_report_plural: Atskaites - label_news: Ziņa - label_news_new: Pievienot ziņu - label_news_plural: Ziņas - label_news_latest: Jaunākās ziņas - label_news_view_all: Skatīt visas ziņas - label_news_added: Ziņas pievienotas - label_settings: Iestatījumi - label_overview: Pārskats - label_version: Versija - label_version_new: Jauna versija - label_version_plural: Versijas - label_close_versions: Aizvērt pabeigtās versijas - label_confirmation: Apstiprinājums - label_export_to: 'Pieejams arī:' - label_read: Lasīt... - label_public_projects: Publiskie projekti - label_open_issues: atvērts - label_open_issues_plural: atvērti - label_closed_issues: slēgts - label_closed_issues_plural: slēgti - label_x_open_issues_abbr: - zero: 0 atvērti - one: 1 atvērts - other: "%{count} atvērti" - label_x_closed_issues_abbr: - zero: 0 slēgti - one: 1 slēgts - other: "%{count} slēgti" - label_total: Kopā - label_permissions: Atļaujas - label_current_status: Pašreizējais statuss - label_new_statuses_allowed: Jauni statusi atļauti - label_all: visi - label_none: neviens - label_nobody: nekas - label_next: Nākošais - label_previous: Iepriekšējais - label_used_by: Izmanto - label_details: Detaļas - label_add_note: Pievienot piezīmi - label_calendar: Kalendārs - label_months_from: mēneši no - label_gantt: Ganta diagramma - label_internal: Iekšējais - label_last_changes: "pēdējās %{count} izmaiņas" - label_change_view_all: Skatīt visas izmaiņas - label_comment: Komentārs - label_comment_plural: Komentāri - label_x_comments: - zero: nav komentāru - one: 1 komentārs - other: "%{count} komentāri" - label_comment_add: Pievienot komentāru - label_comment_added: Komentārs pievienots - label_comment_delete: Dzēst komentārus - label_query: Pielāgots pieprasījums - label_query_plural: Pielāgoti pieprasījumi - label_query_new: Jauns pieprasījums - label_filter_add: Pievienot filtru - label_filter_plural: Filtri - label_equals: ir - label_not_equals: nav - label_in_less_than: ir mazāk kā - label_in_more_than: ir vairāk kā - label_greater_or_equal: '>=' - label_less_or_equal: '<=' - label_in: iekš - label_today: šodien - label_yesterday: vakar - label_this_week: šonedēļ - label_last_week: pagājušo šonedēļ - label_last_n_days: "pēdējās %{count} dienas" - label_this_month: šomēnes - label_last_month: pagājušo mēnes - label_this_year: šogad - label_date_range: Datumu apgabals - label_less_than_ago: mazāk kā dienas iepriekš - label_more_than_ago: vairāk kā dienas iepriekš - label_ago: dienas iepriekš - label_contains: satur - label_not_contains: nesatur - label_day_plural: dienas - label_repository: Repozitorijs - label_repository_plural: Repozitoriji - label_browse: Pārlūkot - label_branch: Zars - label_tag: Birka - label_revision: Revīzija - label_revision_plural: Revīzijas - label_revision_id: "Revīzija %{value}" - label_associated_revisions: Saistītās revīzijas - label_added: pievienots - label_modified: modificēts - label_copied: nokopēts - label_renamed: pārsaukts - label_deleted: dzēsts - label_latest_revision: Pēdējā revīzija - label_latest_revision_plural: Pēdējās revīzijas - label_view_revisions: Skatīt revīzijas - label_view_all_revisions: Skatīt visas revīzijas - label_max_size: Maksimālais izmērs - label_sort_highest: Pārvietot uz augšu - label_sort_higher: Pārvietot soli augšup - label_sort_lower: Pārvietot uz leju - label_sort_lowest: Pārvietot vienu soli uz leju - label_roadmap: Ceļvedis - label_roadmap_due_in: "Sagaidāms pēc %{value}" - label_roadmap_overdue: "nokavēts %{value}" - label_roadmap_no_issues: Šai versijai nav uzdevumu - label_search: Meklēt - label_result_plural: Rezultāti - label_all_words: Visi vārdi - label_wiki: Wiki - label_wiki_edit: Wiki labojums - label_wiki_edit_plural: Wiki labojumi - label_wiki_page: Wiki lapa - label_wiki_page_plural: Wiki lapas - label_index_by_title: Indeksēt pēc nosaukuma - label_index_by_date: Indeksēt pēc datuma - label_current_version: Tekošā versija - label_preview: Priekšskatījums - label_feed_plural: Barotnes - label_changes_details: Visu izmaiņu detaļas - label_issue_tracking: Uzdevumu uzskaite - label_spent_time: Pavadītais laiks - label_f_hour: "%{value} stunda" - label_f_hour_plural: "%{value} stundas" - label_time_tracking: Laika uzskaite - label_change_plural: Izmaiņas - label_statistics: Statistika - label_commits_per_month: Nodevumi mēnesī - label_commits_per_author: Nodevumi no autora - label_view_diff: Skatīt atšķirības - label_diff_inline: iekļauts - label_diff_side_by_side: blakus - label_options: Opcijas - label_copy_workflow_from: Kopēt darba plūsmu no - label_permissions_report: Atļauju atskaite - label_watched_issues: Vērotie uzdevumi - label_related_issues: Saistītie uzdevumi - label_applied_status: Piešķirtais statuss - label_loading: Lādējas... - label_relation_new: Jauna relācija - label_relation_delete: Dzēst relāciju - label_relates_to: saistīts ar - label_duplicates: Dublē uzdevumu - label_duplicated_by: Dublē uzdevums - label_blocks: Bloķē uzdevumu - label_blocked_by: Bloķē uzdevums - label_precedes: Pirms - label_follows: Seko pēc - label_stay_logged_in: Atcerēties mani - label_disabled: izslēgts - label_show_completed_versions: Rādīt pabeigtās versijas - label_me: es - label_board: Forums - label_board_new: Jauns forums - label_board_plural: Forumi - label_board_locked: Slēgts - label_board_sticky: Svarīgs - label_topic_plural: Tēmas - label_message_plural: Ziņas - label_message_last: Pēdējā ziņa - label_message_new: Jauna ziņa - label_message_posted: Ziņa pievienota - label_reply_plural: Atbildes - label_send_information: Sūtīt konta informāciju lietotājam - label_year: Gads - label_month: Mēnesis - label_week: Nedēļa - label_date_from: No - label_date_to: Kam - label_language_based: Izmantot lietotāja valodu - label_sort_by: "Kārtot pēc %{value}" - label_send_test_email: "Sūtīt testa e-pastu" - label_feeds_access_key: Atom piekļuves atslēga - label_missing_feeds_access_key: Trūkst Atom piekļuves atslēgas - label_feeds_access_key_created_on: "Atom piekļuves atslēga izveidota pirms %{value}" - label_module_plural: Moduļi - label_added_time_by: "Pievienojis %{author} pirms %{age}" - label_updated_time_by: "Atjaunojis %{author} pirms %{age}" - label_updated_time: "Atjaunots pirms %{value}" - label_jump_to_a_project: Pāriet uz projektu... - label_file_plural: Datnes - label_changeset_plural: Izmaiņu kopumi - label_default_columns: Noklusētās kolonnas - label_no_change_option: (Nav izmaiņu) - label_bulk_edit_selected_issues: Labot visus izvēlētos uzdevumus - label_theme: Tēma - label_default: Noklusēts - label_search_titles_only: Meklēt tikai nosaukumos - label_user_mail_option_all: "Par visiem notikumiem visos manos projektos" - label_user_mail_option_selected: "Par visiem notikumiem tikai izvēlētajos projektos..." - label_user_mail_no_self_notified: "Neziņot man par izmaiņām, kuras veicu es pats" - label_registration_activation_by_email: "konta aktivizācija caur e-pastu" - label_registration_manual_activation: manuālā konta aktivizācija - label_registration_automatic_activation: automātiskā konta aktivizācija - label_display_per_page: "Rādīt vienā lapā: %{value}" - label_age: Vecums - label_change_properties: Mainīt atribūtus - label_general: Galvenais - label_scm: SCM - label_plugins: Spraudņi - label_ldap_authentication: LDAP pilnvarošana - label_downloads_abbr: L-lād. - label_optional_description: "Apraksts (neobligāts)" - label_add_another_file: Pievienot citu failu - label_preferences: Priekšrocības - label_chronological_order: Hronoloģiskā kārtībā - label_reverse_chronological_order: Apgriezti hronoloģiskā kārtībā - label_incoming_emails: "Ienākošie e-pasti" - label_generate_key: Ģenerēt atslēgu - label_issue_watchers: Vērotāji - label_example: Piemērs - label_display: Rādīt - label_sort: Kārtot - label_ascending: Augoši - label_descending: Dilstoši - label_date_from_to: "No %{start} līdz %{end}" - label_wiki_content_added: Wiki lapa pievienota - label_wiki_content_updated: Wiki lapa atjaunota - label_group: Grupa - label_group_plural: Grupas - label_group_new: Jauna grupa - label_time_entry_plural: Pavadītais laiks - label_version_sharing_none: Nav koplietošanai - label_version_sharing_descendants: Ar apakšprojektiem - label_version_sharing_hierarchy: Ar projektu hierarhiju - label_version_sharing_tree: Ar projekta koku - label_version_sharing_system: Ar visiem projektiem - label_update_issue_done_ratios: Atjaunot uzdevuma veikuma attiecību - label_copy_source: Avots - label_copy_target: Mērķis - label_copy_same_as_target: Tāds pats kā mērķis - label_display_used_statuses_only: "Rādīt tikai statusus, ko lieto šis trakeris" - label_api_access_key: API pieejas atslēga - label_missing_api_access_key: Trūkst API pieejas atslēga - label_api_access_key_created_on: "API pieejas atslēga izveidota pirms %{value}" - - button_login: Pieslēgties - button_submit: Nosūtīt - button_save: Saglabāt - button_check_all: Atzīmēt visu - button_uncheck_all: Noņemt visus atzīmējumus - button_delete: Dzēst - button_create: Izveidot - button_create_and_continue: Izveidot un turpināt - button_test: Testēt - button_edit: Labot - button_add: Pievienot - button_change: Mainīt - button_apply: Apstiprināt - button_clear: Notīrīt - button_lock: Slēgt - button_unlock: Atslēgt - button_download: Lejuplādēt - button_list: Saraksts - button_view: Skats - button_move: Pārvietot - button_move_and_follow: Pārvietot un sekot - button_back: Atpakaļ - button_cancel: Atcelt - button_activate: Aktivizēt - button_sort: Kārtot - button_log_time: Reģistrēt laiku - button_rollback: Atjaunot uz šo versiju - button_watch: Vērot - button_unwatch: Nevērot - button_reply: Atbildēt - button_archive: Arhivēt - button_unarchive: Atarhivēt - button_reset: Atiestatīt - button_rename: Pārsaukt - button_change_password: Mainīt paroli - button_copy: Kopēt - button_copy_and_follow: Kopēt un sekot - button_annotate: Pierakstīt paskaidrojumu - button_update: Atjaunot - button_configure: Konfigurēt - button_quote: Citāts - button_show: Rādīt - - status_active: aktīvs - status_registered: reģistrēts - status_locked: slēgts - - version_status_open: atvērta - version_status_locked: slēgta - version_status_closed: aizvērta - - field_active: Aktīvs - - text_select_mail_notifications: "Izvēlieties darbības, par kurām vēlaties saņemt ziņojumus e-pastā" - text_regexp_info: "piem. ^[A-Z0-9]+$" - text_min_max_length_info: "0 nozīmē, ka nav ierobežojumu" - text_project_destroy_confirmation: "Vai tiešām vēlaties dzēst šo projektu un ar to saistītos datus?" - text_subprojects_destroy_warning: "Tā apakšprojekts(i): %{value} arī tiks dzēsts(i)." - text_workflow_edit: Lai labotu darba plūsmu, izvēlieties lomu un trakeri - text_are_you_sure: "Vai esat pārliecināts?" - text_journal_changed: "%{label} mainīts no %{old} uz %{new}" - text_journal_set_to: "%{label} iestatīts uz %{value}" - text_journal_deleted: "%{label} dzēsts (%{old})" - text_journal_added: "%{label} %{value} pievienots" - text_tip_issue_begin_day: uzdevums sākas šodien - text_tip_issue_end_day: uzdevums beidzas šodien - text_tip_issue_begin_end_day: uzdevums sākas un beidzas šodien - text_caracters_maximum: "%{count} simboli maksimāli." - text_caracters_minimum: "Jābūt vismaz %{count} simbolu garumā." - text_length_between: "Garums starp %{min} un %{max} simboliem." - text_tracker_no_workflow: Šim trakerim nav definēta darba plūsma - text_unallowed_characters: Neatļauti simboli - text_comma_separated: "Atļautas vairākas vērtības (atdalīt ar komatu)." - text_line_separated: "Atļautas vairākas vērtības (rakstīt katru savā rindā)." - text_issues_ref_in_commit_messages: "Izmaiņu salīdzināšana izejot no ziņojumiem" - text_issue_added: "Uzdevumu %{id} pievienojis %{author}." - text_issue_updated: "Uzdevumu %{id} atjaunojis %{author}." - text_wiki_destroy_confirmation: "Vai esat drošs, ka vēlaties dzēst šo wiki un visu tās saturu?" - text_issue_category_destroy_question: "Daži uzdevumi (%{count}) ir nozīmēti šai kategorijai. Ko Jūs vēlaties darīt?" - text_issue_category_destroy_assignments: Dzēst kategoriju nozīmējumus - text_issue_category_reassign_to: Nozīmēt uzdevumus šai kategorijai - text_user_mail_option: "No neizvēlētajiem projektiem Jūs saņemsiet ziņojumus e-pastā tikai par notikumiem, kuriem Jūs sekojat vai kuros esat iesaistīts." - text_no_configuration_data: "Lomas, trakeri, uzdevumu statusi un darba plūsmas vēl nav konfigurētas.\nĻoti ieteicams ielādēt noklusēto konfigurāciju. Pēc ielādēšanas to būs iespējams modificēt." - text_load_default_configuration: Ielādēt noklusēto konfigurāciju - text_status_changed_by_changeset: "Apstiprināts izmaiņu kopumā %{value}." - text_issues_destroy_confirmation: 'Vai tiešām vēlaties dzēst izvēlēto uzdevumu(us)?' - text_select_project_modules: 'Izvēlieties moduļus šim projektam:' - text_default_administrator_account_changed: Noklusētais administratora konts mainīts - text_file_repository_writable: Pielikumu direktorijā atļauts rakstīt - text_plugin_assets_writable: Spraudņu kataloga direktorijā atļauts rakstīt - text_minimagick_available: "MiniMagick pieejams (neobligāts)" - text_destroy_time_entries_question: "%{hours} stundas tika ziņotas par uzdevumu, ko vēlaties dzēst. Ko darīt?" - text_destroy_time_entries: Dzēst ziņotās stundas - text_assign_time_entries_to_project: Piešķirt ziņotās stundas projektam - text_reassign_time_entries: 'Piešķirt ziņotās stundas uzdevumam:' - text_user_wrote: "%{value} rakstīja:" - text_user_wrote_in: "%{value} rakstīja (%{link}):" - text_enumeration_destroy_question: "%{count} objekti ir piešķirti šai vērtībai." - text_enumeration_category_reassign_to: 'Piešķirt tos šai vērtībai:' - text_email_delivery_not_configured: "E-pastu nosūtīšana nav konfigurēta, un ziņojumi ir izslēgti.\nKonfigurējiet savu SMTP serveri datnē config/configuration.yml un pārstartējiet lietotni." - text_repository_usernames_mapping: "Izvēlieties vai atjaunojiet Redmine lietotāju, saistītu ar katru lietotājvārdu, kas atrodams repozitorija žurnālā.\nLietotāji ar to pašu Redmine un repozitorija lietotājvārdu būs saistīti automātiski." - text_diff_truncated: '... Šis diff tika nošķelts, jo tas pārsniedz maksimālo izmēru, ko var parādīt.' - text_custom_field_possible_values_info: 'Katra vērtības savā rindā' - text_wiki_page_destroy_question: "Šij lapai ir %{descendants} apakšlapa(as) un pēcnācēji. Ko darīt?" - text_wiki_page_nullify_children: "Paturēt apakšlapas kā pamatlapas" - text_wiki_page_destroy_children: "Dzēst apakšlapas un visus pēcnācējus" - text_wiki_page_reassign_children: "Piešķirt apakšlapas šai lapai" - text_own_membership_delete_confirmation: "Jūs tūlīt dzēsīsiet dažas vai visas atļaujas, un Jums pēc tam var nebūt atļauja labot šo projektu.\nVai turpināt?" - - default_role_manager: Menedžeris - default_role_developer: Izstrādātājs - default_role_reporter: Ziņotājs - default_tracker_bug: Kļūda - default_tracker_feature: Iezīme - default_tracker_support: Atbalsts - default_issue_status_new: Jauns - default_issue_status_in_progress: Attīstībā - default_issue_status_resolved: Atrisināts - default_issue_status_feedback: Atsauksmes - default_issue_status_closed: Slēgts - default_issue_status_rejected: Noraidīts - default_doc_category_user: Lietotāja dokumentācija - default_doc_category_tech: Tehniskā dokumentācija - default_priority_low: Zema - default_priority_normal: Normāla - default_priority_high: Augsta - default_priority_urgent: Steidzama - default_priority_immediate: Tūlītēja - default_activity_design: Dizains - default_activity_development: Izstrādāšana - - enumeration_issue_priorities: Uzdevumu prioritātes - enumeration_doc_categories: Dokumentu kategorijas - enumeration_activities: Aktivitātes (laika uzskaite) - enumeration_system_activity: Sistēmas aktivitātes - - error_can_not_delete_custom_field: Unable to delete custom field - permission_manage_subtasks: Manage subtasks - label_profile: Profile - error_unable_to_connect: Unable to connect (%{value}) - error_can_not_remove_role: This role is in use and can not be deleted. - field_parent_issue: Parent task - error_unable_delete_issue_status: Unable to delete issue status (%{value}) - label_subtask_plural: Apakšuzdevumi - error_can_not_delete_tracker: This tracker contains issues and cannot be deleted. - label_project_copy_notifications: Send email notifications during the project copy - field_principal: Principal - notice_failed_to_save_members: "Failed to save member(s): %{errors}." - text_zoom_out: Zoom out - text_zoom_in: Zoom in - notice_unable_delete_time_entry: Unable to delete time log entry. - label_overall_spent_time: Overall spent time - field_time_entries: Log time - project_module_gantt: Gantt - project_module_calendar: Calendar - button_edit_associated_wikipage: "Edit associated Wiki page: %{page_title}" - field_text: Text field - setting_default_notification_option: Default notification option - label_user_mail_option_only_my_events: Tikai par uzdevumiem, kurus novēroju vai kuros esmu iesaistījies - label_user_mail_option_none: Ne par ko - field_member_of_group: Assignee's group - field_assigned_to_role: Assignee's role - notice_not_authorized_archived_project: The project you're trying to access has been archived. - label_principal_search: "Search for user or group:" - label_user_search: "Search for user:" - field_visible: Visible - setting_commit_logtime_activity_id: Activity for logged time - text_time_logged_by_changeset: Applied in changeset %{value}. - setting_commit_logtime_enabled: Enable time logging - notice_gantt_chart_truncated: The chart was truncated because it exceeds the maximum number of items that can be displayed (%{max}) - setting_gantt_items_limit: Maximum number of items displayed on the gantt chart - field_warn_on_leaving_unsaved: Warn me when leaving a page with unsaved text - text_warn_on_leaving_unsaved: The current page contains unsaved text that will be lost if you leave this page. - label_my_queries: Mani uzdevumu filtri - text_journal_changed_no_detail: "%{label} updated" - label_news_comment_added: Comment added to a news - button_expand_all: Izvērst visu - button_collapse_all: Savērst visu - label_additional_workflow_transitions_for_assignee: Additional transitions allowed when the user is the assignee - label_additional_workflow_transitions_for_author: Additional transitions allowed when the user is the author - label_bulk_edit_selected_time_entries: Bulk edit selected time entries - text_time_entries_destroy_confirmation: Are you sure you want to delete the selected time entr(y/ies)? - label_role_anonymous: Anonymous - label_role_non_member: Non member - label_issue_note_added: Note added - label_issue_status_updated: Status updated - label_issue_priority_updated: Priority updated - label_issues_visibility_own: Issues created by or assigned to the user - field_issues_visibility: Uzdevumu redzamība - label_issues_visibility_all: Visi uzdevumi - permission_set_own_issues_private: Set own issues public or private - field_is_private: Private - permission_set_issues_private: Set issues public or private - label_issues_visibility_public: All non private issues - text_issues_destroy_descendants_confirmation: This will also delete %{count} subtask(s). - field_commit_logs_encoding: Nodošanas ziņojumu kodējums - field_scm_path_encoding: Ceļa kodējums - text_scm_path_encoding_note: "Noklusējuma: UTF-8" - field_path_to_repository: Repozitorija ceļš - field_root_directory: Root directory - field_cvs_module: Module - field_cvsroot: CVSROOT - text_mercurial_repository_note: Local repository (e.g. /hgrepo, c:\hgrepo) - text_scm_command: Command - text_scm_command_version: Version - label_git_report_last_commit: Report last commit for files and directories - notice_issue_successful_create: Issue %{id} created. - label_between: between - setting_issue_group_assignment: Allow issue assignment to groups - label_diff: diff - text_git_repository_note: Repository is bare and local (e.g. /gitrepo, c:\gitrepo) - description_query_sort_criteria_direction: Sort direction - description_project_scope: Search scope - description_filter: Filter - description_user_mail_notification: Mail notification settings - description_message_content: Message content - description_available_columns: Available Columns - description_issue_category_reassign: Choose issue category - description_search: Searchfield - description_notes: Notes - description_choose_project: Projects - description_query_sort_criteria_attribute: Sort attribute - description_wiki_subpages_reassign: Choose new parent page - description_selected_columns: Selected Columns - label_parent_revision: Parent - label_child_revision: Child - error_scm_annotate_big_text_file: The entry cannot be annotated, as it exceeds the maximum text file size. - setting_default_issue_start_date_to_creation_date: Use current date as start date for new issues - button_edit_section: Edit this section - setting_repositories_encodings: Attachments and repositories encodings - description_all_columns: All Columns - button_export: Export - label_export_options: "%{export_format} export options" - error_attachment_too_big: This file cannot be uploaded because it exceeds the maximum allowed file size (%{max_size}) - notice_failed_to_save_time_entries: "Failed to save %{count} time entrie(s) on %{total} selected: %{ids}." - label_x_issues: - zero: 0 uzdevums - one: 1 uzdevums - other: "%{count} uzdevumi" - label_repository_new: New repository - field_repository_is_default: Main repository - label_copy_attachments: Copy attachments - label_item_position: "%{position}/%{count}" - label_completed_versions: Completed versions - text_project_identifier_info: Only lower case letters (a-z), numbers, dashes and underscores are allowed.
    Once saved, the identifier cannot be changed. - field_multiple: Multiple values - setting_commit_cross_project_ref: Allow issues of all the other projects to be referenced and fixed - text_issue_conflict_resolution_add_notes: Add my notes and discard my other changes - text_issue_conflict_resolution_overwrite: Apply my changes anyway (previous notes will be kept but some changes may be overwritten) - notice_issue_update_conflict: The issue has been updated by an other user while you were editing it. - text_issue_conflict_resolution_cancel: Discard all my changes and redisplay %{link} - permission_manage_related_issues: Manage related issues - field_auth_source_ldap_filter: LDAP filter - label_search_for_watchers: Search for watchers to add - notice_account_deleted: Your account has been permanently deleted. - setting_unsubscribe: Allow users to delete their own account - button_delete_my_account: Delete my account - text_account_destroy_confirmation: |- - Are you sure you want to proceed? - Your account will be permanently deleted, with no way to reactivate it. - error_session_expired: Your session has expired. Please login again. - text_session_expiration_settings: "Warning: changing these settings may expire the current sessions including yours." - setting_session_lifetime: Session maximum lifetime - setting_session_timeout: Session inactivity timeout - label_session_expiration: Session expiration - permission_close_project: Close / reopen the project - button_close: Aizvērt - button_reopen: Reopen - project_status_active: active - project_status_closed: closed - project_status_archived: archived - text_project_closed: This project is closed and read-only. - notice_user_successful_create: User %{id} created. - field_core_fields: Standard fields - field_timeout: Timeout (in seconds) - setting_thumbnails_enabled: Display attachment thumbnails - setting_thumbnails_size: Thumbnails size (in pixels) - label_status_transitions: Status transitions - label_fields_permissions: Fields permissions - label_readonly: Read-only - label_required: Required - text_repository_identifier_info: Only lower case letters (a-z), numbers, dashes and underscores are allowed.
    Once saved, the identifier cannot be changed. - field_board_parent: Parent forum - label_attribute_of_project: Project's %{name} - label_attribute_of_author: Author's %{name} - label_attribute_of_assigned_to: Assignee's %{name} - label_attribute_of_fixed_version: Target version's %{name} - label_copy_subtasks: Kopēt apakšuzdevumus - label_copied_to: Kopēts uz - label_copied_from: Kopēts no - label_any_issues_in_project: any issues in project - label_any_issues_not_in_project: any issues not in project - field_private_notes: Private notes - permission_view_private_notes: View private notes - permission_set_notes_private: Set notes as private - label_no_issues_in_project: no issues in project - label_any: visi - label_last_n_weeks: last %{count} weeks - setting_cross_project_subtasks: Allow cross-project subtasks - label_cross_project_descendants: Ar apakšprojektiem - label_cross_project_tree: Ar projekta koku - label_cross_project_hierarchy: Ar projektu hierarhiju - label_cross_project_system: Ar visiem projektiem - button_hide: Hide - setting_non_working_week_days: Non-working days - label_in_the_next_days: in the next - label_in_the_past_days: in the past - label_attribute_of_user: User's %{name} - text_turning_multiple_off: If you disable multiple values, multiple values will be - removed in order to preserve only one value per item. - label_attribute_of_issue: Issue's %{name} - permission_add_documents: Add documents - permission_edit_documents: Edit documents - permission_delete_documents: Delete documents - label_gantt_progress_line: Progress line - setting_jsonp_enabled: Enable JSONP support - field_inherit_members: Inherit members - field_closed_on: Closed - field_generate_password: Generate password - setting_default_projects_tracker_ids: Default trackers for new projects - label_total_time: Kopā - text_scm_config: You can configure your SCM commands in config/configuration.yml. Please restart the application after editing it. - text_scm_command_not_available: SCM command is not available. Please check settings on the administration panel. - setting_emails_header: Email header - notice_account_not_activated_yet: You haven't activated your account yet. If you want - to receive a new activation email, please click this link. - notice_account_locked: Your account is locked. - label_hidden: Hidden - label_visibility_private: to me only - label_visibility_roles: to these roles only - label_visibility_public: to any users - field_must_change_passwd: Must change password at next logon - notice_new_password_must_be_different: The new password must be different from the - current password - setting_mail_handler_excluded_filenames: Exclude attachments by name - text_convert_available: ImageMagick convert available (optional) - label_link: Link - label_only: only - label_drop_down_list: drop-down list - label_checkboxes: checkboxes - label_link_values_to: Link values to URL - setting_force_default_language_for_anonymous: Force default language for anonymous - users - setting_force_default_language_for_loggedin: Force default language for logged-in - users - label_custom_field_select_type: Select the type of object to which the custom field - is to be attached - label_issue_assigned_to_updated: Assignee updated - label_check_for_updates: Check for updates - label_latest_compatible_version: Latest compatible version - label_unknown_plugin: Unknown plugin - label_radio_buttons: radio buttons - label_group_anonymous: Anonymous users - label_group_non_member: Non member users - label_add_projects: Add projects - field_default_status: Default status - text_subversion_repository_note: 'Examples: file:///, http://, https://, svn://, svn+[tunnelscheme]://' - field_users_visibility: Users visibility - label_users_visibility_all: All active users - label_users_visibility_members_of_visible_projects: Members of visible projects - label_edit_attachments: Edit attached files - setting_link_copied_issue: Link issues on copy - label_link_copied_issue: Link copied issue - label_ask: Ask - label_search_attachments_yes: Search attachment filenames and descriptions - label_search_attachments_no: Do not search attachments - label_search_attachments_only: Search attachments only - label_search_open_issues_only: Open issues only - field_address: "E-pasts" - setting_max_additional_emails: Maximum number of additional email addresses - label_email_address_plural: Emails - label_email_address_add: Add email address - label_enable_notifications: Enable notifications - label_disable_notifications: Disable notifications - setting_search_results_per_page: Search results per page - label_blank_value: blank - permission_copy_issues: Copy issues - error_password_expired: Your password has expired or the administrator requires you - to change it. - field_time_entries_visibility: Time logs visibility - setting_password_max_age: Require password change after - label_parent_task_attributes: Parent tasks attributes - label_parent_task_attributes_derived: Calculated from subtasks - label_parent_task_attributes_independent: Independent of subtasks - label_time_entries_visibility_all: All time entries - label_time_entries_visibility_own: Time entries created by the user - label_member_management: Member management - label_member_management_all_roles: All roles - label_member_management_selected_roles_only: Only these roles - label_password_required: Confirm your password to continue - label_total_spent_time: Overall spent time - notice_import_finished: "%{count} items have been imported" - notice_import_finished_with_errors: "%{count} out of %{total} items could not be imported" - error_invalid_file_encoding: The file is not a valid %{encoding} encoded file - error_invalid_csv_file_or_settings: The file is not a CSV file or does not match the - settings below - error_can_not_read_import_file: An error occurred while reading the file to import - permission_import_issues: Import issues - label_import_issues: Import issues - label_select_file_to_import: Select the file to import - label_fields_separator: Field separator - label_fields_wrapper: Field wrapper - label_encoding: Encoding - label_comma_char: Comma - label_semi_colon_char: Semicolon - label_quote_char: Quote - label_double_quote_char: Double quote - label_fields_mapping: Fields mapping - label_file_content_preview: File content preview - label_create_missing_values: Create missing values - button_import: Import - field_total_estimated_hours: Total estimated time - label_api: API - label_total_plural: Totals - label_assigned_issues: Assigned issues - label_field_format_enumeration: Key/value list - label_f_hour_short: '%{value} h' - field_default_version: Default version - error_attachment_extension_not_allowed: Attachment extension %{extension} is not allowed - setting_attachment_extensions_allowed: Allowed extensions - setting_attachment_extensions_denied: Disallowed extensions - label_any_open_issues: any open issues - label_no_open_issues: no open issues - label_default_values_for_new_users: Default values for new users - error_ldap_bind_credentials: Invalid LDAP Account/Password - setting_sys_api_key: API atslēga - setting_lost_password: Nozaudēta parole - mail_subject_security_notification: Security notification - mail_body_security_notification_change: ! '%{field} was changed.' - mail_body_security_notification_change_to: ! '%{field} was changed to %{value}.' - mail_body_security_notification_add: ! '%{field} %{value} was added.' - mail_body_security_notification_remove: ! '%{field} %{value} was removed.' - mail_body_security_notification_notify_enabled: Email address %{value} now receives - notifications. - mail_body_security_notification_notify_disabled: Email address %{value} no longer - receives notifications. - mail_body_settings_updated: ! 'The following settings were changed:' - field_remote_ip: IP address - label_wiki_page_new: New wiki page - label_relations: Relations - button_filter: Filter - mail_body_password_updated: Your password has been changed. - label_no_preview: No preview available - error_no_tracker_allowed_for_new_issue_in_project: The project doesn't have any trackers - for which you can create an issue - label_tracker_all: All trackers - label_new_project_issue_tab_enabled: Display the "New issue" tab - setting_new_item_menu_tab: Project menu tab for creating new objects - label_new_object_tab_enabled: Display the "+" drop-down - error_no_projects_with_tracker_allowed_for_new_issue: There are no projects with trackers - for which you can create an issue - field_textarea_font: Font used for text areas - label_font_default: Default font - label_font_monospace: Monospaced font - label_font_proportional: Proportional font - setting_timespan_format: Time span format - label_table_of_contents: Table of contents - setting_commit_logs_formatting: Apply text formatting to commit messages - setting_mail_handler_enable_regex: Enable regular expressions - error_move_of_child_not_possible: 'Subtask %{child} could not be moved to the new - project: %{errors}' - error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted: Spent time cannot - be reassigned to an issue that is about to be deleted - setting_timelog_required_fields: Required fields for time logs - label_attribute_of_object: '%{object_name}''s %{name}' - label_user_mail_option_only_assigned: Only for things I watch or I am assigned to - label_user_mail_option_only_owner: Only for things I watch or I am the owner of - warning_fields_cleared_on_bulk_edit: Changes will result in the automatic deletion - of values from one or more fields on the selected objects - field_updated_by: Updated by - field_last_updated_by: Last updated by - field_full_width_layout: Full width layout - label_last_notes: Last notes - field_digest: Checksum - field_default_assigned_to: Default assignee - setting_show_custom_fields_on_registration: Show custom fields on registration - permission_view_news: View news - label_no_preview_alternative_html: No preview available. %{link} the file instead. - label_no_preview_download: Download - setting_close_duplicate_issues: Close duplicate issues automatically - error_exceeds_maximum_hours_per_day: Cannot log more than %{max_hours} hours on the - same day (%{logged_hours} hours have already been logged) - setting_time_entry_list_defaults: Timelog list defaults - setting_timelog_accept_0_hours: Accept time logs with 0 hours - setting_timelog_max_hours_per_day: Maximum hours that can be logged per day and user - label_x_revisions: "%{count} revisions" - error_can_not_delete_auth_source: This authentication mode is in use and cannot be - deleted. - button_actions: Actions - mail_body_lost_password_validity: Please be aware that you may change the password - only once using this link. - text_login_required_html: When not requiring authentication, public projects and their - contents are openly available on the network. You can edit - the applicable permissions. - label_login_required_yes: 'Yes' - label_login_required_no: No, allow anonymous access to public projects - text_project_is_public_non_member: Public projects and their contents are available - to all logged-in users. - text_project_is_public_anonymous: Public projects and their contents are openly available - on the network. - label_version_and_files: Versions (%{count}) and Files - label_ldap: LDAP - label_ldaps_verify_none: LDAPS (without certificate check) - label_ldaps_verify_peer: LDAPS - label_ldaps_warning: It is recommended to use an encrypted LDAPS connection with certificate - check to prevent any manipulation during the authentication process. - label_nothing_to_preview: Nothing to preview - error_token_expired: This password recovery link has expired, please try again. - error_spent_on_future_date: Cannot log time on a future date - setting_timelog_accept_future_dates: Accept time logs on future dates - label_delete_link_to_subtask: Dzēst relāciju - error_not_allowed_to_log_time_for_other_users: You are not allowed to log time - for other users - permission_log_time_for_other_users: Log spent time for other users - label_tomorrow: tomorrow - label_next_week: next week - label_next_month: next month - text_role_no_workflow: No workflow defined for this role - text_status_no_workflow: No tracker uses this status in the workflows - setting_mail_handler_preferred_body_part: Preferred part of multipart (HTML) emails - setting_show_status_changes_in_mail_subject: Show status changes in issue mail notifications - subject - label_inherited_from_parent_project: Inherited from parent project - label_inherited_from_group: Inherited from group %{name} - label_trackers_description: Trackers description - label_open_trackers_description: View all trackers description - label_preferred_body_part_text: Text - label_preferred_body_part_html: HTML (experimental) - field_parent_issue_subject: Parent task subject - permission_edit_own_issues: Edit own issues - text_select_apply_tracker: Select tracker - label_updated_issues: Updated issues - text_avatar_server_config_html: The current avatar server is %{url}. - You can configure it in config/configuration.yml. - setting_gantt_months_limit: Maximum number of months displayed on the gantt chart - permission_import_time_entries: Import time entries - label_import_notifications: Send email notifications during the import - text_gs_available: ImageMagick PDF support available (optional) - field_recently_used_projects: Number of recently used projects in jump box - label_optgroup_bookmarks: Bookmarks - label_optgroup_others: Other projects - label_optgroup_recents: Recently used - button_project_bookmark: Add bookmark - button_project_bookmark_delete: Remove bookmark - field_history_default_tab: Issue's history default tab - label_issue_history_properties: Property changes - label_issue_history_notes: Notes - label_last_tab_visited: Last visited tab - field_unique_id: Unique ID - text_no_subject: no subject - setting_password_required_char_classes: Required character classes for passwords - label_password_char_class_uppercase: uppercase letters - label_password_char_class_lowercase: lowercase letters - label_password_char_class_digits: digits - label_password_char_class_special_chars: special characters - text_characters_must_contain: Must contain %{character_classes}. - label_starts_with: starts with - label_ends_with: ends with - label_issue_fixed_version_updated: Target version updated - setting_project_list_defaults: Projects list defaults - label_display_type: Display results as - label_display_type_list: List - label_display_type_board: Board - label_my_bookmarks: My bookmarks - label_import_time_entries: Import time entries diff --git a/config/locales/mk.yml b/config/locales/mk.yml deleted file mode 100644 index 05df52d..0000000 --- a/config/locales/mk.yml +++ /dev/null @@ -1,1315 +0,0 @@ -mk: - # Text direction: Left-to-Right (ltr) or Right-to-Left (rtl) - direction: ltr - date: - formats: - # Use the strftime parameters for formats. - # When no format has been given, it uses default. - # You can provide other formats here if you like! - default: "%d/%m/%Y" - short: "%d %b" - long: "%d %B, %Y" - - day_names: [недела, понеделник, вторник, среда, четврток, петок, сабота] - abbr_day_names: [нед, пон, вто, сре, чет, пет, саб] - - # Don't forget the nil at the beginning; there's no such thing as a 0th month - month_names: [~, јануари, февруари, март, април, мај, јуни, јули, август, септември, октомври, ноември, декември] - abbr_month_names: [~, јан, фев, мар, апр, мај, јун, јул, авг, сеп, окт, ное, дек] - # Used in date_select and datime_select. - order: - - :day - - :month - - :year - - time: - formats: - default: "%d/%m/%Y %H:%M" - time: "%H:%M" - short: "%d %b %H:%M" - long: "%d %B, %Y %H:%M" - am: "предпладне" - pm: "попладне" - - datetime: - distance_in_words: - half_a_minute: "пола минута" - less_than_x_seconds: - one: "помалку од 1 секунда" - other: "помалку од %{count} секунди" - x_seconds: - one: "1 секунда" - other: "%{count} секунди" - less_than_x_minutes: - one: "помалку од 1 минута" - other: "помалку од %{count} минути" - x_minutes: - one: "1 минута" - other: "%{count} минути" - about_x_hours: - one: "околу 1 час" - other: "околу %{count} часа" - x_hours: - one: "1 час" - other: "%{count} часа" - x_days: - one: "1 ден" - other: "%{count} дена" - about_x_months: - one: "околу 1 месец" - other: "околу %{count} месеци" - x_months: - one: "1 месец" - other: "%{count} месеци" - about_x_years: - one: "околу 1 година" - other: "околу %{count} години" - over_x_years: - one: "преку 1 година" - other: "преку %{count} години" - almost_x_years: - one: "скоро 1 година" - other: "скоро %{count} години" - - number: - # Default format for numbers - format: - separator: "." - delimiter: "" - precision: 3 - human: - format: - delimiter: "" - precision: 3 - storage_units: - format: "%n %u" - units: - byte: - one: "Byte" - other: "Bytes" - kb: "KB" - mb: "MB" - gb: "GB" - tb: "TB" - - -# Used in array.to_sentence. - support: - array: - sentence_connector: "и" - skip_last_comma: false - - activerecord: - errors: - template: - header: - one: "1 error prohibited this %{model} from being saved" - other: "%{count} errors prohibited this %{model} from being saved" - messages: - inclusion: "не е вклучено во листата" - exclusion: "е резервирано" - invalid: "е невалидно" - confirmation: "не се совпаѓа со потврдата" - accepted: "мора да е прифатено" - empty: "неможе да е празно" - blank: "неможе да е празно" - too_long: "е предолго (макс. %{count} знаци)" - too_short: "е прекратко (мин. %{count} знаци)" - wrong_length: "е погрешна должина (треба да е %{count} знаци)" - taken: "е веќе зафатено" - not_a_number: "не е број" - not_a_date: "не е валидна дата" - greater_than: "мора да е поголемо од %{count}" - greater_than_or_equal_to: "мора да е поголемо или еднакво на %{count}" - equal_to: "мора да е еднакво на %{count}" - less_than: "мора да е помало од %{count}" - less_than_or_equal_to: "мора да е помало или еднакво на %{count}" - odd: "мора да е непарно" - even: "мора да е парно" - greater_than_start_date: "мора да е поголема од почетната дата" - not_same_project: "не припаѓа на истиот проект" - circular_dependency: "Оваа врска ќе креира кружна зависност" - cant_link_an_issue_with_a_descendant: "Задача неможе да се поврзе со една од нејзините подзадачи" - earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" - not_a_regexp: "is not a valid regular expression" - open_issue_with_closed_parent: "An open issue cannot be attached to a closed parent task" - must_contain_uppercase: "must contain uppercase letters (A-Z)" - must_contain_lowercase: "must contain lowercase letters (a-z)" - must_contain_digits: "must contain digits (0-9)" - must_contain_special_chars: "must contain special characters (!, $, %, ...)" - - actionview_instancetag_blank_option: Изберете - - general_text_No: 'Не' - general_text_Yes: 'Да' - general_text_no: 'не' - general_text_yes: 'да' - general_lang_name: 'Macedonian (Македонски)' - general_csv_separator: ',' - general_csv_decimal_separator: '.' - general_csv_encoding: UTF-8 - general_pdf_fontname: freesans - general_pdf_monospaced_fontname: freemono - general_first_day_of_week: '1' - - notice_account_updated: Профилот е успешно ажуриран. - notice_account_invalid_credentials: Неточен корисник или лозинка - notice_account_password_updated: Лозинката е успешно ажурирана. - notice_account_wrong_password: Погрешна лозинка - notice_account_register_done: Профилот е успешно креиран. За активација, клкнете на врската што ви е пратена по е-пошта. - notice_account_unknown_email: Непознат корисник. - notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password. - notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you. - notice_account_activated: Your account has been activated. You can now log in. - notice_successful_create: Успешно креирање. - notice_successful_update: Успешно ажурирање. - notice_successful_delete: Успешно бришење. - notice_successful_connection: Успешна конекција. - notice_file_not_found: The page you were trying to access doesn't exist or has been removed. - notice_locking_conflict: Data has been updated by another user. - notice_not_authorized: You are not authorized to access this page. - notice_email_sent: "Е-порака е пратена на %{value}" - notice_email_error: "Се случи грешка при праќање на е-пораката (%{value})" - notice_feeds_access_key_reseted: Вашиот Atom клуч за пристап е reset. - notice_api_access_key_reseted: Вашиот API клуч за пристап е reset. - notice_failed_to_save_issues: "Failed to save %{count} issue(s) on %{total} selected: %{ids}." - notice_failed_to_save_members: "Failed to save member(s): %{errors}." - notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit." - notice_account_pending: "Your account was created and is now pending administrator approval." - notice_default_data_loaded: Default configuration successfully loaded. - notice_unable_delete_version: Unable to delete version. - notice_unable_delete_time_entry: Unable to delete time log entry. - notice_issue_done_ratios_updated: Issue done ratios updated. - - error_can_t_load_default_data: "Default configuration could not be loaded: %{value}" - error_scm_not_found: "The entry or revision was not found in the repository." - error_scm_command_failed: "An error occurred when trying to access the repository: %{value}" - error_scm_annotate: "The entry does not exist or can not be annotated." - error_issue_not_found_in_project: 'The issue was not found or does not belong to this project' - error_no_tracker_in_project: 'No tracker is associated to this project. Please check the Project settings.' - error_no_default_issue_status: 'No default issue status is defined. Please check your configuration (Go to "Administration -> Issue statuses").' - error_can_not_delete_custom_field: Unable to delete custom field - error_can_not_delete_tracker: "This tracker contains issues and cannot be deleted." - error_can_not_remove_role: "This role is in use and can not be deleted." - error_can_not_reopen_issue_on_closed_version: 'An issue assigned to a closed version can not be reopened' - error_can_not_archive_project: This project can not be archived - error_issue_done_ratios_not_updated: "Issue done ratios not updated." - error_workflow_copy_source: 'Please select a source tracker or role' - error_workflow_copy_target: 'Please select target tracker(s) and role(s)' - error_unable_delete_issue_status: 'Unable to delete issue status (%{value})' - error_unable_to_connect: "Unable to connect (%{value})" - warning_attachments_not_saved: "%{count} file(s) could not be saved." - - mail_subject_lost_password: "Вашата %{value} лозинка" - mail_body_lost_password: 'To change your password, click on the following link:' - mail_subject_register: "Your %{value} account activation" - mail_body_register: 'To activate your account, click on the following link:' - mail_body_account_information_external: "You can use your %{value} account to log in." - mail_body_account_information: Your account information - mail_subject_account_activation_request: "%{value} account activation request" - mail_body_account_activation_request: "Нов корисник (%{value}) е регистриран. The account is pending your approval:" - mail_subject_reminder: "%{count} issue(s) due in the next %{days} days" - mail_body_reminder: "%{count} issue(s) that are assigned to you are due in the next %{days} days:" - mail_subject_wiki_content_added: "'%{id}' wiki page has been added" - mail_body_wiki_content_added: "The '%{id}' wiki page has been added by %{author}." - mail_subject_wiki_content_updated: "'%{id}' wiki page has been updated" - mail_body_wiki_content_updated: "The '%{id}' wiki page has been updated by %{author}." - - - field_name: Име - field_description: Опис - field_summary: Краток опис - field_is_required: Задолжително - field_firstname: Име - field_lastname: Презиме - field_mail: Е-пошта - field_filename: Датотека - field_filesize: Големина - field_downloads: Превземања - field_author: Автор - field_created_on: Креиран - field_updated_on: Ажурирано - field_field_format: Формат - field_is_for_all: За сите проекти - field_possible_values: Можни вредности - field_regexp: Regular expression - field_min_length: Минимална должина - field_max_length: Максимална должина - field_value: Вредност - field_category: Категорија - field_title: Наслов - field_project: Проект - field_issue: Задача - field_status: Статус - field_notes: Белешки - field_is_closed: Задачата е затворена - field_is_default: Default value - field_tracker: Tracker - field_subject: Наслов - field_due_date: Краен рок - field_assigned_to: Доделена на - field_priority: Приоритет - field_fixed_version: Target version - field_user: Корисник - field_principal: Principal - field_role: Улога - field_homepage: Веб страна - field_is_public: Јавен - field_parent: Подпроект на - field_is_in_roadmap: Issues displayed in roadmap - field_login: Корисник - field_mail_notification: Известувања по e-пошта - field_admin: Администратор - field_last_login_on: Последна најава - field_language: Јазик - field_effective_date: Дата - field_password: Лозинка - field_new_password: Нова лозинка - field_password_confirmation: Потврда - field_version: Верзија - field_type: Тип - field_host: Хост - field_port: Порт - field_account: Account - field_base_dn: Base DN - field_attr_login: Login attribute - field_attr_firstname: Firstname attribute - field_attr_lastname: Lastname attribute - field_attr_mail: Email attribute - field_onthefly: Моментално (On-the-fly) креирање на корисници - field_start_date: Почеток - field_done_ratio: "% Завршено" - field_auth_source: Режим на автентикација - field_hide_mail: Криј ја мојата адреса на е-пошта - field_comments: Коментар - field_url: URL - field_start_page: Почетна страна - field_subproject: Подпроект - field_hours: Часови - field_activity: Активност - field_spent_on: Дата - field_identifier: Идентификатор - field_is_filter: Користи како филтер - field_issue_to: Поврзана задача - field_delay: Доцнење - field_assignable: На оваа улога може да се доделуваат задачи - field_redirect_existing_links: Пренасочи ги постоечките врски - field_estimated_hours: Проценето време - field_column_names: Колони - field_time_entries: Бележи време - field_time_zone: Временска зона - field_searchable: Може да се пребарува - field_default_value: Default value - field_comments_sorting: Прикажувај коментари - field_parent_title: Parent page - field_editable: Може да се уредува - field_watcher: Watcher - field_identity_url: OpenID URL - field_content: Содржина - field_group_by: Групирај ги резултатите според - field_sharing: Споделување - field_parent_issue: Parent task - - setting_app_title: Наслов на апликацијата - setting_welcome_text: Текст за добредојде - setting_default_language: Default јазик - setting_login_required: Задолжителна автентикација - setting_self_registration: Само-регистрација - setting_attachment_max_size: Макс. големина на прилог - setting_issues_export_limit: Issues export limit - setting_mail_from: Emission email address - setting_bcc_recipients: Blind carbon copy recipients (bcc) - setting_plain_text_mail: Текстуални е-пораки (без HTML) - setting_host_name: Име на хост и патека - setting_text_formatting: Форматирање на текст - setting_wiki_compression: Компресија на историјата на вики - setting_feeds_limit: Feed content limit - setting_default_projects_public: Новите проекти се иницијално јавни - setting_autofetch_changesets: Autofetch commits - setting_sys_api_enabled: Enable WS for repository management - setting_commit_ref_keywords: Referencing keywords - setting_commit_fix_keywords: Fixing keywords - setting_autologin: Автоматска најава - setting_date_format: Формат на дата - setting_time_format: Формат на време - setting_cross_project_issue_relations: Дозволи релации на задачи меѓу проекти - setting_issue_list_default_columns: Default columns displayed on the issue list - setting_protocol: Протокол - setting_per_page_options: Objects per page options - setting_user_format: Приказ на корисниците - setting_activity_days_default: Денови прикажана во активноста на проектот - setting_display_subprojects_issues: Прикажи ги задачите на подпроектите во главните проекти - setting_enabled_scm: Овозможи SCM - setting_mail_handler_body_delimiters: "Truncate emails after one of these lines" - setting_mail_handler_api_enabled: Enable WS for incoming emails - setting_mail_handler_api_key: API клуч - setting_sequential_project_identifiers: Генерирај последователни идентификатори на проекти - setting_gravatar_enabled: Користи Gravatar кориснички икони - setting_gravatar_default: Default Gravatar image - setting_diff_max_lines_displayed: Max number of diff lines displayed - setting_file_max_size_displayed: Max size of text files displayed inline - setting_repository_log_display_limit: Maximum number of revisions displayed on file log - setting_openid: Дозволи OpenID најава и регистрација - setting_password_min_length: Мин. должина на лозинка - setting_new_project_user_role_id: Улога доделена на неадминистраторски корисник кој креира проект - setting_default_projects_modules: Default enabled modules for new projects - setting_issue_done_ratio: Calculate the issue done ratio with - setting_issue_done_ratio_issue_field: Use the issue field - setting_issue_done_ratio_issue_status: Use the issue status - setting_start_of_week: Start calendars on - setting_rest_api_enabled: Enable REST web service - setting_cache_formatted_text: Cache formatted text - - permission_add_project: Креирај проекти - permission_add_subprojects: Креирај подпроекти - permission_edit_project: Уреди проект - permission_select_project_modules: Изберете модули за проект - permission_manage_members: Manage members - permission_manage_project_activities: Manage project activities - permission_manage_versions: Manage versions - permission_manage_categories: Manage issue categories - permission_view_issues: Прегледај задачи - permission_add_issues: Додавај задачи - permission_edit_issues: Уредувај задачи - permission_manage_issue_relations: Manage issue relations - permission_add_issue_notes: Додавај белешки - permission_edit_issue_notes: Уредувај белешки - permission_edit_own_issue_notes: Уредувај сопствени белешки - permission_delete_issues: Бриши задачи - permission_manage_public_queries: Manage public queries - permission_save_queries: Save queries - permission_view_gantt: View gantt chart - permission_view_calendar: View calendar - permission_view_issue_watchers: View watchers list - permission_add_issue_watchers: Add watchers - permission_delete_issue_watchers: Delete watchers - permission_log_time: Бележи потрошено време - permission_view_time_entries: Прегледај потрошено време - permission_edit_time_entries: Уредувај белешки за потрошено време - permission_edit_own_time_entries: Уредувај сопствени белешки за потрошено време - permission_manage_news: Manage news - permission_comment_news: Коментирај на вести - permission_view_documents: Прегледувај документи - permission_manage_files: Manage files - permission_view_files: Прегледувај датотеки - permission_manage_wiki: Manage wiki - permission_rename_wiki_pages: Преименувај вики страници - permission_delete_wiki_pages: Бриши вики страници - permission_view_wiki_pages: Прегледувај вики - permission_view_wiki_edits: Прегледувај вики историја - permission_edit_wiki_pages: Уредувај вики страници - permission_delete_wiki_pages_attachments: Бриши прилози - permission_protect_wiki_pages: Заштитувај вики страници - permission_manage_repository: Manage repository - permission_browse_repository: Browse repository - permission_view_changesets: View changesets - permission_commit_access: Commit access - permission_manage_boards: Manage boards - permission_view_messages: View messages - permission_add_messages: Post messages - permission_edit_messages: Уредувај пораки - permission_edit_own_messages: Уредувај сопствени пораки - permission_delete_messages: Бриши пораки - permission_delete_own_messages: Бриши сопствени пораки - permission_export_wiki_pages: Export wiki pages - permission_manage_subtasks: Manage subtasks - - project_module_issue_tracking: Следење на задачи - project_module_time_tracking: Следење на време - project_module_news: Вести - project_module_documents: Документи - project_module_files: Датотеки - project_module_wiki: Вики - project_module_repository: Repository - project_module_boards: Форуми - project_module_calendar: Календар - project_module_gantt: Gantt - - label_user: Корисник - label_user_plural: Корисници - label_user_new: Нов корисник - label_user_anonymous: Анонимен - label_project: Проект - label_project_new: Нов проект - label_project_plural: Проекти - label_x_projects: - zero: нема проекти - one: 1 проект - other: "%{count} проекти" - label_project_all: Сите проекти - label_project_latest: Последните проекти - label_issue: Задача - label_issue_new: Нова задача - label_issue_plural: Задачи - label_issue_view_all: Прегледај ги сите задачи - label_issues_by: "Задачи по %{value}" - label_issue_added: Задачата е додадена - label_issue_updated: Задачата е ажурирана - label_document: Документ - label_document_new: Нов документ - label_document_plural: Документи - label_document_added: Документот е додаден - label_role: Улога - label_role_plural: Улоги - label_role_new: Нова улога - label_role_and_permissions: Улоги и овластувања - label_member: Член - label_member_new: Нов член - label_member_plural: Членови - label_tracker: Tracker - label_tracker_plural: Trackers - label_tracker_new: New tracker - label_workflow: Workflow - label_issue_status: Статус на задача - label_issue_status_plural: Статуси на задачи - label_issue_status_new: Нов статус - label_issue_category: Категорија на задача - label_issue_category_plural: Категории на задачи - label_issue_category_new: Нова категорија - label_custom_field: Прилагодено поле - label_custom_field_plural: Прилагодени полиња - label_custom_field_new: Ново прилагодено поле - label_enumerations: Enumerations - label_enumeration_new: Нова вредност - label_information: Информација - label_information_plural: Информации - label_register: Регистрирај се - label_login_with_open_id_option: или најави се со OpenID - label_password_lost: Изгубена лозинка - label_home: Почетна - label_my_page: Мојата страна - label_my_account: Мојот профил - label_my_projects: Мои проекти - label_administration: Администрација - label_login: Најави се - label_logout: Одјави се - label_help: Помош - label_reported_issues: Пријавени задачи - label_assigned_to_me_issues: Задачи доделени на мене - label_last_login: Последна најава - label_registered_on: Регистриран на - label_activity: Активност - label_overall_activity: Севкупна активност - label_user_activity: "Активност на %{value}" - label_new: Нова - label_logged_as: Најавени сте како - label_environment: Опкружување - label_authentication: Автентикација - label_auth_source: Режим на автентикација - label_auth_source_new: Нов режим на автентикација - label_auth_source_plural: Режими на автентикација - label_subproject_plural: Подпроекти - label_subproject_new: Нов подпроект - label_and_its_subprojects: "%{value} и неговите подпроекти" - label_min_max_length: Мин. - Макс. должина - label_list: Листа - label_date: Дата - label_integer: Integer - label_float: Float - label_boolean: Boolean - label_string: Текст - label_text: Долг текст - label_attribute: Атрибут - label_attribute_plural: Атрибути - label_no_data: Нема податоци за прикажување - label_change_status: Промени статус - label_history: Историја - label_attachment: Датотека - label_attachment_new: Нова датотека - label_attachment_delete: Избриши датотека - label_attachment_plural: Датотеки - label_file_added: Датотеката е додадена - label_report: Извештај - label_report_plural: Извештаи - label_news: Новост - label_news_new: Додади новост - label_news_plural: Новости - label_news_latest: Последни новости - label_news_view_all: Прегледај ги сите новости - label_news_added: Новостта е додадена - label_settings: Settings - label_overview: Преглед - label_version: Верзија - label_version_new: Нова верзија - label_version_plural: Верзии - label_close_versions: Затвори ги завршените врзии - label_confirmation: Потврда - label_export_to: 'Достапно и во:' - label_read: Прочитај... - label_public_projects: Јавни проекти - label_open_issues: отворена - label_open_issues_plural: отворени - label_closed_issues: затворена - label_closed_issues_plural: затворени - label_x_open_issues_abbr: - zero: 0 отворени - one: 1 отворена - other: "%{count} отворени" - label_x_closed_issues_abbr: - zero: 0 затворени - one: 1 затворена - other: "%{count} затворени" - label_total: Вкупно - label_permissions: Овластувања - label_current_status: Моментален статус - label_new_statuses_allowed: Дозволени нови статуси - label_all: сите - label_none: ниеден - label_nobody: никој - label_next: Следно - label_previous: Претходно - label_used_by: Користено од - label_details: Детали - label_add_note: Додади белешка - label_calendar: Календар - label_months_from: месеци од - label_gantt: Gantt - label_internal: Internal - label_last_changes: "последни %{count} промени" - label_change_view_all: Прегледај ги сите промени - label_comment: Коментар - label_comment_plural: Коментари - label_x_comments: - zero: нема коментари - one: 1 коментар - other: "%{count} коментари" - label_comment_add: Додади коментар - label_comment_added: Коментарот е додаден - label_comment_delete: Избриши коментари - label_query: Custom query - label_query_plural: Custom queries - label_query_new: New query - label_filter_add: Додади филтер - label_filter_plural: Филтри - label_equals: е - label_not_equals: не е - label_in_less_than: за помалку од - label_in_more_than: за повеќе од - label_greater_or_equal: '>=' - label_less_or_equal: '<=' - label_in: во - label_today: денес - label_yesterday: вчера - label_this_week: оваа недела - label_last_week: минатата недела - label_last_n_days: "последните %{count} дена" - label_this_month: овој месец - label_last_month: минатиот месец - label_this_year: оваа година - label_date_range: Date range - label_less_than_ago: пред помалку од денови - label_more_than_ago: пред повеќе од денови - label_ago: пред денови - label_contains: содржи - label_not_contains: не содржи - label_day_plural: денови - label_repository: Складиште - label_repository_plural: Складишта - label_browse: Прелистувај - label_branch: Гранка - label_tag: Tag - label_revision: Ревизија - label_revision_plural: Ревизии - label_revision_id: "Ревизија %{value}" - label_associated_revisions: Associated revisions - label_added: added - label_modified: modified - label_copied: copied - label_renamed: renamed - label_deleted: deleted - label_latest_revision: Последна ревизија - label_latest_revision_plural: Последни ревизии - label_view_revisions: Прегледај ги ревизиите - label_view_all_revisions: Прегледај ги сите ревизии - label_max_size: Макс. големина - label_sort_highest: Премести најгоре - label_sort_higher: Премести нагоре - label_sort_lower: Премести надоле - label_sort_lowest: Премести најдоле - label_roadmap: Roadmap - label_roadmap_due_in: "Due in %{value}" - label_roadmap_overdue: "Касни %{value}" - label_roadmap_no_issues: Нема задачи за оваа верзија - label_search: Барај - label_result_plural: Резултати - label_all_words: Сите зборови - label_wiki: Вики - label_wiki_edit: Вики уредување - label_wiki_edit_plural: Вики уредувања - label_wiki_page: Вики страница - label_wiki_page_plural: Вики страници - label_index_by_title: Индекс по наслов - label_index_by_date: Индекс по дата - label_current_version: Current version - label_preview: Preview - label_feed_plural: Feeds - label_changes_details: Детали за сите промени - label_issue_tracking: Следење на задачи - label_spent_time: Потрошено време - label_overall_spent_time: Вкупно потрошено време - label_f_hour: "%{value} час" - label_f_hour_plural: "%{value} часа" - label_time_tracking: Следење на време - label_change_plural: Промени - label_statistics: Статистики - label_commits_per_month: Commits per month - label_commits_per_author: Commits per author - label_view_diff: View differences - label_diff_inline: inline - label_diff_side_by_side: side by side - label_options: Опции - label_copy_workflow_from: Copy workflow from - label_permissions_report: Permissions report - label_watched_issues: Watched issues - label_related_issues: Поврзани задачи - label_applied_status: Applied status - label_loading: Loading... - label_relation_new: Нова релација - label_relation_delete: Избриши релација - label_relates_to: related to - label_duplicates: дупликати - label_duplicated_by: duplicated by - label_blocks: blocks - label_blocked_by: блокирано од - label_precedes: претходи - label_follows: следи - label_stay_logged_in: Останете најавени - label_disabled: disabled - label_show_completed_versions: Show completed versions - label_me: јас - label_board: Форум - label_board_new: Нов форум - label_board_plural: Форуми - label_board_locked: Заклучен - label_board_sticky: Sticky - label_topic_plural: Теми - label_message_plural: Пораки - label_message_last: Последна порака - label_message_new: Нова порака - label_message_posted: Поракате е додадена - label_reply_plural: Одговори - label_send_information: Испрати ги информациите за профилот на корисникот - label_year: Година - label_month: Месец - label_week: Недела - label_date_from: Од - label_date_to: До - label_language_based: Според јазикот на корисникот - label_sort_by: "Подреди според %{value}" - label_send_test_email: Испрати тест е-порака - label_feeds_access_key: Atom клуч за пристап - label_missing_feeds_access_key: Недостика Atom клуч за пристап - label_feeds_access_key_created_on: "Atom клучот за пристап креиран пред %{value}" - label_module_plural: Модули - label_added_time_by: "Додадено од %{author} пред %{age}" - label_updated_time_by: "Ажурирано од %{author} пред %{age}" - label_updated_time: "Ажурирано пред %{value}" - label_jump_to_a_project: Префрли се на проект... - label_file_plural: Датотеки - label_changeset_plural: Changesets - label_default_columns: Основни колони - label_no_change_option: (Без промена) - label_bulk_edit_selected_issues: Групно уредување на задачи - label_theme: Тема - label_default: Default - label_search_titles_only: Пребарувај само наслови - label_user_mail_option_all: "За било кој настан во сите мои проекти" - label_user_mail_option_selected: "За било кој настан само во избраните проекти..." - label_user_mail_no_self_notified: "Не ме известувај за промените што јас ги правам" - label_registration_activation_by_email: активација на профил преку е-пошта - label_registration_manual_activation: мануелна активација на профил - label_registration_automatic_activation: автоматска активација на профил - label_display_per_page: "По страна: %{value}" - label_age: Age - label_change_properties: Change properties - label_general: Општо - label_scm: SCM - label_plugins: Додатоци - label_ldap_authentication: LDAP автентикација - label_downloads_abbr: Превземања - label_optional_description: Опис (незадолжително) - label_add_another_file: Додади уште една датотека - label_preferences: Preferences - label_chronological_order: Во хронолошки ред - label_reverse_chronological_order: In reverse chronological order - label_incoming_emails: Дојдовни е-пораки - label_generate_key: Генерирај клуч - label_issue_watchers: Watchers - label_example: Пример - label_display: Прикажи - label_sort: Подреди - label_ascending: Растечки - label_descending: Опаѓачки - label_date_from_to: Од %{start} до %{end} - label_wiki_content_added: Вики страница додадена - label_wiki_content_updated: Вики страница ажурирана - label_group: Група - label_group_plural: Групи - label_group_new: Нова група - label_time_entry_plural: Потрошено време - label_version_sharing_none: Не споделено - label_version_sharing_descendants: Со сите подпроекти - label_version_sharing_hierarchy: Со хиерархијата на проектот - label_version_sharing_tree: Со дрвото на проектот - label_version_sharing_system: Со сите проекти - label_update_issue_done_ratios: Update issue done ratios - label_copy_source: Извор - label_copy_target: Дестинација - label_copy_same_as_target: Исто како дестинацијата - label_display_used_statuses_only: Only display statuses that are used by this tracker - label_api_access_key: API клуч за пристап - label_missing_api_access_key: Недостига API клуч за пристап - label_api_access_key_created_on: "API клучот за пристап е креиран пред %{value}" - label_profile: Профил - label_subtask_plural: Подзадачи - label_project_copy_notifications: Праќај известувања по е-пошта при копирање на проект - - button_login: Најави се - button_submit: Испрати - button_save: Зачувај - button_check_all: Штиклирај ги сите - button_uncheck_all: Одштиклирај ги сите - button_delete: Избриши - button_create: Креирај - button_create_and_continue: Креирај и продолжи - button_test: Тест - button_edit: Уреди - button_add: Додади - button_change: Промени - button_apply: Примени - button_clear: Избриши - button_lock: Заклучи - button_unlock: Отклучи - button_download: Превземи - button_list: List - button_view: Прегледај - button_move: Премести - button_move_and_follow: Премести и следи - button_back: Back - button_cancel: Откажи - button_activate: Активирај - button_sort: Подреди - button_log_time: Бележи време - button_rollback: Rollback to this version - button_watch: Следи - button_unwatch: Не следи - button_reply: Одговори - button_archive: Архивирај - button_unarchive: Одархивирај - button_reset: Reset - button_rename: Преименувај - button_change_password: Промени лозинка - button_copy: Копирај - button_copy_and_follow: Копирај и следи - button_annotate: Annotate - button_update: Ажурирај - button_configure: Конфигурирај - button_quote: Цитирај - button_show: Show - - status_active: активни - status_registered: регистрирани - status_locked: заклучени - - version_status_open: отворени - version_status_locked: заклучени - version_status_closed: затворени - - field_active: Active - - text_select_mail_notifications: Изберете за кои настани да се праќаат известувања по е-пошта да се праќаат. - text_regexp_info: eg. ^[A-Z0-9]+$ - text_min_max_length_info: 0 значи без ограничување - text_project_destroy_confirmation: Дали сте сигурни дека сакате да го избришете проектот и сите поврзани податоци? - text_subprojects_destroy_warning: "Неговите подпроекти: %{value} исто така ќе бидат избришани." - text_workflow_edit: Select a role and a tracker to edit the workflow - text_are_you_sure: Дали сте сигурни? - text_journal_changed: "%{label} променето од %{old} во %{new}" - text_journal_set_to: "%{label} set to %{value}" - text_journal_deleted: "%{label} избришан (%{old})" - text_journal_added: "%{label} %{value} додаден" - text_tip_issue_begin_day: задачи што почнуваат овој ден - text_tip_issue_end_day: задачи што завршуваат овој ден - text_tip_issue_begin_end_day: задачи што почнуваат и завршуваат овој ден - text_caracters_maximum: "%{count} знаци максимум." - text_caracters_minimum: "Мора да е најмалку %{count} знаци долго." - text_length_between: "Должина помеѓу %{min} и %{max} знаци." - text_tracker_no_workflow: No workflow defined for this tracker - text_unallowed_characters: Недозволени знаци - text_comma_separated: Дозволени се повеќе вредности (разделени со запирка). - text_line_separated: Дозволени се повеќе вредности (една линија за секоја вредност). - text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages - text_issue_added: "Задачата %{id} е пријавена од %{author}." - text_issue_updated: "Задачата %{id} е ажурирана од %{author}." - text_wiki_destroy_confirmation: Дали сте сигурни дека сакате да го избришете ова вики и целата негова содржина? - text_issue_category_destroy_question: "Некои задачи (%{count}) се доделени на оваа категорија. Што сакате да правите?" - text_issue_category_destroy_assignments: Remove category assignments - text_issue_category_reassign_to: Додели ги задачите на оваа категорија - text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)." - text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded." - text_load_default_configuration: Load the default configuration - text_status_changed_by_changeset: "Applied in changeset %{value}." - text_issues_destroy_confirmation: 'Дали сте сигурни дека сакате да ги избришете избраните задачи?' - text_select_project_modules: 'Изберете модули за овој проект:' - text_default_administrator_account_changed: Default administrator account changed - text_file_repository_writable: Во папката за прилози може да се запишува - text_plugin_assets_writable: Во папката за додатоци може да се запишува - text_minimagick_available: MiniMagick available (незадолжително) - text_destroy_time_entries_question: "%{hours} hours were reported on the issues you are about to delete. What do you want to do ?" - text_destroy_time_entries: Delete reported hours - text_assign_time_entries_to_project: Додели ги пријавените часови на проектот - text_reassign_time_entries: 'Reassign reported hours to this issue:' - text_user_wrote: "%{value} напиша:" - text_user_wrote_in: "%{value} напиша (%{link}):" - text_enumeration_destroy_question: "%{count} objects are assigned to this value." - text_enumeration_category_reassign_to: 'Reassign them to this value:' - text_email_delivery_not_configured: "Доставата по е-пошта не е конфигурирана, и известувањата се оневозможени.\nКонфигурирајте го Вашиот SMTP сервер во config/configuration.yml и рестартирајте ја апликацијата." - text_repository_usernames_mapping: "Select or update the Redmine user mapped to each username found in the repository log.\nUsers with the same Redmine and repository username or email are automatically mapped." - text_diff_truncated: '... This diff was truncated because it exceeds the maximum size that can be displayed.' - text_custom_field_possible_values_info: 'One line for each value' - text_wiki_page_destroy_question: "This page has %{descendants} child page(s) and descendant(s). What do you want to do?" - text_wiki_page_nullify_children: "Keep child pages as root pages" - text_wiki_page_destroy_children: "Delete child pages and all their descendants" - text_wiki_page_reassign_children: "Reassign child pages to this parent page" - 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_zoom_in: Zoom in - text_zoom_out: Zoom out - - default_role_manager: Менаџер - default_role_developer: Developer - default_role_reporter: Reporter - default_tracker_bug: Грешка - default_tracker_feature: Функционалност - default_tracker_support: Поддршка - default_issue_status_new: Нова - default_issue_status_in_progress: Во прогрес - default_issue_status_resolved: Разрешена - default_issue_status_feedback: Feedback - default_issue_status_closed: Затворена - default_issue_status_rejected: Одбиена - default_doc_category_user: Корисничка документација - default_doc_category_tech: Техничка документација - default_priority_low: Низок - default_priority_normal: Нормален - default_priority_high: Висок - default_priority_urgent: Итно - default_priority_immediate: Веднаш - default_activity_design: Дизајн - default_activity_development: Развој - - enumeration_issue_priorities: Приоритети на задача - enumeration_doc_categories: Категории на документ - enumeration_activities: Активности (следење на време) - enumeration_system_activity: Системска активност - - button_edit_associated_wikipage: "Edit associated Wiki page: %{page_title}" - field_text: Text field - setting_default_notification_option: Default notification option - label_user_mail_option_only_my_events: Only for things I watch or I'm involved in - label_user_mail_option_none: No events - field_member_of_group: Assignee's group - field_assigned_to_role: Assignee's role - notice_not_authorized_archived_project: The project you're trying to access has been archived. - label_principal_search: "Search for user or group:" - label_user_search: "Search for user:" - field_visible: Visible - setting_commit_logtime_activity_id: Activity for logged time - text_time_logged_by_changeset: Applied in changeset %{value}. - setting_commit_logtime_enabled: Enable time logging - notice_gantt_chart_truncated: The chart was truncated because it exceeds the maximum number of items that can be displayed (%{max}) - setting_gantt_items_limit: Maximum number of items displayed on the gantt chart - field_warn_on_leaving_unsaved: Warn me when leaving a page with unsaved text - text_warn_on_leaving_unsaved: The current page contains unsaved text that will be lost if you leave this page. - label_my_queries: My custom queries - text_journal_changed_no_detail: "%{label} updated" - label_news_comment_added: Comment added to a news - button_expand_all: Expand all - button_collapse_all: Collapse all - label_additional_workflow_transitions_for_assignee: Additional transitions allowed when the user is the assignee - label_additional_workflow_transitions_for_author: Additional transitions allowed when the user is the author - label_bulk_edit_selected_time_entries: Bulk edit selected time entries - text_time_entries_destroy_confirmation: Are you sure you want to delete the selected time entr(y/ies)? - label_role_anonymous: Anonymous - label_role_non_member: Non member - label_issue_note_added: Note added - label_issue_status_updated: Status updated - label_issue_priority_updated: Priority updated - label_issues_visibility_own: Issues created by or assigned to the user - field_issues_visibility: Issues visibility - label_issues_visibility_all: All issues - permission_set_own_issues_private: Set own issues public or private - field_is_private: Private - permission_set_issues_private: Set issues public or private - label_issues_visibility_public: All non private issues - text_issues_destroy_descendants_confirmation: This will also delete %{count} subtask(s). - field_commit_logs_encoding: Commit messages encoding - field_scm_path_encoding: Path encoding - text_scm_path_encoding_note: "Default: UTF-8" - field_path_to_repository: Path to repository - field_root_directory: Root directory - field_cvs_module: Module - field_cvsroot: CVSROOT - text_mercurial_repository_note: Local repository (e.g. /hgrepo, c:\hgrepo) - text_scm_command: Command - text_scm_command_version: Version - label_git_report_last_commit: Report last commit for files and directories - notice_issue_successful_create: Issue %{id} created. - label_between: between - setting_issue_group_assignment: Allow issue assignment to groups - label_diff: diff - text_git_repository_note: Repository is bare and local (e.g. /gitrepo, c:\gitrepo) - description_query_sort_criteria_direction: Sort direction - description_project_scope: Search scope - description_filter: Filter - description_user_mail_notification: Mail notification settings - description_message_content: Message content - description_available_columns: Available Columns - description_issue_category_reassign: Choose issue category - description_search: Searchfield - description_notes: Notes - description_choose_project: Projects - description_query_sort_criteria_attribute: Sort attribute - description_wiki_subpages_reassign: Choose new parent page - description_selected_columns: Selected Columns - label_parent_revision: Parent - label_child_revision: Child - error_scm_annotate_big_text_file: The entry cannot be annotated, as it exceeds the maximum text file size. - setting_default_issue_start_date_to_creation_date: Use current date as start date for new issues - button_edit_section: Edit this section - setting_repositories_encodings: Attachments and repositories encodings - description_all_columns: All Columns - button_export: Export - label_export_options: "%{export_format} export options" - error_attachment_too_big: This file cannot be uploaded because it exceeds the maximum allowed file size (%{max_size}) - notice_failed_to_save_time_entries: "Failed to save %{count} time entrie(s) on %{total} selected: %{ids}." - label_x_issues: - zero: 0 Задача - one: 1 Задача - other: "%{count} Задачи" - label_repository_new: New repository - field_repository_is_default: Main repository - label_copy_attachments: Copy attachments - label_item_position: "%{position}/%{count}" - label_completed_versions: Completed versions - text_project_identifier_info: Only lower case letters (a-z), numbers, dashes and underscores are allowed.
    Once saved, the identifier cannot be changed. - field_multiple: Multiple values - setting_commit_cross_project_ref: Allow issues of all the other projects to be referenced and fixed - text_issue_conflict_resolution_add_notes: Add my notes and discard my other changes - text_issue_conflict_resolution_overwrite: Apply my changes anyway (previous notes will be kept but some changes may be overwritten) - notice_issue_update_conflict: The issue has been updated by an other user while you were editing it. - text_issue_conflict_resolution_cancel: Discard all my changes and redisplay %{link} - permission_manage_related_issues: Manage related issues - field_auth_source_ldap_filter: LDAP filter - label_search_for_watchers: Search for watchers to add - notice_account_deleted: Your account has been permanently deleted. - setting_unsubscribe: Allow users to delete their own account - button_delete_my_account: Delete my account - text_account_destroy_confirmation: |- - Are you sure you want to proceed? - Your account will be permanently deleted, with no way to reactivate it. - error_session_expired: Your session has expired. Please login again. - text_session_expiration_settings: "Warning: changing these settings may expire the current sessions including yours." - setting_session_lifetime: Session maximum lifetime - setting_session_timeout: Session inactivity timeout - label_session_expiration: Session expiration - permission_close_project: Close / reopen the project - button_close: Close - button_reopen: Reopen - project_status_active: active - project_status_closed: closed - project_status_archived: archived - text_project_closed: This project is closed and read-only. - notice_user_successful_create: User %{id} created. - field_core_fields: Standard fields - field_timeout: Timeout (in seconds) - setting_thumbnails_enabled: Display attachment thumbnails - setting_thumbnails_size: Thumbnails size (in pixels) - label_status_transitions: Status transitions - label_fields_permissions: Fields permissions - label_readonly: Read-only - label_required: Required - text_repository_identifier_info: Only lower case letters (a-z), numbers, dashes and underscores are allowed.
    Once saved, the identifier cannot be changed. - field_board_parent: Parent forum - label_attribute_of_project: Project's %{name} - label_attribute_of_author: Author's %{name} - label_attribute_of_assigned_to: Assignee's %{name} - label_attribute_of_fixed_version: Target version's %{name} - label_copy_subtasks: Copy subtasks - label_copied_to: copied to - label_copied_from: copied from - label_any_issues_in_project: any issues in project - label_any_issues_not_in_project: any issues not in project - field_private_notes: Private notes - permission_view_private_notes: View private notes - permission_set_notes_private: Set notes as private - label_no_issues_in_project: no issues in project - label_any: сите - label_last_n_weeks: last %{count} weeks - setting_cross_project_subtasks: Allow cross-project subtasks - label_cross_project_descendants: Со сите подпроекти - label_cross_project_tree: Со дрвото на проектот - label_cross_project_hierarchy: Со хиерархијата на проектот - label_cross_project_system: Со сите проекти - button_hide: Hide - setting_non_working_week_days: Non-working days - label_in_the_next_days: in the next - label_in_the_past_days: in the past - label_attribute_of_user: User's %{name} - text_turning_multiple_off: If you disable multiple values, multiple values will be - removed in order to preserve only one value per item. - label_attribute_of_issue: Issue's %{name} - permission_add_documents: Add documents - permission_edit_documents: Edit documents - permission_delete_documents: Delete documents - label_gantt_progress_line: Progress line - setting_jsonp_enabled: Enable JSONP support - field_inherit_members: Inherit members - field_closed_on: Closed - field_generate_password: Generate password - setting_default_projects_tracker_ids: Default trackers for new projects - label_total_time: Вкупно - text_scm_config: You can configure your SCM commands in config/configuration.yml. Please restart the application after editing it. - text_scm_command_not_available: SCM command is not available. Please check settings on the administration panel. - setting_emails_footer: Email footer - setting_emails_header: Email header - notice_account_not_activated_yet: You haven't activated your account yet. If you want - to receive a new activation email, please click this link. - notice_account_locked: Your account is locked. - label_hidden: Hidden - label_visibility_private: to me only - label_visibility_roles: to these roles only - label_visibility_public: to any users - field_must_change_passwd: Must change password at next logon - notice_new_password_must_be_different: The new password must be different from the - current password - setting_mail_handler_excluded_filenames: Exclude attachments by name - text_convert_available: ImageMagick convert available (optional) - label_link: Link - label_only: only - label_drop_down_list: drop-down list - label_checkboxes: checkboxes - label_link_values_to: Link values to URL - setting_force_default_language_for_anonymous: Force default language for anonymous - users - setting_force_default_language_for_loggedin: Force default language for logged-in - users - label_custom_field_select_type: Select the type of object to which the custom field - is to be attached - label_issue_assigned_to_updated: Assignee updated - label_check_for_updates: Check for updates - label_latest_compatible_version: Latest compatible version - label_unknown_plugin: Unknown plugin - label_radio_buttons: radio buttons - label_group_anonymous: Anonymous users - label_group_non_member: Non member users - label_add_projects: Add projects - field_default_status: Default status - text_subversion_repository_note: 'Examples: file:///, http://, https://, svn://, svn+[tunnelscheme]://' - field_users_visibility: Users visibility - label_users_visibility_all: All active users - label_users_visibility_members_of_visible_projects: Members of visible projects - label_edit_attachments: Edit attached files - setting_link_copied_issue: Link issues on copy - label_link_copied_issue: Link copied issue - label_ask: Ask - label_search_attachments_yes: Search attachment filenames and descriptions - label_search_attachments_no: Do not search attachments - label_search_attachments_only: Search attachments only - label_search_open_issues_only: Open issues only - field_address: Е-пошта - setting_max_additional_emails: Maximum number of additional email addresses - label_email_address_plural: Emails - label_email_address_add: Add email address - label_enable_notifications: Enable notifications - label_disable_notifications: Disable notifications - setting_search_results_per_page: Search results per page - label_blank_value: blank - permission_copy_issues: Copy issues - error_password_expired: Your password has expired or the administrator requires you - to change it. - field_time_entries_visibility: Time logs visibility - setting_password_max_age: Require password change after - label_parent_task_attributes: Parent tasks attributes - label_parent_task_attributes_derived: Calculated from subtasks - label_parent_task_attributes_independent: Independent of subtasks - label_time_entries_visibility_all: All time entries - label_time_entries_visibility_own: Time entries created by the user - label_member_management: Member management - label_member_management_all_roles: All roles - label_member_management_selected_roles_only: Only these roles - label_password_required: Confirm your password to continue - label_total_spent_time: Вкупно потрошено време - notice_import_finished: "%{count} items have been imported" - notice_import_finished_with_errors: "%{count} out of %{total} items could not be imported" - error_invalid_file_encoding: The file is not a valid %{encoding} encoded file - error_invalid_csv_file_or_settings: The file is not a CSV file or does not match the - settings below - error_can_not_read_import_file: An error occurred while reading the file to import - permission_import_issues: Import issues - label_import_issues: Import issues - label_select_file_to_import: Select the file to import - label_fields_separator: Field separator - label_fields_wrapper: Field wrapper - label_encoding: Encoding - label_comma_char: Comma - label_semi_colon_char: Semicolon - label_quote_char: Quote - label_double_quote_char: Double quote - label_fields_mapping: Fields mapping - label_file_content_preview: File content preview - label_create_missing_values: Create missing values - button_import: Import - field_total_estimated_hours: Total estimated time - label_api: API - label_total_plural: Totals - label_assigned_issues: Assigned issues - label_field_format_enumeration: Key/value list - label_f_hour_short: '%{value} h' - field_default_version: Default version - error_attachment_extension_not_allowed: Attachment extension %{extension} is not allowed - setting_attachment_extensions_allowed: Allowed extensions - setting_attachment_extensions_denied: Disallowed extensions - label_any_open_issues: any open issues - label_no_open_issues: no open issues - label_default_values_for_new_users: Default values for new users - error_ldap_bind_credentials: Invalid LDAP Account/Password - setting_sys_api_key: API клуч - setting_lost_password: Изгубена лозинка - mail_subject_security_notification: Security notification - mail_body_security_notification_change: ! '%{field} was changed.' - mail_body_security_notification_change_to: ! '%{field} was changed to %{value}.' - mail_body_security_notification_add: ! '%{field} %{value} was added.' - mail_body_security_notification_remove: ! '%{field} %{value} was removed.' - mail_body_security_notification_notify_enabled: Email address %{value} now receives - notifications. - mail_body_security_notification_notify_disabled: Email address %{value} no longer - receives notifications. - mail_body_settings_updated: ! 'The following settings were changed:' - field_remote_ip: IP address - label_wiki_page_new: New wiki page - label_relations: Relations - button_filter: Filter - mail_body_password_updated: Your password has been changed. - label_no_preview: No preview available - error_no_tracker_allowed_for_new_issue_in_project: The project doesn't have any trackers - for which you can create an issue - label_tracker_all: All trackers - label_new_project_issue_tab_enabled: Display the "New issue" tab - setting_new_item_menu_tab: Project menu tab for creating new objects - label_new_object_tab_enabled: Display the "+" drop-down - error_no_projects_with_tracker_allowed_for_new_issue: There are no projects with trackers - for which you can create an issue - field_textarea_font: Font used for text areas - label_font_default: Default font - label_font_monospace: Monospaced font - label_font_proportional: Proportional font - setting_timespan_format: Time span format - label_table_of_contents: Table of contents - setting_commit_logs_formatting: Apply text formatting to commit messages - setting_mail_handler_enable_regex: Enable regular expressions - error_move_of_child_not_possible: 'Subtask %{child} could not be moved to the new - project: %{errors}' - error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted: Spent time cannot - be reassigned to an issue that is about to be deleted - setting_timelog_required_fields: Required fields for time logs - label_attribute_of_object: '%{object_name}''s %{name}' - label_user_mail_option_only_assigned: Only for things I watch or I am assigned to - label_user_mail_option_only_owner: Only for things I watch or I am the owner of - warning_fields_cleared_on_bulk_edit: Changes will result in the automatic deletion - of values from one or more fields on the selected objects - field_updated_by: Updated by - field_last_updated_by: Last updated by - field_full_width_layout: Full width layout - label_last_notes: Last notes - field_digest: Checksum - field_default_assigned_to: Default assignee - setting_show_custom_fields_on_registration: Show custom fields on registration - permission_view_news: View news - label_no_preview_alternative_html: No preview available. %{link} the file instead. - label_no_preview_download: Download - setting_close_duplicate_issues: Close duplicate issues automatically - error_exceeds_maximum_hours_per_day: Cannot log more than %{max_hours} hours on the - same day (%{logged_hours} hours have already been logged) - setting_time_entry_list_defaults: Timelog list defaults - setting_timelog_accept_0_hours: Accept time logs with 0 hours - setting_timelog_max_hours_per_day: Maximum hours that can be logged per day and user - label_x_revisions: "%{count} revisions" - error_can_not_delete_auth_source: This authentication mode is in use and cannot be - deleted. - button_actions: Actions - mail_body_lost_password_validity: Please be aware that you may change the password - only once using this link. - text_login_required_html: When not requiring authentication, public projects and their - contents are openly available on the network. You can edit - the applicable permissions. - label_login_required_yes: 'Yes' - label_login_required_no: No, allow anonymous access to public projects - text_project_is_public_non_member: Public projects and their contents are available - to all logged-in users. - text_project_is_public_anonymous: Public projects and their contents are openly available - on the network. - label_version_and_files: Versions (%{count}) and Files - label_ldap: LDAP - label_ldaps_verify_none: LDAPS (without certificate check) - label_ldaps_verify_peer: LDAPS - label_ldaps_warning: It is recommended to use an encrypted LDAPS connection with certificate - check to prevent any manipulation during the authentication process. - label_nothing_to_preview: Nothing to preview - error_token_expired: This password recovery link has expired, please try again. - error_spent_on_future_date: Cannot log time on a future date - setting_timelog_accept_future_dates: Accept time logs on future dates - label_delete_link_to_subtask: Избриши релација - error_not_allowed_to_log_time_for_other_users: You are not allowed to log time - for other users - permission_log_time_for_other_users: Log spent time for other users - label_tomorrow: tomorrow - label_next_week: next week - label_next_month: next month - text_role_no_workflow: No workflow defined for this role - text_status_no_workflow: No tracker uses this status in the workflows - setting_mail_handler_preferred_body_part: Preferred part of multipart (HTML) emails - setting_show_status_changes_in_mail_subject: Show status changes in issue mail notifications - subject - label_inherited_from_parent_project: Inherited from parent project - label_inherited_from_group: Inherited from group %{name} - label_trackers_description: Trackers description - label_open_trackers_description: View all trackers description - label_preferred_body_part_text: Text - label_preferred_body_part_html: HTML (experimental) - field_parent_issue_subject: Parent task subject - permission_edit_own_issues: Edit own issues - text_select_apply_tracker: Select tracker - label_updated_issues: Updated issues - text_avatar_server_config_html: The current avatar server is %{url}. - You can configure it in config/configuration.yml. - setting_gantt_months_limit: Maximum number of months displayed on the gantt chart - permission_import_time_entries: Import time entries - label_import_notifications: Send email notifications during the import - text_gs_available: ImageMagick PDF support available (optional) - field_recently_used_projects: Number of recently used projects in jump box - label_optgroup_bookmarks: Bookmarks - label_optgroup_others: Other projects - label_optgroup_recents: Recently used - button_project_bookmark: Add bookmark - button_project_bookmark_delete: Remove bookmark - field_history_default_tab: Issue's history default tab - label_issue_history_properties: Property changes - label_issue_history_notes: Notes - label_last_tab_visited: Last visited tab - field_unique_id: Unique ID - text_no_subject: no subject - setting_password_required_char_classes: Required character classes for passwords - label_password_char_class_uppercase: uppercase letters - label_password_char_class_lowercase: lowercase letters - label_password_char_class_digits: digits - label_password_char_class_special_chars: special characters - text_characters_must_contain: Must contain %{character_classes}. - label_starts_with: starts with - label_ends_with: ends with - label_issue_fixed_version_updated: Target version updated - setting_project_list_defaults: Projects list defaults - label_display_type: Display results as - label_display_type_list: List - label_display_type_board: Board - label_my_bookmarks: My bookmarks - label_import_time_entries: Import time entries diff --git a/config/locales/mn.yml b/config/locales/mn.yml deleted file mode 100644 index a8f4afb..0000000 --- a/config/locales/mn.yml +++ /dev/null @@ -1,1315 +0,0 @@ -mn: - direction: ltr - jquery: - locale: "en" - date: - formats: - # Use the strftime parameters for formats. - # When no format has been given, it uses default. - # You can provide other formats here if you like! - default: "%Y/%m/%d" - short: "%b %d" - long: "%Y, %B %d" - - day_names: [Даваа, Мягмар, Лхагва, Пүрэв, Баасан, Бямба, Ням] - abbr_day_names: [Дав, Мяг, Лха, Пүр, Бсн, Бям, Ням] - - # Don't forget the nil at the beginning; there's no such thing as a 0th month - month_names: [~, 1-р сар, 2-р сар, 3-р сар, 4-р сар, 5-р сар, 6-р сар, 7-р сар, 8-р сар, 9-р сар, 10-р сар, 11-р сар, 12-р сар] - abbr_month_names: [~, 1сар, 2сар, 3сар, 4сар, 5сар, 6сар, 7сар, 8сар, 9сар, 10сар, 11сар, 12сар] - # Used in date_select and datime_select. - order: - - :day - - :month - - :year - - time: - formats: - default: "%Y/%m/%d %I:%M %p" - time: "%I:%M %p" - short: "%d %b %H:%M" - long: "%Y, %B %d %H:%M" - am: "am" - pm: "pm" - - datetime: - distance_in_words: - half_a_minute: "хагас минут" - less_than_x_seconds: - one: "секунд орчим" - other: "%{count} секундээс бага хугацаа" - x_seconds: - one: "1 секунд" - other: "%{count} секунд" - less_than_x_minutes: - one: "минутаас бага хугацаа" - other: "%{count} минутаас бага хугацаа" - x_minutes: - one: "1 минут" - other: "%{count} минут" - about_x_hours: - one: "1 цаг орчим" - other: "ойролцоогоор %{count} цаг" - x_hours: - one: "1 цаг" - other: "%{count} цаг" - x_days: - one: "1 өдөр" - other: "%{count} өдөр" - about_x_months: - one: "1 сар орчим" - other: "ойролцоогоор %{count} сар" - x_months: - one: "1 сар" - other: "%{count} сар" - about_x_years: - one: "ойролцоогоор 1 жил" - other: "ойролцоогоор %{count} жил" - over_x_years: - one: "1 жилээс их" - other: "%{count} жилээс их" - almost_x_years: - one: "бараг 1 жил" - other: "бараг %{count} жил" - - number: - format: - separator: "." - delimiter: "" - precision: 3 - human: - format: - delimiter: "" - precision: 3 - storage_units: - format: "%n %u" - units: - byte: - one: "Байт" - other: "Байт" - kb: "KB" - mb: "MB" - gb: "GB" - tb: "TB" - -# Used in array.to_sentence. - support: - array: - sentence_connector: "бас" - skip_last_comma: false - - activerecord: - errors: - template: - header: - one: "1 error prohibited this %{model} from being saved" - other: "%{count} errors prohibited this %{model} from being saved" - messages: - inclusion: "жагсаалтад заагдаагүй байна" - exclusion: "нөөцлөгдсөн" - invalid: "буруу" - confirmation: "баталгаажсан өгөгдөлтэй таарахгүй байна" - accepted: "хүлээж авах ёстой" - empty: "хоосон байж болохгүй" - blank: "бланк байж болохгүй" - too_long: "дэндүү урт байна (хамгийн ихдээ %{count} тэмдэгт)" - too_short: "дэндүү богино байна (хамгийн багадаа %{count} тэмдэгт)" - wrong_length: "буруу урттай байна (заавал %{count} тэмдэгт)" - taken: "аль хэдийнэ авсан байна" - not_a_number: "тоо биш байна" - not_a_date: "зөв огноо биш байна" - greater_than: "%{count} их байх ёстой" - greater_than_or_equal_to: "must be greater than or equal to %{count}" - equal_to: "must be equal to %{count}" - less_than: "must be less than %{count}" - less_than_or_equal_to: "must be less than or equal to %{count}" - odd: "заавал сондгой" - even: "заавал тэгш" - greater_than_start_date: "must be greater than start date" - not_same_project: "нэг ижил төсөлд хамаарахгүй байна" - circular_dependency: "Энэ харьцаа нь гинжин(рекурсив) харьцаа үүсгэх юм байна" - cant_link_an_issue_with_a_descendant: "An issue can not be linked to one of its subtasks" - earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" - not_a_regexp: "is not a valid regular expression" - open_issue_with_closed_parent: "An open issue cannot be attached to a closed parent task" - must_contain_uppercase: "must contain uppercase letters (A-Z)" - must_contain_lowercase: "must contain lowercase letters (a-z)" - must_contain_digits: "must contain digits (0-9)" - must_contain_special_chars: "must contain special characters (!, $, %, ...)" - - actionview_instancetag_blank_option: Сонгоно уу - - general_text_No: 'Үгүй' - general_text_Yes: 'Тийм' - general_text_no: 'үгүй' - general_text_yes: 'тийм' - general_lang_name: 'Mongolian (Монгол)' - general_csv_separator: ',' - general_csv_decimal_separator: '.' - general_csv_encoding: UTF-8 - general_pdf_fontname: freesans - general_pdf_monospaced_fontname: freemono - general_first_day_of_week: '7' - - notice_account_updated: Дансыг амжилттай өөрчиллөө. - notice_account_invalid_credentials: Хэрэглэгчийн нэр эсвэл нууц үг буруу байна - notice_account_password_updated: Нууц үгийг амжилттай өөрчиллөө. - notice_account_wrong_password: Буруу нууц үг - notice_account_register_done: Шинэ хэрэглэгч амжилттай үүсгэлээ. Идэвхжүүлэхийн тулд, бидний тань луу илгээсэн мэйл дотор байгаа холбоос дээр дараарай. - notice_account_unknown_email: Үл мэдэгдэх хэрэглэгч. - notice_can_t_change_password: Энэ эрх гадаад нэвтрэлтэд ашигладаг учраас нууц үгийг өөрчлөх боломжгүй. - notice_account_lost_email_sent: Бид таньд мэйлээр нууц үгээ өөрчлөх зааврыг илгээсэн байгаа. - notice_account_activated: Таны данс идэвхжлээ. Одоо нэвтэрч орж болно. - notice_successful_create: Амжилттай үүсгэлээ. - notice_successful_update: Амжилттай өөрчиллөө. - notice_successful_delete: Амжилттай устгалаа. - notice_successful_connection: Амжилттай холбогдлоо. - notice_file_not_found: Таны үзэх гэсэн хуудас байхгүй юмуу устгагдсан байна. - notice_locking_conflict: Өгөгдлийг өөр хүн өөрчилсөн байна. - notice_not_authorized: Танд энэ хуудсыг үзэх эрх байхгүй байна. - notice_email_sent: "%{value} - руу мэйл илгээлээ" - notice_email_error: "Мэйл илгээхэд алдаа гарлаа (%{value})" - notice_feeds_access_key_reseted: Таны Atom хандалтын түлхүүрийг дахин эхлүүллээ. - notice_api_access_key_reseted: Your API access key was reset. - notice_failed_to_save_issues: "%{total} асуудал сонгогдсоноос %{count} асуудлыг нь хадгалахад алдаа гарлаа: %{ids}." - notice_no_issue_selected: "Ямар ч асуудал сонгогдоогүй байна! Засварлах асуудлуудаа сонгоно уу." - notice_account_pending: "Таны дансыг үүсгэж дууслаа, администратор баталгаажуулах хүртэл хүлээнэ үү." - notice_default_data_loaded: Стандарт тохиргоог амжилттай ачааллаа. - notice_unable_delete_version: Хувилбарыг устгах боломжгүй. - notice_issue_done_ratios_updated: Issue done ratios updated. - - error_can_t_load_default_data: "Стандарт тохиргоог ачаалж чадсангүй: %{value}" - error_scm_not_found: "Repository дотор тухайн бичлэг эсвэл хувилбарыг олсонгүй." - error_scm_command_failed: "Repository-д хандахад алдаа гарлаа: %{value}" - error_scm_annotate: "Бичлэг байхгүй байна, эсвэл бичлэгт тайлбар хавсаргаж болохгүй." - error_issue_not_found_in_project: 'Сонгосон асуудал энэ төсөлд хамаардаггүй юм уу эсвэл системд байхгүй байна.' - error_no_tracker_in_project: 'No tracker is associated to this project. Please check the Project settings.' - error_no_default_issue_status: 'No default issue status is defined. Please check your configuration (Go to "Administration -> Issue statuses").' - error_can_not_reopen_issue_on_closed_version: 'An issue assigned to a closed version can not be reopened' - error_can_not_archive_project: This project can not be archived - error_issue_done_ratios_not_updated: "Issue done ratios not updated." - error_workflow_copy_source: 'Please select a source tracker or role' - error_workflow_copy_target: 'Please select target tracker(s) and role(s)' - - warning_attachments_not_saved: "%{count} file(s) файлыг хадгалж чадсангүй." - - mail_subject_lost_password: "Таны %{value} нууц үг" - mail_body_lost_password: 'Нууц үгээ өөрчлөхийн тулд доорх холбоос дээр дарна уу:' - mail_subject_register: "Таны %{value} дансыг идэвхжүүлэх" - mail_body_register: 'Дансаа идэвхжүүлэхийн тулд доорх холбоос дээр дарна уу:' - mail_body_account_information_external: "Та өөрийнхөө %{value} дансыг ашиглаж холбогдож болно." - mail_body_account_information: Таны дансны тухай мэдээлэл - mail_subject_account_activation_request: "%{value} дансыг идэвхжүүлэх хүсэлт" - mail_body_account_activation_request: "Шинэ хэрэглэгч (%{value}) бүртгүүлсэн байна. Таны баталгаажуулахыг хүлээж байна:" - mail_subject_reminder: "Дараагийн өдрүүдэд %{count} асуудлыг шийдэх хэрэгтэй (%{days})" - mail_body_reminder: "Танд оноогдсон %{count} асуудлуудыг дараагийн %{days} өдрүүдэд шийдэх хэрэгтэй:" - mail_subject_wiki_content_added: "'%{id}' wiki page has been added" - mail_body_wiki_content_added: "The '%{id}' wiki page has been added by %{author}." - mail_subject_wiki_content_updated: "'%{id}' wiki page has been updated" - mail_body_wiki_content_updated: "The '%{id}' wiki page has been updated by %{author}." - - - field_name: Нэр - field_description: Тайлбар - field_summary: Дүгнэлт - field_is_required: Зайлшгүй - field_firstname: Таны нэр - field_lastname: Овог - field_mail: Имэйл - field_filename: Файл - field_filesize: Хэмжээ - field_downloads: Татаж авах зүйлс - field_author: Зохиогч - field_created_on: Үүссэн - field_updated_on: Өөрчилсөн - field_field_format: Формат - field_is_for_all: Бүх төслийн хувьд - field_possible_values: Боломжтой утгууд - field_regexp: Энгийн илэрхийлэл - field_min_length: Минимум урт - field_max_length: Максимум урт - field_value: Утга - field_category: Төрөл - field_title: Гарчиг - field_project: Төсөл - field_issue: Асуудал - field_status: Төлөв - field_notes: Тэмдэглэлүүд - field_is_closed: Асуудал хаагдсан - field_is_default: Стандарт утга - field_tracker: Чиглэл - field_subject: Гарчиг - field_due_date: Дуусах огноо - field_assigned_to: Оноогдсон - field_priority: Зэрэглэл - field_fixed_version: Хувилбар - field_user: Хэрэглэгч - field_role: Хандалтын эрх - field_homepage: Нүүр хуудас - field_is_public: Олон нийтийн - field_parent: Эцэг төсөл нь - field_is_in_roadmap: Асуудлуудыг явцын зураг дээр харуулах - field_login: Нэвтрэх нэр - field_mail_notification: Имэйл мэдэгдлүүд - field_admin: Администратор - field_last_login_on: Сүүлийн холбоо - field_language: Хэл - field_effective_date: Огноо - field_password: Нууц үг - field_new_password: Шннэ нууц үг - field_password_confirmation: Баталгаажуулах - field_version: Хувилбар - field_type: Төрөл - field_host: Хост - field_port: Порт - field_account: Данс - field_base_dn: Үндсэн ДН - field_attr_login: Нэвтрэх аттрибут - field_attr_firstname: Таны нэр аттрибут - field_attr_lastname: Овог аттрибут - field_attr_mail: Имэйл аттрибут - field_onthefly: Хүссэн үедээ хэрэглэгч үүсгэх - field_start_date: Эхлэл - field_done_ratio: "%% Гүйцэтгэсэн" - field_auth_source: Нэвтрэх арга - field_hide_mail: Миний имэйл хаягийг нуу - field_comments: Тайлбар - field_url: URL Хаяг - field_start_page: Тэргүүн хуудас - field_subproject: Дэд төсөл - field_hours: Цаг - field_activity: Үйл ажиллагаа - field_spent_on: Огноо - field_identifier: Төслийн глобал нэр - field_is_filter: Шүүлтүүр болгон хэрэглэгддэг - field_issue_to: Хамаатай асуудал - field_delay: Хоцролт - field_assignable: Энэ хандалтын эрхэд асуудлуудыг оноож өгч болно - field_redirect_existing_links: Байгаа холбоосуудыг дахин чиглүүлэх - field_estimated_hours: Барагцаалсан цаг - field_column_names: Баганууд - field_time_zone: Цагын бүс - field_searchable: Хайж болох - field_default_value: Стандарт утга - field_comments_sorting: Тайлбаруудыг харуул - field_parent_title: Эцэг хуудас - field_editable: Засварлагдана - field_watcher: Харна - field_identity_url: OpenID URL - field_content: Агуулга - field_group_by: Үр дүнгээр бүлэглэх - field_sharing: Sharing - - setting_app_title: Программын гарчиг - setting_welcome_text: Мэндчилгээ - setting_default_language: Стандарт хэл - setting_login_required: Нэвтрэх шаардлагатай - setting_self_registration: Өөрийгөө бүртгүүлэх - setting_attachment_max_size: Хавсралт файлын дээд хэмжээ - setting_issues_export_limit: Асуудал экспортлох хязгаар - setting_mail_from: Ямар имэйл хаяг үүсгэх - setting_bcc_recipients: BCC талбарын хаягууд (bcc) - setting_plain_text_mail: дан текст мэйл (HTML биш) - setting_host_name: Хостын нэр болон зам - setting_text_formatting: Текст хэлбэржүүлэлт - setting_wiki_compression: Вики хуудсуудын түүх дээр шахалт хийх - setting_feeds_limit: Фийд агуулгын хязгаар - setting_default_projects_public: Шинэ төслүүд автоматаар олон нийтийнх байна - setting_autofetch_changesets: Комитуудыг автоматаар татаж авах - setting_sys_api_enabled: Репозитори менежментэд зориулан WS-ийг идэвхжүүлэх - setting_commit_ref_keywords: Хамааруулах түлхүүр үгс - setting_commit_fix_keywords: Зоолттой түлхүүр үгс - setting_autologin: Компьютер дээр санах - setting_date_format: Огнооны формат - setting_time_format: Цагийн формат - setting_cross_project_issue_relations: Төсөл хооронд асуудал хамааруулахыг зөвшөөрөх - setting_issue_list_default_columns: Асуудлуудыг харуулах стандарт баганууд - setting_emails_footer: Имэйлүүдийн хөл хэсэг - setting_protocol: Протокол - setting_per_page_options: Нэг хуудсанд байх обьектуудын тохиргоо - setting_user_format: Хэрэглэгчдийг харуулах формат - setting_activity_days_default: Төслийн үйл ажиллагаа хэсэгт үзүүлэх өдрийн тоо - setting_display_subprojects_issues: Дэд төслүүдийн асуудлуудыг автоматаар гол төсөл дээр харуулах - setting_enabled_scm: SCM - ийг идэвхжүүлэх - setting_mail_handler_body_delimiters: "Truncate emails after one of these lines" - setting_mail_handler_api_enabled: Ирсэн мэйлүүдийн хувьд WS-ийг идэвхжүүлэх - setting_mail_handler_api_key: API түлхүүр - setting_sequential_project_identifiers: Дэс дараалсан төслийн глобал нэр үүсгэж байх - setting_gravatar_enabled: Gravatar дүрсүүдийг хэрэглэгчдэд хэрэглэж байх - setting_gravatar_default: Default Gravatar image - setting_diff_max_lines_displayed: Ялгаатай мөрүүдийн тоо (дээд тал нь) - setting_file_max_size_displayed: Max size of text files displayed inline - setting_repository_log_display_limit: Maximum number of revisions displayed on file log - setting_openid: Allow OpenID login and registration - setting_password_min_length: Minimum password length - setting_new_project_user_role_id: Role given to a non-admin user who creates a project - setting_default_projects_modules: Default enabled modules for new projects - setting_issue_done_ratio: Calculate the issue done ratio with - setting_issue_done_ratio_issue_field: Use the issue field - setting_issue_done_ratio_issue_status: Use the issue status - setting_start_of_week: Start calendars on - setting_rest_api_enabled: Enable REST web service - setting_cache_formatted_text: Cache formatted text - - permission_add_project: Create project - permission_add_subprojects: Create subprojects - permission_edit_project: Төслийг засварлах - permission_select_project_modules: Төслийн модулуудийг сонгоно уу - permission_manage_members: Системийн хэрэглэгчид - permission_manage_project_activities: Manage project activities - permission_manage_versions: Хувилбарууд - permission_manage_categories: Асуудлын ангиллууд - permission_view_issues: Асуудлуудыг харах - permission_add_issues: Асуудлууд нэмэх - permission_edit_issues: Асуудлуудыг засварлах - permission_manage_issue_relations: Асуудлын хамаарлыг зохицуулах - permission_add_issue_notes: Тэмдэглэл нэмэх - permission_edit_issue_notes: Тэмдэглэлүүд засварлах - permission_edit_own_issue_notes: Өөрийн үлдээсэн тэмдэглэлүүдийг засварлах - permission_delete_issues: Асуудлуудыг устгах - permission_manage_public_queries: Олон нийтийн асуултууд - permission_save_queries: Асуултуудыг хадгалах - permission_view_gantt: Гант диаграмыг үзэх - permission_view_calendar: Календарь үзэх - permission_view_issue_watchers: Ажиглагчдын жагсаалтыг харах - permission_add_issue_watchers: Ажиглагчид нэмэх - permission_delete_issue_watchers: Ажиглагчдыг устгах - permission_log_time: Зарцуулсан хугацааг лог хийх - permission_view_time_entries: Зарцуулсан хугацааг харах - permission_edit_time_entries: Хугацааны логуудыг засварлах - permission_edit_own_time_entries: Өөрийн хугацааны логуудыг засварлах - permission_manage_news: Мэдээ мэдээллүүд - permission_comment_news: Мэдээнд тайлбар үлдээх - permission_view_documents: Бичиг баримтуудыг харах - permission_manage_files: Файлууд - permission_view_files: Файлуудыг харах - permission_manage_wiki: Вики удирдах - permission_rename_wiki_pages: Вики хуудсуудыг дахиж нэрлэх - permission_delete_wiki_pages: Вики хуудсуудыг устгах - permission_view_wiki_pages: Вики үзэх - permission_view_wiki_edits: Вики түүх үзэх - permission_edit_wiki_pages: Вики хуудсуудыг засварлах - permission_delete_wiki_pages_attachments: Хавсралтуудыг устгах - permission_protect_wiki_pages: Вики хуудсуудыг хамгаалах - permission_manage_repository: Репозитори - permission_browse_repository: Репозиторийг үзэх - permission_view_changesets: Өөрчлөлтүүдийг харах - permission_commit_access: Коммит хандалт - permission_manage_boards: Самбарууд - permission_view_messages: Зурвасуудыг харах - permission_add_messages: Зурвас илгээх - permission_edit_messages: Зурвасуудыг засварлах - permission_edit_own_messages: Өөрийн зурвасуудыг засварлах - permission_delete_messages: Зурвасуудыг устгах - permission_delete_own_messages: Өөрийн зурвасуудыг устгах - permission_export_wiki_pages: Вики хуудсуудыг экспорт хийх - - project_module_issue_tracking: Асуудал хянах - project_module_time_tracking: Хугацаа хянах - project_module_news: Мэдээ мэдээллүүд - project_module_documents: Бичиг баримтууд - project_module_files: Файлууд - project_module_wiki: Вики - project_module_repository: Репозитори - project_module_boards: Самбарууд - - label_user: Хэрэглэгч - label_user_plural: Хэрэглэгчид - label_user_new: Шинэ хэрэглэгч - label_user_anonymous: Хамаагүй хэрэглэгч - label_project: Төсөл - label_project_new: Шинэ төсөл - label_project_plural: Төслүүд - label_x_projects: - zero: төсөл байхгүй - one: 1 төсөл - other: "%{count} төслүүд" - label_project_all: Бүх Төслүүд - label_project_latest: Сүүлийн үеийн төслүүд - label_issue: Асуудал - label_issue_new: Шинэ асуудал - label_issue_plural: Асуудлууд - label_issue_view_all: Бүх асуудлуудыг харах - label_issues_by: "%{value} - н асуудлууд" - label_issue_added: Асуудал нэмэгдлээ - label_issue_updated: Асуудал өөрчлөгдлөө - label_document: Бичиг баримт - label_document_new: Шинэ бичиг баримт - label_document_plural: Бичиг баримтууд - label_document_added: Бичиг баримт нэмэгдлээ - label_role: Хандалтын эрх - label_role_plural: Хандалтын эрхүүд - label_role_new: Шинэ хандалтын эрх - label_role_and_permissions: Хандалтын эрхүүд болон зөвшөөрлүүд - label_member: Гишүүн - label_member_new: Шинэ гишүүн - label_member_plural: Гишүүд - label_tracker: Чиглэл - label_tracker_plural: Чиглэлүүд - label_tracker_new: Шинэ чиглэл - label_workflow: Ажлын дараалал - label_issue_status: Асуудлын төлөв - label_issue_status_plural: Асуудлын төлвүүд - label_issue_status_new: Шинэ төлөв - label_issue_category: Асуудлын ангилал - label_issue_category_plural: Асуудлын ангиллууд - label_issue_category_new: Шинэ ангилал - label_custom_field: Хэрэглэгчийн тодорхойлсон талбар - label_custom_field_plural: Хэрэглэгчийн тодорхойлсон талбарууд - label_custom_field_new: Шинээр хэрэглэгчийн тодорхойлсон талбар үүсгэх - label_enumerations: Ангиллууд - label_enumeration_new: Шинэ утга - label_information: Мэдээлэл - label_information_plural: Мэдээллүүд - label_register: Бүртгүүлэх - label_login_with_open_id_option: or login with OpenID - label_password_lost: Нууц үгээ алдсан - label_home: Нүүр - label_my_page: Миний хуудас - label_my_account: Миний данс - label_my_projects: Миний төслүүд - label_administration: Админ хэсэг - label_login: Нэвтрэх - label_logout: Гарах - label_help: Тусламж - label_reported_issues: Мэдэгдсэн асуудлууд - label_assigned_to_me_issues: Надад оноогдсон асуудлууд - label_last_login: Сүүлийн холболт - label_registered_on: Бүртгүүлсэн огноо - label_activity: Үйл ажиллагаа - label_overall_activity: Ерөнхий үйл ажиллагаа - label_user_activity: "%{value}-ийн үйл ажиллагаа" - label_new: Шинэ - label_logged_as: Холбогдсон нэр - label_environment: Орчин - label_authentication: Нэвтрэх - label_auth_source: Нэвтрэх арга - label_auth_source_new: Шинэ нэвтрэх арга - label_auth_source_plural: Нэвтрэх аргууд - label_subproject_plural: Дэд төслүүд - label_subproject_new: Шинэ дэд төсөл - label_and_its_subprojects: "%{value} болон холбогдох дэд төслүүд" - label_min_max_length: Дээд - Доод урт - label_list: Жагсаалт - label_date: Огноо - label_integer: Бүхэл тоо - label_float: Бутархай тоо - label_boolean: Үнэн худал утга - label_string: Текст - label_text: Урт текст - label_attribute: Аттрибут - label_attribute_plural: Аттрибутууд - label_no_data: Үзүүлэх өгөгдөл байхгүй байна - label_change_status: Төлвийг өөрчлөх - label_history: Түүх - label_attachment: Файл - label_attachment_new: Шинэ файл - label_attachment_delete: Файл устгах - label_attachment_plural: Файлууд - label_file_added: Файл нэмэгдлээ - label_report: Тайлан - label_report_plural: Тайлангууд - label_news: Мэдээ - label_news_new: Шинэ мэдээ - label_news_plural: Мэдээ - label_news_latest: Сүүлийн үеийн мэдээнүүд - label_news_view_all: Бүх мэдээг харах - label_news_added: Мэдээ нэмэгдлээ - label_settings: Тохиргоо - label_overview: Эхлэл - label_version: Хувилбар - label_version_new: Шинэ хувилбар - label_version_plural: Хувилбарууд - label_close_versions: Гүйцэт хувилбаруудыг хаалаа - label_confirmation: Баталгаажуулах - label_export_to: 'Өөр авч болох формат:' - label_read: Унших... - label_public_projects: Олон нийтийн төслүүд - label_open_issues: нээлттэй - label_open_issues_plural: нээлттэй - label_closed_issues: хаалттай - label_closed_issues_plural: хаалттай - label_x_open_issues_abbr: - zero: 0 нээлттэй - one: 1 нээлттэй - other: "%{count} нээлттэй" - label_x_closed_issues_abbr: - zero: 0 хаалттай - one: 1 хаалттай - other: "%{count} хаалттай" - label_total: Нийт - label_permissions: Зөвшөөрлүүд - label_current_status: Одоогийн төлөв - label_new_statuses_allowed: Шинээр олгож болох төлвүүд - label_all: бүгд - label_none: хоосон - label_nobody: хэн ч биш - label_next: Дараагийн - label_previous: Өмнөх - label_used_by: Хэрэглэгддэг - label_details: Дэлгэрэнгүй - label_add_note: Тэмдэглэл нэмэх - label_calendar: Календарь - label_months_from: Саруудыг хаанаас - label_gantt: Гант диаграм - label_internal: Дотоод - label_last_changes: "сүүлийн %{count} өөрчлөлтүүд" - label_change_view_all: Бүх өөрчлөлтүүдийг харах - label_comment: Тайлбар - label_comment_plural: Тайлбарууд - label_x_comments: - zero: сэтгэгдэл байхгүй - one: 1 сэтгэгдэлтэй - other: "%{count} сэтгэгдэлтэй" - label_comment_add: Тайлбар нэмэх - label_comment_added: Тайлбар нэмэгдлээ - label_comment_delete: Тайлбарууд устгах - label_query: Хэрэглэгчийн тодорхойлсон асуулт - label_query_plural: Хэрэглэгчийн тодорхойлсон асуултууд - label_query_new: Шинээр хэрэглэгчийн тодорхойлсон асуулт үүсгэх - label_filter_add: Шүүлтүүр нэмэх - label_filter_plural: Шүүлтүүрүүд - label_equals: бол - label_not_equals: биш - label_in_less_than: аас бага - label_in_more_than: аас их - label_greater_or_equal: '>=' - label_less_or_equal: '<=' - label_in: дотор - label_today: өнөөдөр - label_yesterday: өчигдөр - label_this_week: энэ долоо хоног - label_last_week: өнгөрсөн долоо хоног - label_last_n_days: "сүүлийн %{count} өдрүүд" - label_this_month: энэ сар - label_last_month: сүүлийн сар - label_this_year: энэ жил - label_date_range: Хязгаар огноо - label_less_than_ago: бага өдрийн дотор - label_more_than_ago: их өдрийн дотор - label_ago: өдрийн өмнө - label_contains: агуулж байгаа - label_not_contains: агуулаагүй - label_day_plural: өдрүүд - label_repository: Репозитори - label_repository_plural: Репозиторууд - label_browse: Үзэх - label_branch: Салбар - label_tag: Шошго - label_revision: Хувилбар - label_revision_plural: Хувилбарууд - label_revision_id: "%{value} Хувилбар" - label_associated_revisions: Хамааралтай хувилбарууд - label_added: нэмэгдсэн - label_modified: өөрчлөгдсөн - label_copied: хуулсан - label_renamed: нэрийг нь өөрчилсөн - label_deleted: устгасан - label_latest_revision: Сүүлийн үеийн хувилбар - label_latest_revision_plural: Сүүлийн үеийн хувилбарууд - label_view_revisions: Хувилбаруудыг харах - label_view_all_revisions: Бүх хувилбаруудыг харах - label_max_size: Maximum size - label_sort_highest: Хамгийн дээр - label_sort_higher: Дээш нь - label_sort_lower: Доош нь - label_sort_lowest: Хамгийн доор - label_roadmap: Хөтөч - label_roadmap_due_in: "%{value} дотор дуусгах" - label_roadmap_overdue: "%{value} оройтсон" - label_roadmap_no_issues: Энэ хувилбарт асуудал байхгүй байна - label_search: Хайх - label_result_plural: Үр дүн - label_all_words: Бүх үгс - label_wiki: Вики - label_wiki_edit: Вики засвар - label_wiki_edit_plural: Вики засварууд - label_wiki_page: Вики хуудас - label_wiki_page_plural: Вики хуудас - label_index_by_title: Гарчгаар эрэмбэлэх - label_index_by_date: Огноогоор эрэмбэлэх - label_current_version: Одоогийн хувилбар - label_preview: Ямар харагдахыг шалгах - label_feed_plural: Feeds - label_changes_details: Бүх өөрчлөлтүүдийн дэлгэрэнгүй - label_issue_tracking: Асуудал хянах - label_spent_time: Зарцуулсан хугацаа - label_f_hour: "%{value} цаг" - label_f_hour_plural: "%{value} цаг" - label_time_tracking: Хугацааг хянах - label_change_plural: Өөрчлөлтүүд - label_statistics: Статистик - label_commits_per_month: Сард хийсэн коммитын тоо - label_commits_per_author: Зохиогч бүрийн хувьд коммитын тоо - label_view_diff: Ялгаануудыг харах - label_diff_inline: дотор нь - label_diff_side_by_side: зэрэгцүүлж - label_options: Тохиргоо - label_copy_workflow_from: Ажлын дарааллыг хуулах - label_permissions_report: Зөвшөөрлүүдийн таблиц - label_watched_issues: Ажиглагдаж байгаа асуудлууд - label_related_issues: Хамааралтай асуудлууд - label_applied_status: Олгосон төлөв - label_loading: Ачаалж байна... - label_relation_new: Шинэ хамаарал - label_relation_delete: Хамаарлыг устгах - label_relates_to: энгийн хамааралтай - label_duplicates: хос хамааралтай - label_duplicated_by: давхардуулсан эзэн - label_blocks: шаардах хамааралтай - label_blocked_by: блоколсон эзэн - label_precedes: урьдчилах хамааралтай - label_follows: дагаж - label_stay_logged_in: Энэ комьютер дээр санах - label_disabled: идэвхгүй болсон - label_show_completed_versions: Гүйцэд хувилбаруудыг харуулах - label_me: би - label_board: Форум - label_board_new: Шинэ форум - label_board_plural: Форумууд - label_board_locked: Түгжээтэй - label_board_sticky: Sticky - label_topic_plural: Сэдвүүд - label_message_plural: Зурвасууд - label_message_last: Сүүлийн зурвас - label_message_new: Шинэ зурвас - label_message_posted: Зурвас нэмэгдлээ - label_reply_plural: Хариултууд - label_send_information: Дансны мэдээллийг хэрэглэгчид илгээх - label_year: Жил - label_month: Сар - label_week: Долоо хоног - label_date_from: Хэзээнээс - label_date_to: Хэдий хүртэл - label_language_based: Хэрэглэгчийн хэлнас шалтгаалан - label_sort_by: "%{value} талбараар нь эрэмбэлэх" - label_send_test_email: Турших мэйл илгээх - label_feeds_access_key: Atom хандах түлхүүр - label_missing_feeds_access_key: Atom хандах түлхүүр алга - label_feeds_access_key_created_on: "Atom хандалтын түлхүүр %{value}-ийн өмнө үүссэн" - label_module_plural: Модулууд - label_added_time_by: "%{author} %{age}-ийн өмнө нэмсэн" - label_updated_time_by: "%{author} %{age}-ийн өмнө өөрчилсөн" - label_updated_time: "%{value} -ийн өмнө өөрчлөгдсөн" - label_jump_to_a_project: Төсөл рүү очих... - label_file_plural: Файлууд - label_changeset_plural: Өөрчлөлтүүд - label_default_columns: Стандарт баганууд - label_no_change_option: (Өөрчлөлт байхгүй) - label_bulk_edit_selected_issues: Сонгогдсон асуудлуудыг бөөнөөр засварлах - label_theme: Системийн Дизайн - label_default: Стандарт - label_search_titles_only: Зөвхөн гарчиг хайх - label_user_mail_option_all: "Миний бүх төсөл дээрх бүх үзэгдлүүдийн хувьд" - label_user_mail_option_selected: "Сонгогдсон төслүүдийн хувьд бүх үзэгдэл дээр..." - label_user_mail_no_self_notified: "Миний өөрийн хийсэн өөрчлөлтүүдийн тухай надад мэдэгдэх хэрэггүй" - label_registration_activation_by_email: дансыг имэйлээр идэвхжүүлэх - label_registration_manual_activation: дансыг гараар идэвхжүүлэх - label_registration_automatic_activation: дансыг автоматаар идэвхжүүлэх - label_display_per_page: 'Нэг хуудсанд: %{value}' - label_age: Нас - label_change_properties: Тохиргоог өөрчлөх - label_general: Ерөнхий - label_scm: SCM - label_plugins: Модулууд - label_ldap_authentication: LDAP нэвтрэх горим - label_downloads_abbr: D/L - label_optional_description: Дурын тайлбар - label_add_another_file: Дахин файл нэмэх - label_preferences: Тохиргоо - label_chronological_order: Цагаан толгойн үсгийн дарааллаар - label_reverse_chronological_order: Урвуу цагаан толгойн үсгийн дарааллаар - label_incoming_emails: Ирсэн мэйлүүд - label_generate_key: Түлхүүр үүсгэх - label_issue_watchers: Ажиглагчид - label_example: Жишээ - label_display: Display - label_sort: Sort - label_ascending: Ascending - label_descending: Descending - label_date_from_to: From %{start} to %{end} - label_wiki_content_added: Wiki page added - label_wiki_content_updated: Wiki page updated - label_group: Group - label_group_plural: Groups - label_group_new: New group - label_time_entry_plural: Spent time - label_version_sharing_none: Not shared - label_version_sharing_descendants: With subprojects - label_version_sharing_hierarchy: With project hierarchy - label_version_sharing_tree: With project tree - label_version_sharing_system: With all projects - label_update_issue_done_ratios: Update issue done ratios - label_copy_source: Source - label_copy_target: Target - label_copy_same_as_target: Same as target - label_display_used_statuses_only: Only display statuses that are used by this tracker - label_api_access_key: API access key - label_missing_api_access_key: Missing an API access key - label_api_access_key_created_on: "API access key created %{value} ago" - - button_login: Нэвтрэх - button_submit: Илгээх - button_save: Хадгалах - button_check_all: Бүгдийг сонго - button_uncheck_all: Бүгдийг үл сонго - button_delete: Устгах - button_create: Үүсгэх - button_create_and_continue: Үүсгээд цааш үргэлжлүүлэх - button_test: Турших - button_edit: Засварлах - button_add: Нэмэх - button_change: Өөрчлөх - button_apply: Өөрчлөлтийг хадгалах - button_clear: Цэвэрлэх - button_lock: Түгжих - button_unlock: Түгжээг тайлах - button_download: Татах - button_list: Жагсаалт - button_view: Харах - button_move: Зөөх - button_move_and_follow: Зөө бас дага - button_back: Буцах - button_cancel: Болих - button_activate: Идэвхжүүлэх - button_sort: Эрэмбэлэх - button_log_time: Лог хийсэн хугацаа - button_rollback: Энэ хувилбар руу буцах - button_watch: Ажиглах - button_unwatch: Ажиглахаа болих - button_reply: Хариулах - button_archive: Архивлах - button_unarchive: Архивыг задлах - button_reset: Анхны утгууд - button_rename: Нэрийг нь солих - button_change_password: Нууц үгээ өөрчлөх - button_copy: Хуулах - button_copy_and_follow: Зөө бас дага - button_annotate: Тайлбар хавсаргах - button_update: Шинэчлэх - button_configure: Тохируулах - button_quote: Ишлэл - button_show: Үзэх - - status_active: идэвхтэй - status_registered: бүртгүүлсэн - status_locked: түгжээтэй - - version_status_open: нээлттэй - version_status_locked: түгжээтэй - version_status_closed: хаалттай - - field_active: идэвхтэй - - text_select_mail_notifications: Ямар үед имэйлээр мэдэгдэл илгээхийг сонгоно уу. - text_regexp_info: eg. ^[A-Z0-9]+$ - text_min_max_length_info: 0 гэвэл ямар ч хязгааргүй гэсэн үг - text_project_destroy_confirmation: Та энэ төсөл болоод бусад мэдээллийг нь үнэхээр устгамаар байна уу ? - text_subprojects_destroy_warning: "Уг төслийн дэд төслүүд : %{value} нь бас устгагдах болно." - text_workflow_edit: Ажлын дарааллыг өөрчлөхийн тулд хандалтын эрх болон асуудлын чиглэлийг сонгоно уу - text_are_you_sure: Та итгэлтэй байна уу ? - text_journal_changed: "%{label} %{old} байсан нь %{new} болов" - text_journal_set_to: "%{label} %{value} болгож өөрчиллөө" - text_journal_deleted: "%{label} устсан (%{old})" - text_journal_added: "%{label} %{value} нэмэгдсэн" - text_tip_issue_begin_day: энэ өдөр эхлэх ажил - text_tip_issue_end_day: энэ өдөр дуусах ажил - text_tip_issue_begin_end_day: энэ өдөр эхлээд мөн дуусч байгаа ажил - text_caracters_maximum: "дээд тал нь %{count} үсэг." - text_caracters_minimum: "Хамгийн багадаа ядаж %{count} тэмдэгт байх." - text_length_between: "Урт нь багадаа %{min}, ихдээ %{max} тэмдэгт." - text_tracker_no_workflow: Энэхүү асуудлын чиглэлд ямар ч ажлын дараалал тодорхойлогдоогүй байна - text_unallowed_characters: Хэрэглэж болохгүй тэмдэгтүүд - text_comma_separated: Таслалаар зааглан олон утга оруулж болно. - text_line_separated: Multiple values allowed (one line for each value). - text_issues_ref_in_commit_messages: Коммитийн зурвасуудад хамааруулсан болон байнгын асуудлууд - text_issue_added: "Асуудал %{id} - ийг хэрэглэгч %{author} мэдэгдсэн байна." - text_issue_updated: "Асуудал %{id} - ийг хэрэглэгч %{author} өөрчилсөн байна." - text_wiki_destroy_confirmation: Та энэ вики болон холбогдох бүх мэдээллийг үнэхээр устгамаар байна уу ? - text_issue_category_destroy_question: "Энэ ангилалд зарим асуудлууд (%{count}) орсон байна. Та яах вэ ?" - text_issue_category_destroy_assignments: Асуудлуудыг энэ ангиллаас авах - text_issue_category_reassign_to: Асуудлуудыг энэ ангилалд дахин оноох - text_user_mail_option: "Сонгогдоогүй төслүүдийн хувьд, та зөвхөн өөрийнхөө ажиглаж байгаа зүйлс юмуу танд хамаатай зүйлсийн талаар мэдэгдэл авах болно (Таны оруулсан асуудал, эсвэл танд оноосон гэх мэт)." - text_no_configuration_data: "Хандалтын эрхүүд, чиглэлүүд, асуудлын төлвүүд болон ажлын дарааллын тухай мэдээллийг хараахан оруулаагүй байна.\nТа стандарт өгөгдлүүдийг даруйхан оруулахыг зөвлөж байна, оруулсан хойно та засварлаж болно." - text_load_default_configuration: Стандарт өгөгдлийг ачаалах - text_status_changed_by_changeset: "%{value} өөрчлөлтөд хийгдсэн." - text_issues_destroy_confirmation: 'Та сонгогдсон асуудлуудыг үнэхээр устгамаар байна уу ?' - text_select_project_modules: 'Энэ төслийн хувьд идэвхжүүлэх модулуудаа сонгоно уу:' - text_default_administrator_account_changed: Стандарт администраторын бүртгэл өөрчлөгдлөө - text_file_repository_writable: Хавсралт файл хадгалах хавтас руу бичих эрхтэй - text_plugin_assets_writable: Плагин модулийн ассет хавтас руу бичих эрхтэй - text_minimagick_available: MiniMagick суулгагдсан (заавал биш) - text_destroy_time_entries_question: "Таны устгах гэж байгаа асуудлууд дээр нийт %{hours} цаг зарцуулсан юм байна, та яах вэ ?" - text_destroy_time_entries: Мэдэгдсэн цагуудыг устгах - text_assign_time_entries_to_project: Мэдэгдсэн асуудлуудыг төсөлд оноох - text_reassign_time_entries: 'Мэдэгдсэн асуудлуудыг энэ асуудалд дахин оноо:' - text_user_wrote: "%{value} бичихдээ:" - text_user_wrote_in: "%{value} бичихдээ (%{link}):" - text_enumeration_destroy_question: "Энэ утгад %{count} обьект оноогдсон байна." - text_enumeration_category_reassign_to: 'Тэдгээрийг энэ утгад дахин оноо:' - text_email_delivery_not_configured: "Имэйлийн тохиргоог хараахан тохируулаагүй байна, тиймээс имэйл мэдэгдэл явуулах боломжгүй байна.\nSMTP сервэрээ config/configuration.yml файл дотор тохируулаад төслийн менежерээ дахиад эхлүүлээрэй." - text_repository_usernames_mapping: "Репозиторийн логд байгаа бүх хэрэглэгчийн нэрүүдэд харгалзсан Төслийн Менежер системд бүртгэлтэй хэрэглэгчдийг Сонгох юмуу шинэчилнэ үү.\nТөслийн менежер болон репозиторид байгаа ижилхэн нэр юмуу имэйлтэй хэрэглэгчид харилцан харгалзна." - text_diff_truncated: '... Файлын ялгаврын хэмжээ үзүүлэхэд дэндүү урт байгаа учраас төгсгөлөөс нь хасч үзүүлэв.' - text_custom_field_possible_values_info: 'One line for each value' - text_wiki_page_destroy_question: "This page has %{descendants} child page(s) and descendant(s). What do you want to do?" - text_wiki_page_nullify_children: "Keep child pages as root pages" - text_wiki_page_destroy_children: "Delete child pages and all their descendants" - text_wiki_page_reassign_children: "Reassign child pages to this parent page" - 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?" - - default_role_manager: Менежер - default_role_developer: Хөгжүүлэгч - default_role_reporter: Мэдэгдэгч - default_tracker_bug: Алдаа - default_tracker_feature: Онцлог - default_tracker_support: Тусламж - default_issue_status_new: Шинэ - default_issue_status_in_progress: Ахицтай - default_issue_status_resolved: Шийдвэрлэгдсэн - default_issue_status_feedback: Feedback - default_issue_status_closed: Хаагдсан - default_issue_status_rejected: Хүлээж аваагүй - default_doc_category_user: Хэрэглэгчийн бичиг баримт - default_doc_category_tech: Техникийн бичиг баримт - default_priority_low: Бага - default_priority_normal: Хэвийн - default_priority_high: Өндөр - default_priority_urgent: Нэн яаралтай - default_priority_immediate: Нэн даруй - default_activity_design: Дизайн - default_activity_development: Хөгжүүлэлт - - enumeration_issue_priorities: Асуудлын зэрэглэлүүд - enumeration_doc_categories: Бичиг баримтын ангиллууд - enumeration_activities: Үйл ажиллагаанууд (хугацааг хянах) - enumeration_system_activity: Системийн үйл ажиллагаа - - permission_manage_subtasks: Manage subtasks - label_profile: Profile - field_parent_issue: Parent task - error_unable_delete_issue_status: Unable to delete issue status (%{value}) - label_subtask_plural: Subtasks - label_project_copy_notifications: Send email notifications during the project copy - error_can_not_delete_custom_field: Unable to delete custom field - error_unable_to_connect: Unable to connect (%{value}) - error_can_not_remove_role: This role is in use and can not be deleted. - error_can_not_delete_tracker: This tracker contains issues and cannot be deleted. - field_principal: Principal - notice_failed_to_save_members: "Failed to save member(s): %{errors}." - text_zoom_out: Zoom out - text_zoom_in: Zoom in - notice_unable_delete_time_entry: Unable to delete time log entry. - label_overall_spent_time: Overall spent time - field_time_entries: Log time - project_module_gantt: Gantt - project_module_calendar: Calendar - button_edit_associated_wikipage: "Edit associated Wiki page: %{page_title}" - field_text: Text field - setting_default_notification_option: Default notification option - label_user_mail_option_only_my_events: Only for things I watch or I'm involved in - label_user_mail_option_none: No events - field_member_of_group: Assignee's group - field_assigned_to_role: Assignee's role - notice_not_authorized_archived_project: The project you're trying to access has been archived. - label_principal_search: "Search for user or group:" - label_user_search: "Search for user:" - field_visible: Visible - setting_commit_logtime_activity_id: Activity for logged time - text_time_logged_by_changeset: Applied in changeset %{value}. - setting_commit_logtime_enabled: Enable time logging - notice_gantt_chart_truncated: The chart was truncated because it exceeds the maximum number of items that can be displayed (%{max}) - setting_gantt_items_limit: Maximum number of items displayed on the gantt chart - field_warn_on_leaving_unsaved: Warn me when leaving a page with unsaved text - text_warn_on_leaving_unsaved: The current page contains unsaved text that will be lost if you leave this page. - label_my_queries: My custom queries - text_journal_changed_no_detail: "%{label} updated" - label_news_comment_added: Comment added to a news - button_expand_all: Expand all - button_collapse_all: Collapse all - label_additional_workflow_transitions_for_assignee: Additional transitions allowed when the user is the assignee - label_additional_workflow_transitions_for_author: Additional transitions allowed when the user is the author - label_bulk_edit_selected_time_entries: Bulk edit selected time entries - text_time_entries_destroy_confirmation: Are you sure you want to delete the selected time entr(y/ies)? - label_role_anonymous: Anonymous - label_role_non_member: Non member - label_issue_note_added: Note added - label_issue_status_updated: Status updated - label_issue_priority_updated: Priority updated - label_issues_visibility_own: Issues created by or assigned to the user - field_issues_visibility: Issues visibility - label_issues_visibility_all: All issues - permission_set_own_issues_private: Set own issues public or private - field_is_private: Private - permission_set_issues_private: Set issues public or private - label_issues_visibility_public: All non private issues - text_issues_destroy_descendants_confirmation: This will also delete %{count} subtask(s). - field_commit_logs_encoding: Коммит хийх үед харуулах текстүүдийн энкодинг - field_scm_path_encoding: Path encoding - text_scm_path_encoding_note: "Default: UTF-8" - field_path_to_repository: Path to repository - field_root_directory: Root directory - field_cvs_module: Module - field_cvsroot: CVSROOT - text_mercurial_repository_note: Local repository (e.g. /hgrepo, c:\hgrepo) - text_scm_command: Command - text_scm_command_version: Version - label_git_report_last_commit: Report last commit for files and directories - notice_issue_successful_create: Issue %{id} created. - label_between: between - setting_issue_group_assignment: Allow issue assignment to groups - label_diff: diff - text_git_repository_note: Repository is bare and local (e.g. /gitrepo, c:\gitrepo) - description_query_sort_criteria_direction: Sort direction - description_project_scope: Search scope - description_filter: Filter - description_user_mail_notification: Mail notification settings - description_message_content: Message content - description_available_columns: Available Columns - description_issue_category_reassign: Choose issue category - description_search: Searchfield - description_notes: Notes - description_choose_project: Projects - description_query_sort_criteria_attribute: Sort attribute - description_wiki_subpages_reassign: Choose new parent page - description_selected_columns: Selected Columns - label_parent_revision: Parent - label_child_revision: Child - error_scm_annotate_big_text_file: The entry cannot be annotated, as it exceeds the maximum text file size. - setting_default_issue_start_date_to_creation_date: Use current date as start date for new issues - button_edit_section: Edit this section - setting_repositories_encodings: Attachments and repositories encodings - description_all_columns: All Columns - button_export: Export - label_export_options: "%{export_format} export options" - error_attachment_too_big: This file cannot be uploaded because it exceeds the maximum allowed file size (%{max_size}) - notice_failed_to_save_time_entries: "Failed to save %{count} time entrie(s) on %{total} selected: %{ids}." - label_x_issues: - zero: 0 Асуудал - one: 1 Асуудал - other: "%{count} Асуудлууд" - label_repository_new: New repository - field_repository_is_default: Main repository - label_copy_attachments: Copy attachments - label_item_position: "%{position}/%{count}" - label_completed_versions: Completed versions - text_project_identifier_info: Only lower case letters (a-z), numbers, dashes and underscores are allowed.
    Once saved, the identifier cannot be changed. - field_multiple: Multiple values - setting_commit_cross_project_ref: Allow issues of all the other projects to be referenced and fixed - text_issue_conflict_resolution_add_notes: Add my notes and discard my other changes - text_issue_conflict_resolution_overwrite: Apply my changes anyway (previous notes will be kept but some changes may be overwritten) - notice_issue_update_conflict: The issue has been updated by an other user while you were editing it. - text_issue_conflict_resolution_cancel: Discard all my changes and redisplay %{link} - permission_manage_related_issues: Manage related issues - field_auth_source_ldap_filter: LDAP filter - label_search_for_watchers: Search for watchers to add - notice_account_deleted: Your account has been permanently deleted. - setting_unsubscribe: Allow users to delete their own account - button_delete_my_account: Delete my account - text_account_destroy_confirmation: |- - Are you sure you want to proceed? - Your account will be permanently deleted, with no way to reactivate it. - error_session_expired: Your session has expired. Please login again. - text_session_expiration_settings: "Warning: changing these settings may expire the current sessions including yours." - setting_session_lifetime: Session maximum lifetime - setting_session_timeout: Session inactivity timeout - label_session_expiration: Session expiration - permission_close_project: Close / reopen the project - button_close: Close - button_reopen: Reopen - project_status_active: active - project_status_closed: closed - project_status_archived: archived - text_project_closed: This project is closed and read-only. - notice_user_successful_create: User %{id} created. - field_core_fields: Standard fields - field_timeout: Timeout (in seconds) - setting_thumbnails_enabled: Display attachment thumbnails - setting_thumbnails_size: Thumbnails size (in pixels) - label_status_transitions: Status transitions - label_fields_permissions: Fields permissions - label_readonly: Read-only - label_required: Required - text_repository_identifier_info: Only lower case letters (a-z), numbers, dashes and underscores are allowed.
    Once saved, the identifier cannot be changed. - field_board_parent: Parent forum - label_attribute_of_project: Project's %{name} - label_attribute_of_author: Author's %{name} - label_attribute_of_assigned_to: Assignee's %{name} - label_attribute_of_fixed_version: Target version's %{name} - label_copy_subtasks: Copy subtasks - label_copied_to: copied to - label_copied_from: copied from - label_any_issues_in_project: any issues in project - label_any_issues_not_in_project: any issues not in project - field_private_notes: Private notes - permission_view_private_notes: View private notes - permission_set_notes_private: Set notes as private - label_no_issues_in_project: no issues in project - label_any: бүгд - label_last_n_weeks: last %{count} weeks - setting_cross_project_subtasks: Allow cross-project subtasks - label_cross_project_descendants: With subprojects - label_cross_project_tree: With project tree - label_cross_project_hierarchy: With project hierarchy - label_cross_project_system: With all projects - button_hide: Hide - setting_non_working_week_days: Non-working days - label_in_the_next_days: in the next - label_in_the_past_days: in the past - label_attribute_of_user: User's %{name} - text_turning_multiple_off: If you disable multiple values, multiple values will be - removed in order to preserve only one value per item. - label_attribute_of_issue: Issue's %{name} - permission_add_documents: Add documents - permission_edit_documents: Edit documents - permission_delete_documents: Delete documents - label_gantt_progress_line: Progress line - setting_jsonp_enabled: Enable JSONP support - field_inherit_members: Inherit members - field_closed_on: Closed - field_generate_password: Generate password - setting_default_projects_tracker_ids: Default trackers for new projects - label_total_time: Нийт - text_scm_config: You can configure your SCM commands in config/configuration.yml. Please restart the application after editing it. - text_scm_command_not_available: SCM command is not available. Please check settings on the administration panel. - setting_emails_header: Email header - notice_account_not_activated_yet: You haven't activated your account yet. If you want - to receive a new activation email, please click this link. - notice_account_locked: Your account is locked. - label_hidden: Hidden - label_visibility_private: to me only - label_visibility_roles: to these roles only - label_visibility_public: to any users - field_must_change_passwd: Must change password at next logon - notice_new_password_must_be_different: The new password must be different from the - current password - setting_mail_handler_excluded_filenames: Exclude attachments by name - text_convert_available: ImageMagick convert available (optional) - label_link: Link - label_only: only - label_drop_down_list: drop-down list - label_checkboxes: checkboxes - label_link_values_to: Link values to URL - setting_force_default_language_for_anonymous: Force default language for anonymous - users - setting_force_default_language_for_loggedin: Force default language for logged-in - users - label_custom_field_select_type: Select the type of object to which the custom field - is to be attached - label_issue_assigned_to_updated: Assignee updated - label_check_for_updates: Check for updates - label_latest_compatible_version: Latest compatible version - label_unknown_plugin: Unknown plugin - label_radio_buttons: radio buttons - label_group_anonymous: Anonymous users - label_group_non_member: Non member users - label_add_projects: Add projects - field_default_status: Default status - text_subversion_repository_note: 'Examples: file:///, http://, https://, svn://, svn+[tunnelscheme]://' - field_users_visibility: Users visibility - label_users_visibility_all: All active users - label_users_visibility_members_of_visible_projects: Members of visible projects - label_edit_attachments: Edit attached files - setting_link_copied_issue: Link issues on copy - label_link_copied_issue: Link copied issue - label_ask: Ask - label_search_attachments_yes: Search attachment filenames and descriptions - label_search_attachments_no: Do not search attachments - label_search_attachments_only: Search attachments only - label_search_open_issues_only: Open issues only - field_address: Имэйл - setting_max_additional_emails: Maximum number of additional email addresses - label_email_address_plural: Emails - label_email_address_add: Add email address - label_enable_notifications: Enable notifications - label_disable_notifications: Disable notifications - setting_search_results_per_page: Search results per page - label_blank_value: blank - permission_copy_issues: Copy issues - error_password_expired: Your password has expired or the administrator requires you - to change it. - field_time_entries_visibility: Time logs visibility - setting_password_max_age: Require password change after - label_parent_task_attributes: Parent tasks attributes - label_parent_task_attributes_derived: Calculated from subtasks - label_parent_task_attributes_independent: Independent of subtasks - label_time_entries_visibility_all: All time entries - label_time_entries_visibility_own: Time entries created by the user - label_member_management: Member management - label_member_management_all_roles: All roles - label_member_management_selected_roles_only: Only these roles - label_password_required: Confirm your password to continue - label_total_spent_time: Overall spent time - notice_import_finished: "%{count} items have been imported" - notice_import_finished_with_errors: "%{count} out of %{total} items could not be imported" - error_invalid_file_encoding: The file is not a valid %{encoding} encoded file - error_invalid_csv_file_or_settings: The file is not a CSV file or does not match the - settings below - error_can_not_read_import_file: An error occurred while reading the file to import - permission_import_issues: Import issues - label_import_issues: Import issues - label_select_file_to_import: Select the file to import - label_fields_separator: Field separator - label_fields_wrapper: Field wrapper - label_encoding: Encoding - label_comma_char: Comma - label_semi_colon_char: Semicolon - label_quote_char: Quote - label_double_quote_char: Double quote - label_fields_mapping: Fields mapping - label_file_content_preview: File content preview - label_create_missing_values: Create missing values - button_import: Import - field_total_estimated_hours: Total estimated time - label_api: API - label_total_plural: Totals - label_assigned_issues: Assigned issues - label_field_format_enumeration: Key/value list - label_f_hour_short: '%{value} h' - field_default_version: Default version - error_attachment_extension_not_allowed: Attachment extension %{extension} is not allowed - setting_attachment_extensions_allowed: Allowed extensions - setting_attachment_extensions_denied: Disallowed extensions - label_any_open_issues: any open issues - label_no_open_issues: no open issues - label_default_values_for_new_users: Default values for new users - error_ldap_bind_credentials: Invalid LDAP Account/Password - setting_sys_api_key: API түлхүүр - setting_lost_password: Нууц үгээ алдсан - mail_subject_security_notification: Security notification - mail_body_security_notification_change: ! '%{field} was changed.' - mail_body_security_notification_change_to: ! '%{field} was changed to %{value}.' - mail_body_security_notification_add: ! '%{field} %{value} was added.' - mail_body_security_notification_remove: ! '%{field} %{value} was removed.' - mail_body_security_notification_notify_enabled: Email address %{value} now receives - notifications. - mail_body_security_notification_notify_disabled: Email address %{value} no longer - receives notifications. - mail_body_settings_updated: ! 'The following settings were changed:' - field_remote_ip: IP address - label_wiki_page_new: New wiki page - label_relations: Relations - button_filter: Filter - mail_body_password_updated: Your password has been changed. - label_no_preview: No preview available - error_no_tracker_allowed_for_new_issue_in_project: The project doesn't have any trackers - for which you can create an issue - label_tracker_all: All trackers - label_new_project_issue_tab_enabled: Display the "New issue" tab - setting_new_item_menu_tab: Project menu tab for creating new objects - label_new_object_tab_enabled: Display the "+" drop-down - error_no_projects_with_tracker_allowed_for_new_issue: There are no projects with trackers - for which you can create an issue - field_textarea_font: Font used for text areas - label_font_default: Default font - label_font_monospace: Monospaced font - label_font_proportional: Proportional font - setting_timespan_format: Time span format - label_table_of_contents: Table of contents - setting_commit_logs_formatting: Apply text formatting to commit messages - setting_mail_handler_enable_regex: Enable regular expressions - error_move_of_child_not_possible: 'Subtask %{child} could not be moved to the new - project: %{errors}' - error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted: Spent time cannot - be reassigned to an issue that is about to be deleted - setting_timelog_required_fields: Required fields for time logs - label_attribute_of_object: '%{object_name}''s %{name}' - label_user_mail_option_only_assigned: Only for things I watch or I am assigned to - label_user_mail_option_only_owner: Only for things I watch or I am the owner of - warning_fields_cleared_on_bulk_edit: Changes will result in the automatic deletion - of values from one or more fields on the selected objects - field_updated_by: Updated by - field_last_updated_by: Last updated by - field_full_width_layout: Full width layout - label_last_notes: Last notes - field_digest: Checksum - field_default_assigned_to: Default assignee - setting_show_custom_fields_on_registration: Show custom fields on registration - permission_view_news: View news - label_no_preview_alternative_html: No preview available. %{link} the file instead. - label_no_preview_download: Download - setting_close_duplicate_issues: Close duplicate issues automatically - error_exceeds_maximum_hours_per_day: Cannot log more than %{max_hours} hours on the - same day (%{logged_hours} hours have already been logged) - setting_time_entry_list_defaults: Timelog list defaults - setting_timelog_accept_0_hours: Accept time logs with 0 hours - setting_timelog_max_hours_per_day: Maximum hours that can be logged per day and user - label_x_revisions: "%{count} revisions" - error_can_not_delete_auth_source: This authentication mode is in use and cannot be - deleted. - button_actions: Actions - mail_body_lost_password_validity: Please be aware that you may change the password - only once using this link. - text_login_required_html: When not requiring authentication, public projects and their - contents are openly available on the network. You can edit - the applicable permissions. - label_login_required_yes: 'Yes' - label_login_required_no: No, allow anonymous access to public projects - text_project_is_public_non_member: Public projects and their contents are available - to all logged-in users. - text_project_is_public_anonymous: Public projects and their contents are openly available - on the network. - label_version_and_files: Versions (%{count}) and Files - label_ldap: LDAP - label_ldaps_verify_none: LDAPS (without certificate check) - label_ldaps_verify_peer: LDAPS - label_ldaps_warning: It is recommended to use an encrypted LDAPS connection with certificate - check to prevent any manipulation during the authentication process. - label_nothing_to_preview: Nothing to preview - error_token_expired: This password recovery link has expired, please try again. - error_spent_on_future_date: Cannot log time on a future date - setting_timelog_accept_future_dates: Accept time logs on future dates - label_delete_link_to_subtask: Хамаарлыг устгах - error_not_allowed_to_log_time_for_other_users: You are not allowed to log time - for other users - permission_log_time_for_other_users: Log spent time for other users - label_tomorrow: tomorrow - label_next_week: next week - label_next_month: next month - text_role_no_workflow: No workflow defined for this role - text_status_no_workflow: No tracker uses this status in the workflows - setting_mail_handler_preferred_body_part: Preferred part of multipart (HTML) emails - setting_show_status_changes_in_mail_subject: Show status changes in issue mail notifications - subject - label_inherited_from_parent_project: Inherited from parent project - label_inherited_from_group: Inherited from group %{name} - label_trackers_description: Trackers description - label_open_trackers_description: View all trackers description - label_preferred_body_part_text: Text - label_preferred_body_part_html: HTML (experimental) - field_parent_issue_subject: Parent task subject - permission_edit_own_issues: Edit own issues - text_select_apply_tracker: Select tracker - label_updated_issues: Updated issues - text_avatar_server_config_html: The current avatar server is %{url}. - You can configure it in config/configuration.yml. - setting_gantt_months_limit: Maximum number of months displayed on the gantt chart - permission_import_time_entries: Import time entries - label_import_notifications: Send email notifications during the import - text_gs_available: ImageMagick PDF support available (optional) - field_recently_used_projects: Number of recently used projects in jump box - label_optgroup_bookmarks: Bookmarks - label_optgroup_others: Other projects - label_optgroup_recents: Recently used - button_project_bookmark: Add bookmark - button_project_bookmark_delete: Remove bookmark - field_history_default_tab: Issue's history default tab - label_issue_history_properties: Property changes - label_issue_history_notes: Notes - label_last_tab_visited: Last visited tab - field_unique_id: Unique ID - text_no_subject: no subject - setting_password_required_char_classes: Required character classes for passwords - label_password_char_class_uppercase: uppercase letters - label_password_char_class_lowercase: lowercase letters - label_password_char_class_digits: digits - label_password_char_class_special_chars: special characters - text_characters_must_contain: Must contain %{character_classes}. - label_starts_with: starts with - label_ends_with: ends with - label_issue_fixed_version_updated: Target version updated - setting_project_list_defaults: Projects list defaults - label_display_type: Display results as - label_display_type_list: List - label_display_type_board: Board - label_my_bookmarks: My bookmarks - label_import_time_entries: Import time entries diff --git a/config/locales/nl.yml b/config/locales/nl.yml deleted file mode 100644 index 307937c..0000000 --- a/config/locales/nl.yml +++ /dev/null @@ -1,1290 +0,0 @@ -nl: - direction: ltr - date: - formats: - # Use the strftime parameters for formats. - # When no format has been given, it uses default. - # You can provide other formats here if you like! - default: "%d-%m-%Y" - short: "%e %b" - long: "%d %B, %Y" - - day_names: [zondag, maandag, dinsdag, woensdag, donderdag, vrijdag, zaterdag] - abbr_day_names: [zo, ma, di, wo, do, vr, za] - - # Don't forget the nil at the beginning; there's no such thing as a 0th month - month_names: [~, januari, februari, maart, april, mei, juni, juli, augustus, september, oktober, november, december] - abbr_month_names: [~, jan, feb, mar, apr, mei, jun, jul, aug, sep, okt, nov, dec] - # Used in date_select and datime_select. - order: - - :day - - :month - - :year - - time: - formats: - default: "%a, %d %b %Y %H:%M:%S %z" - time: "%H:%M" - short: "%e %b %H:%M" - long: "%d %B, %Y %H:%M" - am: "am" - pm: "pm" - - datetime: - distance_in_words: - half_a_minute: "halve minuut" - less_than_x_seconds: - one: "minder dan een seconde" - other: "minder dan %{count} seconden" - x_seconds: - one: "1 seconde" - other: "%{count} seconden" - less_than_x_minutes: - one: "minder dan een minuut" - other: "minder dan %{count} minuten" - x_minutes: - one: "1 minuut" - other: "%{count} minuten" - about_x_hours: - one: "ongeveer 1 uur" - other: "ongeveer %{count} uren" - x_hours: - one: "1 uur" - other: "%{count} uren" - x_days: - one: "1 dag" - other: "%{count} dagen" - about_x_months: - one: "ongeveer 1 maand" - other: "ongeveer %{count} maanden" - x_months: - one: "1 maand" - other: "%{count} maanden" - about_x_years: - one: "ongeveer 1 jaar" - other: "ongeveer %{count} jaar" - over_x_years: - one: "meer dan 1 jaar" - other: "meer dan %{count} jaar" - almost_x_years: - one: "bijna 1 jaar" - other: "bijna %{count} jaar" - - number: - format: - separator: "." - delimiter: "" - precision: 3 - human: - format: - precision: 3 - delimiter: "" - storage_units: - format: "%n %u" - units: - kb: KB - tb: TB - gb: GB - byte: - one: Byte - other: Bytes - mb: MB - -# Used in array.to_sentence. - support: - array: - sentence_connector: "en" - skip_last_comma: false - - activerecord: - errors: - template: - header: - one: "Door een fout kon dit %{model} niet worden opgeslagen" - other: "Door %{count} fouten kon dit %{model} niet worden opgeslagen" - messages: - inclusion: "staat niet in de lijst" - exclusion: "is gereserveerd" - invalid: "is ongeldig" - confirmation: "komt niet overeen met bevestiging" - accepted: "moet geaccepteerd worden" - empty: "mag niet leeg zijn" - blank: "mag niet blanco zijn" - too_long: "is te lang (maximaal %{count} tekens)" - too_short: "is te kort (minimaal %{count} tekens)" - wrong_length: "heeft een onjuiste lengte" - taken: "is al in gebruik" - not_a_number: "is geen getal" - not_a_date: "is geen valide datum" - greater_than: "moet groter zijn dan %{count}" - greater_than_or_equal_to: "moet groter zijn of gelijk zijn aan %{count}" - equal_to: "moet gelijk zijn aan %{count}" - less_than: "moet minder zijn dan %{count}" - less_than_or_equal_to: "moet minder dan of gelijk zijn aan %{count}" - odd: "moet oneven zijn" - even: "moet even zijn" - greater_than_start_date: "moet na de startdatum liggen" - not_same_project: "hoort niet bij hetzelfde project" - circular_dependency: "Deze relatie zou een circulaire afhankelijkheid tot gevolg hebben" - cant_link_an_issue_with_a_descendant: "Een issue kan niet gelinked worden met een subtask" - earlier_than_minimum_start_date: "kan niet eerder zijn dan %{date} wegens voorafgaande issues" - not_a_regexp: "is not a valid regular expression" - open_issue_with_closed_parent: "An open issue cannot be attached to a closed parent task" - must_contain_uppercase: "must contain uppercase letters (A-Z)" - must_contain_lowercase: "must contain lowercase letters (a-z)" - must_contain_digits: "must contain digits (0-9)" - must_contain_special_chars: "must contain special characters (!, $, %, ...)" - - actionview_instancetag_blank_option: Selecteren - - button_activate: Activeren - button_add: Toevoegen - button_annotate: Annoteren - button_apply: Toepassen - button_archive: Archiveren - button_back: Terug - button_cancel: Annuleren - button_change: Wijzigen - button_change_password: Wachtwoord wijzigen - button_check_all: Alles selecteren - button_clear: Leegmaken - button_configure: Configureren - button_copy: Kopiëren - button_create: Aanmaken - button_delete: Verwijderen - button_download: Download - button_edit: Bewerken - button_list: Lijst - button_lock: Vergrendelen - button_log_time: Tijd registreren - button_login: Inloggen - button_move: Verplaatsen - button_quote: Citeren - button_rename: Hernoemen - button_reply: Antwoorden - button_reset: Herstellen - button_rollback: Terugdraaien naar deze versie - button_save: Opslaan - button_sort: Sorteren - button_submit: Toevoegen - button_test: Testen - button_unarchive: Dearchiveren - button_uncheck_all: Deselecteren - button_unlock: Ontgrendelen - button_unwatch: Niet meer volgen - button_update: Bijwerken - button_view: Weergeven - button_watch: Volgen - default_activity_design: Ontwerp - default_activity_development: Ontwikkeling - default_doc_category_tech: Technische documentatie - default_doc_category_user: Gebruikersdocumentatie - default_issue_status_in_progress: In uitvoering - default_issue_status_closed: Gesloten - default_issue_status_feedback: Terugkoppeling - default_issue_status_new: Nieuw - default_issue_status_rejected: Afgewezen - default_issue_status_resolved: Opgelost - default_priority_high: Hoog - default_priority_immediate: Onmiddellijk - default_priority_low: Laag - default_priority_normal: Normaal - default_priority_urgent: Dringend - default_role_developer: Ontwikkelaar - default_role_manager: Manager - default_role_reporter: Rapporteur - default_tracker_bug: Bug - default_tracker_feature: Feature - default_tracker_support: Support - enumeration_activities: Activiteiten (tijdregistratie) - enumeration_doc_categories: Documentcategorieën - enumeration_issue_priorities: Issueprioriteiten - error_can_t_load_default_data: "De standaardconfiguratie kan niet worden geladen: %{value}" - error_issue_not_found_in_project: 'Deze issue kan niet gevonden worden of behoort niet toe aan dit project.' - error_scm_annotate: "Er kan geen commentaar toegevoegd worden." - error_scm_command_failed: "Er is een fout opgetreden tijdens het verbinding maken met de repository: %{value}" - error_scm_not_found: "Dit item of deze revisie bestaat niet in de repository." - field_account: Account - field_activity: Activiteit - field_admin: Beheerder - field_assignable: Issues kunnen aan deze rol toegewezen worden - field_assigned_to: Toegewezen aan - field_attr_firstname: Voornaamattribuut - field_attr_lastname: Achternaamattribuut - field_attr_login: Loginattribuut - field_attr_mail: E-mailattribuut - field_auth_source: Authenticatiemethode - field_author: Auteur - field_base_dn: Base DN - field_category: Categorie - field_column_names: Kolommen - field_comments: Commentaar - field_comments_sorting: Commentaar weergeven - field_created_on: Aangemaakt op - field_default_value: Standaardwaarde - field_delay: Vertraging - field_description: Beschrijving - field_done_ratio: "% voltooid" - field_downloads: Downloads - field_due_date: Verwachte einddatum - field_effective_date: Datum - field_estimated_hours: Geschatte tijd - field_field_format: Formaat - field_filename: Bestand - field_filesize: Grootte - field_firstname: Voornaam - field_fixed_version: Versie - field_hide_mail: Verberg mijn e-mailadres - field_homepage: Homepagina - field_host: Host - field_hours: Uren - field_identifier: Identificatiecode - field_is_closed: Issue gesloten - field_is_default: Standaard - field_is_filter: Als filter gebruiken - field_is_for_all: Voor alle projecten - field_is_in_roadmap: Issues weergegeven in roadmap - field_is_public: Openbaar - field_is_required: Verplicht - field_issue: Issue - field_issue_to: Gerelateerd issue - field_language: Taal - field_last_login_on: Laatste bezoek - field_lastname: Achternaam - field_login: Gebruikersnaam - field_mail: E-mail - field_mail_notification: E-mailnotificaties - field_max_length: Maximale lengte - field_min_length: Minimale lengte - field_name: Naam - field_new_password: Nieuw wachtwoord - field_notes: Notities - field_onthefly: On-the-fly aanmaken van een gebruiker - field_parent: Subproject van - field_parent_title: Bovenliggende pagina - field_password: Wachtwoord - field_password_confirmation: Bevestig wachtwoord - field_port: Poort - field_possible_values: Mogelijke waarden - field_priority: Prioriteit - field_project: Project - field_redirect_existing_links: Bestaande links doorverwijzen - field_regexp: Reguliere expressie - field_role: Rol - field_searchable: Doorzoekbaar - field_spent_on: Datum - field_start_date: Startdatum - field_start_page: Startpagina - field_status: Status - field_subject: Onderwerp - field_subproject: Subproject - field_summary: Samenvatting - field_time_zone: Tijdzone - field_title: Titel - field_tracker: Tracker - field_type: Type - field_updated_on: Laatst gewijzigd op - field_url: URL - field_user: Gebruiker - field_value: Waarde - field_version: Versie - general_csv_decimal_separator: ',' - general_csv_encoding: ISO-8859-1 - general_csv_separator: ';' - general_pdf_fontname: freesans - general_pdf_monospaced_fontname: freemono - general_first_day_of_week: '7' - general_lang_name: 'Dutch (Nederlands)' - general_text_No: 'Nee' - general_text_Yes: 'Ja' - general_text_no: 'nee' - general_text_yes: 'ja' - label_activity: Activiteit - label_add_another_file: Ander bestand toevoegen - label_add_note: Notitie toevoegen - label_added: toegevoegd - label_added_time_by: "Toegevoegd door %{author} %{age} geleden" - label_administration: Administratie - label_age: Leeftijd - label_ago: dagen geleden - label_all: alle - label_all_words: Alle woorden - label_and_its_subprojects: "%{value} en de subprojecten." - label_applied_status: Toegekende status - label_assigned_to_me_issues: Aan mij toegewezen issues - label_associated_revisions: Geassociëerde revisies - label_attachment: Bestand - label_attachment_delete: Bestand verwijderen - label_attachment_new: Nieuw bestand - label_attachment_plural: Bestanden - label_attribute: Attribuut - label_attribute_plural: Attributen - label_auth_source: Authenticatiemodus - label_auth_source_new: Nieuwe authenticatiemodus - label_auth_source_plural: Authenticatiemodi - label_authentication: Authenticatie - label_blocked_by: geblokkeerd door - label_blocks: blokkeert - label_board: Forum - label_board_new: Nieuw forum - label_board_plural: Forums - label_boolean: Booleaanse waarde - label_browse: Bladeren - label_bulk_edit_selected_issues: Geselecteerde issues in bulk bewerken - label_calendar: Kalender - label_change_plural: Wijzigingen - label_change_properties: Eigenschappen wijzigen - label_change_status: Status wijzigen - label_change_view_all: Alle wijzigingen weergeven - label_changes_details: Details van alle wijzigingen - label_changeset_plural: Changesets - label_chronological_order: In chronologische volgorde - label_closed_issues: gesloten - label_closed_issues_plural: gesloten - label_x_open_issues_abbr: - zero: 0 open - one: 1 open - other: "%{count} open" - label_x_closed_issues_abbr: - zero: 0 gesloten - one: 1 gesloten - other: "%{count} gesloten" - label_comment: Commentaar - label_comment_add: Commentaar toevoegen - label_comment_added: Commentaar toegevoegd - label_comment_delete: Commentaar verwijderen - label_comment_plural: Commentaren - label_x_comments: - zero: geen commentaar - one: 1x commentaar - other: "%{count}x commentaar" - label_commits_per_author: Commits per auteur - label_commits_per_month: Commits per maand - label_confirmation: Bevestiging - label_contains: bevat - label_copied: gekopieerd - label_copy_workflow_from: Kopieer workflow van - label_current_status: Huidige status - label_current_version: Huidige versie - label_custom_field: Vrij veld - label_custom_field_new: Nieuw vrij veld - label_custom_field_plural: Vrije velden - label_date: Datum - label_date_from: Van - label_date_range: Datumbereik - label_date_to: Tot - label_day_plural: dagen - label_default: Standaard - label_default_columns: Standaardkolommen. - label_deleted: verwijderd - label_details: Details - label_diff_inline: inline - label_diff_side_by_side: naast elkaar - label_disabled: uitgeschakeld - label_display_per_page: "Per pagina: %{value}" - label_document: Document - label_document_added: Document toegevoegd - label_document_new: Nieuw document - label_document_plural: Documenten - label_downloads_abbr: D/L - label_duplicated_by: gedupliceerd door - label_duplicates: dupliceert - label_enumeration_new: Nieuwe waarde - label_enumerations: Enumeraties - label_environment: Omgeving - label_equals: is gelijk - label_example: Voorbeeld - label_export_to: Exporteer naar - label_f_hour: "%{value} uur" - label_f_hour_plural: "%{value} uren" - label_feed_plural: Feeds - label_feeds_access_key_created_on: "Atom-toegangssleutel %{value} geleden gemaakt" - label_file_added: Bestand toegevoegd - label_file_plural: Bestanden - label_filter_add: Filter toevoegen - label_filter_plural: Filters - label_float: Decimaal getal - label_follows: volgt op - label_gantt: Gantt - label_general: Algemeen - label_generate_key: Een sleutel genereren - label_help: Help - label_history: Geschiedenis - label_home: Home - label_in: in - label_in_less_than: in minder dan - label_in_more_than: in meer dan - label_incoming_emails: Inkomende e-mail - label_index_by_date: Indexeer op datum - label_index_by_title: Indexeer op titel - label_information: Informatie - label_information_plural: Informatie - label_integer: Getal - label_internal: Intern - label_issue: Issue - label_issue_added: Issue toegevoegd - label_issue_category: Issuecategorie - label_issue_category_new: Nieuwe categorie - label_issue_category_plural: Issuecategorieën - label_issue_new: Nieuw issue - label_issue_plural: Issues - label_issue_status: Issuestatus - label_issue_status_new: Nieuwe status - label_issue_status_plural: Issuestatussen - label_issue_tracking: Issue tracking - label_issue_updated: Issue bijgewerkt - label_issue_view_all: Alle issues bekijken - label_issue_watchers: Volgers - label_issues_by: "Issues door %{value}" - label_jump_to_a_project: Ga naar een project... - label_language_based: Taal gebaseerd - label_last_changes: "laatste %{count} wijzigingen" - label_last_login: Laatste bezoek - label_last_month: laatste maand - label_last_n_days: "%{count} dagen geleden" - label_last_week: vorige week - label_latest_revision: Meest recente revisie - label_latest_revision_plural: Meest recente revisies - label_ldap_authentication: LDAP authenticatie - label_less_than_ago: minder dan x dagen geleden - label_list: Lijst - label_loading: Bezig met laden... - label_logged_as: Ingelogd als - label_login: Inloggen - label_logout: Uitloggen - label_max_size: Maximumgrootte - label_me: mij - label_member: Lid - label_member_new: Nieuw lid - label_member_plural: Leden - label_message_last: Laatste bericht - label_message_new: Nieuw bericht - label_message_plural: Berichten - label_message_posted: Bericht toegevoegd - label_min_max_length: Min-max lengte - label_modified: gewijzigd - label_module_plural: Modules - label_month: Maand - label_months_from: maanden vanaf - label_more_than_ago: meer dan x dagen geleden - label_my_account: Mijn account - label_my_page: Mijn pagina - label_my_projects: Mijn projecten - label_new: Nieuw - label_new_statuses_allowed: Nieuw toegestane statussen - label_news: Nieuws - label_news_added: Nieuws toegevoegd - label_news_latest: Laatste nieuws - label_news_new: Nieuws toevoegen - label_news_plural: Nieuws - label_news_view_all: Alle nieuws weergeven - label_next: Volgende - label_no_change_option: (Geen wijziging) - label_no_data: Er zijn geen gegevens om weer te geven - label_nobody: niemand - label_none: geen - label_not_contains: bevat niet - label_not_equals: is niet gelijk - label_open_issues: open - label_open_issues_plural: open - label_optional_description: Optionele beschrijving - label_options: Opties - label_overall_activity: Activiteit - label_overview: Overzicht - label_password_lost: Wachtwoord vergeten - label_permissions: Permissies - label_permissions_report: Permissierapport - label_plugins: Plugins - label_precedes: gaat vooraf aan - label_preferences: Voorkeuren - label_preview: Voorbeeldweergave - label_previous: Vorige - label_project: Project - label_project_all: Alle projecten - label_project_latest: Nieuwste projecten - label_project_new: Nieuw project - label_project_plural: Projecten - label_x_projects: - zero: geen projecten - one: 1 project - other: "%{count} projecten" - label_public_projects: Publieke projecten - label_query: Eigen zoekopdracht - label_query_new: Nieuwe zoekopdracht - label_query_plural: Eigen zoekopdrachten - label_read: Lees meer... - label_register: Registreren - label_registered_on: Geregistreerd op - label_registration_activation_by_email: accountactivering per e-mail - label_registration_automatic_activation: automatische accountactivering - label_registration_manual_activation: handmatige accountactivering - label_related_issues: Gerelateerde issues - label_relates_to: gerelateerd aan - label_relation_delete: Relatie verwijderen - label_relation_new: Nieuwe relatie - label_renamed: hernoemd - label_reply_plural: Antwoorden - label_report: Rapport - label_report_plural: Rapporten - label_reported_issues: Gemelde issues - label_repository: Repository - label_repository_plural: Repositories - label_result_plural: Resultaten - label_reverse_chronological_order: In omgekeerde chronologische volgorde - label_revision: Revisie - label_revision_plural: Revisies - label_roadmap: Roadmap - label_roadmap_due_in: "Voldaan in %{value}" - label_roadmap_no_issues: Geen issues voor deze versie - label_roadmap_overdue: "%{value} over tijd" - label_role: Rol - label_role_and_permissions: Rollen en permissies - label_role_new: Nieuwe rol - label_role_plural: Rollen - label_scm: SCM - label_search: Zoeken - label_search_titles_only: Enkel titels doorzoeken - label_send_information: Stuur accountinformatie naar de gebruiker - label_send_test_email: Stuur een e-mail om te testen - label_settings: Instellingen - label_show_completed_versions: Afgeronde versies weergeven - label_sort_by: "Sorteer op %{value}" - label_sort_higher: Verplaats naar boven - label_sort_highest: Verplaats naar begin - label_sort_lower: Verplaats naar beneden - label_sort_lowest: Verplaats naar einde - label_spent_time: Gespendeerde tijd - label_statistics: Statistieken - label_stay_logged_in: Ingelogd blijven - label_string: Tekst - label_subproject_plural: Subprojecten - label_text: Lange tekst - label_theme: Thema - label_this_month: deze maand - label_this_week: deze week - label_this_year: dit jaar - label_time_tracking: Tijdregistratie bijhouden - label_today: vandaag - label_topic_plural: Onderwerpen - label_total: Totaal - label_tracker: Tracker - label_tracker_new: Nieuwe tracker - label_tracker_plural: Trackers - label_updated_time: "%{value} geleden bijgewerkt" - label_updated_time_by: "%{age} geleden bijgewerkt door %{author}" - label_used_by: Gebruikt door - label_user: Gebruiker - label_user_activity: "%{value}'s activiteit" - label_user_mail_no_self_notified: Ik wil niet op de hoogte gehouden worden van mijn eigen wijzigingen - label_user_mail_option_all: "Bij elke gebeurtenis in al mijn projecten..." - label_user_mail_option_selected: "Enkel bij iedere gebeurtenis op het geselecteerde project..." - label_user_new: Nieuwe gebruiker - label_user_plural: Gebruikers - label_version: Versie - label_version_new: Nieuwe versie - label_version_plural: Versies - label_view_diff: Verschillen weergeven - label_view_revisions: Revisies weergeven - label_watched_issues: Gevolgde issues - label_week: Week - label_wiki: Wiki - label_wiki_edit: Wiki-aanpassing - label_wiki_edit_plural: Wiki-aanpassingen - label_wiki_page: Wikipagina - label_wiki_page_plural: Wikipagina's - label_workflow: Workflow - label_year: Jaar - label_yesterday: gisteren - mail_body_account_activation_request: "Een nieuwe gebruiker (%{value}) heeft zich geregistreerd. Zijn account wacht op uw akkoord:" - mail_body_account_information: Uw account gegevens - mail_body_account_information_external: "U kunt uw account (%{value}) gebruiken om in te loggen." - mail_body_lost_password: 'Gebruik volgende link om uw wachtwoord te wijzigen:' - mail_body_register: 'Gebruik volgende link om uw account te activeren:' - mail_body_reminder: "%{count} issue(s) die aan u toegewezen zijn en voldaan moeten zijn in de komende %{days} dagen:" - mail_subject_account_activation_request: "%{value} account activeringsverzoek" - mail_subject_lost_password: "uw %{value} wachtwoord" - mail_subject_register: "uw %{value} accountactivering" - mail_subject_reminder: "%{count} issue(s) die voldaan moeten zijn in de komende %{days} dagen." - notice_account_activated: Uw account is geactiveerd. U kunt nu inloggen. - notice_account_invalid_credentials: Incorrecte gebruikersnaam of wachtwoord - notice_account_lost_email_sent: Er is een e-mail naar u verzonden met instructies over de keuze van een nieuw wachtwoord. - notice_account_password_updated: Wachtwoord is met succes gewijzigd - notice_account_pending: Uw account is aangemaakt, maar wacht nog op goedkeuring van een beheerder. - notice_account_unknown_email: Onbekende gebruiker. - notice_account_updated: Account is succesvol gewijzigd - notice_account_wrong_password: Ongeldig wachtwoord - notice_can_t_change_password: Deze account gebruikt een externe authenticatiebron. Het is niet mogelijk om het wachtwoord te veranderen. - notice_default_data_loaded: Standaardconfiguratie succesvol geladen. - notice_email_error: "Er is een fout opgetreden bij het versturen van (%{value})" - notice_email_sent: "Een e-mail werd verstuurd naar %{value}" - notice_failed_to_save_issues: "Fout bij bewaren van %{count} issue(s) (%{total} geselecteerd): %{ids}." - notice_feeds_access_key_reseted: Uw Atom-toegangssleutel werd opnieuw ingesteld. - notice_file_not_found: De pagina, die u probeerde te benaderen, bestaat niet of is verwijderd. - notice_locking_conflict: De gegevens werden reeds eerder gewijzigd door een andere gebruiker. - notice_no_issue_selected: "Er is geen issue geselecteerd. Selecteer het issue dat u wil bewerken." - notice_not_authorized: U heeft niet de juiste machtigingen om deze pagina te raadplegen. - notice_successful_connection: Verbinding succesvol. - notice_successful_create: Succesvol aangemaakt. - notice_successful_delete: Succesvol verwijderd. - notice_successful_update: Succesvol gewijzigd. - notice_unable_delete_version: Het is niet mogelijk om deze versie te verwijderen. - permission_add_issue_notes: Notities toevoegen - permission_add_issue_watchers: Volgers toevoegen - permission_add_issues: Issues toevoegen - permission_add_messages: Berichten toevoegen - permission_browse_repository: Repository doorbladeren - permission_comment_news: Commentaar toevoegen bij nieuws - permission_commit_access: Commit-rechten - permission_delete_issues: Issues verwijderen - permission_delete_messages: Berichten verwijderen - permission_delete_own_messages: Eigen berichten verwijderen - permission_delete_wiki_pages: Wikipagina's verwijderen - permission_delete_wiki_pages_attachments: Bijlagen verwijderen - permission_edit_issue_notes: Notities bewerken - permission_edit_issues: Issues bewerken - permission_edit_messages: Berichten bewerken - permission_edit_own_issue_notes: Eigen notities bewerken - permission_edit_own_messages: Eigen berichten bewerken - permission_edit_own_time_entries: Eigen tijdregistraties bewerken - permission_edit_project: Project bewerken - permission_edit_time_entries: Tijdregistraties bewerken - permission_edit_wiki_pages: Wikipagina's bewerken - permission_log_time: Tijdregistraties boeken - permission_manage_boards: Forums beheren - permission_manage_categories: Issuecategorieën beheren - permission_manage_files: Bestanden beheren - permission_manage_issue_relations: Issuerelaties beheren - permission_manage_members: Leden beheren - permission_manage_news: Nieuws beheren - permission_manage_public_queries: Publieke queries beheren - permission_manage_repository: Repository beheren - permission_manage_versions: Versiebeheer - permission_manage_wiki: Wikibeheer - permission_protect_wiki_pages: Wikipagina's beschermen - permission_rename_wiki_pages: Wikipagina's hernoemen - permission_save_queries: Queries opslaan - permission_select_project_modules: Project modules selecteren - permission_view_calendar: Kalender bekijken - permission_view_changesets: Changesets bekijken - permission_view_documents: Documenten bekijken - permission_view_files: Bestanden bekijken - permission_view_gantt: Gantt-grafiek bekijken - permission_view_issue_watchers: Lijst met volgers bekijken - permission_view_messages: Berichten bekijken - permission_view_time_entries: Tijdregistraties bekijken - permission_view_wiki_edits: Wikihistorie bekijken - permission_view_wiki_pages: Wikipagina's bekijken - project_module_boards: Forums - project_module_documents: Documenten - project_module_files: Bestanden - project_module_issue_tracking: Issue tracking - project_module_news: Nieuws - project_module_repository: Repository - project_module_time_tracking: Tijdregistratie - project_module_wiki: Wiki - setting_activity_days_default: Aantal weergegeven dagen bij het tabblad "Activiteit" - setting_app_title: Applicatietitel - setting_attachment_max_size: Max. grootte bijlage - setting_autofetch_changesets: Commits automatisch ophalen - setting_autologin: Automatisch inloggen - setting_bcc_recipients: Blind carbon copy ontvangers (bcc) - setting_commit_fix_keywords: Vaste trefwoorden - setting_commit_ref_keywords: Refererende trefwoorden - setting_cross_project_issue_relations: Issuerelaties tussen projecten toelaten - setting_date_format: Datumformaat - setting_default_language: Standaardtaal - setting_default_projects_public: Nieuwe projecten zijn standaard openbaar - setting_diff_max_lines_displayed: Max aantal weergegeven diff regels - setting_display_subprojects_issues: Standaardissues van subproject weergeven - setting_emails_footer: Voettekst voor e-mails - setting_enabled_scm: SCM ingeschakeld - setting_feeds_limit: Feedinhoudlimiet - setting_gravatar_enabled: Gebruik Gravatar gebruikersiconen - setting_host_name: Hostnaam - setting_issue_list_default_columns: Zichtbare standaardkolommen in lijst met issues - setting_issues_export_limit: Max aantal te exporteren issues - setting_login_required: Authenticatie vereist - setting_mail_from: E-mailadres afzender - setting_mail_handler_api_enabled: Schakel WS in voor inkomende e-mail. - setting_mail_handler_api_key: API-sleutel - setting_per_page_options: Aantal objecten per pagina (opties) - setting_plain_text_mail: platte tekst (geen HTML) - setting_protocol: Protocol - setting_self_registration: Zelfregistratie toegestaan - setting_sequential_project_identifiers: Sequentiële projectidentiteiten genereren - setting_sys_api_enabled: Gebruik WS voor repository beheer - setting_text_formatting: Tekstformaat - setting_time_format: Tijdformaat - setting_user_format: Weergaveformaat gebruikers - setting_welcome_text: Welkomsttekst - setting_wiki_compression: Wikigeschiedenis comprimeren - status_active: actief - status_locked: vergrendeld - status_registered: geregistreerd - text_are_you_sure: Weet u het zeker? - text_assign_time_entries_to_project: Gerapporteerde uren aan dit project toevoegen - text_caracters_maximum: "%{count} van maximum aantal tekens." - text_caracters_minimum: "Moet minstens %{count} karakters lang zijn." - text_comma_separated: Meerdere waarden toegestaan (kommagescheiden). - text_default_administrator_account_changed: Standaard beheerderaccount gewijzigd - text_destroy_time_entries: Gerapporteerde uren verwijderen - text_destroy_time_entries_question: "%{hours} uren werden gerapporteerd op de issue(s) die u wilt verwijderen. Wat wilt u doen?" - text_diff_truncated: '... Deze diff werd ingekort omdat het de maximale weer te geven karakters overschrijdt.' - text_email_delivery_not_configured: "E-mailbezorging is niet geconfigureerd. Mededelingen zijn uitgeschakeld.\nConfigureer uw SMTP server in config/configuration.yml en herstart de applicatie om e-mailbezorging te activeren." - text_enumeration_category_reassign_to: 'Volgende waarde toewijzen:' - text_enumeration_destroy_question: "%{count} objecten zijn toegewezen aan deze waarde." - text_file_repository_writable: Bestandsrepository schrijfbaar - text_issue_added: "Issue %{id} is gerapporteerd (door %{author})." - text_issue_category_destroy_assignments: Toewijzingen aan deze categorie verwijderen - text_issue_category_destroy_question: "Er zijn issues (%{count}) aan deze categorie toegewezen. Wat wilt u doen?" - text_issue_category_reassign_to: Issues opnieuw aan deze categorie toewijzen - text_issue_updated: "Issue %{id} is gewijzigd (door %{author})." - text_issues_destroy_confirmation: 'Weet u zeker dat u deze issue(s) wilt verwijderen?' - text_issues_ref_in_commit_messages: Opzoeken en aanpassen van issues in commitberichten - text_length_between: "Lengte tussen %{min} en %{max} tekens." - text_load_default_configuration: Standaardconfiguratie laden - text_min_max_length_info: 0 betekent geen beperking - text_no_configuration_data: "Rollen, trackers, issuestatussen en workflows zijn nog niet geconfigureerd.\nHet is ten zeerste aangeraden om de standaardconfiguratie in te laden. U kunt deze aanpassen nadat deze is ingeladen." - text_plugin_assets_writable: Plugin assets map schrijfbaar - text_project_destroy_confirmation: Weet u zeker dat u dit project en alle gerelateerde gegevens wilt verwijderen? - text_project_identifier_info: 'Alleen kleine letters (a-z), cijfers, streepjes en liggende streepjes zijn toegestaan.
    Eenmaal opgeslagen kan de identifier niet worden gewijzigd.' - text_reassign_time_entries: 'Gerapporteerde uren opnieuw toewijzen:' - text_regexp_info: bv. ^[A-Z0-9]+$ - text_repository_usernames_mapping: "Koppel de Redmine-gebruikers aan gebruikers in de repository log.\nGebruikers met dezelfde Redmine en repository gebruikersnaam of e-mail worden automatisch gekoppeld." - text_minimagick_available: MiniMagick beschikbaar (optioneel) - text_select_mail_notifications: Selecteer acties waarvoor mededelingen via e-mail moeten worden verstuurd. - text_select_project_modules: 'Selecteer de modules die u wilt gebruiken voor dit project:' - text_status_changed_by_changeset: "Toegepast in changeset %{value}." - text_subprojects_destroy_warning: "De subprojecten: %{value} zullen ook verwijderd worden." - text_tip_issue_begin_day: issue begint op deze dag - text_tip_issue_begin_end_day: issue begint en eindigt op deze dag - text_tip_issue_end_day: issue eindigt op deze dag - text_tracker_no_workflow: Geen workflow gedefinieerd voor deze tracker - text_unallowed_characters: Ongeldige tekens - text_user_mail_option: "Bij niet-geselecteerde projecten zal u enkel mededelingen ontvangen voor issues die u volgt of waar u bij betrokken bent (als auteur of toegewezen persoon)." - text_user_wrote: "%{value} schreef:" - text_user_wrote_in: "%{value} schreef (%{link}):" - text_wiki_destroy_confirmation: Weet u zeker dat u deze wiki en de inhoud wenst te verwijderen? - text_workflow_edit: Selecteer een rol en een tracker om de workflow te wijzigen - warning_attachments_not_saved: "%{count} bestand(en) konden niet opgeslagen worden." - button_create_and_continue: Aanmaken en verdergaan - text_custom_field_possible_values_info: 'Per lijn een waarde' - label_display: Weergave - field_editable: Bewerkbaar - setting_repository_log_display_limit: Max aantal revisies zichbaar - setting_file_max_size_displayed: Max grootte van tekstbestanden inline zichtbaar - field_watcher: Volger - setting_openid: Sta OpenID login en registratie toe - field_identity_url: OpenID URL - label_login_with_open_id_option: of login met uw OpenID - field_content: Content - label_descending: Aflopend - label_sort: Sorteer - label_ascending: Oplopend - label_date_from_to: Van %{start} tot %{end} - label_greater_or_equal: ">=" - label_less_or_equal: <= - text_wiki_page_destroy_question: Deze pagina heeft %{descendants} subpagina's en onderliggende pagina's?. Wat wilt u doen? - text_wiki_page_reassign_children: Alle subpagina's toewijzen aan deze hoofdpagina - text_wiki_page_nullify_children: Behoud subpagina's als hoofdpagina's - text_wiki_page_destroy_children: Verwijder alle subpagina's en onderliggende pagina's - setting_password_min_length: Minimum wachtwoordlengte - field_group_by: Groepeer resultaten per - mail_subject_wiki_content_updated: "'%{id}' wikipagina is bijgewerkt" - label_wiki_content_added: Wikipagina toegevoegd - mail_subject_wiki_content_added: "'%{id}' wikipagina is toegevoegd" - mail_body_wiki_content_added: De '%{id}' wikipagina is toegevoegd door %{author}. - label_wiki_content_updated: Wikipagina bijgewerkt - mail_body_wiki_content_updated: De '%{id}' wikipagina is bijgewerkt door %{author}. - permission_add_project: Maak project - setting_new_project_user_role_id: Rol van gebruiker die een project maakt - label_view_all_revisions: Alle revisies bekijken - label_tag: Tag - label_branch: Branch - error_no_tracker_in_project: Geen tracker is geassocieerd met dit project. Check de projectinstellingen. - error_no_default_issue_status: Geen standaard issuestatus ingesteld. Check de configuratie (Ga naar "Administratie -> Issuestatussen"). - text_journal_changed: "%{label} gewijzigd van %{old} naar %{new}" - text_journal_set_to: "%{label} gewijzigd naar %{value}" - text_journal_deleted: "%{label} verwijderd (%{old})" - label_group_plural: Groepen - label_group: Groep - label_group_new: Nieuwe groep - label_time_entry_plural: Tijdregistraties - text_journal_added: "%{label} %{value} toegevoegd" - field_active: Actief - enumeration_system_activity: Systeemactiviteit - permission_delete_issue_watchers: Volgers verwijderen - version_status_closed: gesloten - version_status_locked: vergrendeld - version_status_open: open - error_can_not_reopen_issue_on_closed_version: Een issue toegewezen aan een gesloten versie kan niet heropend worden - label_user_anonymous: Anoniem - button_move_and_follow: Verplaatsen en volgen - setting_default_projects_modules: Standaard geactiveerde modules voor nieuwe projecten - setting_gravatar_default: Standaard Gravatar plaatje - field_sharing: Delen - label_version_sharing_hierarchy: Met projecthiërarchie - label_version_sharing_system: Met alle projecten - label_version_sharing_descendants: Met subprojecten - label_version_sharing_tree: Met projectboom - label_version_sharing_none: Niet gedeeld - error_can_not_archive_project: Dit project kan niet worden gearchiveerd - button_copy_and_follow: Kopiëren en volgen - label_copy_source: Bron - setting_issue_done_ratio: Bereken voltooiingspercentage voor issue met - setting_issue_done_ratio_issue_status: Gebruik de issuestatus - error_issue_done_ratios_not_updated: Issue-voltooiingspercentage niet gewijzigd. - error_workflow_copy_target: Selecteer tracker(s) en rol(len) - setting_issue_done_ratio_issue_field: Gebruik het issue-veld - label_copy_same_as_target: Zelfde als doel - label_copy_target: Doel - notice_issue_done_ratios_updated: Issue-voltooiingspercentage aangepast. - error_workflow_copy_source: Selecteer een brontracker of rol - label_update_issue_done_ratios: Update issue-voltooiingspercentage - setting_start_of_week: Week begint op - permission_view_issues: Issues bekijken - label_display_used_statuses_only: Alleen statussen weergeven die gebruikt worden door deze tracker - label_revision_id: Revisie %{value} - label_api_access_key: API-toegangssleutel - label_api_access_key_created_on: "API-toegangssleutel %{value} geleden gemaakt" - label_feeds_access_key: Atom-toegangssleutel - notice_api_access_key_reseted: Uw API-toegangssleutel werd opnieuw ingesteld. - setting_rest_api_enabled: Activeer REST web service - label_missing_api_access_key: Geen API-toegangssleutel - label_missing_feeds_access_key: Geen Atom-toegangssleutel - button_show: Weergeven - text_line_separated: Meerdere waarden toegestaan (elke regel is een waarde). - setting_mail_handler_body_delimiters: E-mailverwerking afbreken na een van deze regels - permission_add_subprojects: Subprojecten aanmaken - label_subproject_new: Nieuw subproject - text_own_membership_delete_confirmation: |- - U staat op het punt om enkele van (of al) uw permissies te verwijderen, zodus het is mogelijk dat - u dit project hierna niet meer kan wijzigen. Wilt u doorgaan? - label_close_versions: Afgeronde versies sluiten - label_board_sticky: Vastgeplakt (sticky) - label_board_locked: Vergrendeld - permission_export_wiki_pages: Wikipagina's exporteren - setting_cache_formatted_text: Opgemaakte tekst cachen - permission_manage_project_activities: Projectactiviteiten beheren - error_unable_delete_issue_status: Verwijderen van issuestatus is niet gelukt (%{value}) - label_profile: Profiel - permission_manage_subtasks: Subtaken beheren - field_parent_issue: Hoofdissue - label_subtask_plural: Subtaken - label_project_copy_notifications: E-mailnotificaties voor de projectkopie sturen - error_can_not_delete_custom_field: Custom field verwijderen is niet mogelijk - error_unable_to_connect: Geen connectie (%{value}) - error_can_not_remove_role: Deze rol is in gebruik en kan niet worden verwijderd. - error_can_not_delete_tracker: Deze tracker bevat nog issues en kan niet verwijderd worden. - field_principal: Hoofd - notice_failed_to_save_members: "Het is niet gelukt om lid/leden op te slaan: %{errors}." - text_zoom_out: Uitzoomen - text_zoom_in: Inzoomen - notice_unable_delete_time_entry: Verwijderen van tijdregistratie is niet mogelijk. - label_overall_spent_time: Totaal gespendeerde tijd - field_time_entries: Tijdregistratie - project_module_gantt: Gantt - project_module_calendar: Kalender - button_edit_associated_wikipage: "Bijbehorende wikipagina bewerken: %{page_title}" - field_text: Tekstveld - setting_default_notification_option: Standaardinstelling voor mededelingen - label_user_mail_option_only_my_events: Alleen voor activiteiten die ik volg of waarbij ik betrokken ben - label_user_mail_option_none: Bij geen enkele activiteit - field_member_of_group: Groep van toegewezen persoon - field_assigned_to_role: Rol van toegewezen persoon - notice_not_authorized_archived_project: Het project dat u wilt bezoeken is gearchiveerd. - label_principal_search: "Zoek naar gebruiker of groep:" - label_user_search: "Zoek naar gebruiker:" - field_visible: Zichtbaarheid - setting_commit_logtime_activity_id: Standaardactiviteit voor tijdregistratie - text_time_logged_by_changeset: Toegepast in changeset %{value}. - setting_commit_logtime_enabled: Tijdregistratie activeren - notice_gantt_chart_truncated: De Gantt-grafiek is ingekort omdat het meer objecten bevat dan kan worden weergegeven, (%{max}) - setting_gantt_items_limit: Max. aantal objecten op Gantt-grafiek - field_warn_on_leaving_unsaved: Waarschuw me wanneer ik een pagina verlaat waarvan de tekst niet is opgeslagen - text_warn_on_leaving_unsaved: De huidige pagina bevat tekst die niet is opgeslagen en zal verloren gaan als u deze pagina nu verlaat. - label_my_queries: Mijn aangepaste zoekopdrachten - text_journal_changed_no_detail: "%{label} gewijzigd" - label_news_comment_added: Commentaar aan een nieuwsitem toegevoegd - button_expand_all: Uitklappen - button_collapse_all: Inklappen - label_additional_workflow_transitions_for_assignee: Aanvullende veranderingen toegestaan wanneer de gebruiker de toegewezen persoon is - label_additional_workflow_transitions_for_author: Aanvullende veranderingen toegestaan wanneer de gebruiker de auteur is - label_bulk_edit_selected_time_entries: Alle geselecteerde tijdregistraties wijzigen? - text_time_entries_destroy_confirmation: Weet u zeker dat u de geselecteerde tijdregistratie(s) wilt verwijderen ? - label_role_anonymous: Anoniem - label_role_non_member: Geen lid - label_issue_note_added: Notitie toegevoegd - label_issue_status_updated: Status gewijzigd - label_issue_priority_updated: Prioriteit gewijzigd - label_issues_visibility_own: Issues aangemaakt door of toegewezen aan de gebruiker - field_issues_visibility: Issueweergave - label_issues_visibility_all: Alle issues - permission_set_own_issues_private: Eigen issues openbaar of privé maken - field_is_private: Privé - permission_set_issues_private: Issues openbaar of privé maken - label_issues_visibility_public: Alle niet privé-issues - text_issues_destroy_descendants_confirmation: Dit zal ook %{count} subtaken verwijderen. - field_commit_logs_encoding: Codering van commitberichten - field_scm_path_encoding: Padcodering - text_scm_path_encoding_note: "Standaard: UTF-8" - field_path_to_repository: Pad naar versieoverzicht - field_root_directory: Hoofdmap - field_cvs_module: Module - field_cvsroot: CVSROOT - text_mercurial_repository_note: "Lokale versieoverzicht (Voorbeeld: /hgrepo, c:\\hgrepo)" - text_scm_command: Commando - text_scm_command_version: Versie - label_git_report_last_commit: Laatste toevoegen voor bestanden en mappen rapporteren - text_scm_config: U kan de SCM-commando's instellen in config/configuration.yml. U moet de applicatie herstarten na de wijzigingen. - text_scm_command_not_available: SCM-commando is niet beschikbaar. Controleer de instellingen in het administratiepaneel. - notice_issue_successful_create: Issue %{id} aangemaakt. - label_between: tussen - setting_issue_group_assignment: Groepstoewijzingen toelaten - label_diff: diff - text_git_repository_note: "Lokaal versieoverzicht is leeg (Voorbeeld: /gitrepo, c:\\gitrepo)" - description_query_sort_criteria_direction: Sortering - description_project_scope: Zoekbereik - description_filter: Filteren - description_user_mail_notification: Instellingen voor e-mailnotificaties - description_message_content: Berichtinhoud - description_available_columns: Beschikbare kolommen - description_issue_category_reassign: Issuecategorie kiezen - description_search: Zoekveld - description_notes: Notities - description_choose_project: Projecten - description_query_sort_criteria_attribute: Attribuut sorteren - description_wiki_subpages_reassign: Nieuwe hoofdpagina kiezen - description_selected_columns: Geselecteerde kolommen - label_parent_revision: Hoofd - label_child_revision: Sub - error_scm_annotate_big_text_file: De vermelding kan niet worden geannoteerd, omdat het groter is dan de maximale toegewezen grootte. - setting_default_issue_start_date_to_creation_date: Huidige datum als startdatum gebruiken voor nieuwe issues. - button_edit_section: Deze sectie wijzigen - setting_repositories_encodings: Coderingen voor bijlagen en opgeslagen bestanden - description_all_columns: Alle kolommen - button_export: Exporteren - label_export_options: "%{export_format} export opties" - error_attachment_too_big: Dit bestand kan niet worden geüpload omdat het de maximaal toegestane grootte overschrijdt (%{max_size}) - notice_failed_to_save_time_entries: "Opslaan mislukt voor %{count} tijdregistratie(s) van %{total} geselecteerde: %{ids}." - label_x_issues: - zero: 0 issues - one: 1 issue - other: "%{count} issues" - label_repository_new: Nieuwe repository - field_repository_is_default: Hoofdrepository - label_copy_attachments: Kopieer bijlage(n) - label_item_position: "%{position}/%{count}" - label_completed_versions: Afgeronde versies - field_multiple: Meerdere waarden - setting_commit_cross_project_ref: Toestaan om issues van alle projecten te refereren en op te lossen - text_issue_conflict_resolution_add_notes: Mijn notities toevoegen en andere wijzigingen annuleren - text_issue_conflict_resolution_overwrite: Mijn wijzigingen alsnog toevoegen (voorgaande notities worden opgeslagen, - maar sommige notities kunnen overschreden worden) - notice_issue_update_conflict: Dit issue is reeds aangepast door een andere gebruiker terwijl u bezig was met wijzigingen - aan te brengen - text_issue_conflict_resolution_cancel: "Mijn wijzigingen annuleren en pagina opnieuw weergeven: %{link}" - permission_manage_related_issues: Gerelateerde issues beheren - field_auth_source_ldap_filter: LDAP filter - label_search_for_watchers: Klik om volgers toe te voegen - notice_account_deleted: Uw account is permanent verwijderd - setting_unsubscribe: Gebruikers toestaan hun eigen account te verwijderen - button_delete_my_account: Mijn account verwijderen - text_account_destroy_confirmation: |- - Weet u zeker dat u door wilt gaan? - Uw account wordt permanent verwijderd zonder enige mogelijkheid deze te heractiveren. - error_session_expired: Uw sessie is verlopen. Gelieve opnieuw in te loggen. - text_session_expiration_settings: "Opgelet: door het wijzigen van deze instelling zullen de huidige sessies verlopen, inclusief die van u." - setting_session_lifetime: Maximale sessieduur - setting_session_timeout: Sessie-inactiviteit timeout - label_session_expiration: Sessie verlopen - permission_close_project: Project sluiten/heropenen - button_close: Sluiten - button_reopen: Heropenen - project_status_active: actief - project_status_closed: gesloten - project_status_archived: gearchiveerd - text_project_closed: Dit project is gesloten en kan alleen gelezen worden - notice_user_successful_create: Gebruiker %{id} aangemaakt. - field_core_fields: Standaardvelden - field_timeout: Timeout (in seconden) - setting_thumbnails_enabled: Miniaturen voor bijlagen weergeven - setting_thumbnails_size: Grootte miniaturen (in pixels) - label_status_transitions: Statustransitie - label_fields_permissions: Permissievelden - label_readonly: Alleen-lezen - label_required: Verplicht - text_repository_identifier_info: 'Alleen kleine letter (a-z), cijfers, streepjes en liggende streepjes zijn toegestaan.
    Eenmaal opgeslagen kan de identifier niet worden gewijzigd.' - field_board_parent: Hoofdforum - label_attribute_of_project: Project %{name} - label_attribute_of_author: Auteur(s) %{name} - label_attribute_of_assigned_to: Toegewezen %{name} - label_attribute_of_fixed_version: "%{name} van versie" - label_copy_subtasks: Subtaken kopiëren - label_copied_to: gekopieerd naar - label_copied_from: gekopieerd van - label_any_issues_in_project: alle issues in project - label_any_issues_not_in_project: alle issues niet in project - field_private_notes: Privénotities - permission_view_private_notes: Privénotities bekijken - permission_set_notes_private: Notities privé maken - label_no_issues_in_project: geen issues in project - label_any: alle - label_last_n_weeks: afgelopen %{count} weken - setting_cross_project_subtasks: Subtaken in andere projecten toelaten - label_cross_project_descendants: Met subprojecten - label_cross_project_tree: Met projectboom - label_cross_project_hierarchy: Met projecthiërarchie - label_cross_project_system: Met alle projecten - button_hide: Verberg - setting_non_working_week_days: Niet-werkdagen - label_in_the_next_days: in de volgende - label_in_the_past_days: in de afgelopen - label_attribute_of_user: Gebruikers %{name} - text_turning_multiple_off: "Bij het uitschakelen van meerdere waarden zal er maar één waarde bewaard blijven." - label_attribute_of_issue: Issues %{name} - permission_add_documents: Documenten toevoegen - permission_edit_documents: Documenten bewerken - permission_delete_documents: Documenten verwijderen - label_gantt_progress_line: Voortgangslijn - setting_jsonp_enabled: JSONP support inschakelen - field_inherit_members: Bovenliggende leden erven - field_closed_on: Gesloten - field_generate_password: Wachtwoord genereren - setting_default_projects_tracker_ids: Standaardtrackers voor nieuwe projecten - label_total_time: Totaal - setting_emails_header: E-mailhoofding - notice_account_not_activated_yet: U heeft uw account nog niet geactiveerd. Klik op deze link - om een nieuwe activeringsemail te versturen. - notice_account_locked: Uw account is vergrendeld. - notice_account_register_done: "Account aanmaken is gelukt. Een e-mail met instructies om uw account te activeren is verstuurd naar: %{email}." - label_hidden: Verborgen - label_visibility_private: voor mij alleen - label_visibility_roles: alleen voor deze rollen - label_visibility_public: voor elke gebruiker - field_must_change_passwd: Wachtwoord wijzigen bij eerstvolgende login - notice_new_password_must_be_different: Het nieuwe wachtwoord mag niet hetzelfde zijn als het huidige wachtwoord - setting_mail_handler_excluded_filenames: Bijlagen uitsluiten op basis van naam - text_convert_available: ImageMagick comversie beschikbaar (optioneel) - label_link: Link - label_only: enkel - label_drop_down_list: keuzelijst - label_checkboxes: keuzevakjes - label_link_values_to: Waarden koppelen aan URL - setting_force_default_language_for_anonymous: Standaardtaal voor anonieme gebruikers - setting_force_default_language_for_loggedin: Standaardtaal voor ingelogde gebruikers - label_custom_field_select_type: Selecteer het objecttype waaraan u het vrij veld wilt vasthangen - label_issue_assigned_to_updated: Toegewezen persoon gewijzigd - label_check_for_updates: Controleren of er updates beschikbaar zijn - label_latest_compatible_version: Laatste compatibele versie - label_unknown_plugin: Onbekende plugin - label_radio_buttons: selectieknoppen - label_group_anonymous: Anonieme gebruikers - label_group_non_member: Geen lid gebruikers - label_add_projects: Projecten toevoegen - field_default_status: Standaardstatus - text_subversion_repository_note: 'Voorbeelden: file:///, http://, https://, svn://, svn+[tunnelschema]://' - field_users_visibility: Gebruikersweergave - label_users_visibility_all: Alle actieve gebruikers - label_users_visibility_members_of_visible_projects: Gebruikers van zichtbare projecten - label_edit_attachments: Bijlagen bewerken - setting_link_copied_issue: Koppelen met issue bij kopiëren - label_link_copied_issue: Koppelen met issuekopie - label_ask: Vraag iedere keer - label_search_attachments_yes: Zoeken in bestandsnamen en beschrijvingen van bijlagen - label_search_attachments_no: Niet zoeken in bijlagen - label_search_attachments_only: Enkel zoeken in bijlagen - label_search_open_issues_only: Enkel openstaande issues - field_address: Adres - setting_max_additional_emails: Maximum aantal bijkomende e-mailadressen - label_email_address_plural: E-mails - label_email_address_add: Nieuw e-mailadres - label_enable_notifications: Notificaties inschakelen - label_disable_notifications: Notificaties uitschakelen - setting_search_results_per_page: Zoekresultaten per pagina - label_blank_value: leeg - permission_copy_issues: Issues kopiëren - error_password_expired: Uw wachtwoord is verlopen of moet gewijzigd worden op vraag van een beheerder. - field_time_entries_visibility: Tijdregistratieweergave - setting_password_max_age: Wachtwoord wijzigen verplicht na - label_parent_task_attributes: Attributen van bovenliggende taken - label_parent_task_attributes_derived: Berekend vanuit subtaken - label_parent_task_attributes_independent: Onafhankelijk van subtaken - label_time_entries_visibility_all: Alle tijdregistraties - label_time_entries_visibility_own: Tijdregistraties aangemaakt door gebruiker - label_member_management: Ledenbeheer - label_member_management_all_roles: Alle rollen - label_member_management_selected_roles_only: Enkel deze rollen - label_password_required: Bevestig uw wachtwoord om verder te gaan - label_total_spent_time: Totaal gespendeerde tijd - notice_import_finished: "%{count} items werden geïmporteerd" - notice_import_finished_with_errors: "%{count} van in totaal %{total} items kunnen niet geïmporteerd worden" - error_invalid_file_encoding: Het bestand is geen geldig geëncodeerd %{encoding} bestand - error_invalid_csv_file_or_settings: Het bestand is geen CSV-bestand of voldoet niet aan onderstaande instellingen - error_can_not_read_import_file: Er is een fout opgetreden bij het inlezen van het bestand - permission_import_issues: Issues importeren - label_import_issues: Issues importeren - label_select_file_to_import: Selecteer het bestand om te importeren - label_fields_separator: Scheidingsteken - label_fields_wrapper: Tekstscheidingsteken - label_encoding: Codering - label_comma_char: Komma - label_semi_colon_char: Puntkomma - label_quote_char: Enkel aanhalingsteken - label_double_quote_char: Dubbel aanhalingsteken - label_fields_mapping: Veldkoppeling - label_file_content_preview: Voorbeeld van bestandsinhoud - label_create_missing_values: Ontbrekende waarden invullen - button_import: Importeren - field_total_estimated_hours: Geschatte totaaltijd - label_api: API - label_total_plural: Totalen - label_assigned_issues: Toegewezen issues - label_field_format_enumeration: Sleutel/waarde lijst - label_f_hour_short: '%{value} u' - field_default_version: Standaardversie - error_attachment_extension_not_allowed: Bestandsextensie %{extension} van bijlage is niet toegelaten - setting_attachment_extensions_allowed: Toegelaten bestandsextensies - setting_attachment_extensions_denied: Niet toegelaten bestandsextensies - label_any_open_issues: alle open issues - label_no_open_issues: geen open issues - label_default_values_for_new_users: Standaardwaarden voor nieuwe gebruikers - error_ldap_bind_credentials: Ongeldige LDAP account/wachtwoord-combinatie - setting_sys_api_key: API-sleutel - setting_lost_password: Wachtwoord vergeten - mail_subject_security_notification: Beveiligingsnotificatie - mail_body_security_notification_change: ! '%{field} werd aangepast.' - mail_body_security_notification_change_to: ! '%{field} werd aangepast naar %{value}.' - mail_body_security_notification_add: ! '%{field} %{value} werd toegevoegd.' - mail_body_security_notification_remove: ! '%{field} %{value} werd verwijderd.' - mail_body_security_notification_notify_enabled: E-mailadres %{value} ontvangt vanaf heden notificaties. - mail_body_security_notification_notify_disabled: E-mailadres %{value} ontvangt niet langer notificaties. - mail_body_settings_updated: ! 'Volgende instellingen werden gewijzigd:' - field_remote_ip: IP-adres - label_wiki_page_new: Nieuwe wikipagina - label_relations: Relaties - button_filter: Filteren - mail_body_password_updated: Uw wachtwoord werd gewijzigd. - label_no_preview: Geen voorbeeld beschikbaar - error_no_tracker_allowed_for_new_issue_in_project: Het project bevat geen tracker waarvoor u een - issue kan aanmaken - label_tracker_all: Alle trackers - setting_new_item_menu_tab: Projectmenu-tab om nieuwe objecten aan te maken - label_new_project_issue_tab_enabled: ! '"Nieuw issue"-tab weergeven' - label_new_object_tab_enabled: ! '"+"-tab met keuzelijst weergeven' - error_no_projects_with_tracker_allowed_for_new_issue: Er zijn geen projecten met trackers - waarvoor u een issue kan aanmaken - field_textarea_font: Lettertype voor tekstvelden - label_font_default: Standaardlettertype - label_font_monospace: Monospaced-lettertype - label_font_proportional: Proportioneel lettertype - setting_timespan_format: Tijdspanneformaat - label_table_of_contents: Inhoudsopgave - setting_commit_logs_formatting: Apply text formatting to commit messages - setting_mail_handler_enable_regex: Enable regular expressions - error_move_of_child_not_possible: 'Subtask %{child} could not be moved to the new - project: %{errors}' - error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted: Spent time cannot - be reassigned to an issue that is about to be deleted - setting_timelog_required_fields: Required fields for time logs - label_attribute_of_object: '%{object_name}''s %{name}' - label_user_mail_option_only_assigned: Only for things I watch or I am assigned to - label_user_mail_option_only_owner: Only for things I watch or I am the owner of - warning_fields_cleared_on_bulk_edit: Changes will result in the automatic deletion - of values from one or more fields on the selected objects - field_updated_by: Updated by - field_last_updated_by: Last updated by - field_full_width_layout: Full width layout - label_last_notes: Last notes - field_digest: Checksum - field_default_assigned_to: Default assignee - setting_show_custom_fields_on_registration: Show custom fields on registration - permission_view_news: View news - label_no_preview_alternative_html: No preview available. %{link} the file instead. - label_no_preview_download: Download - setting_close_duplicate_issues: Close duplicate issues automatically - error_exceeds_maximum_hours_per_day: Cannot log more than %{max_hours} hours on the - same day (%{logged_hours} hours have already been logged) - setting_time_entry_list_defaults: Timelog list defaults - setting_timelog_accept_0_hours: Accept time logs with 0 hours - setting_timelog_max_hours_per_day: Maximum hours that can be logged per day and user - label_x_revisions: "%{count} revisions" - error_can_not_delete_auth_source: This authentication mode is in use and cannot be - deleted. - button_actions: Actions - mail_body_lost_password_validity: Please be aware that you may change the password - only once using this link. - text_login_required_html: When not requiring authentication, public projects and their - contents are openly available on the network. You can edit - the applicable permissions. - label_login_required_yes: 'Yes' - label_login_required_no: No, allow anonymous access to public projects - text_project_is_public_non_member: Public projects and their contents are available - to all logged-in users. - text_project_is_public_anonymous: Public projects and their contents are openly available - on the network. - label_version_and_files: Versions (%{count}) and Files - label_ldap: LDAP - label_ldaps_verify_none: LDAPS (without certificate check) - label_ldaps_verify_peer: LDAPS - label_ldaps_warning: It is recommended to use an encrypted LDAPS connection with certificate - check to prevent any manipulation during the authentication process. - label_nothing_to_preview: Nothing to preview - error_token_expired: This password recovery link has expired, please try again. - error_spent_on_future_date: Cannot log time on a future date - setting_timelog_accept_future_dates: Accept time logs on future dates - label_delete_link_to_subtask: Relatie verwijderen - error_not_allowed_to_log_time_for_other_users: You are not allowed to log time - for other users - permission_log_time_for_other_users: Log spent time for other users - label_tomorrow: tomorrow - label_next_week: next week - label_next_month: next month - text_role_no_workflow: No workflow defined for this role - text_status_no_workflow: No tracker uses this status in the workflows - setting_mail_handler_preferred_body_part: Preferred part of multipart (HTML) emails - setting_show_status_changes_in_mail_subject: Show status changes in issue mail notifications - subject - label_inherited_from_parent_project: Inherited from parent project - label_inherited_from_group: Inherited from group %{name} - label_trackers_description: Trackers description - label_open_trackers_description: View all trackers description - label_preferred_body_part_text: Text - label_preferred_body_part_html: HTML (experimental) - field_parent_issue_subject: Parent task subject - permission_edit_own_issues: Edit own issues - text_select_apply_tracker: Select tracker - label_updated_issues: Updated issues - text_avatar_server_config_html: The current avatar server is %{url}. - You can configure it in config/configuration.yml. - setting_gantt_months_limit: Maximum number of months displayed on the gantt chart - permission_import_time_entries: Import time entries - label_import_notifications: Send email notifications during the import - text_gs_available: ImageMagick PDF support available (optional) - field_recently_used_projects: Number of recently used projects in jump box - label_optgroup_bookmarks: Bookmarks - label_optgroup_others: Other projects - label_optgroup_recents: Recently used - button_project_bookmark: Add bookmark - button_project_bookmark_delete: Remove bookmark - field_history_default_tab: Issue's history default tab - label_issue_history_properties: Property changes - label_issue_history_notes: Notes - label_last_tab_visited: Last visited tab - field_unique_id: Unique ID - text_no_subject: no subject - setting_password_required_char_classes: Required character classes for passwords - label_password_char_class_uppercase: uppercase letters - label_password_char_class_lowercase: lowercase letters - label_password_char_class_digits: digits - label_password_char_class_special_chars: special characters - text_characters_must_contain: Must contain %{character_classes}. - label_starts_with: starts with - label_ends_with: ends with - label_issue_fixed_version_updated: Target version updated - setting_project_list_defaults: Projects list defaults - label_display_type: Display results as - label_display_type_list: List - label_display_type_board: Board - label_my_bookmarks: My bookmarks - label_import_time_entries: Import time entries diff --git a/config/locales/no.yml b/config/locales/no.yml deleted file mode 100644 index 3b89ff5..0000000 --- a/config/locales/no.yml +++ /dev/null @@ -1,1305 +0,0 @@ -# Norwegian, norsk bokmål, by irb.no -"no": - support: - array: - sentence_connector: "og" - direction: ltr - date: - formats: - default: "%d.%m.%Y" - short: "%e. %b" - long: "%e. %B %Y" - day_names: [søndag, mandag, tirsdag, onsdag, torsdag, fredag, lørdag] - abbr_day_names: [søn, man, tir, ons, tor, fre, lør] - month_names: [~, januar, februar, mars, april, mai, juni, juli, august, september, oktober, november, desember] - abbr_month_names: [~, jan, feb, mar, apr, mai, jun, jul, aug, sep, okt, nov, des] - order: - - :day - - :month - - :year - time: - formats: - default: "%A, %e. %B %Y, %H:%M" - time: "%H:%M" - short: "%e. %B, %H:%M" - long: "%A, %e. %B %Y, %H:%M" - am: "" - pm: "" - datetime: - distance_in_words: - half_a_minute: "et halvt minutt" - less_than_x_seconds: - one: "mindre enn 1 sekund" - other: "mindre enn %{count} sekunder" - x_seconds: - one: "1 sekund" - other: "%{count} sekunder" - less_than_x_minutes: - one: "mindre enn 1 minutt" - other: "mindre enn %{count} minutter" - x_minutes: - one: "1 minutt" - other: "%{count} minutter" - about_x_hours: - one: "rundt 1 time" - other: "rundt %{count} timer" - x_hours: - one: "1 time" - other: "%{count} timer" - x_days: - one: "1 dag" - other: "%{count} dager" - about_x_months: - one: "rundt 1 måned" - other: "rundt %{count} måneder" - x_months: - one: "1 måned" - other: "%{count} måneder" - about_x_years: - one: "rundt 1 år" - other: "rundt %{count} år" - over_x_years: - one: "over 1 år" - other: "over %{count} år" - almost_x_years: - one: "nesten 1 år" - other: "nesten %{count} år" - number: - format: - precision: 3 - separator: "." - delimiter: "," - currency: - format: - unit: "kr" - format: "%n %u" - precision: - format: - delimiter: "" - precision: 4 - human: - storage_units: - format: "%n %u" - units: - byte: - one: "Byte" - other: "Bytes" - kb: "KB" - mb: "MB" - gb: "GB" - tb: "TB" - - activerecord: - errors: - template: - header: "kunne ikke lagre %{model} på grunn av %{count} feil." - body: "det oppstod problemer i følgende felt:" - messages: - inclusion: "er ikke inkludert i listen" - exclusion: "er reservert" - invalid: "er ugyldig" - confirmation: "passer ikke bekreftelsen" - accepted: "må være akseptert" - empty: "kan ikke være tom" - blank: "kan ikke være blank" - too_long: "er for lang (maksimum %{count} tegn)" - too_short: "er for kort (minimum %{count} tegn)" - wrong_length: "er av feil lengde (maksimum %{count} tegn)" - taken: "er allerede i bruk" - not_a_number: "er ikke et tall" - greater_than: "må være større enn %{count}" - greater_than_or_equal_to: "må være større enn eller lik %{count}" - equal_to: "må være lik %{count}" - less_than: "må være mindre enn %{count}" - less_than_or_equal_to: "må være mindre enn eller lik %{count}" - odd: "må være oddetall" - even: "må være partall" - greater_than_start_date: "må være større enn startdato" - not_same_project: "hører ikke til samme prosjekt" - circular_dependency: "Denne relasjonen ville lagd en sirkulær avhengighet" - cant_link_an_issue_with_a_descendant: "En sak kan ikke kobles mot en av sine undersaker" - earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" - not_a_regexp: "is not a valid regular expression" - open_issue_with_closed_parent: "An open issue cannot be attached to a closed parent task" - must_contain_uppercase: "must contain uppercase letters (A-Z)" - must_contain_lowercase: "must contain lowercase letters (a-z)" - must_contain_digits: "must contain digits (0-9)" - must_contain_special_chars: "must contain special characters (!, $, %, ...)" - - - actionview_instancetag_blank_option: Vennligst velg - - general_text_No: 'Nei' - general_text_Yes: 'Ja' - general_text_no: 'nei' - general_text_yes: 'ja' - general_lang_name: 'Norwegian (Norsk bokmål)' - general_csv_separator: ',' - general_csv_decimal_separator: '.' - general_csv_encoding: ISO-8859-1 - general_pdf_fontname: freesans - general_pdf_monospaced_fontname: freemono - general_first_day_of_week: '1' - - notice_account_updated: Kontoen er oppdatert. - notice_account_invalid_credentials: Feil brukernavn eller passord - notice_account_password_updated: Passordet er oppdatert. - notice_account_wrong_password: Feil passord - notice_account_register_done: Kontoen er opprettet. Klikk lenken som er sendt deg i e-post for å aktivere kontoen. - notice_account_unknown_email: Ukjent bruker. - notice_can_t_change_password: Denne kontoen bruker ekstern godkjenning. Passordet kan ikke endres. - notice_account_lost_email_sent: En e-post med instruksjoner for å velge et nytt passord er sendt til deg. - notice_account_activated: Din konto er aktivert. Du kan nå logge inn. - notice_successful_create: Opprettet. - notice_successful_update: Oppdatert. - notice_successful_delete: Slettet. - notice_successful_connection: Koblet opp. - notice_file_not_found: Siden du forsøkte å vise eksisterer ikke, eller er slettet. - notice_locking_conflict: Data har blitt oppdatert av en annen bruker. - notice_not_authorized: Du har ikke adgang til denne siden. - notice_email_sent: "En e-post er sendt til %{value}" - notice_email_error: "En feil oppstod under sending av e-post (%{value})" - notice_feeds_access_key_reseted: Din Atom-tilgangsnøkkel er nullstilt. - notice_failed_to_save_issues: "Lykkes ikke å lagre %{count} sak(er) på %{total} valgt: %{ids}." - notice_no_issue_selected: "Ingen sak valgt! Vennligst merk sakene du vil endre." - notice_account_pending: "Din konto ble opprettet og avventer nå administrativ godkjenning." - notice_default_data_loaded: Standardkonfigurasjonen lastet inn. - - error_can_t_load_default_data: "Standardkonfigurasjonen kunne ikke lastes inn: %{value}" - error_scm_not_found: "Elementet og/eller revisjonen eksisterer ikke i depoet." - error_scm_command_failed: "En feil oppstod under tilkobling til depoet: %{value}" - error_scm_annotate: "Elementet eksisterer ikke, eller kan ikke noteres." - error_issue_not_found_in_project: 'Saken eksisterer ikke, eller hører ikke til dette prosjektet' - - mail_subject_lost_password: "Ditt %{value} passord" - mail_body_lost_password: 'Klikk følgende lenke for å endre ditt passord:' - mail_subject_register: "%{value} kontoaktivering" - mail_body_register: 'Klikk følgende lenke for å aktivere din konto:' - mail_body_account_information_external: "Du kan bruke din %{value}-konto for å logge inn." - mail_body_account_information: Informasjon om din konto - mail_subject_account_activation_request: "%{value} kontoaktivering" - mail_body_account_activation_request: "En ny bruker (%{value}) er registrert, og avventer din godkjenning:" - mail_subject_reminder: "%{count} sak(er) har frist de kommende %{days} dagene" - mail_body_reminder: "%{count} sak(er) som er tildelt deg har frist de kommende %{days} dager:" - - - field_name: Navn - field_description: Beskrivelse - field_summary: Oppsummering - field_is_required: Kreves - field_firstname: Fornavn - field_lastname: Etternavn - field_mail: E-post - field_filename: Fil - field_filesize: Størrelse - field_downloads: Nedlastinger - field_author: Forfatter - field_created_on: Opprettet - field_updated_on: Oppdatert - field_field_format: Format - field_is_for_all: For alle prosjekter - field_possible_values: Lovlige verdier - field_regexp: Regular expression - field_min_length: Minimum lengde - field_max_length: Maksimum lengde - field_value: Verdi - field_category: Kategori - field_title: Tittel - field_project: Prosjekt - field_issue: Sak - field_status: Status - field_notes: Notater - field_is_closed: Lukker saken - field_is_default: Standardverdi - field_tracker: Sakstype - field_subject: Emne - field_due_date: Frist - field_assigned_to: Tildelt til - field_priority: Prioritet - field_fixed_version: Mål-versjon - field_user: Bruker - field_role: Rolle - field_homepage: Hjemmeside - field_is_public: Offentlig - field_parent: Underprosjekt av - field_is_in_roadmap: Vises i veikart - field_login: Brukernavn - field_mail_notification: E-post-varsling - field_admin: Administrator - field_last_login_on: Sist innlogget - field_language: Språk - field_effective_date: Dato - field_password: Passord - field_new_password: Nytt passord - field_password_confirmation: Bekreft passord - field_version: Versjon - field_type: Type - field_host: Vert - field_port: Port - field_account: Konto - field_base_dn: Base DN - field_attr_login: Brukernavnsattributt - field_attr_firstname: Fornavnsattributt - field_attr_lastname: Etternavnsattributt - field_attr_mail: E-post-attributt - field_onthefly: On-the-fly brukeropprettelse - field_start_date: Start - field_done_ratio: "% Ferdig" - field_auth_source: Autentiseringskilde - field_hide_mail: Skjul min epost-adresse - field_comments: Kommentarer - field_url: URL - field_start_page: Startside - field_subproject: Underprosjekt - field_hours: Timer - field_activity: Aktivitet - field_spent_on: Dato - field_identifier: Identifikasjon - field_is_filter: Brukes som filter - field_issue_to: Relaterte saker - field_delay: Forsinkelse - field_assignable: Saker kan tildeles denne rollen - field_redirect_existing_links: Viderekoble eksisterende lenker - field_estimated_hours: Estimert tid - field_column_names: Kolonner - field_time_zone: Tidssone - field_searchable: Søkbar - field_default_value: Standardverdi - field_comments_sorting: Vis kommentarer - - setting_app_title: Applikasjonstittel - setting_welcome_text: Velkomsttekst - setting_default_language: Standardspråk - setting_login_required: Krever innlogging - setting_self_registration: Selvregistrering - setting_attachment_max_size: Maks. størrelse vedlegg - setting_issues_export_limit: Eksportgrense for saker - setting_mail_from: Avsenders epost - setting_bcc_recipients: Blindkopi (bcc) til mottakere - setting_host_name: Vertsnavn - setting_text_formatting: Tekstformattering - setting_wiki_compression: Komprimering av Wiki-historikk - setting_feeds_limit: Innholdsgrense for Feed - setting_default_projects_public: Nye prosjekter er offentlige som standard - setting_autofetch_changesets: Autohenting av endringssett - setting_sys_api_enabled: Aktiver webservice for depot-administrasjon - setting_commit_ref_keywords: Nøkkelord for referanse - setting_commit_fix_keywords: Nøkkelord for retting - setting_autologin: Autoinnlogging - setting_date_format: Datoformat - setting_time_format: Tidsformat - setting_cross_project_issue_relations: Tillat saksrelasjoner på kryss av prosjekter - setting_issue_list_default_columns: Standardkolonner vist i sakslisten - setting_emails_footer: Epost-signatur - setting_protocol: Protokoll - setting_per_page_options: Alternativer, objekter pr. side - setting_user_format: Visningsformat, brukere - setting_activity_days_default: Dager vist på prosjektaktivitet - setting_display_subprojects_issues: Vis saker fra underprosjekter på hovedprosjekt som standard - setting_enabled_scm: Aktiviserte SCM - - project_module_issue_tracking: Sakshåndtering - project_module_time_tracking: Tidsregistrering - project_module_news: Nyheter - project_module_documents: Dokumenter - project_module_files: Filer - project_module_wiki: Wiki - project_module_repository: Depot - project_module_boards: Forumer - - label_user: Bruker - label_user_plural: Brukere - label_user_new: Ny bruker - label_project: Prosjekt - label_project_new: Nytt prosjekt - label_project_plural: Prosjekter - label_x_projects: - zero: ingen prosjekter - one: 1 prosjekt - other: "%{count} prosjekter" - label_project_all: Alle prosjekter - label_project_latest: Siste prosjekter - label_issue: Sak - label_issue_new: Ny sak - label_issue_plural: Saker - label_issue_view_all: Vis alle saker - label_issues_by: "Saker etter %{value}" - label_issue_added: Sak lagt til - label_issue_updated: Sak oppdatert - label_document: Dokument - label_document_new: Nytt dokument - label_document_plural: Dokumenter - label_document_added: Dokument lagt til - label_role: Rolle - label_role_plural: Roller - label_role_new: Ny rolle - label_role_and_permissions: Roller og rettigheter - label_member: Medlem - label_member_new: Nytt medlem - label_member_plural: Medlemmer - label_tracker: Sakstype - label_tracker_plural: Sakstyper - label_tracker_new: Ny sakstype - label_workflow: Arbeidsflyt - label_issue_status: Saksstatus - label_issue_status_plural: Saksstatuser - label_issue_status_new: Ny status - label_issue_category: Sakskategori - label_issue_category_plural: Sakskategorier - label_issue_category_new: Ny kategori - label_custom_field: Eget felt - label_custom_field_plural: Egne felt - label_custom_field_new: Nytt eget felt - label_enumerations: Listeverdier - label_enumeration_new: Ny verdi - label_information: Informasjon - label_information_plural: Informasjon - label_register: Registrer - label_password_lost: Mistet passord - label_home: Hjem - label_my_page: Min side - label_my_account: Min konto - label_my_projects: Mine prosjekter - label_administration: Administrasjon - label_login: Logg inn - label_logout: Logg ut - label_help: Hjelp - label_reported_issues: Rapporterte saker - label_assigned_to_me_issues: Saker tildelt meg - label_last_login: Sist innlogget - label_registered_on: Registrert - label_activity: Aktivitet - label_overall_activity: All aktivitet - label_new: Ny - label_logged_as: Innlogget som - label_environment: Miljø - label_authentication: Autentisering - label_auth_source: Autentiseringskilde - label_auth_source_new: Ny autentiseringskilde - label_auth_source_plural: Autentiseringskilder - label_subproject_plural: Underprosjekter - label_and_its_subprojects: "%{value} og dets underprosjekter" - label_min_max_length: Min.-maks. lengde - label_list: Liste - label_date: Dato - label_integer: Heltall - label_float: Kommatall - label_boolean: Sann/usann - label_string: Tekst - label_text: Lang tekst - label_attribute: Attributt - label_attribute_plural: Attributter - label_no_data: Ingen data å vise - label_change_status: Endre status - label_history: Historikk - label_attachment: Fil - label_attachment_new: Ny fil - label_attachment_delete: Slett fil - label_attachment_plural: Filer - label_file_added: Fil lagt til - label_report: Rapport - label_report_plural: Rapporter - label_news: Nyheter - label_news_new: Legg til nyhet - label_news_plural: Nyheter - label_news_latest: Siste nyheter - label_news_view_all: Vis alle nyheter - label_news_added: Nyhet lagt til - label_settings: Innstillinger - label_overview: Oversikt - label_version: Versjon - label_version_new: Ny versjon - label_version_plural: Versjoner - label_confirmation: Bekreftelse - label_export_to: Eksporter til - label_read: Leser... - label_public_projects: Offentlige prosjekt - label_open_issues: åpen - label_open_issues_plural: åpne - label_closed_issues: lukket - label_closed_issues_plural: lukkede - label_x_open_issues_abbr: - zero: 0 åpne - one: 1 åpen - other: "%{count} åpne" - label_x_closed_issues_abbr: - zero: 0 lukket - one: 1 lukket - other: "%{count} lukket" - label_total: Totalt - label_permissions: Rettigheter - label_current_status: Nåværende status - label_new_statuses_allowed: Tillate nye statuser - label_all: alle - label_none: ingen - label_nobody: ingen - label_next: Neste - label_previous: Forrige - label_used_by: Brukt av - label_details: Detaljer - label_add_note: Legg til notat - label_calendar: Kalender - label_months_from: måneder fra - label_gantt: Gantt - label_internal: Intern - label_last_changes: "siste %{count} endringer" - label_change_view_all: Vis alle endringer - label_comment: Kommentar - label_comment_plural: Kommentarer - label_x_comments: - zero: ingen kommentarer - one: 1 kommentar - other: "%{count} kommentarer" - label_comment_add: Legg til kommentar - label_comment_added: Kommentar lagt til - label_comment_delete: Slett kommentar - label_query: Egen spørring - label_query_plural: Egne spørringer - label_query_new: Ny spørring - label_filter_add: Legg til filter - label_filter_plural: Filtre - label_equals: er - label_not_equals: er ikke - label_in_less_than: er mindre enn - label_in_more_than: in mer enn - label_in: i - label_today: idag - label_yesterday: i går - label_this_week: denne uken - label_last_week: sist uke - label_last_n_days: "siste %{count} dager" - label_this_month: denne måneden - label_last_month: siste måned - label_this_year: dette året - label_date_range: Dato-spenn - label_less_than_ago: mindre enn dager siden - label_more_than_ago: mer enn dager siden - label_ago: dager siden - label_contains: inneholder - label_not_contains: ikke inneholder - label_day_plural: dager - label_repository: Depot - label_repository_plural: Depoter - label_browse: Utforsk - label_revision: Revisjon - label_revision_plural: Revisjoner - label_associated_revisions: Assosierte revisjoner - label_added: lagt til - label_modified: endret - label_deleted: slettet - label_latest_revision: Siste revisjon - label_latest_revision_plural: Siste revisjoner - label_view_revisions: Vis revisjoner - label_max_size: Maksimum størrelse - label_sort_highest: Flytt til toppen - label_sort_higher: Flytt opp - label_sort_lower: Flytt ned - label_sort_lowest: Flytt til bunnen - label_roadmap: Veikart - label_roadmap_due_in: "Frist om %{value}" - label_roadmap_overdue: "%{value} over fristen" - label_roadmap_no_issues: Ingen saker for denne versjonen - label_search: Søk - label_result_plural: Resultater - label_all_words: Alle ord - label_wiki: Wiki - label_wiki_edit: Wiki endring - label_wiki_edit_plural: Wiki endringer - label_wiki_page: Wiki-side - label_wiki_page_plural: Wiki-sider - label_index_by_title: Indekser etter tittel - label_index_by_date: Indekser etter dato - label_current_version: Gjeldende versjon - label_preview: Forhåndsvis - label_feed_plural: Feeder - label_changes_details: Detaljer om alle endringer - label_issue_tracking: Sakshåndtering - label_spent_time: Brukt tid - label_f_hour: "%{value} time" - label_f_hour_plural: "%{value} timer" - label_time_tracking: Tidsregistrering - label_change_plural: Endringer - label_statistics: Statistikk - label_commits_per_month: Innsendinger pr. måned - label_commits_per_author: Innsendinger pr. forfatter - label_view_diff: Vis forskjeller - label_diff_inline: i teksten - label_diff_side_by_side: side ved side - label_options: Alternativer - label_copy_workflow_from: Kopier arbeidsflyt fra - label_permissions_report: Rettighetsrapport - label_watched_issues: Overvåkede saker - label_related_issues: Relaterte saker - label_applied_status: Gitt status - label_loading: Laster... - label_relation_new: Ny relasjon - label_relation_delete: Slett relasjon - label_relates_to: relatert til - label_duplicates: dupliserer - label_duplicated_by: duplisert av - label_blocks: blokkerer - label_blocked_by: blokkert av - label_precedes: kommer før - label_follows: følger - label_stay_logged_in: Hold meg innlogget - label_disabled: avslått - label_show_completed_versions: Vis ferdige versjoner - label_me: meg - label_board: Forum - label_board_new: Nytt forum - label_board_plural: Forumer - label_topic_plural: Emner - label_message_plural: Meldinger - label_message_last: Siste melding - label_message_new: Ny melding - label_message_posted: Melding lagt til - label_reply_plural: Svar - label_send_information: Send kontoinformasjon til brukeren - label_year: År - label_month: Måned - label_week: Uke - label_date_from: Fra - label_date_to: Til - label_language_based: Basert på brukerens språk - label_sort_by: "Sorter etter %{value}" - label_send_test_email: Send en epost-test - label_feeds_access_key_created_on: "Atom tilgangsnøkkel opprettet for %{value} siden" - label_module_plural: Moduler - label_added_time_by: "Lagt til av %{author} for %{age} siden" - label_updated_time: "Oppdatert for %{value} siden" - label_jump_to_a_project: Gå til et prosjekt... - label_file_plural: Filer - label_changeset_plural: Endringssett - label_default_columns: Standardkolonner - label_no_change_option: (Ingen endring) - label_bulk_edit_selected_issues: Samlet endring av valgte saker - label_theme: Tema - label_default: Standard - label_search_titles_only: Søk bare i titler - label_user_mail_option_all: "For alle hendelser på mine prosjekter" - label_user_mail_option_selected: "For alle hendelser på valgte prosjekt..." - label_user_mail_no_self_notified: "Jeg vil ikke bli varslet om endringer jeg selv gjør" - label_registration_activation_by_email: kontoaktivering pr. e-post - label_registration_manual_activation: manuell kontoaktivering - label_registration_automatic_activation: automatisk kontoaktivering - label_display_per_page: "Pr. side: %{value}" - label_age: Alder - label_change_properties: Endre egenskaper - label_general: Generell - label_scm: SCM - label_plugins: Tillegg - label_ldap_authentication: LDAP-autentisering - label_downloads_abbr: Nedl. - label_optional_description: Valgfri beskrivelse - label_add_another_file: Legg til en fil til - label_preferences: Brukerinnstillinger - label_chronological_order: I kronologisk rekkefølge - label_reverse_chronological_order: I omvendt kronologisk rekkefølge - - button_login: Logg inn - button_submit: Send - button_save: Lagre - button_check_all: Merk alle - button_uncheck_all: Avmerk alle - button_delete: Slett - button_create: Opprett - button_test: Test - button_edit: Endre - button_add: Legg til - button_change: Endre - button_apply: Bruk - button_clear: Nullstill - button_lock: Lås - button_unlock: Lås opp - button_download: Last ned - button_list: Liste - button_view: Vis - button_move: Flytt - button_back: Tilbake - button_cancel: Avbryt - button_activate: Aktiver - button_sort: Sorter - button_log_time: Logg tid - button_rollback: Rull tilbake til denne versjonen - button_watch: Overvåk - button_unwatch: Stopp overvåkning - button_reply: Svar - button_archive: Arkiver - button_unarchive: Gjør om arkivering - button_reset: Nullstill - button_rename: Endre navn - button_change_password: Endre passord - button_copy: Kopier - button_annotate: Notér - button_update: Oppdater - button_configure: Konfigurer - - status_active: aktiv - status_registered: registrert - status_locked: låst - - text_select_mail_notifications: Velg hendelser som skal varsles med e-post. - text_regexp_info: f.eks. ^[A-Z0-9]+$ - text_min_max_length_info: 0 betyr ingen begrensning - text_project_destroy_confirmation: Er du sikker på at du vil slette dette prosjekter og alle relatert data ? - text_subprojects_destroy_warning: "Underprojekt(ene): %{value} vil også bli slettet." - text_workflow_edit: Velg en rolle og en sakstype for å endre arbeidsflyten - text_are_you_sure: Er du sikker ? - text_tip_issue_begin_day: oppgaven starter denne dagen - text_tip_issue_end_day: oppgaven avsluttes denne dagen - text_tip_issue_begin_end_day: oppgaven starter og avsluttes denne dagen - text_caracters_maximum: "%{count} tegn maksimum." - text_caracters_minimum: "Må være minst %{count} tegn langt." - text_length_between: "Lengde mellom %{min} og %{max} tegn." - text_tracker_no_workflow: Ingen arbeidsflyt definert for denne sakstypen - text_unallowed_characters: Ugyldige tegn - text_comma_separated: Flere verdier tillat (kommaseparert). - text_issues_ref_in_commit_messages: Referering og retting av saker i innsendingsmelding - text_issue_added: "Sak %{id} er innrapportert av %{author}." - text_issue_updated: "Sak %{id} er oppdatert av %{author}." - text_wiki_destroy_confirmation: Er du sikker på at du vil slette denne wikien og alt innholdet ? - text_issue_category_destroy_question: "Noen saker (%{count}) er lagt til i denne kategorien. Hva vil du gjøre ?" - text_issue_category_destroy_assignments: Fjern bruk av kategorier - text_issue_category_reassign_to: Overfør sakene til denne kategorien - text_user_mail_option: "For ikke-valgte prosjekter vil du bare motta varsling om ting du overvåker eller er involveret i (eks. saker du er forfatter av eller er tildelt)." - text_no_configuration_data: "Roller, arbeidsflyt, sakstyper og -statuser er ikke konfigurert enda.\nDet anbefales sterkt å laste inn standardkonfigurasjonen. Du vil kunne endre denne etter den er innlastet." - text_load_default_configuration: Last inn standardkonfigurasjonen - text_status_changed_by_changeset: "Brukt i endringssett %{value}." - text_issues_destroy_confirmation: 'Er du sikker på at du vil slette valgte sak(er) ?' - text_select_project_modules: 'Velg moduler du vil aktivere for dette prosjektet:' - text_default_administrator_account_changed: Standard administrator-konto er endret - text_file_repository_writable: Fil-arkivet er skrivbart - text_minimagick_available: MiniMagick er tilgjengelig (valgfritt) - text_destroy_time_entries_question: "%{hours} timer er ført på sakene du er i ferd med å slette. Hva vil du gjøre ?" - text_destroy_time_entries: Slett førte timer - text_assign_time_entries_to_project: Overfør førte timer til prosjektet - text_reassign_time_entries: 'Overfør førte timer til denne saken:' - text_user_wrote: "%{value} skrev:" - text_user_wrote_in: "%{value} skrev (%{link}):" - - default_role_manager: Leder - default_role_developer: Utvikler - default_role_reporter: Rapportør - default_tracker_bug: Feil - default_tracker_feature: Funksjon - default_tracker_support: Support - default_issue_status_new: Ny - default_issue_status_in_progress: Pågår - default_issue_status_resolved: Avklart - default_issue_status_feedback: Tilbakemelding - default_issue_status_closed: Lukket - default_issue_status_rejected: Avvist - default_doc_category_user: Brukerdokumentasjon - default_doc_category_tech: Teknisk dokumentasjon - default_priority_low: Lav - default_priority_normal: Normal - default_priority_high: Høy - default_priority_urgent: Haster - default_priority_immediate: Omgående - default_activity_design: Design - default_activity_development: Utvikling - - enumeration_issue_priorities: Sakssprioriteringer - enumeration_doc_categories: Dokumentkategorier - enumeration_activities: Aktiviteter (tidsregistrering) - text_enumeration_category_reassign_to: 'Endre dem til denne verdien:' - text_enumeration_destroy_question: "%{count} objekter er endret til denne verdien." - label_incoming_emails: Innkommende e-post - label_generate_key: Generer en nøkkel - setting_mail_handler_api_enabled: Skru på WS for innkommende epost - setting_mail_handler_api_key: API-nøkkel - text_email_delivery_not_configured: "Levering av epost er ikke satt opp, og varsler er skrudd av.\nStill inn din SMTP-tjener i config/configuration.yml og start programmet på nytt for å skru det på." - field_parent_title: Overordnet side - label_issue_watchers: Overvåkere - button_quote: Sitat - setting_sequential_project_identifiers: Generer sekvensielle prosjekt-IDer - notice_unable_delete_version: Kan ikke slette versjonen - label_renamed: gitt nytt navn - label_copied: kopiert - setting_plain_text_mail: kun ren tekst (ikke HTML) - permission_view_files: Vise filer - permission_edit_issues: Redigere saker - permission_edit_own_time_entries: Redigere egne timelister - permission_manage_public_queries: Administrere delte søk - permission_add_issues: Legge inn saker - permission_log_time: Loggføre timer - permission_view_changesets: Vise endringssett - permission_view_time_entries: Vise brukte timer - permission_manage_versions: Administrere versjoner - permission_manage_wiki: Administrere wiki - permission_manage_categories: Administrere kategorier for saker - permission_protect_wiki_pages: Beskytte wiki-sider - permission_comment_news: Kommentere nyheter - permission_delete_messages: Slette meldinger - permission_select_project_modules: Velge prosjektmoduler - permission_edit_wiki_pages: Redigere wiki-sider - permission_add_issue_watchers: Legge til overvåkere - permission_view_gantt: Vise gantt-diagram - permission_manage_issue_relations: Administrere saksrelasjoner - permission_delete_wiki_pages: Slette wiki-sider - permission_manage_boards: Administrere forum - permission_delete_wiki_pages_attachments: Slette vedlegg - permission_view_wiki_edits: Vise wiki-historie - permission_add_messages: Sende meldinger - permission_view_messages: Vise meldinger - permission_manage_files: Administrere filer - permission_edit_issue_notes: Redigere notater - permission_manage_news: Administrere nyheter - permission_view_calendar: Vise kalender - permission_manage_members: Administrere medlemmer - permission_edit_messages: Redigere meldinger - permission_delete_issues: Slette saker - permission_view_issue_watchers: Vise liste over overvåkere - permission_manage_repository: Administrere depot - permission_commit_access: Tilgang til innsending - permission_browse_repository: Bla gjennom depot - permission_view_documents: Vise dokumenter - permission_edit_project: Redigere prosjekt - permission_add_issue_notes: Legge til notater - permission_save_queries: Lagre søk - permission_view_wiki_pages: Vise wiki - permission_rename_wiki_pages: Gi wiki-sider nytt navn - permission_edit_time_entries: Redigere timelister - permission_edit_own_issue_notes: Redigere egne notater - setting_gravatar_enabled: Bruk Gravatar-brukerikoner - label_example: Eksempel - text_repository_usernames_mapping: "Select ou update the Redmine user mapped to each username found in the repository log.\nUsers with the same Redmine and repository username or email are automatically mapped." - permission_edit_own_messages: Rediger egne meldinger - permission_delete_own_messages: Slett egne meldinger - label_user_activity: "%{value}s aktivitet" - label_updated_time_by: "Oppdatert av %{author} for %{age} siden" - text_diff_truncated: '... This diff was truncated because it exceeds the maximum size that can be displayed.' - setting_diff_max_lines_displayed: Max number of diff lines displayed - text_plugin_assets_writable: Plugin assets directory writable - warning_attachments_not_saved: "%{count} fil(er) kunne ikke lagres." - button_create_and_continue: Opprett og fortsett - text_custom_field_possible_values_info: 'En linje for hver verdi' - label_display: Visning - field_editable: Redigerbar - setting_repository_log_display_limit: Maks antall revisjoner vist i fil-loggen - setting_file_max_size_displayed: Max size of text files displayed inline - field_watcher: Overvåker - setting_openid: Tillat OpenID innlogging og registrering - field_identity_url: OpenID URL - label_login_with_open_id_option: eller logg inn med OpenID - field_content: Innhold - label_descending: Synkende - label_sort: Sorter - label_ascending: Stigende - label_date_from_to: Fra %{start} til %{end} - label_greater_or_equal: ">=" - label_less_or_equal: <= - text_wiki_page_destroy_question: Denne siden har %{descendants} underside(r). Hva ønsker du å gjøre? - text_wiki_page_reassign_children: Tilknytt undersider til denne overordnede siden - text_wiki_page_nullify_children: Behold undersider som rotsider - text_wiki_page_destroy_children: Slett undersider og alle deres underliggende sider - setting_password_min_length: Minimum passordlengde - field_group_by: Grupper resultater etter - mail_subject_wiki_content_updated: "Wiki-side '%{id}' er oppdatert" - label_wiki_content_added: Wiki-side opprettet - mail_subject_wiki_content_added: "Wiki-side '%{id}' er opprettet" - mail_body_wiki_content_added: Wiki-siden '%{id}' ble opprettet av %{author}. - label_wiki_content_updated: Wiki-side oppdatert - mail_body_wiki_content_updated: Wiki-siden '%{id}' ble oppdatert av %{author}. - permission_add_project: Opprett prosjekt - setting_new_project_user_role_id: Rolle gitt en ikke-administratorbruker som oppretter et prosjekt - label_view_all_revisions: Se alle revisjoner - label_tag: Tag - label_branch: Gren - error_no_tracker_in_project: Ingen sakstyper er tilknyttet dette prosjektet. Vennligst kontroller prosjektets innstillinger. - error_no_default_issue_status: Ingen standard saksstatus er angitt. Vennligst kontroller konfigurasjonen (Gå til "Administrasjon -> Saksstatuser"). - text_journal_changed: "%{label} endret fra %{old} til %{new}" - text_journal_set_to: "%{label} satt til %{value}" - text_journal_deleted: "%{label} slettet (%{old})" - label_group_plural: Grupper - label_group: Gruppe - label_group_new: Ny gruppe - label_time_entry_plural: Brukt tid - text_journal_added: "%{label} %{value} lagt til" - field_active: Aktiv - enumeration_system_activity: Systemaktivitet - permission_delete_issue_watchers: Slett overvåkere - version_status_closed: stengt - version_status_locked: låst - version_status_open: åpen - error_can_not_reopen_issue_on_closed_version: En sak tilknyttet en stengt versjon kan ikke gjenåpnes. - label_user_anonymous: Anonym - button_move_and_follow: Flytt og følg etter - setting_default_projects_modules: Standard aktiverte moduler for nye prosjekter - setting_gravatar_default: Standard Gravatar-bilde - field_sharing: Deling - label_version_sharing_hierarchy: Med prosjekt-hierarki - label_version_sharing_system: Med alle prosjekter - label_version_sharing_descendants: Med underprosjekter - label_version_sharing_tree: Med prosjekt-tre - label_version_sharing_none: Ikke delt - error_can_not_archive_project: Dette prosjektet kan ikke arkiveres - button_copy_and_follow: Kopier og følg etter - label_copy_source: Kilde - setting_issue_done_ratio: Kalkuler ferdigstillingsprosent ut i fra - setting_issue_done_ratio_issue_status: Bruk saksstatuser - error_issue_done_ratios_not_updated: Ferdigstillingsprosent oppdateres ikke. - error_workflow_copy_target: Vennligst velg sakstype(r) og rolle(r) - setting_issue_done_ratio_issue_field: Bruk felt fra saker - label_copy_same_as_target: Samme som mål - label_copy_target: Mål - notice_issue_done_ratios_updated: Ferdigstillingsprosent oppdatert. - error_workflow_copy_source: Vennligst velg en kilde-sakstype eller rolle. - label_update_issue_done_ratios: Oppdatert ferdigstillingsprosent - setting_start_of_week: Start kalender på - permission_view_issues: Se på saker - label_display_used_statuses_only: Vis kun statuser som brukes av denne sakstypen - label_revision_id: Revision %{value} - label_api_access_key: API tilgangsnøkkel - label_api_access_key_created_on: API tilgangsnøkkel opprettet for %{value} siden - label_feeds_access_key: Atom tilgangsnøkkel - notice_api_access_key_reseted: Din API tilgangsnøkkel ble resatt. - setting_rest_api_enabled: Aktiver REST webservice - label_missing_api_access_key: Mangler en API tilgangsnøkkel - label_missing_feeds_access_key: Mangler en Atom tilgangsnøkkel - button_show: Vis - text_line_separated: Flere verdier er tillatt (en linje per verdi). - setting_mail_handler_body_delimiters: Avkort epost etter en av disse linjene - permission_add_subprojects: Opprett underprosjekt - label_subproject_new: Nytt underprosjekt - text_own_membership_delete_confirmation: |- - Du er i ferd med å fjerne noen eller alle rettigheter og vil kanskje ikke være i stand til å redigere dette prosjektet etterpå. - Er du sikker på at du vil fortsette? - label_close_versions: Steng fullførte versjoner - label_board_sticky: Fast - label_board_locked: Låst - permission_export_wiki_pages: Eksporter wiki-sider - setting_cache_formatted_text: Mellomlagre formattert tekst - permission_manage_project_activities: Administrere prosjektaktiviteter - error_unable_delete_issue_status: Kan ikke slette saksstatus (%{value}) - label_profile: Profil - permission_manage_subtasks: Administrere undersaker - field_parent_issue: Overordnet sak - label_subtask_plural: Undersaker - label_project_copy_notifications: Send epost-varslinger under prosjektkopiering - error_can_not_delete_custom_field: Kan ikke slette eget felt - error_unable_to_connect: Kunne ikke koble til (%{value}) - error_can_not_remove_role: Denne rollen er i bruk og kan ikke slettes. - error_can_not_delete_tracker: Denne sakstypen inneholder saker og kan ikke slettes. - field_principal: Principal - notice_failed_to_save_members: "Feil ved lagring av medlem(mer): %{errors}." - text_zoom_out: Zoom ut - text_zoom_in: Zoom inn - notice_unable_delete_time_entry: Kan ikke slette oppføring fra timeliste. - label_overall_spent_time: All tidsbruk - field_time_entries: Loggfør tid - project_module_gantt: Gantt - project_module_calendar: Kalender - button_edit_associated_wikipage: "Rediger tilhørende Wiki-side: %{page_title}" - field_text: Tekstfelt - setting_default_notification_option: Standardvalg for varslinger - label_user_mail_option_only_my_events: Kun for ting jeg overvåker eller er involvert i - label_user_mail_option_none: Ingen hendelser - field_member_of_group: Den tildeltes gruppe - field_assigned_to_role: Den tildeltes rolle - notice_not_authorized_archived_project: Prosjektet du forsøker å åpne er blitt arkivert. - label_principal_search: "Søk etter bruker eller gruppe:" - label_user_search: "Søk etter bruker:" - field_visible: Synlig - setting_emails_header: Eposthode - setting_commit_logtime_activity_id: Aktivitet for logget tid. - text_time_logged_by_changeset: Lagt til i endringssett %{value}. - setting_commit_logtime_enabled: Muliggjør loggføring av tid - notice_gantt_chart_truncated: Diagrammet ble avkortet fordi det overstiger det maksimale antall elementer som kan vises (%{max}) - setting_gantt_items_limit: Maksimalt antall elementer vist på gantt-diagrammet - field_warn_on_leaving_unsaved: Vis meg en advarsel når jeg forlater en side med ikke lagret tekst - text_warn_on_leaving_unsaved: Siden inneholder tekst som ikke er lagret og som vil bli tapt om du forlater denne siden. - label_my_queries: Mine egne spørringer - text_journal_changed_no_detail: "%{label} oppdatert" - label_news_comment_added: Kommentar lagt til en nyhet - button_expand_all: Utvid alle - button_collapse_all: Kollaps alle - label_additional_workflow_transitions_for_assignee: Ytterligere overganger tillatt når brukeren er den som er tildelt saken - label_additional_workflow_transitions_for_author: Ytterligere overganger tillatt når brukeren er den som har opprettet saken - label_bulk_edit_selected_time_entries: Masserediger valgte timeliste-oppføringer - text_time_entries_destroy_confirmation: Er du sikker på du vil slette de(n) valgte timeliste-oppføringen(e)? - label_role_anonymous: Anonym - label_role_non_member: Ikke medlem - label_issue_note_added: Notat lagt til - label_issue_status_updated: Status oppdatert - label_issue_priority_updated: Prioritet oppdatert - label_issues_visibility_own: Saker opprettet av eller tildelt brukeren - field_issues_visibility: Synlighet på saker - label_issues_visibility_all: Alle saker - permission_set_own_issues_private: Gjør egne saker offentlige eller private - field_is_private: Privat - permission_set_issues_private: Gjør saker offentlige eller private - label_issues_visibility_public: Alle ikke-private saker - text_issues_destroy_descendants_confirmation: Dette vil også slette %{count} undersak(er). - field_commit_logs_encoding: Tegnkoding for innsendingsmeldinger - field_scm_path_encoding: Koding av sti - text_scm_path_encoding_note: "Standard: UTF-8" - field_path_to_repository: Sti til depot - field_root_directory: Rotkatalog - field_cvs_module: Modul - field_cvsroot: CVSROOT - text_mercurial_repository_note: Lokalt depot (f.eks. /hgrepo, c:\hgrepo) - text_scm_command: Kommando - text_scm_command_version: Versjon - label_git_report_last_commit: Rapporter siste innsending for filer og kataloger - text_scm_config: Du kan konfigurere scm kommandoer i config/configuration.yml. Vennligst restart applikasjonen etter å ha redigert filen. - text_scm_command_not_available: Scm kommando er ikke tilgjengelig. Vennligst kontroller innstillingene i administrasjonspanelet. - - text_git_repository_note: Depot er bart og lokalt (f.eks. /gitrepo, c:\gitrepo) - - notice_issue_successful_create: Sak %{id} opprettet. - label_between: mellom - setting_issue_group_assignment: Tillat tildeling av saker til grupper - label_diff: diff - - description_query_sort_criteria_direction: Sorteringsretning - description_project_scope: Search scope - description_filter: Filter - description_user_mail_notification: Mail notification settings - description_message_content: Meldingsinnhold - description_available_columns: Tilgjengelige kolonner - description_issue_category_reassign: Choose issue category - description_search: Søkefelt - description_notes: Notes - description_choose_project: Prosjekter - description_query_sort_criteria_attribute: Sort attribute - description_wiki_subpages_reassign: Velg ny overordnet side - description_selected_columns: Valgte kolonner - label_parent_revision: Overordnet - label_child_revision: Underordnet - error_scm_annotate_big_text_file: The entry cannot be annotated, as it exceeds the maximum text file size. - setting_default_issue_start_date_to_creation_date: Bruk dagens dato som startdato for nye saker - button_edit_section: Rediger denne seksjonen - setting_repositories_encodings: Attachments and repositories encodings - description_all_columns: Alle kolonnene - button_export: Eksporter - label_export_options: "%{export_format} eksportvalg" - error_attachment_too_big: Filen overstiger maksimum filstørrelse (%{max_size}) og kan derfor ikke lastes opp - notice_failed_to_save_time_entries: "Failed to save %{count} time entrie(s) on %{total} selected: %{ids}." - label_x_issues: - zero: 0 saker - one: 1 sak - other: "%{count} saker" - label_repository_new: Nytt depot - field_repository_is_default: Hoveddepot - label_copy_attachments: Kopier vedlegg - label_item_position: "%{position}/%{count}" - label_completed_versions: Completed versions - text_project_identifier_info: Kun små bokstaver (a-z), tall, bindestrek (-) og "underscore" (_) er tillatt.
    Etter lagring er det ikke mulig å gjøre endringer. - field_multiple: Flere verdier - setting_commit_cross_project_ref: Allow issues of all the other projects to be referenced and fixed - text_issue_conflict_resolution_add_notes: Add my notes and discard my other changes - text_issue_conflict_resolution_overwrite: Apply my changes anyway (previous notes will be kept but some changes may be overwritten) - notice_issue_update_conflict: Saken ble oppdatert av en annen bruker mens du redigerte den. - text_issue_conflict_resolution_cancel: Forkast alle endringen mine og vis %{link} på nytt - permission_manage_related_issues: Manage related issues - field_auth_source_ldap_filter: LDAP filter - label_search_for_watchers: Search for watchers to add - notice_account_deleted: Din konto er ugjenkallelig slettet. - setting_unsubscribe: Tillat brukere å slette sin egen konto - button_delete_my_account: Slett kontoen min - text_account_destroy_confirmation: |- - Er du sikker på at du ønsker å fortsette? - Kontoen din vil bli ugjenkallelig slettet uten mulighet for å reaktiveres igjen. - error_session_expired: Økten har gått ut på tid. Vennligst logg på igjen. - text_session_expiration_settings: "Advarsel: ved å endre disse innstillingene kan aktive økter gå ut på tid, inkludert din egen." - setting_session_lifetime: Øktenes makslengde - setting_session_timeout: Økten er avsluttet på grunn av inaktivitet - label_session_expiration: Økten er avsluttet - permission_close_project: Close / reopen the project - button_close: Close - button_reopen: Reopen - project_status_active: active - project_status_closed: closed - project_status_archived: archived - text_project_closed: This project is closed and read-only. - notice_user_successful_create: User %{id} created. - field_core_fields: Standard fields - field_timeout: Timeout (in seconds) - setting_thumbnails_enabled: Display attachment thumbnails - setting_thumbnails_size: Thumbnails size (in pixels) - label_status_transitions: Status transitions - label_fields_permissions: Fields permissions - label_readonly: Read-only - label_required: Required - text_repository_identifier_info: Only lower case letters (a-z), numbers, dashes and underscores are allowed.
    Once saved, the identifier cannot be changed. - field_board_parent: Parent forum - label_attribute_of_project: Project's %{name} - label_attribute_of_author: Author's %{name} - label_attribute_of_assigned_to: Assignee's %{name} - label_attribute_of_fixed_version: Target version's %{name} - label_copy_subtasks: Copy subtasks - label_copied_to: kopiert til - label_copied_from: kopiert fra - label_any_issues_in_project: any issues in project - label_any_issues_not_in_project: any issues not in project - field_private_notes: Private notes - permission_view_private_notes: View private notes - permission_set_notes_private: Set notes as private - label_no_issues_in_project: no issues in project - label_any: alle - label_last_n_weeks: last %{count} weeks - setting_cross_project_subtasks: Allow cross-project subtasks - label_cross_project_descendants: Med underprosjekter - label_cross_project_tree: Med prosjekt-tre - label_cross_project_hierarchy: Med prosjekt-hierarki - label_cross_project_system: Med alle prosjekter - button_hide: Hide - setting_non_working_week_days: Non-working days - label_in_the_next_days: in the next - label_in_the_past_days: in the past - label_attribute_of_user: User's %{name} - text_turning_multiple_off: If you disable multiple values, multiple values will be - removed in order to preserve only one value per item. - label_attribute_of_issue: Issue's %{name} - permission_add_documents: Add documents - permission_edit_documents: Edit documents - permission_delete_documents: Delete documents - label_gantt_progress_line: Progress line - setting_jsonp_enabled: Enable JSONP support - field_inherit_members: Inherit members - field_closed_on: Closed - field_generate_password: Generate password - setting_default_projects_tracker_ids: Default trackers for new projects - label_total_time: Totalt - notice_account_not_activated_yet: You haven't activated your account yet. If you want - to receive a new activation email, please click this link. - notice_account_locked: Your account is locked. - label_hidden: Hidden - label_visibility_private: to me only - label_visibility_roles: to these roles only - label_visibility_public: to any users - field_must_change_passwd: Must change password at next logon - notice_new_password_must_be_different: The new password must be different from the - current password - setting_mail_handler_excluded_filenames: Exclude attachments by name - text_convert_available: ImageMagick convert available (optional) - label_link: Link - label_only: only - label_drop_down_list: drop-down list - label_checkboxes: checkboxes - label_link_values_to: Link values to URL - setting_force_default_language_for_anonymous: Force default language for anonymous - users - setting_force_default_language_for_loggedin: Force default language for logged-in - users - label_custom_field_select_type: Select the type of object to which the custom field - is to be attached - label_issue_assigned_to_updated: Assignee updated - label_check_for_updates: Check for updates - label_latest_compatible_version: Latest compatible version - label_unknown_plugin: Unknown plugin - label_radio_buttons: radio buttons - label_group_anonymous: Anonymous users - label_group_non_member: Non member users - label_add_projects: Add projects - field_default_status: Default status - text_subversion_repository_note: 'Examples: file:///, http://, https://, svn://, svn+[tunnelscheme]://' - field_users_visibility: Users visibility - label_users_visibility_all: All active users - label_users_visibility_members_of_visible_projects: Members of visible projects - label_edit_attachments: Edit attached files - setting_link_copied_issue: Link issues on copy - label_link_copied_issue: Link copied issue - label_ask: Ask - label_search_attachments_yes: Search attachment filenames and descriptions - label_search_attachments_no: Do not search attachments - label_search_attachments_only: Search attachments only - label_search_open_issues_only: Open issues only - field_address: E-post - setting_max_additional_emails: Maximum number of additional email addresses - label_email_address_plural: Emails - label_email_address_add: Add email address - label_enable_notifications: Enable notifications - label_disable_notifications: Disable notifications - setting_search_results_per_page: Search results per page - label_blank_value: blank - permission_copy_issues: Copy issues - error_password_expired: Your password has expired or the administrator requires you - to change it. - field_time_entries_visibility: Time logs visibility - setting_password_max_age: Require password change after - label_parent_task_attributes: Parent tasks attributes - label_parent_task_attributes_derived: Calculated from subtasks - label_parent_task_attributes_independent: Independent of subtasks - label_time_entries_visibility_all: All time entries - label_time_entries_visibility_own: Time entries created by the user - label_member_management: Member management - label_member_management_all_roles: All roles - label_member_management_selected_roles_only: Only these roles - label_password_required: Confirm your password to continue - label_total_spent_time: All tidsbruk - notice_import_finished: "%{count} items have been imported" - notice_import_finished_with_errors: "%{count} out of %{total} items could not be imported" - error_invalid_file_encoding: The file is not a valid %{encoding} encoded file - error_invalid_csv_file_or_settings: The file is not a CSV file or does not match the - settings below - error_can_not_read_import_file: An error occurred while reading the file to import - permission_import_issues: Import issues - label_import_issues: Import issues - label_select_file_to_import: Select the file to import - label_fields_separator: Field separator - label_fields_wrapper: Field wrapper - label_encoding: Encoding - label_comma_char: Comma - label_semi_colon_char: Semicolon - label_quote_char: Quote - label_double_quote_char: Double quote - label_fields_mapping: Fields mapping - label_file_content_preview: File content preview - label_create_missing_values: Create missing values - button_import: Import - field_total_estimated_hours: Total estimated time - label_api: API - label_total_plural: Totals - label_assigned_issues: Assigned issues - label_field_format_enumeration: Key/value list - label_f_hour_short: '%{value} h' - field_default_version: Default version - error_attachment_extension_not_allowed: Attachment extension %{extension} is not allowed - setting_attachment_extensions_allowed: Allowed extensions - setting_attachment_extensions_denied: Disallowed extensions - label_any_open_issues: any open issues - label_no_open_issues: no open issues - label_default_values_for_new_users: Default values for new users - error_ldap_bind_credentials: Invalid LDAP Account/Password - setting_sys_api_key: API-nøkkel - setting_lost_password: Mistet passord - mail_subject_security_notification: Security notification - mail_body_security_notification_change: ! '%{field} was changed.' - mail_body_security_notification_change_to: ! '%{field} was changed to %{value}.' - mail_body_security_notification_add: ! '%{field} %{value} was added.' - mail_body_security_notification_remove: ! '%{field} %{value} was removed.' - mail_body_security_notification_notify_enabled: Email address %{value} now receives - notifications. - mail_body_security_notification_notify_disabled: Email address %{value} no longer - receives notifications. - mail_body_settings_updated: ! 'The following settings were changed:' - field_remote_ip: IP address - label_wiki_page_new: New wiki page - label_relations: Relations - button_filter: Filter - mail_body_password_updated: Your password has been changed. - label_no_preview: No preview available - error_no_tracker_allowed_for_new_issue_in_project: The project doesn't have any trackers - for which you can create an issue - label_tracker_all: All trackers - label_new_project_issue_tab_enabled: Display the "New issue" tab - setting_new_item_menu_tab: Project menu tab for creating new objects - label_new_object_tab_enabled: Display the "+" drop-down - error_no_projects_with_tracker_allowed_for_new_issue: There are no projects with trackers - for which you can create an issue - field_textarea_font: Font used for text areas - label_font_default: Default font - label_font_monospace: Monospaced font - label_font_proportional: Proportional font - setting_timespan_format: Time span format - label_table_of_contents: Table of contents - setting_commit_logs_formatting: Apply text formatting to commit messages - setting_mail_handler_enable_regex: Enable regular expressions - error_move_of_child_not_possible: 'Subtask %{child} could not be moved to the new - project: %{errors}' - error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted: Spent time cannot - be reassigned to an issue that is about to be deleted - setting_timelog_required_fields: Required fields for time logs - label_attribute_of_object: '%{object_name}''s %{name}' - label_user_mail_option_only_assigned: Only for things I watch or I am assigned to - label_user_mail_option_only_owner: Only for things I watch or I am the owner of - warning_fields_cleared_on_bulk_edit: Changes will result in the automatic deletion - of values from one or more fields on the selected objects - field_updated_by: Updated by - field_last_updated_by: Last updated by - field_full_width_layout: Full width layout - label_last_notes: Last notes - field_digest: Checksum - field_default_assigned_to: Default assignee - setting_show_custom_fields_on_registration: Show custom fields on registration - permission_view_news: View news - label_no_preview_alternative_html: No preview available. %{link} the file instead. - label_no_preview_download: Download - setting_close_duplicate_issues: Close duplicate issues automatically - error_exceeds_maximum_hours_per_day: Cannot log more than %{max_hours} hours on the - same day (%{logged_hours} hours have already been logged) - setting_time_entry_list_defaults: Timelog list defaults - setting_timelog_accept_0_hours: Accept time logs with 0 hours - setting_timelog_max_hours_per_day: Maximum hours that can be logged per day and user - label_x_revisions: "%{count} revisions" - error_can_not_delete_auth_source: This authentication mode is in use and cannot be - deleted. - button_actions: Actions - mail_body_lost_password_validity: Please be aware that you may change the password - only once using this link. - text_login_required_html: When not requiring authentication, public projects and their - contents are openly available on the network. You can edit - the applicable permissions. - label_login_required_yes: 'Yes' - label_login_required_no: No, allow anonymous access to public projects - text_project_is_public_non_member: Public projects and their contents are available - to all logged-in users. - text_project_is_public_anonymous: Public projects and their contents are openly available - on the network. - label_version_and_files: Versions (%{count}) and Files - label_ldap: LDAP - label_ldaps_verify_none: LDAPS (without certificate check) - label_ldaps_verify_peer: LDAPS - label_ldaps_warning: It is recommended to use an encrypted LDAPS connection with certificate - check to prevent any manipulation during the authentication process. - label_nothing_to_preview: Nothing to preview - error_token_expired: This password recovery link has expired, please try again. - error_spent_on_future_date: Cannot log time on a future date - setting_timelog_accept_future_dates: Accept time logs on future dates - label_delete_link_to_subtask: Slett relasjon - error_not_allowed_to_log_time_for_other_users: You are not allowed to log time - for other users - permission_log_time_for_other_users: Log spent time for other users - label_tomorrow: tomorrow - label_next_week: next week - label_next_month: next month - text_role_no_workflow: No workflow defined for this role - text_status_no_workflow: No tracker uses this status in the workflows - setting_mail_handler_preferred_body_part: Preferred part of multipart (HTML) emails - setting_show_status_changes_in_mail_subject: Show status changes in issue mail notifications - subject - label_inherited_from_parent_project: Inherited from parent project - label_inherited_from_group: Inherited from group %{name} - label_trackers_description: Trackers description - label_open_trackers_description: View all trackers description - label_preferred_body_part_text: Text - label_preferred_body_part_html: HTML (experimental) - field_parent_issue_subject: Parent task subject - permission_edit_own_issues: Edit own issues - text_select_apply_tracker: Select tracker - label_updated_issues: Updated issues - text_avatar_server_config_html: The current avatar server is %{url}. - You can configure it in config/configuration.yml. - setting_gantt_months_limit: Maximum number of months displayed on the gantt chart - permission_import_time_entries: Import time entries - label_import_notifications: Send email notifications during the import - text_gs_available: ImageMagick PDF support available (optional) - field_recently_used_projects: Number of recently used projects in jump box - label_optgroup_bookmarks: Bookmarks - label_optgroup_others: Other projects - label_optgroup_recents: Recently used - button_project_bookmark: Add bookmark - button_project_bookmark_delete: Remove bookmark - field_history_default_tab: Issue's history default tab - label_issue_history_properties: Property changes - label_issue_history_notes: Notes - label_last_tab_visited: Last visited tab - field_unique_id: Unique ID - text_no_subject: no subject - setting_password_required_char_classes: Required character classes for passwords - label_password_char_class_uppercase: uppercase letters - label_password_char_class_lowercase: lowercase letters - label_password_char_class_digits: digits - label_password_char_class_special_chars: special characters - text_characters_must_contain: Must contain %{character_classes}. - label_starts_with: starts with - label_ends_with: ends with - label_issue_fixed_version_updated: Target version updated - setting_project_list_defaults: Projects list defaults - label_display_type: Display results as - label_display_type_list: List - label_display_type_board: Board - label_my_bookmarks: My bookmarks - label_import_time_entries: Import time entries diff --git a/config/locales/pl.yml b/config/locales/pl.yml deleted file mode 100644 index 45b0f81..0000000 --- a/config/locales/pl.yml +++ /dev/null @@ -1,1328 +0,0 @@ -# Polish translations for Ruby on Rails -# by Jacek Becela (jacek.becela@gmail.com, http://github.com/ncr) -# by Krzysztof Podejma (kpodejma@customprojects.pl, http://www.customprojects.pl) - -pl: - number: - format: - separator: "," - delimiter: " " - precision: 2 - currency: - format: - format: "%n %u" - unit: "PLN" - percentage: - format: - delimiter: "" - precision: - format: - delimiter: "" - human: - format: - delimiter: "" - precision: 3 - storage_units: - format: "%n %u" - units: - byte: - one: "B" - other: "B" - kb: "KB" - mb: "MB" - gb: "GB" - tb: "TB" - - direction: ltr - date: - formats: - default: "%Y-%m-%d" - short: "%d %b" - long: "%d %B %Y" - - day_names: [Niedziela, Poniedziałek, Wtorek, Środa, Czwartek, Piątek, Sobota] - abbr_day_names: [nie, pon, wto, śro, czw, pia, sob] - - month_names: [~, Styczeń, Luty, Marzec, Kwiecień, Maj, Czerwiec, Lipiec, Sierpień, Wrzesień, Październik, Listopad, Grudzień] - abbr_month_names: [~, sty, lut, mar, kwi, maj, cze, lip, sie, wrz, paź, lis, gru] - order: - - :year - - :month - - :day - - time: - formats: - default: "%a, %d %b %Y, %H:%M:%S %z" - time: "%H:%M" - short: "%d %b, %H:%M" - long: "%d %B %Y, %H:%M" - am: "przed południem" - pm: "po południu" - - datetime: - distance_in_words: - half_a_minute: "pół minuty" - less_than_x_seconds: - one: "mniej niż sekundę" - few: "mniej niż %{count} sekundy" - other: "mniej niż %{count} sekund" - x_seconds: - one: "sekundę" - few: "%{count} sekundy" - other: "%{count} sekund" - less_than_x_minutes: - one: "mniej niż minutę" - few: "mniej niż %{count} minuty" - other: "mniej niż %{count} minut" - x_minutes: - one: "minutę" - few: "%{count} minuty" - other: "%{count} minut" - about_x_hours: - one: "około godziny" - other: "około %{count} godzin" - x_hours: - one: "1 godzina" - other: "%{count} godzin" - x_days: - one: "1 dzień" - other: "%{count} dni" - about_x_months: - one: "około miesiąca" - other: "około %{count} miesięcy" - x_months: - one: "1 miesiąc" - few: "%{count} miesiące" - other: "%{count} miesięcy" - about_x_years: - one: "około roku" - other: "około %{count} lat" - over_x_years: - one: "ponad rok" - few: "ponad %{count} lata" - other: "ponad %{count} lat" - almost_x_years: - one: "prawie 1 rok" - few: "prawie %{count} lata" - other: "prawie %{count} lat" - - activerecord: - errors: - template: - header: - one: "%{model} nie został zachowany z powodu jednego błędu" - other: "%{model} nie został zachowany z powodu %{count} błędów" - body: "Błędy dotyczą następujących pól:" - messages: - inclusion: "nie znajduje się na liście dopuszczalnych wartości" - exclusion: "znajduje się na liście zabronionych wartości" - invalid: "jest nieprawidłowe" - confirmation: "nie zgadza się z potwierdzeniem" - accepted: "musi być zaakceptowane" - empty: "nie może być puste" - blank: "nie może być puste" - too_long: "jest za długie (maksymalnie %{count} znaków)" - too_short: "jest za krótkie (minimalnie %{count} znaków)" - wrong_length: "jest nieprawidłowej długości (powinna wynosić %{count} znaków)" - taken: "jest już zajęte" - not_a_number: "nie jest liczbą" - greater_than: "musi być większe niż %{count}" - greater_than_or_equal_to: "musi być większe lub równe %{count}" - equal_to: "musi być równe %{count}" - less_than: "musi być mniejsze niż %{count}" - less_than_or_equal_to: "musi być mniejsze lub równe %{count}" - odd: "musi być nieparzyste" - even: "musi być parzyste" - greater_than_start_date: "musi być większe niż początkowa data" - not_same_project: "nie należy do tego samego projektu" - circular_dependency: "Ta relacja może wytworzyć zapętloną zależność" - cant_link_an_issue_with_a_descendant: "Zagadnienie nie może zostać powiązane z jednym z własnych podzagadnień" - earlier_than_minimum_start_date: "nie może być wcześniej niż %{date} z powodu poprzedających zagadnień" - not_a_regexp: "is not a valid regular expression" - open_issue_with_closed_parent: "An open issue cannot be attached to a closed parent task" - must_contain_uppercase: "must contain uppercase letters (A-Z)" - must_contain_lowercase: "must contain lowercase letters (a-z)" - must_contain_digits: "must contain digits (0-9)" - must_contain_special_chars: "must contain special characters (!, $, %, ...)" - - support: - array: - sentence_connector: "i" - skip_last_comma: true - - # Keep this line in order to avoid problems with Windows Notepad UTF-8 EF-BB-BFidea... - # Best regards from Lublin@Poland :-) - # PL translation by Mariusz@Olejnik.net, - # Wiktor Wandachowicz , 2010 - - actionview_instancetag_blank_option: Proszę wybrać - actionview_instancetag_blank_option: wybierz - - button_activate: Aktywuj - button_add: Dodaj - button_annotate: Adnotuj - button_apply: Ustaw - button_archive: Archiwizuj - button_back: Wstecz - button_cancel: Anuluj - button_change: Zmień - button_change_password: Zmień hasło - button_check_all: Zaznacz wszystko - button_clear: Wyczyść - button_configure: Konfiguruj - button_copy: Kopia - button_create: Stwórz - button_delete: Usuń - button_download: Pobierz - button_edit: Edytuj - button_list: Lista - button_lock: Zablokuj - button_log_time: Dziennik - button_login: Login - button_move: Przenieś - button_quote: Cytuj - button_rename: Zmień nazwę - button_reply: Odpowiedz - button_reset: Resetuj - button_rollback: Przywróć do tej wersji - button_save: Zapisz - button_sort: Sortuj - button_submit: Wyślij - button_test: Testuj - button_unarchive: Przywróć z archiwum - button_uncheck_all: Odznacz wszystko - button_unlock: Odblokuj - button_unwatch: Nie obserwuj - button_update: Uaktualnij - button_view: Pokaż - button_watch: Obserwuj - default_activity_design: Projektowanie - default_activity_development: Rozwój - default_doc_category_tech: Dokumentacja techniczna - default_doc_category_user: Dokumentacja użytkownika - default_issue_status_in_progress: W toku - default_issue_status_closed: Zamknięty - default_issue_status_feedback: Odpowiedź - default_issue_status_new: Nowy - default_issue_status_rejected: Odrzucony - default_issue_status_resolved: Rozwiązany - default_priority_high: Wysoki - default_priority_immediate: Natychmiastowy - default_priority_low: Niski - default_priority_normal: Normalny - default_priority_urgent: Pilny - default_role_developer: Programista - default_role_manager: Kierownik - default_role_reporter: Zgłaszający - default_tracker_bug: Błąd - default_tracker_feature: Zadanie - default_tracker_support: Wsparcie - enumeration_activities: Działania (śledzenie czasu) - enumeration_doc_categories: Kategorie dokumentów - enumeration_issue_priorities: Priorytety zagadnień - error_can_t_load_default_data: "Domyślna konfiguracja nie może być załadowana: %{value}" - error_issue_not_found_in_project: 'Zagadnienie nie zostało znalezione lub nie należy do tego projektu' - error_scm_annotate: "Wpis nie istnieje lub nie można do niego dodawać adnotacji." - error_scm_command_failed: "Wystąpił błąd przy próbie dostępu do repozytorium: %{value}" - error_scm_not_found: "Obiekt lub wersja nie zostały znalezione w repozytorium." - field_account: Konto - field_activity: Aktywność - field_admin: Administrator - field_assignable: Zagadnienia mogą być przypisane do tej roli - field_assigned_to: Przypisany do - field_attr_firstname: Imię atrybut - field_attr_lastname: Nazwisko atrybut - field_attr_login: Login atrybut - field_attr_mail: E-mail atrybut - field_auth_source: Tryb uwierzytelniania - field_author: Autor - field_base_dn: Base DN - field_category: Kategoria - field_column_names: Nazwy kolumn - field_comments: Komentarz - field_comments_sorting: Pokazuj komentarze - field_created_on: Data utworzenia - field_default_value: Domyślny - field_delay: Opóźnienie - field_description: Opis - field_done_ratio: "% Wykonania" - field_downloads: Pobrań - field_due_date: Data oddania - field_effective_date: Data - field_estimated_hours: Szacowany czas - field_field_format: Format - field_filename: Plik - field_filesize: Rozmiar - field_firstname: Imię - field_fixed_version: Wersja docelowa - field_hide_mail: Ukryj mój adres e-mail - field_homepage: Strona www - field_host: Host - field_hours: Godzin - field_identifier: Identyfikator - field_is_closed: Zagadnienie zamknięte - field_is_default: Domyślny status - field_is_filter: Atrybut filtrowania - field_is_for_all: Dla wszystkich projektów - field_is_in_roadmap: Zagadnienie pokazywane na mapie - field_is_public: Publiczny - field_is_required: Wymagane - field_issue: Zagadnienie - field_issue_to: Powiązania zagadnienia - field_language: Język - field_last_login_on: Ostatnie połączenie - field_lastname: Nazwisko - field_login: Login - field_mail: E-mail - field_mail_notification: Powiadomienia e-mail - field_max_length: Maksymalna długość - field_min_length: Minimalna długość - field_name: Nazwa - field_new_password: Nowe hasło - field_notes: Notatki - field_onthefly: Tworzenie użytkownika w locie - field_parent: Projekt nadrzędny - field_parent_title: Strona rodzica - field_password: Hasło - field_password_confirmation: Potwierdzenie - field_port: Port - field_possible_values: Możliwe wartości - field_priority: Priorytet - field_project: Projekt - field_redirect_existing_links: Przekierowanie istniejących odnośników - field_regexp: Wyrażenie regularne - field_role: Rola - field_searchable: Przeszukiwalne - field_spent_on: Data - field_start_date: Data rozpoczęcia - field_start_page: Strona startowa - field_status: Status - field_subject: Temat - field_subproject: Podprojekt - field_summary: Podsumowanie - field_time_zone: Strefa czasowa - field_title: Tytuł - field_tracker: Typ zagadnienia - field_type: Typ - field_updated_on: Data modyfikacji - field_url: URL - field_user: Użytkownik - field_value: Wartość - field_version: Wersja - general_csv_decimal_separator: ',' - general_csv_encoding: UTF-8 - general_csv_separator: ';' - general_pdf_fontname: freesans - general_pdf_monospaced_fontname: freemono - general_first_day_of_week: '1' - general_lang_name: 'Polish (Polski)' - general_text_No: 'Nie' - general_text_Yes: 'Tak' - general_text_no: 'nie' - general_text_yes: 'tak' - - label_activity: Aktywność - label_add_another_file: Dodaj kolejny plik - label_add_note: Dodaj notatkę - label_added: dodane - label_added_time_by: "Dodane przez %{author} %{age} temu" - label_administration: Administracja - label_age: Wiek - label_ago: dni temu - label_all: wszystko - label_all_words: Wszystkie słowa - label_and_its_subprojects: "%{value} i podprojekty" - label_applied_status: Stosowany status - label_assigned_to_me_issues: Zagadnienia przypisane do mnie - label_associated_revisions: Skojarzone rewizje - label_attachment: Plik - label_attachment_delete: Usuń plik - label_attachment_new: Nowy plik - label_attachment_plural: Pliki - label_attribute: Atrybut - label_attribute_plural: Atrybuty - label_auth_source: Tryb uwierzytelniania - label_auth_source_new: Nowy tryb uwierzytelniania - label_auth_source_plural: Tryby uwierzytelniania - label_authentication: Uwierzytelnianie - label_blocked_by: blokowane przez - label_blocks: blokuje - label_board: Forum - label_board_new: Nowe forum - label_board_plural: Fora - label_boolean: Wartość logiczna - label_browse: Przegląd - label_bulk_edit_selected_issues: Zbiorowa edycja zagadnień - label_calendar: Kalendarz - label_change_plural: Zmiany - label_change_properties: Zmień właściwości - label_change_status: Status zmian - label_change_view_all: Pokaż wszystkie zmiany - label_changes_details: Szczegóły wszystkich zmian - label_changeset_plural: Zestawienia zmian - label_chronological_order: W kolejności chronologicznej - label_closed_issues: zamknięte - label_closed_issues_plural234: zamknięte - label_closed_issues_plural5: zamknięte - label_closed_issues_plural: zamknięte - label_x_open_issues_abbr: - zero: 0 otwartych - one: 1 otwarty - few: "%{count} otwarte" - other: "%{count} otwartych" - label_x_closed_issues_abbr: - zero: 0 zamkniętych - one: 1 zamknięty - few: "%{count} zamknięte" - other: "%{count} zamkniętych" - label_comment: Komentarz - label_comment_add: Dodaj komentarz - label_comment_added: Komentarz dodany - label_comment_delete: Usuń komentarze - label_comment_plural234: Komentarze - label_comment_plural5: Komentarzy - label_comment_plural: Komentarze - label_x_comments: - zero: brak komentarzy - one: 1 komentarz - few: "%{count} komentarze" - other: "%{count} komentarzy" - label_commits_per_author: Zatwierdzenia według autorów - label_commits_per_month: Zatwierdzenia według miesięcy - label_confirmation: Potwierdzenie - label_contains: zawiera - label_copied: skopiowano - label_copy_workflow_from: Kopiuj przepływ pracy z - label_current_status: Obecny status - label_current_version: Obecna wersja - label_custom_field: Pole niestandardowe - label_custom_field_new: Nowe pole niestandardowe - label_custom_field_plural: Pola niestandardowe - label_date: Data - label_date_from: Od - label_date_range: Zakres dat - label_date_to: Do - label_day_plural: dni - label_default: Domyślne - label_default_columns: Domyślne kolumny - label_deleted: usunięte - label_details: Szczegóły - label_diff_inline: w linii - label_diff_side_by_side: obok siebie - label_disabled: wyłaczone - label_display_per_page: "Na stronie: %{value}" - label_document: Dokument - label_document_added: Dodano dokument - label_document_new: Nowy dokument - label_document_plural: Dokumenty - label_downloads_abbr: Pobieranie - label_duplicated_by: zduplikowane przez - label_duplicates: duplikuje - label_enumeration_new: Nowa wartość - label_enumerations: Wyliczenia - label_environment: Środowisko - label_equals: równa się - label_example: Przykład - label_export_to: Eksportuj do - label_f_hour: "%{value} godzina" - label_f_hour_plural: "%{value} godzin" - label_feed_plural: Ilość Atom - label_feeds_access_key_created_on: "Klucz dostępu do kanału Atom stworzony %{value} temu" - label_file_added: Dodano plik - label_file_plural: Pliki - label_filter_add: Dodaj filtr - label_filter_plural: Filtry - label_float: Liczba zmiennoprzecinkowa - label_follows: następuje po - label_gantt: Gantt - label_general: Ogólne - label_generate_key: Wygeneruj klucz - label_help: Pomoc - label_history: Historia - label_home: Główna - label_in: w - label_in_less_than: mniejsze niż - label_in_more_than: większe niż - label_incoming_emails: Przychodząca poczta elektroniczna - label_index_by_date: Indeks wg daty - label_index_by_title: Indeks - label_information: Informacja - label_information_plural: Informacje - label_integer: Liczba całkowita - label_internal: Wewnętrzny - label_issue: Zagadnienie - label_issue_added: Dodano zagadnienie - label_issue_category: Kategoria zagadnienia - label_issue_category_new: Nowa kategoria - label_issue_category_plural: Kategorie zagadnień - label_issue_new: Nowe zagadnienie - label_issue_plural: Zagadnienia - label_issue_status: Status zagadnienia - label_issue_status_new: Nowy status - label_issue_status_plural: Statusy zagadnień - label_issue_tracking: Śledzenie zagadnień - label_issue_updated: Uaktualniono zagadnienie - label_issue_view_all: Zobacz wszystkie zagadnienia - label_issue_watchers: Obserwatorzy - label_issues_by: "Zagadnienia wprowadzone przez %{value}" - label_jump_to_a_project: Skocz do projektu... - label_language_based: Na podstawie języka - label_last_changes: "ostatnie %{count} zmian" - label_last_login: Ostatnie połączenie - label_last_month: ostatni miesiąc - label_last_n_days: "ostatnie %{count} dni" - label_last_week: ostatni tydzień - label_latest_revision: Najnowsza rewizja - label_latest_revision_plural: Najnowsze rewizje - label_ldap_authentication: Uwierzytelnianie LDAP - label_less_than_ago: dni temu - label_list: Lista - label_loading: Ładowanie... - label_logged_as: Zalogowany jako - label_login: Login - label_logout: Wylogowanie - label_max_size: Maksymalny rozmiar - label_me: ja - label_member: Uczestnik - label_member_new: Nowy uczestnik - label_member_plural: Uczestnicy - label_message_last: Ostatnia wiadomość - label_message_new: Nowa wiadomość - label_message_plural: Wiadomości - label_message_posted: Dodano wiadomość - label_min_max_length: Min - Maks długość - label_modified: zmodyfikowane - label_module_plural: Moduły - label_month: Miesiąc - label_months_from: miesiące od - label_more_than_ago: dni od teraz - label_my_account: Moje konto - label_my_page: Moja strona - label_my_projects: Moje projekty - label_new: Nowy - label_new_statuses_allowed: Uprawnione nowe statusy - label_news: Komunikat - label_news_added: Dodano komunikat - label_news_latest: Ostatnie komunikaty - label_news_new: Dodaj komunikat - label_news_plural: Komunikaty - label_news_view_all: Pokaż wszystkie komunikaty - label_next: Następne - label_no_change_option: (Bez zmian) - label_no_data: Brak danych do pokazania - label_nobody: nikt - label_none: brak - label_not_contains: nie zawiera - label_not_equals: różni się - label_open_issues: otwarte - label_open_issues_plural234: otwarte - label_open_issues_plural5: otwartych - label_open_issues_plural: otwarte - label_optional_description: Opcjonalny opis - label_options: Opcje - label_overall_activity: Ogólna aktywność - label_overview: Przegląd - label_password_lost: Zapomniane hasło - label_permissions: Uprawnienia - label_permissions_report: Raport uprawnień - label_plugins: Wtyczki - label_precedes: poprzedza - label_preferences: Preferencje - label_preview: Podgląd - label_previous: Poprzednie - label_project: Projekt - label_project_all: Wszystkie projekty - label_project_latest: Ostatnie projekty - label_project_new: Nowy projekt - label_project_plural234: Projekty - label_project_plural5: Projektów - label_project_plural: Projekty - label_x_projects: - zero: brak projektów - one: 1 projekt - few: "%{count} projekty" - other: "%{count} projektów" - label_public_projects: Projekty publiczne - label_query: Kwerenda - label_query_new: Nowa kwerenda - label_query_plural: Kwerendy - label_read: Czytanie... - label_register: Rejestracja - label_registered_on: Zarejestrowany - label_registration_activation_by_email: aktywacja konta przez e-mail - label_registration_automatic_activation: automatyczna aktywacja kont - label_registration_manual_activation: manualna aktywacja kont - label_related_issues: Powiązane zagadnienia - label_relates_to: powiązane z - label_relation_delete: Usuń powiązanie - label_relation_new: Nowe powiązanie - label_renamed: zmieniono nazwę - label_reply_plural: Odpowiedzi - label_report: Raport - label_report_plural: Raporty - label_reported_issues: Wprowadzone zagadnienia - label_repository: Repozytorium - label_repository_plural: Repozytoria - label_result_plural: Rezultatów - label_reverse_chronological_order: W kolejności odwrotnej do chronologicznej - label_revision: Rewizja - label_revision_plural: Rewizje - label_roadmap: Mapa - label_roadmap_due_in: W czasie - label_roadmap_no_issues: Brak zagadnień do tej wersji - label_roadmap_overdue: "%{value} spóźnienia" - label_role: Rola - label_role_and_permissions: Role i uprawnienia - label_role_new: Nowa rola - label_role_plural: Role - label_scm: SCM - label_search: Szukaj - label_search_titles_only: Przeszukuj tylko tytuły - label_send_information: Wyślij informację użytkownikowi - label_send_test_email: Wyślij próbny e-mail - label_settings: Ustawienia - label_show_completed_versions: Pokaż kompletne wersje - label_sort_by: "Sortuj po %{value}" - label_sort_higher: Do góry - label_sort_highest: Przesuń na górę - label_sort_lower: Do dołu - label_sort_lowest: Przesuń na dół - label_spent_time: Przepracowany czas - label_statistics: Statystyki - label_stay_logged_in: Pozostań zalogowany - label_string: Tekst - label_subproject_plural: Podprojekty - label_text: Długi tekst - label_theme: Motyw - label_this_month: ten miesiąc - label_this_week: ten tydzień - label_this_year: ten rok - label_time_tracking: Śledzenie czasu pracy - label_today: dzisiaj - label_topic_plural: Tematy - label_total: Ogółem - label_tracker: Typ zagadnienia - label_tracker_new: Nowy typ zagadnienia - label_tracker_plural: Typy zagadnień - label_updated_time: "Zaktualizowane %{value} temu" - label_used_by: Używane przez - label_user: Użytkownik - label_user_mail_no_self_notified: "Nie chcę powiadomień o zmianach, które sam wprowadzam." - label_user_mail_option_all: "Dla każdego zdarzenia w każdym moim projekcie" - label_user_mail_option_selected: "Dla każdego zdarzenia w wybranych projektach..." - label_user_new: Nowy użytkownik - label_user_plural: Użytkownicy - label_version: Wersja - label_version_new: Nowa wersja - label_version_plural: Wersje - label_view_diff: Pokaż różnice - label_view_revisions: Pokaż rewizje - label_watched_issues: Obserwowane zagadnienia - label_week: Tydzień - label_wiki: Wiki - label_wiki_edit: Edycja wiki - label_wiki_edit_plural: Edycje wiki - label_wiki_page: Strona wiki - label_wiki_page_plural: Strony wiki - label_workflow: Przepływ pracy - label_year: Rok - label_yesterday: wczoraj - mail_body_account_activation_request: "Zarejestrowano nowego użytkownika: (%{value}). Konto oczekuje na twoje zatwierdzenie:" - mail_body_account_information: Twoje konto - mail_body_account_information_external: "Możesz użyć Twojego konta %{value} do zalogowania." - mail_body_lost_password: 'W celu zmiany swojego hasła użyj poniższego odnośnika:' - mail_body_register: 'W celu aktywacji Twojego konta, użyj poniższego odnośnika:' - mail_body_reminder: "Wykaz przypisanych do Ciebie zagadnień (%{count}), których termin dobiega końca w ciągu następnych %{days} dni:" - mail_subject_account_activation_request: "Zapytanie aktywacyjne konta %{value}" - mail_subject_lost_password: "Twoje hasło do %{value}" - mail_subject_register: "Aktywacja konta w %{value}" - mail_subject_reminder: "Zagadnienia (%{count}) do obsłużenia w ciągu następnych %{days} dni" - notice_account_activated: Twoje konto zostało aktywowane. Możesz się zalogować. - notice_account_invalid_credentials: Zły użytkownik lub hasło - notice_account_lost_email_sent: E-mail z instrukcjami zmiany hasła został wysłany do Ciebie. - notice_account_password_updated: Hasło prawidłowo zmienione. - notice_account_pending: "Twoje konto zostało utworzone i oczekuje na zatwierdzenie administratora." - notice_account_unknown_email: Nieznany użytkownik. - notice_account_updated: Konto prawidłowo zaktualizowane. - notice_account_wrong_password: Złe hasło - notice_can_t_change_password: To konto ma zewnętrzne źródło uwierzytelniania. Nie możesz zmienić hasła. - notice_default_data_loaded: Domyślna konfiguracja została pomyślnie załadowana. - notice_email_error: "Wystąpił błąd w trakcie wysyłania e-maila (%{value})" - notice_email_sent: "E-mail został wysłany do %{value}" - notice_failed_to_save_issues: "Błąd podczas zapisu zagadnień %{count} z %{total} zaznaczonych: %{ids}." - notice_feeds_access_key_reseted: Twój klucz dostępu do kanału Atom został zresetowany. - notice_file_not_found: Strona do której próbujesz się dostać nie istnieje lub została usunięta. - notice_locking_conflict: Dane poprawione przez innego użytkownika. - notice_no_issue_selected: "Nie wybrano zagadnienia! Zaznacz zagadnienie, które chcesz edytować." - notice_not_authorized: Nie posiadasz autoryzacji do oglądania tej strony. - notice_successful_connection: Udane nawiązanie połączenia. - notice_successful_create: Utworzenie zakończone pomyślnie. - notice_successful_delete: Usunięcie zakończone pomyślnie. - notice_successful_update: Uaktualnienie zakończone pomyślnie. - notice_unable_delete_version: Nie można usunąć wersji - permission_add_issue_notes: Dodawanie notatek - permission_add_issue_watchers: Dodawanie obserwatorów - permission_add_issues: Dodawanie zagadnień - permission_add_messages: Dodawanie wiadomości - permission_browse_repository: Przeglądanie repozytorium - permission_comment_news: Komentowanie komunikatów - permission_commit_access: Wykonywanie zatwierdzeń - permission_delete_issues: Usuwanie zagadnień - permission_delete_messages: Usuwanie wiadomości - permission_delete_wiki_pages: Usuwanie stron wiki - permission_delete_wiki_pages_attachments: Usuwanie załączników - permission_delete_own_messages: Usuwanie własnych wiadomości - permission_edit_issue_notes: Edycja notatek - permission_edit_issues: Edycja zagadnień - permission_edit_messages: Edycja wiadomości - permission_edit_own_issue_notes: Edycja własnych notatek - permission_edit_own_messages: Edycja własnych wiadomości - permission_edit_own_time_entries: Edycja własnego dziennika - permission_edit_project: Edycja projektów - permission_edit_time_entries: Edycja wpisów dziennika - permission_edit_wiki_pages: Edycja stron wiki - permission_log_time: Zapisywanie przepracowanego czasu - permission_manage_boards: Zarządzanie forami - permission_manage_categories: Zarządzanie kategoriami zagadnień - permission_manage_files: Zarządzanie plikami - permission_manage_issue_relations: Zarządzanie powiązaniami zagadnień - permission_manage_members: Zarządzanie uczestnikami - permission_manage_news: Zarządzanie komunikatami - permission_manage_public_queries: Zarządzanie publicznymi kwerendami - permission_manage_repository: Zarządzanie repozytorium - permission_manage_versions: Zarządzanie wersjami - permission_manage_wiki: Zarządzanie wiki - permission_protect_wiki_pages: Blokowanie stron wiki - permission_rename_wiki_pages: Zmiana nazw stron wiki - permission_save_queries: Zapisywanie kwerend - permission_select_project_modules: Wybieranie modułów projektu - permission_view_calendar: Podgląd kalendarza - permission_view_changesets: Podgląd zmian - permission_view_documents: Podgląd dokumentów - permission_view_files: Podgląd plików - permission_view_gantt: Podgląd diagramu Gantta - permission_view_issue_watchers: Podgląd listy obserwatorów - permission_view_messages: Podgląd wiadomości - permission_view_time_entries: Podgląd przepracowanego czasu - permission_view_wiki_edits: Podgląd historii wiki - permission_view_wiki_pages: Podgląd wiki - project_module_boards: Fora - project_module_documents: Dokumenty - project_module_files: Pliki - project_module_issue_tracking: Śledzenie zagadnień - project_module_news: Komunikaty - project_module_repository: Repozytorium - project_module_time_tracking: Śledzenie czasu pracy - project_module_wiki: Wiki - setting_activity_days_default: Dni wyświetlane w aktywności projektu - setting_app_title: Tytuł aplikacji - setting_attachment_max_size: Maks. rozm. załącznika - setting_autofetch_changesets: Automatyczne pobieranie zmian - setting_autologin: Automatyczne logowanie - setting_bcc_recipients: Odbiorcy kopii tajnej (kt/bcc) - setting_commit_fix_keywords: Słowo zmieniające status - setting_commit_ref_keywords: Słowa tworzące powiązania - setting_cross_project_issue_relations: Zezwól na powiązania zagadnień między projektami - setting_date_format: Format daty - setting_default_language: Domyślny język - setting_default_projects_public: Nowe projekty są domyślnie publiczne - setting_display_subprojects_issues: Domyślnie pokazuj zagadnienia podprojektów w głównym projekcie - setting_emails_footer: Stopka e-mail - setting_enabled_scm: Dostępny SCM - setting_feeds_limit: Limit danych Atom - setting_gravatar_enabled: Używaj ikon użytkowników Gravatar - setting_host_name: Nazwa hosta i ścieżka - setting_issue_list_default_columns: Domyślne kolumny wyświetlane na liście zagadnień - setting_issues_export_limit: Limit eksportu zagadnień - setting_login_required: Wymagane zalogowanie - setting_mail_from: Adres e-mail wysyłki - setting_mail_handler_api_enabled: Uaktywnij usługi sieciowe (WebServices) dla poczty przychodzącej - setting_mail_handler_api_key: Klucz API - setting_per_page_options: Opcje ilości obiektów na stronie - setting_plain_text_mail: tylko tekst (bez HTML) - setting_protocol: Protokół - setting_self_registration: Samodzielna rejestracja użytkowników - setting_sequential_project_identifiers: Generuj sekwencyjne identyfikatory projektów - setting_sys_api_enabled: Włączenie WS do zarządzania repozytorium - setting_text_formatting: Formatowanie tekstu - setting_time_format: Format czasu - setting_user_format: Format wyświetlania użytkownika - setting_welcome_text: Tekst powitalny - setting_wiki_compression: Kompresja historii Wiki - status_active: aktywny - status_locked: zablokowany - status_registered: zarejestrowany - text_are_you_sure: Jesteś pewien ? - text_assign_time_entries_to_project: Przypisz wpisy dziennika do projektu - text_caracters_maximum: "%{count} znaków maksymalnie." - text_caracters_minimum: "Musi być nie krótsze niż %{count} znaków." - text_comma_separated: Dozwolone wielokrotne wartości (rozdzielone przecinkami). - text_default_administrator_account_changed: Zmieniono domyślne hasło administratora - text_destroy_time_entries: Usuń wpisy dziennika - text_destroy_time_entries_question: Przepracowano %{hours} godzin przy zagadnieniu, które chcesz usunąć. Co chcesz zrobić? - text_email_delivery_not_configured: "Dostarczanie poczty elektronicznej nie zostało skonfigurowane, więc powiadamianie jest nieaktywne.\nSkonfiguruj serwer SMTP w config/configuration.yml a następnie zrestartuj aplikację i uaktywnij to." - text_enumeration_category_reassign_to: 'Zmień przypisanie na tą wartość:' - text_enumeration_destroy_question: "%{count} obiektów jest przypisanych do tej wartości." - text_file_repository_writable: Zapisywalne repozytorium plików - text_issue_added: "Zagadnienie %{id} zostało wprowadzone (przez %{author})." - text_issue_category_destroy_assignments: Usuń przydziały kategorii - text_issue_category_destroy_question: "Do tej kategorii są przypisane zagadnienia (%{count}). Co chcesz zrobić?" - text_issue_category_reassign_to: Przydziel zagadnienie do tej kategorii - text_issue_updated: "Zagadnienie %{id} zostało zaktualizowane (przez %{author})." - text_issues_destroy_confirmation: 'Czy jesteś pewien, że chcesz usunąć wskazane zagadnienia?' - text_issues_ref_in_commit_messages: Odwołania do zagadnień Redmine w komentarzach w repozytorium - text_length_between: "Długość pomiędzy %{min} i %{max} znaków." - text_load_default_configuration: Załaduj domyślną konfigurację - text_min_max_length_info: 0 oznacza brak restrykcji - text_no_configuration_data: "Role użytkowników, typy zagadnień, statusy zagadnień oraz przepływ pracy nie zostały jeszcze skonfigurowane.\nWysoce zalecane jest by załadować domyślną konfigurację. Po załadowaniu będzie możliwość edycji tych danych." - text_project_destroy_confirmation: Jesteś pewien, że chcesz usunąć ten projekt i wszystkie powiązane dane? - text_reassign_time_entries: 'Przepnij przepracowany czas do tego zagadnienia:' - text_regexp_info: np. ^[A-Z0-9]+$ - text_repository_usernames_mapping: "Wybierz lub uaktualnij przyporządkowanie użytkowników Redmine do użytkowników repozytorium.\nUżytkownicy z taką samą nazwą lub adresem e-mail są przyporządkowani automatycznie." - text_minimagick_available: MiniMagick dostępne (opcjonalnie) - text_select_mail_notifications: Zaznacz czynności przy których użytkownik powinien być powiadomiony e-mailem. - text_select_project_modules: 'Wybierz moduły do aktywacji w tym projekcie:' - text_status_changed_by_changeset: "Zastosowane w zmianach %{value}." - text_subprojects_destroy_warning: "Podprojekt(y): %{value} zostaną także usunięte." - text_tip_issue_begin_day: zadanie zaczynające się dzisiaj - text_tip_issue_begin_end_day: zadanie zaczynające i kończące się dzisiaj - text_tip_issue_end_day: zadanie kończące się dzisiaj - text_tracker_no_workflow: Brak przepływu pracy zdefiniowanego dla tego typu zagadnienia - text_unallowed_characters: Niedozwolone znaki - text_user_mail_option: "W przypadku niezaznaczonych projektów, będziesz otrzymywał powiadomienia tylko na temat zagadnień które obserwujesz, lub w których bierzesz udział (np. jesteś autorem lub adresatem)." - text_user_wrote: "%{value} napisał(a):" - text_user_wrote_in: "%{value} napisał(a) (%{link}):" - text_wiki_destroy_confirmation: Jesteś pewien, że chcesz usunąć to wiki i całą jego zawartość? - text_workflow_edit: Zaznacz rolę i typ zagadnienia do edycji przepływu pracy - - label_user_activity: "Aktywność: %{value}" - label_updated_time_by: "Uaktualnione przez %{author} %{age} temu" - text_diff_truncated: '... Ten plik różnic został przycięty ponieważ jest zbyt długi.' - setting_diff_max_lines_displayed: Maksymalna liczba linii różnicy do pokazania - text_plugin_assets_writable: Zapisywalny katalog zasobów wtyczek - warning_attachments_not_saved: "%{count} załącznik(ów) nie zostało zapisanych." - field_editable: Edytowalne - label_display: Wygląd - button_create_and_continue: Stwórz i dodaj kolejne - text_custom_field_possible_values_info: 'Każda wartość w osobnej linii' - setting_repository_log_display_limit: Maksymalna liczba rewizji pokazywanych w logu pliku - setting_file_max_size_displayed: Maksymalny rozmiar plików tekstowych osadzanych w stronie - field_watcher: Obserwator - setting_openid: Logowanie i rejestracja przy użyciu OpenID - field_identity_url: Identyfikator OpenID (URL) - label_login_with_open_id_option: albo użyj OpenID - field_content: Treść - label_descending: Malejąco - label_sort: Sortuj - label_ascending: Rosnąco - label_date_from_to: Od %{start} do %{end} - label_greater_or_equal: ">=" - label_less_or_equal: <= - text_wiki_page_destroy_question: Ta strona posiada podstrony (%{descendants}). Co chcesz zrobić? - text_wiki_page_reassign_children: Podepnij je do strony nadrzędnej względem usuwanej - text_wiki_page_nullify_children: Przesuń je na szczyt hierarchii - text_wiki_page_destroy_children: Usuń wszystkie podstrony - setting_password_min_length: Minimalna długość hasła - field_group_by: Grupuj wyniki wg - mail_subject_wiki_content_updated: "Strona wiki '%{id}' została uaktualniona" - label_wiki_content_added: Dodano stronę wiki - mail_subject_wiki_content_added: "Strona wiki '%{id}' została dodana" - mail_body_wiki_content_added: Strona wiki '%{id}' została dodana przez %{author}. - label_wiki_content_updated: Uaktualniono stronę wiki - mail_body_wiki_content_updated: Strona wiki '%{id}' została uaktualniona przez %{author}. - permission_add_project: Tworzenie projektu - setting_new_project_user_role_id: Rola nadawana twórcom projektów, którzy nie posiadają uprawnień administatora - label_view_all_revisions: Pokaż wszystkie rewizje - label_tag: Słowo kluczowe - label_branch: Gałąź - error_no_tracker_in_project: Projekt nie posiada powiązanych typów zagadnień. Sprawdź ustawienia projektu. - error_no_default_issue_status: Nie zdefiniowano domyślnego statusu zagadnień. Sprawdź konfigurację (Przejdź do "Administracja -> Statusy zagadnień"). - text_journal_changed: "Zmieniono %{label} z %{old} na %{new}" - text_journal_set_to: "Ustawiono %{label} na %{value}" - text_journal_deleted: "Usunięto %{label} (%{old})" - label_group_plural: Grupy - label_group: Grupa - label_group_new: Nowa grupa - label_time_entry_plural: Przepracowany czas - text_journal_added: "Dodano %{label} %{value}" - field_active: Aktywne - enumeration_system_activity: Aktywność systemowa - button_copy_and_follow: Kopiuj i przejdź do kopii zagadnienia - button_move_and_follow: Przenieś i przejdź do zagadnienia - button_show: Pokaż - error_can_not_archive_project: Ten projekt nie może zostać zarchiwizowany - error_can_not_reopen_issue_on_closed_version: Zagadnienie przydzielone do zakończonej wersji nie może zostać ponownie otwarte - error_issue_done_ratios_not_updated: "% wykonania zagadnienia nie został uaktualniony." - error_workflow_copy_source: Proszę wybrać źródłowy typ zagadnienia lub rolę - error_workflow_copy_target: Proszę wybrać docelowe typ(y) zagadnień i rolę(e) - field_sharing: Współdzielenie - label_api_access_key: Klucz dostępu do API - label_api_access_key_created_on: Klucz dostępu do API został utworzony %{value} temu - label_close_versions: Zamknij ukończone wersje - label_copy_same_as_target: Jak cel - label_copy_source: Źródło - label_copy_target: Cel - label_display_used_statuses_only: Wyświetlaj tylko statusy używane przez ten typ zagadnienia - label_feeds_access_key: Klucz dostępu do kanału Atom - label_missing_api_access_key: Brakuje klucza dostępu do API - label_missing_feeds_access_key: Brakuje klucza dostępu do kanału Atom - label_revision_id: Rewizja %{value} - label_subproject_new: Nowy podprojekt - label_update_issue_done_ratios: Uaktualnij % wykonania - label_user_anonymous: Anonimowy - label_version_sharing_descendants: Z podprojektami - label_version_sharing_hierarchy: Z hierarchią projektów - label_version_sharing_none: Brak współdzielenia - label_version_sharing_system: Ze wszystkimi projektami - label_version_sharing_tree: Z drzewem projektów - notice_api_access_key_reseted: Twój klucz dostępu do API został zresetowany. - notice_issue_done_ratios_updated: Uaktualnienie % wykonania zakończone pomyślnie. - permission_add_subprojects: Tworzenie podprojektów - permission_delete_issue_watchers: Usuń obserwatorów - permission_view_issues: Przeglądanie zagadnień - setting_default_projects_modules: Domyślnie włączone moduły dla nowo tworzonych projektów - setting_gravatar_default: Domyślny obraz Gravatar - setting_issue_done_ratio: Obliczaj postęp realizacji zagadnień za pomocą - setting_issue_done_ratio_issue_field: "% Wykonania zagadnienia" - setting_issue_done_ratio_issue_status: Statusu zagadnienia - setting_mail_handler_body_delimiters: Przycinaj e-maile po jednej z tych linii - setting_rest_api_enabled: Uaktywnij usługę sieciową REST - setting_start_of_week: Pierwszy dzień tygodnia - text_line_separated: Dozwolone jest wiele wartości (każda wartość w osobnej linii). - text_own_membership_delete_confirmation: |- - Masz zamiar usunąć niektóre lub wszystkie swoje uprawnienia. Po wykonaniu tej czynności możesz utracić możliwości edycji tego projektu. - Czy na pewno chcesz kontynuować? - version_status_closed: zamknięta - version_status_locked: zablokowana - version_status_open: otwarta - - label_board_sticky: Przyklejona - label_board_locked: Zamknięta - permission_export_wiki_pages: Eksport stron wiki - permission_manage_project_activities: Zarządzanie aktywnościami projektu - setting_cache_formatted_text: Buforuj sformatowany tekst - error_unable_delete_issue_status: Nie można usunąć statusu zagadnienia (%{value}) - label_profile: Profil - permission_manage_subtasks: Zarządzanie podzagadnieniami - field_parent_issue: Zagadnienie nadrzędne - label_subtask_plural: Podzagadnienia - label_project_copy_notifications: Wyślij powiadomienia e-mailowe przy kopiowaniu projektu - error_can_not_delete_custom_field: Nie można usunąć tego pola - error_unable_to_connect: Nie można połączyć (%{value}) - error_can_not_remove_role: Ta rola przypisana jest niektórym użytkownikom i nie może zostać usunięta. - error_can_not_delete_tracker: Ten typ przypisany jest do części zagadnień i nie może zostać usunięty. - field_principal: Przełożony - notice_failed_to_save_members: "Nie można zapisać uczestników: %{errors}." - text_zoom_out: Zmniejsz - text_zoom_in: Powiększ - notice_unable_delete_time_entry: Nie można usunąć wpisu z dziennika. - label_overall_spent_time: Przepracowany czas - field_time_entries: Dziennik - project_module_gantt: Diagram Gantta - project_module_calendar: Kalendarz - button_edit_associated_wikipage: "Edytuj powiązaną stronę Wiki: %{page_title}" - field_text: Text field - setting_default_notification_option: Domyślna opcja powiadomień - label_user_mail_option_only_my_events: "Tylko to, co obserwuję lub w czym biorę udział" - label_user_mail_option_none: "Brak powiadomień" - field_member_of_group: Grupa osoby przypisanej - field_assigned_to_role: Rola osoby przypisanej - notice_not_authorized_archived_project: "Projekt, do którego próbujesz uzyskać dostęp został zarchiwizowany." - label_principal_search: "Szukaj użytkownika lub grupy:" - label_user_search: "Szukaj użytkownika:" - field_visible: Widoczne - setting_commit_logtime_activity_id: Aktywność dla śledzonego czasu - text_time_logged_by_changeset: Zastosowane w zmianach %{value}. - setting_commit_logtime_enabled: Włącz śledzenie czasu - notice_gantt_chart_truncated: Liczba elementów wyświetlanych na diagramie została ograniczona z powodu przekroczenia dopuszczalnego limitu (%{max}). - setting_gantt_items_limit: Maksymalna liczba elementów wyświetlanych na diagramie Gantta - field_warn_on_leaving_unsaved: Ostrzegaj mnie, gdy opuszczam stronę z niezapisanym tekstem - text_warn_on_leaving_unsaved: Obecna strona zawiera niezapisany tekst, który zostanie utracony w przypadku jej opuszczenia. - label_my_queries: Moje kwerendy - text_journal_changed_no_detail: "%{label} updated" - label_news_comment_added: Dodano komentarz do komunikatu - button_expand_all: Rozwiń wszystkie - button_collapse_all: Zwiń wszystkie - label_additional_workflow_transitions_for_assignee: Dodatkowe przejścia stanów dozwolone, gdy użytkownik jest przypisany do zadania - label_additional_workflow_transitions_for_author: Dodatkowe przejścia stanów dozwolone, gdy użytkownik jest autorem zadania - label_bulk_edit_selected_time_entries: Zbiorowa edycja wpisów dziennika - text_time_entries_destroy_confirmation: Czy na pewno chcesz usunąć zaznaczon(y/e) wpis(y) dziennika? - label_role_anonymous: Anonimowy - label_role_non_member: Bez roli - label_issue_note_added: Dodano notatkę - label_issue_status_updated: Uaktualniono status - label_issue_priority_updated: Uaktualniono priorytet - label_issues_visibility_own: Utworzone lub przypisane do użytkownika - field_issues_visibility: Widoczne zagadnienia - label_issues_visibility_all: Wszystkie - permission_set_own_issues_private: Ustawianie własnych zagadnień jako prywatne/publiczne - field_is_private: Prywatne - permission_set_issues_private: Ustawianie zagadnień jako prywatne/publiczne - label_issues_visibility_public: Wszystkie nie prywatne - text_issues_destroy_descendants_confirmation: To spowoduje usunięcie również %{count} podzagadnień. - field_commit_logs_encoding: Kodowanie komentarzy zatwierdzeń - field_scm_path_encoding: Path encoding - text_scm_path_encoding_note: "Default: UTF-8" - field_path_to_repository: Path to repository - field_root_directory: Root directory - field_cvs_module: Module - field_cvsroot: CVSROOT - text_mercurial_repository_note: Local repository (e.g. /hgrepo, c:\hgrepo) - text_scm_command: Polecenie - text_scm_command_version: Wersja - label_git_report_last_commit: Report last commit for files and directories - notice_issue_successful_create: Zagadnienie %{id} utworzone. - label_between: pomiędzy - setting_issue_group_assignment: Zezwól przypisywać zagadnienia do grup - label_diff: diff - text_git_repository_note: Repository is bare and local (e.g. /gitrepo, c:\gitrepo) - description_query_sort_criteria_direction: Sort direction - description_project_scope: Search scope - description_filter: Filter - description_user_mail_notification: Mail notification settings - description_message_content: Message content - description_available_columns: Dostępne kolumny - description_issue_category_reassign: Choose issue category - description_search: Searchfield - description_notes: Notes - description_choose_project: Projects - description_query_sort_criteria_attribute: Sort attribute - description_wiki_subpages_reassign: Choose new parent page - description_selected_columns: Wybrane kolumny - label_parent_revision: Parent - label_child_revision: Child - error_scm_annotate_big_text_file: The entry cannot be annotated, as it exceeds the maximum text file size. - setting_default_issue_start_date_to_creation_date: Użyj bieżącej daty jako daty rozpoczęcia nowych zagadnień - button_edit_section: Edytuj tą sekcje - setting_repositories_encodings: Kodowanie znaków załączników i repozytoriów - description_all_columns: Wszystkie kolumny - button_export: Exportuj - label_export_options: "%{export_format} export options" - error_attachment_too_big: Plik nie może być przesłany, ponieważ przekracza maksymalny dopuszczalny rozmial (%{max_size}) - notice_failed_to_save_time_entries: "Failed to save %{count} time entrie(s) on %{total} selected: %{ids}." - label_x_issues: - zero: 0 zagadnień - one: 1 zagadnienie - other: "%{count} zagadnienia" - label_repository_new: Nowe repozytorium - field_repository_is_default: Główne repozytorium - label_copy_attachments: Kopiuj załączniki - label_item_position: "%{position}/%{count}" - label_completed_versions: Zamknięte wersje - text_project_identifier_info: 'Dozwolone małe litery (a-z), liczby i myślniki.
    Raz zapisany, identyfikator nie może być zmieniony.' - field_multiple: Wielokrotne wartości - setting_commit_cross_project_ref: Zezwól na odwołania do innych projektów i zamykanie zagadnień innych projektów - text_issue_conflict_resolution_add_notes: Add my notes and discard my other changes - text_issue_conflict_resolution_overwrite: Apply my changes anyway (previous notes will be kept but some changes may be overwritten) - notice_issue_update_conflict: The issue has been updated by an other user while you were editing it. - text_issue_conflict_resolution_cancel: Discard all my changes and redisplay %{link} - permission_manage_related_issues: Zarządzanie powiązanymi zagadnieniami - field_auth_source_ldap_filter: Filtr LDAP - label_search_for_watchers: Wyszukaj obserwatorów do dodania - notice_account_deleted: Twoje konto zostało trwale usunięte. - setting_unsubscribe: Zezwól użytkownikom usuwać swoje konta - button_delete_my_account: Usuń moje konto - text_account_destroy_confirmation: |- - Czy jesteś pewien? - Twoje konto zostanie trwale usunięte, bez możliwości przywrócenia go. - error_session_expired: Twoja sesja wygasła. Zaloguj się ponownie. - text_session_expiration_settings: "Uwaga: zmiana tych ustawień może spowodować przeterminowanie sesji obecnie zalogowanych użytkowników, w tym twojej." - setting_session_lifetime: Maksymalny czas życia sesji - setting_session_timeout: Maksymalny czas życia nieaktywnej sesji - label_session_expiration: Przeterminowywanie sesji - permission_close_project: Zamykanie / otwieranie projektów - button_close: Zamknij projekt - button_reopen: Otwórz projekt - project_status_active: aktywny - project_status_closed: zamknięty - project_status_archived: zarchiwizowany - text_project_closed: Ten projekt jest zamknięty i dostępny tylko do odczytu. - notice_user_successful_create: Utworzono użytkownika %{id}. - field_core_fields: Pola standardowe - field_timeout: Limit czasu (w sekundach) - setting_thumbnails_enabled: Wyświetlaj miniatury załączników - setting_thumbnails_size: Rozmiar minuatury (w pikselach) - label_status_transitions: Przejścia między statusami - label_fields_permissions: Uprawnienia do pól - label_readonly: Tylko do odczytu - label_required: Wymagane - text_repository_identifier_info: 'Dozwolone małe litery (a-z), liczby, myślniki i podkreślenia.
    Raz zapisany, identyfikator nie może być zmieniony.' - field_board_parent: Forum nadrzędne - label_attribute_of_project: Project's %{name} - label_attribute_of_author: Author's %{name} - label_attribute_of_assigned_to: Assignee's %{name} - label_attribute_of_fixed_version: Target version's %{name} - label_copy_subtasks: Kopiuj podzagadnienia - label_copied_to: skopiowane do - label_copied_from: skopiowane z - label_any_issues_in_project: dowolne zagadnienie w projekcie - label_any_issues_not_in_project: dowolne zagadnienie w innym projekcie - field_private_notes: Prywatne notatki - permission_view_private_notes: Podgląd prywatnych notatek - permission_set_notes_private: Ustawianie notatek jako prywatnych - label_no_issues_in_project: brak zagadnień w projekcie - label_any: wszystko - label_last_n_weeks: ostatnie %{count} tygodnie - setting_cross_project_subtasks: Powiązania zagadnień między projektami - label_cross_project_descendants: Z podprojektami - label_cross_project_tree: Z drzewem projektów - label_cross_project_hierarchy: Z hierarchią projektów - label_cross_project_system: Ze wszystkimi projektami - button_hide: Ukryj - setting_non_working_week_days: Dni nie-robocze - label_in_the_next_days: w ciągu następnych dni - label_in_the_past_days: w ciągu poprzednich dni - label_attribute_of_user: User's %{name} - text_turning_multiple_off: Jeśli wyłączysz wielokrotne wartości, istniejące wielokrotne wartości zostana usunięte w celu zachowania tylko jednej z nich dla każdego obiektu. - label_attribute_of_issue: Issue's %{name} - permission_add_documents: Dodawanie dokumentów - permission_edit_documents: Edycja dokumentów - permission_delete_documents: Usuwanie dokumentów - label_gantt_progress_line: Linia postępu - setting_jsonp_enabled: Uaktywnij wsparcie dla JSONP - field_inherit_members: Dziedziczenie uczestników - field_closed_on: Data zamknięcia - field_generate_password: Wygeneruj hasło - setting_default_projects_tracker_ids: Domyślne typy zagadnień dla nowych projektów - label_total_time: Ogółem - text_scm_config: Możesz skonfigurować polecenia SCM w pliku config/configuration.yml. Zrestartuj aplikację po wykonaniu zmian. - text_scm_command_not_available: Polecenie SCM nie jest dostępne. Proszę sprawdzić ustawienia w panelu administracyjnym. - setting_emails_header: Nagłówek e-maili - notice_account_not_activated_yet: Jeszcze nie aktywowałeś swojego konta. Jeśli chcesz - otrzymać nowy e-mail aktywanyjny, kliknij tutaj. - notice_account_locked: Twoje konto jest zablokowane. - notice_account_register_done: Konto zostało pomyślnie utworzone. E-mail zawierający - instrukcję aktywacji konta został wysłany na adres %{email}. - label_hidden: Ukryte - label_visibility_private: tylko dla mnie - label_visibility_roles: tylko dla ról - label_visibility_public: dla wszystkich - field_must_change_passwd: Musi zmienić hasło przy następnym logowaniu - notice_new_password_must_be_different: Nowe hasło musi być inne niż poprzednie - setting_mail_handler_excluded_filenames: Wyklucz załączniki wg nazwy - text_convert_available: Konwersja przez ImageMagick dostępna (optional) - label_link: Link - label_only: tylko - label_drop_down_list: lista rozwijana - label_checkboxes: pola wyboru - label_link_values_to: Linkuj wartości do URL - setting_force_default_language_for_anonymous: Wymuś domyślny język dla anonimowych użytkowników - setting_force_default_language_for_loggedin: Wymuś domyślny język dla zalogowanych użytkowników - label_custom_field_select_type: Wybierz typ obiektu, dla którego chcesz utworzyć pole niestandardowe - label_issue_assigned_to_updated: Uaktualniono osobę przypisaną - label_check_for_updates: Sprawdź aktualizacje - label_latest_compatible_version: Najnowsza kompatybilna wersja - label_unknown_plugin: Nieznany plugin - label_radio_buttons: pola opcji - label_group_anonymous: Anonimowi użytkownicy - label_group_non_member: Użytkownicy nie bedący uczestnikami - label_add_projects: Dodaj projekty - field_default_status: Domyślny status - text_subversion_repository_note: 'Przykłady: file:///, http://, https://, svn://, svn+[tunnelscheme]://' - field_users_visibility: Widoczni użytkownicy - label_users_visibility_all: Wszyscy aktywni użytkownicy - label_users_visibility_members_of_visible_projects: Uczestnicy widocznych projektów - label_edit_attachments: Edytuj załączone pliki - setting_link_copied_issue: Powiązywanie zagadnień podczas kopiowania - label_link_copied_issue: Powiąż kopiowane zagadnienia - label_ask: Pytaj - label_search_attachments_yes: Szukaj w nazwach i opisach załączników - label_search_attachments_no: Nie szukaj załączników - label_search_attachments_only: Szukaj tylko załączników - label_search_open_issues_only: Tylko otwarte zagadnienia - field_address: E-mail - setting_max_additional_emails: Maksymalna liczba dodatkowych adresów email - label_email_address_plural: Email - label_email_address_add: Dodaj adres email - label_enable_notifications: Włącz powiadomienia - label_disable_notifications: Wyłącz powiadomienia - setting_search_results_per_page: Limit wyników wyszukiwania na stronie - label_blank_value: blank - permission_copy_issues: Kopiowanie zagadnień - error_password_expired: Twoje hasło wygasło lub administrator wymaga jego zmiany. - field_time_entries_visibility: Widoczny przepracowany czas - setting_password_max_age: Wymagaj zmiany hasła po - label_parent_task_attributes: Atrybuty zagadnień nadrzędnych - label_parent_task_attributes_derived: Obliczone z podzagadnień - label_parent_task_attributes_independent: Niezależne od podzagadnień - label_time_entries_visibility_all: Wszystkie wpisy dziennika - label_time_entries_visibility_own: Wpisy dziennika utworzone przez użytkownika - label_member_management: Zarządzanie uczestnikami - label_member_management_all_roles: Wszystkimi rolami - label_member_management_selected_roles_only: Tylko tymi rolami - label_password_required: Potwierdź hasło aby kontynuować - label_total_spent_time: Przepracowany czas - notice_import_finished: "%{count} items have been imported" - notice_import_finished_with_errors: "%{count} out of %{total} items could not be imported" - error_invalid_file_encoding: The file is not a valid %{encoding} encoded file - error_invalid_csv_file_or_settings: The file is not a CSV file or does not match the - settings below - error_can_not_read_import_file: An error occurred while reading the file to import - permission_import_issues: Import issues - label_import_issues: Import issues - label_select_file_to_import: Select the file to import - label_fields_separator: Field separator - label_fields_wrapper: Field wrapper - label_encoding: Encoding - label_comma_char: Comma - label_semi_colon_char: Semicolon - label_quote_char: Quote - label_double_quote_char: Double quote - label_fields_mapping: Fields mapping - label_file_content_preview: File content preview - label_create_missing_values: Create missing values - button_import: Import - field_total_estimated_hours: Całkowity szacowany czas - label_api: API - label_total_plural: Totals - label_assigned_issues: Assigned issues - label_field_format_enumeration: Key/value list - label_f_hour_short: '%{value} h' - field_default_version: Default version - error_attachment_extension_not_allowed: Attachment extension %{extension} is not allowed - setting_attachment_extensions_allowed: Allowed extensions - setting_attachment_extensions_denied: Disallowed extensions - label_any_open_issues: any open issues - label_no_open_issues: no open issues - label_default_values_for_new_users: Default values for new users - error_ldap_bind_credentials: Invalid LDAP Account/Password - setting_sys_api_key: Klucz API - setting_lost_password: Zapomniane hasło - mail_subject_security_notification: Security notification - mail_body_security_notification_change: ! '%{field} was changed.' - mail_body_security_notification_change_to: ! '%{field} was changed to %{value}.' - mail_body_security_notification_add: ! '%{field} %{value} was added.' - mail_body_security_notification_remove: ! '%{field} %{value} was removed.' - mail_body_security_notification_notify_enabled: Email address %{value} now receives - notifications. - mail_body_security_notification_notify_disabled: Email address %{value} no longer - receives notifications. - mail_body_settings_updated: ! 'The following settings were changed:' - field_remote_ip: IP address - label_wiki_page_new: New wiki page - label_relations: Relations - button_filter: Filter - mail_body_password_updated: Your password has been changed. - label_no_preview: No preview available - error_no_tracker_allowed_for_new_issue_in_project: The project doesn't have any trackers - for which you can create an issue - label_tracker_all: All trackers - label_new_project_issue_tab_enabled: Display the "New issue" tab - setting_new_item_menu_tab: Project menu tab for creating new objects - label_new_object_tab_enabled: Display the "+" drop-down - error_no_projects_with_tracker_allowed_for_new_issue: There are no projects with trackers - for which you can create an issue - field_textarea_font: Font used for text areas - label_font_default: Default font - label_font_monospace: Monospaced font - label_font_proportional: Proportional font - setting_timespan_format: Time span format - label_table_of_contents: Table of contents - setting_commit_logs_formatting: Apply text formatting to commit messages - setting_mail_handler_enable_regex: Enable regular expressions - error_move_of_child_not_possible: 'Subtask %{child} could not be moved to the new - project: %{errors}' - error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted: Spent time cannot - be reassigned to an issue that is about to be deleted - setting_timelog_required_fields: Required fields for time logs - label_attribute_of_object: '%{object_name}''s %{name}' - label_user_mail_option_only_assigned: Only for things I watch or I am assigned to - label_user_mail_option_only_owner: Only for things I watch or I am the owner of - warning_fields_cleared_on_bulk_edit: Changes will result in the automatic deletion - of values from one or more fields on the selected objects - field_updated_by: Updated by - field_last_updated_by: Last updated by - field_full_width_layout: Full width layout - label_last_notes: Last notes - field_digest: Checksum - field_default_assigned_to: Default assignee - setting_show_custom_fields_on_registration: Show custom fields on registration - permission_view_news: View news - label_no_preview_alternative_html: No preview available. %{link} the file instead. - label_no_preview_download: Download - setting_close_duplicate_issues: Close duplicate issues automatically - error_exceeds_maximum_hours_per_day: Cannot log more than %{max_hours} hours on the - same day (%{logged_hours} hours have already been logged) - setting_time_entry_list_defaults: Timelog list defaults - setting_timelog_accept_0_hours: Accept time logs with 0 hours - setting_timelog_max_hours_per_day: Maximum hours that can be logged per day and user - label_x_revisions: "%{count} revisions" - error_can_not_delete_auth_source: This authentication mode is in use and cannot be - deleted. - button_actions: Actions - mail_body_lost_password_validity: Please be aware that you may change the password - only once using this link. - text_login_required_html: When not requiring authentication, public projects and their - contents are openly available on the network. You can edit - the applicable permissions. - label_login_required_yes: 'Yes' - label_login_required_no: No, allow anonymous access to public projects - text_project_is_public_non_member: Public projects and their contents are available - to all logged-in users. - text_project_is_public_anonymous: Public projects and their contents are openly available - on the network. - label_version_and_files: Versions (%{count}) and Files - label_ldap: LDAP - label_ldaps_verify_none: LDAPS (without certificate check) - label_ldaps_verify_peer: LDAPS - label_ldaps_warning: It is recommended to use an encrypted LDAPS connection with certificate - check to prevent any manipulation during the authentication process. - label_nothing_to_preview: Nothing to preview - error_token_expired: This password recovery link has expired, please try again. - error_spent_on_future_date: Cannot log time on a future date - setting_timelog_accept_future_dates: Accept time logs on future dates - label_delete_link_to_subtask: Usuń powiązanie - error_not_allowed_to_log_time_for_other_users: You are not allowed to log time - for other users - permission_log_time_for_other_users: Log spent time for other users - label_tomorrow: tomorrow - label_next_week: next week - label_next_month: next month - text_role_no_workflow: No workflow defined for this role - text_status_no_workflow: No tracker uses this status in the workflows - setting_mail_handler_preferred_body_part: Preferred part of multipart (HTML) emails - setting_show_status_changes_in_mail_subject: Show status changes in issue mail notifications - subject - label_inherited_from_parent_project: Inherited from parent project - label_inherited_from_group: Inherited from group %{name} - label_trackers_description: Trackers description - label_open_trackers_description: View all trackers description - label_preferred_body_part_text: Text - label_preferred_body_part_html: HTML (experimental) - field_parent_issue_subject: Parent task subject - permission_edit_own_issues: Edit own issues - text_select_apply_tracker: Select tracker - label_updated_issues: Updated issues - text_avatar_server_config_html: The current avatar server is %{url}. - You can configure it in config/configuration.yml. - setting_gantt_months_limit: Maximum number of months displayed on the gantt chart - permission_import_time_entries: Import time entries - label_import_notifications: Send email notifications during the import - text_gs_available: ImageMagick PDF support available (optional) - field_recently_used_projects: Number of recently used projects in jump box - label_optgroup_bookmarks: Bookmarks - label_optgroup_others: Other projects - label_optgroup_recents: Recently used - button_project_bookmark: Add bookmark - button_project_bookmark_delete: Remove bookmark - field_history_default_tab: Issue's history default tab - label_issue_history_properties: Property changes - label_issue_history_notes: Notes - label_last_tab_visited: Last visited tab - field_unique_id: Unique ID - text_no_subject: no subject - setting_password_required_char_classes: Required character classes for passwords - label_password_char_class_uppercase: uppercase letters - label_password_char_class_lowercase: lowercase letters - label_password_char_class_digits: digits - label_password_char_class_special_chars: special characters - text_characters_must_contain: Must contain %{character_classes}. - label_starts_with: starts with - label_ends_with: ends with - label_issue_fixed_version_updated: Target version updated - setting_project_list_defaults: Projects list defaults - label_display_type: Display results as - label_display_type_list: List - label_display_type_board: Board - label_my_bookmarks: My bookmarks - label_import_time_entries: Import time entries diff --git a/config/locales/pt-BR.yml b/config/locales/pt-BR.yml deleted file mode 100644 index 8241001..0000000 --- a/config/locales/pt-BR.yml +++ /dev/null @@ -1,1320 +0,0 @@ -pt-BR: - direction: ltr - date: - formats: - default: "%d/%m/%Y" - short: "%d de %B" - long: "%d de %B de %Y" - only_day: "%d" - - day_names: [Domingo, Segunda, Terça, Quarta, Quinta, Sexta, Sábado] - abbr_day_names: [Dom, Seg, Ter, Qua, Qui, Sex, Sáb] - month_names: [~, Janeiro, Fevereiro, Março, Abril, Maio, Junho, Julho, Agosto, Setembro, Outubro, Novembro, Dezembro] - abbr_month_names: [~, Jan, Fev, Mar, Abr, Mai, Jun, Jul, Ago, Set, Out, Nov, Dez] - order: - - :day - - :month - - :year - - time: - formats: - default: "%A, %d de %B de %Y, %H:%M h" - time: "%H:%M h" - short: "%d/%m, %H:%M h" - long: "%A, %d de %B de %Y, %H:%M h" - only_second: "%S" - datetime: - formats: - default: "%Y-%m-%dT%H:%M:%S%Z" - am: '' - pm: '' - - # date helper distancia em palavras - datetime: - distance_in_words: - half_a_minute: 'meio minuto' - less_than_x_seconds: - one: 'menos de 1 segundo' - other: 'menos de %{count} segundos' - - x_seconds: - one: '1 segundo' - other: '%{count} segundos' - - less_than_x_minutes: - one: 'menos de um minuto' - other: 'menos de %{count} minutos' - - x_minutes: - one: '1 minuto' - other: '%{count} minutos' - - about_x_hours: - one: 'aproximadamente 1 hora' - other: 'aproximadamente %{count} horas' - x_hours: - one: "1 hora" - other: "%{count} horas" - - x_days: - one: '1 dia' - other: '%{count} dias' - - about_x_months: - one: 'aproximadamente 1 mês' - other: 'aproximadamente %{count} meses' - - x_months: - one: '1 mês' - other: '%{count} meses' - - about_x_years: - one: 'aproximadamente 1 ano' - other: 'aproximadamente %{count} anos' - - over_x_years: - one: 'mais de 1 ano' - other: 'mais de %{count} anos' - almost_x_years: - one: "quase 1 ano" - other: "quase %{count} anos" - - # numeros - number: - format: - precision: 3 - separator: ',' - delimiter: '.' - currency: - format: - unit: 'R$' - precision: 2 - format: '%u %n' - separator: ',' - delimiter: '.' - percentage: - format: - delimiter: '.' - precision: - format: - delimiter: '.' - human: - format: - precision: 3 - delimiter: '.' - storage_units: - format: "%n %u" - units: - byte: - one: "Byte" - other: "Bytes" - kb: "KB" - mb: "MB" - gb: "GB" - tb: "TB" - support: - array: - sentence_connector: "e" - skip_last_comma: true - - # Active Record - activerecord: - errors: - template: - header: - one: "modelo não pode ser salvo: 1 erro" - other: "modelo não pode ser salvo: %{count} erros." - body: "Por favor, verifique os seguintes campos:" - messages: - inclusion: "não está incluso na lista" - exclusion: "não está disponível" - invalid: "não é válido" - confirmation: "não está de acordo com a confirmação" - accepted: "precisa ser aceito" - empty: "não pode ficar vazio" - blank: "não pode ficar vazio" - too_long: "é muito longo (máximo: %{count} caracteres)" - too_short: "é muito curto (mínimo: %{count} caracteres)" - wrong_length: "deve ter %{count} caracteres" - taken: "não está disponível" - not_a_number: "não é um número" - greater_than: "precisa ser maior do que %{count}" - greater_than_or_equal_to: "precisa ser maior ou igual a %{count}" - equal_to: "precisa ser igual a %{count}" - less_than: "precisa ser menor do que %{count}" - less_than_or_equal_to: "precisa ser menor ou igual a %{count}" - odd: "precisa ser ímpar" - even: "precisa ser par" - greater_than_start_date: "deve ser maior que a data inicial" - not_same_project: "não pertence ao mesmo projeto" - circular_dependency: "Esta relação geraria uma dependência circular" - cant_link_an_issue_with_a_descendant: "Uma tarefa não pode ser relacionada a uma de suas subtarefas" - earlier_than_minimum_start_date: "não pode ser anterior a %{date} por causa de tarefas anteriores" - not_a_regexp: "não é uma expressão regular válida" - open_issue_with_closed_parent: "Uma tarefa aberta não pode ser associada à uma tarefa pai fechada" - must_contain_uppercase: "must contain uppercase letters (A-Z)" - must_contain_lowercase: "must contain lowercase letters (a-z)" - must_contain_digits: "must contain digits (0-9)" - must_contain_special_chars: "must contain special characters (!, $, %, ...)" - - actionview_instancetag_blank_option: Selecione - - general_text_No: 'Não' - general_text_Yes: 'Sim' - general_text_no: 'não' - general_text_yes: 'sim' - general_lang_name: 'Portuguese/Brazil (Português/Brasil)' - general_csv_separator: ';' - general_csv_decimal_separator: ',' - general_csv_encoding: ISO-8859-1 - general_pdf_fontname: freesans - general_pdf_monospaced_fontname: freemono - general_first_day_of_week: '1' - - notice_account_updated: Conta atualizada com sucesso. - notice_account_invalid_credentials: Usuário ou senha inválido. - notice_account_password_updated: Senha alterada com sucesso. - notice_account_wrong_password: Senha inválida. - notice_account_register_done: Conta criada com sucesso. Para ativar sua conta, clique no link que lhe foi enviado por e-mail. - notice_account_unknown_email: Usuário desconhecido. - notice_can_t_change_password: Esta conta utiliza autenticação externa. Não é possível alterar a senha. - notice_account_lost_email_sent: Um e-mail com instruções para escolher uma nova senha foi enviado para você. - notice_account_activated: Sua conta foi ativada. Você pode acessá-la agora. - notice_successful_create: Criado com sucesso. - notice_successful_update: Alterado com sucesso. - notice_successful_delete: Excluído com sucesso. - notice_successful_connection: Conectado com sucesso. - notice_file_not_found: A página que você está tentando acessar não existe ou foi excluída. - notice_locking_conflict: Os dados foram atualizados por outro usuário. - notice_not_authorized: Você não está autorizado a acessar esta página. - notice_email_sent: "Um e-mail foi enviado para %{value}" - notice_email_error: "Ocorreu um erro ao enviar o e-mail (%{value})" - notice_feeds_access_key_reseted: Sua chave Atom foi reconfigurada. - notice_failed_to_save_issues: "Problema ao salvar %{count} tarefa(s) de %{total} selecionadas: %{ids}." - notice_no_issue_selected: "Nenhuma tarefa selecionada! Por favor, marque as tarefas que você deseja editar." - notice_account_pending: "Sua conta foi criada e está aguardando aprovação do administrador." - notice_default_data_loaded: Configuração padrão carregada com sucesso. - - error_can_t_load_default_data: "A configuração padrão não pode ser carregada: %{value}" - error_scm_not_found: "A entrada e/ou a revisão não existe no repositório." - error_scm_command_failed: "Ocorreu um erro ao tentar acessar o repositório: %{value}" - error_scm_annotate: "Esta entrada não existe ou não pode ser anotada." - error_issue_not_found_in_project: 'A tarefa não foi encontrada ou não pertence a este projeto' - error_no_tracker_in_project: 'Não há um tipo de tarefa associado a este projeto. Favor verificar as configurações do projeto.' - error_no_default_issue_status: 'A situação padrão para tarefa não está definida. Favor verificar sua configuração (Vá em "Administração -> Situação da tarefa").' - error_ldap_bind_credentials: "Conta/Palavra-chave do LDAP não é válida" - - mail_subject_lost_password: "Sua senha do %{value}." - mail_body_lost_password: 'Para mudar sua senha, clique no link abaixo:' - mail_subject_register: "Ativação de conta do %{value}." - mail_body_register: 'Para ativar sua conta, clique no link abaixo:' - mail_body_account_information_external: "Você pode usar sua conta do %{value} para entrar." - mail_body_account_information: Informações sobre sua conta - mail_subject_account_activation_request: "%{value} - Requisição de ativação de conta" - mail_body_account_activation_request: "Um novo usuário (%{value}) se registrou. A conta está aguardando sua aprovação:" - mail_subject_reminder: "%{count} tarefa(s) com data prevista para os próximos %{days} dias" - mail_body_reminder: "%{count} tarefa(s) para você com data prevista para os próximos %{days} dias:" - - - field_name: Nome - field_description: Descrição - field_summary: Resumo - field_is_required: Obrigatório - field_firstname: Nome - field_lastname: Sobrenome - field_mail: E-mail - field_filename: Arquivo - field_filesize: Tamanho - field_downloads: Downloads - field_author: Autor - field_created_on: Criado em - field_updated_on: Alterado em - field_field_format: Formato - field_is_for_all: Para todos os projetos - field_possible_values: Possíveis valores - field_regexp: Expressão regular - field_min_length: Tamanho mínimo - field_max_length: Tamanho máximo - field_value: Valor - field_category: Categoria - field_title: Título - field_project: Projeto - field_issue: Tarefa - field_status: Situação - field_notes: Notas - field_is_closed: Tarefa fechada - field_is_default: Situação padrão - field_tracker: Tipo - field_subject: Título - field_due_date: Data prevista - field_assigned_to: Atribuído para - field_priority: Prioridade - field_fixed_version: Versão - field_user: Usuário - field_role: Cargo - field_homepage: Página do projeto - field_is_public: Público - field_parent: Subprojeto de - field_is_in_roadmap: Exibir no planejamento - field_login: Usuário - field_mail_notification: Notificações por e-mail - field_admin: Administrador - field_last_login_on: Última conexão - field_language: Idioma - field_effective_date: Data - field_password: Senha - field_new_password: Nova senha - field_password_confirmation: Confirmação - field_version: Versão - field_type: Tipo - field_host: Servidor - field_port: Porta - field_account: Conta - field_base_dn: DN Base - field_attr_login: Atributo para nome de usuário - field_attr_firstname: Atributo para nome - field_attr_lastname: Atributo para sobrenome - field_attr_mail: Atributo para e-mail - field_onthefly: Criar usuários dinamicamente ("on-the-fly") - field_start_date: Início - field_done_ratio: "% Terminado" - field_auth_source: Modo de autenticação - field_hide_mail: Ocultar meu e-mail - field_comments: Comentário - field_url: URL - field_start_page: Página inicial - field_subproject: Subprojeto - field_hours: Horas - field_activity: Atividade - field_spent_on: Data - field_identifier: Identificador - field_is_filter: É um filtro - field_issue_to: Tarefa relacionada - field_delay: Atraso - field_assignable: Tarefas podem ser atribuídas a este papel - field_redirect_existing_links: Redirecionar links existentes - field_estimated_hours: Tempo estimado - field_column_names: Colunas - field_time_zone: Fuso-horário - field_searchable: Pesquisável - field_default_value: Padrão - field_comments_sorting: Visualizar comentários - field_parent_title: Página pai - - setting_app_title: Título da aplicação - setting_welcome_text: Texto de boas-vindas - setting_default_language: Idioma padrão - setting_login_required: Exigir autenticação - setting_self_registration: Permitido Auto-registro - setting_attachment_max_size: Tamanho máximo do anexo - setting_issues_export_limit: Limite de exportação das tarefas - setting_mail_from: E-mail enviado de - setting_bcc_recipients: Enviar com cópia oculta (cco) - setting_host_name: Nome do Servidor e subdomínio - setting_text_formatting: Formatação do texto - setting_wiki_compression: Compactação de histórico do Wiki - setting_feeds_limit: Número de registros por Feed - setting_default_projects_public: Novos projetos são públicos por padrão - setting_autofetch_changesets: Obter commits automaticamente - setting_sys_api_enabled: Ativar WS para gerenciamento do repositório (SVN) - setting_commit_ref_keywords: Palavras-chave de referência - setting_commit_fix_keywords: Definição de palavras-chave - setting_autologin: Auto-login - setting_date_format: Formato da data - setting_time_format: Formato de hora - setting_cross_project_issue_relations: Permitir relacionar tarefas entre projetos - setting_issue_list_default_columns: Colunas na lista de tarefas por padrão - setting_emails_footer: Rodapé do e-mail - setting_protocol: Protocolo - setting_per_page_options: Número de itens exibidos por página - setting_user_format: Formato de exibição de nome de usuário - setting_activity_days_default: Dias visualizados na atividade do projeto - setting_display_subprojects_issues: Visualizar tarefas dos subprojetos nos projetos principais por padrão - setting_enabled_scm: SCM habilitados - setting_mail_handler_api_enabled: Habilitar WS para e-mails de entrada - setting_mail_handler_api_key: Chave de API - setting_sequential_project_identifiers: Gerar identificadores sequenciais de projeto - - project_module_issue_tracking: Gerenciamento de Tarefas - project_module_time_tracking: Gerenciamento de tempo - project_module_news: Notícias - project_module_documents: Documentos - project_module_files: Arquivos - project_module_wiki: Wiki - project_module_repository: Repositório - project_module_boards: Fóruns - - label_user: Usuário - label_user_plural: Usuários - label_user_new: Novo usuário - label_project: Projeto - label_project_new: Novo projeto - label_project_plural: Projetos - label_x_projects: - zero: nenhum projeto - one: 1 projeto - other: "%{count} projetos" - label_project_all: Todos os projetos - label_project_latest: Últimos projetos - label_issue: Tarefa - label_issue_new: Nova tarefa - label_issue_plural: Tarefas - label_issue_view_all: Ver todas as tarefas - label_issues_by: "Tarefas por %{value}" - label_issue_added: Tarefa adicionada - label_issue_updated: Tarefa atualizada - label_issue_note_added: Nota adicionada - label_issue_status_updated: Situação atualizada - label_issue_priority_updated: Prioridade atualizada - label_document: Documento - label_document_new: Novo documento - label_document_plural: Documentos - label_document_added: Documento adicionado - label_role: Papel - label_role_plural: Papéis - label_role_new: Novo papel - label_role_and_permissions: Papéis e permissões - label_member: Membro - label_member_new: Novo membro - label_member_plural: Membros - label_tracker: Tipo de tarefa - label_tracker_plural: Tipos de tarefas - label_tracker_new: Novo tipo - label_workflow: Fluxo de trabalho - label_issue_status: Situação da tarefa - label_issue_status_plural: Situação das tarefas - label_issue_status_new: Nova situação - label_issue_category: Categoria da tarefa - label_issue_category_plural: Categorias das tarefas - label_issue_category_new: Nova categoria - label_custom_field: Campo personalizado - label_custom_field_plural: Campos personalizados - label_custom_field_new: Novo campo personalizado - label_enumerations: 'Tipos & Categorias' - label_enumeration_new: Novo - label_information: Informação - label_information_plural: Informações - label_register: Cadastre-se - label_password_lost: Perdi minha senha - label_home: Página inicial - label_my_page: Minha página - label_my_account: Minha conta - label_my_projects: Meus projetos - label_administration: Administração - label_login: Entrar - label_logout: Sair - label_help: Ajuda - label_reported_issues: Tarefas reportadas - label_assigned_to_me_issues: Minhas tarefas - label_last_login: Última conexão - label_registered_on: Registrado em - label_activity: Atividade - label_overall_activity: Atividades gerais - label_new: Novo - label_logged_as: "Acessando como:" - label_environment: Ambiente - label_authentication: Autenticação - label_auth_source: Modo de autenticação - label_auth_source_new: Novo modo de autenticação - label_auth_source_plural: Modos de autenticação - label_subproject_plural: Subprojetos - label_and_its_subprojects: "%{value} e seus subprojetos" - label_min_max_length: Tamanho mín-máx - label_list: Lista - label_date: Data - label_integer: Inteiro - label_float: Decimal - label_boolean: Booleano - label_string: Texto - label_text: Texto longo - label_attribute: Atributo - label_attribute_plural: Atributos - label_no_data: Nenhuma informação disponível - label_change_status: Alterar situação - label_history: Histórico - label_attachment: Arquivo - label_attachment_new: Novo arquivo - label_attachment_delete: Excluir arquivo - label_attachment_plural: Arquivos - label_file_added: Arquivo adicionado - label_report: Relatório - label_report_plural: Relatório - label_news: Notícia - label_news_new: Adicionar notícia - label_news_plural: Notícias - label_news_latest: Últimas notícias - label_news_view_all: Ver todas as notícias - label_news_added: Notícia adicionada - label_settings: Configurações - label_overview: Visão geral - label_version: Versão - label_version_new: Nova versão - label_version_plural: Versões - label_confirmation: Confirmação - label_export_to: Exportar para - label_read: Ler... - label_public_projects: Projetos públicos - label_open_issues: Aberta - label_open_issues_plural: Abertas - label_closed_issues: Fechada - label_closed_issues_plural: Fechadas - label_x_open_issues_abbr: - zero: 0 aberta - one: 1 aberta - other: "%{count} abertas" - label_x_closed_issues_abbr: - zero: 0 fechada - one: 1 fechada - other: "%{count} fechadas" - label_total: Total - label_permissions: Permissões - label_current_status: Situação atual - label_new_statuses_allowed: Nova situação permitida - label_all: todos - label_none: nenhum - label_nobody: ninguém - label_next: Próximo - label_previous: Anterior - label_used_by: Usado por - label_details: Detalhes - label_add_note: Adicionar nota - label_calendar: Calendário - label_months_from: meses a partir de - label_gantt: Gantt - label_internal: Interno - label_last_changes: "últimas %{count} alterações" - label_change_view_all: Mostrar todas as alterações - label_comment: Comentário - label_comment_plural: Comentários - label_x_comments: - zero: nenhum comentário - one: 1 comentário - other: "%{count} comentários" - label_comment_add: Adicionar comentário - label_comment_added: Comentário adicionado - label_comment_delete: Excluir comentário - label_query: Consulta personalizada - label_query_plural: Consultas personalizadas - label_query_new: Nova consulta - label_filter_add: Adicionar filtro - label_filter_plural: Filtros - label_equals: igual a - label_not_equals: diferente de - label_in_less_than: maior que - label_in_more_than: menor que - label_in: em - label_today: hoje - label_yesterday: ontem - label_this_week: esta semana - label_last_week: última semana - label_last_n_days: "últimos %{count} dias" - label_this_month: este mês - label_last_month: último mês - label_this_year: este ano - label_date_range: Período - label_less_than_ago: menos de - label_more_than_ago: mais de - label_ago: dias atrás - label_contains: contém - label_not_contains: não contém - label_day_plural: dias - label_repository: Repositório - label_repository_plural: Repositórios - label_browse: Procurar - label_revision: Revisão - label_revision_plural: Revisões - label_associated_revisions: Revisões associadas - label_added: adicionada - label_modified: alterada - label_deleted: excluída - label_latest_revision: Última revisão - label_latest_revision_plural: Últimas revisões - label_view_revisions: Ver revisões - label_max_size: Tamanho máximo - label_sort_highest: Mover para o início - label_sort_higher: Mover para cima - label_sort_lower: Mover para baixo - label_sort_lowest: Mover para o fim - label_roadmap: Planejamento - label_roadmap_due_in: "Previsto para %{value}" - label_roadmap_overdue: "%{value} atrasado" - label_roadmap_no_issues: Sem tarefas para esta versão - label_search: Busca - label_result_plural: Resultados - label_all_words: Todas as palavras - label_wiki: Wiki - label_wiki_edit: Editar Wiki - label_wiki_edit_plural: Edições Wiki - label_wiki_page: Página Wiki - label_wiki_page_plural: páginas Wiki - label_index_by_title: Índice por título - label_index_by_date: Índice por data - label_current_version: Versão atual - label_preview: Pré-visualizar - label_feed_plural: Feeds - label_changes_details: Detalhes de todas as alterações - label_issue_tracking: Tarefas - label_spent_time: Tempo gasto - label_f_hour: "%{value} hora" - label_f_hour_plural: "%{value} horas" - label_time_tracking: Registro de horas - label_change_plural: Alterações - label_statistics: Estatísticas - label_commits_per_month: Commits por mês - label_commits_per_author: Commits por autor - label_view_diff: Ver diferenças - label_diff_inline: em linha - label_diff_side_by_side: lado a lado - label_options: Opções - label_copy_workflow_from: Copiar fluxo de trabalho de - label_permissions_report: Relatório de permissões - label_watched_issues: Tarefas observadas - label_related_issues: Tarefas relacionadas - label_applied_status: Situação alterada - label_loading: Carregando... - label_relation_new: Nova relação - label_relation_delete: Excluir relação - label_relates_to: relacionado a - label_duplicates: duplica - label_duplicated_by: duplicado por - label_blocks: bloqueia - label_blocked_by: bloqueado por - label_precedes: precede - label_follows: segue - label_stay_logged_in: Permanecer logado - label_disabled: desabilitado - label_show_completed_versions: Exibir versões completas - label_me: mim - label_board: Fórum - label_board_new: Novo fórum - label_board_plural: Fóruns - label_topic_plural: Tópicos - label_message_plural: Mensagens - label_message_last: Última mensagem - label_message_new: Nova mensagem - label_message_posted: Mensagem enviada - label_reply_plural: Respostas - label_send_information: Enviar informação da nova conta para o usuário - label_year: Ano - label_month: Mês - label_week: Semana - label_date_from: De - label_date_to: Para - label_language_based: Com base no idioma do usuário - label_sort_by: "Ordenar por %{value}" - label_send_test_email: Enviar um e-mail de teste - label_feeds_access_key_created_on: "chave de acesso Atom criada %{value} atrás" - label_module_plural: Módulos - label_added_time_by: "Adicionado por %{author} %{age} atrás" - label_updated_time: "Atualizado %{value} atrás" - label_jump_to_a_project: Ir para o projeto... - label_file_plural: Arquivos - label_changeset_plural: Conjunto de alterações - label_default_columns: Colunas padrão - label_no_change_option: (Sem alteração) - label_bulk_edit_selected_issues: Edição em massa das tarefas selecionadas. - label_theme: Tema - label_default: Padrão - label_search_titles_only: Pesquisar somente títulos - label_user_mail_option_all: "Para qualquer evento em todos os meus projetos" - label_user_mail_option_selected: "Para qualquer evento somente no(s) projeto(s) selecionado(s)..." - label_user_mail_no_self_notified: "Eu não quero ser notificado de minhas próprias modificações" - label_registration_activation_by_email: ativação de conta por e-mail - label_registration_manual_activation: ativação manual de conta - label_registration_automatic_activation: ativação automática de conta - label_display_per_page: "Por página: %{value}" - label_age: Idade - label_change_properties: Alterar propriedades - label_general: Geral - label_scm: 'Controle de versão:' - label_plugins: Plugins - label_ldap_authentication: Autenticação LDAP - label_downloads_abbr: D/L - label_optional_description: Descrição opcional - label_add_another_file: Adicionar outro arquivo - label_preferences: Preferências - label_chronological_order: Em ordem cronológica - label_reverse_chronological_order: Em ordem cronológica inversa - label_incoming_emails: E-mails recebidos - label_generate_key: Gerar uma chave - label_issue_watchers: Observadores - - button_login: Entrar - button_submit: Enviar - button_save: Salvar - button_check_all: Marcar todos - button_uncheck_all: Desmarcar todos - button_delete: Excluir - button_create: Criar - button_test: Testar - button_edit: Editar - button_add: Adicionar - button_change: Alterar - button_apply: Aplicar - button_clear: Limpar - button_lock: Bloquear - button_unlock: Desbloquear - button_download: Baixar - button_list: Listar - button_view: Ver - button_move: Mover - button_back: Voltar - button_cancel: Cancelar - button_activate: Ativar - button_sort: Ordenar - button_log_time: Tempo de trabalho - button_rollback: Voltar para esta versão - button_watch: Observar - button_unwatch: Parar de observar - button_reply: Responder - button_archive: Arquivar - button_unarchive: Desarquivar - button_reset: Redefinir - button_rename: Renomear - button_change_password: Alterar senha - button_copy: Copiar - button_annotate: Anotar - button_update: Atualizar - button_configure: Configurar - button_quote: Responder - - status_active: ativo - status_registered: registrado - status_locked: bloqueado - - text_select_mail_notifications: Ações a serem notificadas por e-mail - text_regexp_info: ex. ^[A-Z0-9]+$ - text_min_max_length_info: 0 = sem restrição - text_project_destroy_confirmation: Você tem certeza que deseja excluir este projeto e todos os dados relacionados? - text_subprojects_destroy_warning: "Seu(s) subprojeto(s): %{value} também serão excluídos." - text_workflow_edit: Selecione um papel e um tipo de tarefa para editar o fluxo de trabalho - text_are_you_sure: Você tem certeza? - text_tip_issue_begin_day: tarefa inicia neste dia - text_tip_issue_end_day: tarefa termina neste dia - text_tip_issue_begin_end_day: tarefa inicia e termina neste dia - text_caracters_maximum: "máximo %{count} caracteres" - text_caracters_minimum: "deve ter ao menos %{count} caracteres." - text_length_between: "deve ter entre %{min} e %{max} caracteres." - text_tracker_no_workflow: Sem fluxo de trabalho definido para este tipo. - text_unallowed_characters: Caracteres não permitidos - text_comma_separated: Múltiplos valores são permitidos (separados por vírgula). - text_issues_ref_in_commit_messages: Referenciando tarefas nas mensagens de commit - text_issue_added: "Tarefa %{id} incluída (por %{author})." - text_issue_updated: "Tarefa %{id} alterada (por %{author})." - text_wiki_destroy_confirmation: Você tem certeza que deseja excluir este wiki e TODO o seu conteúdo? - text_issue_category_destroy_question: "Algumas tarefas (%{count}) estão atribuídas a esta categoria. O que você deseja fazer?" - text_issue_category_destroy_assignments: Remover atribuições da categoria - text_issue_category_reassign_to: Redefinir tarefas para esta categoria - text_user_mail_option: "Para projetos (não selecionados), você somente receberá notificações sobre o que você está observando ou está envolvido (ex. tarefas das quais você é o autor ou que estão atribuídas a você)" - text_no_configuration_data: "Os Papéis, tipos de tarefas, situação de tarefas e fluxos de trabalho não foram configurados ainda.\nÉ altamente recomendado carregar as configurações padrão. Você poderá modificar estas configurações assim que carregadas." - text_load_default_configuration: Carregar a configuração padrão - text_status_changed_by_changeset: "Aplicado no conjunto de alterações %{value}." - text_issues_destroy_confirmation: 'Você tem certeza que deseja excluir a(s) tarefa(s) selecionada(s)?' - text_select_project_modules: 'Selecione módulos para habilitar para este projeto:' - text_default_administrator_account_changed: Conta padrão do administrador alterada - text_file_repository_writable: Repositório com permissão de escrita - text_minimagick_available: MiniMagick disponível (opcional) - text_destroy_time_entries_question: "%{hours} horas de trabalho foram registradas nas tarefas que você está excluindo. O que você deseja fazer?" - text_destroy_time_entries: Excluir horas de trabalho - text_assign_time_entries_to_project: Atribuir estas horas de trabalho para outro projeto - text_reassign_time_entries: 'Atribuir horas reportadas para esta tarefa:' - text_user_wrote: "%{value} escreveu:" - text_user_wrote_in: "%{value} escreveu (%{link}):" - text_enumeration_destroy_question: "%{count} objetos estão atribuídos a este valor." - text_enumeration_category_reassign_to: 'Reatribuí-los ao valor:' - text_email_delivery_not_configured: "O envio de e-mail não está configurado, e as notificações estão inativas.\nConfigure seu servidor SMTP no arquivo config/configuration.yml e reinicie a aplicação para ativá-las." - - default_role_manager: Gerente - default_role_developer: Desenvolvedor - default_role_reporter: Informante - default_tracker_bug: Defeito - default_tracker_feature: Funcionalidade - default_tracker_support: Suporte - default_issue_status_new: Nova - default_issue_status_in_progress: Em andamento - default_issue_status_resolved: Resolvida - default_issue_status_feedback: Feedback - default_issue_status_closed: Fechada - default_issue_status_rejected: Rejeitada - default_doc_category_user: Documentação do usuário - default_doc_category_tech: Documentação técnica - default_priority_low: Baixa - default_priority_normal: Normal - default_priority_high: Alta - default_priority_urgent: Urgente - default_priority_immediate: Imediata - default_activity_design: Design - default_activity_development: Desenvolvimento - - enumeration_issue_priorities: Prioridade das tarefas - enumeration_doc_categories: Categorias de documento - enumeration_activities: Atividades (registro de horas) - notice_unable_delete_version: Não foi possível excluir a versão - label_renamed: renomeado - label_copied: copiado - setting_plain_text_mail: Usar mensagem sem formatação HTML - permission_view_files: Ver arquivos - permission_edit_issues: Editar tarefas - permission_edit_own_time_entries: Editar o próprio tempo de trabalho - permission_manage_public_queries: Gerenciar consultas públicas - permission_add_issues: Adicionar tarefas - permission_log_time: Adicionar tempo gasto - permission_view_changesets: Ver conjunto de alterações - permission_view_time_entries: Ver tempo gasto - permission_manage_versions: Gerenciar versões - permission_manage_wiki: Gerenciar wiki - permission_manage_categories: Gerenciar categorias de tarefas - permission_protect_wiki_pages: Proteger páginas wiki - permission_comment_news: Comentar notícias - permission_delete_messages: Excluir mensagens - permission_select_project_modules: Selecionar módulos de projeto - permission_edit_wiki_pages: Editar páginas wiki - permission_add_issue_watchers: Adicionar observadores - permission_view_gantt: Ver gráfico gantt - permission_manage_issue_relations: Gerenciar relacionamentos de tarefas - permission_delete_wiki_pages: Excluir páginas wiki - permission_manage_boards: Gerenciar fóruns - permission_delete_wiki_pages_attachments: Excluir anexos - permission_view_wiki_edits: Ver histórico do wiki - permission_add_messages: Postar mensagens - permission_view_messages: Ver mensagens - permission_manage_files: Gerenciar arquivos - permission_edit_issue_notes: Editar notas - permission_manage_news: Gerenciar notícias - permission_view_calendar: Ver calendário - permission_manage_members: Gerenciar membros - permission_edit_messages: Editar mensagens - permission_delete_issues: Excluir tarefas - permission_view_issue_watchers: Ver lista de observadores - permission_manage_repository: Gerenciar repositório - permission_commit_access: Acesso do commit - permission_browse_repository: Pesquisar repositório - permission_view_documents: Ver documentos - permission_edit_project: Editar projeto - permission_add_issue_notes: Adicionar notas - permission_save_queries: Salvar consultas - permission_view_wiki_pages: Ver wiki - permission_rename_wiki_pages: Renomear páginas wiki - permission_edit_time_entries: Editar tempo gasto - permission_edit_own_issue_notes: Editar suas próprias notas - setting_gravatar_enabled: Usar ícones do Gravatar - label_example: Exemplo - text_repository_usernames_mapping: "Seleciona ou atualiza os usuários do Redmine mapeando para cada usuário encontrado no log do repositório.\nUsuários com o mesmo login ou e-mail no Redmine e no repositório serão mapeados automaticamente." - permission_edit_own_messages: Editar próprias mensagens - permission_delete_own_messages: Excluir próprias mensagens - label_user_activity: "Atividade de %{value}" - label_updated_time_by: "Atualizado por %{author} há %{age}" - text_diff_truncated: '... Este diff foi truncado porque excede o tamanho máximo que pode ser exibido.' - setting_diff_max_lines_displayed: Número máximo de linhas exibidas no diff - text_plugin_assets_writable: Diretório de plugins gravável - warning_attachments_not_saved: "%{count} arquivo(s) não puderam ser salvo(s)." - button_create_and_continue: Criar e continuar - text_custom_field_possible_values_info: 'Uma linha para cada valor' - label_display: Exibição - field_editable: Editável - setting_repository_log_display_limit: Número máximo de revisões exibidas no arquivo de log - setting_file_max_size_displayed: Tamanho máximo dos arquivos textos exibidos em linha - setting_openid: Permitir Login e Registro via OpenID - field_identity_url: OpenID URL - label_login_with_open_id_option: ou use o OpenID - field_content: Conteúdo - label_descending: Descendente - label_sort: Ordenar - label_ascending: Ascendente - label_date_from_to: De %{start} até %{end} - label_greater_or_equal: ">=" - label_less_or_equal: <= - text_wiki_page_destroy_question: Esta página tem %{descendants} página(s) filha(s) e descendente(s). O que você quer fazer? - text_wiki_page_reassign_children: Reatribuir páginas filhas para esta página pai - text_wiki_page_nullify_children: Manter as páginas filhas como páginas raízes - text_wiki_page_destroy_children: Excluir páginas filhas e todas suas descendentes - setting_password_min_length: Comprimento mínimo para senhas - field_group_by: Agrupar por - mail_subject_wiki_content_updated: "A página wiki '%{id}' foi atualizada" - label_wiki_content_added: Página wiki adicionada - mail_subject_wiki_content_added: "A página wiki '%{id}' foi adicionada" - mail_body_wiki_content_added: A página wiki '%{id}' foi adicionada por %{author}. - label_wiki_content_updated: Página wiki atualizada - mail_body_wiki_content_updated: A página wiki '%{id}' foi atualizada por %{author}. - permission_add_project: Criar projeto - setting_new_project_user_role_id: Papel atribuído a um usuário não-administrador que cria um projeto - label_view_all_revisions: Ver todas as revisões - label_tag: Tag - label_branch: Branch - text_journal_changed: "%{label} alterado de %{old} para %{new}" - text_journal_set_to: "%{label} ajustado para %{value}" - text_journal_deleted: "%{label} excluído (%{old})" - label_group_plural: Grupos - label_group: Grupo - label_group_new: Novo grupo - label_time_entry_plural: Tempos gastos - text_journal_added: "%{label} %{value} adicionado" - field_active: Ativo - enumeration_system_activity: Atividade do sistema - permission_delete_issue_watchers: Excluir observadores - version_status_closed: fechado - version_status_locked: bloqueado - version_status_open: aberto - error_can_not_reopen_issue_on_closed_version: Uma tarefa atribuída a uma versão fechada não pode ser reaberta - label_user_anonymous: Anônimo - button_move_and_follow: Mover e seguir - setting_default_projects_modules: Módulos habilitados por padrão para novos projetos - setting_gravatar_default: Imagem-padrão do Gravatar - field_sharing: Compartilhamento - label_version_sharing_hierarchy: Com a hierarquia do projeto - label_version_sharing_system: Com todos os projetos - label_version_sharing_descendants: Com subprojetos - label_version_sharing_tree: Com a árvore do projeto - label_version_sharing_none: Sem compartilhamento - error_can_not_archive_project: Este projeto não pode ser arquivado - button_copy_and_follow: Copiar e seguir - label_copy_source: Origem - setting_issue_done_ratio: Calcular o percentual de conclusão da tarefa - setting_issue_done_ratio_issue_status: Usar a situação da tarefa - error_issue_done_ratios_not_updated: O percentual de conclusão das tarefas não foi atualizado. - error_workflow_copy_target: Por favor, selecione os tipos de tarefa e os papéis alvo - setting_issue_done_ratio_issue_field: Use o campo da tarefa - label_copy_same_as_target: Mesmo alvo - label_copy_target: Alvo - notice_issue_done_ratios_updated: Percentual de conclusão atualizados. - error_workflow_copy_source: Por favor, selecione um tipo de tarefa e papel de origem - label_update_issue_done_ratios: Atualizar percentual de conclusão das tarefas - setting_start_of_week: Início da semana - field_watcher: Observador - permission_view_issues: Ver tarefas - label_display_used_statuses_only: Somente exibir situações que são usadas por este tipo de tarefa - label_revision_id: Revisão %{value} - label_api_access_key: Chave de acesso à API - button_show: Exibir - label_api_access_key_created_on: Chave de acesso à API criado há %{value} atrás - label_feeds_access_key: Chave de acesso ao Atom - notice_api_access_key_reseted: Sua chave de acesso à API foi redefinida. - setting_rest_api_enabled: Habilitar a API REST - label_missing_api_access_key: Chave de acesso à API faltando - label_missing_feeds_access_key: Chave de acesso ao Atom faltando - text_line_separated: Múltiplos valores permitidos (uma linha para cada valor). - setting_mail_handler_body_delimiters: Truncar e-mails após uma destas linhas - permission_add_subprojects: Criar subprojetos - label_subproject_new: Novo subprojeto - text_own_membership_delete_confirmation: |- - Você irá excluir algumas de suas próprias permissões e não estará mais apto a editar este projeto após esta operação. - Você tem certeza que deseja continuar? - label_close_versions: Fechar versões concluídas - label_board_sticky: Marcado - label_board_locked: Bloqueado - permission_export_wiki_pages: Exportar páginas wiki - setting_cache_formatted_text: Realizar cache de texto formatado - permission_manage_project_activities: Gerenciar atividades do projeto - error_unable_delete_issue_status: Não foi possível excluir situação da tarefa (%{value}) - label_profile: Perfil - permission_manage_subtasks: Gerenciar subtarefas - field_parent_issue: Tarefa pai - label_subtask_plural: Subtarefas - label_project_copy_notifications: Enviar notificações por e-mail ao copiar projeto - error_can_not_delete_custom_field: Não foi possível excluir o campo personalizado - error_unable_to_connect: Não foi possível conectar (%{value}) - error_can_not_remove_role: Este papel está em uso e não pode ser excluído. - error_can_not_delete_tracker: Este tipo de tarefa está atribuído a alguma(s) tarefa(s) e não pode ser excluído. - field_principal: Principal - notice_failed_to_save_members: "Falha ao salvar membro(s): %{errors}." - text_zoom_out: Afastar zoom - text_zoom_in: Aproximar zoom - notice_unable_delete_time_entry: Não foi possível excluir a entrada no registro de horas trabalhadas. - label_overall_spent_time: Tempo gasto geral - field_time_entries: Registro de horas - project_module_gantt: Gantt - project_module_calendar: Calendário - button_edit_associated_wikipage: "Editar página wiki relacionada: %{page_title}" - field_text: Campo de texto - setting_default_notification_option: Opção padrão de notificação - label_user_mail_option_only_my_events: Somente de tarefas que observo ou que esteja envolvido - label_user_mail_option_none: Sem eventos - field_member_of_group: Responsável pelo grupo - field_assigned_to_role: Papel do responsável - notice_not_authorized_archived_project: O projeto que você está tentando acessar foi arquivado. - label_principal_search: "Pesquisar por usuários ou grupos:" - label_user_search: "Pesquisar por usuário:" - field_visible: Visível - setting_emails_header: Cabeçalho do e-mail - setting_commit_logtime_activity_id: Atividade para registrar horas - text_time_logged_by_changeset: Aplicado no conjunto de alterações %{value}. - setting_commit_logtime_enabled: Habilitar registro de horas - notice_gantt_chart_truncated: O gráfico foi cortado por exceder o tamanho máximo de linhas que podem ser exibidas (%{max}) - setting_gantt_items_limit: Número máximo de itens exibidos no gráfico gantt - field_warn_on_leaving_unsaved: Alertar-me ao sair de uma página sem salvar o texto - text_warn_on_leaving_unsaved: A página atual contém texto que não foi salvo e será perdido se você sair desta página. - label_my_queries: Minhas consultas personalizadas - text_journal_changed_no_detail: "%{label} atualizado(a)" - label_news_comment_added: Notícia recebeu um comentário - button_expand_all: Expandir tudo - button_collapse_all: Recolher tudo - label_additional_workflow_transitions_for_assignee: Transições adicionais permitidas quando o usuário é o responsável pela tarefa - label_additional_workflow_transitions_for_author: Transições adicionais permitidas quando o usuário é o autor - - label_bulk_edit_selected_time_entries: Alteração em massa do registro de horas - text_time_entries_destroy_confirmation: Tem certeza que quer excluir o(s) registro(s) de horas selecionado(s)? - label_role_anonymous: Anônimo - label_role_non_member: Não Membro - label_issues_visibility_own: Tarefas criadas ou atribuídas ao usuário - field_issues_visibility: Visibilidade das tarefas - label_issues_visibility_all: Todas as tarefas - permission_set_own_issues_private: Alterar as próprias tarefas para públicas ou privadas - field_is_private: Privado - permission_set_issues_private: Alterar tarefas para públicas ou privadas - label_issues_visibility_public: Todas as tarefas não privadas - text_issues_destroy_descendants_confirmation: Isto também irá excluir %{count} subtarefa(s). - field_commit_logs_encoding: Codificação das mensagens de commit - field_scm_path_encoding: Codificação do caminho - text_scm_path_encoding_note: "Padrão: UTF-8" - field_path_to_repository: Caminho para o repositório - field_root_directory: Diretório raiz - field_cvs_module: Módulo - field_cvsroot: CVSROOT - text_mercurial_repository_note: "Repositório local (ex.: /hgrepo, c:\\hgrepo)" - text_scm_command: Comando - text_scm_command_version: Versão - label_git_report_last_commit: Relatar última alteração para arquivos e diretórios - text_scm_config: Você pode configurar seus comandos de versionamento em config/configurations.yml. Por favor reinicie a aplicação após alterá-lo. - text_scm_command_not_available: Comando de versionamento não disponível. Por favor verifique as configurações no painel de administração. - notice_issue_successful_create: Tarefa %{id} criada. - label_between: entre - setting_issue_group_assignment: Permitir atribuições de tarefas a grupos - label_diff: diff - text_git_repository_note: "Repositório esta vazio e é local (ex: /gitrepo, c:\\gitrepo)" - - description_query_sort_criteria_direction: Escolher ordenação - description_project_scope: Escopo da pesquisa - description_filter: Filtro - description_user_mail_notification: Configuração de notificações por e-mail - description_message_content: Conteúdo da mensagem - description_available_columns: Colunas disponíveis - description_issue_category_reassign: Escolha uma categoria de tarefas - description_search: Campo de busca - description_notes: Notas - description_choose_project: Projetos - description_query_sort_criteria_attribute: Atributo de ordenação - description_wiki_subpages_reassign: Escolha uma nova página pai - description_selected_columns: Colunas selecionadas - - label_parent_revision: Pai - label_child_revision: Filho - error_scm_annotate_big_text_file: A entrada não pode ser anotada, pois excede o tamanho máximo do arquivo de texto. - setting_default_issue_start_date_to_creation_date: Usar data corrente como data inicial para novas tarefas - button_edit_section: Editar esta seção - setting_repositories_encodings: Codificação dos repositórios e anexos - description_all_columns: Todas as colunas - button_export: Exportar - label_export_options: "Opções de exportação %{export_format}" - error_attachment_too_big: Este arquivo não pode ser enviado porque excede o tamanho máximo permitido (%{max_size}) - notice_failed_to_save_time_entries: "Falha ao salvar %{count} de %{total} horas trabalhadas: %{ids}." - label_x_issues: - zero: 0 tarefa - one: 1 tarefa - other: "%{count} tarefas" - label_repository_new: Novo repositório - field_repository_is_default: Repositório principal - label_copy_attachments: Copiar anexos - label_item_position: "%{position}/%{count}" - label_completed_versions: Versões concluídas - text_project_identifier_info: Somente letras minúsculas (a-z), números, traços e sublinhados são permitidos.
    Uma vez salvo, o identificador não pode ser alterado. - field_multiple: Múltiplos valores - setting_commit_cross_project_ref: Permitir que tarefas de todos os outros projetos sejam refenciadas e resolvidas - text_issue_conflict_resolution_add_notes: Adicionar minhas anotações e descartar minhas outras mudanças - text_issue_conflict_resolution_overwrite: Aplicar as minhas alterações de qualquer maneira (notas anteriores serão mantidas, mas algumas mudanças podem ser substituídas) - notice_issue_update_conflict: A tarefa foi atualizada por um outro usuário, enquanto você estava editando. - text_issue_conflict_resolution_cancel: Descartar todas as minhas mudanças e reexibir %{link} - permission_manage_related_issues: Gerenciar tarefas relacionadas - field_auth_source_ldap_filter: Filtro LDAP - label_search_for_watchers: Procurar por outros observadores para adicionar - notice_account_deleted: Sua conta foi excluída permanentemente. - setting_unsubscribe: Permitir aos usuários excluir sua própria conta - button_delete_my_account: Excluir minha conta - text_account_destroy_confirmation: |- - Tem certeza que quer continuar? - Sua conta será excluída permanentemente, sem qualquer forma de reativá-la. - error_session_expired: A sua sessão expirou. Por favor, faça login novamente. - text_session_expiration_settings: "Aviso: a alteração dessas configurações pode expirar as sessões atuais, incluindo a sua." - setting_session_lifetime: Duração máxima da sessão - setting_session_timeout: Tempo limite de inatividade da sessão - label_session_expiration: "Expiração da sessão" - permission_close_project: Fechar / reabrir o projeto - button_close: Fechar - button_reopen: Reabrir - project_status_active: ativo - project_status_closed: fechado - project_status_archived: arquivado - text_project_closed: Este projeto está fechado e somente leitura. - notice_user_successful_create: Usuário %{id} criado. - field_core_fields: campos padrão - field_timeout: Tempo de espera (em segundos) - setting_thumbnails_enabled: Exibir miniaturas de anexos - setting_thumbnails_size: Tamanho das miniaturas (em pixels) - label_status_transitions: Estados das transições - label_fields_permissions: Permissões de campos - label_readonly: somente leitura - label_required: Obrigatório - text_repository_identifier_info: Somente letras minúsculas (az), números, traços e sublinhados são permitidos
    Uma vez salvo, o identificador não pode ser alterado. - field_board_parent: Fórum Pai - label_attribute_of_project: "Projeto %{name}" - label_attribute_of_author: "autor %{name}" - label_attribute_of_assigned_to: "atribuído a %{name}" - label_attribute_of_fixed_version: "versão %{name}" - label_copy_subtasks: Copiar subtarefas - label_copied_to: copiada - label_copied_from: copiado - label_any_issues_in_project: qualquer tarefa do projeto - label_any_issues_not_in_project: qualquer tarefa que não está no projeto - field_private_notes: notas privadas - permission_view_private_notes: Ver notas privadas - permission_set_notes_private: Permitir alterar notas para privada - label_no_issues_in_project: sem tarefas no projeto - label_any: todos - label_last_n_weeks: "últimas %{count} semanas" - setting_cross_project_subtasks: Permitir subtarefas entre projetos - label_cross_project_descendants: com subprojetos - label_cross_project_tree: Com a árvore do Projeto - label_cross_project_hierarchy: Com uma hierarquia do Projeto - label_cross_project_system: Com todos os Projetos - button_hide: Omitir - setting_non_working_week_days: dias não úteis - label_in_the_next_days: nos próximos dias - label_in_the_past_days: nos dias anteriores - label_attribute_of_user: Usuário %{name} - text_turning_multiple_off: Se você desativar vários valores, eles serão removidos, a fim de preservar somente um valor por item. - label_attribute_of_issue: Tarefa %{name} - permission_add_documents: Adicionar documentos - permission_edit_documents: Editar documentos - permission_delete_documents: Excluir documentos - label_gantt_progress_line: Linha de progresso - setting_jsonp_enabled: Ativar suporte JSONP - field_inherit_members: Herdar membros - field_closed_on: Concluído - field_generate_password: Gerar senha - setting_default_projects_tracker_ids: Tipos padrões para novos projeto - label_total_time: Total - notice_account_not_activated_yet: Sua conta ainda não foi ativada. Se você deseja receber - um novo email de ativação, por favor clique aqui. - notice_account_locked: Sua conta está bloqueada. - label_hidden: Visibilidade - label_visibility_private: para mim - label_visibility_roles: para os papéis - label_visibility_public: para qualquer usuário - field_must_change_passwd: É necessário alterar sua senha na próxima vez que tentar acessar sua conta - notice_new_password_must_be_different: A nova senha deve ser diferente da senha atual - setting_mail_handler_excluded_filenames: Exclui anexos por nome - text_convert_available: Conversor ImageMagick disponível (opcional) - label_link: Link - label_only: somente - label_drop_down_list: lista suspensa - label_checkboxes: checkboxes - label_link_values_to: Valores do link para URL - setting_force_default_language_for_anonymous: Forçar linguagem padrão para usuários - anônimos - setting_force_default_language_for_loggedin: Forçar linguagem padrão para usuários - logados - label_custom_field_select_type: Selecione o tipo de objeto ao qual o campo personalizado - é para ser anexado - label_issue_assigned_to_updated: Atribuição atualizada - label_check_for_updates: Verificar atualizações - label_latest_compatible_version: Última versão compatível - label_unknown_plugin: Plugin desconhecido - label_radio_buttons: botões radio - label_group_anonymous: Usuários anônimos - label_group_non_member: Usuários não membros - label_add_projects: Adicionar projetos - field_default_status: Situação padrão - text_subversion_repository_note: 'Exemplos: file:///, http://, https://, svn://, svn+[tunnelscheme]://' - field_users_visibility: Visibilidade do usuário - label_users_visibility_all: Todos usuários ativos - label_users_visibility_members_of_visible_projects: Membros de projetos visíveis - label_edit_attachments: Editar arquivos anexados - setting_link_copied_issue: Relacionar tarefas copiadas - label_link_copied_issue: Relacionar tarefas copiadas - label_ask: Perguntar - label_search_attachments_yes: Procurar nome do arquivo e descrição anexados - label_search_attachments_no: Não procurar anexados - label_search_attachments_only: Procurar somente anexados - label_search_open_issues_only: Somente tarefas abertas - field_address: E-mail - setting_max_additional_emails: Número máximo de e-mails adicionais - label_email_address_plural: Emails - label_email_address_add: Adicionar endereço de email - label_enable_notifications: Habilitar notificações - label_disable_notifications: Desabilitar notificações - setting_search_results_per_page: Resultados de pesquisa por página - label_blank_value: Branco - permission_copy_issues: Copiar tarefas - error_password_expired: Sua senha expirou ou requer atualização - field_time_entries_visibility: Visibilidade do log de tempo - setting_password_max_age: Requer troca de senha depois - label_parent_task_attributes: Atributos das tarefas pai - label_parent_task_attributes_derived: Calculado das subtarefas - label_parent_task_attributes_independent: Independente das subtarefas - label_time_entries_visibility_all: Todas as entradas de tempo - label_time_entries_visibility_own: Entradas de tempo criadas pelo usuário - label_member_management: Gerenciamento de membros - label_member_management_all_roles: Todas os papéis - label_member_management_selected_roles_only: Somente esses papéis - label_password_required: Confirme sua senha para continuar - label_total_spent_time: Tempo gasto geral - notice_import_finished: "%{count} itens foram importados" - notice_import_finished_with_errors: "%{count} fora de %{total} não puderam ser importados" - error_invalid_file_encoding: O arquivo não é válido %{encoding} é a codificação do arquivo - error_invalid_csv_file_or_settings: O arquivo não é um arquivo CSV ou não corresponde às - definições abaixo - error_can_not_read_import_file: Ocorreu um erro ao ler o arquivo para importação - permission_import_issues: Importar tarefas - label_import_issues: Importar tarefas - label_select_file_to_import: Selecione o arquivo para importação - label_fields_separator: Campo separador - label_fields_wrapper: Field empacotador - label_encoding: Codificação - label_comma_char: Vírgula - label_semi_colon_char: Ponto e vírgula - label_quote_char: Citar - label_double_quote_char: Citação dupla - label_fields_mapping: Mapeamento de campos - label_file_content_preview: Pré-visualizar conteúdo do arquivo - label_create_missing_values: Criar valores em falta - button_import: Importar - field_total_estimated_hours: Tempo estimado geral - label_api: API - label_total_plural: Totais - label_assigned_issues: Tarefas atribuídas - label_field_format_enumeration: Chave/Lista de valores - label_f_hour_short: '%{value} h' - field_default_version: Versão padrão - error_attachment_extension_not_allowed: Extensão anexada %{extension} não é permitida - setting_attachment_extensions_allowed: Permitir extensões - setting_attachment_extensions_denied: Negar extensões - label_any_open_issues: Quaisquer tarefas abertas - label_no_open_issues: Sem tarefas abertas - label_default_values_for_new_users: Valores padrões para novos usuários - setting_sys_api_key: Chave de API - setting_lost_password: Perdi minha senha - mail_subject_security_notification: Notificação de segurança - mail_body_security_notification_change: ! '%{field} foi alterado.' - mail_body_security_notification_change_to: ! '%{field} foi alterado para %{value}.' - mail_body_security_notification_add: ! '%{field} %{value} foi adicionado.' - mail_body_security_notification_remove: ! '%{field} %{value} foi excluído.' - mail_body_security_notification_notify_enabled: Endereço de e-mail %{value} agora recebe - notificações. - mail_body_security_notification_notify_disabled: Endereço de e-mail %{value} deixou de - receber notificações. - mail_body_settings_updated: ! 'As seguintes configurações foram alteradas:' - field_remote_ip: Endereço IP - label_wiki_page_new: Nova página wiki - label_relations: Relações - button_filter: Filtro - mail_body_password_updated: Sua senha foi alterada. - label_no_preview: Não há visualização disponível - error_no_tracker_allowed_for_new_issue_in_project: O projeto não tem nenhum tipo de tarefa - para o qual você pode criar um chamado - label_tracker_all: Todos os tipos de tarefa - label_new_project_issue_tab_enabled: Exibir "Nova tarefa" em aba - setting_new_item_menu_tab: Aba menu do projeto para criação de novos objetos - label_new_object_tab_enabled: Exibir o "+" suspenso - error_no_projects_with_tracker_allowed_for_new_issue: Não há projetos com tipos de tarefa para os quais você pode criar uma tarefa - field_textarea_font: Fonte usada para áreas de texto - label_font_default: Fonte padrão - label_font_monospace: Fonte monoespaçada - label_font_proportional: Fonte proporcional - setting_timespan_format: Formato de tempo - label_table_of_contents: Índice - setting_commit_logs_formatting: Aplicar formatação de texto às mensagens de commit - setting_mail_handler_enable_regex: Ativar a utilização de expressões regulares - error_move_of_child_not_possible: 'A subtarefa %{child} não pode ser movida para o novo projeto: %{errors}' - error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted: O tempo gasto não pode ser alterado numa tarefa que será apagada - setting_timelog_required_fields: Campos obrigatórios para registro de horas - label_attribute_of_object: '%{object_name} %{name}' - label_user_mail_option_only_assigned: Somente de tarefas que observo ou que estão atribuídas a mim - label_user_mail_option_only_owner: Somente de tarefas que observo ou que foram criadas por mim - warning_fields_cleared_on_bulk_edit: As alterações vão apagar valores de um ou mais campos nos objetos selecionados - field_updated_by: Atualizado por - field_last_updated_by: Última atualização por - field_full_width_layout: Layout utiliza toda a largura - label_last_notes: Últimas notas - field_digest: Verificador - field_default_assigned_to: Responsável padrão - setting_show_custom_fields_on_registration: Mostrar campos personalizados no registro - permission_view_news: Ver notícias - label_no_preview_alternative_html: Visualização não disponível. Faça o %{link} do arquivo. - label_no_preview_download: download - setting_close_duplicate_issues: Fechar tarefas duplicadas automaticamente - error_exceeds_maximum_hours_per_day: Não é possível registrar mais de %{max_hours} horas no mesmo dia (%{logged_hours} horas já foram registradas) - setting_time_entry_list_defaults: Registro de horas padrão - setting_timelog_accept_0_hours: Aceitar registros de horas com 0 horas - setting_timelog_max_hours_per_day: Máximo de horas que podem ser registradas por dia por usuário - label_x_revisions: "%{count} revisões" - error_can_not_delete_auth_source: Este modo de autenticação está sendo utilizado e não pode ser removido. - button_actions: Ações - mail_body_lost_password_validity: Por favor, esteja ciente de que você pode alterar a senha apenas uma vez utilizando este link. - text_login_required_html: Quando a autenticação não é obrigatória, projetos públicos e seus conteúdos estão disponíveis abertamente na rede. Você pode editar as permissões aplicáveis. - label_login_required_yes: 'Sim' - label_login_required_no: Não, permitir acesso anônimo a projetos públicos - text_project_is_public_non_member: Projetos públicos e seus conteúdos estão disponíveis para todos os usuários logados. - text_project_is_public_anonymous: Projetos públicos e seus conteúdos estão disponíveis abertamente na rede. - label_version_and_files: Versão (%{count}) e Arquivos - label_ldap: LDAP - label_ldaps_verify_none: LDAPS (sem verificação de certificado) - label_ldaps_verify_peer: LDAPS - label_ldaps_warning: É recomendado utilizar uma conexão LDAPS criptografada com verificação de certificado para evitar qualquer manipulação durante o processo de autenticação. - label_nothing_to_preview: Nada para visualizar - error_token_expired: Este link de recuperação de senha expirou. Por favor, tente novamente. - error_spent_on_future_date: Não é possível registrar o tempo em uma data futura - setting_timelog_accept_future_dates: Permitir registros de tempo em datas futuras - label_delete_link_to_subtask: Excluir relação - error_not_allowed_to_log_time_for_other_users: Você não possuí permissão para registrar o tempo - para outros usuários - permission_log_time_for_other_users: Tempo de registro gasto para outros usuários - label_tomorrow: amanhã - label_next_week: próxima semana - label_next_month: próximo mês - text_role_no_workflow: Não foi definido fluxo de trabalho para este papel - text_status_no_workflow: Nenhum tipo de tarefa utiliza esta situação nos fluxos de trabalho - setting_mail_handler_preferred_body_part: Parte preferida de e-mails multipartes (HTML) - setting_show_status_changes_in_mail_subject: Exibir mudança de situação no título do email de notificação - data tarefa - label_inherited_from_parent_project: Herdado do projeto pai - label_inherited_from_group: Herdado do grupo %{name} - label_trackers_description: Descrição dos tipos de tarefa - label_open_trackers_description: Ver todas as descrições dos tipos de tarefas - label_preferred_body_part_text: Texto - label_preferred_body_part_html: HTML (experimental) - field_parent_issue_subject: Assunto da tarefa pai - permission_edit_own_issues: Editar as próprias tarefas - text_select_apply_tracker: Selecione o tipo de tarefa - label_updated_issues: Tarefas atualizadas - text_avatar_server_config_html: O servidor de avatar atual é % {url} . - Você pode configurá-lo em config / configuration.yml. - setting_gantt_months_limit: Número máximo de meses exibidos no gráfico de Gantt - permission_import_time_entries: Importar tempo gasto - label_import_notifications: Enviar notificações por e-mail durante a importação - text_gs_available: Suporte ao ImageMagick PDF disponível (opcional) - field_recently_used_projects: Número de projetos usados recentemente no acesso rápido - label_optgroup_bookmarks: Marcadores - label_optgroup_others: Outros projetos - label_optgroup_recents: Recentes - button_project_bookmark: Adicionar marcador - button_project_bookmark_delete: Remover marcador - field_history_default_tab: Aba padrão no histórico das tarefas - label_issue_history_properties: Campos alterados - label_issue_history_notes: Notas - label_last_tab_visited: Última aba visitada - field_unique_id: ID único - text_no_subject: sem assunto - setting_password_required_char_classes: Classes de caracteres obrigatórias para as senhas - label_password_char_class_uppercase: Letras maiúsculas - label_password_char_class_lowercase: Letras minúsculas - label_password_char_class_digits: digitos - label_password_char_class_special_chars: caracteres especiais - text_characters_must_contain: Precisa conter %{character_classes}. - label_starts_with: começando com - label_ends_with: terminando com - label_issue_fixed_version_updated: Versão atualizada - setting_project_list_defaults: Padrão da lista de projetos - label_display_type: Exibir resultados como - label_display_type_list: Lista - label_display_type_board: Quadro - label_my_bookmarks: Meus marcaroes - label_import_time_entries: Importar tempo gasto diff --git a/config/locales/pt.yml b/config/locales/pt.yml deleted file mode 100644 index d3c2bcb..0000000 --- a/config/locales/pt.yml +++ /dev/null @@ -1,1308 +0,0 @@ -# Portuguese localization for Ruby on Rails -# by Ricardo Otero -# by Alberto Ferreira -# by: Pedro Araújo -# by Rui Rebelo -pt: - support: - array: - sentence_connector: "e" - skip_last_comma: true - - direction: ltr - date: - formats: - default: "%d/%m/%Y" - short: "%d de %B" - long: "%d de %B de %Y" - only_day: "%d" - day_names: [Domingo, Segunda, Terça, Quarta, Quinta, Sexta, Sábado] - abbr_day_names: [Dom, Seg, Ter, Qua, Qui, Sex, Sáb] - month_names: [~, Janeiro, Fevereiro, Março, Abril, Maio, Junho, Julho, Agosto, Setembro, Outubro, Novembro, Dezembro] - abbr_month_names: [~, Jan, Fev, Mar, Abr, Mai, Jun, Jul, Ago, Set, Out, Nov, Dez] - order: - - :day - - :month - - :year - - time: - formats: - default: "%A, %d de %B de %Y, %H:%M:%S %z" - time: "%H:%M" - short: "%d/%m, %H:%M hs" - long: "%A, %d de %B de %Y, %H:%Mh" - am: 'am' - pm: 'pm' - - datetime: - distance_in_words: - half_a_minute: "meio minuto" - less_than_x_seconds: - one: "menos de 1 segundo" - other: "menos de %{count} segundos" - x_seconds: - one: "1 segundo" - other: "%{count} segundos" - less_than_x_minutes: - one: "menos de 1 minuto" - other: "menos de %{count} minutos" - x_minutes: - one: "1 minuto" - other: "%{count} minutos" - about_x_hours: - one: "aproximadamente 1 hora" - other: "aproximadamente %{count} horas" - x_hours: - one: "1 hora" - other: "%{count} horas" - x_days: - one: "1 dia" - other: "%{count} dias" - about_x_months: - one: "aproximadamente 1 mês" - other: "aproximadamente %{count} meses" - x_months: - one: "1 mês" - other: "%{count} meses" - about_x_years: - one: "aproximadamente 1 ano" - other: "aproximadamente %{count} anos" - over_x_years: - one: "mais de 1 ano" - other: "mais de %{count} anos" - almost_x_years: - one: "quase 1 ano" - other: "quase %{count} anos" - - number: - format: - precision: 3 - separator: ',' - delimiter: '.' - currency: - format: - unit: '€' - precision: 2 - format: "%u %n" - separator: ',' - delimiter: '.' - percentage: - format: - delimiter: '' - precision: - format: - delimiter: '' - human: - format: - precision: 3 - delimiter: '' - storage_units: - format: "%n %u" - units: - byte: - one: "Byte" - other: "Bytes" - kb: "KB" - mb: "MB" - gb: "GB" - tb: "TB" - - activerecord: - errors: - template: - header: - one: "Não foi possível guardar este %{model}: 1 erro" - other: "Não foi possível guardar este %{model}: %{count} erros" - body: "Por favor, verifique os seguintes campos:" - messages: - inclusion: "não está incluído na lista" - exclusion: "não está disponível" - invalid: "não é válido" - confirmation: "não está de acordo com a confirmação" - accepted: "deve ser aceite" - empty: "não pode estar vazio" - blank: "não pode estar em branco" - too_long: "tem demasiados caráteres (máximo: %{count} caráteres)" - too_short: "tem poucos caráteres (mínimo: %{count} caráteres)" - wrong_length: "não é do tamanho correto (necessita de ter %{count} caráteres)" - taken: "não está disponível" - not_a_number: "não é um número" - greater_than: "tem de ser maior do que %{count}" - greater_than_or_equal_to: "tem de ser maior ou igual a %{count}" - equal_to: "tem de ser igual a %{count}" - less_than: "tem de ser menor do que %{count}" - less_than_or_equal_to: "tem de ser menor ou igual a %{count}" - odd: "deve ser ímpar" - even: "deve ser par" - greater_than_start_date: "deve ser maior que a data inicial" - not_same_project: "não pertence ao mesmo projeto" - circular_dependency: "Esta relação iria criar uma dependência circular" - cant_link_an_issue_with_a_descendant: "Não é possível ligar uma tarefa a uma sub-tarefa que lhe é pertencente" - earlier_than_minimum_start_date: "não pode ser antes de %{date} devido a tarefas precedentes" - not_a_regexp: "não é uma expressão regular válida" - open_issue_with_closed_parent: "Uma tarefa aberta não pode ser relacionada com uma tarefa pai fechada" - must_contain_uppercase: "must contain uppercase letters (A-Z)" - must_contain_lowercase: "must contain lowercase letters (a-z)" - must_contain_digits: "must contain digits (0-9)" - must_contain_special_chars: "must contain special characters (!, $, %, ...)" - - actionview_instancetag_blank_option: Selecione - - general_text_No: 'Não' - general_text_Yes: 'Sim' - general_text_no: 'não' - general_text_yes: 'sim' - general_lang_name: 'Portuguese (Português)' - general_csv_separator: ';' - general_csv_decimal_separator: ',' - general_csv_encoding: ISO-8859-15 - general_pdf_fontname: freesans - general_pdf_monospaced_fontname: freemono - general_first_day_of_week: '1' - - notice_account_updated: A conta foi atualizada com sucesso. - notice_account_invalid_credentials: Utilizador ou palavra-chave inválidos. - notice_account_password_updated: A palavra-chave foi alterada com sucesso. - notice_account_wrong_password: Palavra-chave errada. - notice_account_unknown_email: Utilizador desconhecido. - notice_can_t_change_password: Esta conta utiliza uma fonte de autenticação externa. Não é possível alterar a palavra-chave. - notice_account_lost_email_sent: Foi-lhe enviado um e-mail com as instruções para escolher uma nova palavra-chave. - notice_account_activated: A sua conta foi ativada. É agora possível autenticar-se. - notice_successful_create: Criado com sucesso. - notice_successful_update: Alterado com sucesso. - notice_successful_delete: Apagado com sucesso. - notice_successful_connection: Ligado com sucesso. - notice_file_not_found: A página que está a tentar aceder não existe ou foi removida. - notice_locking_conflict: Os dados foram atualizados por outro utilizador. - notice_not_authorized: Não está autorizado a visualizar esta página. - notice_email_sent: "Foi enviado um e-mail para %{value}" - notice_email_error: "Ocorreu um erro ao enviar o e-mail (%{value})" - notice_feeds_access_key_reseted: A sua chave de Atom foi inicializada. - notice_failed_to_save_issues: "Não foi possível guardar %{count} tarefa(s) das %{total} selecionadas: %{ids}." - notice_no_issue_selected: "Nenhuma tarefa selecionada! Por favor, selecione as tarefas que deseja editar." - notice_account_pending: "A sua conta foi criada e está agora à espera de aprovação do administrador." - notice_default_data_loaded: Configuração padrão carregada com sucesso. - notice_unable_delete_version: Não foi possível apagar a versão. - - error_can_t_load_default_data: "Não foi possível carregar a configuração padrão: %{value}" - error_scm_not_found: "A entrada ou revisão não foi encontrada no repositório." - error_scm_command_failed: "Ocorreu um erro ao tentar aceder ao repositório: %{value}" - error_scm_annotate: "A entrada não existe ou não pode ser anotada." - error_issue_not_found_in_project: 'A tarefa não foi encontrada ou não pertence a este projeto.' - error_ldap_bind_credentials: "Conta/Palavra-chave do LDAP não é válida" - - mail_subject_lost_password: "Palavra-chave de %{value}" - mail_body_lost_password: 'Para mudar a sua palavra-chave, clique na ligação abaixo:' - mail_subject_register: "Ativação de conta de %{value}" - mail_body_register: 'Para ativar a sua conta, clique na ligação abaixo:' - mail_body_account_information_external: "Pode utilizar a conta %{value} para autenticar-se." - mail_body_account_information: Informação da sua conta - mail_subject_account_activation_request: "Pedido de ativação da conta %{value}" - mail_body_account_activation_request: "Um novo utilizador (%{value}) registou-se. A sua conta está à espera de aprovação:" - mail_subject_reminder: "Tem %{count} tarefa(s) para entregar nos próximos %{days} dias" - mail_body_reminder: "%{count} tarefa(s) que estão atribuídas a si estão agendadas para serem terminadas nos próximos %{days} dias:" - - field_name: Nome - field_description: Descrição - field_summary: Sumário - field_is_required: Obrigatório - field_firstname: Nome - field_lastname: Apelido - field_mail: E-mail - field_filename: Ficheiro - field_filesize: Tamanho - field_downloads: Downloads - field_author: Autor - field_created_on: Criado - field_updated_on: Alterado - field_field_format: Formato - field_is_for_all: Para todos os projetos - field_possible_values: Valores possíveis - field_regexp: Expressão regular - field_min_length: Tamanho mínimo - field_max_length: Tamanho máximo - field_value: Valor - field_category: Categoria - field_title: Título - field_project: Projeto - field_issue: Tarefa - field_status: Estado - field_notes: Notas - field_is_closed: Tarefa fechada - field_is_default: Valor por omissão - field_tracker: Tipo - field_subject: Assunto - field_due_date: Data de fim - field_assigned_to: Atribuído a - field_priority: Prioridade - field_fixed_version: Versão - field_user: Utilizador - field_role: Função - field_homepage: Página - field_is_public: Público - field_parent: Sub-projeto de - field_is_in_roadmap: Tarefas mostradas no mapa de planificação - field_login: Nome de utilizador - field_mail_notification: Notificações por e-mail - field_admin: Administrador - field_last_login_on: Última visita - field_language: Língua - field_effective_date: Data - field_password: Palavra-chave - field_new_password: Nova palavra-chave - field_password_confirmation: Confirmação - field_version: Versão - field_type: Tipo - field_host: Servidor - field_port: Porta - field_account: Conta - field_base_dn: Base DN - field_attr_login: Atributo utilizador - field_attr_firstname: Atributo do nome próprio - field_attr_lastname: Atributo do último nome - field_attr_mail: Atributo e-mail - field_onthefly: Criação imediata de utilizadores - field_start_date: Data de início - field_done_ratio: "% Completo" - field_auth_source: Modo de autenticação - field_hide_mail: Esconder endereço de e-mail - field_comments: Comentário - field_url: URL - field_start_page: Página inicial - field_subproject: Subprojeto - field_hours: Horas - field_activity: Atividade - field_spent_on: Data - field_identifier: Identificador - field_is_filter: Utilizado como filtro - field_issue_to: Tarefa relacionada - field_delay: Atraso - field_assignable: As tarefas podem ser associadas a esta função - field_redirect_existing_links: Redirecionar ligações existentes - field_estimated_hours: Tempo estimado - field_column_names: Colunas - field_time_zone: Fuso horário - field_searchable: Pesquisável - field_default_value: Valor por omissão - field_comments_sorting: Mostrar comentários - field_parent_title: Página pai - - setting_app_title: Título da aplicação - setting_welcome_text: Texto de boas vindas - setting_default_language: Língua por omissão - setting_login_required: Autenticação obrigatória - setting_self_registration: Auto-registo - setting_attachment_max_size: Tamanho máximo do anexo - setting_issues_export_limit: Limite de exportação das tarefas - setting_mail_from: E-mail enviado de - setting_bcc_recipients: Destinatários em BCC - setting_host_name: Hostname - setting_text_formatting: Formatação do texto - setting_wiki_compression: Compressão do histórico da Wiki - setting_feeds_limit: Limite de conteúdo do feed - setting_default_projects_public: Projetos novos são públicos por omissão - setting_autofetch_changesets: Procurar automaticamente por commits - setting_sys_api_enabled: Ativar Web Service para gestão do repositório - setting_commit_ref_keywords: Palavras-chave de referência - setting_commit_fix_keywords: Palavras-chave de fecho - setting_autologin: Login automático - setting_date_format: Formato da data - setting_time_format: Formato do tempo - setting_cross_project_issue_relations: Permitir relações entre tarefas de projetos diferentes - setting_issue_list_default_columns: Colunas na lista de tarefas por omissão - setting_emails_footer: Rodapé dos e-mails - setting_protocol: Protocolo - setting_per_page_options: Opções de objetos por página - setting_user_format: Formato de apresentação de utilizadores - setting_activity_days_default: Dias mostrados na atividade do projeto - setting_display_subprojects_issues: Mostrar as tarefas dos sub-projetos nos projetos principais - setting_enabled_scm: Ativar SCM - setting_mail_handler_api_enabled: Ativar Web Service para e-mails recebidos - setting_mail_handler_api_key: Chave da API - setting_sequential_project_identifiers: Gerar identificadores de projeto sequênciais - - project_module_issue_tracking: Tarefas - project_module_time_tracking: Registo de tempo - project_module_news: Notícias - project_module_documents: Documentos - project_module_files: Ficheiros - project_module_wiki: Wiki - project_module_repository: Repositório - project_module_boards: Fórum - - label_user: Utilizador - label_user_plural: Utilizadores - label_user_new: Novo utilizador - label_project: Projeto - label_project_new: Novo projeto - label_project_plural: Projetos - label_x_projects: - zero: sem projetos - one: 1 projeto - other: "%{count} projetos" - label_project_all: Todos os projetos - label_project_latest: Últimos projetos - label_issue: Tarefa - label_issue_new: Nova tarefa - label_issue_plural: Tarefas - label_issue_view_all: Ver todas as tarefas - label_issues_by: "Tarefas por %{value}" - label_issue_added: Tarefa adicionada - label_issue_updated: Tarefa atualizada - label_document: Documento - label_document_new: Novo documento - label_document_plural: Documentos - label_document_added: Documento adicionado - label_role: Função - label_role_plural: Funções - label_role_new: Nova função - label_role_and_permissions: Funções e permissões - label_member: Membro - label_member_new: Novo membro - label_member_plural: Membros - label_tracker: Tipo - label_tracker_plural: Tipos - label_tracker_new: Novo tipo - label_workflow: Fluxo de trabalho - label_issue_status: Estado da tarefa - label_issue_status_plural: Estados da tarefa - label_issue_status_new: Novo estado - label_issue_category: Categoria de tarefa - label_issue_category_plural: Categorias de tarefa - label_issue_category_new: Nova categoria - label_custom_field: Campo personalizado - label_custom_field_plural: Campos personalizados - label_custom_field_new: Novo campo personalizado - label_enumerations: Enumerações - label_enumeration_new: Novo valor - label_information: Informação - label_information_plural: Informações - label_register: Registar - label_password_lost: Perdi a palavra-chave - label_home: Página Inicial - label_my_page: Página Pessoal - label_my_account: Minha conta - label_my_projects: Meus projetos - label_administration: Administração - label_login: Entrar - label_logout: Sair - label_help: Ajuda - label_reported_issues: Tarefas criadas - label_assigned_to_me_issues: Tarefas atribuídas a mim - label_last_login: Último acesso - label_registered_on: Registado em - label_activity: Atividade - label_overall_activity: Atividade geral - label_new: Novo - label_logged_as: Ligado como - label_environment: Ambiente - label_authentication: Autenticação - label_auth_source: Modo de autenticação - label_auth_source_new: Novo modo de autenticação - label_auth_source_plural: Modos de autenticação - label_subproject_plural: Sub-projetos - label_and_its_subprojects: "%{value} e sub-projetos" - label_min_max_length: Tamanho mínimo-máximo - label_list: Lista - label_date: Data - label_integer: Inteiro - label_float: Decimal - label_boolean: Booleano - label_string: Texto - label_text: Texto longo - label_attribute: Atributo - label_attribute_plural: Atributos - label_no_data: Sem dados para mostrar - label_change_status: Mudar estado - label_history: Histórico - label_attachment: Ficheiro - label_attachment_new: Novo ficheiro - label_attachment_delete: Apagar ficheiro - label_attachment_plural: Ficheiros - label_file_added: Ficheiro adicionado - label_report: Relatório - label_report_plural: Relatórios - label_news: Notícia - label_news_new: Nova notícia - label_news_plural: Notícias - label_news_latest: Últimas notícias - label_news_view_all: Ver todas as notícias - label_news_added: Notícia adicionada - label_settings: Configurações - label_overview: Visão geral - label_version: Versão - label_version_new: Nova versão - label_version_plural: Versões - label_confirmation: Confirmação - label_export_to: 'Também disponível em:' - label_read: Ler... - label_public_projects: Projetos públicos - label_open_issues: aberto - label_open_issues_plural: abertos - label_closed_issues: fechado - label_closed_issues_plural: fechados - label_x_open_issues_abbr: - zero: 0 abertas - one: 1 aberta - other: "%{count} abertas" - label_x_closed_issues_abbr: - zero: 0 fechadas - one: 1 fechada - other: "%{count} fechadas" - label_total: Total - label_permissions: Permissões - label_current_status: Estado atual - label_new_statuses_allowed: Novos estados permitidos - label_all: todos - label_none: nenhum - label_nobody: ninguém - label_next: Próximo - label_previous: Anterior - label_used_by: Utilizado por - label_details: Detalhes - label_add_note: Adicionar nota - label_calendar: Calendário - label_months_from: meses desde - label_gantt: Gantt - label_internal: Interno - label_last_changes: "últimas %{count} alterações" - label_change_view_all: Ver todas as alterações - label_comment: Comentário - label_comment_plural: Comentários - label_x_comments: - zero: sem comentários - one: 1 comentário - other: "%{count} comentários" - label_comment_add: Adicionar comentário - label_comment_added: Comentário adicionado - label_comment_delete: Apagar comentários - label_query: Consulta personalizada - label_query_plural: Consultas personalizadas - label_query_new: Nova consulta - label_filter_add: Adicionar filtro - label_filter_plural: Filtros - label_equals: é - label_not_equals: não é - label_in_less_than: em menos de - label_in_more_than: em mais de - label_in: em - label_today: hoje - label_yesterday: ontem - label_this_week: esta semana - label_last_week: semana passada - label_last_n_days: "últimos %{count} dias" - label_this_month: este mês - label_last_month: mês passado - label_this_year: este ano - label_date_range: Intervalo de datas - label_less_than_ago: menos de dias atrás - label_more_than_ago: mais de dias atrás - label_ago: dias atrás - label_contains: contém - label_not_contains: não contém - label_day_plural: dias - label_repository: Repositório - label_repository_plural: Repositórios - label_browse: Navegar - label_revision: Revisão - label_revision_plural: Revisões - label_associated_revisions: Revisões associadas - label_added: adicionado - label_modified: modificado - label_copied: copiado - label_renamed: renomeado - label_deleted: apagado - label_latest_revision: Última revisão - label_latest_revision_plural: Últimas revisões - label_view_revisions: Ver revisões - label_max_size: Tamanho máximo - label_sort_highest: Mover para o início - label_sort_higher: Mover para cima - label_sort_lower: Mover para baixo - label_sort_lowest: Mover para o fim - label_roadmap: Planificação - label_roadmap_due_in: "Termina em %{value}" - label_roadmap_overdue: "Atrasado %{value}" - label_roadmap_no_issues: Sem tarefas para esta versão - label_search: Procurar - label_result_plural: Resultados - label_all_words: Todas as palavras - label_wiki: Wiki - label_wiki_edit: Edição da Wiki - label_wiki_edit_plural: Edições da Wiki - label_wiki_page: Página da Wiki - label_wiki_page_plural: Páginas da Wiki - label_index_by_title: Índice por título - label_index_by_date: Índice por data - label_current_version: Versão atual - label_preview: Pré-visualizar - label_feed_plural: Feeds - label_changes_details: Detalhes de todas as mudanças - label_issue_tracking: Tarefas - label_spent_time: Tempo gasto - label_f_hour: "%{value} hora" - label_f_hour_plural: "%{value} horas" - label_time_tracking: Registo de tempo - label_change_plural: Mudanças - label_statistics: Estatísticas - label_commits_per_month: Commits por mês - label_commits_per_author: Commits por autor - label_view_diff: Ver diferenças - label_diff_inline: inline - label_diff_side_by_side: lado a lado - label_options: Opções - label_copy_workflow_from: Copiar fluxo de trabalho de - label_permissions_report: Relatório de permissões - label_watched_issues: Tarefas observadas - label_related_issues: Tarefas relacionadas - label_applied_status: Estado aplicado - label_loading: A carregar... - label_relation_new: Nova relação - label_relation_delete: Apagar relação - label_relates_to: Relacionado a - label_duplicates: Duplica - label_duplicated_by: Duplicado por - label_blocks: Bloqueia - label_blocked_by: Bloqueada por - label_precedes: Precede - label_follows: Segue - label_stay_logged_in: Guardar sessão - label_disabled: desativado - label_show_completed_versions: Mostrar versões acabadas - label_me: eu - label_board: Fórum - label_board_new: Novo fórum - label_board_plural: Fórums - label_topic_plural: Tópicos - label_message_plural: Mensagens - label_message_last: Última mensagem - label_message_new: Nova mensagem - label_message_posted: Mensagem adicionada - label_reply_plural: Respostas - label_send_information: Enviar dados da conta para o utilizador - label_year: Ano - label_month: Mês - label_week: Semana - label_date_from: De - label_date_to: A - label_language_based: Baseado na língua do utilizador - label_sort_by: "Ordenar por %{value}" - label_send_test_email: Enviar um e-mail de teste - label_feeds_access_key_created_on: "Chave Atom criada há %{value} atrás" - label_module_plural: Módulos - label_added_time_by: "Adicionado por %{author} há %{age} atrás" - label_updated_time: "Alterado há %{value} atrás" - label_jump_to_a_project: Ir para o projeto... - label_file_plural: Ficheiros - label_changeset_plural: Commits - label_default_columns: Colunas por omissão - label_no_change_option: (sem alteração) - label_bulk_edit_selected_issues: Editar tarefas selecionadas em conjunto - label_theme: Tema - label_default: Padrão - label_search_titles_only: Procurar apenas em títulos - label_user_mail_option_all: "Qualquer evento em todos os meus projetos" - label_user_mail_option_selected: "Qualquer evento mas apenas nos projetos selecionados" - label_user_mail_no_self_notified: "Não quero ser notificado de alterações feitas por mim" - label_registration_activation_by_email: Ativação da conta por e-mail - label_registration_manual_activation: Ativação manual da conta - label_registration_automatic_activation: Ativação automática da conta - label_display_per_page: "Por página: %{value}" - label_age: Idade - label_change_properties: Mudar propriedades - label_general: Geral - label_scm: SCM - label_plugins: Extensões - label_ldap_authentication: Autenticação LDAP - label_downloads_abbr: D/L - label_optional_description: Descrição opcional - label_add_another_file: Adicionar outro ficheiro - label_preferences: Preferências - label_chronological_order: Em ordem cronológica - label_reverse_chronological_order: Em ordem cronológica inversa - label_incoming_emails: E-mails recebidos - label_generate_key: Gerar uma chave - label_issue_watchers: Observadores - - button_login: Entrar - button_submit: Submeter - button_save: Guardar - button_check_all: Marcar tudo - button_uncheck_all: Desmarcar tudo - button_delete: Apagar - button_create: Criar - button_test: Testar - button_edit: Editar - button_add: Adicionar - button_change: Alterar - button_apply: Aplicar - button_clear: Limpar - button_lock: Bloquear - button_unlock: Desbloquear - button_download: Download - button_list: Listar - button_view: Ver - button_move: Mover - button_back: Voltar - button_cancel: Cancelar - button_activate: Ativar - button_sort: Ordenar - button_log_time: Tempo de trabalho - button_rollback: Voltar para esta versão - button_watch: Observar - button_unwatch: Deixar de observar - button_reply: Responder - button_archive: Arquivar - button_unarchive: Desarquivar - button_reset: Reinicializar - button_rename: Renomear - button_change_password: Mudar palavra-chave - button_copy: Copiar - button_annotate: Anotar - button_update: Atualizar - button_configure: Configurar - button_quote: Citar - - status_active: ativo - status_registered: registado - status_locked: bloqueado - - text_select_mail_notifications: Selecionar as ações que originam uma notificação por e-mail. - text_regexp_info: ex. ^[A-Z0-9]+$ - text_min_max_length_info: 0 siginifica sem restrição - text_project_destroy_confirmation: Tem a certeza que deseja apagar o projeto e todos os dados relacionados? - text_subprojects_destroy_warning: "O(s) seu(s) sub-projeto(s): %{value} também será/serão apagado(s)." - text_workflow_edit: Selecione uma função e um tipo de tarefa para editar o fluxo de trabalho - text_are_you_sure: Tem a certeza? - text_tip_issue_begin_day: tarefa inicia neste dia - text_tip_issue_end_day: tarefa termina neste dia - text_tip_issue_begin_end_day: tarefa a iniciar e terminar neste dia - text_caracters_maximum: "máximo %{count} caráteres." - text_caracters_minimum: "Deve ter pelo menos %{count} caráteres." - text_length_between: "Deve ter entre %{min} e %{max} caráteres." - text_tracker_no_workflow: Sem fluxo de trabalho definido para este tipo de tarefa. - text_unallowed_characters: Caráteres não permitidos - text_comma_separated: Permitidos múltiplos valores (separados por vírgula). - text_issues_ref_in_commit_messages: Referenciar e fechar tarefas em mensagens de commit - text_issue_added: "A tarefa %{id} foi criada por %{author}." - text_issue_updated: "A tarefa %{id} foi atualizada por %{author}." - text_wiki_destroy_confirmation: Tem a certeza que deseja apagar esta wiki e todo o seu conteúdo? - text_issue_category_destroy_question: "Algumas tarefas (%{count}) estão atribuídas a esta categoria. O que deseja fazer?" - text_issue_category_destroy_assignments: Remover as atribuições à categoria - text_issue_category_reassign_to: Re-atribuir as tarefas para esta categoria - text_user_mail_option: "Para projetos não selecionados, apenas receberá notificações acerca de tarefas que está a observar ou que está envolvido (ex. tarefas das quais foi o criador ou lhes foram atribuídas)." - text_no_configuration_data: "Perfis, tipos de tarefas, estados das tarefas e workflows ainda não foram configurados.\nÉ extremamente recomendado carregar as configurações padrão. Será capaz de as modificar depois de estarem carregadas." - text_load_default_configuration: Carregar as configurações padrão - text_status_changed_by_changeset: "Aplicado no changeset %{value}." - text_issues_destroy_confirmation: 'Tem a certeza que deseja apagar a(s) tarefa(s) selecionada(s)?' - text_select_project_modules: 'Selecione os módulos a ativar para este projeto:' - text_default_administrator_account_changed: Conta por omissão de administrador alterada. - text_file_repository_writable: Repositório de ficheiros com permissões de escrita - text_minimagick_available: MiniMagick disponível (opcional) - text_destroy_time_entries_question: "%{hours} horas de trabalho foram atribuídas a estas tarefas que vai apagar. O que deseja fazer?" - text_destroy_time_entries: Apagar as horas - text_assign_time_entries_to_project: Atribuir as horas ao projeto - text_reassign_time_entries: 'Re-atribuir as horas para esta tarefa:' - text_user_wrote: "%{value} escreveu:" - text_user_wrote_in: "%{value} escreveu (%{link}):" - text_enumeration_destroy_question: "%{count} objetos estão atribuídos a este valor." - text_enumeration_category_reassign_to: 'Re-atribuí-los para este valor:' - text_email_delivery_not_configured: "O envio de e-mail não está configurado, e as notificação estão desativadas.\nConfigure o seu servidor de SMTP em config/configuration.yml e reinicie a aplicação para ativar estas funcionalidades." - - default_role_manager: Gestor - default_role_developer: Programador - default_role_reporter: Repórter - default_tracker_bug: Bug - default_tracker_feature: Funcionalidade - default_tracker_support: Suporte - default_issue_status_new: Novo - default_issue_status_in_progress: Em curso - default_issue_status_resolved: Resolvido - default_issue_status_feedback: Feedback - default_issue_status_closed: Fechado - default_issue_status_rejected: Rejeitado - default_doc_category_user: Documentação de utilizador - default_doc_category_tech: Documentação técnica - default_priority_low: Baixa - default_priority_normal: Normal - default_priority_high: Alta - default_priority_urgent: Urgente - default_priority_immediate: Imediata - default_activity_design: Planeamento - default_activity_development: Desenvolvimento - - enumeration_issue_priorities: Prioridade de tarefas - enumeration_doc_categories: Categorias de documentos - enumeration_activities: Atividades (Registo de tempo) - setting_plain_text_mail: Apenas texto simples (sem HTML) - permission_view_files: Ver ficheiros - permission_edit_issues: Editar tarefas - permission_edit_own_time_entries: Editar horas pessoais - permission_manage_public_queries: Gerir consultas públicas - permission_add_issues: Adicionar tarefas - permission_log_time: Registar tempo gasto - permission_view_changesets: Ver commits - permission_view_time_entries: Ver tempo gasto - permission_manage_versions: Gerir versões - permission_manage_wiki: Gerir wiki - permission_manage_categories: Gerir categorias de tarefas - permission_protect_wiki_pages: Proteger páginas de wiki - permission_comment_news: Comentar notícias - permission_delete_messages: Apagar mensagens - permission_select_project_modules: Selecionar módulos do projeto - permission_edit_wiki_pages: Editar páginas da wiki - permission_add_issue_watchers: Adicionar observadores - permission_view_gantt: Ver diagrama de Gantt - permission_manage_issue_relations: Gerir relações de tarefas - permission_delete_wiki_pages: Apagar páginas de wiki - permission_manage_boards: Gerir fórums - permission_delete_wiki_pages_attachments: Apagar anexos - permission_view_wiki_edits: Ver histórico da wiki - permission_add_messages: Submeter mensagens - permission_view_messages: Ver mensagens - permission_manage_files: Gerir ficheiros - permission_edit_issue_notes: Editar notas de tarefas - permission_manage_news: Gerir notícias - permission_view_calendar: Ver calendário - permission_manage_members: Gerir membros - permission_edit_messages: Editar mensagens - permission_delete_issues: Apagar tarefas - permission_view_issue_watchers: Ver lista de observadores - permission_manage_repository: Gerir repositório - permission_commit_access: Acesso a commit - permission_browse_repository: Navegar em repositório - permission_view_documents: Ver documentos - permission_edit_project: Editar projeto - permission_add_issue_notes: Adicionar notas a tarefas - permission_save_queries: Guardar consultas - permission_view_wiki_pages: Ver wiki - permission_rename_wiki_pages: Renomear páginas de wiki - permission_edit_time_entries: Editar entradas de tempo - permission_edit_own_issue_notes: Editar as próprias notas - setting_gravatar_enabled: Utilizar ícones Gravatar - label_example: Exemplo - text_repository_usernames_mapping: "Selecionar ou atualizar o utilizador de Redmine mapeado a cada nome de utilizador encontrado no repositório.\nUtilizadores com o mesmo nome de utilizador ou e-mail no Redmine e no repositório são mapeados automaticamente." - permission_edit_own_messages: Editar as próprias mensagens - permission_delete_own_messages: Apagar as próprias mensagens - label_user_activity: "Atividade de %{value}" - label_updated_time_by: "Atualizado por %{author} há %{age}" - text_diff_truncated: '... Este diff foi truncado porque excede o tamanho máximo que pode ser mostrado.' - setting_diff_max_lines_displayed: Número máximo de linhas de diff mostradas - text_plugin_assets_writable: Escrita na pasta de ativos dos módulos de extensão possível - warning_attachments_not_saved: "Não foi possível gravar %{count} ficheiro(s) ." - button_create_and_continue: Criar e continuar - text_custom_field_possible_values_info: 'Uma linha para cada valor' - label_display: Mostrar - field_editable: Editável - setting_repository_log_display_limit: Número máximo de revisões exibido no relatório de ficheiro - setting_file_max_size_displayed: Tamanho máximo dos ficheiros de texto exibidos inline - field_watcher: Observador - setting_openid: Permitir início de sessão e registo com OpenID - field_identity_url: URL do OpenID - label_login_with_open_id_option: ou início de sessão com OpenID - field_content: Conteúdo - label_descending: Descendente - label_sort: Ordenar - label_ascending: Ascendente - label_date_from_to: De %{start} a %{end} - label_greater_or_equal: ">=" - label_less_or_equal: <= - text_wiki_page_destroy_question: Esta página tem %{descendants} página(s) subordinada(s) e descendente(s). O que deseja fazer? - text_wiki_page_reassign_children: Reatribuir páginas subordinadas a esta página principal - text_wiki_page_nullify_children: Manter páginas subordinadas como páginas raíz - text_wiki_page_destroy_children: Apagar as páginas subordinadas e todos os seus descendentes - setting_password_min_length: Tamanho mínimo de palavra-chave - field_group_by: Agrupar resultados por - mail_subject_wiki_content_updated: "A página Wiki '%{id}' foi atualizada" - label_wiki_content_added: Página Wiki adicionada - mail_subject_wiki_content_added: "A página Wiki '%{id}' foi adicionada" - mail_body_wiki_content_added: A página Wiki '%{id}' foi adicionada por %{author}. - label_wiki_content_updated: Página Wiki atualizada - mail_body_wiki_content_updated: A página Wiki '%{id}' foi atualizada por %{author}. - permission_add_project: Criar projeto - setting_new_project_user_role_id: Função atribuída a um utilizador não-administrador que cria um projeto - label_view_all_revisions: Ver todas as revisões - label_tag: Etiqueta - label_branch: Ramo - error_no_tracker_in_project: Este projeto não tem associado nenhum tipo de tarefas. Verifique as definições do projeto. - error_no_default_issue_status: Não está definido um estado padrão para as tarefas. Verifique a sua configuração (dirija-se a "Administração -> Estados da tarefa"). - label_group_plural: Grupos - label_group: Grupo - label_group_new: Novo grupo - label_time_entry_plural: Tempo registado - text_journal_changed: "%{label} alterado de %{old} para %{new}" - text_journal_set_to: "%{label} configurado como %{value}" - text_journal_deleted: "%{label} apagou (%{old})" - text_journal_added: "%{label} %{value} adicionado" - field_active: Ativo - enumeration_system_activity: Atividade do sistema - permission_delete_issue_watchers: Apagar observadores - version_status_closed: fechado - version_status_locked: protegido - version_status_open: aberto - error_can_not_reopen_issue_on_closed_version: Não é possível voltar a abrir uma tarefa atribuída a uma versão fechada - label_user_anonymous: Anónimo - button_move_and_follow: Mover e seguir - setting_default_projects_modules: Módulos ativos por predefinição para novos projetos - setting_gravatar_default: Imagem Gravatar predefinida - field_sharing: Partilha - label_version_sharing_hierarchy: Com hierarquia do projeto - label_version_sharing_system: Com todos os projetos - label_version_sharing_descendants: Com os sub-projetos - label_version_sharing_tree: Com árvore do projeto - label_version_sharing_none: Não partilhado - error_can_not_archive_project: Não é possível arquivar este projeto - button_copy_and_follow: Copiar e seguir - label_copy_source: Origem - setting_issue_done_ratio: Calcular a percentagem de progresso da tarefa - setting_issue_done_ratio_issue_status: Através do estado da tarefa - error_issue_done_ratios_not_updated: Percentagens de progresso da tarefa não foram atualizadas. - error_workflow_copy_target: Selecione os tipos de tarefas e funções desejadas - setting_issue_done_ratio_issue_field: Através do campo da tarefa - label_copy_same_as_target: Mesmo que o alvo - label_copy_target: Alvo - notice_issue_done_ratios_updated: Percentagens de progresso da tarefa atualizadas. - error_workflow_copy_source: Selecione um tipo de tarefa ou função de origem - label_update_issue_done_ratios: Atualizar percentagens de progresso da tarefa - setting_start_of_week: Iniciar calendários a - permission_view_issues: Ver tarefas - label_display_used_statuses_only: Exibir apenas estados utilizados por este tipo de tarefa - label_revision_id: Revisão %{value} - label_api_access_key: Chave de acesso API - label_api_access_key_created_on: Chave de acesso API criada há %{value} - label_feeds_access_key: Chave de acesso Atom - notice_api_access_key_reseted: A sua chave de acesso API foi reinicializada. - setting_rest_api_enabled: Ativar serviço Web REST - label_missing_api_access_key: Chave de acesso API em falta - label_missing_feeds_access_key: Chave de acesso Atom em falta - button_show: Mostrar - text_line_separated: Vários valores permitidos (uma linha para cada valor). - setting_mail_handler_body_delimiters: Truncar mensagens de e-mail após uma destas linhas - permission_add_subprojects: Criar sub-projetos - label_subproject_new: Novo sub-projeto - 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. - Tem a certeza de que deseja continuar? - label_close_versions: Fechar versões completas - label_board_sticky: Fixar mensagem - label_board_locked: Proteger - permission_export_wiki_pages: Exportar páginas Wiki - setting_cache_formatted_text: Colocar formatação do texto na memória cache - permission_manage_project_activities: Gerir atividades do projeto - error_unable_delete_issue_status: Não foi possível apagar o estado da tarefa (%{value}) - label_profile: Perfil - permission_manage_subtasks: Gerir sub-tarefas - field_parent_issue: Tarefa principal - label_subtask_plural: Sub-tarefa - label_project_copy_notifications: Enviar notificações por e-mail durante a cópia do projeto - error_can_not_delete_custom_field: Não foi possível apagar o campo personalizado - error_unable_to_connect: Não foi possível ligar (%{value}) - error_can_not_remove_role: Esta função está atualmente em uso e não pode ser apagada. - error_can_not_delete_tracker: Existem ainda tarefas nesta categoria. Não é possível apagar este tipo de tarefa. - field_principal: Principal - notice_failed_to_save_members: "Erro ao guardar o(s) membro(s): %{errors}." - text_zoom_out: Reduzir - text_zoom_in: Ampliar - notice_unable_delete_time_entry: Não foi possível apagar a entrada de tempo registado. - label_overall_spent_time: Total de tempo registado - field_time_entries: Tempo registado - project_module_gantt: Gantt - project_module_calendar: Calendário - button_edit_associated_wikipage: "Editar página Wiki associada: %{page_title}" - field_text: Campo de texto - setting_default_notification_option: Opção predefinida de notificação - label_user_mail_option_only_my_events: Apenas para tarefas que observo ou em que estou envolvido - label_user_mail_option_none: Sem eventos - field_member_of_group: Grupo do titular - field_assigned_to_role: Função do titular - notice_not_authorized_archived_project: O projeto ao qual tentou aceder foi arquivado. - label_principal_search: "Procurar utilizador ou grupo:" - label_user_search: "Procurar utilizador:" - field_visible: Visível - setting_emails_header: Cabeçalho dos e-mails - setting_commit_logtime_activity_id: Atividade para tempo registado - text_time_logged_by_changeset: Aplicado no conjunto de commits %{value}. - setting_commit_logtime_enabled: Ativar registo de tempo - notice_gantt_chart_truncated: O gráfico foi truncado porque excede o número máximo de itens visíveis (%{max.}) - setting_gantt_items_limit: Número máximo de itens exibidos no gráfico Gantt - field_warn_on_leaving_unsaved: Avisar-me quando deixar uma página com texto por guardar - text_warn_on_leaving_unsaved: A página atual contém texto por salvar que será perdido caso saia desta página. - label_my_queries: As minhas consultas - text_journal_changed_no_detail: "%{label} atualizada" - label_news_comment_added: Comentário adicionado a uma notícia - button_expand_all: Expandir todos - button_collapse_all: Minimizar todos - label_additional_workflow_transitions_for_assignee: Transições adicionais permitidas quando a tarefa está atribuida ao utilizador - label_additional_workflow_transitions_for_author: Transições adicionais permitidas quando o utilizador é o autor da tarefa - label_bulk_edit_selected_time_entries: Edição em massa de registos de tempo - text_time_entries_destroy_confirmation: Têm a certeza que pretende apagar o(s) registo(s) de tempo selecionado(s)? - label_role_anonymous: Anónimo - label_role_non_member: Não membro - label_issue_note_added: Nota adicionada - label_issue_status_updated: Estado atualizado - label_issue_priority_updated: Prioridade adicionada - label_issues_visibility_own: Tarefas criadas ou atribuídas ao utilizador - field_issues_visibility: Visibilidade das tarefas - label_issues_visibility_all: Todas as tarefas - permission_set_own_issues_private: Configurar as suas tarefas como públicas ou privadas - field_is_private: Privado - permission_set_issues_private: Configurar tarefas como públicas ou privadas - label_issues_visibility_public: Todas as tarefas públicas - text_issues_destroy_descendants_confirmation: Irá apagar também %{count} sub-tarefa(s). - field_commit_logs_encoding: Codificação das mensagens de commit - field_scm_path_encoding: Codificação do caminho - text_scm_path_encoding_note: "Por omissão: UTF-8" - field_path_to_repository: Caminho para o repositório - field_root_directory: Raíz do diretório - field_cvs_module: Módulo - field_cvsroot: CVSROOT - text_mercurial_repository_note: "Repositório local (ex: /hgrepo, c:\\hgrepo)" - text_scm_command: Comando - text_scm_command_version: Versão - label_git_report_last_commit: Analisar último commit por ficheiros e pastas - text_scm_config: Pode configurar os comando SCM em config/configuration.yml. Por favor reinicie a aplicação depois de alterar o ficheiro. - text_scm_command_not_available: O comando SCM não está disponível. Por favor verifique as configurações no painel de administração. - notice_issue_successful_create: Tarefa %{id} criada. - label_between: entre - setting_issue_group_assignment: Permitir atribuir tarefas a grupos - label_diff: diferença - text_git_repository_note: O repositório é local (e.g. /gitrepo, c:\gitrepo) - description_query_sort_criteria_direction: Direção da ordenação - description_project_scope: Âmbito da pesquisa - description_filter: Filtro - description_user_mail_notification: Configurações das notificações por e-mail - description_message_content: Conteúdo da mensagem - description_available_columns: Colunas disponíveis - description_issue_category_reassign: Escolha a categoria da tarefa - description_search: Campo de pesquisa - description_notes: Notas - description_choose_project: Projeto - description_query_sort_criteria_attribute: Ordenar atributos - description_wiki_subpages_reassign: Escolha nova página pai - description_selected_columns: Colunas selecionadas - label_parent_revision: Pai - label_child_revision: Filha - error_scm_annotate_big_text_file: Esta entrada não pode ser anotada pois excede o tamanho máximo para ficheiros de texto. - setting_default_issue_start_date_to_creation_date: Utilizar a data atual como data de início para novas tarefas - button_edit_section: Editar esta secção - setting_repositories_encodings: Codificação dos anexos e repositórios - description_all_columns: Todas as colunas - button_export: Exportar - label_export_options: "%{export_format} opções da exportação" - error_attachment_too_big: Este ficheiro não pode ser carregado pois excede o tamanho máximo permitido por ficheiro (%{max_size}) - notice_failed_to_save_time_entries: "Falha ao guardar %{count} registo(s) de tempo dos %{total} selecionados: %{ids}." - label_x_issues: - zero: 0 tarefas - one: 1 tarefa - other: "%{count} tarefas" - label_repository_new: Novo repositório - field_repository_is_default: Repositório principal - label_copy_attachments: Copiar anexos - label_item_position: "%{position}/%{count}" - label_completed_versions: Versões completas - text_project_identifier_info: Apenas letras minúsculas (a-z), números, traços e sublinhados são permitidos.
    Depois de guardar não é possível alterar. - field_multiple: Múltiplos valores - setting_commit_cross_project_ref: Permitir que tarefas dos restantes projetos sejam referenciadas e resolvidas - text_issue_conflict_resolution_add_notes: Adicionar as minhas notas e descartar as minhas restantes alterações - text_issue_conflict_resolution_overwrite: Aplicar as minhas alterações (notas antigas serão mantidas mas algumas alterações podem se perder) - notice_issue_update_conflict: Esta tarefa foi atualizada por outro utilizador enquanto estava a edita-la. - text_issue_conflict_resolution_cancel: Descartar todas as minhas alterações e atualizar %{link} - permission_manage_related_issues: Gerir tarefas relacionadas - field_auth_source_ldap_filter: Filtro LDAP - label_search_for_watchers: Pesquisar por observadores para adicionar - notice_account_deleted: A sua conta foi apagada permanentemente. - setting_unsubscribe: Permitir aos utilizadores apagarem a sua própria conta - button_delete_my_account: Apagar a minha conta - text_account_destroy_confirmation: |- - Têm a certeza que pretende avançar? - A sua conta vai ser permanentemente apagada, não será possível recupera-la. - error_session_expired: A sua sessão expirou. Por-favor autentique-se novamente. - text_session_expiration_settings: "Atenção: alterar estas configurações pode fazer expirar as sessões em curso, incluíndo a sua." - setting_session_lifetime: Duração máxima da sessão - setting_session_timeout: Tempo limite de inatividade da sessão - label_session_expiration: Expiração da sessão - permission_close_project: Fechar / re-abrir o projeto - button_close: Fechar - button_reopen: Re-abrir - project_status_active: ativo - project_status_closed: fechado - project_status_archived: arquivado - text_project_closed: Este projeto está fechado e é apenas de leitura. - notice_user_successful_create: Utilizador %{id} criado. - field_core_fields: Campos padrão - field_timeout: Tempo limite (em segundos) - setting_thumbnails_enabled: Apresentar miniaturas dos anexos - setting_thumbnails_size: Tamanho das miniaturas (em pixeis) - label_status_transitions: Estado das transições - label_fields_permissions: Permissões do campo - label_readonly: Apenas de leitura - label_required: Obrigatório - text_repository_identifier_info: Apenas letras minúsculas (a-z), números, traços e sublinhados são permitidos.
    Depois de guardar não é possível alterar. - field_board_parent: Fórum pai - label_attribute_of_project: "%{name} do Projeto" - label_attribute_of_author: "%{name} do Autor" - label_attribute_of_assigned_to: "%{name} do utilizador titular" - label_attribute_of_fixed_version: "%{name} da Versão" - label_copy_subtasks: Copiar sub-tarefas - label_copied_to: Copiado para - label_copied_from: Copiado de - label_any_issues_in_project: tarefas do projeto - label_any_issues_not_in_project: tarefas sem projeto - field_private_notes: Notas privadas - permission_view_private_notes: Ver notas privadas - permission_set_notes_private: Configurar notas como privadas - label_no_issues_in_project: sem tarefas no projeto - label_any: todos - label_last_n_weeks: últimas %{count} semanas - setting_cross_project_subtasks: Permitir sub-tarefas entre projetos - label_cross_project_descendants: Com os sub-projetos - label_cross_project_tree: Com árvore do projeto - label_cross_project_hierarchy: Com hierarquia do projeto - label_cross_project_system: Com todos os projetos - button_hide: Esconder - setting_non_working_week_days: Dias não úteis - label_in_the_next_days: no futuro - label_in_the_past_days: no passado - label_attribute_of_user: Do utilizador %{name} - text_turning_multiple_off: Se desativar a escolha múltipla, - esta será apagada de modo a manter apenas um valor por item. - label_attribute_of_issue: Tarefa de %{name} - permission_add_documents: Adicionar documentos - permission_edit_documents: Editar documentos - permission_delete_documents: Apagar documentos - label_gantt_progress_line: Barra de progresso - setting_jsonp_enabled: Ativar suporte JSONP - field_inherit_members: Herdar membros - field_closed_on: Fechado - field_generate_password: Gerar palavra-chave - setting_default_projects_tracker_ids: Tipo de tarefa padrão para novos projetos - label_total_time: Total - notice_account_not_activated_yet: Ainda não ativou a sua conta. Se desejar - receber um novo e-mail de ativação, por favor clique nesta ligação. - notice_account_locked: A sua conta está bloqueada. - notice_account_register_done: A conta foi criada com sucesso! Um e-mail contendo as instruções para ativar a sua conta foi enviado para %{email}. - label_hidden: Escondido - label_visibility_private: apenas para mim - label_visibility_roles: apenas para estas funções - label_visibility_public: para qualquer utilizador - field_must_change_passwd: Deve alterar a palavra-chave no próximo início de sessão - notice_new_password_must_be_different: A nova palavra-chave deve ser diferente da atual - setting_mail_handler_excluded_filenames: Apagar anexos por nome - text_convert_available: Conversão ImageMagick disponível (opcional) - label_link: Link - label_only: apenas - label_drop_down_list: lista - label_checkboxes: caixa de seleção - label_link_values_to: Ligação de valores ao URL - setting_force_default_language_for_anonymous: Forçar língua por omissão para utilizadores anónimos - setting_force_default_language_for_loggedin: Forçar língua por omissão para utilizadores registados - label_custom_field_select_type: Selecione o tipo de objeto ao qual o campo personalizado será atribuído - label_issue_assigned_to_updated: Utilizador titular atualizado - label_check_for_updates: Verificar atualizações - label_latest_compatible_version: Última versão compatível - label_unknown_plugin: Extensão desconhecida - label_radio_buttons: radio buttons - label_group_anonymous: Utilizadores anónimos - label_group_non_member: Utilizadores não membros - label_add_projects: Adicionar projetos - field_default_status: Estado por omissão - text_subversion_repository_note: 'Exemplos: file:///, http://, https://, svn://, svn+[tunnelscheme]://' - field_users_visibility: Visibilidade dos utilizadores - label_users_visibility_all: Todos os utilizadores ativos - label_users_visibility_members_of_visible_projects: Utilizadores membros dos projetos visíveis - label_edit_attachments: Editar os ficheiros anexados - setting_link_copied_issue: Relacionar tarefas ao copiar - label_link_copied_issue: Relacionar tarefas copiadas - label_ask: Perguntar - label_search_attachments_yes: Pesquisar nome e descrição dos anexos - label_search_attachments_no: Não pesquisar anexos - label_search_attachments_only: Pesquisar apenas anexos - label_search_open_issues_only: Apenas tarefas abertas - field_address: e-mail - setting_max_additional_emails: Número máximo de endereços de e-mail adicionais - label_email_address_plural: e-mails - label_email_address_add: Adicionar endereços de e-mail - label_enable_notifications: Ativar notificações - label_disable_notifications: Desativar notificações - setting_search_results_per_page: Resultados de pesquisa por página - label_blank_value: vazio - permission_copy_issues: Copiar tarefas - error_password_expired: A sua palavra-chave expirou ou o administrador exige que a altere. - field_time_entries_visibility: Visibilidade dos registo de tempo - setting_password_max_age: Exigir palavra-chave após a alteração - label_parent_task_attributes: Atributos da tarefa-pai - label_parent_task_attributes_derived: Calculado a partir das sub-tarefas - label_parent_task_attributes_independent: Independente das sub-tarefas - label_time_entries_visibility_all: Todos os registos de tempo - label_time_entries_visibility_own: Registos de tempo criados pelo utilizador - label_member_management: Gestão de utilizadores - label_member_management_all_roles: Todas as funções - label_member_management_selected_roles_only: Apenas estas funções - label_password_required: Confirme a sua palavra-chave para continuar - label_total_spent_time: Total de tempo registado - notice_import_finished: "%{count} registos foram importados" - notice_import_finished_with_errors: "%{count} de %{total} registos não poderam ser importados" - error_invalid_file_encoding: 'O ficheiro não possui a codificação correcta: {encoding}' - error_invalid_csv_file_or_settings: O ficheiro não é um ficheiro CSV ou não respeita as definições abaixo - error_can_not_read_import_file: Ocorreu um erro ao ler o ficheiro a importar - permission_import_issues: Importar tarefas - label_import_issues: Importar tarefas - label_select_file_to_import: Selecione o ficheiro a importar - label_fields_separator: Separador de campos - label_fields_wrapper: Field wrapper - label_encoding: Codificação - label_comma_char: Vírgula - label_semi_colon_char: Ponto e vírgula - label_quote_char: Aspas - label_double_quote_char: Aspas duplas - label_fields_mapping: Mapeamento de campos - label_file_content_preview: Pré-visualização do conteúdo do ficheiro - label_create_missing_values: Criar os valores em falta - button_import: Importar - field_total_estimated_hours: Total de tempo estimado - label_api: API - label_total_plural: Totais - label_assigned_issues: Tarefas atribuídas - label_field_format_enumeration: Lista chave/valor - label_f_hour_short: '%{value} h' - field_default_version: Versão por defeito - error_attachment_extension_not_allowed: A extensão %{extension} do ficheiro anexado não é permitida - setting_attachment_extensions_allowed: Extensões permitidas - setting_attachment_extensions_denied: Extensões não permitidas - label_any_open_issues: Quaisquer tarefas abertas - label_no_open_issues: Sem tarefas abertas - label_default_values_for_new_users: Valores por defeito para novo utilizadores - setting_sys_api_key: Chave da API - setting_lost_password: Perdi a palavra-chave - mail_subject_security_notification: Notificação de segurança - mail_body_security_notification_change: ! '%{field} foi modificado.' - mail_body_security_notification_change_to: ! '%{field} foi modificado para %{value}.' - mail_body_security_notification_add: ! '%{field} %{value} foi adicionado.' - mail_body_security_notification_remove: ! '%{field} %{value} foi removido.' - mail_body_security_notification_notify_enabled: O email %{value} agora recebe notificações. - mail_body_security_notification_notify_disabled: O email %{value} já não recebe notificações. - mail_body_settings_updated: ! 'As seguintes configurações foram modificadas:' - field_remote_ip: Endereço IP - label_wiki_page_new: Nova página wiki - label_relations: Relações - button_filter: Filtro - mail_body_password_updated: A sua palavra-chave foi atualizada. - label_no_preview: Sem pré-visualização disponível - error_no_tracker_allowed_for_new_issue_in_project: O projeto não possui nenhum tipo de tarefa para o qual você pode criar uma tarefa - label_tracker_all: Todos os tipos de tarefa - label_new_project_issue_tab_enabled: Apresentar a aba "Nova tarefa" - setting_new_item_menu_tab: Aba de Projeto para criar novos objetos - label_new_object_tab_enabled: Apresentar a aba "+" - error_no_projects_with_tracker_allowed_for_new_issue: Não há projetos com tipos de tarefa para os quais você pode criar uma tarefa - field_textarea_font: Fonte para áreas de texto - label_font_default: Default font - label_font_monospace: Fonte Monospaced - label_font_proportional: Fonte proporcional - setting_timespan_format: Formato de Data/Hora - label_table_of_contents: Índice - setting_commit_logs_formatting: Aplicar formatação de texto às mensagens de commit - setting_mail_handler_enable_regex: Ativar a utilização de expressões regulares - error_move_of_child_not_possible: 'A sub-tarefa %{child} não pode ser movida para o novo - project: %{errors}' - error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted: O tempo gasto não pode ser alterado numa tarefa que será apagada - setting_timelog_required_fields: Campos obrigatórios para o registo de tempo - label_attribute_of_object: '%{object_name} %{name}' - label_user_mail_option_only_assigned: Apenas para tarefas que observo ou que me estão atribuídas - label_user_mail_option_only_owner: Apenas para tarefas que observo ou que eu criei - warning_fields_cleared_on_bulk_edit: As alterações vão apagar valores de um ou mais campos nos objetos selecionados - field_updated_by: Atualizado por - field_last_updated_by: Última atualização por - field_full_width_layout: Layout utiliza toda a largura - label_last_notes: Last notes - field_digest: Checksum - field_default_assigned_to: Default assignee - setting_show_custom_fields_on_registration: Show custom fields on registration - permission_view_news: View news - label_no_preview_alternative_html: No preview available. %{link} the file instead. - label_no_preview_download: Download - setting_close_duplicate_issues: Close duplicate issues automatically - error_exceeds_maximum_hours_per_day: Cannot log more than %{max_hours} hours on the - same day (%{logged_hours} hours have already been logged) - setting_time_entry_list_defaults: Timelog list defaults - setting_timelog_accept_0_hours: Accept time logs with 0 hours - setting_timelog_max_hours_per_day: Maximum hours that can be logged per day and user - label_x_revisions: "%{count} revisions" - error_can_not_delete_auth_source: This authentication mode is in use and cannot be - deleted. - button_actions: Actions - mail_body_lost_password_validity: Please be aware that you may change the password - only once using this link. - text_login_required_html: When not requiring authentication, public projects and their - contents are openly available on the network. You can edit - the applicable permissions. - label_login_required_yes: 'Yes' - label_login_required_no: No, allow anonymous access to public projects - text_project_is_public_non_member: Public projects and their contents are available - to all logged-in users. - text_project_is_public_anonymous: Public projects and their contents are openly available - on the network. - label_version_and_files: Versions (%{count}) and Files - label_ldap: LDAP - label_ldaps_verify_none: LDAPS (without certificate check) - label_ldaps_verify_peer: LDAPS - label_ldaps_warning: It is recommended to use an encrypted LDAPS connection with certificate - check to prevent any manipulation during the authentication process. - label_nothing_to_preview: Nothing to preview - error_token_expired: This password recovery link has expired, please try again. - error_spent_on_future_date: Cannot log time on a future date - setting_timelog_accept_future_dates: Accept time logs on future dates - label_delete_link_to_subtask: Apagar relação - error_not_allowed_to_log_time_for_other_users: You are not allowed to log time - for other users - permission_log_time_for_other_users: Log spent time for other users - label_tomorrow: tomorrow - label_next_week: next week - label_next_month: next month - text_role_no_workflow: No workflow defined for this role - text_status_no_workflow: No tracker uses this status in the workflows - setting_mail_handler_preferred_body_part: Preferred part of multipart (HTML) emails - setting_show_status_changes_in_mail_subject: Show status changes in issue mail notifications - subject - label_inherited_from_parent_project: Inherited from parent project - label_inherited_from_group: Inherited from group %{name} - label_trackers_description: Trackers description - label_open_trackers_description: View all trackers description - label_preferred_body_part_text: Text - label_preferred_body_part_html: HTML (experimental) - field_parent_issue_subject: Parent task subject - permission_edit_own_issues: Edit own issues - text_select_apply_tracker: Select tracker - label_updated_issues: Updated issues - text_avatar_server_config_html: The current avatar server is %{url}. - You can configure it in config/configuration.yml. - setting_gantt_months_limit: Maximum number of months displayed on the gantt chart - permission_import_time_entries: Import time entries - label_import_notifications: Send email notifications during the import - text_gs_available: ImageMagick PDF support available (optional) - field_recently_used_projects: Number of recently used projects in jump box - label_optgroup_bookmarks: Bookmarks - label_optgroup_others: Other projects - label_optgroup_recents: Recently used - button_project_bookmark: Add bookmark - button_project_bookmark_delete: Remove bookmark - field_history_default_tab: Issue's history default tab - label_issue_history_properties: Property changes - label_issue_history_notes: Notes - label_last_tab_visited: Last visited tab - field_unique_id: Unique ID - text_no_subject: no subject - setting_password_required_char_classes: Required character classes for passwords - label_password_char_class_uppercase: uppercase letters - label_password_char_class_lowercase: lowercase letters - label_password_char_class_digits: digits - label_password_char_class_special_chars: special characters - text_characters_must_contain: Must contain %{character_classes}. - label_starts_with: starts with - label_ends_with: ends with - label_issue_fixed_version_updated: Target version updated - setting_project_list_defaults: Projects list defaults - label_display_type: Display results as - label_display_type_list: List - label_display_type_board: Board - label_my_bookmarks: My bookmarks - label_import_time_entries: Import time entries diff --git a/config/locales/ro.yml b/config/locales/ro.yml deleted file mode 100644 index c6ca65c..0000000 --- a/config/locales/ro.yml +++ /dev/null @@ -1,1310 +0,0 @@ -ro: - direction: ltr - date: - formats: - default: "%d-%m-%Y" - short: "%d %b" - long: "%d %B %Y" - only_day: "%e" - - day_names: [Duminică, Luni, Marti, Miercuri, Joi, Vineri, Sâmbătă] - abbr_day_names: [Dum, Lun, Mar, Mie, Joi, Vin, Sâm] - - month_names: [~, Ianuarie, Februarie, Martie, Aprilie, Mai, Iunie, Iulie, August, Septembrie, Octombrie, Noiembrie, Decembrie] - abbr_month_names: [~, Ian, Feb, Mar, Apr, Mai, Iun, Iul, Aug, Sep, Oct, Noi, Dec] - order: - - :day - - :month - - :year - - time: - formats: - default: "%m/%d/%Y %I:%M %p" - time: "%I:%M %p" - short: "%d %b %H:%M" - long: "%B %d, %Y %H:%M" - am: "am" - pm: "pm" - - datetime: - distance_in_words: - half_a_minute: "jumătate de minut" - less_than_x_seconds: - one: "mai puțin de o secundă" - other: "mai puțin de %{count} secunde" - x_seconds: - one: "o secundă" - other: "%{count} secunde" - less_than_x_minutes: - one: "mai puțin de un minut" - other: "mai puțin de %{count} minute" - x_minutes: - one: "un minut" - other: "%{count} minute" - about_x_hours: - one: "aproximativ o oră" - other: "aproximativ %{count} ore" - x_hours: - one: "1 oră" - other: "%{count} ore" - x_days: - one: "o zi" - other: "%{count} zile" - about_x_months: - one: "aproximativ o lună" - other: "aproximativ %{count} luni" - x_months: - one: "o luna" - other: "%{count} luni" - about_x_years: - one: "aproximativ un an" - other: "aproximativ %{count} ani" - over_x_years: - one: "peste un an" - other: "peste %{count} ani" - almost_x_years: - one: "almost 1 year" - other: "almost %{count} years" - - number: - format: - separator: "." - delimiter: "" - precision: 3 - - human: - format: - precision: 3 - delimiter: "" - storage_units: - format: "%n %u" - units: - kb: KB - tb: TB - gb: GB - byte: - one: Byte - other: Bytes - mb: MB - -# Used in array.to_sentence. - support: - array: - sentence_connector: "și" - skip_last_comma: true - - activerecord: - errors: - template: - header: - one: "1 error prohibited this %{model} from being saved" - other: "%{count} errors prohibited this %{model} from being saved" - messages: - inclusion: "nu este inclus în listă" - exclusion: "este rezervat" - invalid: "nu este valid" - confirmation: "nu este identică" - accepted: "trebuie acceptat" - empty: "trebuie completat" - blank: "nu poate fi gol" - too_long: "este prea lung" - too_short: "este prea scurt" - wrong_length: "nu are lungimea corectă" - taken: "a fost luat deja" - not_a_number: "nu este un număr" - not_a_date: "nu este o dată validă" - greater_than: "trebuie să fie mai mare de %{count}" - greater_than_or_equal_to: "trebuie să fie mai mare sau egal cu %{count}" - equal_to: "trebuie să fie egal cu {count}}" - less_than: "trebuie să fie mai mic decat %{count}" - less_than_or_equal_to: "trebuie să fie mai mic sau egal cu %{count}" - odd: "trebuie să fie impar" - even: "trebuie să fie par" - greater_than_start_date: "trebuie să fie după data de început" - not_same_project: "trebuie să aparțină aceluiași proiect" - circular_dependency: "Această relație ar crea o dependență circulară" - cant_link_an_issue_with_a_descendant: "An issue can not be linked to one of its subtasks" - earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" - not_a_regexp: "is not a valid regular expression" - open_issue_with_closed_parent: "An open issue cannot be attached to a closed parent task" - must_contain_uppercase: "must contain uppercase letters (A-Z)" - must_contain_lowercase: "must contain lowercase letters (a-z)" - must_contain_digits: "must contain digits (0-9)" - must_contain_special_chars: "must contain special characters (!, $, %, ...)" - - actionview_instancetag_blank_option: Selectați - - general_text_No: 'Nu' - general_text_Yes: 'Da' - general_text_no: 'nu' - general_text_yes: 'da' - general_lang_name: 'Romanian (Română)' - general_csv_separator: '.' - general_csv_decimal_separator: ',' - general_csv_encoding: UTF-8 - general_pdf_fontname: freesans - general_pdf_monospaced_fontname: freemono - general_first_day_of_week: '2' - - notice_account_updated: Cont actualizat. - notice_account_invalid_credentials: Utilizator sau parola nevalidă - notice_account_password_updated: Parolă actualizată. - notice_account_wrong_password: Parolă greșită - notice_account_register_done: Contul a fost creat. Pentru activare, urmați legătura trimisă prin email. - notice_account_unknown_email: Utilizator necunoscut. - notice_can_t_change_password: Acest cont folosește o sursă externă de autentificare. Nu se poate schimba parola. - notice_account_lost_email_sent: S-a trimis un email cu instrucțiuni de schimbare a parolei. - notice_account_activated: Contul a fost activat. Vă puteți autentifica acum. - notice_successful_create: Creat. - notice_successful_update: Actualizat. - notice_successful_delete: Șters. - notice_successful_connection: Conectat. - notice_file_not_found: Pagina pe care doriți să o accesați nu există sau a fost ștearsă. - notice_locking_conflict: Datele au fost actualizate de alt utilizator. - notice_not_authorized: Nu sunteți autorizat sa accesați această pagină. - notice_email_sent: "S-a trimis un email către %{value}" - notice_email_error: "A intervenit o eroare la trimiterea de email (%{value})" - notice_feeds_access_key_reseted: Cheia de acces Atom a fost resetată. - notice_failed_to_save_issues: "Nu s-au putut salva %{count} tichete din cele %{total} selectate: %{ids}." - notice_no_issue_selected: "Niciun tichet selectat! Vă rugăm să selectați tichetele pe care doriți să le editați." - notice_account_pending: "Contul dumneavoastră a fost creat și așteaptă aprobarea administratorului." - notice_default_data_loaded: S-a încărcat configurația implicită. - notice_unable_delete_version: Nu se poate șterge versiunea. - - error_can_t_load_default_data: "Nu s-a putut încărca configurația implicită: %{value}" - error_scm_not_found: "Nu s-a găsit articolul sau revizia în depozit." - error_scm_command_failed: "A intervenit o eroare la accesarea depozitului: %{value}" - error_scm_annotate: "Nu există sau nu poate fi adnotată." - error_issue_not_found_in_project: 'Tichetul nu a fost găsit sau nu aparține acestui proiect' - - warning_attachments_not_saved: "Nu s-au putut salva %{count} fișiere." - - mail_subject_lost_password: "Parola dumneavoastră: %{value}" - mail_body_lost_password: 'Pentru a schimba parola, accesați:' - mail_subject_register: "Activarea contului %{value}" - mail_body_register: 'Pentru activarea contului, accesați:' - mail_body_account_information_external: "Puteți folosi contul „{value}}” pentru a vă autentifica." - mail_body_account_information: Informații despre contul dumneavoastră - mail_subject_account_activation_request: "Cerere de activare a contului %{value}" - mail_body_account_activation_request: "S-a înregistrat un utilizator nou (%{value}). Contul așteaptă aprobarea dumneavoastră:" - mail_subject_reminder: "%{count} tichete trebuie rezolvate în următoarele %{days} zile" - mail_body_reminder: "%{count} tichete atribuite dumneavoastră trebuie rezolvate în următoarele %{days} zile:" - - - field_name: Nume - field_description: Descriere - field_summary: Rezumat - field_is_required: Obligatoriu - field_firstname: Prenume - field_lastname: Nume - field_mail: Email - field_filename: Fișier - field_filesize: Mărime - field_downloads: Descărcări - field_author: Autor - field_created_on: Creat la - field_updated_on: Actualizat la - field_field_format: Format - field_is_for_all: Pentru toate proiectele - field_possible_values: Valori posibile - field_regexp: Expresie regulară - field_min_length: lungime minimă - field_max_length: lungime maximă - field_value: Valoare - field_category: Categorie - field_title: Titlu - field_project: Proiect - field_issue: Tichet - field_status: Stare - field_notes: Note - field_is_closed: Rezolvat - field_is_default: Implicit - field_tracker: Tip de tichet - field_subject: Subiect - field_due_date: Data finalizării - field_assigned_to: Atribuit - field_priority: Prioritate - field_fixed_version: Versiune țintă - field_user: Utilizator - field_role: Rol - field_homepage: Pagina principală - field_is_public: Public - field_parent: Sub-proiect al - field_is_in_roadmap: Tichete afișate în plan - field_login: Autentificare - field_mail_notification: Notificări prin e-mail - field_admin: Administrator - field_last_login_on: Ultima autentificare în - field_language: Limba - field_effective_date: Data - field_password: Parola - field_new_password: Parola nouă - field_password_confirmation: Confirmare - field_version: Versiune - field_type: Tip - field_host: Gazdă - field_port: Port - field_account: Cont - field_base_dn: Base DN - field_attr_login: Atribut autentificare - field_attr_firstname: Atribut prenume - field_attr_lastname: Atribut nume - field_attr_mail: Atribut email - field_onthefly: Creare utilizator pe loc - field_start_date: Data începerii - field_done_ratio: Realizat (%) - field_auth_source: Mod autentificare - field_hide_mail: Nu se afișează adresa de email - field_comments: Comentariu - field_url: URL - field_start_page: Pagina de start - field_subproject: Subproiect - field_hours: Ore - field_activity: Activitate - field_spent_on: Data - field_identifier: Identificator - field_is_filter: Filtru - field_issue_to: Tichet asociat - field_delay: Întârziere - field_assignable: Se pot atribui tichete acestui rol - field_redirect_existing_links: Redirecționează legăturile existente - field_estimated_hours: Timp estimat - field_column_names: Coloane - field_time_zone: Fus orar - field_searchable: Căutare - field_default_value: Valoare implicita - field_comments_sorting: Afișează comentarii - field_parent_title: Pagina superioara - field_editable: Modificabil - field_watcher: Urmărește - field_identity_url: URL OpenID - field_content: Conținut - - setting_app_title: Titlu aplicație - setting_welcome_text: Text de întâmpinare - setting_default_language: Limba implicita - setting_login_required: Necesita autentificare - setting_self_registration: Înregistrare automată - setting_attachment_max_size: Mărime maxima atașament - setting_issues_export_limit: Limită de tichete exportate - setting_mail_from: Adresa de email a expeditorului - setting_bcc_recipients: Alți destinatari pentru email (BCC) - setting_plain_text_mail: Mesaje text (fără HTML) - setting_host_name: Numele gazdei și calea - setting_text_formatting: Formatare text - setting_wiki_compression: Comprimare istoric Wiki - setting_feeds_limit: Limita de actualizări din feed - setting_default_projects_public: Proiectele noi sunt implicit publice - setting_autofetch_changesets: Preluare automată a modificărilor din depozit - setting_sys_api_enabled: Activare WS pentru gestionat depozitul - setting_commit_ref_keywords: Cuvinte cheie pt. referire tichet - setting_commit_fix_keywords: Cuvinte cheie pt. rezolvare tichet - setting_autologin: Autentificare automată - setting_date_format: Format dată - setting_time_format: Format oră - setting_cross_project_issue_relations: Permite legături de tichete între proiecte - setting_issue_list_default_columns: Coloane implicite afișate în lista de tichete - setting_emails_footer: Subsol email - setting_protocol: Protocol - setting_per_page_options: Număr de obiecte pe pagină - setting_user_format: Stil de afișare pentru utilizator - setting_activity_days_default: Se afișează zile în jurnalul proiectului - setting_display_subprojects_issues: Afișează implicit tichetele sub-proiectelor în proiectele principale - setting_enabled_scm: SCM activat - setting_mail_handler_api_enabled: Activare WS pentru email primit - setting_mail_handler_api_key: cheie API - setting_sequential_project_identifiers: Generează secvențial identificatoarele de proiect - setting_gravatar_enabled: Folosește poze Gravatar pentru utilizatori - setting_diff_max_lines_displayed: Număr maxim de linii de diferență afișate - setting_file_max_size_displayed: Număr maxim de fișiere text afișate în pagină (inline) - setting_repository_log_display_limit: Număr maxim de revizii afișate în istoricul fișierului - setting_openid: Permite înregistrare și autentificare cu OpenID - - permission_edit_project: Editează proiectul - permission_select_project_modules: Alege module pentru proiect - permission_manage_members: Editează membri - permission_manage_versions: Editează versiuni - permission_manage_categories: Editează categorii - permission_add_issues: Adaugă tichete - permission_edit_issues: Editează tichete - permission_manage_issue_relations: Editează relații tichete - permission_add_issue_notes: Adaugă note - permission_edit_issue_notes: Editează note - permission_edit_own_issue_notes: Editează notele proprii - permission_delete_issues: Șterge tichete - permission_manage_public_queries: Editează căutările implicite - permission_save_queries: Salvează căutările - permission_view_gantt: Afișează Gantt - permission_view_calendar: Afișează calendarul - permission_view_issue_watchers: Afișează lista de persoane interesate - permission_add_issue_watchers: Adaugă persoane interesate - permission_log_time: Înregistrează timpul de lucru - permission_view_time_entries: Afișează timpul de lucru - permission_edit_time_entries: Editează jurnalele cu timp de lucru - permission_edit_own_time_entries: Editează jurnalele proprii cu timpul de lucru - permission_manage_news: Editează știri - permission_comment_news: Comentează știrile - permission_view_documents: Afișează documente - permission_manage_files: Editează fișiere - permission_view_files: Afișează fișiere - permission_manage_wiki: Editează wiki - permission_rename_wiki_pages: Redenumește pagini wiki - permission_delete_wiki_pages: Șterge pagini wiki - permission_view_wiki_pages: Afișează wiki - permission_view_wiki_edits: Afișează istoricul wiki - permission_edit_wiki_pages: Editează pagini wiki - permission_delete_wiki_pages_attachments: Șterge atașamente - permission_protect_wiki_pages: Blochează pagini wiki - permission_manage_repository: Gestionează depozitul - permission_browse_repository: Răsfoiește depozitul - permission_view_changesets: Afișează modificările din depozit - permission_commit_access: Acces commit - permission_manage_boards: Editează forum - permission_view_messages: Afișează mesaje - permission_add_messages: Scrie mesaje - permission_edit_messages: Editează mesaje - permission_edit_own_messages: Editează mesajele proprii - permission_delete_messages: Șterge mesaje - permission_delete_own_messages: Șterge mesajele proprii - - project_module_issue_tracking: Tichete - project_module_time_tracking: Timp de lucru - project_module_news: Știri - project_module_documents: Documente - project_module_files: Fișiere - project_module_wiki: Wiki - project_module_repository: Depozit - project_module_boards: Forum - - label_user: Utilizator - label_user_plural: Utilizatori - label_user_new: Utilizator nou - label_project: Proiect - label_project_new: Proiect nou - label_project_plural: Proiecte - label_x_projects: - zero: niciun proiect - one: un proiect - other: "%{count} proiecte" - label_project_all: Toate proiectele - label_project_latest: Proiecte noi - label_issue: Tichet - label_issue_new: Tichet nou - label_issue_plural: Tichete - label_issue_view_all: Afișează toate tichetele - label_issues_by: "Sortează după %{value}" - label_issue_added: Adaugat - label_issue_updated: Actualizat - label_document: Document - label_document_new: Document nou - label_document_plural: Documente - label_document_added: Adăugat - label_role: Rol - label_role_plural: Roluri - label_role_new: Rol nou - label_role_and_permissions: Roluri și permisiuni - label_member: Membru - label_member_new: membru nou - label_member_plural: Membri - label_tracker: Tip de tichet - label_tracker_plural: Tipuri de tichete - label_tracker_new: Tip nou de tichet - label_workflow: Mod de lucru - label_issue_status: Stare tichet - label_issue_status_plural: Stare tichete - label_issue_status_new: Stare nouă - label_issue_category: Categorie de tichet - label_issue_category_plural: Categorii de tichete - label_issue_category_new: Categorie nouă - label_custom_field: Câmp personalizat - label_custom_field_plural: Câmpuri personalizate - label_custom_field_new: Câmp nou personalizat - label_enumerations: Enumerări - label_enumeration_new: Valoare nouă - label_information: Informație - label_information_plural: Informații - label_register: Înregistrare - label_login_with_open_id_option: sau autentificare cu OpenID - label_password_lost: Parolă uitată - label_home: Acasă - label_my_page: Pagina mea - label_my_account: Contul meu - label_my_projects: Proiectele mele - label_administration: Administrare - label_login: Autentificare - label_logout: Ieșire din cont - label_help: Ajutor - label_reported_issues: Tichete - label_assigned_to_me_issues: Tichetele mele - label_last_login: Ultima conectare - label_registered_on: Înregistrat la - label_activity: Activitate - label_overall_activity: Activitate - vedere de ansamblu - label_user_activity: "Activitate %{value}" - label_new: Nou - label_logged_as: Autentificat ca - label_environment: Mediu - label_authentication: Autentificare - label_auth_source: Mod de autentificare - label_auth_source_new: Nou - label_auth_source_plural: Moduri de autentificare - label_subproject_plural: Sub-proiecte - label_and_its_subprojects: "%{value} și sub-proiecte" - label_min_max_length: lungime min - max - label_list: Listă - label_date: Dată - label_integer: Întreg - label_float: Zecimal - label_boolean: Valoare logică - label_string: Text - label_text: Text lung - label_attribute: Atribut - label_attribute_plural: Atribute - label_no_data: Nu există date de afișat - label_change_status: Schimbă starea - label_history: Istoric - label_attachment: Fișier - label_attachment_new: Fișier nou - label_attachment_delete: Șterge fișier - label_attachment_plural: Fișiere - label_file_added: Adăugat - label_report: Raport - label_report_plural: Rapoarte - label_news: Știri - label_news_new: Adaugă știre - label_news_plural: Știri - label_news_latest: Ultimele știri - label_news_view_all: Afișează toate știrile - label_news_added: Adăugat - label_settings: Setări - label_overview: Pagină proiect - label_version: Versiune - label_version_new: Versiune nouă - label_version_plural: Versiuni - label_confirmation: Confirmare - label_export_to: 'Disponibil și în:' - label_read: Citește... - label_public_projects: Proiecte publice - label_open_issues: deschis - label_open_issues_plural: deschise - label_closed_issues: închis - label_closed_issues_plural: închise - label_x_open_issues_abbr: - zero: 0 deschise - one: 1 deschis - other: "%{count} deschise" - label_x_closed_issues_abbr: - zero: 0 închise - one: 1 închis - other: "%{count} închise" - label_total: Total - label_permissions: Permisiuni - label_current_status: Stare curentă - label_new_statuses_allowed: Stări noi permise - label_all: toate - label_none: niciunul - label_nobody: nimeni - label_next: Înainte - label_previous: Înapoi - label_used_by: Folosit de - label_details: Detalii - label_add_note: Adaugă o notă - label_calendar: Calendar - label_months_from: luni de la - label_gantt: Gantt - label_internal: Intern - label_last_changes: "ultimele %{count} schimbări" - label_change_view_all: Afișează toate schimbările - label_comment: Comentariu - label_comment_plural: Comentarii - label_x_comments: - zero: fara comentarii - one: 1 comentariu - other: "%{count} comentarii" - label_comment_add: Adaugă un comentariu - label_comment_added: Adăugat - label_comment_delete: Șterge comentariul - label_query: Cautare personalizata - label_query_plural: Căutări personalizate - label_query_new: Căutare nouă - label_filter_add: Adaugă filtru - label_filter_plural: Filtre - label_equals: este - label_not_equals: nu este - label_in_less_than: în mai puțin de - label_in_more_than: în mai mult de - label_in: în - label_today: astăzi - label_yesterday: ieri - label_this_week: săptămâna aceasta - label_last_week: săptămâna trecută - label_last_n_days: "ultimele %{count} zile" - label_this_month: luna aceasta - label_last_month: luna trecută - label_this_year: anul acesta - label_date_range: Perioada - label_less_than_ago: mai puțin de ... zile - label_more_than_ago: mai mult de ... zile - label_ago: în urma - label_contains: conține - label_not_contains: nu conține - label_day_plural: zile - label_repository: Depozit - label_repository_plural: Depozite - label_browse: Afișează - label_revision: Revizie - label_revision_plural: Revizii - label_associated_revisions: Revizii asociate - label_added: adaugată - label_modified: modificată - label_copied: copiată - label_renamed: redenumită - label_deleted: ștearsă - label_latest_revision: Ultima revizie - label_latest_revision_plural: Ultimele revizii - label_view_revisions: Afișează revizii - label_max_size: Mărime maximă - label_sort_highest: Prima - label_sort_higher: În sus - label_sort_lower: În jos - label_sort_lowest: Ultima - label_roadmap: Planificare - label_roadmap_due_in: "De terminat în %{value}" - label_roadmap_overdue: "Întârziat cu %{value}" - label_roadmap_no_issues: Nu există tichete pentru această versiune - label_search: Caută - label_result_plural: Rezultate - label_all_words: toate cuvintele - label_wiki: Wiki - label_wiki_edit: Editare Wiki - label_wiki_edit_plural: Editări Wiki - label_wiki_page: Pagină Wiki - label_wiki_page_plural: Pagini Wiki - label_index_by_title: Sortează după titlu - label_index_by_date: Sortează după dată - label_current_version: Versiunea curentă - label_preview: Previzualizare - label_feed_plural: Feed-uri - label_changes_details: Detaliile tuturor schimbărilor - label_issue_tracking: Urmărire tichete - label_spent_time: Timp alocat - label_f_hour: "%{value} oră" - label_f_hour_plural: "%{value} ore" - label_time_tracking: Urmărire timp de lucru - label_change_plural: Schimbări - label_statistics: Statistici - label_commits_per_month: Commit pe luna - label_commits_per_author: Commit per autor - label_view_diff: Afișează diferențele - label_diff_inline: în linie - label_diff_side_by_side: una lângă alta - label_options: Opțiuni - label_copy_workflow_from: Copiază modul de lucru de la - label_permissions_report: Permisiuni - label_watched_issues: Tichete urmărite - label_related_issues: Tichete asociate - label_applied_status: Stare aplicată - label_loading: Încarcă... - label_relation_new: Asociere nouă - label_relation_delete: Șterge asocierea - label_relates_to: asociat cu - label_duplicates: duplicate - label_duplicated_by: la fel ca - label_blocks: blocări - label_blocked_by: blocat de - label_precedes: precede - label_follows: urmează - label_stay_logged_in: Păstrează autentificarea - label_disabled: dezactivat - label_show_completed_versions: Arată versiunile terminate - label_me: eu - label_board: Forum - label_board_new: Forum nou - label_board_plural: Forumuri - label_topic_plural: Subiecte - label_message_plural: Mesaje - label_message_last: Ultimul mesaj - label_message_new: Mesaj nou - label_message_posted: Adăugat - label_reply_plural: Răspunsuri - label_send_information: Trimite utilizatorului informațiile despre cont - label_year: An - label_month: Lună - label_week: Săptămână - label_date_from: De la - label_date_to: La - label_language_based: Un funcție de limba de afișare a utilizatorului - label_sort_by: "Sortează după %{value}" - label_send_test_email: Trimite email de test - label_feeds_access_key_created_on: "Cheie de acces creată acum %{value}" - label_module_plural: Module - label_added_time_by: "Adăugat de %{author} acum %{age}" - label_updated_time_by: "Actualizat de %{author} acum %{age}" - label_updated_time: "Actualizat acum %{value}" - label_jump_to_a_project: Alege proiectul... - label_file_plural: Fișiere - label_changeset_plural: Schimbări - label_default_columns: Coloane implicite - label_no_change_option: (fără schimbări) - label_bulk_edit_selected_issues: Editează toate tichetele selectate - label_theme: Tema - label_default: Implicită - label_search_titles_only: Caută numai în titluri - label_user_mail_option_all: "Pentru orice eveniment, în toate proiectele mele" - label_user_mail_option_selected: " Pentru orice eveniment, în proiectele selectate..." - label_user_mail_no_self_notified: "Nu trimite notificări pentru modificările mele" - label_registration_activation_by_email: activare cont prin email - label_registration_manual_activation: activare manuală a contului - label_registration_automatic_activation: activare automată a contului - label_display_per_page: "pe pagină: %{value}" - label_age: vechime - label_change_properties: Schimbă proprietățile - label_general: General - label_scm: SCM - label_plugins: Plugin-uri - label_ldap_authentication: autentificare LDAP - label_downloads_abbr: D/L - label_optional_description: Descriere (opțională) - label_add_another_file: Adaugă alt fișier - label_preferences: Preferințe - label_chronological_order: în ordine cronologică - label_reverse_chronological_order: În ordine invers cronologică - label_incoming_emails: Mesaje primite - label_generate_key: Generează o cheie - label_issue_watchers: Cine urmărește - label_example: Exemplu - label_display: Afișează - - label_sort: Sortează - label_ascending: Crescător - label_descending: Descrescător - label_date_from_to: De la %{start} la %{end} - - button_login: Autentificare - button_submit: Trimite - button_save: Salvează - button_check_all: Bifează tot - button_uncheck_all: Debifează tot - button_delete: Șterge - button_create: Creează - button_create_and_continue: Creează și continua - button_test: Testează - button_edit: Editează - button_add: Adaugă - button_change: Modifică - button_apply: Aplică - button_clear: Șterge - button_lock: Blochează - button_unlock: Deblochează - button_download: Descarcă - button_list: Listează - button_view: Afișează - button_move: Mută - button_back: Înapoi - button_cancel: Anulează - button_activate: Activează - button_sort: Sortează - button_log_time: Înregistrează timpul de lucru - button_rollback: Revenire la această versiune - button_watch: Urmăresc - button_unwatch: Nu urmăresc - button_reply: Răspunde - button_archive: Arhivează - button_unarchive: Dezarhivează - button_reset: Resetează - button_rename: Redenumește - button_change_password: Schimbare parolă - button_copy: Copiază - button_annotate: Adnotează - button_update: Actualizează - button_configure: Configurează - button_quote: Citează - - status_active: activ - status_registered: înregistrat - status_locked: blocat - - text_select_mail_notifications: Selectați acțiunile notificate prin email. - text_regexp_info: ex. ^[A-Z0-9]+$ - text_min_max_length_info: 0 înseamnă fără restricții - text_project_destroy_confirmation: Sigur doriți să ștergeți proiectul și toate datele asociate? - text_subprojects_destroy_warning: "Se vor șterge și sub-proiectele: %{value}." - text_workflow_edit: Selectați un rol și un tip de tichet pentru a edita modul de lucru - text_are_you_sure: Sunteți sigur(ă)? - text_tip_issue_begin_day: sarcină care începe în această zi - text_tip_issue_end_day: sarcină care se termină în această zi - text_tip_issue_begin_end_day: sarcină care începe și se termină în această zi - text_caracters_maximum: "maxim %{count} caractere." - text_caracters_minimum: "Trebuie să fie minim %{count} caractere." - text_length_between: "Lungime între %{min} și %{max} caractere." - text_tracker_no_workflow: Nu sunt moduri de lucru pentru acest tip de tichet - text_unallowed_characters: Caractere nepermise - text_comma_separated: Sunt permise mai multe valori (separate cu virgulă). - text_issues_ref_in_commit_messages: Referire la tichete și rezolvare în textul mesajului - text_issue_added: "Tichetul %{id} a fost adăugat de %{author}." - text_issue_updated: "Tichetul %{id} a fost actualizat de %{author}." - text_wiki_destroy_confirmation: Sigur doriți ștergerea Wiki și a conținutului asociat? - text_issue_category_destroy_question: "Această categorie conține (%{count}) tichete. Ce doriți să faceți?" - text_issue_category_destroy_assignments: Șterge apartenența la categorie. - text_issue_category_reassign_to: Atribuie tichetele la această categorie - text_user_mail_option: "Pentru proiectele care nu sunt selectate, veți primi notificări doar pentru ceea ce urmăriți sau în ce sunteți implicat (ex: tichete create de dumneavoastră sau care vă sunt atribuite)." - text_no_configuration_data: "Nu s-au configurat încă rolurile, stările tichetelor și modurile de lucru.\nEste recomandat să încărcați configurația implicită. O veți putea modifica ulterior." - text_load_default_configuration: Încarcă configurația implicită - text_status_changed_by_changeset: "Aplicat în setul %{value}." - text_issues_destroy_confirmation: 'Sigur doriți să ștergeți tichetele selectate?' - text_select_project_modules: 'Selectați modulele active pentru acest proiect:' - text_default_administrator_account_changed: S-a schimbat contul administratorului implicit - text_file_repository_writable: Se poate scrie în directorul de atașamente - text_plugin_assets_writable: Se poate scrie în directorul de plugin-uri - text_minimagick_available: Este disponibil MiniMagick (opțional) - text_destroy_time_entries_question: "%{hours} ore sunt înregistrate la tichetele pe care doriți să le ștergeți. Ce doriți sa faceți?" - text_destroy_time_entries: Șterge orele înregistrate - text_assign_time_entries_to_project: Atribuie orele la proiect - text_reassign_time_entries: 'Atribuie orele înregistrate la tichetul:' - text_user_wrote: "%{value} a scris:" - text_user_wrote_in: "%{value} a scris (%{link}):" - text_enumeration_destroy_question: "Această valoare are %{count} obiecte." - text_enumeration_category_reassign_to: 'Atribuie la această valoare:' - text_email_delivery_not_configured: "Trimiterea de emailuri nu este configurată și ca urmare, notificările sunt dezactivate.\nConfigurați serverul SMTP în config/configuration.yml și reporniți aplicația pentru a le activa." - text_repository_usernames_mapping: "Selectați sau modificați contul Redmine echivalent contului din istoricul depozitului.\nUtilizatorii cu un cont (sau e-mail) identic în Redmine și depozit sunt echivalate automat." - text_diff_truncated: '... Comparația a fost trunchiată pentru ca depășește lungimea maximă de text care poate fi afișat.' - text_custom_field_possible_values_info: 'O linie pentru fiecare valoare' - - default_role_manager: Manager - default_role_developer: Dezvoltator - default_role_reporter: Creator de rapoarte - default_tracker_bug: Defect - default_tracker_feature: Funcție - default_tracker_support: Suport - default_issue_status_new: Nou - default_issue_status_in_progress: In Progress - default_issue_status_resolved: Rezolvat - default_issue_status_feedback: Așteaptă reacții - default_issue_status_closed: Închis - default_issue_status_rejected: Respins - default_doc_category_user: Documentație - default_doc_category_tech: Documentație tehnică - default_priority_low: mică - default_priority_normal: normală - default_priority_high: mare - default_priority_urgent: urgentă - default_priority_immediate: imediată - default_activity_design: Design - default_activity_development: Dezvoltare - - enumeration_issue_priorities: Priorități tichete - enumeration_doc_categories: Categorii documente - enumeration_activities: Activități (timp de lucru) - label_greater_or_equal: ">=" - label_less_or_equal: <= - text_wiki_page_destroy_question: Această pagină are %{descendants} pagini anterioare și descendenți. Ce doriți să faceți? - text_wiki_page_reassign_children: Atribuie paginile la această pagină - text_wiki_page_nullify_children: Menține paginile ca și pagini inițiale (root) - text_wiki_page_destroy_children: Șterge paginile și descendenții - setting_password_min_length: Lungime minimă parolă - field_group_by: Grupează după - mail_subject_wiki_content_updated: "Pagina wiki '%{id}' a fost actualizată" - label_wiki_content_added: Adăugat - mail_subject_wiki_content_added: "Pagina wiki '%{id}' a fost adăugată" - mail_body_wiki_content_added: Pagina wiki '%{id}' a fost adăugată de %{author}. - label_wiki_content_updated: Actualizat - mail_body_wiki_content_updated: Pagina wiki '%{id}' a fost actualizată de %{author}. - permission_add_project: Crează proiect - setting_new_project_user_role_id: Rol atribuit utilizatorului non-admin care crează un proiect. - label_view_all_revisions: Arată toate reviziile - label_tag: Tag - label_branch: Branch - error_no_tracker_in_project: Nu există un tracker asociat cu proiectul. Verificați vă rog setările proiectului. - error_no_default_issue_status: Nu există un status implicit al tichetelor. Verificați vă rog configurația (Mergeți la "Administrare -> Stări tichete"). - text_journal_changed: "%{label} schimbat din %{old} în %{new}" - text_journal_set_to: "%{label} setat ca %{value}" - text_journal_deleted: "%{label} șters (%{old})" - label_group_plural: Grupuri - label_group: Grup - label_group_new: Grup nou - label_time_entry_plural: Timp alocat - text_journal_added: "%{label} %{value} added" - field_active: Active - enumeration_system_activity: System Activity - permission_delete_issue_watchers: Delete watchers - version_status_closed: closed - version_status_locked: locked - version_status_open: open - error_can_not_reopen_issue_on_closed_version: An issue assigned to a closed version can not be reopened - label_user_anonymous: Anonymous - button_move_and_follow: Move and follow - setting_default_projects_modules: Default enabled modules for new projects - setting_gravatar_default: Default Gravatar image - field_sharing: Sharing - label_version_sharing_hierarchy: With project hierarchy - label_version_sharing_system: With all projects - label_version_sharing_descendants: With subprojects - label_version_sharing_tree: With project tree - label_version_sharing_none: Not shared - error_can_not_archive_project: This project can not be archived - button_copy_and_follow: Copy and follow - label_copy_source: Source - setting_issue_done_ratio: Calculate the issue done ratio with - setting_issue_done_ratio_issue_status: Use the issue status - error_issue_done_ratios_not_updated: Issue done ratios not updated. - error_workflow_copy_target: Please select target tracker(s) and role(s) - setting_issue_done_ratio_issue_field: Use the issue field - label_copy_same_as_target: Same as target - label_copy_target: Target - notice_issue_done_ratios_updated: Issue done ratios updated. - error_workflow_copy_source: Please select a source tracker or role - label_update_issue_done_ratios: Update issue done ratios - setting_start_of_week: Start calendars on - permission_view_issues: View Issues - label_display_used_statuses_only: Only display statuses that are used by this tracker - label_revision_id: Revision %{value} - label_api_access_key: API access key - label_api_access_key_created_on: API access key created %{value} ago - label_feeds_access_key: Atom access key - notice_api_access_key_reseted: Your API access key was reset. - setting_rest_api_enabled: Enable REST web service - label_missing_api_access_key: Missing an API access key - label_missing_feeds_access_key: Missing a Atom access key - button_show: Show - text_line_separated: Multiple values allowed (one line for each value). - setting_mail_handler_body_delimiters: Truncate emails after one of these lines - permission_add_subprojects: Create subprojects - label_subproject_new: New subproject - 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. - Are you sure you want to continue? - label_close_versions: Close completed versions - label_board_sticky: Sticky - label_board_locked: Locked - permission_export_wiki_pages: Export wiki pages - setting_cache_formatted_text: Cache formatted text - permission_manage_project_activities: Manage project activities - error_unable_delete_issue_status: Unable to delete issue status (%{value}) - label_profile: Profile - permission_manage_subtasks: Manage subtasks - field_parent_issue: Parent task - label_subtask_plural: Subtasks - label_project_copy_notifications: Send email notifications during the project copy - error_can_not_delete_custom_field: Unable to delete custom field - error_unable_to_connect: Unable to connect (%{value}) - error_can_not_remove_role: This role is in use and can not be deleted. - error_can_not_delete_tracker: This tracker contains issues and cannot be deleted. - field_principal: Principal - notice_failed_to_save_members: "Failed to save member(s): %{errors}." - text_zoom_out: Zoom out - text_zoom_in: Zoom in - notice_unable_delete_time_entry: Unable to delete time log entry. - label_overall_spent_time: Overall spent time - field_time_entries: Log time - project_module_gantt: Gantt - project_module_calendar: Calendar - button_edit_associated_wikipage: "Edit associated Wiki page: %{page_title}" - field_text: Text field - setting_default_notification_option: Default notification option - label_user_mail_option_only_my_events: Only for things I watch or I'm involved in - label_user_mail_option_none: No events - field_member_of_group: Assignee's group - field_assigned_to_role: Assignee's role - notice_not_authorized_archived_project: The project you're trying to access has been archived. - label_principal_search: "Search for user or group:" - label_user_search: "Search for user:" - field_visible: Visible - setting_commit_logtime_activity_id: Activity for logged time - text_time_logged_by_changeset: Applied in changeset %{value}. - setting_commit_logtime_enabled: Enable time logging - notice_gantt_chart_truncated: The chart was truncated because it exceeds the maximum number of items that can be displayed (%{max}) - setting_gantt_items_limit: Maximum number of items displayed on the gantt chart - field_warn_on_leaving_unsaved: Warn me when leaving a page with unsaved text - text_warn_on_leaving_unsaved: The current page contains unsaved text that will be lost if you leave this page. - label_my_queries: My custom queries - text_journal_changed_no_detail: "%{label} updated" - label_news_comment_added: Comment added to a news - button_expand_all: Expand all - button_collapse_all: Collapse all - label_additional_workflow_transitions_for_assignee: Additional transitions allowed when the user is the assignee - label_additional_workflow_transitions_for_author: Additional transitions allowed when the user is the author - label_bulk_edit_selected_time_entries: Bulk edit selected time entries - text_time_entries_destroy_confirmation: Are you sure you want to delete the selected time entr(y/ies)? - label_role_anonymous: Anonymous - label_role_non_member: Non member - label_issue_note_added: Note added - label_issue_status_updated: Status updated - label_issue_priority_updated: Priority updated - label_issues_visibility_own: Issues created by or assigned to the user - field_issues_visibility: Issues visibility - label_issues_visibility_all: All issues - permission_set_own_issues_private: Set own issues public or private - field_is_private: Private - permission_set_issues_private: Set issues public or private - label_issues_visibility_public: All non private issues - text_issues_destroy_descendants_confirmation: This will also delete %{count} subtask(s). - field_commit_logs_encoding: Codare pentru mesaje - field_scm_path_encoding: Path encoding - text_scm_path_encoding_note: "Default: UTF-8" - field_path_to_repository: Path to repository - field_root_directory: Root directory - field_cvs_module: Module - field_cvsroot: CVSROOT - text_mercurial_repository_note: Local repository (e.g. /hgrepo, c:\hgrepo) - text_scm_command: Command - text_scm_command_version: Version - label_git_report_last_commit: Report last commit for files and directories - notice_issue_successful_create: Issue %{id} created. - label_between: between - setting_issue_group_assignment: Allow issue assignment to groups - label_diff: diff - text_git_repository_note: Repository is bare and local (e.g. /gitrepo, c:\gitrepo) - description_query_sort_criteria_direction: Sort direction - description_project_scope: Search scope - description_filter: Filter - description_user_mail_notification: Mail notification settings - description_message_content: Message content - description_available_columns: Available Columns - description_issue_category_reassign: Choose issue category - description_search: Searchfield - description_notes: Notes - description_choose_project: Projects - description_query_sort_criteria_attribute: Sort attribute - description_wiki_subpages_reassign: Choose new parent page - description_selected_columns: Selected Columns - label_parent_revision: Parent - label_child_revision: Child - error_scm_annotate_big_text_file: The entry cannot be annotated, as it exceeds the maximum text file size. - setting_default_issue_start_date_to_creation_date: Use current date as start date for new issues - button_edit_section: Edit this section - setting_repositories_encodings: Attachments and repositories encodings - description_all_columns: All Columns - button_export: Export - label_export_options: "%{export_format} export options" - error_attachment_too_big: This file cannot be uploaded because it exceeds the maximum allowed file size (%{max_size}) - notice_failed_to_save_time_entries: "Failed to save %{count} time entrie(s) on %{total} selected: %{ids}." - label_x_issues: - zero: 0 tichet - one: 1 tichet - other: "%{count} tichete" - label_repository_new: New repository - field_repository_is_default: Main repository - label_copy_attachments: Copy attachments - label_item_position: "%{position}/%{count}" - label_completed_versions: Completed versions - text_project_identifier_info: Only lower case letters (a-z), numbers, dashes and underscores are allowed.
    Once saved, the identifier cannot be changed. - field_multiple: Multiple values - setting_commit_cross_project_ref: Allow issues of all the other projects to be referenced and fixed - text_issue_conflict_resolution_add_notes: Add my notes and discard my other changes - text_issue_conflict_resolution_overwrite: Apply my changes anyway (previous notes will be kept but some changes may be overwritten) - notice_issue_update_conflict: The issue has been updated by an other user while you were editing it. - text_issue_conflict_resolution_cancel: Discard all my changes and redisplay %{link} - permission_manage_related_issues: Manage related issues - field_auth_source_ldap_filter: LDAP filter - label_search_for_watchers: Search for watchers to add - notice_account_deleted: Your account has been permanently deleted. - setting_unsubscribe: Allow users to delete their own account - button_delete_my_account: Delete my account - text_account_destroy_confirmation: |- - Are you sure you want to proceed? - Your account will be permanently deleted, with no way to reactivate it. - error_session_expired: Your session has expired. Please login again. - text_session_expiration_settings: "Warning: changing these settings may expire the current sessions including yours." - setting_session_lifetime: Session maximum lifetime - setting_session_timeout: Session inactivity timeout - label_session_expiration: Session expiration - permission_close_project: Close / reopen the project - button_close: Close - button_reopen: Reopen - project_status_active: active - project_status_closed: closed - project_status_archived: archived - text_project_closed: This project is closed and read-only. - notice_user_successful_create: User %{id} created. - field_core_fields: Standard fields - field_timeout: Timeout (in seconds) - setting_thumbnails_enabled: Display attachment thumbnails - setting_thumbnails_size: Thumbnails size (in pixels) - label_status_transitions: Status transitions - label_fields_permissions: Fields permissions - label_readonly: Read-only - label_required: Required - text_repository_identifier_info: Only lower case letters (a-z), numbers, dashes and underscores are allowed.
    Once saved, the identifier cannot be changed. - field_board_parent: Parent forum - label_attribute_of_project: Project's %{name} - label_attribute_of_author: Author's %{name} - label_attribute_of_assigned_to: Assignee's %{name} - label_attribute_of_fixed_version: Target version's %{name} - label_copy_subtasks: Copy subtasks - label_copied_to: copied to - label_copied_from: copied from - label_any_issues_in_project: any issues in project - label_any_issues_not_in_project: any issues not in project - field_private_notes: Private notes - permission_view_private_notes: View private notes - permission_set_notes_private: Set notes as private - label_no_issues_in_project: no issues in project - label_any: toate - label_last_n_weeks: last %{count} weeks - setting_cross_project_subtasks: Allow cross-project subtasks - label_cross_project_descendants: With subprojects - label_cross_project_tree: With project tree - label_cross_project_hierarchy: With project hierarchy - label_cross_project_system: With all projects - button_hide: Hide - setting_non_working_week_days: Non-working days - label_in_the_next_days: in the next - label_in_the_past_days: in the past - label_attribute_of_user: User's %{name} - text_turning_multiple_off: If you disable multiple values, multiple values will be - removed in order to preserve only one value per item. - label_attribute_of_issue: Issue's %{name} - permission_add_documents: Add documents - permission_edit_documents: Edit documents - permission_delete_documents: Delete documents - label_gantt_progress_line: Progress line - setting_jsonp_enabled: Enable JSONP support - field_inherit_members: Inherit members - field_closed_on: Closed - field_generate_password: Generate password - setting_default_projects_tracker_ids: Default trackers for new projects - label_total_time: Total - text_scm_config: You can configure your SCM commands in config/configuration.yml. Please restart the application after editing it. - text_scm_command_not_available: SCM command is not available. Please check settings on the administration panel. - setting_emails_header: Email header - notice_account_not_activated_yet: You haven't activated your account yet. If you want - to receive a new activation email, please click this link. - notice_account_locked: Your account is locked. - label_hidden: Hidden - label_visibility_private: to me only - label_visibility_roles: to these roles only - label_visibility_public: to any users - field_must_change_passwd: Must change password at next logon - notice_new_password_must_be_different: The new password must be different from the - current password - setting_mail_handler_excluded_filenames: Exclude attachments by name - text_convert_available: ImageMagick convert available (optional) - label_link: Link - label_only: only - label_drop_down_list: drop-down list - label_checkboxes: checkboxes - label_link_values_to: Link values to URL - setting_force_default_language_for_anonymous: Force default language for anonymous - users - setting_force_default_language_for_loggedin: Force default language for logged-in - users - label_custom_field_select_type: Select the type of object to which the custom field - is to be attached - label_issue_assigned_to_updated: Assignee updated - label_check_for_updates: Check for updates - label_latest_compatible_version: Latest compatible version - label_unknown_plugin: Unknown plugin - label_radio_buttons: radio buttons - label_group_anonymous: Anonymous users - label_group_non_member: Non member users - label_add_projects: Add projects - field_default_status: Default status - text_subversion_repository_note: 'Examples: file:///, http://, https://, svn://, svn+[tunnelscheme]://' - field_users_visibility: Users visibility - label_users_visibility_all: All active users - label_users_visibility_members_of_visible_projects: Members of visible projects - label_edit_attachments: Edit attached files - setting_link_copied_issue: Link issues on copy - label_link_copied_issue: Link copied issue - label_ask: Ask - label_search_attachments_yes: Search attachment filenames and descriptions - label_search_attachments_no: Do not search attachments - label_search_attachments_only: Search attachments only - label_search_open_issues_only: Open issues only - field_address: Email - setting_max_additional_emails: Maximum number of additional email addresses - label_email_address_plural: Emails - label_email_address_add: Add email address - label_enable_notifications: Enable notifications - label_disable_notifications: Disable notifications - setting_search_results_per_page: Search results per page - label_blank_value: blank - permission_copy_issues: Copy issues - error_password_expired: Your password has expired or the administrator requires you - to change it. - field_time_entries_visibility: Time logs visibility - setting_password_max_age: Require password change after - label_parent_task_attributes: Parent tasks attributes - label_parent_task_attributes_derived: Calculated from subtasks - label_parent_task_attributes_independent: Independent of subtasks - label_time_entries_visibility_all: All time entries - label_time_entries_visibility_own: Time entries created by the user - label_member_management: Member management - label_member_management_all_roles: All roles - label_member_management_selected_roles_only: Only these roles - label_password_required: Confirm your password to continue - label_total_spent_time: Overall spent time - notice_import_finished: "%{count} items have been imported" - notice_import_finished_with_errors: "%{count} out of %{total} items could not be imported" - error_invalid_file_encoding: The file is not a valid %{encoding} encoded file - error_invalid_csv_file_or_settings: The file is not a CSV file or does not match the - settings below - error_can_not_read_import_file: An error occurred while reading the file to import - permission_import_issues: Import issues - label_import_issues: Import issues - label_select_file_to_import: Select the file to import - label_fields_separator: Field separator - label_fields_wrapper: Field wrapper - label_encoding: Encoding - label_comma_char: Comma - label_semi_colon_char: Semicolon - label_quote_char: Quote - label_double_quote_char: Double quote - label_fields_mapping: Fields mapping - label_file_content_preview: File content preview - label_create_missing_values: Create missing values - button_import: Import - field_total_estimated_hours: Total estimated time - label_api: API - label_total_plural: Totals - label_assigned_issues: Assigned issues - label_field_format_enumeration: Key/value list - label_f_hour_short: '%{value} h' - field_default_version: Default version - error_attachment_extension_not_allowed: Attachment extension %{extension} is not allowed - setting_attachment_extensions_allowed: Allowed extensions - setting_attachment_extensions_denied: Disallowed extensions - label_any_open_issues: any open issues - label_no_open_issues: no open issues - label_default_values_for_new_users: Default values for new users - error_ldap_bind_credentials: Invalid LDAP Account/Password - setting_sys_api_key: cheie API - setting_lost_password: Parolă uitată - mail_subject_security_notification: Security notification - mail_body_security_notification_change: ! '%{field} was changed.' - mail_body_security_notification_change_to: ! '%{field} was changed to %{value}.' - mail_body_security_notification_add: ! '%{field} %{value} was added.' - mail_body_security_notification_remove: ! '%{field} %{value} was removed.' - mail_body_security_notification_notify_enabled: Email address %{value} now receives - notifications. - mail_body_security_notification_notify_disabled: Email address %{value} no longer - receives notifications. - mail_body_settings_updated: ! 'The following settings were changed:' - field_remote_ip: IP address - label_wiki_page_new: New wiki page - label_relations: Relations - button_filter: Filter - mail_body_password_updated: Your password has been changed. - label_no_preview: No preview available - error_no_tracker_allowed_for_new_issue_in_project: The project doesn't have any trackers - for which you can create an issue - label_tracker_all: All trackers - label_new_project_issue_tab_enabled: Display the "New issue" tab - setting_new_item_menu_tab: Project menu tab for creating new objects - label_new_object_tab_enabled: Display the "+" drop-down - error_no_projects_with_tracker_allowed_for_new_issue: There are no projects with trackers - for which you can create an issue - field_textarea_font: Font used for text areas - label_font_default: Default font - label_font_monospace: Monospaced font - label_font_proportional: Proportional font - setting_timespan_format: Time span format - label_table_of_contents: Table of contents - setting_commit_logs_formatting: Apply text formatting to commit messages - setting_mail_handler_enable_regex: Enable regular expressions - error_move_of_child_not_possible: 'Subtask %{child} could not be moved to the new - project: %{errors}' - error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted: Spent time cannot - be reassigned to an issue that is about to be deleted - setting_timelog_required_fields: Required fields for time logs - label_attribute_of_object: '%{object_name}''s %{name}' - label_user_mail_option_only_assigned: Only for things I watch or I am assigned to - label_user_mail_option_only_owner: Only for things I watch or I am the owner of - warning_fields_cleared_on_bulk_edit: Changes will result in the automatic deletion - of values from one or more fields on the selected objects - field_updated_by: Updated by - field_last_updated_by: Last updated by - field_full_width_layout: Full width layout - label_last_notes: Last notes - field_digest: Checksum - field_default_assigned_to: Default assignee - setting_show_custom_fields_on_registration: Show custom fields on registration - permission_view_news: View news - label_no_preview_alternative_html: No preview available. %{link} the file instead. - label_no_preview_download: Download - setting_close_duplicate_issues: Close duplicate issues automatically - error_exceeds_maximum_hours_per_day: Cannot log more than %{max_hours} hours on the - same day (%{logged_hours} hours have already been logged) - setting_time_entry_list_defaults: Timelog list defaults - setting_timelog_accept_0_hours: Accept time logs with 0 hours - setting_timelog_max_hours_per_day: Maximum hours that can be logged per day and user - label_x_revisions: "%{count} revisions" - error_can_not_delete_auth_source: This authentication mode is in use and cannot be - deleted. - button_actions: Actions - mail_body_lost_password_validity: Please be aware that you may change the password - only once using this link. - text_login_required_html: When not requiring authentication, public projects and their - contents are openly available on the network. You can edit - the applicable permissions. - label_login_required_yes: 'Yes' - label_login_required_no: No, allow anonymous access to public projects - text_project_is_public_non_member: Public projects and their contents are available - to all logged-in users. - text_project_is_public_anonymous: Public projects and their contents are openly available - on the network. - label_version_and_files: Versions (%{count}) and Files - label_ldap: LDAP - label_ldaps_verify_none: LDAPS (without certificate check) - label_ldaps_verify_peer: LDAPS - label_ldaps_warning: It is recommended to use an encrypted LDAPS connection with certificate - check to prevent any manipulation during the authentication process. - label_nothing_to_preview: Nothing to preview - error_token_expired: This password recovery link has expired, please try again. - error_spent_on_future_date: Cannot log time on a future date - setting_timelog_accept_future_dates: Accept time logs on future dates - label_delete_link_to_subtask: Șterge asocierea - error_not_allowed_to_log_time_for_other_users: You are not allowed to log time - for other users - permission_log_time_for_other_users: Log spent time for other users - label_tomorrow: tomorrow - label_next_week: next week - label_next_month: next month - text_role_no_workflow: No workflow defined for this role - text_status_no_workflow: No tracker uses this status in the workflows - setting_mail_handler_preferred_body_part: Preferred part of multipart (HTML) emails - setting_show_status_changes_in_mail_subject: Show status changes in issue mail notifications - subject - label_inherited_from_parent_project: Inherited from parent project - label_inherited_from_group: Inherited from group %{name} - label_trackers_description: Trackers description - label_open_trackers_description: View all trackers description - label_preferred_body_part_text: Text - label_preferred_body_part_html: HTML (experimental) - field_parent_issue_subject: Parent task subject - permission_edit_own_issues: Edit own issues - text_select_apply_tracker: Select tracker - label_updated_issues: Updated issues - text_avatar_server_config_html: The current avatar server is %{url}. - You can configure it in config/configuration.yml. - setting_gantt_months_limit: Maximum number of months displayed on the gantt chart - permission_import_time_entries: Import time entries - label_import_notifications: Send email notifications during the import - text_gs_available: ImageMagick PDF support available (optional) - field_recently_used_projects: Number of recently used projects in jump box - label_optgroup_bookmarks: Bookmarks - label_optgroup_others: Other projects - label_optgroup_recents: Recently used - button_project_bookmark: Add bookmark - button_project_bookmark_delete: Remove bookmark - field_history_default_tab: Issue's history default tab - label_issue_history_properties: Property changes - label_issue_history_notes: Notes - label_last_tab_visited: Last visited tab - field_unique_id: Unique ID - text_no_subject: no subject - setting_password_required_char_classes: Required character classes for passwords - label_password_char_class_uppercase: uppercase letters - label_password_char_class_lowercase: lowercase letters - label_password_char_class_digits: digits - label_password_char_class_special_chars: special characters - text_characters_must_contain: Must contain %{character_classes}. - label_starts_with: starts with - label_ends_with: ends with - label_issue_fixed_version_updated: Target version updated - setting_project_list_defaults: Projects list defaults - label_display_type: Display results as - label_display_type_list: List - label_display_type_board: Board - label_my_bookmarks: My bookmarks - label_import_time_entries: Import time entries diff --git a/config/locales/ru.yml b/config/locales/ru.yml deleted file mode 100644 index d540343..0000000 --- a/config/locales/ru.yml +++ /dev/null @@ -1,1401 +0,0 @@ -# Russian localization for Ruby on Rails 2.2+ -# by Yaroslav Markin -# -# Be sure to check out "russian" gem (http://github.com/yaroslav/russian) for -# full Russian language support in Rails (month names, pluralization, etc). -# The following is an excerpt from that gem. -# -# Для полноценной поддержки русского языка (варианты названий месяцев, -# плюрализация и так далее) в Rails 2.2 нужно использовать gem "russian" -# (http://github.com/yaroslav/russian). Следующие данные -- выдержка их него, чтобы -# была возможность минимальной локализации приложения на русский язык. - -ru: - direction: ltr - date: - formats: - default: "%d.%m.%Y" - short: "%d %b" - long: "%d %B %Y" - - day_names: [воскресенье, понедельник, вторник, среда, четверг, пятница, суббота] - standalone_day_names: [Воскресенье, Понедельник, Вторник, Среда, Четверг, Пятница, Суббота] - abbr_day_names: [Вс, Пн, Вт, Ср, Чт, Пт, Сб] - - month_names: [~, января, февраля, марта, апреля, мая, июня, июля, августа, сентября, октября, ноября, декабря] - # see russian gem for info on "standalone" day names - standalone_month_names: [~, Январь, Февраль, Март, Апрель, Май, Июнь, Июль, Август, Сентябрь, Октябрь, Ноябрь, Декабрь] - abbr_month_names: [~, янв., февр., марта, апр., мая, июня, июля, авг., сент., окт., нояб., дек.] - standalone_abbr_month_names: [~, янв., февр., март, апр., май, июнь, июль, авг., сент., окт., нояб., дек.] - - order: - - :day - - :month - - :year - - time: - formats: - default: "%a, %d %b %Y, %H:%M:%S %z" - time: "%H:%M" - short: "%d %b, %H:%M" - long: "%d %B %Y, %H:%M" - - am: "утра" - pm: "вечера" - - number: - format: - separator: "," - delimiter: " " - precision: 3 - - currency: - format: - format: "%n %u" - unit: "руб." - separator: "." - delimiter: " " - precision: 2 - - percentage: - format: - delimiter: "" - - precision: - format: - delimiter: "" - - human: - format: - delimiter: "" - precision: 3 - # Rails 2.2 - # storage_units: [байт, КБ, МБ, ГБ, ТБ] - - # Rails 2.3 - storage_units: - # Storage units output formatting. - # %u is the storage unit, %n is the number (default: 2 MB) - format: "%n %u" - units: - byte: - one: "байт" - few: "байта" - many: "байт" - other: "байта" - kb: "КБ" - mb: "МБ" - gb: "ГБ" - tb: "ТБ" - - datetime: - distance_in_words: - half_a_minute: "меньше минуты" - less_than_x_seconds: - one: "меньше %{count} секунды" - few: "меньше %{count} секунд" - many: "меньше %{count} секунд" - other: "меньше %{count} секунды" - x_seconds: - one: "%{count} секунда" - few: "%{count} секунды" - many: "%{count} секунд" - other: "%{count} секунды" - less_than_x_minutes: - one: "меньше %{count} минуты" - few: "меньше %{count} минут" - many: "меньше %{count} минут" - other: "меньше %{count} минуты" - x_minutes: - one: "%{count} минуту" - few: "%{count} минуты" - many: "%{count} минут" - other: "%{count} минуты" - about_x_hours: - one: "около %{count} часа" - few: "около %{count} часов" - many: "около %{count} часов" - other: "около %{count} часа" - x_hours: - one: "%{count} час" - few: "%{count} часа" - many: "%{count} часов" - other: "%{count} часа" - x_days: - one: "%{count} день" - few: "%{count} дня" - many: "%{count} дней" - other: "%{count} дня" - about_x_months: - one: "около %{count} месяца" - few: "около %{count} месяцев" - many: "около %{count} месяцев" - other: "около %{count} месяца" - x_months: - one: "%{count} месяц" - few: "%{count} месяца" - many: "%{count} месяцев" - other: "%{count} месяца" - about_x_years: - one: "около %{count} года" - few: "около %{count} лет" - many: "около %{count} лет" - other: "около %{count} лет" - over_x_years: - one: "больше %{count} года" - few: "больше %{count} лет" - many: "больше %{count} лет" - other: "больше %{count} лет" - almost_x_years: - one: "почти %{count} год" - few: "почти %{count} года" - many: "почти %{count} лет" - other: "почти %{count} года" - prompts: - year: "Год" - month: "Месяц" - day: "День" - hour: "Часов" - minute: "Минут" - second: "Секунд" - - activerecord: - errors: - template: - header: - one: "%{model}: сохранение не удалось из-за %{count} ошибки" - few: "%{model}: сохранение не удалось из-за %{count} ошибок" - many: "%{model}: сохранение не удалось из-за %{count} ошибок" - other: "%{model}: сохранение не удалось из-за %{count} ошибки" - - body: "Проблемы возникли со следующими полями:" - - messages: - inclusion: "имеет непредусмотренное значение" - exclusion: "имеет зарезервированное значение" - invalid: "имеет неверное значение" - confirmation: "не совпадает с подтверждением" - accepted: "нужно подтвердить" - empty: "не может быть пустым" - blank: "не может быть пустым" - too_long: - one: "слишком большой длины (не может быть больше чем %{count} символ)" - few: "слишком большой длины (не может быть больше чем %{count} символа)" - many: "слишком большой длины (не может быть больше чем %{count} символов)" - other: "слишком большой длины (не может быть больше чем %{count} символа)" - too_short: - one: "недостаточной длины (не может быть меньше %{count} символа)" - few: "недостаточной длины (не может быть меньше %{count} символов)" - many: "недостаточной длины (не может быть меньше %{count} символов)" - other: "недостаточной длины (не может быть меньше %{count} символа)" - wrong_length: - one: "неверной длины (может быть длиной ровно %{count} символ)" - few: "неверной длины (может быть длиной ровно %{count} символа)" - many: "неверной длины (может быть длиной ровно %{count} символов)" - other: "неверной длины (может быть длиной ровно %{count} символа)" - taken: "уже существует" - not_a_number: "не является числом" - greater_than: "может иметь значение большее %{count}" - greater_than_or_equal_to: "может иметь значение большее или равное %{count}" - equal_to: "может иметь лишь значение, равное %{count}" - less_than: "может иметь значение меньшее чем %{count}" - less_than_or_equal_to: "может иметь значение меньшее или равное %{count}" - odd: "может иметь лишь нечетное значение" - even: "может иметь лишь четное значение" - greater_than_start_date: "должна быть позднее даты начала" - not_same_project: "не относится к одному проекту" - circular_dependency: "Такая связь приведет к циклической зависимости" - cant_link_an_issue_with_a_descendant: "Задача не может быть связана со своей подзадачей" - earlier_than_minimum_start_date: "не может быть раньше %{date} из-за предыдущих задач" - not_a_regexp: "не является допустимым регулярным выражением" - open_issue_with_closed_parent: "Открытая задача не может быть добавлена к закрытой родительской задаче" - must_contain_uppercase: "должен содержать заглавные латинские буквы (A-Z)" - must_contain_lowercase: "должен содержать строчные латинские буквы (a-z)" - must_contain_digits: "должен содержать цифры (0-9)" - must_contain_special_chars: "должен содержать специальные символы (!, $, %, ...)" - - support: - array: - # Rails 2.2 - sentence_connector: "и" - skip_last_comma: true - - # Rails 2.3 - words_connector: ", " - two_words_connector: " и " - last_word_connector: " и " - - actionview_instancetag_blank_option: Выберите - - button_activate: Активировать - button_add: Добавить - button_annotate: Авторство - button_apply: Применить - button_archive: Архивировать - button_back: Назад - button_cancel: Отмена - button_change_password: Изменить пароль - button_change: Изменить - button_check_all: Отметить все - button_clear: Очистить - button_configure: Параметры - button_copy: Копировать - button_create: Создать - button_create_and_continue: Создать и продолжить - button_delete: Удалить - button_download: Загрузить - button_edit: Редактировать - button_edit_associated_wikipage: "Редактировать связанную wiki-страницу: %{page_title}" - button_list: Список - button_lock: Заблокировать - button_login: Вход - button_log_time: Добавить трудозатраты - button_move: Переместить - button_quote: Цитировать - button_rename: Переименовать - button_reply: Ответить - button_reset: Сбросить - button_rollback: Вернуться к данной версии - button_save: Сохранить - button_sort: Сортировать - button_submit: Принять - button_test: Проверить - button_unarchive: Разархивировать - button_uncheck_all: Очистить - button_unlock: Разблокировать - button_unwatch: Не следить - button_update: Обновить - button_view: Просмотреть - button_watch: Следить - - default_activity_design: Проектирование - default_activity_development: Разработка - default_doc_category_tech: Техническая документация - default_doc_category_user: Пользовательская документация - default_issue_status_in_progress: В работе - default_issue_status_closed: Закрыта - default_issue_status_feedback: Нужен отклик - default_issue_status_new: Новая - default_issue_status_rejected: Отклонена - default_issue_status_resolved: Решена - default_priority_high: Высокий - default_priority_immediate: Немедленный - default_priority_low: Низкий - default_priority_normal: Нормальный - default_priority_urgent: Срочный - default_role_developer: Разработчик - default_role_manager: Менеджер - default_role_reporter: Репортёр - default_tracker_bug: Ошибка - default_tracker_feature: Улучшение - default_tracker_support: Поддержка - - enumeration_activities: Действия (учёт времени) - enumeration_doc_categories: Категории документов - enumeration_issue_priorities: Приоритеты задач - - error_can_not_remove_role: Эта роль используется и не может быть удалена. - error_can_not_delete_custom_field: Невозможно удалить настраиваемое поле - error_can_not_delete_tracker: Этот трекер содержит задачи и не может быть удален. - error_can_t_load_default_data: "Конфигурация по умолчанию не была загружена: %{value}" - error_issue_not_found_in_project: Задача не была найдена или не прикреплена к этому проекту - error_scm_annotate: "Данные отсутствуют или не могут быть подписаны." - error_scm_command_failed: "Ошибка доступа к хранилищу: %{value}" - error_scm_not_found: Хранилище не содержит записи и/или исправления. - error_unable_to_connect: Невозможно подключиться (%{value}) - error_unable_delete_issue_status: Невозможно удалить статус задачи (%{value}) - - field_account: Учётная запись - field_activity: Деятельность - field_admin: Администратор - field_assignable: Задача может быть назначена этой роли - field_assigned_to: Назначена - field_attr_firstname: Имя - field_attr_lastname: Фамилия - field_attr_login: Атрибут Login - field_attr_mail: email - field_author: Автор - field_auth_source: Режим аутентификации - field_base_dn: BaseDN - field_category: Категория - field_column_names: Столбцы - field_comments: Комментарий - field_comments_sorting: Отображение комментариев - field_content: Содержимое - field_created_on: Создано - field_default_value: Значение по умолчанию - field_delay: Отложить - field_description: Описание - field_done_ratio: Готовность - field_downloads: Загрузки - field_due_date: Срок завершения - field_editable: Редактируемое - field_effective_date: Дата - field_estimated_hours: Оценка временных затрат - field_field_format: Формат - field_filename: Файл - field_filesize: Размер - field_firstname: Имя - field_fixed_version: Версия - field_hide_mail: Скрывать мой email - field_homepage: Стартовая страница - field_host: Компьютер - field_hours: час(а,ов) - field_identifier: Уникальный идентификатор - field_identity_url: OpenID URL - field_is_closed: Задача закрыта - field_is_default: Значение по умолчанию - field_is_filter: Используется в качестве фильтра - field_is_for_all: Для всех проектов - field_is_in_roadmap: Задачи, отображаемые в оперативном плане - field_is_public: Общедоступный - field_is_required: Обязательное - field_issue_to: Связанные задачи - field_issue: Задача - field_language: Язык - field_last_login_on: Последнее подключение - field_lastname: Фамилия - field_login: Пользователь - field_mail: Email - field_mail_notification: Уведомления по email - field_max_length: Максимальная длина - field_min_length: Минимальная длина - field_name: Имя - field_new_password: Новый пароль - field_notes: Примечания - field_onthefly: Создание пользователя на лету - field_parent_title: Родительская страница - field_parent: Родительский проект - field_parent_issue: Родительская задача - field_password_confirmation: Подтверждение - field_password: Пароль - field_port: Порт - field_possible_values: Возможные значения - field_priority: Приоритет - field_project: Проект - field_redirect_existing_links: Перенаправить существующие ссылки - field_regexp: Регулярное выражение - field_role: Роль - field_searchable: Доступно для поиска - field_spent_on: Дата - field_start_date: Дата начала - field_start_page: Стартовая страница - field_status: Статус - field_subject: Тема - field_subproject: Подпроект - field_summary: Краткое описание - field_text: Текстовое поле - field_time_entries: Трудозатраты - field_time_zone: Часовой пояс - field_title: Заголовок - field_tracker: Трекер - field_type: Тип - field_updated_on: Обновлено - field_url: URL - field_user: Пользователь - field_value: Значение - field_version: Версия - field_watcher: Наблюдатель - - general_csv_decimal_separator: ',' - general_csv_encoding: UTF-8 - general_csv_separator: ';' - general_pdf_fontname: freesans - general_pdf_monospaced_fontname: freemono - general_first_day_of_week: '1' - general_lang_name: 'Russian (Русский)' - general_text_no: 'нет' - general_text_No: 'Нет' - general_text_yes: 'да' - general_text_Yes: 'Да' - - label_activity: Действия - label_add_another_file: Добавить ещё один файл - label_added_time_by: "Добавил(а) %{author} %{age} назад" - label_added: добавлено - label_add_note: Добавить замечание - label_administration: Администрирование - label_age: Возраст - label_ago: дней(я) назад - label_all_words: Все слова - label_all: все - label_and_its_subprojects: "%{value} и все подпроекты" - label_applied_status: Применимый статус - label_ascending: По возрастанию - label_assigned_to_me_issues: Мои задачи - label_associated_revisions: Связанные редакции - label_attachment: Файл - label_attachment_delete: Удалить файл - label_attachment_new: Новый файл - label_attachment_plural: Файлы - label_attribute: Атрибут - label_attribute_plural: Атрибуты - label_authentication: Аутентификация - label_auth_source: Режим аутентификации - label_auth_source_new: Новый режим аутентификации - label_auth_source_plural: Режимы аутентификации - label_blocked_by: блокируется - label_blocks: блокирует - label_board: Форум - label_board_new: Новый форум - label_board_plural: Форумы - label_boolean: Логический - label_browse: Обзор - label_bulk_edit_selected_issues: Редактировать все выбранные задачи - label_calendar: Календарь - label_change_plural: Правки - label_change_properties: Изменить свойства - label_change_status: Изменить статус - label_change_view_all: Просмотреть все изменения - label_changes_details: Подробности по всем изменениям - label_changeset_plural: Изменения - label_chronological_order: В хронологическом порядке - label_closed_issues: закрыто - label_closed_issues_plural: закрыто - label_closed_issues_plural2: закрыто - label_closed_issues_plural5: закрыто - label_comment: комментарий - label_comment_add: Оставить комментарий - label_comment_added: Добавленный комментарий - label_comment_delete: Удалить комментарии - label_comment_plural: Комментарии - label_comment_plural2: комментария - label_comment_plural5: комментариев - label_commits_per_author: Изменений на пользователя - label_commits_per_month: Изменений в месяц - label_confirmation: Подтверждение - label_contains: содержит - label_copied: скопировано - label_copy_workflow_from: Скопировать последовательность действий из - label_current_status: Текущий статус - label_current_version: Текущая версия - label_custom_field: Настраиваемое поле - label_custom_field_new: Новое настраиваемое поле - label_custom_field_plural: Настраиваемые поля - label_date_from: С - label_date_from_to: С %{start} по %{end} - label_date_range: временной интервал - label_date_to: по - label_date: Дата - label_day_plural: дней(я) - label_default: По умолчанию - label_default_columns: Столбцы по умолчанию - label_deleted: удалено - label_descending: По убыванию - label_details: Подробности - label_diff_inline: в тексте - label_diff_side_by_side: рядом - label_disabled: отключено - label_display: Отображение - label_display_per_page: "На страницу: %{value}" - label_document: Документ - label_document_added: Добавлен документ - label_document_new: Новый документ - label_document_plural: Документы - label_downloads_abbr: Скачиваний - label_duplicated_by: дублируется - label_duplicates: дублирует - label_enumeration_new: Новое значение - label_enumerations: Списки значений - label_environment: Окружение - label_equals: соответствует - label_example: Пример - label_export_to: Экспортировать в - label_feed_plural: Atom - label_feeds_access_key_created_on: "Ключ доступа Atom создан %{value} назад" - label_f_hour: "%{value} час" - label_f_hour_plural: "%{value} часов" - label_file_added: Добавлен файл - label_file_plural: Файлы - label_filter_add: Добавить фильтр - label_filter_plural: Фильтры - label_float: С плавающей точкой - label_follows: предыдущая - label_gantt: Диаграмма Ганта - label_general: Общее - label_generate_key: Сгенерировать ключ - label_greater_or_equal: ">=" - label_help: Помощь - label_history: История - label_home: Домашняя страница - label_incoming_emails: Приём сообщений - label_index_by_date: История страниц - label_index_by_title: Оглавление - label_information_plural: Информация - label_information: Информация - label_in_less_than: менее чем - label_in_more_than: более чем - label_integer: Целый - label_internal: Внутренний - label_in: в - label_issue: Задача - label_issue_added: Добавлена задача - label_issue_category_new: Новая категория - label_issue_category_plural: Категории задачи - label_issue_category: Категория задачи - label_issue_new: Новая задача - label_issue_plural: Задачи - label_issues_by: "Сортировать по %{value}" - label_issue_status_new: Новый статус - label_issue_status_plural: Статусы задач - label_issue_status: Статус задачи - label_issue_tracking: Задачи - label_issue_updated: Обновлена задача - label_issue_view_all: Просмотреть все задачи - label_issue_watchers: Наблюдатели - label_jump_to_a_project: Перейти к проекту... - label_language_based: На основе языка - label_last_changes: "менее %{count} изменений" - label_last_login: Последнее подключение - label_last_month: прошлый месяц - label_last_n_days: "последние %{count} дней" - label_last_week: прошлая неделя - label_latest_revision: Последняя редакция - label_latest_revision_plural: Последние редакции - label_ldap_authentication: Авторизация с помощью LDAP - label_less_or_equal: <= - label_less_than_ago: менее, чем дней(я) назад - label_list: Список - label_loading: Загрузка... - label_logged_as: Вошли как - label_login: Войти - label_login_with_open_id_option: или войти с помощью OpenID - label_logout: Выйти - label_max_size: Максимальный размер - label_member_new: Новый участник - label_member: Участник - label_member_plural: Участники - label_message_last: Последнее сообщение - label_message_new: Новое сообщение - label_message_plural: Сообщения - label_message_posted: Добавлено сообщение - label_me: мне - label_min_max_length: Минимальная - максимальная длина - label_modified: изменено - label_module_plural: Модули - label_months_from: месяцев(ца) с - label_month: Месяц - label_more_than_ago: более, чем дней(я) назад - label_my_account: Моя учётная запись - label_my_page: Моя страница - label_my_projects: Мои проекты - label_new: Новый - label_new_statuses_allowed: Разрешенные новые статусы - label_news_added: Добавлена новость - label_news_latest: Последние новости - label_news_new: Добавить новость - label_news_plural: Новости - label_news_view_all: Посмотреть все новости - label_news: Новости - label_next: Следующее - label_nobody: никто - label_no_change_option: (Нет изменений) - label_no_data: Нет данных для отображения - label_none: отсутствует - label_not_contains: не содержит - label_not_equals: не соответствует - label_open_issues: открыто - label_open_issues_plural: открыто - label_open_issues_plural2: открыто - label_open_issues_plural5: открыто - label_optional_description: Описание (необязательно) - label_options: Опции - label_overall_activity: Сводный отчёт действий - label_overview: Обзор - label_password_lost: Восстановление пароля - label_permissions_report: Отчёт по правам доступа - label_permissions: Права доступа - label_plugins: Модули - label_precedes: следующая - label_preferences: Предпочтения - label_preview: Предпросмотр - label_previous: Предыдущее - label_profile: Профиль - label_project: Проект - label_project_all: Все проекты - label_project_copy_notifications: Отправлять уведомления по электронной почте при копировании проекта - label_project_latest: Последние проекты - label_project_new: Новый проект - label_project_plural: Проекты - label_project_plural2: проекта - label_project_plural5: проектов - label_public_projects: Общие проекты - label_query: Сохранённый запрос - label_query_new: Новый запрос - label_query_plural: Сохранённые запросы - label_read: Чтение... - label_register: Регистрация - label_registered_on: Зарегистрирован(а) - label_registration_activation_by_email: активация учётных записей по email - label_registration_automatic_activation: автоматическая активация учётных записей - label_registration_manual_activation: активировать учётные записи вручную - label_related_issues: Связанные задачи - label_relates_to: связана с - label_relation_delete: Удалить связь - label_relation_new: Новая связь - label_renamed: переименовано - label_reply_plural: Ответы - label_report: Отчёт - label_report_plural: Отчёты - label_reported_issues: Созданные задачи - label_repository: Хранилище - label_repository_plural: Хранилища - label_result_plural: Результаты - label_reverse_chronological_order: В обратном порядке - label_revision: Редакция - label_revision_plural: Редакции - label_roadmap: Оперативный план - label_roadmap_due_in: "В срок %{value}" - label_roadmap_no_issues: Нет задач для данной версии - label_roadmap_overdue: "опоздание %{value}" - label_role: Роль - label_role_and_permissions: Роли и права доступа - label_role_new: Новая роль - label_role_plural: Роли - label_scm: Тип хранилища - label_search: Поиск - label_search_titles_only: Искать только в названиях - label_send_information: Отправить пользователю информацию по учётной записи - label_send_test_email: Послать email для проверки - label_settings: Настройки - label_show_completed_versions: Показывать завершённые версии - label_sort: Сортировать - label_sort_by: "Сортировать по %{value}" - label_sort_higher: Вверх - label_sort_highest: В начало - label_sort_lower: Вниз - label_sort_lowest: В конец - label_spent_time: Трудозатраты - label_statistics: Статистика - label_stay_logged_in: Оставаться в системе - label_string: Текст - label_subproject_plural: Подпроекты - label_subtask_plural: Подзадачи - label_text: Длинный текст - label_theme: Тема - label_this_month: этот месяц - label_this_week: на этой неделе - label_this_year: этот год - label_time_tracking: Учёт времени - label_today: сегодня - label_topic_plural: Темы - label_total: Всего - label_tracker: Трекер - label_tracker_new: Новый трекер - label_tracker_plural: Трекеры - label_updated_time: "Обновлено %{value} назад" - label_updated_time_by: "Обновлено %{author} %{age} назад" - label_used_by: Используется - label_user: Пользователь - label_user_activity: "Действия пользователя %{value}" - label_user_mail_no_self_notified: "Не извещать об изменениях, которые я сделал сам" - label_user_mail_option_all: "О всех событиях во всех моих проектах" - label_user_mail_option_selected: "О всех событиях только в выбранном проекте..." - label_user_mail_option_only_my_events: Только для объектов, которые я отслеживаю или в которых участвую - label_user_new: Новый пользователь - label_user_plural: Пользователи - label_version: Версия - label_version_new: Новая версия - label_version_plural: Версии - label_view_diff: Просмотреть отличия - label_view_revisions: Просмотреть редакции - label_watched_issues: Отслеживаемые задачи - label_week: Неделя - label_wiki: Wiki - label_wiki_edit: Редактирование Wiki - label_wiki_edit_plural: Wiki - label_wiki_page: Страница Wiki - label_wiki_page_plural: Страницы Wiki - label_workflow: Последовательность действий - label_x_closed_issues_abbr: - zero: "0 закрыто" - one: "%{count} закрыта" - few: "%{count} закрыто" - many: "%{count} закрыто" - other: "%{count} закрыто" - label_x_comments: - zero: "нет комментариев" - one: "%{count} комментарий" - few: "%{count} комментария" - many: "%{count} комментариев" - other: "%{count} комментариев" - label_x_open_issues_abbr: - zero: "0 открыто" - one: "%{count} открыта" - few: "%{count} открыто" - many: "%{count} открыто" - other: "%{count} открыто" - label_x_projects: - zero: "нет проектов" - one: "%{count} проект" - few: "%{count} проекта" - many: "%{count} проектов" - other: "%{count} проектов" - label_year: Год - label_yesterday: вчера - - mail_body_account_activation_request: "Зарегистрирован новый пользователь (%{value}). Учётная запись ожидает Вашего утверждения:" - mail_body_account_information: Информация о Вашей учётной записи - mail_body_account_information_external: "Вы можете использовать Вашу %{value} учётную запись для входа." - mail_body_lost_password: 'Для изменения пароля пройдите по следующей ссылке:' - mail_body_register: 'Для активации учётной записи пройдите по следующей ссылке:' - mail_body_reminder: "%{count} назначенных на Вас задач на следующие %{days} дней:" - mail_subject_account_activation_request: "Запрос на активацию пользователя в системе %{value}" - mail_subject_lost_password: "Ваш %{value} пароль" - mail_subject_register: "Активация учётной записи %{value}" - mail_subject_reminder: "%{count} назначенных на Вас задач в ближайшие %{days} дней" - - notice_account_activated: Ваша учётная запись активирована. Вы можете войти. - notice_account_invalid_credentials: Неправильное имя пользователя или пароль - notice_account_lost_email_sent: Вам отправлено письмо с инструкциями по выбору нового пароля. - notice_account_password_updated: Пароль успешно обновлён. - notice_account_pending: "Ваша учётная запись создана и ожидает подтверждения администратора." - notice_account_register_done: Учётная запись успешно создана. Для активации Вашей учётной записи пройдите по ссылке, которая выслана Вам по электронной почте. - notice_account_unknown_email: Неизвестный пользователь. - notice_account_updated: Учётная запись успешно обновлена. - notice_account_wrong_password: Неверный пароль - notice_can_t_change_password: Для данной учётной записи используется источник внешней аутентификации. Невозможно изменить пароль. - notice_default_data_loaded: Была загружена конфигурация по умолчанию. - notice_email_error: "Во время отправки письма произошла ошибка (%{value})" - notice_email_sent: "Отправлено письмо %{value}" - notice_failed_to_save_issues: "Не удалось сохранить %{count} пункт(ов) из %{total} выбранных: %{ids}." - notice_failed_to_save_members: "Не удалось сохранить участника(ов): %{errors}." - notice_feeds_access_key_reseted: Ваш ключ доступа Atom был сброшен. - notice_file_not_found: Страница, на которую Вы пытаетесь зайти, не существует или удалена. - notice_locking_conflict: Информация обновлена другим пользователем. - notice_no_issue_selected: "Не выбрано ни одной задачи! Пожалуйста, отметьте задачи, которые Вы хотите отредактировать." - notice_not_authorized: У Вас нет прав для посещения данной страницы. - notice_successful_connection: Подключение успешно установлено. - notice_successful_create: Создание успешно. - notice_successful_delete: Удаление успешно. - notice_successful_update: Обновление успешно. - notice_unable_delete_version: Невозможно удалить версию. - - permission_add_issues: Добавление задач - permission_add_issue_notes: Добавление примечаний - permission_add_issue_watchers: Добавление наблюдателей - permission_add_messages: Отправка сообщений - permission_browse_repository: Просмотр хранилища - permission_comment_news: Комментирование новостей - permission_commit_access: Изменение файлов в хранилище - permission_delete_issues: Удаление задач - permission_delete_messages: Удаление сообщений - permission_delete_own_messages: Удаление собственных сообщений - permission_delete_wiki_pages: Удаление wiki-страниц - permission_delete_wiki_pages_attachments: Удаление прикреплённых файлов - permission_edit_issue_notes: Редактирование примечаний - permission_edit_issues: Редактирование задач - permission_edit_messages: Редактирование сообщений - permission_edit_own_issue_notes: Редактирование собственных примечаний - permission_edit_own_messages: Редактирование собственных сообщений - permission_edit_own_time_entries: Редактирование собственного учёта времени - permission_edit_project: Редактирование проектов - permission_edit_time_entries: Редактирование учёта времени - permission_edit_wiki_pages: Редактирование wiki-страниц - permission_export_wiki_pages: Экспорт wiki-страниц - permission_log_time: Учёт трудозатрат - permission_view_changesets: Просмотр изменений хранилища - permission_view_time_entries: Просмотр трудозатрат - permission_manage_project_activities: Управление типами действий для проекта - permission_manage_boards: Управление форумами - permission_manage_categories: Управление категориями задач - permission_manage_files: Управление файлами - permission_manage_issue_relations: Управление связыванием задач - permission_manage_members: Управление участниками - permission_manage_news: Управление новостями - permission_manage_public_queries: Управление общими запросами - permission_manage_repository: Управление хранилищем - permission_manage_subtasks: Управление подзадачами - permission_manage_versions: Управление версиями - permission_manage_wiki: Управление Wiki - permission_protect_wiki_pages: Блокирование wiki-страниц - permission_rename_wiki_pages: Переименование wiki-страниц - permission_save_queries: Сохранение запросов - permission_select_project_modules: Выбор модулей проекта - permission_view_calendar: Просмотр календаря - permission_view_documents: Просмотр документов - permission_view_files: Просмотр файлов - permission_view_gantt: Просмотр диаграммы Ганта - permission_view_issue_watchers: Просмотр списка наблюдателей - permission_view_messages: Просмотр сообщений - permission_view_wiki_edits: Просмотр истории Wiki - permission_view_wiki_pages: Просмотр Wiki - - project_module_boards: Форумы - project_module_documents: Документы - project_module_files: Файлы - project_module_issue_tracking: Задачи - project_module_news: Новости - project_module_repository: Хранилище - project_module_time_tracking: Учёт времени - project_module_wiki: Wiki - project_module_gantt: Диаграмма Ганта - project_module_calendar: Календарь - - setting_activity_days_default: Количество дней, отображаемых в Действиях - setting_app_title: Название приложения - setting_attachment_max_size: Максимальный размер вложения - setting_autofetch_changesets: Автоматически следить за изменениями хранилища - setting_autologin: Автоматический вход - setting_bcc_recipients: Использовать скрытые копии (BCC) - setting_cache_formatted_text: Кешировать форматированный текст - setting_commit_fix_keywords: Назначение ключевых слов - setting_commit_ref_keywords: Ключевые слова для поиска - setting_cross_project_issue_relations: Разрешить пересечение задач по проектам - setting_date_format: Формат даты - setting_default_language: Язык по умолчанию - setting_default_notification_option: Способ оповещения по умолчанию - setting_default_projects_public: Новые проекты являются общедоступными - setting_diff_max_lines_displayed: Максимальное число строк для diff - setting_display_subprojects_issues: Отображение подпроектов по умолчанию - setting_emails_footer: Подстрочные примечания письма - setting_enabled_scm: Включённые SCM - setting_feeds_limit: Ограничение количества заголовков для Atom потока - setting_file_max_size_displayed: Максимальный размер текстового файла для отображения - setting_gravatar_enabled: Использовать аватар пользователя из Gravatar - setting_host_name: Имя компьютера - setting_issue_list_default_columns: Столбцы, отображаемые в списке задач по умолчанию - setting_issues_export_limit: Ограничение по экспортируемым задачам - setting_login_required: Необходима аутентификация - setting_mail_from: Исходящий email адрес - setting_mail_handler_api_enabled: Включить веб-сервис для входящих сообщений - setting_mail_handler_api_key: API ключ - setting_openid: Разрешить OpenID для входа и регистрации - setting_per_page_options: Количество записей на страницу - setting_plain_text_mail: Только простой текст (без HTML) - setting_protocol: Протокол - setting_repository_log_display_limit: Максимальное количество редакций, отображаемых в журнале изменений - setting_self_registration: Саморегистрация - setting_sequential_project_identifiers: Генерировать последовательные идентификаторы проектов - setting_sys_api_enabled: Включить веб-сервис для управления хранилищем - setting_text_formatting: Форматирование текста - setting_time_format: Формат времени - setting_user_format: Формат отображения имени - setting_welcome_text: Текст приветствия - setting_wiki_compression: Сжатие истории Wiki - - status_active: активен - status_locked: заблокирован - status_registered: зарегистрирован - - text_are_you_sure: Вы уверены? - text_assign_time_entries_to_project: Прикрепить зарегистрированное время к проекту - text_caracters_maximum: "Максимум %{count} символов(а)." - text_caracters_minimum: "Должно быть не менее %{count} символов." - text_comma_separated: Допустимы несколько значений (через запятую). - text_custom_field_possible_values_info: 'По одному значению в каждой строке' - text_default_administrator_account_changed: Учётная запись администратора по умолчанию изменена - text_destroy_time_entries_question: "На эту задачу зарегистрировано %{hours} часа(ов) трудозатрат. Что Вы хотите предпринять?" - text_destroy_time_entries: Удалить зарегистрированное время - text_diff_truncated: '... Этот diff ограничен, так как превышает максимальный отображаемый размер.' - text_email_delivery_not_configured: "Параметры работы с почтовым сервером не настроены и функция уведомления по email не активна.\nНастроить параметры для Вашего SMTP-сервера Вы можете в файле config/configuration.yml. Для применения изменений перезапустите приложение." - text_enumeration_category_reassign_to: 'Назначить им следующее значение:' - text_enumeration_destroy_question: "%{count} объект(а,ов) связаны с этим значением." - text_file_repository_writable: Хранилище файлов доступно для записи - text_issue_added: "Создана новая задача %{id} (%{author})." - text_issue_category_destroy_assignments: Удалить назначения категории - text_issue_category_destroy_question: "Несколько задач (%{count}) назначено в данную категорию. Что Вы хотите предпринять?" - text_issue_category_reassign_to: Переназначить задачи для данной категории - text_issues_destroy_confirmation: 'Вы уверены, что хотите удалить выбранные задачи?' - text_issues_ref_in_commit_messages: Сопоставление и изменение статуса задач исходя из текста сообщений - text_issue_updated: "Задача %{id} была обновлена (%{author})." - text_journal_changed: "Параметр %{label} изменился с %{old} на %{new}" - text_journal_deleted: "Значение %{old} параметра %{label} удалено" - text_journal_set_to: "Параметр %{label} изменился на %{value}" - text_length_between: "Длина между %{min} и %{max} символов." - text_load_default_configuration: Загрузить конфигурацию по умолчанию - text_min_max_length_info: 0 означает отсутствие ограничений - text_no_configuration_data: "Роли, трекеры, статусы задач и оперативный план не были сконфигурированы.\nНастоятельно рекомендуется загрузить конфигурацию по-умолчанию. Вы сможете её изменить потом." - text_plugin_assets_writable: Каталог ресурсов модулей доступен для записи - text_project_destroy_confirmation: Вы настаиваете на удалении данного проекта и всей относящейся к нему информации? - text_reassign_time_entries: 'Перенести зарегистрированное время на следующую задачу:' - text_regexp_info: "например: ^[A-Z0-9]+$" - text_repository_usernames_mapping: "Выберите или обновите пользователя Redmine, связанного с найденными именами в журнале хранилища.\nПользователи с одинаковыми именами или email в Redmine и хранилище связываются автоматически." - text_minimagick_available: Доступно использование MiniMagick (опционально) - text_select_mail_notifications: Выберите действия, при которых будет отсылаться уведомление на электронную почту. - text_select_project_modules: 'Выберите модули, которые будут использованы в проекте:' - text_status_changed_by_changeset: "Реализовано в %{value} редакции." - text_subprojects_destroy_warning: "Подпроекты: %{value} также будут удалены." - text_tip_issue_begin_day: дата начала задачи - text_tip_issue_begin_end_day: начало задачи и окончание её в этот же день - text_tip_issue_end_day: дата завершения задачи - text_tracker_no_workflow: Для этого трекера последовательность действий не определена - text_unallowed_characters: Запрещенные символы - text_user_mail_option: "Для невыбранных проектов, Вы будете получать уведомления только о том, что просматриваете или в чем участвуете (например, задачи, автором которых Вы являетесь, или которые Вам назначены)." - text_user_wrote: "%{value} писал(а):" - text_user_wrote_in: "%{value} писал(а) (%{link}):" - text_wiki_destroy_confirmation: Вы уверены, что хотите удалить данную Wiki и все её содержимое? - text_workflow_edit: Выберите роль и трекер для редактирования последовательности состояний - - warning_attachments_not_saved: "%{count} файл(ов) невозможно сохранить." - text_wiki_page_destroy_question: Эта страница имеет %{descendants} дочерних страниц и их потомков. Что вы хотите предпринять? - text_wiki_page_reassign_children: Переопределить дочерние страницы на текущую страницу - text_wiki_page_nullify_children: Сделать дочерние страницы главными страницами - text_wiki_page_destroy_children: Удалить дочерние страницы и всех их потомков - setting_password_min_length: Минимальная длина пароля - field_group_by: Группировать результаты по - mail_subject_wiki_content_updated: "Wiki-страница '%{id}' была обновлена" - label_wiki_content_added: Добавлена wiki-страница - mail_subject_wiki_content_added: "Wiki-страница '%{id}' была добавлена" - mail_body_wiki_content_added: "%{author} добавил(а) wiki-страницу '%{id}'." - label_wiki_content_updated: Обновлена wiki-страница - mail_body_wiki_content_updated: "%{author} обновил(а) wiki-страницу '%{id}'." - permission_add_project: Создание проекта - setting_new_project_user_role_id: Роль, назначаемая пользователю, создавшему проект - label_view_all_revisions: Показать все ревизии - label_tag: Метка - label_branch: Ветвь - error_no_tracker_in_project: С этим проектом не ассоциирован ни один трекер. Проверьте настройки проекта. - error_no_default_issue_status: Не определен статус задач по умолчанию. Проверьте настройки (см. "Администрирование -> Статусы задач"). - label_group_plural: Группы - label_group: Группа - label_group_new: Новая группа - label_time_entry_plural: Трудозатраты - text_journal_added: "%{label} %{value} добавлен" - field_active: Активно - enumeration_system_activity: Системное - permission_delete_issue_watchers: Удаление наблюдателей - version_status_closed: закрыт - version_status_locked: заблокирован - version_status_open: открыт - error_can_not_reopen_issue_on_closed_version: Задача, назначенная к закрытой версии, не сможет быть открыта снова - label_user_anonymous: Аноним - button_move_and_follow: Переместить и перейти - setting_default_projects_modules: Включенные по умолчанию модули для новых проектов - setting_gravatar_default: Изображение Gravatar по умолчанию - field_sharing: Совместное использование - label_version_sharing_hierarchy: С иерархией проектов - label_version_sharing_system: Со всеми проектами - label_version_sharing_descendants: С подпроектами - label_version_sharing_tree: С деревом проектов - label_version_sharing_none: Без совместного использования - error_can_not_archive_project: Этот проект не может быть заархивирован - button_copy_and_follow: Копировать и продолжить - label_copy_source: Источник - setting_issue_done_ratio: Рассчитывать готовность задачи с помощью поля - setting_issue_done_ratio_issue_status: Статус задачи - error_issue_done_ratios_not_updated: Параметр готовность задач не обновлён - error_workflow_copy_target: Выберите целевые трекеры и роли - setting_issue_done_ratio_issue_field: Готовность задачи - label_copy_same_as_target: То же, что и у цели - label_copy_target: Цель - notice_issue_done_ratios_updated: Параметр «готовность» обновлён. - error_workflow_copy_source: Выберите исходный трекер или роль - label_update_issue_done_ratios: Обновить готовность задач - setting_start_of_week: День начала недели - label_api_access_key: Ключ доступа к API - text_line_separated: Разрешено несколько значений (по одному значению в строку). - label_revision_id: Ревизия %{value} - permission_view_issues: Просмотр задач - label_display_used_statuses_only: Отображать только те статусы, которые используются в этом трекере - label_api_access_key_created_on: Ключ доступ к API был создан %{value} назад - label_feeds_access_key: Ключ доступа к Atom - notice_api_access_key_reseted: Ваш ключ доступа к API был сброшен. - setting_rest_api_enabled: Включить веб-сервис REST - button_show: Показать - label_missing_api_access_key: Отсутствует ключ доступа к API - label_missing_feeds_access_key: Отсутствует ключ доступа к Atom - setting_mail_handler_body_delimiters: Урезать письмо после одной из этих строк - permission_add_subprojects: Создание подпроектов - label_subproject_new: Новый подпроект - text_own_membership_delete_confirmation: |- - Вы собираетесь удалить некоторые или все права, из-за чего могут пропасть права на редактирование этого проекта. - Продолжить? - label_close_versions: Закрыть завершённые версии - label_board_sticky: Прикреплена - label_board_locked: Заблокирована - field_principal: Имя - text_zoom_out: Отдалить - text_zoom_in: Приблизить - notice_unable_delete_time_entry: Невозможно удалить запись журнала. - label_overall_spent_time: Всего трудозатрат - label_user_mail_option_none: Нет событий - field_member_of_group: Группа назначенного - field_assigned_to_role: Роль назначенного - notice_not_authorized_archived_project: Запрашиваемый проект был архивирован. - label_principal_search: "Найти пользователя или группу:" - label_user_search: "Найти пользователя:" - field_visible: Видимое - setting_emails_header: Заголовок письма - - setting_commit_logtime_activity_id: Действие для учёта времени - text_time_logged_by_changeset: Учтено в редакции %{value}. - setting_commit_logtime_enabled: Включить учёт времени - notice_gantt_chart_truncated: Диаграмма будет усечена, поскольку превышено максимальное кол-во элементов, которые могут отображаться (%{max}) - setting_gantt_items_limit: Максимальное кол-во элементов отображаемых на диаграмме Ганта - field_warn_on_leaving_unsaved: Предупреждать при закрытии страницы с несохранённым текстом - text_warn_on_leaving_unsaved: Текущая страница содержит несохранённый текст, который будет потерян, если вы покинете эту страницу. - label_my_queries: Мои сохранённые запросы - text_journal_changed_no_detail: "%{label} обновлено" - label_news_comment_added: Добавлен комментарий к новости - button_expand_all: Развернуть все - button_collapse_all: Свернуть все - label_additional_workflow_transitions_for_assignee: Дополнительные переходы, когда пользователь является исполнителем - label_additional_workflow_transitions_for_author: Дополнительные переходы, когда пользователь является автором - label_bulk_edit_selected_time_entries: Массовое изменение выбранных записей трудозатрат - text_time_entries_destroy_confirmation: Вы уверены что хотите удалить выбранные трудозатраты? - label_role_anonymous: Аноним - label_role_non_member: Не участник - label_issue_note_added: Примечание добавлено - label_issue_status_updated: Статус обновлён - label_issue_priority_updated: Приоритет обновлён - label_issues_visibility_own: Задачи созданные или назначенные пользователю - field_issues_visibility: Видимость задач - label_issues_visibility_all: Все задачи - permission_set_own_issues_private: Установление видимости (общая/частная) для собственных задач - field_is_private: Частная - permission_set_issues_private: Установление видимости (общая/частная) для задач - label_issues_visibility_public: Только общие задачи - text_issues_destroy_descendants_confirmation: Так же будет удалено %{count} задач(и). - field_commit_logs_encoding: Кодировка комментариев в хранилище - field_scm_path_encoding: Кодировка пути - text_scm_path_encoding_note: "По умолчанию: UTF-8" - field_path_to_repository: Путь к хранилищу - field_root_directory: Корневая директория - field_cvs_module: Модуль - field_cvsroot: CVSROOT - text_mercurial_repository_note: Локальное хранилище (например, /hgrepo, c:\hgrepo) - text_scm_command: Команда - text_scm_command_version: Версия - label_git_report_last_commit: Указывать последнее изменения для файлов и директорий - text_scm_config: Вы можете настроить команды SCM в файле config/configuration.yml. Пожалуйста, перезапустите приложение после редактирования этого файла. - text_scm_command_not_available: Команда системы контроля версий недоступна. Пожалуйста, проверьте настройки в административной панели. - notice_issue_successful_create: Задача %{id} создана. - label_between: между - setting_issue_group_assignment: Разрешить назначение задач группам пользователей - label_diff: Разница(diff) - text_git_repository_note: Хранилище пустое и локальное (т.е. /gitrepo, c:\gitrepo) - description_query_sort_criteria_direction: Порядок сортировки - description_project_scope: Область поиска - description_filter: Фильтр - description_user_mail_notification: Настройки почтовых оповещений - description_message_content: Содержание сообщения - description_available_columns: Доступные столбцы - description_issue_category_reassign: Выберите категорию задачи - description_search: Поле поиска - description_notes: Примечания - description_choose_project: Проекты - description_query_sort_criteria_attribute: Критерий сортировки - description_wiki_subpages_reassign: Выбрать новую родительскую страницу - description_selected_columns: Выбранные столбцы - label_parent_revision: Родительский - label_child_revision: Дочерний - error_scm_annotate_big_text_file: Комментарий невозможен из-за превышения максимального размера текстового файла. - setting_default_issue_start_date_to_creation_date: Использовать текущую дату в качестве даты начала для новых задач - button_edit_section: Редактировать эту секцию - setting_repositories_encodings: Кодировка вложений и хранилищ - description_all_columns: Все столбцы - button_export: Экспорт - label_export_options: "%{export_format} параметры экспорта" - error_attachment_too_big: Этот файл нельзя загрузить из-за превышения максимального размера файла (%{max_size}) - notice_failed_to_save_time_entries: "Невозможно сохранить %{count} трудозатраты %{total} выбранных: %{ids}." - label_x_issues: - one: "%{count} задача" - few: "%{count} задачи" - many: "%{count} задач" - other: "%{count} Задачи" - label_repository_new: Новое хранилище - field_repository_is_default: Хранилище по умолчанию - label_copy_attachments: Копировать вложения - label_item_position: "%{position}/%{count}" - label_completed_versions: Завершенные версии - text_project_identifier_info: Допускаются только строчные латинские буквы (a-z), цифры, тире и подчеркивания.
    После сохранения идентификатор изменить нельзя. - field_multiple: Множественные значения - setting_commit_cross_project_ref: Разрешить ссылаться и исправлять задачи во всех остальных проектах - text_issue_conflict_resolution_add_notes: Добавить мои примечания и отказаться от моих изменений - text_issue_conflict_resolution_overwrite: Применить мои изменения (все предыдущие замечания будут сохранены, но некоторые изменения могут быть перезаписаны) - notice_issue_update_conflict: Кто-то изменил задачу, пока вы ее редактировали. - text_issue_conflict_resolution_cancel: Отменить мои изменения и показать задачу заново %{link} - permission_manage_related_issues: Управление связанными задачами - field_auth_source_ldap_filter: Фильтр LDAP - label_search_for_watchers: Найти наблюдателей - notice_account_deleted: "Ваша учетная запись полностью удалена" - setting_unsubscribe: "Разрешить пользователям удалять свои учетные записи" - button_delete_my_account: "Удалить мою учетную запись" - text_account_destroy_confirmation: "Ваша учетная запись будет полностью удалена без возможности восстановления.\nВы уверены, что хотите продолжить?" - error_session_expired: Срок вашей сессии истек. Пожалуйста войдите еще раз - text_session_expiration_settings: "Внимание! Изменение этих настроек может привести к завершению текущих сессий, включая вашу." - setting_session_lifetime: Максимальная продолжительность сессии - setting_session_timeout: Таймаут сессии - label_session_expiration: Срок истечения сессии - permission_close_project: Закрывать / открывать проекты - button_close: Сделать закрытым - button_reopen: Сделать открытым - project_status_active: открытые - project_status_closed: закрытые - project_status_archived: архивированные - text_project_closed: Проект закрыт и находится в режиме только для чтения. - notice_user_successful_create: Пользователь %{id} создан. - field_core_fields: Стандартные поля - field_timeout: Таймаут (в секундах) - setting_thumbnails_enabled: Отображать превью для вложений - setting_thumbnails_size: Размер первью (в пикселях) - label_status_transitions: Статус-переходы - label_fields_permissions: Права на изменения полей - label_readonly: Не изменяется - label_required: Обязательное - text_repository_identifier_info: Допускаются только строчные латинские буквы (a-z), цифры, тире и подчеркивания.
    После сохранения идентификатор изменить нельзя. - field_board_parent: Родительский форум - label_attribute_of_project: Проект %{name} - label_attribute_of_author: Имя автора %{name} - label_attribute_of_assigned_to: Назначена %{name} - label_attribute_of_fixed_version: Версия %{name} - label_copy_subtasks: Копировать подзадачи - label_copied_to: скопирована в - label_copied_from: скопирована с - label_any_issues_in_project: любые задачи в проекте - label_any_issues_not_in_project: любые задачи не в проекте - field_private_notes: Приватный комментарий - permission_view_private_notes: Просмотр приватных комментариев - permission_set_notes_private: Размещение приватных комментариев - label_no_issues_in_project: нет задач в проекте - label_any: все - label_last_n_weeks: - one: "прошлая %{count} неделя" - few: "прошлые %{count} недели" - many: "прошлые %{count} недель" - other: "прошлые %{count} недели" - setting_cross_project_subtasks: Разрешить подзадачи между проектами - label_cross_project_descendants: С подпроектами - label_cross_project_tree: С деревом проектов - label_cross_project_hierarchy: С иерархией проектов - label_cross_project_system: Со всеми проектами - button_hide: Скрыть - setting_non_working_week_days: Нерабочие дни - label_in_the_next_days: в следующие дни - label_in_the_past_days: в прошлые дни - label_attribute_of_user: Пользователь %{name} - text_turning_multiple_off: Если отключить множественные значения, лишние значения из списка будут удалены, чтобы осталось только по одному значению. - label_attribute_of_issue: Задача %{name} - permission_add_documents: Добавить документы - permission_edit_documents: Редактировать документы - permission_delete_documents: Удалить документы - label_gantt_progress_line: Линия прогресса - setting_jsonp_enabled: Поддержка JSONP - field_inherit_members: Наследовать участников - field_closed_on: Закрыта - field_generate_password: Создание пароля - setting_default_projects_tracker_ids: Трекеры по умолчанию для новых проектов - label_total_time: Общее время - notice_account_not_activated_yet: Вы пока не имеете активированных учетных записей. - Чтобы получить письмо с активацией, перейдите по ссылке. - notice_account_locked: Ваша учетная запись заблокирована. - label_hidden: Скрытый - label_visibility_private: только мне - label_visibility_roles: только этим ролям - label_visibility_public: всем пользователям - field_must_change_passwd: Изменить пароль при следующем входе - notice_new_password_must_be_different: Новый пароль должен отличаться от текущего - setting_mail_handler_excluded_filenames: Исключать вложения по имени - text_convert_available: Доступно использование ImageMagick (необязательно) - label_link: Ссылка - label_only: только - label_drop_down_list: выпадаюший список - label_checkboxes: чекбоксы - label_link_values_to: Значения ссылки для URL - setting_force_default_language_for_anonymous: Не определять язык для анонимных пользователей - setting_force_default_language_for_loggedin: Не определять язык для зарегистрированных пользователей - label_custom_field_select_type: Выберите тип объекта для которого будет создано настраиваемое поле - label_issue_assigned_to_updated: Исполнитель обновлен - label_check_for_updates: Проверить обновления - label_latest_compatible_version: Последняя совместимая версия - label_unknown_plugin: Неизвестный плагин - label_radio_buttons: radio buttons - label_group_anonymous: Анонимные пользователи - label_group_non_member: Не участвующие пользователи - label_add_projects: Добавить проекты - field_default_status: Статус по умолчанию - text_subversion_repository_note: 'Например: file:///, http://, https://, svn://, svn+[tunnelscheme]://' - field_users_visibility: Видимость пользователей - label_users_visibility_all: Все активные пользователи - label_users_visibility_members_of_visible_projects: Участники видимых проектов - label_edit_attachments: Редактировать прикреплённые файлы - setting_link_copied_issue: Связывать задачи при копировании - label_link_copied_issue: Связать скопированную задачу - label_ask: Спросить - label_search_attachments_yes: Искать в именах прикреплённых файлов и описаниях - label_search_attachments_no: Не искать в прикреплениях - label_search_attachments_only: Искать только в прикреплённых файлах - label_search_open_issues_only: Только в открытых задачах - field_address: Email - setting_max_additional_emails: Максимальное количество дополнительных email адресов - label_email_address_plural: Emails - label_email_address_add: Добавить email адрес - label_enable_notifications: Включить уведомления - label_disable_notifications: Выключить уведомления - setting_search_results_per_page: Количество найденных результатов на страницу - label_blank_value: пусто - permission_copy_issues: Копирование задач - error_password_expired: Время действия вашего пароля истекло или администратор потребовал сменить его. - field_time_entries_visibility: Видимость трудозатрат - setting_password_max_age: Требовать сменить пароль по истечении - label_parent_task_attributes: Атрибуты родительской задачи - label_parent_task_attributes_derived: С учётом подзадач - label_parent_task_attributes_independent: Без учёта подзадач - label_time_entries_visibility_all: Все трудозатраты - label_time_entries_visibility_own: Только собственные трудозатраты - label_member_management: Управление участниками - label_member_management_all_roles: Все роли - label_member_management_selected_roles_only: Только эти роли - label_password_required: Для продолжения введите свой пароль - label_total_spent_time: Всего затрачено времени - notice_import_finished: "%{count} элемент(а, ов) были импортированы" - notice_import_finished_with_errors: "%{count} из %{total} элемент(а, ов) не могут быть импортированы" - error_invalid_file_encoding: Кодировка файла не соответствует выбранной %{encoding} - error_invalid_csv_file_or_settings: Файл не является файлом CSV или не соответствует представленным настройкам - error_can_not_read_import_file: Во время чтения файла для импорта произошла ошибка - permission_import_issues: Импорт задач - label_import_issues: Импорт задач - label_select_file_to_import: Выберите файл для импорта - label_fields_separator: Разделитель - label_fields_wrapper: Ограничитель - label_encoding: Кодировка - label_comma_char: Запятая - label_semi_colon_char: Точка с запятой - label_quote_char: Кавычки - label_double_quote_char: Двойные кавычки - label_fields_mapping: Соответствие полей - label_file_content_preview: Предпросмотр содержимого файла - label_create_missing_values: Создать недостающие значения - button_import: Импорт - field_total_estimated_hours: Общая оценка временных затрат - label_api: API - label_total_plural: Итоги - label_assigned_issues: Назначенные задачи - label_field_format_enumeration: Список ключ/значение - label_f_hour_short: '%{value} ч' - field_default_version: Версия по умолчанию - error_attachment_extension_not_allowed: Расширение %{extension} запрещено - setting_attachment_extensions_allowed: Допустимые расширения - setting_attachment_extensions_denied: Запрещённые расширения - label_any_open_issues: любые открытые задачи - label_no_open_issues: нет открытых задач - label_default_values_for_new_users: Значения по умолчанию для новых пользователей - error_ldap_bind_credentials: Неправильная Учётная запись/Пароль LDAP - setting_sys_api_key: API ключ - setting_lost_password: Восстановление пароля - mail_subject_security_notification: Уведомление безопасности - mail_body_security_notification_change: ! '%{field} изменилось.' - mail_body_security_notification_change_to: ! '%{field} изменилось на %{value}.' - mail_body_security_notification_add: ! '%{field} %{value} добавлено.' - mail_body_security_notification_remove: ! '%{field} %{value} удалено.' - mail_body_security_notification_notify_enabled: Email адрес %{value} сейчас получает - уведомления. - mail_body_security_notification_notify_disabled: Email адрес %{value} больше не - получает уведомления. - mail_body_settings_updated: ! 'Следующие настройки были изменены:' - field_remote_ip: IP адрес - label_wiki_page_new: Новая wiki-страница - label_relations: Связи - button_filter: Фильтр - mail_body_password_updated: Ваш пароль был изменён. - label_no_preview: Предпросмотр недоступен - error_no_tracker_allowed_for_new_issue_in_project: В проекте нет трекеров, - для которых можно создать задачу - label_tracker_all: Все трекеры - label_new_project_issue_tab_enabled: Отображать вкладку "Новая задача" - setting_new_item_menu_tab: Вкладка меню проекта для создания новых объектов - label_new_object_tab_enabled: Отображать выпадающий список "+" - error_no_projects_with_tracker_allowed_for_new_issue: Отсутствуют проекты, по трекерам которых вы можете создавать задачи - field_textarea_font: Шрифт для текстовых полей - label_font_default: Шрифт по умолчанию - label_font_monospace: Моноширинный шрифт - label_font_proportional: Пропорциональный шрифт - setting_timespan_format: Формат промежутка времени - label_table_of_contents: Содержание - setting_commit_logs_formatting: Использовать форматирование текста для комментариев хранилища - setting_mail_handler_enable_regex: Использовать регулярные выражения - error_move_of_child_not_possible: 'Подзадача %{child} не может быть перемещена в новый - project: %{errors}' - error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted: Затраченное время не может быть переназначено на задачу, которая будет удалена - setting_timelog_required_fields: Обязательные поля для трудозатрат - label_attribute_of_object: '%{name} объекта %{object_name}' - label_user_mail_option_only_assigned: Только для объектов, которые я отслеживаю или которые мне назначены - label_user_mail_option_only_owner: Только для объектов, которые я отслеживаю или для которых я владелец - warning_fields_cleared_on_bulk_edit: Изменения приведут к удалению значений одного или нескольких полей выбранных объектов - field_updated_by: Кем изменено - field_last_updated_by: Последний изменивший - field_full_width_layout: Растягивать по ширине страницы - label_last_notes: Последние примечания - field_digest: Контрольная сумма - field_default_assigned_to: Назначать по умолчанию - setting_show_custom_fields_on_registration: Показывать настраиваемые поля при регистрации - permission_view_news: Просмотр новостей - label_no_preview_alternative_html: Предпросмотр недоступен. %{link} файл. - label_no_preview_download: Скачать - setting_close_duplicate_issues: Закрывать дубликаты задач автоматически - error_exceeds_maximum_hours_per_day: Не удается зарегистрировать больше %{max_hours} часов в один день (%{logged_hours} часов уже зарегистрированы) - setting_time_entry_list_defaults: Список трудозатрат по умолчанию - setting_timelog_accept_0_hours: Принимать трудозатраты с 0 часов - setting_timelog_max_hours_per_day: Максимальное количество часов, которое может быть зарегистрировано в день одним пользователем - label_x_revisions: "%{count} изменени(я, ий)" - error_can_not_delete_auth_source: Этот режим аутентификации используется и не может быть удален. - button_actions: Действия - mail_body_lost_password_validity: Помните, вы можете изменить пароль только один раз, используя эту ссылку. - text_login_required_html: Если аутентификация не требуется, публичные проекты и их содержимое в свободном доступе. Вы можете редактировать соответствующие разрешения. - label_login_required_yes: 'Да' - label_login_required_no: Нет, разрешить свободный доступ к публичным проектам. - text_project_is_public_non_member: Публичные проекты и их содержимое доступны всем зарегистрированным пользователям. - text_project_is_public_anonymous: Публичные проекты и их содержимое в свободном доступе. - label_version_and_files: Версии (%{count}) и файлы - label_ldap: LDAP - label_ldaps_verify_none: LDAPS (без проверки сертификата) - label_ldaps_verify_peer: LDAPS - label_ldaps_warning: Рекомендуется использовать зашифрованное соединение LDAPS с проверкой сертификата для предотвращения любых посторонних вмешательств в процессе аутентификации. - label_nothing_to_preview: Нет данных для предварительного просмотра - error_token_expired: Срок действия этой ссылки восстановления пароля истёк. Пожалуйста, попробуйте снова. - error_spent_on_future_date: Нельзя учитывать время в будущие даты - setting_timelog_accept_future_dates: Принимать трудозатраты на будущие даты - label_delete_link_to_subtask: Удалить связь - error_not_allowed_to_log_time_for_other_users: Вам не разрешено учитывать время для других пользователей - permission_log_time_for_other_users: Учитывать время других пользователей - label_tomorrow: завтра - label_next_week: следующая неделя - label_next_month: следующий месяц - text_role_no_workflow: Эта роль не имеет заданных последовательностей действий - text_status_no_workflow: Ни один трекер не использует этот стутус в последовательностях действий - setting_mail_handler_preferred_body_part: Предпочитаемая часть multipart (HTML) писем - setting_show_status_changes_in_mail_subject: Включать изменения статуса задачи в уведомления по email - label_inherited_from_parent_project: Наследуется из родительского проекта - label_inherited_from_group: Наследуется из группы %{name} - label_trackers_description: Описание трекеров - label_open_trackers_description: Показать описания трекеров - label_preferred_body_part_text: Текст - label_preferred_body_part_html: HTML (экспериментально) - field_parent_issue_subject: Тема родительской задачи - permission_edit_own_issues: Редактировать свои задачи - text_select_apply_tracker: Выбор этого трекера - label_updated_issues: Обновленные задачи - text_avatar_server_config_html: Текущий сервер аватар — %{url}. - Вы можете изменить его в config/configuration.yml. - setting_gantt_months_limit: Максимальное число месяцев на диаграмме Ганта - permission_import_time_entries: Импорт трудозатрат - label_import_notifications: Послать уведомления по email в течение импорта - text_gs_available: Доступно использование ImageMagick PDF (опционально) - field_recently_used_projects: Число последних проектов в выпадающем списке - label_optgroup_bookmarks: Закладки - label_optgroup_others: Другие проекты - label_optgroup_recents: Последние - button_project_bookmark: Добавить закладку - button_project_bookmark_delete: Удалить закладку - field_history_default_tab: Вкладка истории задачи по умолчанию - label_issue_history_properties: Изменения свойств - label_issue_history_notes: Примечания - label_last_tab_visited: Последняя посещённая вкладка - field_unique_id: Уникальный идентификатор - text_no_subject: Нет темы - setting_password_required_char_classes: Требуемые классы символов для паролей - label_password_char_class_uppercase: заглавные буквы - label_password_char_class_lowercase: строчные буквы - label_password_char_class_digits: цифры - label_password_char_class_special_chars: специальные символы - text_characters_must_contain: Должен содержать %{character_classes}. - label_starts_with: начинается с - label_ends_with: заканчивается на - label_issue_fixed_version_updated: Версии обновлены - setting_project_list_defaults: Опции списка проектов по умолчанию - label_display_type: Отображать как - label_display_type_list: Список - label_display_type_board: Панель - label_my_bookmarks: Мои закладки - label_import_time_entries: Импорт трудозатрат diff --git a/config/locales/sk.yml b/config/locales/sk.yml deleted file mode 100644 index 80bc602..0000000 --- a/config/locales/sk.yml +++ /dev/null @@ -1,1304 +0,0 @@ -# Slovak translation by Stanislav Pach | stano.pach@seznam.cz -# additions for Redmine 2.3.2 and proofreading by Katarína Nosková | noskova.katarina@gmail.com - -sk: - direction: ltr - date: - formats: - default: "%Y-%m-%d" - short: "%b %d" - long: "%B %d, %Y" - - day_names: [Nedeľa, Pondelok, Utorok, Streda, Štvrtok, Piatok, Sobota] - abbr_day_names: [Ne, Po, Ut, St, Št, Pi, So] - - # Don't forget the nil at the beginning; there's no such thing as a 0th month - month_names: [~, Január, Február, Marec, Apríl, Máj, Jún, Júl, August, September, Október, November, December] - abbr_month_names: [~, Jan, Feb, Mar, Apr, Máj, Jún, Júl, Aug, Sep, Okt, Nov, Dec] - # Used in date_select and datime_select. - order: - - :year - - :month - - :day - - time: - formats: - default: "%a, %d %b %Y %H:%M:%S %z" - time: "%H:%M" - short: "%d %b %H:%M" - long: "%B %d, %Y %H:%M" - am: "dopoludnia" - pm: "popoludní" - - datetime: - distance_in_words: - half_a_minute: "pol minúty" - less_than_x_seconds: - one: "menej ako 1 sekunda" - other: "menej ako %{count} sekúnd" - x_seconds: - one: "1 sekunda" - other: "%{count} sekúnd" - less_than_x_minutes: - one: "menej ako minúta" - other: "menej ako %{count} minút" - x_minutes: - one: "1 minúta" - other: "%{count} minút" - about_x_hours: - one: "približne 1 hodinu" - other: "približne %{count} hodín" - x_hours: - one: "1 hodina" - other: "%{count} hodín" - x_days: - one: "1 deň" - other: "%{count} dní" - about_x_months: - one: "približne 1 mesiac" - other: "približne %{count} mesiacov" - x_months: - one: "1 mesiac" - other: "%{count} mesiacov" - about_x_years: - one: "približne 1 rok" - other: "približne %{count} rokov" - over_x_years: - one: "viac ako 1 rok" - other: "viac ako %{count} rokov" - almost_x_years: - one: "takmer 1 rok" - other: "takmer %{count} rokov" - - number: - format: - separator: "." - delimiter: "" - precision: 3 - - human: - format: - delimiter: "" - precision: 3 - storage_units: - format: "%n %u" - units: - byte: - one: "Byte" - other: "Bytes" - kb: "KB" - mb: "MB" - gb: "GB" - tb: "TB" - -# Used in array.to_sentence. - support: - array: - sentence_connector: "a" - skip_last_comma: false - - activerecord: - errors: - template: - header: - one: "1 chyba bráni uloženiu %{model}" - other: "%{count} chýb bráni uloženiu %{model}" - messages: - inclusion: "nie je zahrnuté v zozname" - exclusion: "nie je k dispozícii" - invalid: "je neplatné" - confirmation: "sa nezhoduje s potvrdením" - accepted: "musí byť akceptované" - empty: "nemôže byť prázdne" - blank: "nemôže byť prázdne" - too_long: "je príliš dlhé (maximálne %{count} znakov)" - too_short: "je príliš krátke (minimálne %{count} znakov)" - wrong_length: "má nesprávnu dĺžku (vyžaduje sa %{count} znakov)" - taken: "je už použité" - not_a_number: "nie je číslo" - not_a_date: "nie je platný dátum" - greater_than: "musí byť viac ako %{count}" - greater_than_or_equal_to: "musí byť viac alebo rovné %{count}" - equal_to: "musí byť rovné %{count}" - less_than: "musí byť menej ako %{count}" - less_than_or_equal_to: "musí byť menej alebo rovné %{count}" - odd: "musí byť nepárne" - even: "musí byť párne" - greater_than_start_date: "musí byť neskôr ako počiatočný dátum" - not_same_project: "nepatrí k rovnakému projektu" - circular_dependency: "Tento vzťah by vytvoril cyklickú závislosť" - cant_link_an_issue_with_a_descendant: "Nemožno prepojiť úlohu s niektorou z podúloh" - earlier_than_minimum_start_date: "nemôže byť skorší ako %{date} z dôvodu nadväznosti na predchádzajúce úlohy" - not_a_regexp: "is not a valid regular expression" - open_issue_with_closed_parent: "An open issue cannot be attached to a closed parent task" - must_contain_uppercase: "must contain uppercase letters (A-Z)" - must_contain_lowercase: "must contain lowercase letters (a-z)" - must_contain_digits: "must contain digits (0-9)" - must_contain_special_chars: "must contain special characters (!, $, %, ...)" - - actionview_instancetag_blank_option: Vyberte - - general_text_No: 'Nie' - general_text_Yes: 'Áno' - general_text_no: 'nie' - general_text_yes: 'áno' - general_lang_name: 'Slovak (Slovenčina)' - general_csv_separator: ',' - general_csv_decimal_separator: '.' - general_csv_encoding: UTF-8 - general_pdf_fontname: freesans - general_pdf_monospaced_fontname: freemono - general_first_day_of_week: '1' - - notice_account_updated: Účet bol úspešne zmenený. - notice_account_invalid_credentials: Nesprávne meno alebo heslo - notice_account_password_updated: Heslo bolo úspešne zmenené. - notice_account_wrong_password: Nesprávne heslo - notice_account_register_done: Účet bol úspešne vytvorený. Účet aktivujete kliknutím na odkaz v emaile, ktorý vám bol zaslaný na %{email}. - notice_account_unknown_email: Neznámy používateľ. - notice_can_t_change_password: Tento účet používa externú autentifikáciu. Nemôžete zmeniť heslo. - notice_account_lost_email_sent: Bol vám zaslaný email s inštrukciami, ako si nastaviť nové heslo. - notice_account_activated: Váš účet bol aktivovaný. Teraz se môžete prihlásiť. - notice_successful_create: Úspešne vytvorené. - notice_successful_update: Úspešne aktualizované. - notice_successful_delete: Úspešne odstránené. - notice_successful_connection: Úspešne pripojené. - notice_file_not_found: Stránka, ktorú se pokúšate zobraziť, neexistuje, alebo bola odstránená. - notice_locking_conflict: Údaje boli aktualizované iným používateľom. - notice_not_authorized: Nemáte dostatočné oprávnenia na zobrazenie tejto stránky. - notice_email_sent: "Na adresu %{value} bol odoslaný email" - notice_email_error: "Pri odosielaní emailu sa vyskytla chyba (%{value})" - notice_feeds_access_key_reseted: Váš prístupový kľúč k Atomu bol resetovaný. - notice_failed_to_save_issues: "Nepodarilo sa uložiť %{count} úloh z %{total} vybraných: %{ids}." - notice_no_issue_selected: "Nebola vybraná žiadna úloha. Označte prosím úlohy, ktoré chcete upraviť." - notice_account_pending: "Váš účet bol vytvorený a čaká na schválenie administrátorom." - notice_default_data_loaded: Predvolená konfigurácia bola úspešne nahraná. - - error_can_t_load_default_data: "Predvolená konfigurácia nebola nahraná: %{value}" - error_scm_not_found: "Položka alebo revízia nebola v repozitári nájdená." - error_scm_command_failed: "Pri pokuse o prístup k repozitáru sa vyskytla chyba: %{value}" - error_issue_not_found_in_project: 'Úloha nebola nájdená, alebo nepatrí k tomuto projektu' - - mail_subject_lost_password: "Vaše heslo %{value}" - mail_body_lost_password: 'Na zmenu hesla kliknite na nasledujúci odkaz:' - mail_subject_register: "Aktivácia vášho účtu %{value}" - mail_body_register: 'Ak si želáte aktivovať váš účet, kliknite na nasledujúci odkaz:' - mail_body_account_information_external: "Môžete sa prihlásiť pomocou vášho účtu %{value}." - mail_body_account_information: Informácie o vašom účte - mail_subject_account_activation_request: "Požiadavka na aktiváciu účtu %{value}" - mail_body_account_activation_request: "Bol zaregistrovaný nový používateľ %{value}. Účet čaká na vaše schválenie:" - - - field_name: Meno - field_description: Popis - field_summary: Zhrnutie - field_is_required: Povinné pole - field_firstname: Meno - field_lastname: Priezvisko - field_mail: Email - field_filename: Súbor - field_filesize: Veľkosť - field_downloads: Stiahnuté - field_author: Autor - field_created_on: Vytvorené - field_updated_on: Aktualizované - field_field_format: Formát - field_is_for_all: Pre všetky projekty - field_possible_values: Možné hodnoty - field_regexp: Regulárny výraz - field_min_length: Minimálna dĺžka - field_max_length: Maximálna dĺžka - field_value: Hodnota - field_category: Kategória - field_title: Názov - field_project: Projekt - field_issue: Úloha - field_status: Stav - field_notes: Poznámky - field_is_closed: Úloha uzavretá - field_is_default: Predvolený stav - field_tracker: Front - field_subject: Predmet - field_due_date: Odovzdať do - field_assigned_to: Priradené - field_priority: Priorita - field_fixed_version: Cieľová verzia - field_user: Používateľ - field_role: Rola - field_homepage: Domovská stránka - field_is_public: Verejné - field_parent: Nadradený projekt - field_is_in_roadmap: Úlohy zobrazené v pláne - field_login: Prihlasovacie meno - field_mail_notification: Emailové upozornenie - field_admin: Administrátor - field_last_login_on: Posledné prihlásenie - field_language: Jazyk - field_effective_date: Dátum - field_password: Heslo - field_new_password: Nové heslo - field_password_confirmation: Potvrdenie hesla - field_version: Verzia - field_type: Typ - field_host: Host - field_port: Port - field_account: Účet - field_base_dn: Base DN - field_attr_login: Prihlásenie (atribút) - field_attr_firstname: Meno (atribút) - field_attr_lastname: Priezvisko (atribút) - field_attr_mail: Email (atribút) - field_onthefly: Okamžité vytváranie používateľov - field_start_date: Počiatočný dátum - field_done_ratio: "% hotovo" - field_auth_source: Autentifikačný mód - field_hide_mail: Nezobrazovať môj email - field_comments: Komentár - field_url: URL - field_start_page: Východzia stránka - field_subproject: Podprojekt - field_hours: Hodiny - field_activity: Aktivita - field_spent_on: Dátum - field_identifier: Identifikátor - field_is_filter: Použiť ako filter - field_issue_to: Súvisiaca úloha - field_delay: Oneskorenie - field_assignable: Úlohy môžu byť priradené tejto role - field_redirect_existing_links: Presmerovať existujúce odkazy - field_estimated_hours: Odhadovaný čas - field_column_names: Stĺpce - field_time_zone: Časové pásmo - field_searchable: Možné prehľadávanie - field_default_value: Predvolená hodnota - field_comments_sorting: Zobraziť komentáre - - setting_app_title: Názov aplikácie - setting_welcome_text: Uvítací text - setting_default_language: Predvolený jazyk - setting_login_required: Vyžadovaná autentifikácia - setting_self_registration: Povolená registrácia - setting_attachment_max_size: Maximálna veľkosť prílohy - setting_issues_export_limit: Maximálny počet úloh pri exporte - setting_mail_from: Odosielať emaily z adresy - setting_bcc_recipients: Príjemcov do skrytej kópie (bcc) - setting_host_name: Hostname a cesta - setting_text_formatting: Formátovanie textu - setting_wiki_compression: Kompresia histórie Wiki - setting_feeds_limit: Maximálny počet zobrazených položiek v Atom feed - setting_default_projects_public: Nové projekty nastavovať ako verejné - setting_autofetch_changesets: Automaticky vykonať commity - setting_sys_api_enabled: Povolit Webovú službu (WS) na správu repozitára - setting_commit_ref_keywords: Kľúčové slová pre referencie - setting_commit_fix_keywords: Kľúčové slová pre opravy - setting_autologin: Automatické prihlasovanie - setting_date_format: Formát dátumu - setting_time_format: Formát času - setting_cross_project_issue_relations: Povoliť prepojenia úloh naprieč projektmi - setting_issue_list_default_columns: Predvolené stĺpce zobrazené v zozname úloh - setting_emails_footer: Pätička emailu - setting_protocol: Protokol - setting_per_page_options: Povolené množstvo položiek na stránku - setting_user_format: Formát zobrazenia používateľa - setting_activity_days_default: "Počet zobrazených dní na stránku pri aktivitách projektu:" - setting_display_subprojects_issues: Predvolené zobrazovanie úloh podprojektov v hlavnom projekte - - project_module_issue_tracking: Sledovanie úloh - project_module_time_tracking: Sledovanie času - project_module_news: Novinky - project_module_documents: Dokumenty - project_module_files: Súbory - project_module_wiki: Wiki - project_module_repository: Repozitár - project_module_boards: Diskusné fóra - - label_user: Požívateľ - label_user_plural: Používatelia - label_user_new: Nový používateľ - label_project: Projekt - label_project_new: Nový projekt - label_project_plural: Projekty - label_x_projects: - zero: žiadne projekty - one: 1 projekt - other: "%{count} projektov" - label_project_all: Všetky projekty - label_project_latest: Posledné projekty - label_issue: Úloha - label_issue_new: Nová úloha - label_issue_plural: Úlohy - label_issue_view_all: Zobraziť všetky úlohy - label_issues_by: "Úlohy od používateľa %{value}" - label_issue_added: Úloha bola pridaná - label_issue_updated: Úloha bola aktualizovaná - label_document: Dokument - label_document_new: Nový dokument - label_document_plural: Dokumenty - label_document_added: Dokument bol pridaný - label_role: Rola - label_role_plural: Roly - label_role_new: Nová rola - label_role_and_permissions: Roly a oprávnenia - label_member: Člen - label_member_new: Nový člen - label_member_plural: Členovia - label_tracker: Front - label_tracker_plural: Fronty - label_tracker_new: Nový front - label_workflow: Pracovný postup (workflow) - label_issue_status: Stav úloh - label_issue_status_plural: Stavy úloh - label_issue_status_new: Nový stav - label_issue_category: Kategória úloh - label_issue_category_plural: Kategórie úloh - label_issue_category_new: Nová kategória - label_custom_field: Vlastné pole - label_custom_field_plural: Vlastné polia - label_custom_field_new: Nové pole - label_enumerations: Zoznamy - label_enumeration_new: Nová hodnota - label_information: Informácia - label_information_plural: Informácie - label_register: Registrácia - label_password_lost: Zabudnuté heslo - label_home: Domov - label_my_page: Moja stránka - label_my_account: Môj účet - label_my_projects: Moje projekty - label_administration: Administrácia - label_login: Prihlásenie - label_logout: Odhlásenie - label_help: Pomoc - label_reported_issues: Nahlásené úlohy - label_assigned_to_me_issues: Moje úlohy - label_last_login: Posledné prihlásenie - label_registered_on: Dátum registrácie - label_activity: Aktivita - label_overall_activity: Celková aktivita - label_new: Nový - label_logged_as: Prihlásený ako - label_environment: Prostredie - label_authentication: Autentifikácia - label_auth_source: Autentifikačný mód - label_auth_source_new: Nový autentifikačný mód - label_auth_source_plural: Autentifikačné módy - label_subproject_plural: Podprojekty - label_min_max_length: Min. - max. dĺžka - label_list: Zoznam - label_date: Dátum - label_integer: Celé číslo - label_float: Desatinné číslo - label_boolean: Áno/Nie - label_string: Text - label_text: Dlhý text - label_attribute: Atribút - label_attribute_plural: Atribúty - label_no_data: Žiadne položky - label_change_status: Zmeniť stav - label_history: História - label_attachment: Súbor - label_attachment_new: Nový súbor - label_attachment_delete: Vymazať súbor - label_attachment_plural: Súbory - label_file_added: Súbor bol pridaný - label_report: Hlásenie - label_report_plural: Hlásenia - label_news: Novinky - label_news_new: Pridať novinku - label_news_plural: Novinky - label_news_latest: Posledné novinky - label_news_view_all: Zobraziť všetky novinky - label_news_added: Novinka bola pridaná - label_settings: Nastavenia - label_overview: Prehľad - label_version: Verzia - label_version_new: Nová verzia - label_version_plural: Verzie - label_confirmation: Potvrdenie - label_export_to: 'K dispozícii tiež ako:' - label_read: Načítava sa... - label_public_projects: Verejné projekty - label_open_issues: otvorená - label_open_issues_plural: otvorené - label_closed_issues: uzavretá - label_closed_issues_plural: uzavreté - label_x_open_issues_abbr: - zero: 0 otvorených - one: 1 otvorená - other: "%{count} otvorených" - label_x_closed_issues_abbr: - zero: 0 uzavretých - one: 1 uzavretá - other: "%{count} uzavretých" - label_total: Celkom - label_permissions: Oprávnenia - label_current_status: Aktuálny stav - label_new_statuses_allowed: Povolené nové stavy - label_all: všetko - label_none: nič - label_nobody: nikto - label_next: Ďalšie - label_previous: Predchádzajúce - label_used_by: Použité - label_details: Podrobnosti - label_add_note: Pridať poznámku - label_calendar: Kalendár - label_months_from: mesiacov od - label_gantt: Ganttov graf - label_internal: Interný - label_last_changes: "posledných %{count} zmien" - label_change_view_all: Zobraziť všetky zmeny - label_comment: Komentár - label_comment_plural: Komentáre - label_x_comments: - zero: žiadne komentáre - one: 1 komentár - other: "%{count} komentárov" - label_comment_add: Pridať komentár - label_comment_added: Komentár bol pridaný - label_comment_delete: Vymazať komentár - label_query: Vlastný filter - label_query_plural: Vlastné filtre - label_query_new: Nový filter vyhľadávania - label_filter_add: Pridať filter - label_filter_plural: Filtre - label_equals: je - label_not_equals: nie je - label_in_less_than: je menší ako - label_in_more_than: je väčší ako - label_in: v - label_today: dnes - label_yesterday: včera - label_this_week: tento týždeň - label_last_week: minulý týždeň - label_last_n_days: "v posledných %{count} dňoch" - label_this_month: tento mesiac - label_last_month: minulý mesiac - label_this_year: tento rok - label_date_range: Časový rozsah - label_less_than_ago: pred menej ako (dňami) - label_more_than_ago: pred viac ako (dňami) - label_ago: pred (dňami) - label_contains: obsahuje - label_not_contains: neobsahuje - label_day_plural: dní - label_repository: Repozitár - label_repository_plural: Repozitáre - label_browse: Prechádzať - label_revision: Revízia - label_revision_plural: Revízie - label_associated_revisions: Súvisiace revízie - label_added: pridané - label_modified: zmenené - label_deleted: vymazané - label_latest_revision: Posledná revízia - label_latest_revision_plural: Posledné revízie - label_view_revisions: Zobraziť revízie - label_max_size: Maximálna veľkosť - label_sort_highest: Presunúť na začiatok - label_sort_higher: Presunúť vyššie - label_sort_lower: Presunúť nižšie - label_sort_lowest: Presunúť na koniec - label_roadmap: Plán - label_roadmap_due_in: "Zostáva %{value}" - label_roadmap_overdue: "%{value} meškanie" - label_roadmap_no_issues: Pre túto verziu neexistujú žiadne úlohy - label_search: Hľadať - label_result_plural: Výsledky - label_all_words: Všetky slová - label_wiki: Wiki - label_wiki_edit: Wiki úprava - label_wiki_edit_plural: Wiki úpravy - label_wiki_page: Wiki stránka - label_wiki_page_plural: Wikistránky - label_index_by_title: Index podľa názvu - label_index_by_date: Index podľa dátumu - label_current_version: Aktuálna verzia - label_preview: Náhľad - label_feed_plural: Príspevky - label_changes_details: Detail všetkých zmien - label_issue_tracking: Sledovanie úloh - label_spent_time: Strávený čas - label_f_hour: "%{value} hodina" - label_f_hour_plural: "%{value} hodín" - label_time_tracking: Sledovanie času - label_change_plural: Zmeny - label_statistics: Štatistiky - label_commits_per_month: Commity za mesiac - label_commits_per_author: Commity podľa autora - label_view_diff: Zobraziť rozdiely - label_diff_inline: vo vnútri - label_diff_side_by_side: vedľa seba - label_options: Nastavenia - label_copy_workflow_from: Kopírovať pracovný postup (workflow) z - label_permissions_report: Prehľad oprávnení - label_watched_issues: Sledované úlohy - label_related_issues: Súvisiace úlohy - label_applied_status: Použitý stav - label_loading: Nahráva sa... - label_relation_new: Nové prepojenie - label_relation_delete: Odstrániť prepojenie - label_relates_to: Súvisiace s - label_duplicates: Duplikáty - label_blocks: Blokované - label_blocked_by: Zablokované používateľom - label_precedes: Predchádza - label_follows: Nasleduje po - label_stay_logged_in: Zostať prihlásený - label_disabled: zakázané - label_show_completed_versions: Ukázať dokončené verzie - label_me: ja - label_board: Fórum - label_board_new: Nové fórum - label_board_plural: Fóra - label_topic_plural: Témy - label_message_plural: Správy - label_message_last: Posledná správa - label_message_new: Nová správa - label_message_posted: Správa bola pridaná - label_reply_plural: Odpovede - label_send_information: Zaslať informácie o účte používateľa - label_year: Rok - label_month: Mesiac - label_week: Týždeň - label_date_from: Od - label_date_to: Do - label_language_based: Podľa jazyka používateľa - label_sort_by: "Zoradenie podľa %{value}" - label_send_test_email: Poslať testovací email - label_feeds_access_key_created_on: "Prístupový kľúč pre Atom bol vytvorený pred %{value}" - label_module_plural: Moduly - label_added_time_by: "Pridané používateľom %{author} pred %{age}" - label_updated_time: "Aktualizované pred %{value}" - label_jump_to_a_project: Prejsť na projekt... - label_file_plural: Súbory - label_changeset_plural: Súbory zmien - label_default_columns: Predvolené stĺpce - label_no_change_option: (bez zmeny) - label_bulk_edit_selected_issues: Hromadná úprava vybraných úloh - label_theme: Téma - label_default: Predvolené - label_search_titles_only: Vyhľadávať iba v názvoch - label_user_mail_option_all: "Pre všetky udalosti všetkých mojich projektov" - label_user_mail_option_selected: "Pre všetky udalosti vybraných projektov..." - label_user_mail_no_self_notified: "Nezasielať informácie o mnou vytvorených zmenách" - label_registration_activation_by_email: aktivácia účtu emailom - label_registration_manual_activation: manuálna aktivácia účtu - label_registration_automatic_activation: automatická aktivácia účtu - label_display_per_page: "%{value} na stránku" - label_age: Vek - label_change_properties: Zmeniť vlastnosti - label_general: Všeobecné - label_scm: SCM - label_plugins: Pluginy - label_ldap_authentication: Autentifikácia LDAP - label_downloads_abbr: D/L - label_optional_description: Voliteľný popis - label_add_another_file: Pridať ďalší súbor - label_preferences: Nastavenia - label_chronological_order: V chronologickom poradí - label_reverse_chronological_order: V obrátenom chronologickom poradí - - button_login: Prihlásiť - button_submit: Potvrdiť - button_save: Uložiť - button_check_all: Označiť všetko - button_uncheck_all: Zrušiť výber - button_delete: Odstrániť - button_create: Vytvoriť - button_test: Test - button_edit: Upraviť - button_add: Pridať - button_change: Zmeniť - button_apply: Použiť - button_clear: Späť na pôvodné - button_lock: Uzamknúť - button_unlock: Odomknúť - button_download: Stiahnuť - button_list: Vypísať - button_view: Zobraziť - button_move: Presunúť - button_back: Späť - button_cancel: Zrušiť - button_activate: Aktivovať - button_sort: Zoradiť - button_log_time: Pridať časový záznam - button_rollback: Naspäť na túto verziu - button_watch: Sledovať - button_unwatch: Nesledovať - button_reply: Odpovedať - button_archive: Archivovať - button_unarchive: zrušiť archiváciu - button_reset: Resetovať - button_rename: Premenovať - button_change_password: Zmeniť heslo - button_copy: Kopírovať - button_annotate: Komentovať - button_update: Aktualizovať - button_configure: Konfigurovať - - status_active: aktívny - status_registered: zaregistrovaný - status_locked: uzamknutý - - text_select_mail_notifications: Vyberte akciu, pri ktorej bude zaslané upozornenie emailom. - text_regexp_info: napr. ^[A-Z0-9]+$ - text_min_max_length_info: 0 znamená bez limitu - text_project_destroy_confirmation: Naozaj si želáte odstrániť tento projekt a všetky súvisiace údaje? - text_workflow_edit: Vyberte rolu a front na úpravu pracovného postupu (workflow) - text_are_you_sure: Naozaj si želáte vykonať túto akciu? - text_tip_issue_begin_day: úloha začína v tento deň - text_tip_issue_end_day: úloha končí v tento deň - text_tip_issue_begin_end_day: úloha začína a končí v tento deň - text_caracters_maximum: "Maximálne %{count} znakov." - text_caracters_minimum: "Dĺžka musí byť minimálne %{count} znakov." - text_length_between: "Dĺžka medzi %{min} až %{max} znakmi." - text_tracker_no_workflow: Pre tento front nie je definovaný žiadny pracovný postup (workflow) - text_unallowed_characters: Nepovolené znaky - text_comma_separated: Je povolených viacero hodnôt (navzájom oddelené čiarkou). - text_issues_ref_in_commit_messages: Referencie a opravy úloh v commitoch - text_issue_added: "úloha %{id} bola vytvorená používateľom %{author}." - text_issue_updated: "Úloha %{id} bola aktualizovaná používateľom %{author}." - text_wiki_destroy_confirmation: Naozaj si želáte vymazať túto Wiki a celý jej obsah? - text_issue_category_destroy_question: "Do tejto kategórie je zaradených niekoľko úloh (%{count}). Čo si želáte s nimi urobiť?" - text_issue_category_destroy_assignments: Zrušiť zaradenie do kategórie - text_issue_category_reassign_to: Preradiť úlohy do tejto kategórie - text_user_mail_option: "Pri projektoch, ktoré neboli vybrané, budete dostávať upozornenia týkajúce sa iba vašich alebo vami sledovaných vecí (napr. vecí, ktorých ste autor, alebo ku ktorým ste priradení)." - text_no_configuration_data: "Roly, fronty, stavy úloh ani pracovné postupy (workflow) neboli zatiaľ nakonfigurované.\nOdporúčame vám nahrať predvolenú konfiguráciu. Následne môžete všetky nastavenia upraviť." - text_load_default_configuration: Nahrať predvolenú konfiguráciu - text_status_changed_by_changeset: "Aplikované v súbore zmien %{value}." - text_issues_destroy_confirmation: 'Naozaj si želáte odstrániť všetky vybrané úlohy?' - text_select_project_modules: 'Vybrať moduly povolené v tomto projekte:' - text_default_administrator_account_changed: Predvolené nastavenie administrátorského účtu bolo zmenené - text_file_repository_writable: Povolený zápis do priečinka s prílohami - text_minimagick_available: MiniMagick k dispozícii (voliteľné) - text_destroy_time_entries_question: Pri úlohách, ktoré chcete odstrániť, je zaznamenaných %{hours} hodín práce. Čo si želáte urobiť? - text_destroy_time_entries: Odstrániť zaznamenané hodiny - text_assign_time_entries_to_project: Priradiť zaznamenané hodiny k projektu - text_reassign_time_entries: 'Preradiť zaznamenané hodiny k tejto úlohe:' - - default_role_manager: Manažér - default_role_developer: Vývojár - default_role_reporter: Reportér - default_tracker_bug: Chyba - default_tracker_feature: Funkcionalita - default_tracker_support: Podpora - default_issue_status_new: Nová - default_issue_status_in_progress: Rozpracovaná - default_issue_status_resolved: Vyriešená - default_issue_status_feedback: Čaká na odsúhlasenie - default_issue_status_closed: Uzavretá - default_issue_status_rejected: Odmietnutá - default_doc_category_user: Používateľská dokumentácia - default_doc_category_tech: Technická dokumentácia - default_priority_low: Nízká - default_priority_normal: Normálna - default_priority_high: Vysoká - default_priority_urgent: Urgentná - default_priority_immediate: Okamžitá - default_activity_design: Dizajn - default_activity_development: Vývoj - - enumeration_issue_priorities: Priority úloh - enumeration_doc_categories: Kategórie dokumentov - enumeration_activities: Aktivity (sledovanie času) - error_scm_annotate: "Položka neexistuje, alebo nemôže byť komentovaná." - text_subprojects_destroy_warning: "Jeho podprojekty: %{value} budú tiež vymazané." - label_and_its_subprojects: "%{value} a jeho podprojekty" - mail_body_reminder: "Nasledovné úlohy (%{count}), ktoré sú vám priradené, majú byť hotové za %{days} dní:" - mail_subject_reminder: "%{count} úlohy majú byť hotové za %{days} dní" - text_user_wrote: "Používateľ %{value} napísal:" - text_user_wrote_in: "Používateľ %{value} napísal (%{link}):" - label_duplicated_by: Duplikoval - setting_enabled_scm: Povolené SCM - text_enumeration_category_reassign_to: 'Prenastaviť na túto hodnotu:' - text_enumeration_destroy_question: "%{count} objektov je nastavených na túto hodnotu." - label_incoming_emails: Prichádzajúce emaily - label_generate_key: Vygenerovať kľúč - setting_mail_handler_api_enabled: Zapnúť Webovú službu (WS) pre prichádzajúce emaily - setting_mail_handler_api_key: API kľúč - text_email_delivery_not_configured: "Doručovanie emailov nie je nastavené, notifikácie sú vypnuté.\nNastavte váš SMTP server v config/configuration.yml a reštartujte aplikáciu, čím funkciu aktivujete." - field_parent_title: Nadradená stránka - label_issue_watchers: Pozorovatelia - button_quote: Citácia - setting_sequential_project_identifiers: Generovať sekvenčné identifikátory projektov - notice_unable_delete_version: Verzia nemôže byť zmazaná. - label_renamed: premenované - label_copied: kopírované - setting_plain_text_mail: Len jednoduchý text (bez HTML) - permission_view_files: Zobrazenie súborov - permission_edit_issues: Úprava úloh - permission_edit_own_time_entries: Úprava vlastných záznamov o strávenom čase - permission_manage_public_queries: Správa verejných filtrov vyhľadávania - permission_add_issues: Pridávanie úloh - permission_log_time: Zaznamenávanie stráveného času - permission_view_changesets: Zobrazenie súborov zmien - permission_view_time_entries: Zobrazenie stráveného času - permission_manage_versions: Správa verzií - permission_manage_wiki: Správa Wiki - permission_manage_categories: Správa kategórií úloh - permission_protect_wiki_pages: Ochrana wikistránok - permission_comment_news: Komentovanie noviniek - permission_delete_messages: Mazanie správ - permission_select_project_modules: Voľba projektových modulov - permission_edit_wiki_pages: Úprava wikistránok - permission_add_issue_watchers: Pridávanie pozorovateľov - permission_view_gantt: Zobrazenie Ganttovho grafu - permission_manage_issue_relations: Správa prepojení medzi úlohami - permission_delete_wiki_pages: Mazanie wikistránok - permission_manage_boards: Správa diskusií - permission_delete_wiki_pages_attachments: Mazanie wikipríloh - permission_view_wiki_edits: Zobrazenie wikiúprav - permission_add_messages: Pridávanie správ - permission_view_messages: Zobrazenie správ - permission_manage_files: Správa súborov - permission_edit_issue_notes: Úprava poznámok úlohy - permission_manage_news: Správa noviniek - permission_view_calendar: Zobrazenie kalendára - permission_manage_members: Správa členov - permission_edit_messages: Úprava správ - permission_delete_issues: Mazanie správ - permission_view_issue_watchers: Zobrazenie zoznamu pozorovateľov - permission_manage_repository: Správa repozitára - permission_commit_access: Prístup ku commitom - permission_browse_repository: Prechádzanie repozitára - permission_view_documents: Zobrazenie dokumentov - permission_edit_project: Úprava projektu - permission_add_issue_notes: Pridanie poznámky k úlohe - permission_save_queries: Ukladanie filtrov vyhľadávania - permission_view_wiki_pages: Zobrazenie wikistránok - permission_rename_wiki_pages: Premenovanie wikistránok - permission_edit_time_entries: Úprava záznamov o strávenom čase - permission_edit_own_issue_notes: Úprava vlastných poznámok k úlohe - setting_gravatar_enabled: Používať používateľské Gravatar ikonky - permission_edit_own_messages: Úprava vlastných správ - permission_delete_own_messages: Mazanie vlastných správ - text_repository_usernames_mapping: "Vyberte alebo aktualizujte priradenie používateľov systému Redmine k menám používateľov nájdených v logu repozitára.\nPoužívatelia s rovnakým prihlasovacím menom alebo emailom v systéme Redmine a repozitári sú priradení automaticky." - label_example: Príklad - label_user_activity: "Aktivita používateľa %{value}" - label_updated_time_by: "Aktualizované používateľom %{author} pred %{age}" - text_diff_truncated: '...Tento výpis rozdielov bol skrátený, pretože prekračuje maximálny počet riadkov, ktorý môže byť zobrazený.' - setting_diff_max_lines_displayed: Maximálny počet zobrazených riadkov výpisu rozdielov - text_plugin_assets_writable: Povolený zápis do priečinka pre pluginy - warning_attachments_not_saved: "%{count} súborov nemohlo byť uložených." - field_editable: Editovateľné - label_display: Zobrazenie - button_create_and_continue: Vytvoriť a pokračovať - text_custom_field_possible_values_info: 'Každá hodnota na samostatný riadok' - setting_repository_log_display_limit: Maximálny počet revízií zobrazených v log súbore - setting_file_max_size_displayed: Maximálna veľkosť textových súborov zobrazených priamo na stránke - field_watcher: Pozorovatelia - setting_openid: Povoliť prihlasovanie a registráciu pomocou OpenID - field_identity_url: OpenID URL - label_login_with_open_id_option: alebo sa prihlásiť pomocou OpenID - field_content: Obsah - label_descending: Zostupne - label_sort: Zoradenie - label_ascending: Vzostupne - label_date_from_to: Od %{start} do %{end} - label_greater_or_equal: '>=' - label_less_or_equal: '<=' - text_wiki_page_destroy_question: Táto stránka má %{descendants} podstránok a potomkov. Čo si želáte urobiť? - text_wiki_page_reassign_children: Preradiť podstránky k tejto nadradenej stránke - text_wiki_page_nullify_children: Zachovať podstránky ako hlavné stránky - text_wiki_page_destroy_children: Vymazať podstránky a všetkých ich potomkov - setting_password_min_length: Minimálna dĺžka hesla - field_group_by: Zoskupiť výsledky podľa - mail_subject_wiki_content_updated: "Wikistránka '%{id}' bola aktualizovaná" - label_wiki_content_added: Wikistránka bola pridaná - mail_subject_wiki_content_added: "Bola pridaná wikistránka '%{id}'" - mail_body_wiki_content_added: Používateľ %{author} pridal wikistránku '%{id}'. - permission_add_project: Vytvorenie projektu - label_wiki_content_updated: Wikistránka bola aktualizovaná - mail_body_wiki_content_updated: Používateľ %{author} aktualizoval wikistránku '%{id}'. - setting_new_project_user_role_id: Rola non-admin používateľa, ktorý vytvorí projekt - label_view_all_revisions: Zobraziť všetky revízie - label_tag: Štítok - label_branch: Vetva - error_no_tracker_in_project: K tomuto projektu nie je priradený žiadny front. Skontrolujte prosím nastavenia projektu. - error_no_default_issue_status: Nie je definovaný predvolený stav úlohy. Skontrolujte prosím vašu konfiguráciu (choďte na "Administrácia -> Stavy úloh"). - text_journal_changed: "%{label} bolo zmenené z %{old} na %{new}" - text_journal_set_to: "%{label} bolo nastavené na %{value}" - text_journal_deleted: "%{label} bolo vymazané (%{old})" - label_group_plural: Skupiny - label_group: Skupina - label_group_new: Nová skupina - label_time_entry_plural: Strávený čas - text_journal_added: "%{label} %{value} bolo pridané" - field_active: Aktívne - enumeration_system_activity: Aktivita systému - permission_delete_issue_watchers: Odstránenie pozorovateľov - version_status_closed: uzavreté - version_status_locked: uzamknuté - version_status_open: otvorené - error_can_not_reopen_issue_on_closed_version: Nemožno opäť otvoriť úlohu, ktorá bola priradená uzavretej verzii - label_user_anonymous: Anonym - button_move_and_follow: Presunúť a sledovať - setting_default_projects_modules: Predvolené povolené moduly pre nové projekty - setting_gravatar_default: Predvolený Gravatar obrázok - field_sharing: Zdieľanie - label_version_sharing_hierarchy: S hierarchiou projektu - label_version_sharing_system: So všetkými projektmi - label_version_sharing_descendants: S podprojektmi - label_version_sharing_tree: S projektovým stromom - label_version_sharing_none: Nezdieľané - error_can_not_archive_project: Tento projekt nemôže byť archivovaný - button_copy_and_follow: Kopírovať a sledovať - label_copy_source: Zdroj - setting_issue_done_ratio: Vyrátať mieru vypracovania úlohy pomocou - setting_issue_done_ratio_issue_status: Použiť stav úlohy - error_issue_done_ratios_not_updated: Stav vypracovania úlohy nebol aktualizovaný. - error_workflow_copy_target: Vyberte prosím jednu alebo viaceré cieľové fronty a roly - setting_issue_done_ratio_issue_field: Použiť pole úlohy - label_copy_same_as_target: Rovnaké ako cieľ - label_copy_target: Cieľ - notice_issue_done_ratios_updated: Stav vypracovania úlohy bol aktualizovaný. - error_workflow_copy_source: Vyberte prosím zdrojový front alebo rolu - label_update_issue_done_ratios: Aktualizovať stav vypracovania úlohy - setting_start_of_week: Pracovný týždeň začína v - permission_view_issues: Zobrazenie úloh - label_display_used_statuses_only: Zobraziť len stavy, ktoré sú priradené k tomuto frontu - label_revision_id: "Revízia %{value}" - label_api_access_key: Prístupový kľúč API - label_api_access_key_created_on: "Prístupový kľúč API bol vytvorený pred %{value}" - label_feeds_access_key: Prístupový kľúč Atom - notice_api_access_key_reseted: Váš prístupový kľúč API bol resetovaný. - setting_rest_api_enabled: Zapnúť webovú službu REST - label_missing_api_access_key: Prístupový kľuč API nenájdený - label_missing_feeds_access_key: Prístupový kľúč Atom nenájdený - button_show: Zobraziť - text_line_separated: Je povolené zadať viaceré hodnoty (každú hodnotu na samostatný riadok). - setting_mail_handler_body_delimiters: "Orezať emaily po jednom z nasledovných riadkov" - permission_add_subprojects: Vytváranie podprojektov - label_subproject_new: Nový podprojekt - text_own_membership_delete_confirmation: "Pokúšate sa odstrániť niektoré alebo všetky svoje prístupové práva a je možné, že už nebudete mať možnosť naďalej upravovať tento projekt.\nNaozaj si želáte pokračovať?" - label_close_versions: Uzavrieť dokončené verzie - label_board_sticky: Dôležité - label_board_locked: Uzamknuté - permission_export_wiki_pages: Export wikistránok - setting_cache_formatted_text: Uložiť formátovaný text do vyrovnávacej pamäte - permission_manage_project_activities: Správa aktivít projektu - error_unable_delete_issue_status: 'Nie je možné vymazať stav úlohy (%{value})' - label_profile: Profil - permission_manage_subtasks: Správa podúloh - field_parent_issue: Nadradená úloha - label_subtask_plural: Podúlohy - label_project_copy_notifications: Zaslať emailové upozornenie počas kopírovania projektu - error_can_not_delete_custom_field: Nie je možné vymazať vlastné pole - error_unable_to_connect: Nie je možné sa pripojiť (%{value}) - error_can_not_remove_role: "Táto rola sa používa a nemôže byť vymazaná." - error_can_not_delete_tracker: "Tento front obsahuje úlohy a nemôže byť vymazaný." - field_principal: Objednávateľ - notice_failed_to_save_members: "Nepodarilo sa uložiť členov: %{errors}." - text_zoom_out: Oddialiť - text_zoom_in: Priblížiť - notice_unable_delete_time_entry: Nie je možné vymazať časový záznam. - label_overall_spent_time: Celkový strávený čas - field_time_entries: Zaznamenaný čas - project_module_gantt: Ganttov graf - project_module_calendar: Kalendár - button_edit_associated_wikipage: "Upraviť súvisiacu wikistránku: %{page_title}" - field_text: Textové pole - setting_default_notification_option: Predvolené nastavenie upozornení - label_user_mail_option_only_my_events: Len pre veci, ktoré sledujem, alebo v ktorých som zapojený - label_user_mail_option_none: "Žiadne udalosti" - field_member_of_group: "Skupina priradeného používateľa" - field_assigned_to_role: "Rola priradeného používateľa" - notice_not_authorized_archived_project: Projekt, ku ktorému sa snažíte pristupovať, bol archivovaný. - label_principal_search: "Hľadať používateľa alebo skupinu:" - label_user_search: "Hľadať používateľa:" - field_visible: Viditeľné - setting_commit_logtime_activity_id: Aktivita pre zaznamenaný čas - text_time_logged_by_changeset: "Aplikované v súbore zmien %{value}." - setting_commit_logtime_enabled: Povoliť zaznamenávanie času - notice_gantt_chart_truncated: "Graf bol skrátený, pretože bol prekročený maximálny povolený počet zobrazených položiek (%{max})" - setting_gantt_items_limit: Maximálny počet položiek zobrazených na Ganttovom grafe - field_warn_on_leaving_unsaved: "Varovať ma, keď opúšťam stránku s neuloženým textom" - text_warn_on_leaving_unsaved: "Stránka, ktorú sa chystáte opustiť, obsahuje neuložený obsah. Ak stránku opustíte, neuložený obsah bude stratený." - label_my_queries: Moje filtre vyhľadávania - text_journal_changed_no_detail: "%{label} bolo aktualizované" - label_news_comment_added: Komentár k novinke bol pridaný - button_expand_all: Rozbaliť všetko - button_collapse_all: Zbaliť všetko - label_additional_workflow_transitions_for_assignee: Ďalšie zmeny stavu sú povolené, len ak je používateľ priradený - label_additional_workflow_transitions_for_author: Ďalšie zmeny stavu sú povolené, len ak je používateľ autorom - label_bulk_edit_selected_time_entries: Hromadne upraviť vybrané časové záznamy - text_time_entries_destroy_confirmation: 'Naozaj si želáte vymazať vybrané časové záznamy?' - label_role_anonymous: Anonymný - label_role_non_member: Nie je členom - label_issue_note_added: Poznámka bola pridaná - label_issue_status_updated: Stav bol aktualizovaný - label_issue_priority_updated: Priorita bola aktualizovaná - label_issues_visibility_own: Úlohy od používateľa alebo priradené používateľovi - field_issues_visibility: Viditeľnosť úloh - label_issues_visibility_all: Všetky úlohy - permission_set_own_issues_private: Nastavenie vlastných úloh ako verejné alebo súkromné - field_is_private: Súkromné - permission_set_issues_private: Nastavenie úloh ako verejné alebo súkromné - label_issues_visibility_public: Všetky úlohy, ktoré nie sú súkromné - text_issues_destroy_descendants_confirmation: "Týmto krokom vymažate aj %{count} podúloh." - field_commit_logs_encoding: Kódovanie komentárov ku kommitom - field_scm_path_encoding: Kódovanie cesty SCM - text_scm_path_encoding_note: "Predvolené: UTF-8" - field_path_to_repository: Cesta k repozitáru - field_root_directory: Koreňový adresár - field_cvs_module: Modul - field_cvsroot: CVSROOT - text_mercurial_repository_note: Lokálny repozitár (napr. /hgrepo, c:\hgrepo) - text_scm_command: Príkaz - text_scm_command_version: Verzia - label_git_report_last_commit: Hlásiť posledný commit pre súbory a priečinky - notice_issue_successful_create: "Úloha %{id} bola vytvorená." - label_between: medzi - setting_issue_group_assignment: Povoliť priradenie úlohy skupine - label_diff: rozdiely - text_git_repository_note: Repozitár je iba jeden a je lokálny (e.g. /gitrepo, c:\gitrepo) - description_query_sort_criteria_direction: Smer triedenia - description_project_scope: Rozsah vyhľadávania - description_filter: Filter - description_user_mail_notification: Nastavenia upozornení emailom - description_message_content: Obsah správy - description_available_columns: Dostupné stĺpce - description_issue_category_reassign: Vybrať kategóriu úlohy - description_search: Vyhľadávanie - description_notes: Poznámky - description_choose_project: Projekty - description_query_sort_criteria_attribute: Atribút triedenia - description_wiki_subpages_reassign: Vybrať novú nadradenú stránku - description_selected_columns: Vybrané stĺpce - label_parent_revision: Rodič - label_child_revision: Potomok - error_scm_annotate_big_text_file: "Komentár nemohol byť pridaný, pretože bola prekročená maximálna povolená veľkosť textového súboru." - setting_default_issue_start_date_to_creation_date: Použiť aktuálny dátum ako počiatočný dátum pri nových úlohách - button_edit_section: Upraviť túto sekciu - setting_repositories_encodings: Kódovania pre prílohy a repozitáre - description_all_columns: Všetky stĺpce - button_export: Export - label_export_options: "Nastavenia exportu do %{export_format}" - error_attachment_too_big: "Súbor nemožno nahrať, pretože prekračuje maximálnu povolenú veľkosť súboru (%{max_size})" - notice_failed_to_save_time_entries: "%{count} časových záznamov z %{total} vybraných nebolo uložených: %{ids}." - label_x_issues: - zero: 0 úloh - one: 1 úloha - other: "%{count} úloh" - label_repository_new: Nový repozitár - field_repository_is_default: Hlavný repozitár - label_copy_attachments: Kopírovať prílohy - label_item_position: "%{position} z %{count}" - label_completed_versions: Dokončené verzie - text_project_identifier_info: 'Sú povolené iba malé písmená (a-z), čísla, pomlčky a podčiarkovníky. Identifikátor musí začínať malým písmenom.
    Po uložení už nie je možné identifikátor zmeniť.' - field_multiple: Viacero hodnôt - setting_commit_cross_project_ref: Povoliť referencie a opravy úloh všetkých ostatných projektov - text_issue_conflict_resolution_add_notes: Pridať moje poznámky a zahodiť ostatné moje zmeny - text_issue_conflict_resolution_overwrite: "Napriek tomu aplikovať moje zmeny (predchádzajúce poznámky budú zachované, ale niektoré zmeny môžu byť prepísané)" - notice_issue_update_conflict: "Počas vašich úprav bola úloha aktualizovaná iným používateľom." - text_issue_conflict_resolution_cancel: "Zahodiť všetky moje zmeny a znovu zobraziť %{link}" - permission_manage_related_issues: Správa súvisiacich úloh - field_auth_source_ldap_filter: Filter LDAP - label_search_for_watchers: Hľadať pozorovateľov, ktorých chcete pridať - notice_account_deleted: "Váš účet bol natrvalo vymazaný." - setting_unsubscribe: Povoliť používateľom vymazať svoj vlastný účet - button_delete_my_account: Vymazať môj účet - text_account_destroy_confirmation: "Naozaj si želáte pokračovať?\nVáš účet bude natrvalo vymazaný, bez možnosti obnovenia." - error_session_expired: "Vaša relácia vypršala. Prihláste sa prosím znovu." - text_session_expiration_settings: "Varovanie: zmenou týchto nastavení môžu vypršať aktuálne relácie vrátane vašej." - setting_session_lifetime: Maximálny čas relácie - setting_session_timeout: Vypršanie relácie pri neaktivite - label_session_expiration: Vypršanie relácie - permission_close_project: Uzavretie / opätovné otvorenie projektu - button_close: Uzavrieť - button_reopen: Opäť otvoriť - project_status_active: aktívny - project_status_closed: uzavretý - project_status_archived: archivovaný - text_project_closed: Tento projekt je uzavretý a prístupný iba na čítanie. - notice_user_successful_create: "Používateľ %{id} bol vytvorený." - field_core_fields: Štandardné polia - field_timeout: "Vypršanie (v sekundách)" - setting_thumbnails_enabled: Zobraziť miniatúry príloh - setting_thumbnails_size: Veľkosť miniatúry (v pixeloch) - label_status_transitions: Zmeny stavu - label_fields_permissions: Oprávnenia k poliam - label_readonly: Iba na čítanie - label_required: Povinné - text_repository_identifier_info: 'Sú povolené iba malé písmená (a-z), čísla, pomlčky a podčiarkovníky.
    Po uložení už nie je možné identifikátor zmeniť.' - field_board_parent: Nadradené fórum - label_attribute_of_project: "%{name} projektu" - label_attribute_of_author: "%{name} autora" - label_attribute_of_assigned_to: "%{name} priradeného používateľa" - label_attribute_of_fixed_version: "%{name} cieľovej verzie" - label_copy_subtasks: Kopírovať podúlohy - label_copied_to: Skopírované do - label_copied_from: Skopírované z - label_any_issues_in_project: všetky úlohy projektu - label_any_issues_not_in_project: všetky úlohy nepatriace do projektu - field_private_notes: Súkromné poznámky - permission_view_private_notes: Zobrazenie súkromných poznámok - permission_set_notes_private: Nastavenie poznámok ako súkromné - label_no_issues_in_project: žiadne úlohy projektu - label_any: všetko - label_last_n_weeks: "posledných %{count} týždňov" - setting_cross_project_subtasks: Povoliť podúlohy naprieč projektmi - label_cross_project_descendants: S podprojektmi - label_cross_project_tree: S projektovým stromom - label_cross_project_hierarchy: S hierarchiou projektu - label_cross_project_system: So všetkými projektmi - button_hide: Skryť - setting_non_working_week_days: Dni voľna - label_in_the_next_days: počas nasledujúcich - label_in_the_past_days: počas minulých - label_attribute_of_user: "%{name} používateľa" - text_turning_multiple_off: "Ak zakážete výber viacerých hodnôt, polia s výberom viacerých hodnôt budú vyčistené. Tým sa zaistí, aby bola pre každé pole vybraná vždy len jedna hodnota." - label_attribute_of_issue: "%{name} úlohy" - permission_add_documents: Pridávanie dokumentov - permission_edit_documents: Úprava dokumentov - permission_delete_documents: Mazanie dokumentov - label_gantt_progress_line: Indikátor napredovania - setting_jsonp_enabled: Povoliť podporu JSONP - field_inherit_members: Zdediť členov - field_closed_on: Uzavreté - field_generate_password: Vygenerovať heslo - setting_default_projects_tracker_ids: Predvolené fronty pri nových projektoch - label_total_time: Celkový čas - text_scm_config: Svoje príkazy SCM môžete konfigurovať v súbore config/configuration.yml. Po jeho úprave prosím reštartujte aplikáciu. - text_scm_command_not_available: Príkaz SCM nie je k dispozícii. Skontrolujte prosím nastavenia na administračnom paneli. - setting_emails_header: Hlavička emailu - notice_account_not_activated_yet: Váš účet ešte nebol aktivovaný. Ak potrebujete zaslať nový aktivačný email, kliknite prosím na tento odkaz. - notice_account_locked: Váš účet je uzamknutý. - label_hidden: Skryté - label_visibility_private: iba pre mňa - label_visibility_roles: iba pre tieto roly - label_visibility_public: pre všetkých používateľov - field_must_change_passwd: Pri najbližšom prihlásení je potrebné zmeniť heslo - notice_new_password_must_be_different: Nové heslo nesmie byť rovnaké ako súčasné heslo - setting_mail_handler_excluded_filenames: Exclude attachments by name - text_convert_available: ImageMagick convert available (optional) - label_link: Link - label_only: only - label_drop_down_list: drop-down list - label_checkboxes: checkboxes - label_link_values_to: Link values to URL - setting_force_default_language_for_anonymous: Force default language for anonymous - users - setting_force_default_language_for_loggedin: Force default language for logged-in - users - label_custom_field_select_type: Select the type of object to which the custom field - is to be attached - label_issue_assigned_to_updated: Assignee updated - label_check_for_updates: Check for updates - label_latest_compatible_version: Latest compatible version - label_unknown_plugin: Unknown plugin - label_radio_buttons: radio buttons - label_group_anonymous: Anonymous users - label_group_non_member: Non member users - label_add_projects: Add projects - field_default_status: Default status - text_subversion_repository_note: 'Examples: file:///, http://, https://, svn://, svn+[tunnelscheme]://' - field_users_visibility: Users visibility - label_users_visibility_all: All active users - label_users_visibility_members_of_visible_projects: Members of visible projects - label_edit_attachments: Edit attached files - setting_link_copied_issue: Link issues on copy - label_link_copied_issue: Link copied issue - label_ask: Ask - label_search_attachments_yes: Search attachment filenames and descriptions - label_search_attachments_no: Do not search attachments - label_search_attachments_only: Search attachments only - label_search_open_issues_only: Open issues only - field_address: Email - setting_max_additional_emails: Maximum number of additional email addresses - label_email_address_plural: Emails - label_email_address_add: Add email address - label_enable_notifications: Enable notifications - label_disable_notifications: Disable notifications - setting_search_results_per_page: Search results per page - label_blank_value: blank - permission_copy_issues: Copy issues - error_password_expired: Your password has expired or the administrator requires you - to change it. - field_time_entries_visibility: Time logs visibility - setting_password_max_age: Require password change after - label_parent_task_attributes: Parent tasks attributes - label_parent_task_attributes_derived: Calculated from subtasks - label_parent_task_attributes_independent: Independent of subtasks - label_time_entries_visibility_all: All time entries - label_time_entries_visibility_own: Time entries created by the user - label_member_management: Member management - label_member_management_all_roles: All roles - label_member_management_selected_roles_only: Only these roles - label_password_required: Confirm your password to continue - label_total_spent_time: Celkový strávený čas - notice_import_finished: "%{count} items have been imported" - notice_import_finished_with_errors: "%{count} out of %{total} items could not be imported" - error_invalid_file_encoding: The file is not a valid %{encoding} encoded file - error_invalid_csv_file_or_settings: The file is not a CSV file or does not match the - settings below - error_can_not_read_import_file: An error occurred while reading the file to import - permission_import_issues: Import issues - label_import_issues: Import issues - label_select_file_to_import: Select the file to import - label_fields_separator: Field separator - label_fields_wrapper: Field wrapper - label_encoding: Encoding - label_comma_char: Comma - label_semi_colon_char: Semicolon - label_quote_char: Quote - label_double_quote_char: Double quote - label_fields_mapping: Fields mapping - label_file_content_preview: File content preview - label_create_missing_values: Create missing values - button_import: Import - field_total_estimated_hours: Total estimated time - label_api: API - label_total_plural: Totals - label_assigned_issues: Assigned issues - label_field_format_enumeration: Key/value list - label_f_hour_short: '%{value} h' - field_default_version: Default version - error_attachment_extension_not_allowed: Attachment extension %{extension} is not allowed - setting_attachment_extensions_allowed: Allowed extensions - setting_attachment_extensions_denied: Disallowed extensions - label_any_open_issues: any open issues - label_no_open_issues: no open issues - label_default_values_for_new_users: Default values for new users - error_ldap_bind_credentials: Invalid LDAP Account/Password - setting_sys_api_key: API kľúč - setting_lost_password: Zabudnuté heslo - mail_subject_security_notification: Security notification - mail_body_security_notification_change: ! '%{field} was changed.' - mail_body_security_notification_change_to: ! '%{field} was changed to %{value}.' - mail_body_security_notification_add: ! '%{field} %{value} was added.' - mail_body_security_notification_remove: ! '%{field} %{value} was removed.' - mail_body_security_notification_notify_enabled: Email address %{value} now receives - notifications. - mail_body_security_notification_notify_disabled: Email address %{value} no longer - receives notifications. - mail_body_settings_updated: ! 'The following settings were changed:' - field_remote_ip: IP address - label_wiki_page_new: New wiki page - label_relations: Relations - button_filter: Filter - mail_body_password_updated: Your password has been changed. - label_no_preview: No preview available - error_no_tracker_allowed_for_new_issue_in_project: The project doesn't have any trackers - for which you can create an issue - label_tracker_all: All trackers - label_new_project_issue_tab_enabled: Display the "New issue" tab - setting_new_item_menu_tab: Project menu tab for creating new objects - label_new_object_tab_enabled: Display the "+" drop-down - error_no_projects_with_tracker_allowed_for_new_issue: There are no projects with trackers - for which you can create an issue - field_textarea_font: Font used for text areas - label_font_default: Default font - label_font_monospace: Monospaced font - label_font_proportional: Proportional font - setting_timespan_format: Time span format - label_table_of_contents: Table of contents - setting_commit_logs_formatting: Apply text formatting to commit messages - setting_mail_handler_enable_regex: Enable regular expressions - error_move_of_child_not_possible: 'Subtask %{child} could not be moved to the new - project: %{errors}' - error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted: Spent time cannot - be reassigned to an issue that is about to be deleted - setting_timelog_required_fields: Required fields for time logs - label_attribute_of_object: '%{object_name}''s %{name}' - label_user_mail_option_only_assigned: Only for things I watch or I am assigned to - label_user_mail_option_only_owner: Only for things I watch or I am the owner of - warning_fields_cleared_on_bulk_edit: Changes will result in the automatic deletion - of values from one or more fields on the selected objects - field_updated_by: Updated by - field_last_updated_by: Last updated by - field_full_width_layout: Full width layout - label_last_notes: Last notes - field_digest: Checksum - field_default_assigned_to: Default assignee - setting_show_custom_fields_on_registration: Show custom fields on registration - permission_view_news: View news - label_no_preview_alternative_html: No preview available. %{link} the file instead. - label_no_preview_download: Download - setting_close_duplicate_issues: Close duplicate issues automatically - error_exceeds_maximum_hours_per_day: Cannot log more than %{max_hours} hours on the - same day (%{logged_hours} hours have already been logged) - setting_time_entry_list_defaults: Timelog list defaults - setting_timelog_accept_0_hours: Accept time logs with 0 hours - setting_timelog_max_hours_per_day: Maximum hours that can be logged per day and user - label_x_revisions: "%{count} revisions" - error_can_not_delete_auth_source: This authentication mode is in use and cannot be - deleted. - button_actions: Actions - mail_body_lost_password_validity: Please be aware that you may change the password - only once using this link. - text_login_required_html: When not requiring authentication, public projects and their - contents are openly available on the network. You can edit - the applicable permissions. - label_login_required_yes: 'Yes' - label_login_required_no: No, allow anonymous access to public projects - text_project_is_public_non_member: Public projects and their contents are available - to all logged-in users. - text_project_is_public_anonymous: Public projects and their contents are openly available - on the network. - label_version_and_files: Versions (%{count}) and Files - label_ldap: LDAP - label_ldaps_verify_none: LDAPS (without certificate check) - label_ldaps_verify_peer: LDAPS - label_ldaps_warning: It is recommended to use an encrypted LDAPS connection with certificate - check to prevent any manipulation during the authentication process. - label_nothing_to_preview: Nothing to preview - error_token_expired: This password recovery link has expired, please try again. - error_spent_on_future_date: Cannot log time on a future date - setting_timelog_accept_future_dates: Accept time logs on future dates - label_delete_link_to_subtask: Odstrániť prepojenie - error_not_allowed_to_log_time_for_other_users: You are not allowed to log time - for other users - permission_log_time_for_other_users: Log spent time for other users - label_tomorrow: tomorrow - label_next_week: next week - label_next_month: next month - text_role_no_workflow: No workflow defined for this role - text_status_no_workflow: No tracker uses this status in the workflows - setting_mail_handler_preferred_body_part: Preferred part of multipart (HTML) emails - setting_show_status_changes_in_mail_subject: Show status changes in issue mail notifications - subject - label_inherited_from_parent_project: Inherited from parent project - label_inherited_from_group: Inherited from group %{name} - label_trackers_description: Trackers description - label_open_trackers_description: View all trackers description - label_preferred_body_part_text: Text - label_preferred_body_part_html: HTML (experimental) - field_parent_issue_subject: Parent task subject - permission_edit_own_issues: Edit own issues - text_select_apply_tracker: Select tracker - label_updated_issues: Updated issues - text_avatar_server_config_html: The current avatar server is %{url}. - You can configure it in config/configuration.yml. - setting_gantt_months_limit: Maximum number of months displayed on the gantt chart - permission_import_time_entries: Import time entries - label_import_notifications: Send email notifications during the import - text_gs_available: ImageMagick PDF support available (optional) - field_recently_used_projects: Number of recently used projects in jump box - label_optgroup_bookmarks: Bookmarks - label_optgroup_others: Other projects - label_optgroup_recents: Recently used - button_project_bookmark: Add bookmark - button_project_bookmark_delete: Remove bookmark - field_history_default_tab: Issue's history default tab - label_issue_history_properties: Property changes - label_issue_history_notes: Notes - label_last_tab_visited: Last visited tab - field_unique_id: Unique ID - text_no_subject: no subject - setting_password_required_char_classes: Required character classes for passwords - label_password_char_class_uppercase: uppercase letters - label_password_char_class_lowercase: lowercase letters - label_password_char_class_digits: digits - label_password_char_class_special_chars: special characters - text_characters_must_contain: Must contain %{character_classes}. - label_starts_with: starts with - label_ends_with: ends with - label_issue_fixed_version_updated: Target version updated - setting_project_list_defaults: Projects list defaults - label_display_type: Display results as - label_display_type_list: List - label_display_type_board: Board - label_my_bookmarks: My bookmarks - label_import_time_entries: Import time entries diff --git a/config/locales/sl.yml b/config/locales/sl.yml deleted file mode 100644 index b8a9001..0000000 --- a/config/locales/sl.yml +++ /dev/null @@ -1,1315 +0,0 @@ -sl: - # Text direction: Left-to-Right (ltr) or Right-to-Left (rtl) - direction: ltr - date: - formats: - # Use the strftime parameters for formats. - # When no format has been given, it uses default. - # You can provide other formats here if you like! - default: "%d.%m.%Y" - short: "%d. %b" - long: "%d. %B, %Y" - - day_names: [Nedelja, Ponedeljek, Torek, Sreda, Četrtek, Petek, Sobota] - abbr_day_names: [Ned, Pon, To, Sr, Čet, Pet, Sob] - - # Don't forget the nil at the beginning; there's no such thing as a 0th month - month_names: [~, Januar, Februar, Marec, April, Maj, Junij, Julij, Avgust, September, Oktober, November, December] - abbr_month_names: [~, Jan, Feb, Mar, Apr, Maj, Jun, Jul, Aug, Sep, Okt, Nov, Dec] - # Used in date_select and datime_select. - order: - - :day - - :month - - :year - - time: - formats: - default: "%a, %d. %b, %Y %H:%M:%S %z" - time: "%H:%M" - short: "%d. %b %H:%M" - long: "%d. %B, %Y %H:%M" - am: "am" - pm: "pm" - - datetime: - distance_in_words: - half_a_minute: "pol minute" - less_than_x_seconds: - one: "manj kot 1. sekundo" - other: "manj kot %{count} sekund" - x_seconds: - one: "1. sekunda" - other: "%{count} sekund" - less_than_x_minutes: - one: "manj kot minuto" - other: "manj kot %{count} minut" - x_minutes: - one: "1 minuta" - other: "%{count} minut" - about_x_hours: - one: "okrog 1. ure" - other: "okrog %{count} ur" - x_hours: - one: "1 ura" - other: "%{count} ur" - x_days: - one: "1 dan" - other: "%{count} dni" - about_x_months: - one: "okrog 1. mesec" - other: "okrog %{count} mesecev" - x_months: - one: "1 mesec" - other: "%{count} mesecev" - about_x_years: - one: "okrog 1. leto" - other: "okrog %{count} let" - over_x_years: - one: "več kot 1. leto" - other: "več kot %{count} let" - almost_x_years: - one: "skoraj 1. leto" - other: "skoraj %{count} let" - - number: - format: - separator: "," - delimiter: "." - precision: 3 - human: - format: - precision: 3 - delimiter: "" - storage_units: - format: "%n %u" - units: - kb: KB - tb: TB - gb: GB - byte: - one: Byte - other: Bytes - mb: MB - -# Used in array.to_sentence. - support: - array: - sentence_connector: "in" - skip_last_comma: false - - activerecord: - errors: - template: - header: - one: "1. napaka je preprečila temu %{model} da bi se shranil" - other: "%{count} napak je preprečilo temu %{model} da bi se shranil" - messages: - inclusion: "ni vključen na seznamu" - exclusion: "je rezerviran" - invalid: "je napačen" - confirmation: "ne ustreza potrdilu" - accepted: "mora biti sprejet" - empty: "ne sme biti prazen" - blank: "ne sme biti neizpolnjen" - too_long: "je predolg" - too_short: "je prekratek" - wrong_length: "je napačne dolžine" - taken: "je že zaseden" - not_a_number: "ni število" - not_a_date: "ni veljaven datum" - greater_than: "mora biti večji kot %{count}" - greater_than_or_equal_to: "mora biti večji ali enak kot %{count}" - equal_to: "mora biti enak kot %{count}" - less_than: "mora biti manjši kot %{count}" - less_than_or_equal_to: "mora biti manjši ali enak kot %{count}" - odd: "mora biti sodo" - even: "mora biti liho" - greater_than_start_date: "mora biti kasnejši kot začetni datum" - not_same_project: "ne pripada istemu projektu" - circular_dependency: "Ta odnos bi povzročil krožno odvisnost" - cant_link_an_issue_with_a_descendant: "Zahtevek ne more biti povezan s svojo podnalogo" - earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" - not_a_regexp: "is not a valid regular expression" - open_issue_with_closed_parent: "An open issue cannot be attached to a closed parent task" - must_contain_uppercase: "must contain uppercase letters (A-Z)" - must_contain_lowercase: "must contain lowercase letters (a-z)" - must_contain_digits: "must contain digits (0-9)" - must_contain_special_chars: "must contain special characters (!, $, %, ...)" - - actionview_instancetag_blank_option: Prosimo izberite - - general_text_No: 'Ne' - general_text_Yes: 'Da' - general_text_no: 'ne' - general_text_yes: 'da' - general_lang_name: 'Slovene (Slovenščina)' - general_csv_separator: ',' - general_csv_decimal_separator: '.' - general_csv_encoding: UTF-8 - general_pdf_fontname: freesans - general_pdf_monospaced_fontname: freemono - general_first_day_of_week: '1' - - notice_account_updated: Račun je bil uspešno posodobljen. - notice_account_invalid_credentials: Napačno uporabniško ime ali geslo - notice_account_password_updated: Geslo je bilo uspešno posodobljeno. - notice_account_wrong_password: Napačno geslo - notice_account_register_done: Račun je bil uspešno ustvarjen. Za aktivacijo potrdite povezavo, ki vam je bila poslana v e-nabiralnik. - notice_account_unknown_email: Neznan uporabnik. - notice_can_t_change_password: Ta račun za overovljanje uporablja zunanji. Gesla ni mogoče spremeniti. - notice_account_lost_email_sent: Poslano vam je bilo e-pismo z navodili za izbiro novega gesla. - notice_account_activated: Vaš račun je bil aktiviran. Sedaj se lahko prijavite. - notice_successful_create: Ustvarjanje uspelo. - notice_successful_update: Posodobitev uspela. - notice_successful_delete: Izbris uspel. - notice_successful_connection: Povezava uspela. - notice_file_not_found: Stran na katero se želite povezati ne obstaja ali pa je bila umaknjena. - notice_locking_conflict: Drug uporabnik je posodobil podatke. - notice_not_authorized: Nimate privilegijev za dostop do te strani. - notice_email_sent: "E-poštno sporočilo je bilo poslano %{value}" - notice_email_error: "Ob pošiljanju e-sporočila je prišlo do napake (%{value})" - notice_feeds_access_key_reseted: Vaš Atom dostopni ključ je bil ponastavljen. - notice_failed_to_save_issues: "Neuspelo shranjevanje %{count} zahtevka na %{total} izbranem: %{ids}." - notice_no_issue_selected: "Izbran ni noben zahtevek! Prosimo preverite zahtevke, ki jih želite urediti." - notice_account_pending: "Vaš račun je bil ustvarjen in čaka na potrditev s strani administratorja." - notice_default_data_loaded: Privzete nastavitve so bile uspešno naložene. - notice_unable_delete_version: Verzije ni bilo mogoče izbrisati. - - error_can_t_load_default_data: "Privzetih nastavitev ni bilo mogoče naložiti: %{value}" - error_scm_not_found: "Vnos ali revizija v shrambi ni bila najdena ." - error_scm_command_failed: "Med vzpostavljem povezave s shrambo je prišlo do napake: %{value}" - error_scm_annotate: "Vnos ne obstaja ali pa ga ni mogoče komentirati." - error_issue_not_found_in_project: 'Zahtevek ni bil najden ali pa ne pripada temu projektu' - - mail_subject_lost_password: "Vaše %{value} geslo" - mail_body_lost_password: 'Za spremembo glesla kliknite na naslednjo povezavo:' - mail_subject_register: "Aktivacija %{value} vašega računa" - mail_body_register: 'Za aktivacijo vašega računa kliknite na naslednjo povezavo:' - mail_body_account_information_external: "Za prijavo lahko uporabite vaš %{value} račun." - mail_body_account_information: "Informacije o vašem računu. Za spremembo gesla sledite linku 'Spremeni geslo' na naslovu za prijavo, spodaj." - mail_subject_account_activation_request: "%{value} zahtevek za aktivacijo računa" - mail_body_account_activation_request: "Registriral se je nov uporabnik (%{value}). Račun čaka na vašo odobritev:" - mail_subject_reminder: "%{count} zahtevek(zahtevki) zapadejo v naslednjih %{days} dneh" - mail_body_reminder: "%{count} zahtevek(zahtevki), ki so vam dodeljeni bodo zapadli v naslednjih %{days} dneh:" - - - field_name: Ime - field_description: Opis - field_summary: Povzetek - field_is_required: Zahtevano - field_firstname: Ime - field_lastname: Priimek - field_mail: E-naslov - field_filename: Datoteka - field_filesize: Velikost - field_downloads: Prenosi - field_author: Avtor - field_created_on: Ustvarjen - field_updated_on: Posodobljeno - field_field_format: Format - field_is_for_all: Za vse projekte - field_possible_values: Možne vrednosti - field_regexp: Regularni izraz - field_min_length: Minimalna dolžina - field_max_length: Maksimalna dolžina - field_value: Vrednost - field_category: Kategorija - field_title: Naslov - field_project: Projekt - field_issue: Zahtevek - field_status: Status - field_notes: Zabeležka - field_is_closed: Zahtevek zaprt - field_is_default: Privzeta vrednost - field_tracker: Vrsta zahtevka - field_subject: Tema - field_due_date: Do datuma - field_assigned_to: Dodeljen - field_priority: Prioriteta - field_fixed_version: Ciljna verzija - field_user: Uporabnik - field_role: Vloga - field_homepage: Domača stran - field_is_public: Javno - field_parent: Podprojekt projekta - field_is_in_roadmap: Zahtevki prikazani na zemljevidu - field_login: Prijava - field_mail_notification: E-poštna oznanila - field_admin: Administrator - field_last_login_on: Zadnjič povezan(a) - field_language: Jezik - field_effective_date: Datum - field_password: Geslo - field_new_password: Novo geslo - field_password_confirmation: Potrditev - field_version: Verzija - field_type: Tip - field_host: Gostitelj - field_port: Vrata - field_account: Račun - field_base_dn: Bazni DN - field_attr_login: Oznaka za prijavo - field_attr_firstname: Oznaka za ime - field_attr_lastname: Oznaka za priimek - field_attr_mail: Oznaka za e-naslov - field_onthefly: Sprotna izdelava uporabnikov - field_start_date: Začetek - field_done_ratio: "% Narejeno" - field_auth_source: Način overovljanja - field_hide_mail: Skrij moj e-naslov - field_comments: Komentar - field_url: URL - field_start_page: Začetna stran - field_subproject: Podprojekt - field_hours: Ur - field_activity: Aktivnost - field_spent_on: Datum - field_identifier: Identifikator - field_is_filter: Uporabljen kot filter - field_issue_to: Povezan zahtevek - field_delay: Zamik - field_assignable: Zahtevki so lahko dodeljeni tej vlogi - field_redirect_existing_links: Preusmeri obstoječe povezave - field_estimated_hours: Ocenjen čas - field_column_names: Stolpci - field_time_zone: Časovni pas - field_searchable: Zmožen iskanja - field_default_value: Privzeta vrednost - field_comments_sorting: Prikaži komentarje - field_parent_title: Matična stran - - setting_app_title: Naslov aplikacije - setting_welcome_text: Pozdravno besedilo - setting_default_language: Privzeti jezik - setting_login_required: Zahtevano overovljanje - setting_self_registration: Samostojna registracija - setting_attachment_max_size: Maksimalna velikost priponk - setting_issues_export_limit: Skrajna meja za izvoz zahtevkov - setting_mail_from: E-naslov za emisijo - setting_bcc_recipients: Prejemniki slepih kopij (bcc) - setting_plain_text_mail: navadno e-sporočilo (ne HTML) - setting_host_name: Ime gostitelja in pot - setting_text_formatting: Oblikovanje besedila - setting_wiki_compression: Stiskanje Wiki zgodovine - setting_feeds_limit: Meja obsega Atom virov - setting_default_projects_public: Novi projekti so privzeto javni - setting_autofetch_changesets: Samodejni izvleček zapisa sprememb - setting_sys_api_enabled: Omogoči WS za upravljanje shrambe - setting_commit_ref_keywords: Sklicne ključne besede - setting_commit_fix_keywords: Urejanje ključne besede - setting_autologin: Avtomatska prijava - setting_date_format: Oblika datuma - setting_time_format: Oblika časa - setting_cross_project_issue_relations: Dovoli povezave zahtevkov med različnimi projekti - setting_issue_list_default_columns: Privzeti stolpci prikazani na seznamu zahtevkov - setting_emails_footer: Noga e-sporočil - setting_protocol: Protokol - setting_per_page_options: Število elementov na stran - setting_user_format: Oblika prikaza uporabnikov - setting_activity_days_default: Prikaz dni na aktivnost projekta - setting_display_subprojects_issues: Privzeti prikaz zahtevkov podprojektov v glavnem projektu - setting_enabled_scm: Omogočen SCM - setting_mail_handler_api_enabled: Omogoči WS za prihajajočo e-pošto - setting_mail_handler_api_key: API ključ - setting_sequential_project_identifiers: Generiraj projektne identifikatorje sekvenčno - setting_gravatar_enabled: Uporabljaj Gravatar ikone - setting_diff_max_lines_displayed: Maksimalno število prikazanih vrstic različnosti - - permission_edit_project: Uredi projekt - permission_select_project_modules: Izberi module projekta - permission_manage_members: Uredi člane - permission_manage_versions: Uredi verzije - permission_manage_categories: Urejanje kategorij zahtevkov - permission_add_issues: Dodaj zahtevke - permission_edit_issues: Uredi zahtevke - permission_manage_issue_relations: Uredi odnose med zahtevki - permission_add_issue_notes: Dodaj zabeležke - permission_edit_issue_notes: Uredi zabeležke - permission_edit_own_issue_notes: Uredi lastne zabeležke - permission_delete_issues: Izbriši zahtevke - permission_manage_public_queries: Uredi javna povpraševanja - permission_save_queries: Shrani povpraševanje - permission_view_gantt: Poglej gantogram - permission_view_calendar: Poglej koledar - permission_view_issue_watchers: Oglej si listo spremeljevalcev - permission_add_issue_watchers: Dodaj spremljevalce - permission_log_time: Beleži porabljen čas - permission_view_time_entries: Poglej porabljen čas - permission_edit_time_entries: Uredi beležko časa - permission_edit_own_time_entries: Uredi beležko lastnega časa - permission_manage_news: Uredi novice - permission_comment_news: Komentiraj novice - permission_view_documents: Poglej dokumente - permission_manage_files: Uredi datoteke - permission_view_files: Poglej datoteke - permission_manage_wiki: Uredi wiki - permission_rename_wiki_pages: Preimenuj wiki strani - permission_delete_wiki_pages: Izbriši wiki strani - permission_view_wiki_pages: Poglej wiki - permission_view_wiki_edits: Poglej wiki zgodovino - permission_edit_wiki_pages: Uredi wiki strani - permission_delete_wiki_pages_attachments: Izbriši priponke - permission_protect_wiki_pages: Zaščiti wiki strani - permission_manage_repository: Uredi shrambo - permission_browse_repository: Prebrskaj shrambo - permission_view_changesets: Poglej zapis sprememb - permission_commit_access: Dostop za predajo - permission_manage_boards: Uredi table - permission_view_messages: Poglej sporočila - permission_add_messages: Objavi sporočila - permission_edit_messages: Uredi sporočila - permission_edit_own_messages: Uredi lastna sporočila - permission_delete_messages: Izbriši sporočila - permission_delete_own_messages: Izbriši lastna sporočila - - project_module_issue_tracking: Sledenje zahtevkom - project_module_time_tracking: Sledenje časa - project_module_news: Novice - project_module_documents: Dokumenti - project_module_files: Datoteke - project_module_wiki: Wiki - project_module_repository: Shramba - project_module_boards: Table - - label_user: Uporabnik - label_user_plural: Uporabniki - label_user_new: Nov uporabnik - label_project: Projekt - label_project_new: Nov projekt - label_project_plural: Projekti - label_x_projects: - zero: ni projektov - one: 1 projekt - other: "%{count} projektov" - label_project_all: Vsi projekti - label_project_latest: Zadnji projekti - label_issue: Zahtevek - label_issue_new: Nov zahtevek - label_issue_plural: Zahtevki - label_issue_view_all: Poglej vse zahtevke - label_issues_by: "Zahtevki od %{value}" - label_issue_added: Zahtevek dodan - label_issue_updated: Zahtevek posodobljen - label_document: Dokument - label_document_new: Nov dokument - label_document_plural: Dokumenti - label_document_added: Dokument dodan - label_role: Vloga - label_role_plural: Vloge - label_role_new: Nova vloga - label_role_and_permissions: Vloge in dovoljenja - label_member: Član - label_member_new: Nov član - label_member_plural: Člani - label_tracker: Vrsta zahtevka - label_tracker_plural: Vrste zahtevkov - label_tracker_new: Nova vrsta zahtevka - label_workflow: Potek dela - label_issue_status: Stanje zahtevka - label_issue_status_plural: Stanje zahtevkov - label_issue_status_new: Novo stanje - label_issue_category: Kategorija zahtevka - label_issue_category_plural: Kategorije zahtevkov - label_issue_category_new: Nova kategorija - label_custom_field: Polje po meri - label_custom_field_plural: Polja po meri - label_custom_field_new: Novo polje po meri - label_enumerations: Seznami - label_enumeration_new: Nova vrednost - label_information: Informacija - label_information_plural: Informacije - label_register: Registracija - label_password_lost: Spremeni geslo - label_home: Domov - label_my_page: Moja stran - label_my_account: Moj račun - label_my_projects: Moji projekti - label_administration: Upravljanje - label_login: Prijava - label_logout: Odjava - label_help: Pomoč - label_reported_issues: Prijavljeni zahtevki - label_assigned_to_me_issues: Zahtevki dodeljeni meni - label_last_login: Zadnja povezava - label_registered_on: Registriran - label_activity: Aktivnosti - label_overall_activity: Celotna aktivnost - label_user_activity: "Aktivnost %{value}" - label_new: Nov - label_logged_as: Prijavljen(a) kot - label_environment: Okolje - label_authentication: Overovitev - label_auth_source: Način overovitve - label_auth_source_new: Nov način overovitve - label_auth_source_plural: Načini overovitve - label_subproject_plural: Podprojekti - label_and_its_subprojects: "%{value} in njegovi podprojekti" - label_min_max_length: Min - Max dolžina - label_list: Seznam - label_date: Datum - label_integer: Celo število - label_float: Decimalno število - label_boolean: Boolean - label_string: Besedilo - label_text: Dolgo besedilo - label_attribute: Lastnost - label_attribute_plural: Lastnosti - label_no_data: Ni podatkov za prikaz - label_change_status: Spremeni stanje - label_history: Zgodovina - label_attachment: Datoteka - label_attachment_new: Nova datoteka - label_attachment_delete: Izbriši datoteko - label_attachment_plural: Datoteke - label_file_added: Datoteka dodana - label_report: Poročilo - label_report_plural: Poročila - label_news: Novica - label_news_new: Dodaj novico - label_news_plural: Novice - label_news_latest: Zadnje novice - label_news_view_all: Poglej vse novice - label_news_added: Dodane novice - label_settings: Nastavitve - label_overview: Povzetek - label_version: Verzija - label_version_new: Nova verzija - label_version_plural: Verzije - label_confirmation: Potrditev - label_export_to: 'Na razpolago tudi v:' - label_read: Preberi... - label_public_projects: Javni projekti - label_open_issues: odprt zahtevek - label_open_issues_plural: odprti zahtevki - label_closed_issues: zaprt zahtevek - label_closed_issues_plural: zaprti zahtevki - label_x_open_issues_abbr: - zero: 0 odprtih - one: 1 odprt - other: "%{count} odprtih" - label_x_closed_issues_abbr: - zero: 0 zaprtih - one: 1 zaprt - other: "%{count} zaprtih" - label_total: Skupaj - label_permissions: Dovoljenja - label_current_status: Trenutno stanje - label_new_statuses_allowed: Novi zahtevki dovoljeni - label_all: vsi - label_none: noben - label_nobody: nihče - label_next: Naslednji - label_previous: Prejšnji - label_used_by: V uporabi od - label_details: Podrobnosti - label_add_note: Dodaj zabeležko - label_calendar: Koledar - label_months_from: mesecev od - label_gantt: Gantogram - label_internal: Notranji - label_last_changes: "zadnjih %{count} sprememb" - label_change_view_all: Poglej vse spremembe - label_comment: Komentar - label_comment_plural: Komentarji - label_x_comments: - zero: ni komentarjev - one: 1 komentar - other: "%{count} komentarjev" - label_comment_add: Dodaj komentar - label_comment_added: Komentar dodan - label_comment_delete: Izbriši komentarje - label_query: Iskanje po meri - label_query_plural: Iskanja po meri - label_query_new: Novo iskanje - label_filter_add: Dodaj filter - label_filter_plural: Filtri - label_equals: je enako - label_not_equals: ni enako - label_in_less_than: v manj kot - label_in_more_than: v več kot - label_in: v - label_today: danes - label_yesterday: včeraj - label_this_week: ta teden - label_last_week: pretekli teden - label_last_n_days: "zadnjih %{count} dni" - label_this_month: ta mesec - label_last_month: zadnji mesec - label_this_year: to leto - label_date_range: Razpon datumov - label_less_than_ago: manj kot dni nazaj - label_more_than_ago: več kot dni nazaj - label_ago: dni nazaj - label_contains: vsebuje - label_not_contains: ne vsebuje - label_day_plural: dni - label_repository: Shramba - label_repository_plural: Shrambe - label_browse: Prebrskaj - label_revision: Revizija - label_revision_plural: Revizije - label_associated_revisions: Povezane revizije - label_added: dodano - label_modified: spremenjeno - label_copied: kopirano - label_renamed: preimenovano - label_deleted: izbrisano - label_latest_revision: Zadnja revizija - label_latest_revision_plural: Zadnje revizije - label_view_revisions: Poglej revizije - label_max_size: Največja velikost - label_sort_highest: Premakni na vrh - label_sort_higher: Premakni gor - label_sort_lower: Premakni dol - label_sort_lowest: Premakni na dno - label_roadmap: Načrt - label_roadmap_due_in: "Do %{value}" - label_roadmap_overdue: "%{value} zakasnel" - label_roadmap_no_issues: Ni zahtevkov za to verzijo - label_search: Išči - label_result_plural: Rezultati - label_all_words: Vse besede - label_wiki: Predstavitev - label_wiki_edit: Uredi stran - label_wiki_edit_plural: Uredi strani - label_wiki_page: Predstavitvena stran - label_wiki_page_plural: Predstavitvene strani - label_index_by_title: Razvrsti po naslovu - label_index_by_date: Razvrsti po datumu - label_current_version: Trenutna verzija - label_preview: Predogled - label_feed_plural: Atom viri - label_changes_details: Podrobnosti o vseh spremembah - label_issue_tracking: Sledenje zahtevkom - label_spent_time: Porabljen čas - label_f_hour: "%{value} ura" - label_f_hour_plural: "%{value} ur" - label_time_tracking: Sledenje času - label_change_plural: Spremembe - label_statistics: Statistika - label_commits_per_month: Predaj na mesec - label_commits_per_author: Predaj na avtorja - label_view_diff: Preglej razlike - label_diff_inline: znotraj - label_diff_side_by_side: vzporedno - label_options: Možnosti - label_copy_workflow_from: Kopiraj potek dela od - label_permissions_report: Poročilo o dovoljenjih - label_watched_issues: Spremljani zahtevki - label_related_issues: Povezani zahtevki - label_applied_status: Uveljavljeno stanje - label_loading: Nalaganje... - label_relation_new: Nova povezava - label_relation_delete: Izbriši povezavo - label_relates_to: povezan z - label_duplicates: duplikati - label_duplicated_by: dupliciral - label_blocks: blok - label_blocked_by: blokiral - label_precedes: ima prednost pred - label_follows: sledi - label_stay_logged_in: Ostani prijavljen(a) - label_disabled: onemogoči - label_show_completed_versions: Prikaži zaključene verzije - label_me: jaz - label_board: Forum - label_board_new: Nov forum - label_board_plural: Forumi - label_topic_plural: Teme - label_message_plural: Sporočila - label_message_last: Zadnje sporočilo - label_message_new: Novo sporočilo - label_message_posted: Sporočilo dodano - label_reply_plural: Odgovori - label_send_information: Pošlji informacijo o računu uporabniku - label_year: Leto - label_month: Mesec - label_week: Teden - label_date_from: Do - label_date_to: Do - label_language_based: Glede na uporabnikov jezik - label_sort_by: "Razporedi po %{value}" - label_send_test_email: Pošlji testno e-pismo - label_feeds_access_key_created_on: "Atom dostopni ključ narejen %{value} nazaj" - label_module_plural: Moduli - label_added_time_by: "Dodal %{author} %{age} nazaj" - label_updated_time_by: "Posodobil %{author} %{age} nazaj" - label_updated_time: "Posodobljeno %{value} nazaj" - label_jump_to_a_project: Skoči na projekt... - label_file_plural: Datoteke - label_changeset_plural: Zapisi sprememb - label_default_columns: Privzeti stolpci - label_no_change_option: (Ni spremembe) - label_bulk_edit_selected_issues: Uredi izbrane zahtevke skupaj - label_theme: Tema - label_default: Privzeto - label_search_titles_only: Preišči samo naslove - label_user_mail_option_all: "Za vsak dogodek v vseh mojih projektih" - label_user_mail_option_selected: "Za vsak dogodek samo na izbranih projektih..." - label_user_mail_no_self_notified: "Ne želim biti opozorjen(a) na spremembe, ki jih naredim sam(a)" - label_registration_activation_by_email: aktivacija računa po e-pošti - label_registration_manual_activation: ročna aktivacija računa - label_registration_automatic_activation: samodejna aktivacija računa - label_display_per_page: "Na stran: %{value}" - label_age: Starost - label_change_properties: Sprememba lastnosti - label_general: Splošno - label_scm: SCM - label_plugins: Vtičniki - label_ldap_authentication: LDAP overovljanje - label_downloads_abbr: D/L - label_optional_description: Neobvezen opis - label_add_another_file: Dodaj še eno datoteko - label_preferences: Preference - label_chronological_order: Kronološko - label_reverse_chronological_order: Obrnjeno kronološko - label_incoming_emails: Prihajajoča e-pošta - label_generate_key: Ustvari ključ - label_issue_watchers: Spremljevalci - label_example: Vzorec - - button_login: Prijavi se - button_submit: Pošlji - button_save: Shrani - button_check_all: Označi vse - button_uncheck_all: Odznači vse - button_delete: Izbriši - button_create: Ustvari - button_test: Testiraj - button_edit: Uredi - button_add: Dodaj - button_change: Spremeni - button_apply: Uporabi - button_clear: Počisti - button_lock: Zakleni - button_unlock: Odkleni - button_download: Prenesi - button_list: Seznam - button_view: Pogled - button_move: Premakni - button_back: Nazaj - button_cancel: Prekliči - button_activate: Aktiviraj - button_sort: Razvrsti - button_log_time: Beleži čas - button_rollback: Povrni na to verzijo - button_watch: Spremljaj - button_unwatch: Ne spremljaj - button_reply: Odgovori - button_archive: Arhiviraj - button_unarchive: Odarhiviraj - button_reset: Ponastavi - button_rename: Preimenuj - button_change_password: Spremeni geslo - button_copy: Kopiraj - button_annotate: Zapiši pripombo - button_update: Posodobi - button_configure: Konfiguriraj - button_quote: Citiraj - - status_active: aktivni - status_registered: registriran - status_locked: zaklenjen - - text_select_mail_notifications: Izberi dejanja za katera naj bodo poslana oznanila preko e-pošto. - text_regexp_info: npr. ^[A-Z0-9]+$ - text_min_max_length_info: 0 pomeni brez omejitev - text_project_destroy_confirmation: Ali ste prepričani da želite izbrisati izbrani projekt in vse z njim povezane podatke? - text_subprojects_destroy_warning: "Njegov(i) podprojekt(i): %{value} bodo prav tako izbrisani." - text_workflow_edit: Izberite vlogo in zahtevek za urejanje poteka dela - text_are_you_sure: Ali ste prepričani? - text_tip_issue_begin_day: naloga z začetkom na ta dan - text_tip_issue_end_day: naloga z zaključkom na ta dan - text_tip_issue_begin_end_day: naloga ki se začne in konča ta dan - text_caracters_maximum: "največ %{count} znakov." - text_caracters_minimum: "Mora biti vsaj dolg vsaj %{count} znakov." - text_length_between: "Dolžina med %{min} in %{max} znakov." - text_tracker_no_workflow: Potek dela za to vrsto zahtevka ni določen - text_unallowed_characters: Nedovoljeni znaki - text_comma_separated: Dovoljenih je več vrednosti (ločenih z vejico). - text_issues_ref_in_commit_messages: Zahtevki sklicev in popravkov v sporočilu predaje - text_issue_added: "Zahtevek %{id} je sporočil(a) %{author}." - text_issue_updated: "Zahtevek %{id} je posodobil(a) %{author}." - text_wiki_destroy_confirmation: Ali ste prepričani da želite izbrisati to wiki stran in vso njeno vsebino? - text_issue_category_destroy_question: "Nekateri zahtevki (%{count}) so dodeljeni tej kategoriji. Kaj želite storiti?" - text_issue_category_destroy_assignments: Odstrani naloge v kategoriji - text_issue_category_reassign_to: Ponovno dodeli zahtevke tej kategoriji - text_user_mail_option: "Na neizbrane projekte boste prejemali le obvestila o zadevah ki jih spremljate ali v katere ste vključeni (npr. zahtevki katerih avtor(ica) ste)" - text_no_configuration_data: "Vloge, vrste zahtevkov, statusi zahtevkov in potek dela še niso bili določeni. \nZelo priporočljivo je, da naložite privzeto konfiguracijo, ki jo lahko kasneje tudi prilagodite." - text_load_default_configuration: Naloži privzeto konfiguracijo - text_status_changed_by_changeset: "Dodano v zapis sprememb %{value}." - text_issues_destroy_confirmation: 'Ali ste prepričani, da želite izbrisati izbrani(e) zahtevek(ke)?' - text_select_project_modules: 'Izberite module, ki jih želite omogočiti za ta projekt:' - text_default_administrator_account_changed: Spremenjen privzeti administratorski račun - text_file_repository_writable: Omogočeno pisanje v shrambo datotek - text_minimagick_available: MiniMagick je na voljo(neobvezno) - text_destroy_time_entries_question: "%{hours} ur je bilo opravljenih na zahtevku, ki ga želite izbrisati. Kaj želite storiti?" - text_destroy_time_entries: Izbriši opravljene ure - text_assign_time_entries_to_project: Predaj opravljene ure projektu - text_reassign_time_entries: 'Prenesi opravljene ure na ta zahtevek:' - text_user_wrote: "%{value} je napisal(a):" - text_user_wrote_in: "%{value} je napisal(a) (%{link}):" - text_enumeration_destroy_question: "%{count} objektov je določenih tej vrednosti." - text_enumeration_category_reassign_to: 'Ponastavi jih na to vrednost:' - text_email_delivery_not_configured: "E-poštna dostava ni nastavljena in oznanila so onemogočena.\nNastavite vaš SMTP strežnik v config/configuration.yml in ponovno zaženite aplikacijo da ga omogočite.\n" - text_repository_usernames_mapping: "Izberite ali posodobite Redmine uporabnika dodeljenega vsakemu uporabniškemu imenu najdenemu v zapisniku shrambe.\n Uporabniki z enakim Redmine ali shrambinem uporabniškem imenu ali e-poštnem naslovu so samodejno dodeljeni." - text_diff_truncated: '... Ta sprememba je bila odsekana ker presega največjo velikost ki je lahko prikazana.' - - default_role_manager: Upravnik - default_role_developer: Razvijalec - default_role_reporter: Poročevalec - default_tracker_bug: Hrošč - default_tracker_feature: Funkcija - default_tracker_support: Podpora - default_issue_status_new: Nov - default_issue_status_in_progress: V teku - default_issue_status_resolved: Rešen - default_issue_status_feedback: Povratna informacija - default_issue_status_closed: Zaključen - default_issue_status_rejected: Zavrnjen - default_doc_category_user: Uporabniška dokumentacija - default_doc_category_tech: Tehnična dokumentacija - default_priority_low: Nizka - default_priority_normal: Običajna - default_priority_high: Visoka - default_priority_urgent: Urgentna - default_priority_immediate: Takojšnje ukrepanje - default_activity_design: Oblikovanje - default_activity_development: Razvoj - - enumeration_issue_priorities: Prioritete zahtevkov - enumeration_doc_categories: Kategorije dokumentov - enumeration_activities: Aktivnosti (sledenje časa) - warning_attachments_not_saved: "%{count} datotek(e) ni bilo mogoče shraniti." - field_editable: Uredljivo - text_plugin_assets_writable: Zapisljiva mapa za vtičnike - label_display: Prikaz - button_create_and_continue: Ustvari in nadaljuj - text_custom_field_possible_values_info: 'Ena vrstica za vsako vrednost' - setting_repository_log_display_limit: Največje število prikazanih revizij v log datoteki - setting_file_max_size_displayed: Največja velikost besedilnih datotek v vključenem prikazu - field_watcher: Opazovalec - setting_openid: Dovoli OpenID prijavo in registracijo - field_identity_url: OpenID URL - label_login_with_open_id_option: ali se prijavi z OpenID - field_content: Vsebina - label_descending: Padajoče - label_sort: Razvrsti - label_ascending: Naraščajoče - label_date_from_to: Od %{start} do %{end} - label_greater_or_equal: ">=" - label_less_or_equal: <= - text_wiki_page_destroy_question: Ta stran ima %{descendants} podstran(i) in naslednik(ov). Kaj želite storiti? - text_wiki_page_reassign_children: Znova dodeli podstrani tej glavni strani - text_wiki_page_nullify_children: Obdrži podstrani kot glavne strani - text_wiki_page_destroy_children: Izbriši podstrani in vse njihove naslednike - setting_password_min_length: Minimalna dolžina gesla - field_group_by: Združi rezultate po - mail_subject_wiki_content_updated: "'%{id}' wiki stran je bila posodobljena" - label_wiki_content_added: Wiki stran dodana - mail_subject_wiki_content_added: "'%{id}' wiki stran je bila dodana" - mail_body_wiki_content_added: "%{author} je dodal '%{id}' wiki stran" - label_wiki_content_updated: Wiki stran posodobljena - mail_body_wiki_content_updated: "%{author} je posodobil '%{id}' wiki stran." - permission_add_project: Ustvari projekt - setting_new_project_user_role_id: Vloga, dodeljena neadministratorskemu uporabniku, ki je ustvaril projekt - label_view_all_revisions: Poglej vse revizije - label_tag: Oznaka - label_branch: Veja - error_no_tracker_in_project: Noben sledilnik ni povezan s tem projektom. Prosimo preverite nastavitve projekta. - error_no_default_issue_status: Privzeti zahtevek ni definiran. Prosimo preverite svoje nastavitve (Pojdite na "Administracija -> Stanje zahtevkov"). - text_journal_changed: "%{label} se je spremenilo iz %{old} v %{new}" - text_journal_set_to: "%{label} nastavljeno na %{value}" - text_journal_deleted: "%{label} izbrisan (%{old})" - label_group_plural: Skupine - label_group: Skupina - label_group_new: Nova skupina - label_time_entry_plural: Porabljen čas - text_journal_added: "%{label} %{value} dodan" - field_active: Aktiven - enumeration_system_activity: Sistemska aktivnost - permission_delete_issue_watchers: Izbriši opazovalce - version_status_closed: zaprt - version_status_locked: zaklenjen - version_status_open: odprt - error_can_not_reopen_issue_on_closed_version: Zahtevek dodeljen zaprti verziji ne more biti ponovno odprt - label_user_anonymous: Anonimni - button_move_and_follow: Premakni in sledi - setting_default_projects_modules: Privzeti moduli za nove projekte - setting_gravatar_default: Privzeta Gravatar slika - field_sharing: Deljenje - label_version_sharing_hierarchy: S projektno hierarhijo - label_version_sharing_system: Z vsemi projekti - label_version_sharing_descendants: S podprojekti - label_version_sharing_tree: Z drevesom projekta - label_version_sharing_none: Ni deljeno - error_can_not_archive_project: Ta projekt ne more biti arhiviran - button_copy_and_follow: Kopiraj in sledi - label_copy_source: Vir - setting_issue_done_ratio: Izračunaj razmerje opravljenega zahtevka z - setting_issue_done_ratio_issue_status: Uporabi stanje zahtevka - error_issue_done_ratios_not_updated: Razmerje opravljenega zahtevka ni bilo posodobljeno. - error_workflow_copy_target: Prosimo izberite ciljni(e) sledilnik(e) in vlogo(e) - setting_issue_done_ratio_issue_field: Uporabi polje zahtevka - label_copy_same_as_target: Enako kot cilj - label_copy_target: Cilj - notice_issue_done_ratios_updated: Razmerje opravljenega zahtevka posodobljeno. - error_workflow_copy_source: Prosimo izberite vir zahtevka ali vlogo - label_update_issue_done_ratios: Posodobi razmerje opravljenega zahtevka - setting_start_of_week: Začni koledarje z - permission_view_issues: Poglej zahtevke - label_display_used_statuses_only: Prikaži samo stanja ki uporabljajo ta sledilnik - label_revision_id: Revizija %{value} - label_api_access_key: API dostopni ključ - label_api_access_key_created_on: API dostopni ključ ustvarjen pred %{value} - label_feeds_access_key: Atom dostopni ključ - notice_api_access_key_reseted: Vaš API dostopni ključ je bil ponastavljen. - setting_rest_api_enabled: Omogoči REST spletni servis - label_missing_api_access_key: Manjkajoč API dostopni ključ - label_missing_feeds_access_key: Manjkajoč Atom dostopni ključ - button_show: Prikaži - text_line_separated: Dovoljenih več vrednosti (ena vrstica za vsako vrednost). - setting_mail_handler_body_delimiters: Odreži e-pošto po eni od teh vrstic - permission_add_subprojects: Ustvari podprojekte - label_subproject_new: Nov podprojekt - text_own_membership_delete_confirmation: |- - Odstranili boste nekatere ali vse od dovoljenj zaradi česar morda ne boste mogli več urejati tega projekta. - Ali ste prepričani, da želite nadaljevati? - label_close_versions: Zapri dokončane verzije - label_board_sticky: Lepljivo - label_board_locked: Zaklenjeno - permission_export_wiki_pages: Izvozi wiki strani - setting_cache_formatted_text: Predpomni oblikovano besedilo - permission_manage_project_activities: Uredi aktivnosti projekta - error_unable_delete_issue_status: Stanja zahtevka ni bilo možno spremeniti (%{value}) - label_profile: Profil - permission_manage_subtasks: Uredi podnaloge - field_parent_issue: Nadrejena naloga - label_subtask_plural: Podnaloge - label_project_copy_notifications: Med kopiranjem projekta pošlji e-poštno sporočilo - error_can_not_delete_custom_field: Polja po meri ni mogoče izbrisati - error_unable_to_connect: Povezava ni mogoča (%{value}) - error_can_not_remove_role: Ta vloga je v uporabi in je ni mogoče izbrisati. - error_can_not_delete_tracker: Ta sledilnik vsebuje zahtevke in se ga ne more izbrisati. - field_principal: Upravnik varnosti - notice_failed_to_save_members: "Shranjevanje uporabnika(ov) ni uspelo: %{errors}." - text_zoom_out: Približaj - text_zoom_in: Oddalji - notice_unable_delete_time_entry: Brisanje dnevnika porabljenaga časa ni mogoče. - label_overall_spent_time: Skupni porabljeni čas - field_time_entries: Beleži porabljeni čas - project_module_gantt: Gantogram - project_module_calendar: Koledear - button_edit_associated_wikipage: "Uredi povezano Wiki stran: %{page_title}" - field_text: Besedilno polje - setting_default_notification_option: Privzeta možnost obveščanja - label_user_mail_option_only_my_events: Samo za stvari, ki jih opazujem ali sem v njih vpleten - label_user_mail_option_none: Noben dogodek - field_member_of_group: Pooblaščenčeva skupina - field_assigned_to_role: Pooblaščenčeva vloga - notice_not_authorized_archived_project: Projekt, do katerega poskušate dostopati, je bil arhiviran. - label_principal_search: "Poišči uporabnika ali skupino:" - label_user_search: "Poišči uporabnikia:" - field_visible: Viden - setting_emails_header: Glava e-pošte - setting_commit_logtime_activity_id: Aktivnost zabeleženega časa - text_time_logged_by_changeset: Uporabljeno v spremembi %{value}. - setting_commit_logtime_enabled: Omogoči beleženje časa - notice_gantt_chart_truncated: Graf je bil odrezan, ker je prekoračil največje dovoljeno število elementov, ki se jih lahko prikaže (%{max}) - setting_gantt_items_limit: Največje število elementov prikazano na gantogramu - field_warn_on_leaving_unsaved: Opozori me, kadar zapuščam stran z neshranjenim besedilom - text_warn_on_leaving_unsaved: Trenutna stran vsebuje neshranjeno besedilo ki bo izgubljeno, če zapustite to stran. - label_my_queries: Moje poizvedbe po meri - text_journal_changed_no_detail: "%{label} posodobljen" - label_news_comment_added: Komentar dodan novici - button_expand_all: Razširi vse - button_collapse_all: Skrči vse - label_additional_workflow_transitions_for_assignee: Dovoljeni dodatni prehodi kadar je uporabnik pooblaščenec - label_additional_workflow_transitions_for_author: Dovoljeni dodatni prehodi kadar je uporabnik avtor - label_bulk_edit_selected_time_entries: Skupinsko urejanje izbranih časovnih zapisov - text_time_entries_destroy_confirmation: Ali ste prepričani, da želite izbristai izbran(e) časovn(i/e) zapis(e)? - label_role_anonymous: Anonimni - label_role_non_member: Nečlan - label_issue_note_added: Dodan zaznamek - label_issue_status_updated: Status posodobljen - label_issue_priority_updated: Prioriteta posodobljena - label_issues_visibility_own: Zahtevek ustvarjen s strani uporabnika ali dodeljen uporabniku - field_issues_visibility: Vidljivost zahtevkov - label_issues_visibility_all: Vsi zahtevki - permission_set_own_issues_private: Nastavi lastne zahtevke kot javne ali zasebne - field_is_private: Zaseben - permission_set_issues_private: Nastavi zahtevke kot javne ali zasebne - label_issues_visibility_public: Vsi nezasebni zahtevki - text_issues_destroy_descendants_confirmation: To bo izbrisalo tudi %{count} podnalog(o). - field_commit_logs_encoding: Kodiranje sporočil ob predaji - field_scm_path_encoding: Pot do kodiranja - text_scm_path_encoding_note: "Privzeto: UTF-8" - field_path_to_repository: Pot do shrambe - field_root_directory: Korenska mapa - field_cvs_module: Modul - field_cvsroot: CVSROOT - text_mercurial_repository_note: Lokalna shramba (npr. /hgrepo, c:\hgrepo) - text_scm_command: Ukaz - text_scm_command_version: Verzija - label_git_report_last_commit: Sporoči zadnje uveljavljanje datotek in map - text_scm_config: Svoje SCM ukaze lahko nastavite v datoteki config/configuration.yml. Po urejanju prosimo ponovno zaženite aplikacijo. - text_scm_command_not_available: SCM ukaz ni na voljo. Prosimo preverite nastavitve v upravljalskem podoknu. - - text_git_repository_note: Shramba je prazna in lokalna (npr. /gitrepo, c:\gitrepo) - - notice_issue_successful_create: Ustvarjen zahtevek %{id}. - label_between: med - setting_issue_group_assignment: Dovoli dodeljevanje zahtevka skupinam - label_diff: diff - - description_query_sort_criteria_direction: Sort direction - description_project_scope: Search scope - description_filter: Filter - description_user_mail_notification: Mail notification settings - description_message_content: Message content - description_available_columns: Available Columns - description_issue_category_reassign: Choose issue category - description_search: Searchfield - description_notes: Notes - description_choose_project: Projects - description_query_sort_criteria_attribute: Sort attribute - description_wiki_subpages_reassign: Choose new parent page - description_selected_columns: Selected Columns - label_parent_revision: Parent - label_child_revision: Child - error_scm_annotate_big_text_file: The entry cannot be annotated, as it exceeds the maximum text file size. - setting_default_issue_start_date_to_creation_date: Use current date as start date for new issues - button_edit_section: Edit this section - setting_repositories_encodings: Attachments and repositories encodings - description_all_columns: All Columns - button_export: Export - label_export_options: "%{export_format} export options" - error_attachment_too_big: This file cannot be uploaded because it exceeds the maximum allowed file size (%{max_size}) - notice_failed_to_save_time_entries: "Failed to save %{count} time entrie(s) on %{total} selected: %{ids}." - label_x_issues: - zero: 0 zahtevek - one: 1 zahtevek - other: "%{count} zahtevki" - label_repository_new: New repository - field_repository_is_default: Main repository - label_copy_attachments: Copy attachments - label_item_position: "%{position}/%{count}" - label_completed_versions: Completed versions - text_project_identifier_info: Only lower case letters (a-z), numbers, dashes and underscores are allowed.
    Once saved, the identifier cannot be changed. - field_multiple: Multiple values - setting_commit_cross_project_ref: Allow issues of all the other projects to be referenced and fixed - text_issue_conflict_resolution_add_notes: Add my notes and discard my other changes - text_issue_conflict_resolution_overwrite: Apply my changes anyway (previous notes will be kept but some changes may be overwritten) - notice_issue_update_conflict: The issue has been updated by an other user while you were editing it. - text_issue_conflict_resolution_cancel: Discard all my changes and redisplay %{link} - permission_manage_related_issues: Manage related issues - field_auth_source_ldap_filter: LDAP filter - label_search_for_watchers: Search for watchers to add - notice_account_deleted: Your account has been permanently deleted. - setting_unsubscribe: Allow users to delete their own account - button_delete_my_account: Delete my account - text_account_destroy_confirmation: |- - Are you sure you want to proceed? - Your account will be permanently deleted, with no way to reactivate it. - error_session_expired: Your session has expired. Please login again. - text_session_expiration_settings: "Warning: changing these settings may expire the current sessions including yours." - setting_session_lifetime: Session maximum lifetime - setting_session_timeout: Session inactivity timeout - label_session_expiration: Session expiration - permission_close_project: Close / reopen the project - button_close: Close - button_reopen: Reopen - project_status_active: active - project_status_closed: closed - project_status_archived: archived - text_project_closed: This project is closed and read-only. - notice_user_successful_create: User %{id} created. - field_core_fields: Standard fields - field_timeout: Timeout (in seconds) - setting_thumbnails_enabled: Display attachment thumbnails - setting_thumbnails_size: Thumbnails size (in pixels) - label_status_transitions: Status transitions - label_fields_permissions: Fields permissions - label_readonly: Read-only - label_required: Required - text_repository_identifier_info: Only lower case letters (a-z), numbers, dashes and underscores are allowed.
    Once saved, the identifier cannot be changed. - field_board_parent: Parent forum - label_attribute_of_project: Project's %{name} - label_attribute_of_author: Author's %{name} - label_attribute_of_assigned_to: Assignee's %{name} - label_attribute_of_fixed_version: Target version's %{name} - label_copy_subtasks: Copy subtasks - label_copied_to: copied to - label_copied_from: copied from - label_any_issues_in_project: any issues in project - label_any_issues_not_in_project: any issues not in project - field_private_notes: Private notes - permission_view_private_notes: View private notes - permission_set_notes_private: Set notes as private - label_no_issues_in_project: no issues in project - label_any: vsi - label_last_n_weeks: last %{count} weeks - setting_cross_project_subtasks: Allow cross-project subtasks - label_cross_project_descendants: S podprojekti - label_cross_project_tree: Z drevesom projekta - label_cross_project_hierarchy: S projektno hierarhijo - label_cross_project_system: Z vsemi projekti - button_hide: Hide - setting_non_working_week_days: Non-working days - label_in_the_next_days: in the next - label_in_the_past_days: in the past - label_attribute_of_user: User's %{name} - text_turning_multiple_off: If you disable multiple values, multiple values will be - removed in order to preserve only one value per item. - label_attribute_of_issue: Issue's %{name} - permission_add_documents: Add documents - permission_edit_documents: Edit documents - permission_delete_documents: Delete documents - label_gantt_progress_line: Progress line - setting_jsonp_enabled: Enable JSONP support - field_inherit_members: Inherit members - field_closed_on: Closed - field_generate_password: Generate password - setting_default_projects_tracker_ids: Default trackers for new projects - label_total_time: Skupaj - notice_account_not_activated_yet: You haven't activated your account yet. If you want - to receive a new activation email, please click this link. - notice_account_locked: Your account is locked. - label_hidden: Hidden - label_visibility_private: to me only - label_visibility_roles: to these roles only - label_visibility_public: to any users - field_must_change_passwd: Must change password at next logon - notice_new_password_must_be_different: The new password must be different from the - current password - setting_mail_handler_excluded_filenames: Exclude attachments by name - text_convert_available: ImageMagick convert available (optional) - label_link: Link - label_only: only - label_drop_down_list: drop-down list - label_checkboxes: checkboxes - label_link_values_to: Link values to URL - setting_force_default_language_for_anonymous: Force default language for anonymous - users - setting_force_default_language_for_loggedin: Force default language for logged-in - users - label_custom_field_select_type: Select the type of object to which the custom field - is to be attached - label_issue_assigned_to_updated: Assignee updated - label_check_for_updates: Check for updates - label_latest_compatible_version: Latest compatible version - label_unknown_plugin: Unknown plugin - label_radio_buttons: radio buttons - label_group_anonymous: Anonymous users - label_group_non_member: Non member users - label_add_projects: Add projects - field_default_status: Default status - text_subversion_repository_note: 'Examples: file:///, http://, https://, svn://, svn+[tunnelscheme]://' - field_users_visibility: Users visibility - label_users_visibility_all: All active users - label_users_visibility_members_of_visible_projects: Members of visible projects - label_edit_attachments: Edit attached files - setting_link_copied_issue: Link issues on copy - label_link_copied_issue: Link copied issue - label_ask: Ask - label_search_attachments_yes: Search attachment filenames and descriptions - label_search_attachments_no: Do not search attachments - label_search_attachments_only: Search attachments only - label_search_open_issues_only: Open issues only - field_address: E-naslov - setting_max_additional_emails: Maximum number of additional email addresses - label_email_address_plural: Emails - label_email_address_add: Add email address - label_enable_notifications: Enable notifications - label_disable_notifications: Disable notifications - setting_search_results_per_page: Search results per page - label_blank_value: blank - permission_copy_issues: Copy issues - error_password_expired: Your password has expired or the administrator requires you - to change it. - field_time_entries_visibility: Time logs visibility - setting_password_max_age: Require password change after - label_parent_task_attributes: Parent tasks attributes - label_parent_task_attributes_derived: Calculated from subtasks - label_parent_task_attributes_independent: Independent of subtasks - label_time_entries_visibility_all: All time entries - label_time_entries_visibility_own: Time entries created by the user - label_member_management: Member management - label_member_management_all_roles: All roles - label_member_management_selected_roles_only: Only these roles - label_password_required: Confirm your password to continue - label_total_spent_time: Skupni porabljeni čas - notice_import_finished: "%{count} items have been imported" - notice_import_finished_with_errors: "%{count} out of %{total} items could not be imported" - error_invalid_file_encoding: The file is not a valid %{encoding} encoded file - error_invalid_csv_file_or_settings: The file is not a CSV file or does not match the - settings below - error_can_not_read_import_file: An error occurred while reading the file to import - permission_import_issues: Import issues - label_import_issues: Import issues - label_select_file_to_import: Select the file to import - label_fields_separator: Field separator - label_fields_wrapper: Field wrapper - label_encoding: Encoding - label_comma_char: Comma - label_semi_colon_char: Semicolon - label_quote_char: Quote - label_double_quote_char: Double quote - label_fields_mapping: Fields mapping - label_file_content_preview: File content preview - label_create_missing_values: Create missing values - button_import: Import - field_total_estimated_hours: Total estimated time - label_api: API - label_total_plural: Totals - label_assigned_issues: Assigned issues - label_field_format_enumeration: Key/value list - label_f_hour_short: '%{value} h' - field_default_version: Default version - error_attachment_extension_not_allowed: Attachment extension %{extension} is not allowed - setting_attachment_extensions_allowed: Allowed extensions - setting_attachment_extensions_denied: Disallowed extensions - label_any_open_issues: any open issues - label_no_open_issues: no open issues - label_default_values_for_new_users: Default values for new users - error_ldap_bind_credentials: Invalid LDAP Account/Password - setting_sys_api_key: API ključ - setting_lost_password: Spremeni geslo - mail_subject_security_notification: Security notification - mail_body_security_notification_change: ! '%{field} was changed.' - mail_body_security_notification_change_to: ! '%{field} was changed to %{value}.' - mail_body_security_notification_add: ! '%{field} %{value} was added.' - mail_body_security_notification_remove: ! '%{field} %{value} was removed.' - mail_body_security_notification_notify_enabled: Email address %{value} now receives - notifications. - mail_body_security_notification_notify_disabled: Email address %{value} no longer - receives notifications. - mail_body_settings_updated: ! 'The following settings were changed:' - field_remote_ip: IP address - label_wiki_page_new: New wiki page - label_relations: Relations - button_filter: Filter - mail_body_password_updated: Your password has been changed. - label_no_preview: No preview available - error_no_tracker_allowed_for_new_issue_in_project: The project doesn't have any trackers - for which you can create an issue - label_tracker_all: All trackers - label_new_project_issue_tab_enabled: Display the "New issue" tab - setting_new_item_menu_tab: Project menu tab for creating new objects - label_new_object_tab_enabled: Display the "+" drop-down - error_no_projects_with_tracker_allowed_for_new_issue: There are no projects with trackers - for which you can create an issue - field_textarea_font: Font used for text areas - label_font_default: Default font - label_font_monospace: Monospaced font - label_font_proportional: Proportional font - setting_timespan_format: Time span format - label_table_of_contents: Table of contents - setting_commit_logs_formatting: Apply text formatting to commit messages - setting_mail_handler_enable_regex: Enable regular expressions - error_move_of_child_not_possible: 'Subtask %{child} could not be moved to the new - project: %{errors}' - error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted: Spent time cannot - be reassigned to an issue that is about to be deleted - setting_timelog_required_fields: Required fields for time logs - label_attribute_of_object: '%{object_name}''s %{name}' - label_user_mail_option_only_assigned: Only for things I watch or I am assigned to - label_user_mail_option_only_owner: Only for things I watch or I am the owner of - warning_fields_cleared_on_bulk_edit: Changes will result in the automatic deletion - of values from one or more fields on the selected objects - field_updated_by: Updated by - field_last_updated_by: Last updated by - field_full_width_layout: Full width layout - label_last_notes: Last notes - field_digest: Checksum - field_default_assigned_to: Default assignee - setting_show_custom_fields_on_registration: Show custom fields on registration - permission_view_news: View news - label_no_preview_alternative_html: No preview available. %{link} the file instead. - label_no_preview_download: Download - setting_close_duplicate_issues: Close duplicate issues automatically - error_exceeds_maximum_hours_per_day: Cannot log more than %{max_hours} hours on the - same day (%{logged_hours} hours have already been logged) - setting_time_entry_list_defaults: Timelog list defaults - setting_timelog_accept_0_hours: Accept time logs with 0 hours - setting_timelog_max_hours_per_day: Maximum hours that can be logged per day and user - label_x_revisions: "%{count} revisions" - error_can_not_delete_auth_source: This authentication mode is in use and cannot be - deleted. - button_actions: Actions - mail_body_lost_password_validity: Please be aware that you may change the password - only once using this link. - text_login_required_html: When not requiring authentication, public projects and their - contents are openly available on the network. You can edit - the applicable permissions. - label_login_required_yes: 'Yes' - label_login_required_no: No, allow anonymous access to public projects - text_project_is_public_non_member: Public projects and their contents are available - to all logged-in users. - text_project_is_public_anonymous: Public projects and their contents are openly available - on the network. - label_version_and_files: Versions (%{count}) and Files - label_ldap: LDAP - label_ldaps_verify_none: LDAPS (without certificate check) - label_ldaps_verify_peer: LDAPS - label_ldaps_warning: It is recommended to use an encrypted LDAPS connection with certificate - check to prevent any manipulation during the authentication process. - label_nothing_to_preview: Nothing to preview - error_token_expired: This password recovery link has expired, please try again. - error_spent_on_future_date: Cannot log time on a future date - setting_timelog_accept_future_dates: Accept time logs on future dates - label_delete_link_to_subtask: Izbriši povezavo - error_not_allowed_to_log_time_for_other_users: You are not allowed to log time - for other users - permission_log_time_for_other_users: Log spent time for other users - label_tomorrow: tomorrow - label_next_week: next week - label_next_month: next month - text_role_no_workflow: No workflow defined for this role - text_status_no_workflow: No tracker uses this status in the workflows - setting_mail_handler_preferred_body_part: Preferred part of multipart (HTML) emails - setting_show_status_changes_in_mail_subject: Show status changes in issue mail notifications - subject - label_inherited_from_parent_project: Inherited from parent project - label_inherited_from_group: Inherited from group %{name} - label_trackers_description: Trackers description - label_open_trackers_description: View all trackers description - label_preferred_body_part_text: Text - label_preferred_body_part_html: HTML (experimental) - field_parent_issue_subject: Parent task subject - permission_edit_own_issues: Edit own issues - text_select_apply_tracker: Select tracker - label_updated_issues: Updated issues - text_avatar_server_config_html: The current avatar server is %{url}. - You can configure it in config/configuration.yml. - setting_gantt_months_limit: Maximum number of months displayed on the gantt chart - permission_import_time_entries: Import time entries - label_import_notifications: Send email notifications during the import - text_gs_available: ImageMagick PDF support available (optional) - field_recently_used_projects: Number of recently used projects in jump box - label_optgroup_bookmarks: Bookmarks - label_optgroup_others: Other projects - label_optgroup_recents: Recently used - button_project_bookmark: Add bookmark - button_project_bookmark_delete: Remove bookmark - field_history_default_tab: Issue's history default tab - label_issue_history_properties: Property changes - label_issue_history_notes: Notes - label_last_tab_visited: Last visited tab - field_unique_id: Unique ID - text_no_subject: no subject - setting_password_required_char_classes: Required character classes for passwords - label_password_char_class_uppercase: uppercase letters - label_password_char_class_lowercase: lowercase letters - label_password_char_class_digits: digits - label_password_char_class_special_chars: special characters - text_characters_must_contain: Must contain %{character_classes}. - label_starts_with: starts with - label_ends_with: ends with - label_issue_fixed_version_updated: Target version updated - setting_project_list_defaults: Projects list defaults - label_display_type: Display results as - label_display_type_list: List - label_display_type_board: Board - label_my_bookmarks: My bookmarks - label_import_time_entries: Import time entries diff --git a/config/locales/sq.yml b/config/locales/sq.yml deleted file mode 100644 index c5fd029..0000000 --- a/config/locales/sq.yml +++ /dev/null @@ -1,1311 +0,0 @@ -sq: - # Text direction: Left-to-Right (ltr) or Right-to-Left (rtl) - direction: ltr - date: - formats: - # Use the strftime parameters for formats. - # When no format has been given, it uses default. - # You can provide other formats here if you like! - default: "%m/%d/%Y" - short: "%b %d" - long: "%B %d, %Y" - - day_names: [Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday] - abbr_day_names: [Sun, Mon, Tue, Wed, Thu, Fri, Sat] - - # Don't forget the nil at the beginning; there's no such thing as a 0th month - month_names: [~, January, February, March, April, May, June, July, August, September, October, November, December] - abbr_month_names: [~, Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec] - # Used in date_select and datime_select. - order: - - :year - - :month - - :day - - time: - formats: - default: "%m/%d/%Y %I:%M %p" - time: "%I:%M %p" - short: "%d %b %H:%M" - long: "%B %d, %Y %H:%M" - am: "am" - pm: "pm" - - datetime: - distance_in_words: - half_a_minute: "half a minute" - less_than_x_seconds: - one: "less than 1 second" - other: "less than %{count} seconds" - x_seconds: - one: "1 second" - other: "%{count} seconds" - less_than_x_minutes: - one: "less than a minute" - other: "less than %{count} minutes" - x_minutes: - one: "1 minute" - other: "%{count} minutes" - about_x_hours: - one: "about 1 hour" - other: "about %{count} hours" - x_hours: - one: "1 ore" - other: "%{count} ore" - x_days: - one: "1 day" - other: "%{count} days" - about_x_months: - one: "about 1 month" - other: "about %{count} months" - x_months: - one: "1 month" - other: "%{count} months" - about_x_years: - one: "about 1 year" - other: "about %{count} years" - over_x_years: - one: "over 1 year" - other: "over %{count} years" - almost_x_years: - one: "almost 1 year" - other: "almost %{count} years" - - number: - format: - separator: "." - delimiter: "" - precision: 3 - - human: - format: - delimiter: "" - precision: 3 - storage_units: - format: "%n %u" - units: - byte: - one: "Byte" - other: "Bytes" - kb: "KB" - mb: "MB" - gb: "GB" - tb: "TB" - -# Used in array.to_sentence. - support: - array: - sentence_connector: "dhe" - skip_last_comma: false - - activerecord: - errors: - template: - header: - one: "1 gabim nuk lejon kete %{model} te ruhet" - other: "%{count} gabime nuk lejon kete %{model} te ruhet" - messages: - inclusion: "nuk eshte perfshire ne liste" - exclusion: "eshte i/e rezervuar" - invalid: "eshte invalid" - confirmation: "nuk perkon me konfirmimin" - accepted: "duhet pranuar" - empty: "nuk mund te jete bosh" - blank: "nuk mund te jete blank" - too_long: "eshte shume i gjate (maksimumi eshte %{count} karaktere)" - too_short: "eshte shume i gjate (minimumi eshte %{count} karaktere)" - wrong_length: "eshte gjatesi e gabuar (duhet te jete %{count} karaktere)" - taken: "eshte zene" - not_a_number: "nuk eshte numer" - not_a_date: "nuk eshte date e vlefshme" - greater_than: "duhet te jete me i/e madh(e) se %{count}" - greater_than_or_equal_to: "duhet te jete me i/e madh(e) se ose i/e barabarte me %{count}" - equal_to: "duhet te jete i/e barabarte me %{count}" - less_than: "duhet te jete me i/e vogel se %{count}" - less_than_or_equal_to: "duhet te jete me i/e vogel se ose i/e barabarte me %{count}" - odd: "duhet te jete tek" - even: "duhet te jete cift" - greater_than_start_date: "duhet te jete me i/e madh(e) se data e fillimit" - not_same_project: "nuk i perket te njejtit projekt" - circular_dependency: "Ky relacion do te krijoje nje varesi ciklike (circular dependency)" - cant_link_an_issue_with_a_descendant: "Nje ceshtje nuk mund te lidhet me nenceshtje" - earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" - not_a_regexp: "is not a valid regular expression" - open_issue_with_closed_parent: "An open issue cannot be attached to a closed parent task" - must_contain_uppercase: "must contain uppercase letters (A-Z)" - must_contain_lowercase: "must contain lowercase letters (a-z)" - must_contain_digits: "must contain digits (0-9)" - must_contain_special_chars: "must contain special characters (!, $, %, ...)" - - actionview_instancetag_blank_option: Zgjidhni - - general_text_No: 'Jo' - general_text_Yes: 'Po' - general_text_no: 'jo' - general_text_yes: 'po' - general_lang_name: 'Albanian (Shqip)' - general_csv_separator: ',' - general_csv_decimal_separator: '.' - general_csv_encoding: ISO-8859-1 - general_pdf_fontname: freesans - general_pdf_monospaced_fontname: freemono - general_first_day_of_week: '7' - - notice_account_updated: Llogaria u perditesua me sukses. - notice_account_invalid_credentials: Perdorues ose Fjalekalim i gabuar. - notice_account_password_updated: Fjalekalimi u ndryshua me sukses. - notice_account_wrong_password: Fjalekalim i gabuar - notice_account_register_done: Llogaria u krijua me sukses. Per te aktivizuar Llogarine tuaj, ndiqni link-un e derguar ne email-in tuaj. - notice_account_unknown_email: Perdorues i paidentifikuar. - notice_can_t_change_password: Kjo Llogari administrohet nga nje server tjeter. E pamundur te ndryshohet Fjalekalimi. - notice_account_lost_email_sent: Ju eshte derguar nje email me instruksionet per te zgjedhur nje Fjalekalim te ri. - notice_account_activated: Llogaria juaj u Aktivizua. Tani mund te beni Login. - notice_successful_create: Krijim me sukses. - notice_successful_update: Modifikim me sukses. - notice_successful_delete: Fshirje me sukses. - notice_successful_connection: Lidhje e suksesshme. - notice_file_not_found: Faqja qe po kerkoni te aksesoni nuk ekziston ose eshte shperngulur. - notice_locking_conflict: Te dhenat jane modifikuar nga nje Perdorues tjeter. - notice_not_authorized: Nuk jeni i autorizuar te aksesoni kete faqe. - notice_not_authorized_archived_project: Projekti, qe po tentoni te te aksesoni eshte arkivuar. - notice_email_sent: "Nje email eshte derguar ne %{value}" - notice_email_error: "Pati nje gabim gjate dergimit te email-it (%{value})" - notice_feeds_access_key_reseted: Your Atom access key was reset. - notice_api_access_key_reseted: Your API access key was reset. - notice_failed_to_save_issues: "Deshtoi ne ruajtjen e %{count} ceshtje(ve) ne %{total} te zgjedhura: %{ids}." - notice_failed_to_save_time_entries: "Deshtoi ne ruajtjen e %{count} time entrie(s) ne %{total} te zgjedhura: %{ids}." - notice_failed_to_save_members: "Deshtoi ne ruajtjen e member(s): %{errors}." - notice_no_issue_selected: "Nuk eshte zgjedhur asnje Ceshtje! Zgjidh Ceshtjen qe deshironi te modifikoni." - notice_account_pending: "Llogaria juaj u krijua dhe eshte ne pritje te aprovimit nga nje administrator." - notice_default_data_loaded: Konfigurimi i paracaktuar u ngarkua me sukses. - notice_unable_delete_version: E pamundur te fshije versionin. - notice_unable_delete_time_entry: E pamundur te fshije rekordin e log-ut. - notice_issue_done_ratios_updated: Issue done ratios updated. - notice_gantt_chart_truncated: "The chart was truncated because it exceeds the maximum number of items that can be displayed (%{max})" - notice_issue_successful_create: "Ceshtja %{id} u krijua." - notice_issue_update_conflict: "Ceshtja eshte perditesuar nga Perdorues te tjere nderkohe qe ju po e modifikonit ate." - notice_account_deleted: "Llogaria juaj u fshi perfundimisht." - - error_can_t_load_default_data: "Konfigurimi i paracaktuar nuk mund te ngarkohet: %{value}" - error_scm_not_found: "The entry or revision was not found in the repository." - error_scm_command_failed: "An error occurred when trying to access the repository: %{value}" - error_scm_annotate: "The entry does not exist or cannot be annotated." - error_scm_annotate_big_text_file: "The entry cannot be annotated, as it exceeds the maximum text file size." - error_issue_not_found_in_project: 'The issue was not found or does not belong to this project' - error_no_tracker_in_project: 'No tracker is associated to this project. Please check the Project settings.' - error_no_default_issue_status: 'No default issue status is defined. Please check your configuration (Go to "Administration -> Issue statuses").' - error_can_not_delete_custom_field: Unable to delete custom field - error_can_not_delete_tracker: "This tracker contains issues and cannot be deleted." - error_can_not_remove_role: "This role is in use and cannot be deleted." - error_can_not_reopen_issue_on_closed_version: 'An issue assigned to a closed version cannot be reopened' - error_can_not_archive_project: This project cannot be archived - error_issue_done_ratios_not_updated: "Issue done ratios not updated." - error_workflow_copy_source: 'Please select a source tracker or role' - error_workflow_copy_target: 'Please select target tracker(s) and role(s)' - error_unable_delete_issue_status: 'Unable to delete issue status (%{value})' - error_unable_to_connect: "Unable to connect (%{value})" - error_attachment_too_big: "This file cannot be uploaded because it exceeds the maximum allowed file size (%{max_size})" - warning_attachments_not_saved: "%{count} file(s) could not be saved." - - mail_subject_lost_password: "Fjalekalimi %{value} i juaj" - mail_body_lost_password: 'Per te ndryshuar Fjalekalimin, ndiq link-un ne vijim:' - mail_subject_register: "Aktivizimi %{value} i Llogarise tuaj" - mail_body_register: 'Per te aktivizuar Llogarine tuaj, ndiqni link-un ne vijim:' - mail_body_account_information_external: "Mund te perdorni Llogarine tuaj %{value} per Login." - mail_body_account_information: Informacioni i Llogarise suaj - mail_subject_account_activation_request: "%{value} kerkesa aktivizimi Llogarije" - mail_body_account_activation_request: "Nje Perdorues i ri (%{value}) eshte regjistruar. Llogaria pret aprovimin tuaj:" - mail_subject_reminder: "%{count} Ceshtje te pritshme ne %{days} ditet pasardhese" - mail_body_reminder: "%{count} Ceshtje qe ju jane caktuar jane te pritshme ne %{days} ditet pasardhese:" - mail_subject_wiki_content_added: "'%{id}' wiki page eshte shtuar" - mail_body_wiki_content_added: "The '%{id}' wiki page eshte shtuar nga %{author}." - mail_subject_wiki_content_updated: "'%{id}' wiki page eshte modifikuar" - mail_body_wiki_content_updated: "The '%{id}' wiki page eshte modifikuar nga %{author}." - - - field_name: Emri - field_description: Pershkrimi - field_summary: Permbledhje - field_is_required: E Detyrueshme - field_firstname: Emri - field_lastname: Mbiemri - field_mail: Email - field_filename: File - field_filesize: Madhesia - field_downloads: Shkarkime - field_author: Autori - field_created_on: Krijuar me - field_updated_on: Perditesuar me - field_field_format: Formati - field_is_for_all: Per te gjthe Projektet - field_possible_values: Vlera e Mundshme - field_regexp: Shprehja e Duhur - field_min_length: Gjatesia Minimale - field_max_length: Gjatesia Maksimale - field_value: Vlera - field_category: Kategoria - field_title: Titulli - field_project: Projekti - field_issue: Problemi - field_status: Statusi - field_notes: Shenime - field_is_closed: Problemet e Mbyllura - field_is_default: Vlera e Paracaktuar - field_tracker: Gjurmuesi - field_subject: Subjekti - field_due_date: Deri me - field_assigned_to: I Ngarkuari - field_priority: Prioriteti - field_fixed_version: Menyra e Etiketimit - field_user: Perdoruesi - field_principal: Kapitali - field_role: Roli - field_homepage: Faqja Kryesore - field_is_public: Publike - field_parent: Nenprojekti i - field_is_in_roadmap: Ceshtje e shfaqur ne roadmap - field_login: Login - field_mail_notification: Njoftim me Email - field_admin: Administratori - field_last_login_on: Lidhja e Fundit - field_language: Gjuha - field_effective_date: Data - field_password: Fjalekalimi - field_new_password: Fjalekalimi i Ri - field_password_confirmation: Konfirmim Fjalekalimi - field_version: Versioni - field_type: Type - field_host: Host - field_port: Port - field_account: Llogaria - field_base_dn: Base DN - field_attr_login: Login attribute - field_attr_firstname: Firstname attribute - field_attr_lastname: Lastname attribute - field_attr_mail: Email attribute - field_onthefly: On-the-fly user creation - field_start_date: Start date - field_done_ratio: "% Done" - field_auth_source: Authentication mode - field_hide_mail: Hide my email address - field_comments: Comment - field_url: URL - field_start_page: Start page - field_subproject: Subproject - field_hours: Hours - field_activity: Activity - field_spent_on: Date - field_identifier: Identifier - field_is_filter: Used as a filter - field_issue_to: Related issue - field_delay: Delay - field_assignable: Issues can be assigned to this role - field_redirect_existing_links: Redirect existing links - field_estimated_hours: Estimated time - field_column_names: Columns - field_time_entries: Log time - field_time_zone: Time zone - field_searchable: Searchable - field_default_value: Default value - field_comments_sorting: Display comments - field_parent_title: Parent page - field_editable: Editable - field_watcher: Watcher - field_identity_url: OpenID URL - field_content: Content - field_group_by: Group results by - field_sharing: Sharing - field_parent_issue: Parent task - field_member_of_group: "Assignee's group" - field_assigned_to_role: "Assignee's role" - field_text: Text field - field_visible: Visible - field_warn_on_leaving_unsaved: "Warn me when leaving a page with unsaved text" - field_issues_visibility: Issues visibility - field_is_private: Private - field_commit_logs_encoding: Commit messages encoding - field_scm_path_encoding: Path encoding - field_path_to_repository: Path to repository - field_root_directory: Root directory - field_cvsroot: CVSROOT - field_cvs_module: Module - field_repository_is_default: Main repository - field_multiple: Multiple values - field_auth_source_ldap_filter: LDAP filter - - setting_app_title: Application title - setting_welcome_text: Welcome text - setting_default_language: Default language - setting_login_required: Authentication required - setting_self_registration: Self-registration - setting_attachment_max_size: Maximum attachment size - setting_issues_export_limit: Issues export limit - setting_mail_from: Emission email address - setting_bcc_recipients: Blind carbon copy recipients (bcc) - setting_plain_text_mail: Plain text mail (no HTML) - setting_host_name: Host name and path - setting_text_formatting: Text formatting - setting_wiki_compression: Wiki history compression - setting_feeds_limit: Maximum number of items in Atom feeds - setting_default_projects_public: New projects are public by default - setting_autofetch_changesets: Fetch commits automatically - setting_sys_api_enabled: Enable WS for repository management - setting_commit_ref_keywords: Referencing keywords - setting_commit_fix_keywords: Fixing keywords - setting_autologin: Autologin - setting_date_format: Date format - setting_time_format: Time format - setting_cross_project_issue_relations: Allow cross-project issue relations - setting_issue_list_default_columns: Default columns displayed on the issue list - setting_repositories_encodings: Attachments and repositories encodings - setting_protocol: Protocol - setting_per_page_options: Objects per page options - setting_user_format: Users display format - setting_activity_days_default: Days displayed on project activity - setting_display_subprojects_issues: Display subprojects issues on main projects by default - setting_enabled_scm: Enabled SCM - setting_mail_handler_body_delimiters: "Truncate emails after one of these lines" - setting_mail_handler_api_enabled: Enable WS for incoming emails - setting_mail_handler_api_key: API key - setting_sequential_project_identifiers: Generate sequential project identifiers - setting_gravatar_enabled: Use Gravatar user icons - setting_gravatar_default: Default Gravatar image - setting_diff_max_lines_displayed: Maximum number of diff lines displayed - setting_file_max_size_displayed: Maximum size of text files displayed inline - setting_repository_log_display_limit: Maximum number of revisions displayed on file log - setting_openid: Allow OpenID login and registration - setting_password_min_length: Minimum password length - setting_new_project_user_role_id: Role given to a non-admin user who creates a project - setting_default_projects_modules: Default enabled modules for new projects - setting_issue_done_ratio: Calculate the issue done ratio with - setting_issue_done_ratio_issue_field: Use the issue field - setting_issue_done_ratio_issue_status: Use the issue status - setting_start_of_week: Start calendars on - setting_rest_api_enabled: Enable REST web service - setting_cache_formatted_text: Cache formatted text - setting_default_notification_option: Default notification option - setting_commit_logtime_enabled: Enable time logging - setting_commit_logtime_activity_id: Activity for logged time - setting_gantt_items_limit: Maximum number of items displayed on the gantt chart - setting_issue_group_assignment: Allow issue assignment to groups - setting_default_issue_start_date_to_creation_date: Use current date as start date for new issues - setting_commit_cross_project_ref: Allow issues of all the other projects to be referenced and fixed - setting_unsubscribe: Allow users to delete their own account - - permission_add_project: Create project - permission_add_subprojects: Create subprojects - permission_edit_project: Edit project - permission_select_project_modules: Select project modules - permission_manage_members: Manage members - permission_manage_project_activities: Manage project activities - permission_manage_versions: Manage versions - permission_manage_categories: Manage issue categories - permission_view_issues: View Issues - permission_add_issues: Add issues - permission_edit_issues: Edit issues - permission_manage_issue_relations: Manage issue relations - permission_set_issues_private: Set issues public or private - permission_set_own_issues_private: Set own issues public or private - permission_add_issue_notes: Add notes - permission_edit_issue_notes: Edit notes - permission_edit_own_issue_notes: Edit own notes - permission_delete_issues: Delete issues - permission_manage_public_queries: Manage public queries - permission_save_queries: Save queries - permission_view_gantt: View gantt chart - permission_view_calendar: View calendar - permission_view_issue_watchers: View watchers list - permission_add_issue_watchers: Add watchers - permission_delete_issue_watchers: Delete watchers - permission_log_time: Log spent time - permission_view_time_entries: View spent time - permission_edit_time_entries: Edit time logs - permission_edit_own_time_entries: Edit own time logs - permission_manage_news: Manage news - permission_comment_news: Comment news - permission_view_documents: View documents - permission_manage_files: Manage files - permission_view_files: View files - permission_manage_wiki: Manage wiki - permission_rename_wiki_pages: Rename wiki pages - permission_delete_wiki_pages: Delete wiki pages - permission_view_wiki_pages: View wiki - permission_view_wiki_edits: View wiki history - permission_edit_wiki_pages: Edit wiki pages - permission_delete_wiki_pages_attachments: Delete attachments - permission_protect_wiki_pages: Protect wiki pages - permission_manage_repository: Manage repository - permission_browse_repository: Browse repository - permission_view_changesets: View changesets - permission_commit_access: Commit access - permission_manage_boards: Manage forums - permission_view_messages: View messages - permission_add_messages: Post messages - permission_edit_messages: Edit messages - permission_edit_own_messages: Edit own messages - permission_delete_messages: Delete messages - permission_delete_own_messages: Delete own messages - permission_export_wiki_pages: Export wiki pages - permission_manage_subtasks: Manage subtasks - permission_manage_related_issues: Manage related issues - - project_module_issue_tracking: Issue tracking - project_module_time_tracking: Time tracking - project_module_news: News - project_module_documents: Documents - project_module_files: Files - project_module_wiki: Wiki - project_module_repository: Repository - project_module_boards: Forums - project_module_calendar: Calendar - project_module_gantt: Gantt - - label_user: Perdoruesi - label_user_plural: Perdoruesit - label_user_new: Perdorues i ri - label_user_anonymous: Anonim - label_project: Projekt - label_project_new: Projekt i ri - label_project_plural: Projekte - label_x_projects: - zero: asnje projekt - one: 1 projekt - other: "%{count} projekte" - label_project_all: Te gjithe Projektet - label_project_latest: Projektet me te fundit - label_issue: Ceshtje - label_issue_new: Ceshtje e re - label_issue_plural: Ceshtjet - label_issue_view_all: Shih te gjitha Ceshtjet - label_issues_by: "Ceshtje per %{value}" - label_issue_added: Ceshtje te shtuara - label_issue_updated: Ceshtje te modifikuara - label_issue_note_added: Shenime te shtuara - label_issue_status_updated: Statusi u modifikua - label_issue_priority_updated: Prioriteti u modifikua - label_document: Dokument - label_document_new: Dokument i ri - label_document_plural: Dokumente - label_document_added: Dokumente te shtuara - label_role: Roli - label_role_plural: Role - label_role_new: Rol i ri - label_role_and_permissions: Role dhe te Drejta - label_role_anonymous: Anonim - label_role_non_member: Jo Anetar - label_member: Anetar - label_member_new: Anetar i ri - label_member_plural: Anetare - label_tracker: Gjurmues - label_tracker_plural: Gjurmuesa - label_tracker_new: Gjurmues i ri - label_workflow: Workflow - label_issue_status: Statusi i Ceshtjes - label_issue_status_plural: Statuset e Ceshtjeve - label_issue_status_new: Statusi i ri - label_issue_category: Kategoria e Ceshtjes - label_issue_category_plural: Kategorite e Ceshtjeve - label_issue_category_new: Kategori e re - label_custom_field: Fushe e personalizuar - label_custom_field_plural: Fusha te personalizuara - label_custom_field_new: Fushe e personalizuar e re - label_enumerations: Enumerations - label_enumeration_new: Vlere e re - label_information: Informacion - label_information_plural: Informacione - label_register: Regjistrohu - label_login_with_open_id_option: ose lidhu me OpenID - label_password_lost: Fjalekalim i humbur - label_home: Home - label_my_page: Faqja ime - label_my_account: Llogaria ime - label_my_projects: Projektet e mia - label_administration: Administrim - label_login: Login - label_logout: Dalje - label_help: Ndihme - label_reported_issues: Ceshtje te raportuara - label_assigned_to_me_issues: Ceshtje te caktuara mua - label_last_login: Hyrja e fundit - label_registered_on: Regjistruar me - label_activity: Aktiviteti - label_overall_activity: Aktiviteti i pergjithshem - label_user_activity: "Aktiviteti i %{value}" - label_new: Shto - label_logged_as: Lidhur si - label_environment: Ambienti - label_authentication: Authentikimi - label_auth_source: Menyra e Authentikimit - label_auth_source_new: Menyre e re Authentikimi - label_auth_source_plural: Menyrat e Authentikimit - label_subproject_plural: Nenprojekte - label_subproject_new: Nenprojekt i ri - label_and_its_subprojects: "%{value} dhe Nenprojektet e vet" - label_min_max_length: Gjatesia Min - Max - label_list: List - label_date: Date - label_integer: Integer - label_float: Float - label_boolean: Boolean - label_string: Text - label_text: Long text - label_attribute: Attribute - label_attribute_plural: Attributes - label_no_data: No data to display - label_change_status: Change status - label_history: Histori - label_attachment: File - label_attachment_new: File i ri - label_attachment_delete: Fshi file - label_attachment_plural: Files - label_file_added: File te shtuar - label_report: Raport - label_report_plural: Raporte - label_news: Lajm - label_news_new: Shto Lajm - label_news_plural: Lajme - label_news_latest: Lajmet e fundit - label_news_view_all: Veshtro gjithe Lajmet - label_news_added: Lajme te shtuara - label_news_comment_added: Komenti iu shtua Lajmeve - label_settings: Settings - label_overview: Overview - label_version: Version - label_version_new: Version i ri - label_version_plural: Versione - label_close_versions: Mbyll Versionet e perfunduara - label_confirmation: Konfirmim - label_export_to: 'Mund te gjendet gjithashtu ne:' - label_read: Lexim... - label_public_projects: Projekte publike - label_open_issues: e hapur - label_open_issues_plural: te hapura - label_closed_issues: e mbyllur - label_closed_issues_plural: te mbyllura - label_x_open_issues_abbr: - zero: 0 te hapura - one: 1 e hapur - other: "%{count} te hapura" - label_x_closed_issues_abbr: - zero: 0 te mbyllura - one: 1 e mbyllur - other: "%{count} te mbyllura" - label_x_issues: - zero: 0 ceshtje - one: 1 ceshtje - other: "%{count} ceshtje" - label_total: Total - label_permissions: Te drejta - label_current_status: Statusi aktual - label_new_statuses_allowed: Statuse te reja te lejuara - label_all: te gjitha - label_none: asnje - label_nobody: askush - label_next: Pasardhes - label_previous: Paraardhes - label_used_by: Perdorur nga - label_details: Detaje - label_add_note: Shto nje Shenim - label_calendar: Kalendar - label_months_from: muaj nga - label_gantt: Gantt - label_internal: I brendshem - label_last_changes: "%{count} ndryshimet e fundit" - label_change_view_all: Shih gjithe ndryshimet - label_comment: Koment - label_comment_plural: Komente - label_x_comments: - zero: asnje koment - one: 1 koment - other: "%{count} komente" - label_comment_add: Shto nje koment - label_comment_added: Komenti u shtua - label_comment_delete: Fshi komente - label_query: Custom query - label_query_plural: Custom queries - label_query_new: New query - label_my_queries: My custom queries - label_filter_add: Shto filter - label_filter_plural: Filtra - label_equals: eshte - label_not_equals: nuk eshte - label_in_less_than: ne me pak se - label_in_more_than: ne me shume se - label_greater_or_equal: '>=' - label_less_or_equal: '<=' - label_between: ndermjet - label_in: ne - label_today: sot - label_yesterday: dje - label_this_week: kete jave - label_last_week: javen e kaluar - label_last_n_days: "%{count} ditet e fundit" - label_this_month: kete muaj - label_last_month: muajin e kaluar - label_this_year: kete vit - label_date_range: Date range - label_less_than_ago: me pak se dite para - label_more_than_ago: me shume se dite para - label_ago: dite para - label_contains: permban - label_not_contains: nuk permban - label_day_plural: dite - label_repository: Repository - label_repository_new: New repository - label_repository_plural: Repositories - label_browse: Browse - label_branch: Dege - label_tag: Tag - label_revision: Revizion - label_revision_plural: Revizione - label_revision_id: "Revizion %{value}" - label_associated_revisions: Associated revisions - label_added: te shtuara - label_modified: te modifikuara - label_copied: te kopjuara - label_renamed: te riemeruara - label_deleted: te fshira - label_latest_revision: Revizioni i fundit - label_latest_revision_plural: Revizionet e fundit - label_view_revisions: Shih Revizionet - label_view_all_revisions: Shih te gjitha Revizionet - label_max_size: Maximum size - label_sort_highest: Coje ne krye - label_sort_higher: Coje lart - label_sort_lower: Coje poshte - label_sort_lowest: Coje ne fund - label_roadmap: Roadmap - label_roadmap_due_in: "E pritshme ne %{value}" - label_roadmap_overdue: "%{value} me vonese" - label_roadmap_no_issues: Asnje Ceshtje per kete version - label_search: Kerko - label_result_plural: Rezultatet - label_all_words: Te gjitha fjalet - label_wiki: Wiki - label_wiki_edit: Wiki edit - label_wiki_edit_plural: Wiki edits - label_wiki_page: Wiki page - label_wiki_page_plural: Wiki pages - label_index_by_title: Index by title - label_index_by_date: Index by date - label_current_version: Current version - label_preview: Preview - label_feed_plural: Feeds - label_changes_details: Details of all changes - label_issue_tracking: Issue tracking - label_spent_time: Spent time - label_overall_spent_time: Overall spent time - label_f_hour: "%{value} ore" - label_f_hour_plural: "%{value} ore" - label_time_tracking: Time tracking - label_change_plural: Ndryshimet - label_statistics: Statistika - label_commits_per_month: Commits per month - label_commits_per_author: Commits per author - label_diff: diff - label_view_diff: View differences - label_diff_inline: inline - label_diff_side_by_side: side by side - label_options: Options - label_copy_workflow_from: Copy workflow from - label_permissions_report: Permissions report - label_watched_issues: Watched issues - label_related_issues: Related issues - label_applied_status: Applied status - label_loading: Loading... - label_relation_new: New relation - label_relation_delete: Delete relation - label_relates_to: related to - label_duplicates: duplicates - label_duplicated_by: duplicated by - label_blocks: blocks - label_blocked_by: blocked by - label_precedes: precedes - label_follows: follows - label_stay_logged_in: Stay logged in - label_disabled: disabled - label_show_completed_versions: Show completed versions - label_me: me - label_board: Forum - label_board_new: New forum - label_board_plural: Forums - label_board_locked: Locked - label_board_sticky: Sticky - label_topic_plural: Topics - label_message_plural: Messages - label_message_last: Last message - label_message_new: New message - label_message_posted: Message added - label_reply_plural: Replies - label_send_information: Send account information to the user - label_year: Year - label_month: Month - label_week: Week - label_date_from: From - label_date_to: To - label_language_based: Based on user's language - label_sort_by: "Sort by %{value}" - label_send_test_email: Send a test email - label_feeds_access_key: Atom access key - label_missing_feeds_access_key: Missing a Atom access key - label_feeds_access_key_created_on: "Atom access key created %{value} ago" - label_module_plural: Modules - label_added_time_by: "Added by %{author} %{age} ago" - label_updated_time_by: "Updated by %{author} %{age} ago" - label_updated_time: "Updated %{value} ago" - label_jump_to_a_project: Jump to a project... - label_file_plural: Files - label_changeset_plural: Changesets - label_default_columns: Default columns - label_no_change_option: (No change) - label_bulk_edit_selected_issues: Bulk edit selected issues - label_bulk_edit_selected_time_entries: Bulk edit selected time entries - label_theme: Theme - label_default: Default - label_search_titles_only: Search titles only - label_user_mail_option_all: "For any event on all my projects" - label_user_mail_option_selected: "For any event on the selected projects only..." - label_user_mail_option_none: "No events" - label_user_mail_option_only_my_events: "Only for things I watch or I'm involved in" - label_user_mail_no_self_notified: "I don't want to be notified of changes that I make myself" - label_registration_activation_by_email: account activation by email - label_registration_manual_activation: manual account activation - label_registration_automatic_activation: automatic account activation - label_display_per_page: "Per page: %{value}" - label_age: Age - label_change_properties: Change properties - label_general: General - label_scm: SCM - label_plugins: Plugins - label_ldap_authentication: LDAP authentication - label_downloads_abbr: D/L - label_optional_description: Optional description - label_add_another_file: Add another file - label_preferences: Preferences - label_chronological_order: In chronological order - label_reverse_chronological_order: In reverse chronological order - label_incoming_emails: Incoming emails - label_generate_key: Generate a key - label_issue_watchers: Watchers - label_example: Example - label_display: Display - label_sort: Sort - label_ascending: Ascending - label_descending: Descending - label_date_from_to: From %{start} to %{end} - label_wiki_content_added: Wiki page added - label_wiki_content_updated: Wiki page updated - label_group: Group - label_group_plural: Groups - label_group_new: New group - label_time_entry_plural: Spent time - label_version_sharing_none: Not shared - label_version_sharing_descendants: With subprojects - label_version_sharing_hierarchy: With project hierarchy - label_version_sharing_tree: With project tree - label_version_sharing_system: With all projects - label_update_issue_done_ratios: Update issue done ratios - label_copy_source: Source - label_copy_target: Target - label_copy_same_as_target: Same as target - label_display_used_statuses_only: Only display statuses that are used by this tracker - label_api_access_key: API access key - label_missing_api_access_key: Missing an API access key - label_api_access_key_created_on: "API access key created %{value} ago" - label_profile: Profile - label_subtask_plural: Subtasks - label_project_copy_notifications: Send email notifications during the project copy - label_principal_search: "Search for user or group:" - label_user_search: "Search for user:" - label_additional_workflow_transitions_for_author: Additional transitions allowed when the user is the author - label_additional_workflow_transitions_for_assignee: Additional transitions allowed when the user is the assignee - label_issues_visibility_all: All issues - label_issues_visibility_public: All non private issues - label_issues_visibility_own: Issues created by or assigned to the user - label_git_report_last_commit: Report last commit for files and directories - label_parent_revision: Parent - label_child_revision: Child - label_export_options: "%{export_format} export options" - label_copy_attachments: Copy attachments - label_item_position: "%{position} of %{count}" - label_completed_versions: Completed versions - label_search_for_watchers: Search for watchers to add - - button_login: Login - button_submit: Submit - button_save: Save - button_check_all: Check all - button_uncheck_all: Uncheck all - button_collapse_all: Collapse all - button_expand_all: Expand all - button_delete: Delete - button_create: Create - button_create_and_continue: Create and add another - button_test: Test - button_edit: Edit - button_edit_associated_wikipage: "Edit associated Wiki page: %{page_title}" - button_add: Add - button_change: Change - button_apply: Apply - button_clear: Clear - button_lock: Lock - button_unlock: Unlock - button_download: Download - button_list: List - button_view: View - button_move: Move - button_move_and_follow: Move and follow - button_back: Back - button_cancel: Cancel - button_activate: Activate - button_sort: Sort - button_log_time: Log time - button_rollback: Rollback to this version - button_watch: Watch - button_unwatch: Unwatch - button_reply: Reply - button_archive: Archive - button_unarchive: Unarchive - button_reset: Reset - button_rename: Rename - button_change_password: Change password - button_copy: Copy - button_copy_and_follow: Copy and follow - button_annotate: Annotate - button_update: Update - button_configure: Configure - button_quote: Quote - button_show: Show - button_edit_section: Edit this section - button_export: Export - button_delete_my_account: Delete my account - - status_active: active - status_registered: registered - status_locked: locked - - version_status_open: open - version_status_locked: locked - version_status_closed: closed - - field_active: Active - - text_select_mail_notifications: Select actions for which email notifications should be sent. - text_regexp_info: eg. ^[A-Z0-9]+$ - text_min_max_length_info: 0 means no restriction - text_project_destroy_confirmation: Are you sure you want to delete this project and related data? - text_subprojects_destroy_warning: "Its subproject(s): %{value} will be also deleted." - text_workflow_edit: Select a role and a tracker to edit the workflow - text_are_you_sure: Are you sure? - text_journal_changed: "%{label} changed from %{old} to %{new}" - text_journal_changed_no_detail: "%{label} updated" - text_journal_set_to: "%{label} set to %{value}" - text_journal_deleted: "%{label} deleted (%{old})" - text_journal_added: "%{label} %{value} added" - text_tip_issue_begin_day: issue beginning this day - text_tip_issue_end_day: issue ending this day - text_tip_issue_begin_end_day: issue beginning and ending this day - text_project_identifier_info: 'Only lower case letters (a-z), numbers, dashes and underscores are allowed.
    Once saved, the identifier cannot be changed.' - text_caracters_maximum: "%{count} characters maximum." - text_caracters_minimum: "Must be at least %{count} characters long." - text_length_between: "Length between %{min} and %{max} characters." - text_tracker_no_workflow: No workflow defined for this tracker - text_unallowed_characters: Unallowed characters - text_comma_separated: Multiple values allowed (comma separated). - text_line_separated: Multiple values allowed (one line for each value). - text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages - text_issue_added: "Issue %{id} has been reported by %{author}." - text_issue_updated: "Issue %{id} has been updated by %{author}." - text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content? - text_issue_category_destroy_question: "Some issues (%{count}) are assigned to this category. What do you want to do?" - text_issue_category_destroy_assignments: Remove category assignments - text_issue_category_reassign_to: Reassign issues to this category - text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)." - text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded." - text_load_default_configuration: Load the default configuration - text_status_changed_by_changeset: "Applied in changeset %{value}." - text_time_logged_by_changeset: "Applied in changeset %{value}." - text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s)?' - text_issues_destroy_descendants_confirmation: "This will also delete %{count} subtask(s)." - text_time_entries_destroy_confirmation: 'Are you sure you want to delete the selected time entr(y/ies)?' - text_select_project_modules: 'Select modules to enable for this project:' - text_default_administrator_account_changed: Default administrator account changed - text_file_repository_writable: Attachments directory writable - text_plugin_assets_writable: Plugin assets directory writable - text_minimagick_available: MiniMagick available (optional) - text_destroy_time_entries_question: "%{hours} hours were reported on the issues you are about to delete. What do you want to do?" - text_destroy_time_entries: Delete reported hours - text_assign_time_entries_to_project: Assign reported hours to the project - text_reassign_time_entries: 'Reassign reported hours to this issue:' - text_user_wrote: "%{value} wrote:" - text_user_wrote_in: "%{value} wrote (%{link}):" - text_enumeration_destroy_question: "%{count} objects are assigned to this value." - text_enumeration_category_reassign_to: 'Reassign them to this value:' - text_email_delivery_not_configured: "Email delivery is not configured, and notifications are disabled.\nConfigure your SMTP server in config/configuration.yml and restart the application to enable them." - text_repository_usernames_mapping: "Select or update the Redmine user mapped to each username found in the repository log.\nUsers with the same Redmine and repository username or email are automatically mapped." - text_diff_truncated: '... This diff was truncated because it exceeds the maximum size that can be displayed.' - text_custom_field_possible_values_info: 'One line for each value' - text_wiki_page_destroy_question: "This page has %{descendants} child page(s) and descendant(s). What do you want to do?" - text_wiki_page_nullify_children: "Keep child pages as root pages" - text_wiki_page_destroy_children: "Delete child pages and all their descendants" - text_wiki_page_reassign_children: "Reassign child pages to this parent page" - 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_zoom_in: Zoom in - text_zoom_out: Zoom out - text_warn_on_leaving_unsaved: "The current page contains unsaved text that will be lost if you leave this page." - text_scm_path_encoding_note: "Default: UTF-8" - text_git_repository_note: Repository is bare and local (e.g. /gitrepo, c:\gitrepo) - text_mercurial_repository_note: Local repository (e.g. /hgrepo, c:\hgrepo) - text_scm_command: Command - text_scm_command_version: Version - text_issue_conflict_resolution_overwrite: "Apply my changes anyway (previous notes will be kept but some changes may be overwritten)" - text_issue_conflict_resolution_add_notes: "Add my notes and discard my other changes" - text_issue_conflict_resolution_cancel: "Discard all my changes and redisplay %{link}" - text_account_destroy_confirmation: "Are you sure you want to proceed?\nYour account will be permanently deleted, with no way to reactivate it." - - default_role_manager: Manager - default_role_developer: Developer - default_role_reporter: Reporter - default_tracker_bug: Bug - default_tracker_feature: Feature - default_tracker_support: Support - default_issue_status_new: New - default_issue_status_in_progress: In Progress - default_issue_status_resolved: Resolved - default_issue_status_feedback: Feedback - default_issue_status_closed: Closed - default_issue_status_rejected: Rejected - default_doc_category_user: User documentation - default_doc_category_tech: Technical documentation - default_priority_low: Low - default_priority_normal: Normal - default_priority_high: High - default_priority_urgent: Urgent - default_priority_immediate: Immediate - default_activity_design: Design - default_activity_development: Development - - enumeration_issue_priorities: Issue priorities - enumeration_doc_categories: Document categories - enumeration_activities: Activities (time tracking) - enumeration_system_activity: System Activity - description_filter: Filter - description_search: Searchfield - description_choose_project: Projects - description_project_scope: Search scope - description_notes: Notes - description_message_content: Message content - description_query_sort_criteria_attribute: Sort attribute - description_query_sort_criteria_direction: Sort direction - description_user_mail_notification: Mail notification settings - description_available_columns: Available Columns - description_selected_columns: Selected Columns - description_all_columns: All Columns - description_issue_category_reassign: Choose issue category - description_wiki_subpages_reassign: Choose new parent page - error_session_expired: Your session has expired. Please login again. - text_session_expiration_settings: "Warning: changing these settings may expire the current sessions including yours." - setting_session_lifetime: Session maximum lifetime - setting_session_timeout: Session inactivity timeout - label_session_expiration: Session expiration - permission_close_project: Close / reopen the project - button_close: Close - button_reopen: Reopen - project_status_active: active - project_status_closed: closed - project_status_archived: archived - text_project_closed: This project is closed and read-only. - notice_user_successful_create: User %{id} created. - field_core_fields: Standard fields - field_timeout: Timeout (in seconds) - setting_thumbnails_enabled: Display attachment thumbnails - setting_thumbnails_size: Thumbnails size (in pixels) - label_status_transitions: Status transitions - label_fields_permissions: Fields permissions - label_readonly: Read-only - label_required: Required - text_repository_identifier_info: 'Only lower case letters (a-z), numbers, dashes and underscores are allowed.
    Once saved, the identifier cannot be changed.' - field_board_parent: Parent forum - label_attribute_of_project: Project's %{name} - label_attribute_of_author: Author's %{name} - label_attribute_of_assigned_to: Assignee's %{name} - label_attribute_of_fixed_version: Target version's %{name} - label_copy_subtasks: Copy subtasks - label_copied_to: copied to - label_copied_from: copied from - label_any_issues_in_project: any issues in project - label_any_issues_not_in_project: any issues not in project - field_private_notes: Private notes - permission_view_private_notes: View private notes - permission_set_notes_private: Set notes as private - label_no_issues_in_project: no issues in project - label_any: te gjitha - label_last_n_weeks: last %{count} weeks - setting_cross_project_subtasks: Allow cross-project subtasks - label_cross_project_descendants: With subprojects - label_cross_project_tree: With project tree - label_cross_project_hierarchy: With project hierarchy - label_cross_project_system: With all projects - button_hide: Hide - setting_non_working_week_days: Non-working days - label_in_the_next_days: in the next - label_in_the_past_days: in the past - label_attribute_of_user: User's %{name} - text_turning_multiple_off: If you disable multiple values, multiple values will be - removed in order to preserve only one value per item. - label_attribute_of_issue: Issue's %{name} - permission_add_documents: Add documents - permission_edit_documents: Edit documents - permission_delete_documents: Delete documents - label_gantt_progress_line: Progress line - setting_jsonp_enabled: Enable JSONP support - field_inherit_members: Inherit members - field_closed_on: Closed - field_generate_password: Generate password - setting_default_projects_tracker_ids: Default trackers for new projects - label_total_time: Total - text_scm_config: You can configure your SCM commands in config/configuration.yml. Please restart the application after editing it. - text_scm_command_not_available: SCM command is not available. Please check settings on the administration panel. - setting_emails_footer: Email footer - setting_emails_header: Email header - notice_account_not_activated_yet: You haven't activated your account yet. If you want - to receive a new activation email, please click this link. - notice_account_locked: Your account is locked. - label_hidden: Hidden - label_visibility_private: to me only - label_visibility_roles: to these roles only - label_visibility_public: to any users - field_must_change_passwd: Must change password at next logon - notice_new_password_must_be_different: The new password must be different from the - current password - setting_mail_handler_excluded_filenames: Exclude attachments by name - text_convert_available: ImageMagick convert available (optional) - label_link: Link - label_only: only - label_drop_down_list: drop-down list - label_checkboxes: checkboxes - label_link_values_to: Link values to URL - setting_force_default_language_for_anonymous: Force default language for anonymous - users - setting_force_default_language_for_loggedin: Force default language for logged-in - users - label_custom_field_select_type: Select the type of object to which the custom field - is to be attached - label_issue_assigned_to_updated: Assignee updated - label_check_for_updates: Check for updates - label_latest_compatible_version: Latest compatible version - label_unknown_plugin: Unknown plugin - label_radio_buttons: radio buttons - label_group_anonymous: Anonymous users - label_group_non_member: Non member users - label_add_projects: Add projects - field_default_status: Default status - text_subversion_repository_note: 'Examples: file:///, http://, https://, svn://, svn+[tunnelscheme]://' - field_users_visibility: Users visibility - label_users_visibility_all: All active users - label_users_visibility_members_of_visible_projects: Members of visible projects - label_edit_attachments: Edit attached files - setting_link_copied_issue: Link issues on copy - label_link_copied_issue: Link copied issue - label_ask: Ask - label_search_attachments_yes: Search attachment filenames and descriptions - label_search_attachments_no: Do not search attachments - label_search_attachments_only: Search attachments only - label_search_open_issues_only: Open issues only - field_address: Email - setting_max_additional_emails: Maximum number of additional email addresses - label_email_address_plural: Emails - label_email_address_add: Add email address - label_enable_notifications: Enable notifications - label_disable_notifications: Disable notifications - setting_search_results_per_page: Search results per page - label_blank_value: blank - permission_copy_issues: Copy issues - error_password_expired: Your password has expired or the administrator requires you - to change it. - field_time_entries_visibility: Time logs visibility - setting_password_max_age: Require password change after - label_parent_task_attributes: Parent tasks attributes - label_parent_task_attributes_derived: Calculated from subtasks - label_parent_task_attributes_independent: Independent of subtasks - label_time_entries_visibility_all: All time entries - label_time_entries_visibility_own: Time entries created by the user - label_member_management: Member management - label_member_management_all_roles: All roles - label_member_management_selected_roles_only: Only these roles - label_password_required: Confirm your password to continue - label_total_spent_time: Overall spent time - notice_import_finished: "%{count} items have been imported" - notice_import_finished_with_errors: "%{count} out of %{total} items could not be imported" - error_invalid_file_encoding: The file is not a valid %{encoding} encoded file - error_invalid_csv_file_or_settings: The file is not a CSV file or does not match the - settings below - error_can_not_read_import_file: An error occurred while reading the file to import - permission_import_issues: Import issues - label_import_issues: Import issues - label_select_file_to_import: Select the file to import - label_fields_separator: Field separator - label_fields_wrapper: Field wrapper - label_encoding: Encoding - label_comma_char: Comma - label_semi_colon_char: Semicolon - label_quote_char: Quote - label_double_quote_char: Double quote - label_fields_mapping: Fields mapping - label_file_content_preview: File content preview - label_create_missing_values: Create missing values - button_import: Import - field_total_estimated_hours: Total estimated time - label_api: API - label_total_plural: Totals - label_assigned_issues: Assigned issues - label_field_format_enumeration: Key/value list - label_f_hour_short: '%{value} h' - field_default_version: Default version - error_attachment_extension_not_allowed: Attachment extension %{extension} is not allowed - setting_attachment_extensions_allowed: Allowed extensions - setting_attachment_extensions_denied: Disallowed extensions - label_any_open_issues: any open issues - label_no_open_issues: no open issues - label_default_values_for_new_users: Default values for new users - error_ldap_bind_credentials: Invalid LDAP Account/Password - setting_sys_api_key: API key - setting_lost_password: Fjalekalim i humbur - mail_subject_security_notification: Security notification - mail_body_security_notification_change: ! '%{field} was changed.' - mail_body_security_notification_change_to: ! '%{field} was changed to %{value}.' - mail_body_security_notification_add: ! '%{field} %{value} was added.' - mail_body_security_notification_remove: ! '%{field} %{value} was removed.' - mail_body_security_notification_notify_enabled: Email address %{value} now receives - notifications. - mail_body_security_notification_notify_disabled: Email address %{value} no longer - receives notifications. - mail_body_settings_updated: ! 'The following settings were changed:' - field_remote_ip: IP address - label_wiki_page_new: New wiki page - label_relations: Relations - button_filter: Filter - mail_body_password_updated: Your password has been changed. - label_no_preview: No preview available - error_no_tracker_allowed_for_new_issue_in_project: The project doesn't have any trackers - for which you can create an issue - label_tracker_all: All trackers - label_new_project_issue_tab_enabled: Display the "New issue" tab - setting_new_item_menu_tab: Project menu tab for creating new objects - label_new_object_tab_enabled: Display the "+" drop-down - error_no_projects_with_tracker_allowed_for_new_issue: There are no projects with trackers - for which you can create an issue - field_textarea_font: Font used for text areas - label_font_default: Default font - label_font_monospace: Monospaced font - label_font_proportional: Proportional font - setting_timespan_format: Time span format - label_table_of_contents: Table of contents - setting_commit_logs_formatting: Apply text formatting to commit messages - setting_mail_handler_enable_regex: Enable regular expressions - error_move_of_child_not_possible: 'Subtask %{child} could not be moved to the new - project: %{errors}' - error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted: Spent time cannot - be reassigned to an issue that is about to be deleted - setting_timelog_required_fields: Required fields for time logs - label_attribute_of_object: '%{object_name}''s %{name}' - label_user_mail_option_only_assigned: Only for things I watch or I am assigned to - label_user_mail_option_only_owner: Only for things I watch or I am the owner of - warning_fields_cleared_on_bulk_edit: Changes will result in the automatic deletion - of values from one or more fields on the selected objects - field_updated_by: Updated by - field_last_updated_by: Last updated by - field_full_width_layout: Full width layout - label_last_notes: Last notes - field_digest: Checksum - field_default_assigned_to: Default assignee - setting_show_custom_fields_on_registration: Show custom fields on registration - permission_view_news: View news - label_no_preview_alternative_html: No preview available. %{link} the file instead. - label_no_preview_download: Download - setting_close_duplicate_issues: Close duplicate issues automatically - error_exceeds_maximum_hours_per_day: Cannot log more than %{max_hours} hours on the - same day (%{logged_hours} hours have already been logged) - setting_time_entry_list_defaults: Timelog list defaults - setting_timelog_accept_0_hours: Accept time logs with 0 hours - setting_timelog_max_hours_per_day: Maximum hours that can be logged per day and user - label_x_revisions: "%{count} revisions" - error_can_not_delete_auth_source: This authentication mode is in use and cannot be - deleted. - button_actions: Actions - mail_body_lost_password_validity: Please be aware that you may change the password - only once using this link. - text_login_required_html: When not requiring authentication, public projects and their - contents are openly available on the network. You can edit - the applicable permissions. - label_login_required_yes: 'Yes' - label_login_required_no: No, allow anonymous access to public projects - text_project_is_public_non_member: Public projects and their contents are available - to all logged-in users. - text_project_is_public_anonymous: Public projects and their contents are openly available - on the network. - label_version_and_files: Versions (%{count}) and Files - label_ldap: LDAP - label_ldaps_verify_none: LDAPS (without certificate check) - label_ldaps_verify_peer: LDAPS - label_ldaps_warning: It is recommended to use an encrypted LDAPS connection with certificate - check to prevent any manipulation during the authentication process. - label_nothing_to_preview: Nothing to preview - error_token_expired: This password recovery link has expired, please try again. - error_spent_on_future_date: Cannot log time on a future date - setting_timelog_accept_future_dates: Accept time logs on future dates - label_delete_link_to_subtask: Delete relation - error_not_allowed_to_log_time_for_other_users: You are not allowed to log time - for other users - permission_log_time_for_other_users: Log spent time for other users - label_tomorrow: tomorrow - label_next_week: next week - label_next_month: next month - text_role_no_workflow: No workflow defined for this role - text_status_no_workflow: No tracker uses this status in the workflows - setting_mail_handler_preferred_body_part: Preferred part of multipart (HTML) emails - setting_show_status_changes_in_mail_subject: Show status changes in issue mail notifications - subject - label_inherited_from_parent_project: Inherited from parent project - label_inherited_from_group: Inherited from group %{name} - label_trackers_description: Trackers description - label_open_trackers_description: View all trackers description - label_preferred_body_part_text: Text - label_preferred_body_part_html: HTML (experimental) - field_parent_issue_subject: Parent task subject - permission_edit_own_issues: Edit own issues - text_select_apply_tracker: Select tracker - label_updated_issues: Updated issues - text_avatar_server_config_html: The current avatar server is %{url}. - You can configure it in config/configuration.yml. - setting_gantt_months_limit: Maximum number of months displayed on the gantt chart - permission_import_time_entries: Import time entries - label_import_notifications: Send email notifications during the import - text_gs_available: ImageMagick PDF support available (optional) - field_recently_used_projects: Number of recently used projects in jump box - label_optgroup_bookmarks: Bookmarks - label_optgroup_others: Other projects - label_optgroup_recents: Recently used - button_project_bookmark: Add bookmark - button_project_bookmark_delete: Remove bookmark - field_history_default_tab: Issue's history default tab - label_issue_history_properties: Property changes - label_issue_history_notes: Notes - label_last_tab_visited: Last visited tab - field_unique_id: Unique ID - text_no_subject: no subject - setting_password_required_char_classes: Required character classes for passwords - label_password_char_class_uppercase: uppercase letters - label_password_char_class_lowercase: lowercase letters - label_password_char_class_digits: digits - label_password_char_class_special_chars: special characters - text_characters_must_contain: Must contain %{character_classes}. - label_starts_with: starts with - label_ends_with: ends with - label_issue_fixed_version_updated: Target version updated - setting_project_list_defaults: Projects list defaults - label_display_type: Display results as - label_display_type_list: List - label_display_type_board: Board - label_my_bookmarks: My bookmarks - label_import_time_entries: Import time entries diff --git a/config/locales/sr-YU.yml b/config/locales/sr-YU.yml deleted file mode 100644 index 7d74bdd..0000000 --- a/config/locales/sr-YU.yml +++ /dev/null @@ -1,1317 +0,0 @@ -# Serbian translations for Redmine -# by Vladimir Medarović (vlada@medarovic.com) -sr-YU: - direction: ltr - jquery: - locale: "sr" - date: - formats: - # Use the strftime parameters for formats. - # When no format has been given, it uses default. - # You can provide other formats here if you like! - default: "%d.%m.%Y." - short: "%e %b" - long: "%B %e, %Y" - - day_names: [nedelja, ponedeljak, utorak, sreda, četvrtak, petak, subota] - abbr_day_names: [ned, pon, uto, sre, čet, pet, sub] - - # Don't forget the nil at the beginning; there's no such thing as a 0th month - month_names: [~, januar, februar, mart, april, maj, jun, jul, avgust, septembar, oktobar, novembar, decembar] - abbr_month_names: [~, jan, feb, mar, apr, maj, jun, jul, avg, sep, okt, nov, dec] - # Used in date_select and datime_select. - order: - - :day - - :month - - :year - - time: - formats: - default: "%d.%m.%Y. u %H:%M" - time: "%H:%M" - short: "%d. %b u %H:%M" - long: "%d. %B %Y u %H:%M" - am: "am" - pm: "pm" - - datetime: - distance_in_words: - half_a_minute: "pola minuta" - less_than_x_seconds: - one: "manje od jedne sekunde" - other: "manje od %{count} sek." - x_seconds: - one: "jedna sekunda" - other: "%{count} sek." - less_than_x_minutes: - one: "manje od minuta" - other: "manje od %{count} min." - x_minutes: - one: "jedan minut" - other: "%{count} min." - about_x_hours: - one: "približno jedan sat" - other: "približno %{count} sati" - x_hours: - one: "1 sat" - other: "%{count} sati" - x_days: - one: "jedan dan" - other: "%{count} dana" - about_x_months: - one: "približno jedan mesec" - other: "približno %{count} meseci" - x_months: - one: "jedan mesec" - other: "%{count} meseci" - about_x_years: - one: "približno godinu dana" - other: "približno %{count} god." - over_x_years: - one: "preko godinu dana" - other: "preko %{count} god." - almost_x_years: - one: "skoro godinu dana" - other: "skoro %{count} god." - - number: - format: - separator: "," - delimiter: "" - precision: 3 - human: - format: - delimiter: "" - precision: 3 - storage_units: - format: "%n %u" - units: - byte: - one: "Byte" - other: "Bytes" - kb: "KB" - mb: "MB" - gb: "GB" - tb: "TB" - - -# Used in array.to_sentence. - support: - array: - sentence_connector: "i" - skip_last_comma: false - - activerecord: - errors: - template: - header: - one: "1 error prohibited this %{model} from being saved" - other: "%{count} errors prohibited this %{model} from being saved" - messages: - inclusion: "nije uključen u spisak" - exclusion: "je rezervisan" - invalid: "je neispravan" - confirmation: "potvrda ne odgovara" - accepted: "mora biti prihvaćen" - empty: "ne može biti prazno" - blank: "ne može biti prazno" - too_long: "je predugačka (maksimum znakova je %{count})" - too_short: "je prekratka (minimum znakova je %{count})" - wrong_length: "je pogrešne dužine (broj znakova mora biti %{count})" - taken: "je već u upotrebi" - not_a_number: "nije broj" - not_a_date: "nije ispravan datum" - greater_than: "mora biti veći od %{count}" - greater_than_or_equal_to: "mora biti veći ili jednak %{count}" - equal_to: "mora biti jednak %{count}" - less_than: "mora biti manji od %{count}" - less_than_or_equal_to: "mora biti manji ili jednak %{count}" - odd: "mora biti paran" - even: "mora biti neparan" - greater_than_start_date: "mora biti veći od početnog datuma" - not_same_project: "ne pripada istom projektu" - circular_dependency: "Ova veza će stvoriti kružnu referencu" - cant_link_an_issue_with_a_descendant: "Problem ne može biti povezan sa jednim od svojih podzadataka" - earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" - not_a_regexp: "is not a valid regular expression" - open_issue_with_closed_parent: "An open issue cannot be attached to a closed parent task" - must_contain_uppercase: "must contain uppercase letters (A-Z)" - must_contain_lowercase: "must contain lowercase letters (a-z)" - must_contain_digits: "must contain digits (0-9)" - must_contain_special_chars: "must contain special characters (!, $, %, ...)" - - actionview_instancetag_blank_option: Molim odaberite - - general_text_No: 'Ne' - general_text_Yes: 'Da' - general_text_no: 'ne' - general_text_yes: 'da' - general_lang_name: 'Serbian (Srpski)' - general_csv_separator: ',' - general_csv_decimal_separator: '.' - general_csv_encoding: UTF-8 - general_pdf_fontname: freesans - general_pdf_monospaced_fontname: freemono - general_first_day_of_week: '1' - - notice_account_updated: Nalog je uspešno ažuriran. - notice_account_invalid_credentials: Neispravno korisničko ime ili lozinka. - notice_account_password_updated: Lozinka je uspešno ažurirana. - notice_account_wrong_password: Pogrešna lozinka - notice_account_register_done: Korisnički nalog je uspešno kreiran. Kliknite na link koji ste dobili u e-poruci za aktivaciju. - notice_account_unknown_email: Nepoznat korisnik. - notice_can_t_change_password: Ovaj korisnički nalog za potvrdu identiteta koristi spoljni izvor. Nemoguće je promeniti lozinku. - notice_account_lost_email_sent: Poslata vam je e-poruka sa uputstvom za izbor nove lozinke - notice_account_activated: Vaš korisnički nalog je aktiviran. Sada se možete prijaviti. - notice_successful_create: Uspešno kreiranje. - notice_successful_update: Uspešno ažuriranje. - notice_successful_delete: Uspešno brisanje. - notice_successful_connection: Uspešno povezivanje. - notice_file_not_found: Strana kojoj želite pristupiti ne postoji ili je uklonjena. - notice_locking_conflict: Podatak je ažuriran od strane drugog korisnika. - notice_not_authorized: Niste ovlašćeni za pristup ovoj strani. - notice_email_sent: "E-poruka je poslata na %{value}" - notice_email_error: "Dogodila se greška prilikom slanja e-poruke (%{value})" - notice_feeds_access_key_reseted: Vaš Atom pristupni ključ je poništen. - notice_api_access_key_reseted: Vaš API pristupni ključ je poništen. - notice_failed_to_save_issues: "Neuspešno snimanje %{count} problema od %{total} odabranih: %{ids}." - notice_failed_to_save_members: "Neuspešno snimanje člana(ova): %{errors}." - notice_no_issue_selected: "Ni jedan problem nije odabran! Molimo, odaberite problem koji želite da menjate." - notice_account_pending: "Vaš nalog je kreiran i čeka na odobrenje administratora." - notice_default_data_loaded: Podrazumevano konfigurisanje je uspešno učitano. - notice_unable_delete_version: Verziju je nemoguće izbrisati. - notice_unable_delete_time_entry: Stavku evidencije vremena je nemoguće izbrisati. - notice_issue_done_ratios_updated: Odnos rešenih problema je ažuriran. - - error_can_t_load_default_data: "Podrazumevano konfigurisanje je nemoguće učitati: %{value}" - error_scm_not_found: "Stavka ili ispravka nisu pronađene u spremištu." - error_scm_command_failed: "Greška se javila prilikom pokušaja pristupa spremištu: %{value}" - error_scm_annotate: "Stavka ne postoji ili ne može biti označena." - error_issue_not_found_in_project: 'Problem nije pronađen ili ne pripada ovom projektu.' - error_no_tracker_in_project: 'Ni jedno praćenje nije povezano sa ovim projektom. Molimo proverite podešavanja projekta.' - error_no_default_issue_status: 'Podrazumevani status problema nije definisan. Molimo proverite vaše konfigurisanje (idite na "Administracija -> Statusi problema").' - error_can_not_delete_custom_field: Nemoguće je izbrisati prilagođeno polje - error_can_not_delete_tracker: "Ovo praćenje sadrži probleme i ne može biti obrisano." - error_can_not_remove_role: "Ova uloga je u upotrebi i ne može biti obrisana." - error_can_not_reopen_issue_on_closed_version: 'Problem dodeljen zatvorenoj verziji ne može biti ponovo otvoren' - error_can_not_archive_project: Ovaj projekat se ne može arhivirati - error_issue_done_ratios_not_updated: "Odnos rešenih problema nije ažuriran." - error_workflow_copy_source: 'Molimo odaberite izvorno praćenje ili ulogu' - error_workflow_copy_target: 'Molimo odaberite odredišno praćenje i ulogu' - error_unable_delete_issue_status: 'Status problema je nemoguće obrisati (%{value})' - error_unable_to_connect: "Povezivanje sa (%{value}) je nemoguće" - warning_attachments_not_saved: "%{count} datoteka ne može biti snimljena." - - mail_subject_lost_password: "Vaša %{value} lozinka" - mail_body_lost_password: 'Za promenu vaše lozinke, kliknite na sledeći link:' - mail_subject_register: "Aktivacija vašeg %{value} naloga" - mail_body_register: 'Za aktivaciju vašeg naloga, kliknite na sledeći link:' - mail_body_account_information_external: "Vaš nalog %{value} možete koristiti za prijavu." - mail_body_account_information: Informacije o vašem nalogu - mail_subject_account_activation_request: "Zahtev za aktivaciju naloga %{value}" - mail_body_account_activation_request: "Novi korisnik (%{value}) je registrovan. Nalog čeka na vaše odobrenje:" - mail_subject_reminder: "%{count} problema dospeva narednih %{days} dana" - mail_body_reminder: "%{count} problema dodeljenih vama dospeva u narednih %{days} dana:" - mail_subject_wiki_content_added: "Wiki stranica '%{id}' je dodata" - mail_body_wiki_content_added: "%{author} je dodao wiki stranicu '%{id}'." - mail_subject_wiki_content_updated: "Wiki stranica '%{id}' je ažurirana" - mail_body_wiki_content_updated: "%{author} je ažurirao wiki stranicu '%{id}'." - - - field_name: Naziv - field_description: Opis - field_summary: Rezime - field_is_required: Obavezno - field_firstname: Ime - field_lastname: Prezime - field_mail: E-adresa - field_filename: Datoteka - field_filesize: Veličina - field_downloads: Preuzimanja - field_author: Autor - field_created_on: Kreirano - field_updated_on: Ažurirano - field_field_format: Format - field_is_for_all: Za sve projekte - field_possible_values: Moguće vrednosti - field_regexp: Regularan izraz - field_min_length: Minimalna dužina - field_max_length: Maksimalna dužina - field_value: Vrednost - field_category: Kategorija - field_title: Naslov - field_project: Projekat - field_issue: Problem - field_status: Status - field_notes: Beleške - field_is_closed: Zatvoren problem - field_is_default: Podrazumevana vrednost - field_tracker: Praćenje - field_subject: Predmet - field_due_date: Krajnji rok - field_assigned_to: Dodeljeno - field_priority: Prioritet - field_fixed_version: Odredišna verzija - field_user: Korisnik - field_principal: Glavni - field_role: Uloga - field_homepage: Početna stranica - field_is_public: Javno objavljivanje - field_parent: Potprojekat od - field_is_in_roadmap: Problemi prikazani u planu rada - field_login: Korisničko ime - field_mail_notification: Obaveštenja putem e-pošte - field_admin: Administrator - field_last_login_on: Poslednje povezivanje - field_language: Jezik - field_effective_date: Datum - field_password: Lozinka - field_new_password: Nova lozinka - field_password_confirmation: Potvrda lozinke - field_version: Verzija - field_type: Tip - field_host: Glavni računar - field_port: Port - field_account: Korisnički nalog - field_base_dn: Bazni DN - field_attr_login: Atribut prijavljivanja - field_attr_firstname: Atribut imena - field_attr_lastname: Atribut prezimena - field_attr_mail: Atribut e-adrese - field_onthefly: Kreiranje korisnika u toku rada - field_start_date: Početak - field_done_ratio: "% urađeno" - field_auth_source: Režim potvrde identiteta - field_hide_mail: Sakrij moju e-adresu - field_comments: Komentar - field_url: URL - field_start_page: Početna stranica - field_subproject: Potprojekat - field_hours: sati - field_activity: Aktivnost - field_spent_on: Datum - field_identifier: Identifikator - field_is_filter: Upotrebi kao filter - field_issue_to: Srodni problemi - field_delay: Kašnjenje - field_assignable: Problem može biti dodeljen ovoj ulozi - field_redirect_existing_links: Preusmeri postojeće veze - field_estimated_hours: Procenjeno vreme - field_column_names: Kolone - field_time_zone: Vremenska zona - field_searchable: Može da se pretražuje - field_default_value: Podrazumevana vrednost - field_comments_sorting: Prikaži komentare - field_parent_title: Matična stranica - field_editable: Izmenljivo - field_watcher: Posmatrač - field_identity_url: OpenID URL - field_content: Sadržaj - field_group_by: Grupisanje rezultata po - field_sharing: Deljenje - field_parent_issue: Matični zadatak - - setting_app_title: Naslov aplikacije - setting_welcome_text: Tekst dobrodošlice - setting_default_language: Podrazumevani jezik - setting_login_required: Obavezna potvrda identiteta - setting_self_registration: Samoregistracija - setting_attachment_max_size: Maks. veličina priložene datoteke - setting_issues_export_limit: Ograničenje izvoza „problema“ - setting_mail_from: E-adresa pošiljaoca - setting_bcc_recipients: Primaoci „Bcc“ kopije - setting_plain_text_mail: Poruka sa čistim tekstom (bez HTML-a) - setting_host_name: Putanja i naziv glavnog računara - setting_text_formatting: Oblikovanje teksta - setting_wiki_compression: Kompresija Wiki istorije - setting_feeds_limit: Ograničenje sadržaja izvora vesti - setting_default_projects_public: Podrazumeva se javno prikazivanje novih projekata - setting_autofetch_changesets: Izvršavanje automatskog preuzimanja - setting_sys_api_enabled: Omogućavanje WS za upravljanje spremištem - setting_commit_ref_keywords: Referenciranje ključnih reči - setting_commit_fix_keywords: Popravljanje ključnih reči - setting_autologin: Automatska prijava - setting_date_format: Format datuma - setting_time_format: Format vremena - setting_cross_project_issue_relations: Dozvoli povezivanje problema iz unakrsnih projekata - setting_issue_list_default_columns: Podrazumevane kolone prikazane na spisku problema - setting_emails_footer: Podnožje stranice e-poruke - setting_protocol: Protokol - setting_per_page_options: Opcije prikaza objekata po stranici - setting_user_format: Format prikaza korisnika - setting_activity_days_default: Broj dana prikazanih na projektnoj aktivnosti - setting_display_subprojects_issues: Prikazuj probleme iz potprojekata na glavnom projektu, ukoliko nije drugačije navedeno - setting_enabled_scm: Omogućavanje SCM - setting_mail_handler_body_delimiters: "Skraćivanje e-poruke nakon jedne od ovih linija" - setting_mail_handler_api_enabled: Omogućavanje WS dolazne e-poruke - setting_mail_handler_api_key: API ključ - setting_sequential_project_identifiers: Generisanje sekvencijalnog imena projekta - setting_gravatar_enabled: Koristi Gravatar korisničke ikone - setting_gravatar_default: Podrazumevana Gravatar slika - setting_diff_max_lines_displayed: Maks. broj prikazanih različitih linija - setting_file_max_size_displayed: Maks. veličina tekst. datoteka prikazanih umetnuto - setting_repository_log_display_limit: Maks. broj revizija prikazanih u datoteci za evidenciju - setting_openid: Dozvoli OpenID prijavu i registraciju - setting_password_min_length: Minimalna dužina lozinke - setting_new_project_user_role_id: Kreatoru projekta (koji nije administrator) dodeljuje je uloga - setting_default_projects_modules: Podrazumevano omogućeni moduli za nove projekte - setting_issue_done_ratio: Izračunaj odnos rešenih problema - setting_issue_done_ratio_issue_field: koristeći polje problema - setting_issue_done_ratio_issue_status: koristeći status problema - setting_start_of_week: Prvi dan u sedmici - setting_rest_api_enabled: Omogući REST web usluge - setting_cache_formatted_text: Keširanje obrađenog teksta - - permission_add_project: Kreiranje projekta - permission_add_subprojects: Kreiranje potpojekta - permission_edit_project: Izmena projekata - permission_select_project_modules: Odabiranje modula projekta - permission_manage_members: Upravljanje članovima - permission_manage_project_activities: Upravljanje projektnim aktivnostima - permission_manage_versions: Upravljanje verzijama - permission_manage_categories: Upravljanje kategorijama problema - permission_view_issues: Pregled problema - permission_add_issues: Dodavanje problema - permission_edit_issues: Izmena problema - permission_manage_issue_relations: Upravljanje vezama između problema - permission_add_issue_notes: Dodavanje beleški - permission_edit_issue_notes: Izmena beleški - permission_edit_own_issue_notes: Izmena sopstvenih beleški - permission_delete_issues: Brisanje problema - permission_manage_public_queries: Upravljanje javnim upitima - permission_save_queries: Snimanje upita - permission_view_gantt: Pregledanje Gantovog dijagrama - permission_view_calendar: Pregledanje kalendara - permission_view_issue_watchers: Pregledanje spiska posmatrača - permission_add_issue_watchers: Dodavanje posmatrača - permission_delete_issue_watchers: Brisanje posmatrača - permission_log_time: Beleženje utrošenog vremena - permission_view_time_entries: Pregledanje utrošenog vremena - permission_edit_time_entries: Izmena utrošenog vremena - permission_edit_own_time_entries: Izmena sopstvenog utrošenog vremena - permission_manage_news: Upravljanje vestima - permission_comment_news: Komentarisanje vesti - permission_view_documents: Pregledanje dokumenata - permission_manage_files: Upravljanje datotekama - permission_view_files: Pregledanje datoteka - permission_manage_wiki: Upravljanje wiki stranicama - permission_rename_wiki_pages: Promena imena wiki stranicama - permission_delete_wiki_pages: Brisanje wiki stranica - permission_view_wiki_pages: Pregledanje wiki stranica - permission_view_wiki_edits: Pregledanje wiki istorije - permission_edit_wiki_pages: Izmena wiki stranica - permission_delete_wiki_pages_attachments: Brisanje priloženih datoteka - permission_protect_wiki_pages: Zaštita wiki stranica - permission_manage_repository: Upravljanje spremištem - permission_browse_repository: Pregledanje spremišta - permission_view_changesets: Pregledanje skupa promena - permission_commit_access: Potvrda pristupa - permission_manage_boards: Upravljanje forumima - permission_view_messages: Pregledanje poruka - permission_add_messages: Slanje poruka - permission_edit_messages: Izmena poruka - permission_edit_own_messages: Izmena sopstvenih poruka - permission_delete_messages: Brisanje poruka - permission_delete_own_messages: Brisanje sopstvenih poruka - permission_export_wiki_pages: Izvoz wiki stranica - permission_manage_subtasks: Upravljanje podzadacima - - project_module_issue_tracking: Praćenje problema - project_module_time_tracking: Praćenje vremena - project_module_news: Vesti - project_module_documents: Dokumenti - project_module_files: Datoteke - project_module_wiki: Wiki - project_module_repository: Spremište - project_module_boards: Forumi - - label_user: Korisnik - label_user_plural: Korisnici - label_user_new: Novi korisnik - label_user_anonymous: Anoniman - label_project: Projekat - label_project_new: Novi projekat - label_project_plural: Projekti - label_x_projects: - zero: nema projekata - one: jedan projekat - other: "%{count} projekata" - label_project_all: Svi projekti - label_project_latest: Poslednji projekti - label_issue: Problem - label_issue_new: Novi problem - label_issue_plural: Problemi - label_issue_view_all: Prikaz svih problema - label_issues_by: "Problemi (%{value})" - label_issue_added: Problem je dodat - label_issue_updated: Problem je ažuriran - label_document: Dokument - label_document_new: Novi dokument - label_document_plural: Dokumenti - label_document_added: Dokument je dodat - label_role: Uloga - label_role_plural: Uloge - label_role_new: Nova uloga - label_role_and_permissions: Uloge i dozvole - label_member: Član - label_member_new: Novi član - label_member_plural: Članovi - label_tracker: Praćenje - label_tracker_plural: Praćenja - label_tracker_new: Novo praćenje - label_workflow: Tok posla - label_issue_status: Status problema - label_issue_status_plural: Statusi problema - label_issue_status_new: Novi status - label_issue_category: Kategorija problema - label_issue_category_plural: Kategorije problema - label_issue_category_new: Nova kategorija - label_custom_field: Prilagođeno polje - label_custom_field_plural: Prilagođena polja - label_custom_field_new: Novo prilagođeno polje - label_enumerations: Nabrojiva lista - label_enumeration_new: Nova vrednost - label_information: Informacija - label_information_plural: Informacije - label_register: Registracija - label_login_with_open_id_option: ili prijava sa OpenID - label_password_lost: Izgubljena lozinka - label_home: Početak - label_my_page: Moja stranica - label_my_account: Moj nalog - label_my_projects: Moji projekti - label_administration: Administracija - label_login: Prijava - label_logout: Odjava - label_help: Pomoć - label_reported_issues: Prijavljeni problemi - label_assigned_to_me_issues: Problemi dodeljeni meni - label_last_login: Poslednje povezivanje - label_registered_on: Registrovan - label_activity: Aktivnost - label_overall_activity: Celokupna aktivnost - label_user_activity: "Aktivnost korisnika %{value}" - label_new: Novo - label_logged_as: Prijavljeni ste kao - label_environment: Okruženje - label_authentication: Potvrda identiteta - label_auth_source: Režim potvrde identiteta - label_auth_source_new: Novi režim potvrde identiteta - label_auth_source_plural: Režimi potvrde identiteta - label_subproject_plural: Potprojekti - label_subproject_new: Novi potprojekat - label_and_its_subprojects: "%{value} i njegovi potprojekti" - label_min_max_length: Min. - Maks. dužina - label_list: Spisak - label_date: Datum - label_integer: Ceo broj - label_float: Sa pokretnim zarezom - label_boolean: Logički operator - label_string: Tekst - label_text: Dugi tekst - label_attribute: Osobina - label_attribute_plural: Osobine - label_no_data: Nema podataka za prikazivanje - label_change_status: Promena statusa - label_history: Istorija - label_attachment: Datoteka - label_attachment_new: Nova datoteka - label_attachment_delete: Brisanje datoteke - label_attachment_plural: Datoteke - label_file_added: Datoteka je dodata - label_report: Izveštaj - label_report_plural: Izveštaji - label_news: Vesti - label_news_new: Dodavanje vesti - label_news_plural: Vesti - label_news_latest: Poslednje vesti - label_news_view_all: Prikaz svih vesti - label_news_added: Vesti su dodate - label_settings: Podešavanja - label_overview: Pregled - label_version: Verzija - label_version_new: Nova verzija - label_version_plural: Verzije - label_close_versions: Zatvori završene verzije - label_confirmation: Potvrda - label_export_to: 'Takođe dostupno i u varijanti:' - label_read: Čitanje... - label_public_projects: Javni projekti - label_open_issues: otvoren - label_open_issues_plural: otvorenih - label_closed_issues: zatvoren - label_closed_issues_plural: zatvorenih - label_x_open_issues_abbr: - zero: 0 otvorenih - one: 1 otvoren - other: "%{count} otvorenih" - label_x_closed_issues_abbr: - zero: 0 zatvorenih - one: 1 zatvoren - other: "%{count} zatvorenih" - label_total: Ukupno - label_permissions: Dozvole - label_current_status: Trenutni status - label_new_statuses_allowed: Novi statusi dozvoljeni - label_all: svi - label_none: nijedan - label_nobody: nikome - label_next: Sledeće - label_previous: Prethodno - label_used_by: Koristio - label_details: Detalji - label_add_note: Dodaj belešku - label_calendar: Kalendar - label_months_from: meseci od - label_gantt: Gantov dijagram - label_internal: Unutrašnji - label_last_changes: "poslednjih %{count} promena" - label_change_view_all: Prikaži sve promene - label_comment: Komentar - label_comment_plural: Komentari - label_x_comments: - zero: bez komentara - one: jedan komentar - other: "%{count} komentara" - label_comment_add: Dodaj komentar - label_comment_added: Komentar dodat - label_comment_delete: Obriši komentare - label_query: Prilagođen upit - label_query_plural: Prilagođeni upiti - label_query_new: Novi upit - label_filter_add: Dodavanje filtera - label_filter_plural: Filteri - label_equals: je - label_not_equals: nije - label_in_less_than: manje od - label_in_more_than: više od - label_greater_or_equal: '>=' - label_less_or_equal: '<=' - label_in: u - label_today: danas - label_yesterday: juče - label_this_week: ove sedmice - label_last_week: poslednje sedmice - label_last_n_days: "poslednjih %{count} dana" - label_this_month: ovog meseca - label_last_month: poslednjeg meseca - label_this_year: ove godine - label_date_range: Vremenski period - label_less_than_ago: pre manje od nekoliko dana - label_more_than_ago: pre više od nekoliko dana - label_ago: pre nekoliko dana - label_contains: sadrži - label_not_contains: ne sadrži - label_day_plural: dana - label_repository: Spremište - label_repository_plural: Spremišta - label_browse: Pregledanje - label_branch: Grana - label_tag: Oznaka - label_revision: Revizija - label_revision_plural: Revizije - label_revision_id: "Revizija %{value}" - label_associated_revisions: Pridružene revizije - label_added: dodato - label_modified: promenjeno - label_copied: kopirano - label_renamed: preimenovano - label_deleted: izbrisano - label_latest_revision: Poslednja revizija - label_latest_revision_plural: Poslednje revizije - label_view_revisions: Pregled revizija - label_view_all_revisions: Pregled svih revizija - label_max_size: Maksimalna veličina - label_sort_highest: Premeštanje na vrh - label_sort_higher: Premeštanje na gore - label_sort_lower: Premeštanje na dole - label_sort_lowest: Premeštanje na dno - label_roadmap: Plan rada - label_roadmap_due_in: "Dospeva %{value}" - label_roadmap_overdue: "%{value} najkasnije" - label_roadmap_no_issues: Nema problema za ovu verziju - label_search: Pretraga - label_result_plural: Rezultati - label_all_words: Sve reči - label_wiki: Wiki - label_wiki_edit: Wiki izmena - label_wiki_edit_plural: Wiki izmene - label_wiki_page: Wiki stranica - label_wiki_page_plural: Wiki stranice - label_index_by_title: Indeksiranje po naslovu - label_index_by_date: Indeksiranje po datumu - label_current_version: Trenutna verzija - label_preview: Pregled - label_feed_plural: Izvori vesti - label_changes_details: Detalji svih promena - label_issue_tracking: Praćenje problema - label_spent_time: Utrošeno vreme - label_overall_spent_time: Celokupno utrošeno vreme - label_f_hour: "%{value} sat" - label_f_hour_plural: "%{value} sati" - label_time_tracking: Praćenje vremena - label_change_plural: Promene - label_statistics: Statistika - label_commits_per_month: Izvršenja mesečno - label_commits_per_author: Izvršenja po autoru - label_view_diff: Pogledaj razlike - label_diff_inline: unutra - label_diff_side_by_side: uporedo - label_options: Opcije - label_copy_workflow_from: Kopiranje toka posla od - label_permissions_report: Izveštaj o dozvolama - label_watched_issues: Posmatrani problemi - label_related_issues: Srodni problemi - label_applied_status: Primenjeni statusi - label_loading: Učitavanje... - label_relation_new: Nova relacija - label_relation_delete: Brisanje relacije - label_relates_to: srodnih sa - label_duplicates: dupliranih - label_duplicated_by: dupliranih od - label_blocks: odbijenih - label_blocked_by: odbijenih od - label_precedes: prethodi - label_follows: praćenih - label_stay_logged_in: Ostanite prijavljeni - label_disabled: onemogućeno - label_show_completed_versions: Prikazivanje završene verzije - label_me: meni - label_board: Forum - label_board_new: Novi forum - label_board_plural: Forumi - label_board_locked: Zaključana - label_board_sticky: Lepljiva - label_topic_plural: Teme - label_message_plural: Poruke - label_message_last: Poslednja poruka - label_message_new: Nova poruka - label_message_posted: Poruka je dodata - label_reply_plural: Odgovori - label_send_information: Pošalji korisniku detalje naloga - label_year: Godina - label_month: Mesec - label_week: Sedmica - label_date_from: Šalje - label_date_to: Prima - label_language_based: Bazirano na jeziku korisnika - label_sort_by: "Sortirano po %{value}" - label_send_test_email: Slanje probne e-poruke - label_feeds_access_key: Atom pristupni ključ - label_missing_feeds_access_key: Atom pristupni ključ nedostaje - label_feeds_access_key_created_on: "Atom pristupni ključ je napravljen pre %{value}" - label_module_plural: Moduli - label_added_time_by: "Dodao %{author} pre %{age}" - label_updated_time_by: "Ažurirao %{author} pre %{age}" - label_updated_time: "Ažurirano pre %{value}" - label_jump_to_a_project: Skok na projekat... - label_file_plural: Datoteke - label_changeset_plural: Skupovi promena - label_default_columns: Podrazumevane kolone - label_no_change_option: (Bez promena) - label_bulk_edit_selected_issues: Grupna izmena odabranih problema - label_theme: Tema - label_default: Podrazumevano - label_search_titles_only: Pretražuj samo naslove - label_user_mail_option_all: "Za bilo koji događaj na svim mojim projektima" - label_user_mail_option_selected: "Za bilo koji događaj na samo odabranim projektima..." - label_user_mail_no_self_notified: "Ne želim biti obaveštavan za promene koje sam pravim" - label_registration_activation_by_email: aktivacija naloga putem e-poruke - label_registration_manual_activation: ručna aktivacija naloga - label_registration_automatic_activation: automatska aktivacija naloga - label_display_per_page: "Broj stavki po stranici: %{value}" - label_age: Starost - label_change_properties: Promeni svojstva - label_general: Opšti - label_scm: SCM - label_plugins: Dodatne komponente - label_ldap_authentication: LDAP potvrda identiteta - label_downloads_abbr: D/L - label_optional_description: Opciono opis - label_add_another_file: Dodaj još jednu datoteku - label_preferences: Podešavanja - label_chronological_order: po hronološkom redosledu - label_reverse_chronological_order: po obrnutom hronološkom redosledu - label_incoming_emails: Dolazne e-poruke - label_generate_key: Generisanje ključa - label_issue_watchers: Posmatrači - label_example: Primer - label_display: Prikaz - label_sort: Sortiranje - label_ascending: Rastući niz - label_descending: Opadajući niz - label_date_from_to: Od %{start} do %{end} - label_wiki_content_added: Wiki stranica je dodata - label_wiki_content_updated: Wiki stranica je ažurirana - label_group: Grupa - label_group_plural: Grupe - label_group_new: Nova grupa - label_time_entry_plural: Utrošeno vreme - label_version_sharing_none: Nije deljeno - label_version_sharing_descendants: Sa potprojektima - label_version_sharing_hierarchy: Sa hijerarhijom projekta - label_version_sharing_tree: Sa stablom projekta - label_version_sharing_system: Sa svim projektima - label_update_issue_done_ratios: Ažuriraj odnos rešenih problema - label_copy_source: Izvor - label_copy_target: Odredište - label_copy_same_as_target: Isto kao odredište - label_display_used_statuses_only: Prikazuj statuse korišćene samo od strane ovog praćenja - label_api_access_key: API pristupni ključ - label_missing_api_access_key: Nedostaje API pristupni ključ - label_api_access_key_created_on: "API pristupni ključ je kreiran pre %{value}" - label_profile: Profil - label_subtask_plural: Podzadatak - label_project_copy_notifications: Pošalji e-poruku sa obaveštenjem prilikom kopiranja projekta - - button_login: Prijava - button_submit: Pošalji - button_save: Snimi - button_check_all: Uključi sve - button_uncheck_all: Isključi sve - button_delete: Izbriši - button_create: Kreiraj - button_create_and_continue: Kreiraj i nastavi - button_test: Test - button_edit: Izmeni - button_add: Dodaj - button_change: Promeni - button_apply: Primeni - button_clear: Obriši - button_lock: Zaključaj - button_unlock: Otključaj - button_download: Preuzmi - button_list: Spisak - button_view: Prikaži - button_move: Pomeri - button_move_and_follow: Pomeri i prati - button_back: Nazad - button_cancel: Poništi - button_activate: Aktiviraj - button_sort: Sortiraj - button_log_time: Evidentiraj vreme - button_rollback: Povratak na ovu verziju - button_watch: Prati - button_unwatch: Ne prati više - button_reply: Odgovori - button_archive: Arhiviraj - button_unarchive: Vrati iz arhive - button_reset: Poništi - button_rename: Preimenuj - button_change_password: Promeni lozinku - button_copy: Kopiraj - button_copy_and_follow: Kopiraj i prati - button_annotate: Pribeleži - button_update: Ažuriraj - button_configure: Podesi - button_quote: Pod navodnicima - button_show: Prikaži - - status_active: aktivni - status_registered: registrovani - status_locked: zaključani - - version_status_open: otvoren - version_status_locked: zaključan - version_status_closed: zatvoren - - field_active: Aktivan - - text_select_mail_notifications: Odaberi akcije za koje će obaveštenje biti poslato putem e-pošte. - text_regexp_info: npr. ^[A-Z0-9]+$ - text_min_max_length_info: 0 znači bez ograničenja - text_project_destroy_confirmation: Jeste li sigurni da želite da izbrišete ovaj projekat i sve pripadajuće podatke? - text_subprojects_destroy_warning: "Potprojekti: %{value} će takođe biti izbrisan." - text_workflow_edit: Odaberite ulogu i praćenje za izmenu toka posla - text_are_you_sure: Jeste li sigurni? - text_journal_changed: "%{label} promenjen od %{old} u %{new}" - text_journal_set_to: "%{label} postavljen u %{value}" - text_journal_deleted: "%{label} izbrisano (%{old})" - text_journal_added: "%{label} %{value} dodato" - text_tip_issue_begin_day: zadatak počinje ovog dana - text_tip_issue_end_day: zadatak se završava ovog dana - text_tip_issue_begin_end_day: zadatak počinje i završava ovog dana - text_caracters_maximum: "Najviše %{count} znak(ova)." - text_caracters_minimum: "Broj znakova mora biti najmanje %{count}." - text_length_between: "Broj znakova mora biti između %{min} i %{max}." - text_tracker_no_workflow: Ovo praćenje nema definisan tok posla - text_unallowed_characters: Nedozvoljeni znakovi - text_comma_separated: Dozvoljene su višestruke vrednosti (odvojene zarezom). - text_line_separated: Dozvoljene su višestruke vrednosti (jedan red za svaku vrednost). - text_issues_ref_in_commit_messages: Referenciranje i popravljanje problema u izvršnim porukama - text_issue_added: "%{author} je prijavio problem %{id}." - text_issue_updated: "%{author} je ažurirao problem %{id}." - text_wiki_destroy_confirmation: Jeste li sigurni da želite da obrišete wiki i sav sadržaj? - text_issue_category_destroy_question: "Nekoliko problema (%{count}) je dodeljeno ovoj kategoriji. Šta želite da uradite?" - text_issue_category_destroy_assignments: Ukloni dodeljene kategorije - text_issue_category_reassign_to: Dodeli ponovo probleme ovoj kategoriji - text_user_mail_option: "Za neizabrane projekte, dobićete samo obaveštenje o stvarima koje pratite ili ste uključeni (npr. problemi čiji ste vi autor ili zastupnik)." - text_no_configuration_data: "Uloge, praćenja, statusi problema i toka posla još uvek nisu podešeni.\nPreporučljivo je da učitate podrazumevano konfigurisanje. Izmena je moguća nakon prvog učitavanja." - text_load_default_configuration: Učitaj podrazumevano konfigurisanje - text_status_changed_by_changeset: "Primenjeno u skupu sa promenama %{value}." - text_issues_destroy_confirmation: 'Jeste li sigurni da želite da izbrišete odabrane probleme?' - text_select_project_modules: 'Odaberite module koje želite omogućiti za ovaj projekat:' - text_default_administrator_account_changed: Podrazumevani administratorski nalog je promenjen - text_file_repository_writable: Fascikla priloženih datoteka je upisiva - text_plugin_assets_writable: Fascikla elemenata dodatnih komponenti je upisiva - text_minimagick_available: MiniMagick je dostupan (opciono) - text_destroy_time_entries_question: "%{hours} sati je prijavljeno za ovaj problem koji želite izbrisati. Šta želite da uradite?" - text_destroy_time_entries: Izbriši prijavljene sate - text_assign_time_entries_to_project: Dodeli prijavljene sate projektu - text_reassign_time_entries: 'Dodeli ponovo prijavljene sate ovom problemu:' - text_user_wrote: "%{value} je napisao:" - text_user_wrote_in: "%{value} je napisao (%{link}):" - text_enumeration_destroy_question: "%{count} objekat(a) je dodeljeno ovoj vrednosti." - text_enumeration_category_reassign_to: 'Dodeli ih ponovo ovoj vrednosti:' - text_email_delivery_not_configured: "Isporuka e-poruka nije konfigurisana i obaveštenja su onemogućena.\nPodesite vaš SMTP server u config/configuration.yml i pokrenite ponovo aplikaciju za njihovo omogućavanje." - text_repository_usernames_mapping: "Odaberite ili ažurirajte Redmine korisnike mapiranjem svakog korisničkog imena pronađenog u evidenciji spremišta.\nKorisnici sa istim Redmine imenom i imenom spremišta ili e-adresom su automatski mapirani." - text_diff_truncated: '... Ova razlika je isečena jer je dostignuta maksimalna veličina prikaza.' - text_custom_field_possible_values_info: 'Jedan red za svaku vrednost' - text_wiki_page_destroy_question: "Ova stranica ima %{descendants} podređenih stranica i podstranica. Šta želite da uradite?" - text_wiki_page_nullify_children: "Zadrži podređene stranice kao korene stranice" - text_wiki_page_destroy_children: "Izbriši podređene stranice i sve njihove podstranice" - text_wiki_page_reassign_children: "Dodeli ponovo podređene stranice ovoj matičnoj stranici" - text_own_membership_delete_confirmation: "Nakon uklanjanja pojedinih ili svih vaših dozvola nećete više moći da uređujete ovaj projekat.\nŽelite li da nastavite?" - text_zoom_in: Uvećaj - text_zoom_out: Umanji - - default_role_manager: Menadžer - default_role_developer: Programer - default_role_reporter: Izveštač - default_tracker_bug: Greška - default_tracker_feature: Funkcionalnost - default_tracker_support: Podrška - default_issue_status_new: Novo - default_issue_status_in_progress: U toku - default_issue_status_resolved: Rešeno - default_issue_status_feedback: Povratna informacija - default_issue_status_closed: Zatvoreno - default_issue_status_rejected: Odbijeno - default_doc_category_user: Korisnička dokumentacija - default_doc_category_tech: Tehnička dokumentacija - default_priority_low: Nizak - default_priority_normal: Normalan - default_priority_high: Visok - default_priority_urgent: Hitno - default_priority_immediate: Neposredno - default_activity_design: Dizajn - default_activity_development: Razvoj - - enumeration_issue_priorities: Prioriteti problema - enumeration_doc_categories: Kategorije dokumenta - enumeration_activities: Aktivnosti (praćenje vremena) - enumeration_system_activity: Sistemska aktivnost - - field_time_entries: Vreme evidencije - project_module_gantt: Gantov dijagram - project_module_calendar: Kalendar - button_edit_associated_wikipage: "Edit associated Wiki page: %{page_title}" - field_text: Text field - setting_default_notification_option: Podrazumevana opcija za notifikaciju - label_user_mail_option_only_my_events: Za dogadjaje koje pratim ili sam u njih uključen - label_user_mail_option_none: Bez obaveštenja - field_member_of_group: Assignee's group - field_assigned_to_role: Assignee's role - notice_not_authorized_archived_project: Projekat kome pokušavate da pristupite je arhiviran - label_principal_search: "Traži korisnike ili grupe:" - label_user_search: "Traži korisnike:" - field_visible: Vidljivo - setting_emails_header: Email zaglavlje - setting_commit_logtime_activity_id: Activity for logged time - text_time_logged_by_changeset: Applied in changeset %{value}. - setting_commit_logtime_enabled: Omogući praćenje vremena - notice_gantt_chart_truncated: The chart was truncated because it exceeds the maximum number of items that can be displayed (%{max}) - setting_gantt_items_limit: Maksimalan broj stavki na gant grafiku - field_warn_on_leaving_unsaved: Upozori me ako napuštam stranu sa tekstom koji nije snimljen - text_warn_on_leaving_unsaved: Strana sadrži tekst koji nije snimljen i biće izgubljen ako je napustite. - label_my_queries: My custom queries - text_journal_changed_no_detail: "%{label} ažuriran" - label_news_comment_added: Komentar dodat u novosti - button_expand_all: Proširi sve - button_collapse_all: Zatvori sve - label_additional_workflow_transitions_for_assignee: Additional transitions allowed when the user is the assignee - label_additional_workflow_transitions_for_author: Additional transitions allowed when the user is the author - label_bulk_edit_selected_time_entries: Bulk edit selected time entries - text_time_entries_destroy_confirmation: Da li ste sigurni da želite da obrišete selektovane stavke ? - label_role_anonymous: Anonimus - label_role_non_member: Nije član - label_issue_note_added: Nota dodana - label_issue_status_updated: Status ažuriran - label_issue_priority_updated: Prioritet ažuriran - label_issues_visibility_own: Problem kreiran od strane ili je dodeljen korisniku - field_issues_visibility: Vidljivost problema - label_issues_visibility_all: Svi problemi - permission_set_own_issues_private: Podesi sopstveni problem kao privatan ili javan - field_is_private: Privatno - permission_set_issues_private: Podesi problem kao privatan ili javan - label_issues_visibility_public: Svi javni problemi - text_issues_destroy_descendants_confirmation: Ova operacija će takođe obrisati %{count} podzadataka. - field_commit_logs_encoding: Kodiranje izvršnih poruka - field_scm_path_encoding: Path encoding - text_scm_path_encoding_note: "Default: UTF-8" - field_path_to_repository: Path to repository - field_root_directory: Root directory - field_cvs_module: Module - field_cvsroot: CVSROOT - text_mercurial_repository_note: Local repository (e.g. /hgrepo, c:\hgrepo) - text_scm_command: Command - text_scm_command_version: Version - label_git_report_last_commit: Report last commit for files and directories - notice_issue_successful_create: Issue %{id} created. - label_between: between - setting_issue_group_assignment: Allow issue assignment to groups - label_diff: diff - text_git_repository_note: Repository is bare and local (e.g. /gitrepo, c:\gitrepo) - description_query_sort_criteria_direction: Sort direction - description_project_scope: Search scope - description_filter: Filter - description_user_mail_notification: Mail notification settings - description_message_content: Message content - description_available_columns: Available Columns - description_issue_category_reassign: Choose issue category - description_search: Searchfield - description_notes: Notes - description_choose_project: Projects - description_query_sort_criteria_attribute: Sort attribute - description_wiki_subpages_reassign: Choose new parent page - description_selected_columns: Selected Columns - label_parent_revision: Parent - label_child_revision: Child - error_scm_annotate_big_text_file: The entry cannot be annotated, as it exceeds the maximum text file size. - setting_default_issue_start_date_to_creation_date: Use current date as start date for new issues - button_edit_section: Edit this section - setting_repositories_encodings: Attachments and repositories encodings - description_all_columns: All Columns - button_export: Export - label_export_options: "%{export_format} export options" - error_attachment_too_big: This file cannot be uploaded because it exceeds the maximum allowed file size (%{max_size}) - notice_failed_to_save_time_entries: "Failed to save %{count} time entrie(s) on %{total} selected: %{ids}." - label_x_issues: - zero: 0 problem - one: 1 problem - other: "%{count} problemi" - label_repository_new: New repository - field_repository_is_default: Main repository - label_copy_attachments: Copy attachments - label_item_position: "%{position}/%{count}" - label_completed_versions: Completed versions - text_project_identifier_info: Only lower case letters (a-z), numbers, dashes and underscores are allowed.
    Once saved, the identifier cannot be changed. - field_multiple: Multiple values - setting_commit_cross_project_ref: Allow issues of all the other projects to be referenced and fixed - text_issue_conflict_resolution_add_notes: Add my notes and discard my other changes - text_issue_conflict_resolution_overwrite: Apply my changes anyway (previous notes will be kept but some changes may be overwritten) - notice_issue_update_conflict: The issue has been updated by an other user while you were editing it. - text_issue_conflict_resolution_cancel: Discard all my changes and redisplay %{link} - permission_manage_related_issues: Manage related issues - field_auth_source_ldap_filter: LDAP filter - label_search_for_watchers: Search for watchers to add - notice_account_deleted: Your account has been permanently deleted. - setting_unsubscribe: Allow users to delete their own account - button_delete_my_account: Delete my account - text_account_destroy_confirmation: |- - Are you sure you want to proceed? - Your account will be permanently deleted, with no way to reactivate it. - error_session_expired: Your session has expired. Please login again. - text_session_expiration_settings: "Warning: changing these settings may expire the current sessions including yours." - setting_session_lifetime: Session maximum lifetime - setting_session_timeout: Session inactivity timeout - label_session_expiration: Session expiration - permission_close_project: Close / reopen the project - button_close: Close - button_reopen: Reopen - project_status_active: active - project_status_closed: closed - project_status_archived: archived - text_project_closed: This project is closed and read-only. - notice_user_successful_create: User %{id} created. - field_core_fields: Standard fields - field_timeout: Timeout (in seconds) - setting_thumbnails_enabled: Display attachment thumbnails - setting_thumbnails_size: Thumbnails size (in pixels) - label_status_transitions: Status transitions - label_fields_permissions: Fields permissions - label_readonly: Read-only - label_required: Required - text_repository_identifier_info: Only lower case letters (a-z), numbers, dashes and underscores are allowed.
    Once saved, the identifier cannot be changed. - field_board_parent: Parent forum - label_attribute_of_project: Project's %{name} - label_attribute_of_author: Author's %{name} - label_attribute_of_assigned_to: Assignee's %{name} - label_attribute_of_fixed_version: Target version's %{name} - label_copy_subtasks: Copy subtasks - label_copied_to: copied to - label_copied_from: copied from - label_any_issues_in_project: any issues in project - label_any_issues_not_in_project: any issues not in project - field_private_notes: Private notes - permission_view_private_notes: View private notes - permission_set_notes_private: Set notes as private - label_no_issues_in_project: no issues in project - label_any: svi - label_last_n_weeks: last %{count} weeks - setting_cross_project_subtasks: Allow cross-project subtasks - label_cross_project_descendants: Sa potprojektima - label_cross_project_tree: Sa stablom projekta - label_cross_project_hierarchy: Sa hijerarhijom projekta - label_cross_project_system: Sa svim projektima - button_hide: Hide - setting_non_working_week_days: Non-working days - label_in_the_next_days: in the next - label_in_the_past_days: in the past - label_attribute_of_user: User's %{name} - text_turning_multiple_off: If you disable multiple values, multiple values will be - removed in order to preserve only one value per item. - label_attribute_of_issue: Issue's %{name} - permission_add_documents: Add documents - permission_edit_documents: Edit documents - permission_delete_documents: Delete documents - label_gantt_progress_line: Progress line - setting_jsonp_enabled: Enable JSONP support - field_inherit_members: Inherit members - field_closed_on: Closed - field_generate_password: Generate password - setting_default_projects_tracker_ids: Default trackers for new projects - label_total_time: Ukupno - text_scm_config: You can configure your SCM commands in config/configuration.yml. Please restart the application after editing it. - text_scm_command_not_available: SCM command is not available. Please check settings on the administration panel. - notice_account_not_activated_yet: You haven't activated your account yet. If you want - to receive a new activation email, please click this link. - notice_account_locked: Your account is locked. - label_hidden: Hidden - label_visibility_private: to me only - label_visibility_roles: to these roles only - label_visibility_public: to any users - field_must_change_passwd: Must change password at next logon - notice_new_password_must_be_different: The new password must be different from the - current password - setting_mail_handler_excluded_filenames: Exclude attachments by name - text_convert_available: ImageMagick convert available (optional) - label_link: Link - label_only: only - label_drop_down_list: drop-down list - label_checkboxes: checkboxes - label_link_values_to: Link values to URL - setting_force_default_language_for_anonymous: Force default language for anonymous - users - setting_force_default_language_for_loggedin: Force default language for logged-in - users - label_custom_field_select_type: Select the type of object to which the custom field - is to be attached - label_issue_assigned_to_updated: Assignee updated - label_check_for_updates: Check for updates - label_latest_compatible_version: Latest compatible version - label_unknown_plugin: Unknown plugin - label_radio_buttons: radio buttons - label_group_anonymous: Anonymous users - label_group_non_member: Non member users - label_add_projects: Add projects - field_default_status: Default status - text_subversion_repository_note: 'Examples: file:///, http://, https://, svn://, svn+[tunnelscheme]://' - field_users_visibility: Users visibility - label_users_visibility_all: All active users - label_users_visibility_members_of_visible_projects: Members of visible projects - label_edit_attachments: Edit attached files - setting_link_copied_issue: Link issues on copy - label_link_copied_issue: Link copied issue - label_ask: Ask - label_search_attachments_yes: Search attachment filenames and descriptions - label_search_attachments_no: Do not search attachments - label_search_attachments_only: Search attachments only - label_search_open_issues_only: Open issues only - field_address: E-adresa - setting_max_additional_emails: Maximum number of additional email addresses - label_email_address_plural: Emails - label_email_address_add: Add email address - label_enable_notifications: Enable notifications - label_disable_notifications: Disable notifications - setting_search_results_per_page: Search results per page - label_blank_value: blank - permission_copy_issues: Copy issues - error_password_expired: Your password has expired or the administrator requires you - to change it. - field_time_entries_visibility: Time logs visibility - setting_password_max_age: Require password change after - label_parent_task_attributes: Parent tasks attributes - label_parent_task_attributes_derived: Calculated from subtasks - label_parent_task_attributes_independent: Independent of subtasks - label_time_entries_visibility_all: All time entries - label_time_entries_visibility_own: Time entries created by the user - label_member_management: Member management - label_member_management_all_roles: All roles - label_member_management_selected_roles_only: Only these roles - label_password_required: Confirm your password to continue - label_total_spent_time: Celokupno utrošeno vreme - notice_import_finished: "%{count} items have been imported" - notice_import_finished_with_errors: "%{count} out of %{total} items could not be imported" - error_invalid_file_encoding: The file is not a valid %{encoding} encoded file - error_invalid_csv_file_or_settings: The file is not a CSV file or does not match the - settings below - error_can_not_read_import_file: An error occurred while reading the file to import - permission_import_issues: Import issues - label_import_issues: Import issues - label_select_file_to_import: Select the file to import - label_fields_separator: Field separator - label_fields_wrapper: Field wrapper - label_encoding: Encoding - label_comma_char: Comma - label_semi_colon_char: Semicolon - label_quote_char: Quote - label_double_quote_char: Double quote - label_fields_mapping: Fields mapping - label_file_content_preview: File content preview - label_create_missing_values: Create missing values - button_import: Import - field_total_estimated_hours: Total estimated time - label_api: API - label_total_plural: Totals - label_assigned_issues: Assigned issues - label_field_format_enumeration: Key/value list - label_f_hour_short: '%{value} h' - field_default_version: Default version - error_attachment_extension_not_allowed: Attachment extension %{extension} is not allowed - setting_attachment_extensions_allowed: Allowed extensions - setting_attachment_extensions_denied: Disallowed extensions - label_any_open_issues: any open issues - label_no_open_issues: no open issues - label_default_values_for_new_users: Default values for new users - error_ldap_bind_credentials: Invalid LDAP Account/Password - setting_sys_api_key: API ključ - setting_lost_password: Izgubljena lozinka - mail_subject_security_notification: Security notification - mail_body_security_notification_change: ! '%{field} was changed.' - mail_body_security_notification_change_to: ! '%{field} was changed to %{value}.' - mail_body_security_notification_add: ! '%{field} %{value} was added.' - mail_body_security_notification_remove: ! '%{field} %{value} was removed.' - mail_body_security_notification_notify_enabled: Email address %{value} now receives - notifications. - mail_body_security_notification_notify_disabled: Email address %{value} no longer - receives notifications. - mail_body_settings_updated: ! 'The following settings were changed:' - field_remote_ip: IP address - label_wiki_page_new: New wiki page - label_relations: Relations - button_filter: Filter - mail_body_password_updated: Your password has been changed. - label_no_preview: No preview available - error_no_tracker_allowed_for_new_issue_in_project: The project doesn't have any trackers - for which you can create an issue - label_tracker_all: All trackers - label_new_project_issue_tab_enabled: Display the "New issue" tab - setting_new_item_menu_tab: Project menu tab for creating new objects - label_new_object_tab_enabled: Display the "+" drop-down - error_no_projects_with_tracker_allowed_for_new_issue: There are no projects with trackers - for which you can create an issue - field_textarea_font: Font used for text areas - label_font_default: Default font - label_font_monospace: Monospaced font - label_font_proportional: Proportional font - setting_timespan_format: Time span format - label_table_of_contents: Table of contents - setting_commit_logs_formatting: Apply text formatting to commit messages - setting_mail_handler_enable_regex: Enable regular expressions - error_move_of_child_not_possible: 'Subtask %{child} could not be moved to the new - project: %{errors}' - error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted: Spent time cannot - be reassigned to an issue that is about to be deleted - setting_timelog_required_fields: Required fields for time logs - label_attribute_of_object: '%{object_name}''s %{name}' - label_user_mail_option_only_assigned: Only for things I watch or I am assigned to - label_user_mail_option_only_owner: Only for things I watch or I am the owner of - warning_fields_cleared_on_bulk_edit: Changes will result in the automatic deletion - of values from one or more fields on the selected objects - field_updated_by: Updated by - field_last_updated_by: Last updated by - field_full_width_layout: Full width layout - label_last_notes: Last notes - field_digest: Checksum - field_default_assigned_to: Default assignee - setting_show_custom_fields_on_registration: Show custom fields on registration - permission_view_news: View news - label_no_preview_alternative_html: No preview available. %{link} the file instead. - label_no_preview_download: Download - setting_close_duplicate_issues: Close duplicate issues automatically - error_exceeds_maximum_hours_per_day: Cannot log more than %{max_hours} hours on the - same day (%{logged_hours} hours have already been logged) - setting_time_entry_list_defaults: Timelog list defaults - setting_timelog_accept_0_hours: Accept time logs with 0 hours - setting_timelog_max_hours_per_day: Maximum hours that can be logged per day and user - label_x_revisions: "%{count} revisions" - error_can_not_delete_auth_source: This authentication mode is in use and cannot be - deleted. - button_actions: Actions - mail_body_lost_password_validity: Please be aware that you may change the password - only once using this link. - text_login_required_html: When not requiring authentication, public projects and their - contents are openly available on the network. You can edit - the applicable permissions. - label_login_required_yes: 'Yes' - label_login_required_no: No, allow anonymous access to public projects - text_project_is_public_non_member: Public projects and their contents are available - to all logged-in users. - text_project_is_public_anonymous: Public projects and their contents are openly available - on the network. - label_version_and_files: Versions (%{count}) and Files - label_ldap: LDAP - label_ldaps_verify_none: LDAPS (without certificate check) - label_ldaps_verify_peer: LDAPS - label_ldaps_warning: It is recommended to use an encrypted LDAPS connection with certificate - check to prevent any manipulation during the authentication process. - label_nothing_to_preview: Nothing to preview - error_token_expired: This password recovery link has expired, please try again. - error_spent_on_future_date: Cannot log time on a future date - setting_timelog_accept_future_dates: Accept time logs on future dates - label_delete_link_to_subtask: Brisanje relacije - error_not_allowed_to_log_time_for_other_users: You are not allowed to log time - for other users - permission_log_time_for_other_users: Log spent time for other users - label_tomorrow: tomorrow - label_next_week: next week - label_next_month: next month - text_role_no_workflow: No workflow defined for this role - text_status_no_workflow: No tracker uses this status in the workflows - setting_mail_handler_preferred_body_part: Preferred part of multipart (HTML) emails - setting_show_status_changes_in_mail_subject: Show status changes in issue mail notifications - subject - label_inherited_from_parent_project: Inherited from parent project - label_inherited_from_group: Inherited from group %{name} - label_trackers_description: Trackers description - label_open_trackers_description: View all trackers description - label_preferred_body_part_text: Text - label_preferred_body_part_html: HTML (experimental) - field_parent_issue_subject: Parent task subject - permission_edit_own_issues: Edit own issues - text_select_apply_tracker: Select tracker - label_updated_issues: Updated issues - text_avatar_server_config_html: The current avatar server is %{url}. - You can configure it in config/configuration.yml. - setting_gantt_months_limit: Maximum number of months displayed on the gantt chart - permission_import_time_entries: Import time entries - label_import_notifications: Send email notifications during the import - text_gs_available: ImageMagick PDF support available (optional) - field_recently_used_projects: Number of recently used projects in jump box - label_optgroup_bookmarks: Bookmarks - label_optgroup_others: Other projects - label_optgroup_recents: Recently used - button_project_bookmark: Add bookmark - button_project_bookmark_delete: Remove bookmark - field_history_default_tab: Issue's history default tab - label_issue_history_properties: Property changes - label_issue_history_notes: Notes - label_last_tab_visited: Last visited tab - field_unique_id: Unique ID - text_no_subject: no subject - setting_password_required_char_classes: Required character classes for passwords - label_password_char_class_uppercase: uppercase letters - label_password_char_class_lowercase: lowercase letters - label_password_char_class_digits: digits - label_password_char_class_special_chars: special characters - text_characters_must_contain: Must contain %{character_classes}. - label_starts_with: starts with - label_ends_with: ends with - label_issue_fixed_version_updated: Target version updated - setting_project_list_defaults: Projects list defaults - label_display_type: Display results as - label_display_type_list: List - label_display_type_board: Board - label_my_bookmarks: My bookmarks - label_import_time_entries: Import time entries diff --git a/config/locales/sr.yml b/config/locales/sr.yml deleted file mode 100644 index e049e26..0000000 --- a/config/locales/sr.yml +++ /dev/null @@ -1,1316 +0,0 @@ -# Serbian translations for Redmine -# by Vladimir Medarović (vlada@medarovic.com) -sr: - direction: ltr - date: - formats: - # Use the strftime parameters for formats. - # When no format has been given, it uses default. - # You can provide other formats here if you like! - default: "%d.%m.%Y." - short: "%e %b" - long: "%B %e, %Y" - - day_names: [недеља, понедељак, уторак, среда, четвртак, петак, субота] - abbr_day_names: [нед, пон, уто, сре, чет, пет, суб] - - # Don't forget the nil at the beginning; there's no such thing as a 0th month - month_names: [~, јануар, фебруар, март, април, мај, јун, јул, август, септембар, октобар, новембар, децембар] - abbr_month_names: [~, јан, феб, мар, апр, мај, јун, јул, авг, сеп, окт, нов, дец] - # Used in date_select and datime_select. - order: - - :day - - :month - - :year - - time: - formats: - default: "%d.%m.%Y. у %H:%M" - time: "%H:%M" - short: "%d. %b у %H:%M" - long: "%d. %B %Y у %H:%M" - am: "am" - pm: "pm" - - datetime: - distance_in_words: - half_a_minute: "пола минута" - less_than_x_seconds: - one: "мање од једне секунде" - other: "мање од %{count} сек." - x_seconds: - one: "једна секунда" - other: "%{count} сек." - less_than_x_minutes: - one: "мање од минута" - other: "мање од %{count} мин." - x_minutes: - one: "један минут" - other: "%{count} мин." - about_x_hours: - one: "приближно један сат" - other: "приближно %{count} сати" - x_hours: - one: "1 сат" - other: "%{count} сати" - x_days: - one: "један дан" - other: "%{count} дана" - about_x_months: - one: "приближно један месец" - other: "приближно %{count} месеци" - x_months: - one: "један месец" - other: "%{count} месеци" - about_x_years: - one: "приближно годину дана" - other: "приближно %{count} год." - over_x_years: - one: "преко годину дана" - other: "преко %{count} год." - almost_x_years: - one: "скоро годину дана" - other: "скоро %{count} год." - - number: - format: - separator: "," - delimiter: "" - precision: 3 - human: - format: - delimiter: "" - precision: 3 - storage_units: - format: "%n %u" - units: - byte: - one: "Byte" - other: "Bytes" - kb: "KB" - mb: "MB" - gb: "GB" - tb: "TB" - - -# Used in array.to_sentence. - support: - array: - sentence_connector: "и" - skip_last_comma: false - - activerecord: - errors: - template: - header: - one: "1 error prohibited this %{model} from being saved" - other: "%{count} errors prohibited this %{model} from being saved" - messages: - inclusion: "није укључен у списак" - exclusion: "је резервисан" - invalid: "је неисправан" - confirmation: "потврда не одговара" - accepted: "мора бити прихваћен" - empty: "не може бити празно" - blank: "не може бити празно" - too_long: "је предугачка (максимум знакова је %{count})" - too_short: "је прекратка (минимум знакова је %{count})" - wrong_length: "је погрешне дужине (број знакова мора бити %{count})" - taken: "је већ у употреби" - not_a_number: "није број" - not_a_date: "није исправан датум" - greater_than: "мора бити већи од %{count}" - greater_than_or_equal_to: "мора бити већи или једнак %{count}" - equal_to: "мора бити једнак %{count}" - less_than: "мора бити мањи од %{count}" - less_than_or_equal_to: "мора бити мањи или једнак %{count}" - odd: "мора бити паран" - even: "мора бити непаран" - greater_than_start_date: "мора бити већи од почетног датума" - not_same_project: "не припада истом пројекту" - circular_dependency: "Ова веза ће створити кружну референцу" - cant_link_an_issue_with_a_descendant: "Проблем не може бити повезан са једним од својих подзадатака" - earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" - not_a_regexp: "is not a valid regular expression" - open_issue_with_closed_parent: "An open issue cannot be attached to a closed parent task" - must_contain_uppercase: "must contain uppercase letters (A-Z)" - must_contain_lowercase: "must contain lowercase letters (a-z)" - must_contain_digits: "must contain digits (0-9)" - must_contain_special_chars: "must contain special characters (!, $, %, ...)" - - actionview_instancetag_blank_option: Молим одаберите - - general_text_No: 'Не' - general_text_Yes: 'Да' - general_text_no: 'не' - general_text_yes: 'да' - general_lang_name: 'Serbian Cyrillic (Српски)' - general_csv_separator: ',' - general_csv_decimal_separator: '.' - general_csv_encoding: UTF-8 - general_pdf_fontname: freesans - general_pdf_monospaced_fontname: freemono - general_first_day_of_week: '1' - - notice_account_updated: Налог је успешно ажуриран. - notice_account_invalid_credentials: Неисправно корисничко име или лозинка. - notice_account_password_updated: Лозинка је успешно ажурирана. - notice_account_wrong_password: Погрешна лозинка - notice_account_register_done: Кориснички налог је успешно креиран. Кликните на линк који сте добили у е-поруци за активацију. - notice_account_unknown_email: Непознат корисник. - notice_can_t_change_password: Овај кориснички налог за потврду идентитета користи спољни извор. Немогуће је променити лозинку. - notice_account_lost_email_sent: Послата вам је е-порука са упутством за избор нове лозинке - notice_account_activated: Ваш кориснички налог је активиран. Сада се можете пријавити. - notice_successful_create: Успешно креирање. - notice_successful_update: Успешно ажурирање. - notice_successful_delete: Успешно брисање. - notice_successful_connection: Успешно повезивање. - notice_file_not_found: Страна којој желите приступити не постоји или је уклоњена. - notice_locking_conflict: Податак је ажуриран од стране другог корисника. - notice_not_authorized: Нисте овлашћени за приступ овој страни. - notice_email_sent: "E-порука је послата на %{value}" - notice_email_error: "Догодила се грешка приликом слања е-поруке (%{value})" - notice_feeds_access_key_reseted: Ваш Atom приступни кључ је поништен. - notice_api_access_key_reseted: Ваш API приступни кључ је поништен. - notice_failed_to_save_issues: "Неуспешно снимање %{count} проблема од %{total} одабраних: %{ids}." - notice_failed_to_save_members: "Неуспешно снимање члана(ова): %{errors}." - notice_no_issue_selected: "Ни један проблем није одабран! Молимо, одаберите проблем који желите да мењате." - notice_account_pending: "Ваш налог је креиран и чека на одобрење администратора." - notice_default_data_loaded: Подразумевано конфигурисање је успешно учитано. - notice_unable_delete_version: Верзију је немогуће избрисати. - notice_unable_delete_time_entry: Ставку евиденције времена је немогуће избрисати. - notice_issue_done_ratios_updated: Однос решених проблема је ажуриран. - - error_can_t_load_default_data: "Подразумевано конфигурисање је немогуће учитати: %{value}" - error_scm_not_found: "Ставка или исправка нису пронађене у спремишту." - error_scm_command_failed: "Грешка се јавила приликом покушаја приступа спремишту: %{value}" - error_scm_annotate: "Ставка не постоји или не може бити означена." - error_issue_not_found_in_project: 'Проблем није пронађен или не припада овом пројекту.' - error_no_tracker_in_project: 'Ни једно праћење није повезано са овим пројектом. Молимо проверите подешавања пројекта.' - error_no_default_issue_status: 'Подразумевани статус проблема није дефинисан. Молимо проверите ваше конфигурисање (идите на "Администрација -> Статуси проблема").' - error_can_not_delete_custom_field: Немогуће је избрисати прилагођено поље - error_can_not_delete_tracker: "Ово праћење садржи проблеме и не може бити обрисано." - error_can_not_remove_role: "Ова улога је у употреби и не може бити обрисана." - error_can_not_reopen_issue_on_closed_version: 'Проблем додељен затвореној верзији не може бити поново отворен' - error_can_not_archive_project: Овај пројекат се не може архивирати - error_issue_done_ratios_not_updated: "Однос решених проблема није ажуриран." - error_workflow_copy_source: 'Молимо одаберите изворно праћење или улогу' - error_workflow_copy_target: 'Молимо одаберите одредишно праћење и улогу' - error_unable_delete_issue_status: 'Статус проблема је немогуће обрисати (%{value})' - error_unable_to_connect: "Повезивање са (%{value}) је немогуће" - warning_attachments_not_saved: "%{count} датотека не може бити снимљена." - - mail_subject_lost_password: "Ваша %{value} лозинка" - mail_body_lost_password: 'За промену ваше лозинке, кликните на следећи линк:' - mail_subject_register: "Активација вашег %{value} налога" - mail_body_register: 'За активацију вашег налога, кликните на следећи линк:' - mail_body_account_information_external: "Ваш налог %{value} можете користити за пријаву." - mail_body_account_information: Информације о вашем налогу - mail_subject_account_activation_request: "Захтев за активацију налога %{value}" - mail_body_account_activation_request: "Нови корисник (%{value}) је регистрован. Налог чека на ваше одобрење:" - mail_subject_reminder: "%{count} проблема доспева наредних %{days} дана" - mail_body_reminder: "%{count} проблема додељених вама доспева у наредних %{days} дана:" - mail_subject_wiki_content_added: "Wiki страница '%{id}' је додата" - mail_body_wiki_content_added: "%{author} је додао wiki страницу '%{id}'." - mail_subject_wiki_content_updated: "Wiki страница '%{id}' је ажурирана" - mail_body_wiki_content_updated: "%{author} је ажурирао wiki страницу '%{id}'." - - - field_name: Назив - field_description: Опис - field_summary: Резиме - field_is_required: Обавезно - field_firstname: Име - field_lastname: Презиме - field_mail: Е-адреса - field_filename: Датотека - field_filesize: Величина - field_downloads: Преузимања - field_author: Аутор - field_created_on: Креирано - field_updated_on: Ажурирано - field_field_format: Формат - field_is_for_all: За све пројекте - field_possible_values: Могуће вредности - field_regexp: Регуларан израз - field_min_length: Минимална дужина - field_max_length: Максимална дужина - field_value: Вредност - field_category: Категорија - field_title: Наслов - field_project: Пројекат - field_issue: Проблем - field_status: Статус - field_notes: Белешке - field_is_closed: Затворен проблем - field_is_default: Подразумевана вредност - field_tracker: Праћење - field_subject: Предмет - field_due_date: Крајњи рок - field_assigned_to: Додељено - field_priority: Приоритет - field_fixed_version: Одредишна верзија - field_user: Корисник - field_principal: Главни - field_role: Улога - field_homepage: Почетна страница - field_is_public: Јавно објављивање - field_parent: Потпројекат од - field_is_in_roadmap: Проблеми приказани у плану рада - field_login: Корисничко име - field_mail_notification: Обавештења путем е-поште - field_admin: Администратор - field_last_login_on: Последње повезивање - field_language: Језик - field_effective_date: Датум - field_password: Лозинка - field_new_password: Нова лозинка - field_password_confirmation: Потврда лозинке - field_version: Верзија - field_type: Тип - field_host: Главни рачунар - field_port: Порт - field_account: Кориснички налог - field_base_dn: Базни DN - field_attr_login: Атрибут пријављивања - field_attr_firstname: Атрибут имена - field_attr_lastname: Атрибут презимена - field_attr_mail: Атрибут е-адресе - field_onthefly: Креирање корисника у току рада - field_start_date: Почетак - field_done_ratio: "% урађено" - field_auth_source: Режим потврде идентитета - field_hide_mail: Сакриј моју е-адресу - field_comments: Коментар - field_url: URL - field_start_page: Почетна страница - field_subproject: Потпројекат - field_hours: сати - field_activity: Активност - field_spent_on: Датум - field_identifier: Идентификатор - field_is_filter: Употреби као филтер - field_issue_to: Сродни проблеми - field_delay: Кашњење - field_assignable: Проблем може бити додељен овој улози - field_redirect_existing_links: Преусмери постојеће везе - field_estimated_hours: Протекло време - field_column_names: Колоне - field_time_zone: Временска зона - field_searchable: Може да се претражује - field_default_value: Подразумевана вредност - field_comments_sorting: Прикажи коментаре - field_parent_title: Матична страница - field_editable: Изменљиво - field_watcher: Посматрач - field_identity_url: OpenID URL - field_content: Садржај - field_group_by: Груписање резултата по - field_sharing: Дељење - field_parent_issue: Матични задатак - - setting_app_title: Наслов апликације - setting_welcome_text: Текст добродошлице - setting_default_language: Подразумевани језик - setting_login_required: Обавезна потврда идентитета - setting_self_registration: Саморегистрација - setting_attachment_max_size: Макс. величина приложене датотеке - setting_issues_export_limit: Ограничење извоза „проблема“ - setting_mail_from: Е-адреса пошиљаоца - setting_bcc_recipients: Примаоци „Bcc“ копије - setting_plain_text_mail: Порука са чистим текстом (без HTML-а) - setting_host_name: Путања и назив главног рачунара - setting_text_formatting: Обликовање текста - setting_wiki_compression: Компресија Wiki историје - setting_feeds_limit: Ограничење садржаја извора вести - setting_default_projects_public: Подразумева се јавно приказивање нових пројеката - setting_autofetch_changesets: Извршавање аутоматског преузимања - setting_sys_api_enabled: Омогућавање WS за управљање спремиштем - setting_commit_ref_keywords: Референцирање кључних речи - setting_commit_fix_keywords: Поправљање кључних речи - setting_autologin: Аутоматска пријава - setting_date_format: Формат датума - setting_time_format: Формат времена - setting_cross_project_issue_relations: Дозволи повезивање проблема из унакрсних пројеката - setting_issue_list_default_columns: Подразумеване колоне приказане на списку проблема - setting_emails_footer: Подножје странице е-поруке - setting_protocol: Протокол - setting_per_page_options: Опције приказа објеката по страници - setting_user_format: Формат приказа корисника - setting_activity_days_default: Број дана приказаних на пројектној активности - setting_display_subprojects_issues: Приказуј проблеме из потпројеката на главном пројекту, уколико није другачије наведено - setting_enabled_scm: Омогућавање SCM - setting_mail_handler_body_delimiters: "Скраћивање е-поруке након једне од ових линија" - setting_mail_handler_api_enabled: Омогућавање WS долазне е-поруке - setting_mail_handler_api_key: API кључ - setting_sequential_project_identifiers: Генерисање секвенцијалног имена пројекта - setting_gravatar_enabled: Користи Gravatar корисничке иконе - setting_gravatar_default: Подразумевана Gravatar слика - setting_diff_max_lines_displayed: Макс. број приказаних различитих линија - setting_file_max_size_displayed: Макс. величина текст. датотека приказаних уметнуто - setting_repository_log_display_limit: Макс. број ревизија приказаних у датотеци за евиденцију - setting_openid: Дозволи OpenID пријаву и регистрацију - setting_password_min_length: Минимална дужина лозинке - setting_new_project_user_role_id: Креатору пројекта (који није администратор) додељује је улога - setting_default_projects_modules: Подразумевано омогућени модули за нове пројекте - setting_issue_done_ratio: Израчунај однос решених проблема - setting_issue_done_ratio_issue_field: користећи поље проблема - setting_issue_done_ratio_issue_status: користећи статус проблема - setting_start_of_week: Први дан у седмици - setting_rest_api_enabled: Омогући REST web услуге - setting_cache_formatted_text: Кеширање обрађеног текста - - permission_add_project: Креирање пројекта - permission_add_subprojects: Креирање потпојекта - permission_edit_project: Измена пројеката - permission_select_project_modules: Одабирање модула пројекта - permission_manage_members: Управљање члановима - permission_manage_project_activities: Управљање пројектним активностима - permission_manage_versions: Управљање верзијама - permission_manage_categories: Управљање категоријама проблема - permission_view_issues: Преглед проблема - permission_add_issues: Додавање проблема - permission_edit_issues: Измена проблема - permission_manage_issue_relations: Управљање везама између проблема - permission_add_issue_notes: Додавање белешки - permission_edit_issue_notes: Измена белешки - permission_edit_own_issue_notes: Измена сопствених белешки - permission_delete_issues: Брисање проблема - permission_manage_public_queries: Управљање јавним упитима - permission_save_queries: Снимање упита - permission_view_gantt: Прегледање Гантовог дијаграма - permission_view_calendar: Прегледање календара - permission_view_issue_watchers: Прегледање списка посматрача - permission_add_issue_watchers: Додавање посматрача - permission_delete_issue_watchers: Брисање посматрача - permission_log_time: Бележење утрошеног времена - permission_view_time_entries: Прегледање утрошеног времена - permission_edit_time_entries: Измена утрошеног времена - permission_edit_own_time_entries: Измена сопственог утрошеног времена - permission_manage_news: Управљање вестима - permission_comment_news: Коментарисање вести - permission_view_documents: Прегледање докумената - permission_manage_files: Управљање датотекама - permission_view_files: Прегледање датотека - permission_manage_wiki: Управљање wiki страницама - permission_rename_wiki_pages: Промена имена wiki страницама - permission_delete_wiki_pages: Брисање wiki страница - permission_view_wiki_pages: Прегледање wiki страница - permission_view_wiki_edits: Прегледање wiki историје - permission_edit_wiki_pages: Измена wiki страница - permission_delete_wiki_pages_attachments: Брисање приложених датотека - permission_protect_wiki_pages: Заштита wiki страница - permission_manage_repository: Управљање спремиштем - permission_browse_repository: Прегледање спремишта - permission_view_changesets: Прегледање скупа промена - permission_commit_access: Потврда приступа - permission_manage_boards: Управљање форумима - permission_view_messages: Прегледање порука - permission_add_messages: Слање порука - permission_edit_messages: Измена порука - permission_edit_own_messages: Измена сопствених порука - permission_delete_messages: Брисање порука - permission_delete_own_messages: Брисање сопствених порука - permission_export_wiki_pages: Извоз wiki страница - permission_manage_subtasks: Управљање подзадацима - - project_module_issue_tracking: Праћење проблема - project_module_time_tracking: Праћење времена - project_module_news: Вести - project_module_documents: Документи - project_module_files: Датотеке - project_module_wiki: Wiki - project_module_repository: Спремиште - project_module_boards: Форуми - - label_user: Корисник - label_user_plural: Корисници - label_user_new: Нови корисник - label_user_anonymous: Анониман - label_project: Пројекат - label_project_new: Нови пројекат - label_project_plural: Пројекти - label_x_projects: - zero: нема пројеката - one: један пројекат - other: "%{count} пројеката" - label_project_all: Сви пројекти - label_project_latest: Последњи пројекти - label_issue: Проблем - label_issue_new: Нови проблем - label_issue_plural: Проблеми - label_issue_view_all: Приказ свих проблема - label_issues_by: "Проблеми (%{value})" - label_issue_added: Проблем је додат - label_issue_updated: Проблем је ажуриран - label_document: Документ - label_document_new: Нови документ - label_document_plural: Документи - label_document_added: Документ је додат - label_role: Улога - label_role_plural: Улоге - label_role_new: Нова улога - label_role_and_permissions: Улоге и дозволе - label_member: Члан - label_member_new: Нови члан - label_member_plural: Чланови - label_tracker: Праћење - label_tracker_plural: Праћења - label_tracker_new: Ново праћење - label_workflow: Ток посла - label_issue_status: Статус проблема - label_issue_status_plural: Статуси проблема - label_issue_status_new: Нови статус - label_issue_category: Категорија проблема - label_issue_category_plural: Категорије проблема - label_issue_category_new: Нова категорија - label_custom_field: Прилагођено поље - label_custom_field_plural: Прилагођена поља - label_custom_field_new: Ново прилагођено поље - label_enumerations: Набројива листа - label_enumeration_new: Нова вредност - label_information: Информација - label_information_plural: Информације - label_register: Регистрација - label_login_with_open_id_option: или пријава са OpenID - label_password_lost: Изгубљена лозинка - label_home: Почетак - label_my_page: Моја страница - label_my_account: Мој налог - label_my_projects: Моји пројекти - label_administration: Администрација - label_login: Пријава - label_logout: Одјава - label_help: Помоћ - label_reported_issues: Пријављени проблеми - label_assigned_to_me_issues: Проблеми додељени мени - label_last_login: Последње повезивање - label_registered_on: Регистрован - label_activity: Активност - label_overall_activity: Целокупна активност - label_user_activity: "Активност корисника %{value}" - label_new: Ново - label_logged_as: Пријављени сте као - label_environment: Окружење - label_authentication: Потврда идентитета - label_auth_source: Режим потврде идентитета - label_auth_source_new: Нови режим потврде идентитета - label_auth_source_plural: Режими потврде идентитета - label_subproject_plural: Потпројекти - label_subproject_new: Нови потпројекат - label_and_its_subprojects: "%{value} и његови потпројекти" - label_min_max_length: Мин. - Макс. дужина - label_list: Списак - label_date: Датум - label_integer: Цео број - label_float: Са покретним зарезом - label_boolean: Логички оператор - label_string: Текст - label_text: Дуги текст - label_attribute: Особина - label_attribute_plural: Особине - label_no_data: Нема података за приказивање - label_change_status: Промена статуса - label_history: Историја - label_attachment: Датотека - label_attachment_new: Нова датотека - label_attachment_delete: Брисање датотеке - label_attachment_plural: Датотеке - label_file_added: Датотека је додата - label_report: Извештај - label_report_plural: Извештаји - label_news: Вести - label_news_new: Додавање вести - label_news_plural: Вести - label_news_latest: Последње вести - label_news_view_all: Приказ свих вести - label_news_added: Вести су додате - label_settings: Подешавања - label_overview: Преглед - label_version: Верзија - label_version_new: Нова верзија - label_version_plural: Верзије - label_close_versions: Затвори завршене верзије - label_confirmation: Потврда - label_export_to: 'Такође доступно и у варијанти:' - label_read: Читање... - label_public_projects: Јавни пројекти - label_open_issues: отворен - label_open_issues_plural: отворених - label_closed_issues: затворен - label_closed_issues_plural: затворених - label_x_open_issues_abbr: - zero: 0 отворених - one: 1 отворен - other: "%{count} отворених" - label_x_closed_issues_abbr: - zero: 0 затворених - one: 1 затворен - other: "%{count} затворених" - label_total: Укупно - label_permissions: Дозволе - label_current_status: Тренутни статус - label_new_statuses_allowed: Нови статуси дозвољени - label_all: сви - label_none: ниједан - label_nobody: никоме - label_next: Следеће - label_previous: Претходно - label_used_by: Користио - label_details: Детаљи - label_add_note: Додај белешку - label_calendar: Календар - label_months_from: месеци од - label_gantt: Гантов дијаграм - label_internal: Унутрашњи - label_last_changes: "последњих %{count} промена" - label_change_view_all: Прикажи све промене - label_comment: Коментар - label_comment_plural: Коментари - label_x_comments: - zero: без коментара - one: један коментар - other: "%{count} коментара" - label_comment_add: Додај коментар - label_comment_added: Коментар додат - label_comment_delete: Обриши коментаре - label_query: Прилагођен упит - label_query_plural: Прилагођени упити - label_query_new: Нови упит - label_filter_add: Додавање филтера - label_filter_plural: Филтери - label_equals: је - label_not_equals: није - label_in_less_than: мање од - label_in_more_than: више од - label_greater_or_equal: '>=' - label_less_or_equal: '<=' - label_in: у - label_today: данас - label_yesterday: јуче - label_this_week: ове седмице - label_last_week: последње седмице - label_last_n_days: "последњих %{count} дана" - label_this_month: овог месеца - label_last_month: последњег месеца - label_this_year: ове године - label_date_range: Временски период - label_less_than_ago: пре мање од неколико дана - label_more_than_ago: пре више од неколико дана - label_ago: пре неколико дана - label_contains: садржи - label_not_contains: не садржи - label_day_plural: дана - label_repository: Спремиште - label_repository_plural: Спремишта - label_browse: Прегледање - label_branch: Грана - label_tag: Ознака - label_revision: Ревизија - label_revision_plural: Ревизије - label_revision_id: "Ревизија %{value}" - label_associated_revisions: Придружене ревизије - label_added: додато - label_modified: промењено - label_copied: копирано - label_renamed: преименовано - label_deleted: избрисано - label_latest_revision: Последња ревизија - label_latest_revision_plural: Последње ревизије - label_view_revisions: Преглед ревизија - label_view_all_revisions: Преглед свих ревизија - label_max_size: Максимална величина - label_sort_highest: Премештање на врх - label_sort_higher: Премештање на горе - label_sort_lower: Премештање на доле - label_sort_lowest: Премештање на дно - label_roadmap: План рада - label_roadmap_due_in: "Доспева %{value}" - label_roadmap_overdue: "%{value} најкасније" - label_roadmap_no_issues: Нема проблема за ову верзију - label_search: Претрага - label_result_plural: Резултати - label_all_words: Све речи - label_wiki: Wiki - label_wiki_edit: Wiki измена - label_wiki_edit_plural: Wiki измене - label_wiki_page: Wiki страница - label_wiki_page_plural: Wiki странице - label_index_by_title: Индексирање по наслову - label_index_by_date: Индексирање по датуму - label_current_version: Тренутна верзија - label_preview: Преглед - label_feed_plural: Извори вести - label_changes_details: Детаљи свих промена - label_issue_tracking: Праћење проблема - label_spent_time: Утрошено време - label_overall_spent_time: Целокупно утрошено време - label_f_hour: "%{value} сат" - label_f_hour_plural: "%{value} сати" - label_time_tracking: Праћење времена - label_change_plural: Промене - label_statistics: Статистика - label_commits_per_month: Извршења месечно - label_commits_per_author: Извршења по аутору - label_view_diff: Погледај разлике - label_diff_inline: унутра - label_diff_side_by_side: упоредо - label_options: Опције - label_copy_workflow_from: Копирање тока посла од - label_permissions_report: Извештај о дозволама - label_watched_issues: Посматрани проблеми - label_related_issues: Сродни проблеми - label_applied_status: Примењени статуси - label_loading: Учитавање... - label_relation_new: Нова релација - label_relation_delete: Брисање релације - label_relates_to: сродних са - label_duplicates: дуплираних - label_duplicated_by: дуплираних од - label_blocks: одбијених - label_blocked_by: одбијених од - label_precedes: претходи - label_follows: праћених - label_stay_logged_in: Останите пријављени - label_disabled: онемогућено - label_show_completed_versions: Приказивање завршене верзије - label_me: мени - label_board: Форум - label_board_new: Нови форум - label_board_plural: Форуми - label_board_locked: Закључана - label_board_sticky: Лепљива - label_topic_plural: Теме - label_message_plural: Поруке - label_message_last: Последња порука - label_message_new: Нова порука - label_message_posted: Порука је додата - label_reply_plural: Одговори - label_send_information: Пошаљи кориснику детаље налога - label_year: Година - label_month: Месец - label_week: Седмица - label_date_from: Шаље - label_date_to: Прима - label_language_based: Базирано на језику корисника - label_sort_by: "Сортирано по %{value}" - label_send_test_email: Слање пробне е-поруке - label_feeds_access_key: Atom приступни кључ - label_missing_feeds_access_key: Atom приступни кључ недостаје - label_feeds_access_key_created_on: "Atom приступни кључ је направљен пре %{value}" - label_module_plural: Модули - label_added_time_by: "Додао %{author} пре %{age}" - label_updated_time_by: "Ажурирао %{author} пре %{age}" - label_updated_time: "Ажурирано пре %{value}" - label_jump_to_a_project: Скок на пројекат... - label_file_plural: Датотеке - label_changeset_plural: Скупови промена - label_default_columns: Подразумеване колоне - label_no_change_option: (Без промена) - label_bulk_edit_selected_issues: Групна измена одабраних проблема - label_theme: Тема - label_default: Подразумевано - label_search_titles_only: Претражуј само наслове - label_user_mail_option_all: "За било који догађај на свим мојим пројектима" - label_user_mail_option_selected: "За било који догађај на само одабраним пројектима..." - label_user_mail_no_self_notified: "Не желим бити обавештаван за промене које сам правим" - label_registration_activation_by_email: активација налога путем е-поруке - label_registration_manual_activation: ручна активација налога - label_registration_automatic_activation: аутоматска активација налога - label_display_per_page: "Број ставки по страници: %{value}" - label_age: Старост - label_change_properties: Промени својства - label_general: Општи - label_scm: SCM - label_plugins: Додатне компоненте - label_ldap_authentication: LDAP потврда идентитета - label_downloads_abbr: D/L - label_optional_description: Опционо опис - label_add_another_file: Додај још једну датотеку - label_preferences: Подешавања - label_chronological_order: по хронолошком редоследу - label_reverse_chronological_order: по обрнутом хронолошком редоследу - label_incoming_emails: Долазне е-поруке - label_generate_key: Генерисање кључа - label_issue_watchers: Посматрачи - label_example: Пример - label_display: Приказ - label_sort: Сортирање - label_ascending: Растући низ - label_descending: Опадајући низ - label_date_from_to: Од %{start} до %{end} - label_wiki_content_added: Wiki страница је додата - label_wiki_content_updated: Wiki страница је ажурирана - label_group: Група - label_group_plural: Групе - label_group_new: Нова група - label_time_entry_plural: Утрошено време - label_version_sharing_none: Није дељено - label_version_sharing_descendants: Са потпројектима - label_version_sharing_hierarchy: Са хијерархијом пројекта - label_version_sharing_tree: Са стаблом пројекта - label_version_sharing_system: Са свим пројектима - label_update_issue_done_ratios: Ажурирај однос решених проблема - label_copy_source: Извор - label_copy_target: Одредиште - label_copy_same_as_target: Исто као одредиште - label_display_used_statuses_only: Приказуј статусе коришћене само од стране овог праћења - label_api_access_key: API приступни кључ - label_missing_api_access_key: Недостаје API приступни кључ - label_api_access_key_created_on: "API приступни кључ је креиран пре %{value}" - label_profile: Профил - label_subtask_plural: Подзадатак - label_project_copy_notifications: Пошаљи е-поруку са обавештењем приликом копирања пројекта - - button_login: Пријава - button_submit: Пошаљи - button_save: Сними - button_check_all: Укључи све - button_uncheck_all: Искључи све - button_delete: Избриши - button_create: Креирај - button_create_and_continue: Креирај и настави - button_test: Тест - button_edit: Измени - button_add: Додај - button_change: Промени - button_apply: Примени - button_clear: Обриши - button_lock: Закључај - button_unlock: Откључај - button_download: Преузми - button_list: Списак - button_view: Прикажи - button_move: Помери - button_move_and_follow: Помери и прати - button_back: Назад - button_cancel: Поништи - button_activate: Активирај - button_sort: Сортирај - button_log_time: Евидентирај време - button_rollback: Повратак на ову верзију - button_watch: Прати - button_unwatch: Не прати више - button_reply: Одговори - button_archive: Архивирај - button_unarchive: Врати из архиве - button_reset: Поништи - button_rename: Преименуј - button_change_password: Промени лозинку - button_copy: Копирај - button_copy_and_follow: Копирај и прати - button_annotate: Прибележи - button_update: Ажурирај - button_configure: Подеси - button_quote: Под наводницима - button_show: Прикажи - - status_active: активни - status_registered: регистровани - status_locked: закључани - - version_status_open: отворен - version_status_locked: закључан - version_status_closed: затворен - - field_active: Активан - - text_select_mail_notifications: Одабери акције за које ће обавештење бити послато путем е-поште. - text_regexp_info: нпр. ^[A-Z0-9]+$ - text_min_max_length_info: 0 значи без ограничења - text_project_destroy_confirmation: Јесте ли сигурни да желите да избришете овај пројекат и све припадајуће податке? - text_subprojects_destroy_warning: "Потпројекти: %{value} ће такође бити избрисан." - text_workflow_edit: Одаберите улогу и праћење за измену тока посла - text_are_you_sure: Јесте ли сигурни? - text_journal_changed: "%{label} промењен од %{old} у %{new}" - text_journal_set_to: "%{label} постављен у %{value}" - text_journal_deleted: "%{label} избрисано (%{old})" - text_journal_added: "%{label} %{value} додато" - text_tip_issue_begin_day: задатак почиње овог дана - text_tip_issue_end_day: задатак се завршава овог дана - text_tip_issue_begin_end_day: задатак почиње и завршава овог дана - text_caracters_maximum: "Највише %{count} знак(ова)." - text_caracters_minimum: "Број знакова мора бити најмање %{count}." - text_length_between: "Број знакова мора бити између %{min} и %{max}." - text_tracker_no_workflow: Ово праћење нема дефинисан ток посла - text_unallowed_characters: Недозвољени знакови - text_comma_separated: Дозвољене су вишеструке вредности (одвојене зарезом). - text_line_separated: Дозвољене су вишеструке вредности (један ред за сваку вредност). - text_issues_ref_in_commit_messages: Референцирање и поправљање проблема у извршним порукама - text_issue_added: "%{author} је пријавио проблем %{id}." - text_issue_updated: "%{author} је ажурирао проблем %{id}." - text_wiki_destroy_confirmation: Јесте ли сигурни да желите да обришете wiki и сав садржај? - text_issue_category_destroy_question: "Неколико проблема (%{count}) је додељено овој категорији. Шта желите да урадите?" - text_issue_category_destroy_assignments: Уклони додељене категорије - text_issue_category_reassign_to: Додели поново проблеме овој категорији - text_user_mail_option: "За неизабране пројекте, добићете само обавештење о стварима које пратите или сте укључени (нпр. проблеми чији сте ви аутор или заступник)." - text_no_configuration_data: "Улоге, праћења, статуси проблема и тока посла још увек нису подешени.\nПрепоручљиво је да учитате подразумевано конфигурисање. Измена је могућа након првог учитавања." - text_load_default_configuration: Учитај подразумевано конфигурисање - text_status_changed_by_changeset: "Примењено у скупу са променама %{value}." - text_issues_destroy_confirmation: 'Јесте ли сигурни да желите да избришете одабране проблеме?' - text_select_project_modules: 'Одаберите модуле које желите омогућити за овај пројекат:' - text_default_administrator_account_changed: Подразумевани администраторски налог је промењен - text_file_repository_writable: Фасцикла приложених датотека је уписива - text_plugin_assets_writable: Фасцикла елемената додатних компоненти је уписива - text_minimagick_available: MiniMagick је доступан (опционо) - text_destroy_time_entries_question: "%{hours} сати је пријављено за овај проблем који желите избрисати. Шта желите да урадите?" - text_destroy_time_entries: Избриши пријављене сате - text_assign_time_entries_to_project: Додели пријављене сате пројекту - text_reassign_time_entries: 'Додели поново пријављене сате овом проблему:' - text_user_wrote: "%{value} је написао:" - text_user_wrote_in: "%{value} је написао (%{link}):" - text_enumeration_destroy_question: "%{count} објекат(а) је додељено овој вредности." - text_enumeration_category_reassign_to: 'Додели их поново овој вредности:' - text_email_delivery_not_configured: "Испорука е-порука није конфигурисана и обавештења су онемогућена.\nПодесите ваш SMTP сервер у config/configuration.yml и покрените поново апликацију за њихово омогућавање." - text_repository_usernames_mapping: "Одаберите или ажурирајте Redmine кориснике мапирањем сваког корисничког имена пронађеног у евиденцији спремишта.\nКорисници са истим Redmine именом и именом спремишта или е-адресом су аутоматски мапирани." - text_diff_truncated: '... Ова разлика је исечена јер је достигнута максимална величина приказа.' - text_custom_field_possible_values_info: 'Један ред за сваку вредност' - text_wiki_page_destroy_question: "Ова страница има %{descendants} подређених страница и подстраница. Шта желите да урадите?" - text_wiki_page_nullify_children: "Задржи подређене странице као корене странице" - text_wiki_page_destroy_children: "Избриши подређене странице и све њихове подстранице" - text_wiki_page_reassign_children: "Додели поново подређене странице овој матичној страници" - text_own_membership_delete_confirmation: "Након уклањања појединих или свих ваших дозвола нећете више моћи да уређујете овај пројекат.\nЖелите ли да наставите?" - text_zoom_in: Увећај - text_zoom_out: Умањи - - default_role_manager: Менаџер - default_role_developer: Програмер - default_role_reporter: Извештач - default_tracker_bug: Грешка - default_tracker_feature: Функционалност - default_tracker_support: Подршка - default_issue_status_new: Ново - default_issue_status_in_progress: У току - default_issue_status_resolved: Решено - default_issue_status_feedback: Повратна информација - default_issue_status_closed: Затворено - default_issue_status_rejected: Одбијено - default_doc_category_user: Корисничка документација - default_doc_category_tech: Техничка документација - default_priority_low: Низак - default_priority_normal: Нормалан - default_priority_high: Висок - default_priority_urgent: Хитно - default_priority_immediate: Непосредно - default_activity_design: Дизајн - default_activity_development: Развој - - enumeration_issue_priorities: Приоритети проблема - enumeration_doc_categories: Категорије документа - enumeration_activities: Активности (праћење времена) - enumeration_system_activity: Системска активност - - field_time_entries: Време евиденције - project_module_gantt: Гантов дијаграм - project_module_calendar: Календар - - button_edit_associated_wikipage: "Edit associated Wiki page: %{page_title}" - field_text: Text field - setting_default_notification_option: Default notification option - label_user_mail_option_only_my_events: Only for things I watch or I'm involved in - label_user_mail_option_none: No events - field_member_of_group: Assignee's group - field_assigned_to_role: Assignee's role - notice_not_authorized_archived_project: The project you're trying to access has been archived. - label_principal_search: "Search for user or group:" - label_user_search: "Search for user:" - field_visible: Visible - setting_commit_logtime_activity_id: Activity for logged time - text_time_logged_by_changeset: Applied in changeset %{value}. - setting_commit_logtime_enabled: Enable time logging - notice_gantt_chart_truncated: The chart was truncated because it exceeds the maximum number of items that can be displayed (%{max}) - setting_gantt_items_limit: Maximum number of items displayed on the gantt chart - field_warn_on_leaving_unsaved: Warn me when leaving a page with unsaved text - text_warn_on_leaving_unsaved: The current page contains unsaved text that will be lost if you leave this page. - label_my_queries: My custom queries - text_journal_changed_no_detail: "%{label} updated" - label_news_comment_added: Comment added to a news - button_expand_all: Expand all - button_collapse_all: Collapse all - label_additional_workflow_transitions_for_assignee: Additional transitions allowed when the user is the assignee - label_additional_workflow_transitions_for_author: Additional transitions allowed when the user is the author - label_bulk_edit_selected_time_entries: Bulk edit selected time entries - text_time_entries_destroy_confirmation: Are you sure you want to delete the selected time entr(y/ies)? - label_role_anonymous: Anonymous - label_role_non_member: Non member - label_issue_note_added: Note added - label_issue_status_updated: Status updated - label_issue_priority_updated: Priority updated - label_issues_visibility_own: Issues created by or assigned to the user - field_issues_visibility: Issues visibility - label_issues_visibility_all: All issues - permission_set_own_issues_private: Set own issues public or private - field_is_private: Private - permission_set_issues_private: Set issues public or private - label_issues_visibility_public: All non private issues - text_issues_destroy_descendants_confirmation: This will also delete %{count} subtask(s). - field_commit_logs_encoding: Кодирање извршних порука - field_scm_path_encoding: Path encoding - text_scm_path_encoding_note: "Default: UTF-8" - field_path_to_repository: Path to repository - field_root_directory: Root directory - field_cvs_module: Module - field_cvsroot: CVSROOT - text_mercurial_repository_note: Local repository (e.g. /hgrepo, c:\hgrepo) - text_scm_command: Command - text_scm_command_version: Version - label_git_report_last_commit: Report last commit for files and directories - notice_issue_successful_create: Issue %{id} created. - label_between: between - setting_issue_group_assignment: Allow issue assignment to groups - label_diff: diff - text_git_repository_note: Repository is bare and local (e.g. /gitrepo, c:\gitrepo) - description_query_sort_criteria_direction: Sort direction - description_project_scope: Search scope - description_filter: Filter - description_user_mail_notification: Mail notification settings - description_message_content: Message content - description_available_columns: Available Columns - description_issue_category_reassign: Choose issue category - description_search: Searchfield - description_notes: Notes - description_choose_project: Projects - description_query_sort_criteria_attribute: Sort attribute - description_wiki_subpages_reassign: Choose new parent page - description_selected_columns: Selected Columns - label_parent_revision: Parent - label_child_revision: Child - error_scm_annotate_big_text_file: The entry cannot be annotated, as it exceeds the maximum text file size. - setting_default_issue_start_date_to_creation_date: Use current date as start date for new issues - button_edit_section: Edit this section - setting_repositories_encodings: Attachments and repositories encodings - description_all_columns: All Columns - button_export: Export - label_export_options: "%{export_format} export options" - error_attachment_too_big: This file cannot be uploaded because it exceeds the maximum allowed file size (%{max_size}) - notice_failed_to_save_time_entries: "Failed to save %{count} time entrie(s) on %{total} selected: %{ids}." - label_x_issues: - zero: 0 Проблем - one: 1 Проблем - other: "%{count} Проблеми" - label_repository_new: New repository - field_repository_is_default: Main repository - label_copy_attachments: Copy attachments - label_item_position: "%{position}/%{count}" - label_completed_versions: Completed versions - text_project_identifier_info: Only lower case letters (a-z), numbers, dashes and underscores are allowed.
    Once saved, the identifier cannot be changed. - field_multiple: Multiple values - setting_commit_cross_project_ref: Allow issues of all the other projects to be referenced and fixed - text_issue_conflict_resolution_add_notes: Add my notes and discard my other changes - text_issue_conflict_resolution_overwrite: Apply my changes anyway (previous notes will be kept but some changes may be overwritten) - notice_issue_update_conflict: The issue has been updated by an other user while you were editing it. - text_issue_conflict_resolution_cancel: Discard all my changes and redisplay %{link} - permission_manage_related_issues: Manage related issues - field_auth_source_ldap_filter: LDAP filter - label_search_for_watchers: Search for watchers to add - notice_account_deleted: Your account has been permanently deleted. - setting_unsubscribe: Allow users to delete their own account - button_delete_my_account: Delete my account - text_account_destroy_confirmation: |- - Are you sure you want to proceed? - Your account will be permanently deleted, with no way to reactivate it. - error_session_expired: Your session has expired. Please login again. - text_session_expiration_settings: "Warning: changing these settings may expire the current sessions including yours." - setting_session_lifetime: Session maximum lifetime - setting_session_timeout: Session inactivity timeout - label_session_expiration: Session expiration - permission_close_project: Close / reopen the project - button_close: Close - button_reopen: Reopen - project_status_active: active - project_status_closed: closed - project_status_archived: archived - text_project_closed: This project is closed and read-only. - notice_user_successful_create: User %{id} created. - field_core_fields: Standard fields - field_timeout: Timeout (in seconds) - setting_thumbnails_enabled: Display attachment thumbnails - setting_thumbnails_size: Thumbnails size (in pixels) - label_status_transitions: Status transitions - label_fields_permissions: Fields permissions - label_readonly: Read-only - label_required: Required - text_repository_identifier_info: Only lower case letters (a-z), numbers, dashes and underscores are allowed.
    Once saved, the identifier cannot be changed. - field_board_parent: Parent forum - label_attribute_of_project: Project's %{name} - label_attribute_of_author: Author's %{name} - label_attribute_of_assigned_to: Assignee's %{name} - label_attribute_of_fixed_version: Target version's %{name} - label_copy_subtasks: Copy subtasks - label_copied_to: copied to - label_copied_from: copied from - label_any_issues_in_project: any issues in project - label_any_issues_not_in_project: any issues not in project - field_private_notes: Private notes - permission_view_private_notes: View private notes - permission_set_notes_private: Set notes as private - label_no_issues_in_project: no issues in project - label_any: сви - label_last_n_weeks: last %{count} weeks - setting_cross_project_subtasks: Allow cross-project subtasks - label_cross_project_descendants: Са потпројектима - label_cross_project_tree: Са стаблом пројекта - label_cross_project_hierarchy: Са хијерархијом пројекта - label_cross_project_system: Са свим пројектима - button_hide: Hide - setting_non_working_week_days: Non-working days - label_in_the_next_days: in the next - label_in_the_past_days: in the past - label_attribute_of_user: User's %{name} - text_turning_multiple_off: If you disable multiple values, multiple values will be - removed in order to preserve only one value per item. - label_attribute_of_issue: Issue's %{name} - permission_add_documents: Add documents - permission_edit_documents: Edit documents - permission_delete_documents: Delete documents - label_gantt_progress_line: Progress line - setting_jsonp_enabled: Enable JSONP support - field_inherit_members: Inherit members - field_closed_on: Closed - field_generate_password: Generate password - setting_default_projects_tracker_ids: Default trackers for new projects - label_total_time: Укупно - text_scm_config: You can configure your SCM commands in config/configuration.yml. Please restart the application after editing it. - text_scm_command_not_available: SCM command is not available. Please check settings on the administration panel. - setting_emails_header: Email header - notice_account_not_activated_yet: You haven't activated your account yet. If you want - to receive a new activation email, please click this link. - notice_account_locked: Your account is locked. - label_hidden: Hidden - label_visibility_private: to me only - label_visibility_roles: to these roles only - label_visibility_public: to any users - field_must_change_passwd: Must change password at next logon - notice_new_password_must_be_different: The new password must be different from the - current password - setting_mail_handler_excluded_filenames: Exclude attachments by name - text_convert_available: ImageMagick convert available (optional) - label_link: Link - label_only: only - label_drop_down_list: drop-down list - label_checkboxes: checkboxes - label_link_values_to: Link values to URL - setting_force_default_language_for_anonymous: Force default language for anonymous - users - setting_force_default_language_for_loggedin: Force default language for logged-in - users - label_custom_field_select_type: Select the type of object to which the custom field - is to be attached - label_issue_assigned_to_updated: Assignee updated - label_check_for_updates: Check for updates - label_latest_compatible_version: Latest compatible version - label_unknown_plugin: Unknown plugin - label_radio_buttons: radio buttons - label_group_anonymous: Anonymous users - label_group_non_member: Non member users - label_add_projects: Add projects - field_default_status: Default status - text_subversion_repository_note: 'Examples: file:///, http://, https://, svn://, svn+[tunnelscheme]://' - field_users_visibility: Users visibility - label_users_visibility_all: All active users - label_users_visibility_members_of_visible_projects: Members of visible projects - label_edit_attachments: Edit attached files - setting_link_copied_issue: Link issues on copy - label_link_copied_issue: Link copied issue - label_ask: Ask - label_search_attachments_yes: Search attachment filenames and descriptions - label_search_attachments_no: Do not search attachments - label_search_attachments_only: Search attachments only - label_search_open_issues_only: Open issues only - field_address: Е-адреса - setting_max_additional_emails: Maximum number of additional email addresses - label_email_address_plural: Emails - label_email_address_add: Add email address - label_enable_notifications: Enable notifications - label_disable_notifications: Disable notifications - setting_search_results_per_page: Search results per page - label_blank_value: blank - permission_copy_issues: Copy issues - error_password_expired: Your password has expired or the administrator requires you - to change it. - field_time_entries_visibility: Time logs visibility - setting_password_max_age: Require password change after - label_parent_task_attributes: Parent tasks attributes - label_parent_task_attributes_derived: Calculated from subtasks - label_parent_task_attributes_independent: Independent of subtasks - label_time_entries_visibility_all: All time entries - label_time_entries_visibility_own: Time entries created by the user - label_member_management: Member management - label_member_management_all_roles: All roles - label_member_management_selected_roles_only: Only these roles - label_password_required: Confirm your password to continue - label_total_spent_time: Целокупно утрошено време - notice_import_finished: "%{count} items have been imported" - notice_import_finished_with_errors: "%{count} out of %{total} items could not be imported" - error_invalid_file_encoding: The file is not a valid %{encoding} encoded file - error_invalid_csv_file_or_settings: The file is not a CSV file or does not match the - settings below - error_can_not_read_import_file: An error occurred while reading the file to import - permission_import_issues: Import issues - label_import_issues: Import issues - label_select_file_to_import: Select the file to import - label_fields_separator: Field separator - label_fields_wrapper: Field wrapper - label_encoding: Encoding - label_comma_char: Comma - label_semi_colon_char: Semicolon - label_quote_char: Quote - label_double_quote_char: Double quote - label_fields_mapping: Fields mapping - label_file_content_preview: File content preview - label_create_missing_values: Create missing values - button_import: Import - field_total_estimated_hours: Total estimated time - label_api: API - label_total_plural: Totals - label_assigned_issues: Assigned issues - label_field_format_enumeration: Key/value list - label_f_hour_short: '%{value} h' - field_default_version: Default version - error_attachment_extension_not_allowed: Attachment extension %{extension} is not allowed - setting_attachment_extensions_allowed: Allowed extensions - setting_attachment_extensions_denied: Disallowed extensions - label_any_open_issues: any open issues - label_no_open_issues: no open issues - label_default_values_for_new_users: Default values for new users - error_ldap_bind_credentials: Invalid LDAP Account/Password - setting_sys_api_key: API кључ - setting_lost_password: Изгубљена лозинка - mail_subject_security_notification: Security notification - mail_body_security_notification_change: ! '%{field} was changed.' - mail_body_security_notification_change_to: ! '%{field} was changed to %{value}.' - mail_body_security_notification_add: ! '%{field} %{value} was added.' - mail_body_security_notification_remove: ! '%{field} %{value} was removed.' - mail_body_security_notification_notify_enabled: Email address %{value} now receives - notifications. - mail_body_security_notification_notify_disabled: Email address %{value} no longer - receives notifications. - mail_body_settings_updated: ! 'The following settings were changed:' - field_remote_ip: IP address - label_wiki_page_new: New wiki page - label_relations: Relations - button_filter: Filter - mail_body_password_updated: Your password has been changed. - label_no_preview: No preview available - error_no_tracker_allowed_for_new_issue_in_project: The project doesn't have any trackers - for which you can create an issue - label_tracker_all: All trackers - label_new_project_issue_tab_enabled: Display the "New issue" tab - setting_new_item_menu_tab: Project menu tab for creating new objects - label_new_object_tab_enabled: Display the "+" drop-down - error_no_projects_with_tracker_allowed_for_new_issue: There are no projects with trackers - for which you can create an issue - field_textarea_font: Font used for text areas - label_font_default: Default font - label_font_monospace: Monospaced font - label_font_proportional: Proportional font - setting_timespan_format: Time span format - label_table_of_contents: Table of contents - setting_commit_logs_formatting: Apply text formatting to commit messages - setting_mail_handler_enable_regex: Enable regular expressions - error_move_of_child_not_possible: 'Subtask %{child} could not be moved to the new - project: %{errors}' - error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted: Spent time cannot - be reassigned to an issue that is about to be deleted - setting_timelog_required_fields: Required fields for time logs - label_attribute_of_object: '%{object_name}''s %{name}' - label_user_mail_option_only_assigned: Only for things I watch or I am assigned to - label_user_mail_option_only_owner: Only for things I watch or I am the owner of - warning_fields_cleared_on_bulk_edit: Changes will result in the automatic deletion - of values from one or more fields on the selected objects - field_updated_by: Updated by - field_last_updated_by: Last updated by - field_full_width_layout: Full width layout - label_last_notes: Last notes - field_digest: Checksum - field_default_assigned_to: Default assignee - setting_show_custom_fields_on_registration: Show custom fields on registration - permission_view_news: View news - label_no_preview_alternative_html: No preview available. %{link} the file instead. - label_no_preview_download: Download - setting_close_duplicate_issues: Close duplicate issues automatically - error_exceeds_maximum_hours_per_day: Cannot log more than %{max_hours} hours on the - same day (%{logged_hours} hours have already been logged) - setting_time_entry_list_defaults: Timelog list defaults - setting_timelog_accept_0_hours: Accept time logs with 0 hours - setting_timelog_max_hours_per_day: Maximum hours that can be logged per day and user - label_x_revisions: "%{count} revisions" - error_can_not_delete_auth_source: This authentication mode is in use and cannot be - deleted. - button_actions: Actions - mail_body_lost_password_validity: Please be aware that you may change the password - only once using this link. - text_login_required_html: When not requiring authentication, public projects and their - contents are openly available on the network. You can edit - the applicable permissions. - label_login_required_yes: 'Yes' - label_login_required_no: No, allow anonymous access to public projects - text_project_is_public_non_member: Public projects and their contents are available - to all logged-in users. - text_project_is_public_anonymous: Public projects and their contents are openly available - on the network. - label_version_and_files: Versions (%{count}) and Files - label_ldap: LDAP - label_ldaps_verify_none: LDAPS (without certificate check) - label_ldaps_verify_peer: LDAPS - label_ldaps_warning: It is recommended to use an encrypted LDAPS connection with certificate - check to prevent any manipulation during the authentication process. - label_nothing_to_preview: Nothing to preview - error_token_expired: This password recovery link has expired, please try again. - error_spent_on_future_date: Cannot log time on a future date - setting_timelog_accept_future_dates: Accept time logs on future dates - label_delete_link_to_subtask: Брисање релације - error_not_allowed_to_log_time_for_other_users: You are not allowed to log time - for other users - permission_log_time_for_other_users: Log spent time for other users - label_tomorrow: tomorrow - label_next_week: next week - label_next_month: next month - text_role_no_workflow: No workflow defined for this role - text_status_no_workflow: No tracker uses this status in the workflows - setting_mail_handler_preferred_body_part: Preferred part of multipart (HTML) emails - setting_show_status_changes_in_mail_subject: Show status changes in issue mail notifications - subject - label_inherited_from_parent_project: Inherited from parent project - label_inherited_from_group: Inherited from group %{name} - label_trackers_description: Trackers description - label_open_trackers_description: View all trackers description - label_preferred_body_part_text: Text - label_preferred_body_part_html: HTML (experimental) - field_parent_issue_subject: Parent task subject - permission_edit_own_issues: Edit own issues - text_select_apply_tracker: Select tracker - label_updated_issues: Updated issues - text_avatar_server_config_html: The current avatar server is %{url}. - You can configure it in config/configuration.yml. - setting_gantt_months_limit: Maximum number of months displayed on the gantt chart - permission_import_time_entries: Import time entries - label_import_notifications: Send email notifications during the import - text_gs_available: ImageMagick PDF support available (optional) - field_recently_used_projects: Number of recently used projects in jump box - label_optgroup_bookmarks: Bookmarks - label_optgroup_others: Other projects - label_optgroup_recents: Recently used - button_project_bookmark: Add bookmark - button_project_bookmark_delete: Remove bookmark - field_history_default_tab: Issue's history default tab - label_issue_history_properties: Property changes - label_issue_history_notes: Notes - label_last_tab_visited: Last visited tab - field_unique_id: Unique ID - text_no_subject: no subject - setting_password_required_char_classes: Required character classes for passwords - label_password_char_class_uppercase: uppercase letters - label_password_char_class_lowercase: lowercase letters - label_password_char_class_digits: digits - label_password_char_class_special_chars: special characters - text_characters_must_contain: Must contain %{character_classes}. - label_starts_with: starts with - label_ends_with: ends with - label_issue_fixed_version_updated: Target version updated - setting_project_list_defaults: Projects list defaults - label_display_type: Display results as - label_display_type_list: List - label_display_type_board: Board - label_my_bookmarks: My bookmarks - label_import_time_entries: Import time entries diff --git a/config/locales/sv.yml b/config/locales/sv.yml deleted file mode 100644 index 7e63510..0000000 --- a/config/locales/sv.yml +++ /dev/null @@ -1,1348 +0,0 @@ -# Swedish translation for Ruby on Rails -# by Johan Lundström (johanlunds@gmail.com), -# with parts taken from http://github.com/daniel/swe_rails -# Update based on Redmine 2.6.0 by Khedron Wilk (khedron.wilk@gmail.com) 6th Dec 2014 -sv: - number: - # Used in number_with_delimiter() - # These are also the defaults for 'currency', 'percentage', 'precision', and 'human' - format: - # Sets the separator between the units, for more precision (e.g. 1.0 / 2.0 == 0.5) - separator: "," - # Delimets thousands (e.g. 1,000,000 is a million) (always in groups of three) - delimiter: "." - # Number of decimals, behind the separator (the number 1 with a precision of 2 gives: 1.00) - precision: 2 - - # Used in number_to_currency() - currency: - format: - # Where is the currency sign? %u is the currency unit, %n the number (default: $5.00) - format: "%n %u" - unit: "kr" - # These three are to override number.format and are optional - # separator: "." - # delimiter: "," - # precision: 2 - - # Used in number_to_percentage() - percentage: - format: - # These three are to override number.format and are optional - # separator: - delimiter: "" - # precision: - - # Used in number_to_precision() - precision: - format: - # These three are to override number.format and are optional - # separator: - delimiter: "" - # precision: - - # Used in number_to_human_size() - human: - format: - # These three are to override number.format and are optional - # separator: - delimiter: "" - precision: 3 - storage_units: - format: "%n %u" - units: - byte: - one: "Byte" - other: "Bytes" - kb: "KB" - mb: "MB" - gb: "GB" - tb: "TB" - - # Used in distance_of_time_in_words(), distance_of_time_in_words_to_now(), time_ago_in_words() - datetime: - distance_in_words: - half_a_minute: "en halv minut" - less_than_x_seconds: - one: "mindre än en sekund" - other: "mindre än %{count} sekunder" - x_seconds: - one: "en sekund" - other: "%{count} sekunder" - less_than_x_minutes: - one: "mindre än en minut" - other: "mindre än %{count} minuter" - x_minutes: - one: "en minut" - other: "%{count} minuter" - about_x_hours: - one: "ungefär en timme" - other: "ungefär %{count} timmar" - x_hours: - one: "1 timme" - other: "%{count} timmar" - x_days: - one: "en dag" - other: "%{count} dagar" - about_x_months: - one: "ungefär en månad" - other: "ungefär %{count} månader" - x_months: - one: "en månad" - other: "%{count} månader" - about_x_years: - one: "ungefär ett år" - other: "ungefär %{count} år" - over_x_years: - one: "mer än ett år" - other: "mer än %{count} år" - almost_x_years: - one: "nästan 1 år" - other: "nästan %{count} år" - - activerecord: - errors: - template: - header: - one: "Ett fel förhindrade denna %{model} från att sparas" - other: "%{count} fel förhindrade denna %{model} från att sparas" - # The variable :count is also available - body: "Det var problem med följande fält:" - # The values :model, :attribute and :value are always available for interpolation - # The value :count is available when applicable. Can be used for pluralization. - messages: - inclusion: "finns inte i listan" - exclusion: "är reserverat" - invalid: "är ogiltigt" - confirmation: "stämmer inte överens" - accepted : "måste vara accepterad" - empty: "får ej vara tom" - blank: "måste anges" - too_long: "är för lång (maximum är %{count} tecken)" - too_short: "är för kort (minimum är %{count} tecken)" - wrong_length: "har fel längd (ska vara %{count} tecken)" - taken: "har redan tagits" - not_a_number: "är inte ett nummer" - greater_than: "måste vara större än %{count}" - greater_than_or_equal_to: "måste vara större än eller lika med %{count}" - equal_to: "måste vara samma som" - less_than: "måste vara mindre än %{count}" - less_than_or_equal_to: "måste vara mindre än eller lika med %{count}" - odd: "måste vara udda" - even: "måste vara jämnt" - greater_than_start_date: "måste vara senare än startdatumet" - not_same_project: "tillhör inte samma projekt" - circular_dependency: "Denna relation skulle skapa ett cirkulärt beroende" - cant_link_an_issue_with_a_descendant: "Ett ärende kan inte länkas till ett av dess underärenden" - earlier_than_minimum_start_date: "kan inte vara tidigare än %{date} på grund av föregående ärenden" - not_a_regexp: "is not a valid regular expression" - open_issue_with_closed_parent: "An open issue cannot be attached to a closed parent task" - must_contain_uppercase: "must contain uppercase letters (A-Z)" - must_contain_lowercase: "must contain lowercase letters (a-z)" - must_contain_digits: "must contain digits (0-9)" - must_contain_special_chars: "must contain special characters (!, $, %, ...)" - - direction: ltr - date: - formats: - # Use the strftime parameters for formats. - # When no format has been given, it uses default. - # You can provide other formats here if you like! - default: "%Y-%m-%d" - short: "%e %b" - long: "%e %B, %Y" - - day_names: [söndag, måndag, tisdag, onsdag, torsdag, fredag, lördag] - abbr_day_names: [sön, mån, tis, ons, tor, fre, lör] - - # Don't forget the nil at the beginning; there's no such thing as a 0th month - month_names: [~, januari, februari, mars, april, maj, juni, juli, augusti, september, oktober, november, december] - abbr_month_names: [~, jan, feb, mar, apr, maj, jun, jul, aug, sep, okt, nov, dec] - # Used in date_select and datime_select. - order: - - :day - - :month - - :year - - time: - formats: - default: "%Y-%m-%d %H:%M" - time: "%H:%M" - short: "%d %b %H:%M" - long: "%d %B, %Y %H:%M" - am: "" - pm: "" - -# Used in array.to_sentence. - support: - array: - sentence_connector: "och" - skip_last_comma: true - - actionview_instancetag_blank_option: Var god välj - - general_text_No: 'Nej' - general_text_Yes: 'Ja' - general_text_no: 'nej' - general_text_yes: 'ja' - general_lang_name: 'Swedish (Svenska)' - general_csv_separator: ',' - general_csv_decimal_separator: '.' - general_csv_encoding: ISO-8859-1 - general_pdf_fontname: freesans - general_pdf_monospaced_fontname: freemono - general_first_day_of_week: '1' - - notice_account_updated: Kontot har uppdaterats - notice_account_invalid_credentials: Fel användarnamn eller lösenord - notice_account_password_updated: Lösenordet har uppdaterats - notice_account_wrong_password: Fel lösenord - notice_account_register_done: Kontot har skapats. För att aktivera kontot, klicka på länken i mailet som skickades till dig. - notice_account_unknown_email: Okänd användare. - notice_can_t_change_password: Detta konto använder en extern autentiseringskälla. Det går inte att byta lösenord. - notice_account_lost_email_sent: Ett mail med instruktioner om hur man väljer ett nytt lösenord har skickats till dig. - notice_account_activated: Ditt konto har blivit aktiverat. Du kan nu logga in. - notice_successful_create: Skapades korrekt. - notice_successful_update: Uppdatering lyckades. - notice_successful_delete: Borttagning lyckades. - notice_successful_connection: Uppkoppling lyckades. - notice_file_not_found: Sidan du försökte komma åt existerar inte eller är borttagen. - notice_locking_conflict: Data har uppdaterats av en annan användare. - notice_not_authorized: Du saknar behörighet att komma åt den här sidan. - notice_not_authorized_archived_project: Projektet du försöker komma åt har arkiverats. - notice_email_sent: "Ett mail skickades till %{value}" - notice_email_error: "Ett fel inträffade när mail skickades (%{value})" - notice_feeds_access_key_reseted: Din Atom-nyckel återställdes. - notice_api_access_key_reseted: Din API-nyckel återställdes. - notice_failed_to_save_issues: "Misslyckades med att spara %{count} ärende(n) på %{total} valda: %{ids}." - notice_failed_to_save_time_entries: "Misslyckades med att spara %{count} tidloggning(ar) på %{total} valda: %{ids}." - notice_failed_to_save_members: "Misslyckades med att spara medlem(mar): %{errors}." - notice_no_issue_selected: "Inget ärende är markerat! Var vänlig, markera de ärenden du vill ändra." - notice_account_pending: "Ditt konto skapades och avvaktar nu administratörens godkännande." - notice_default_data_loaded: Standardkonfiguration inläst. - notice_unable_delete_version: Denna version var inte möjlig att ta bort. - notice_unable_delete_time_entry: Tidloggning kunde inte tas bort. - notice_issue_done_ratios_updated: "% klart uppdaterade." - notice_gantt_chart_truncated: "Schemat förminskades eftersom det överskrider det maximala antalet aktiviteter som kan visas (%{max})" - notice_issue_successful_create: "Ärende %{id} skapades." - notice_issue_update_conflict: "Detta ärende har uppdaterats av en annan användare samtidigt som du redigerade det." - notice_account_deleted: "Ditt konto har avslutats permanent." - notice_user_successful_create: "Användare %{id} skapad." - - error_can_t_load_default_data: "Standardkonfiguration gick inte att läsa in: %{value}" - error_scm_not_found: "Inlägg och/eller revision finns inte i detta versionsarkiv." - error_scm_command_failed: "Ett fel inträffade vid försök att nå versionsarkivet: %{value}" - error_scm_annotate: "Inlägget existerar inte eller kan inte kommenteras." - error_scm_annotate_big_text_file: Inlägget kan inte annoteras eftersom det överskrider maximal storlek för textfiler. - error_issue_not_found_in_project: 'Ärendet hittades inte eller så tillhör det inte detta projekt' - error_no_tracker_in_project: 'Ingen ärendetyp är associerad med projektet. Vänligen kontrollera projektinställningarna.' - error_no_default_issue_status: 'Ingen status är definierad som standard för nya ärenden. Vänligen kontrollera din konfiguration (Gå till "Administration -> Ärendestatus").' - error_can_not_delete_custom_field: Kan inte ta bort användardefinerat fält - error_can_not_delete_tracker: "Det finns ärenden av denna typ och den är därför inte möjlig att ta bort." - error_can_not_remove_role: "Denna roll används och den är därför inte möjlig att ta bort." - error_can_not_reopen_issue_on_closed_version: 'Ett ärende tilldelat en stängd version kan inte öppnas på nytt' - error_can_not_archive_project: Detta projekt kan inte arkiveras - error_issue_done_ratios_not_updated: "% klart inte uppdaterade." - error_workflow_copy_source: 'Vänligen välj källans ärendetyp eller roll' - error_workflow_copy_target: 'Vänligen välj ärendetyp(er) och roll(er) för mål' - error_unable_delete_issue_status: 'Ärendestatus kunde inte tas bort (%{value})' - error_unable_to_connect: "Kan inte ansluta (%{value})" - error_attachment_too_big: "Denna fil kan inte laddas upp eftersom den överstiger maximalt tillåten filstorlek (%{max_size})" - error_session_expired: "Din session har gått ut. Vänligen logga in på nytt." - warning_attachments_not_saved: "%{count} fil(er) kunde inte sparas." - - mail_subject_lost_password: "Ditt %{value} lösenord" - mail_body_lost_password: 'För att ändra ditt lösenord, klicka på följande länk:' - mail_subject_register: "Din %{value} kontoaktivering" - mail_body_register: 'För att aktivera ditt konto, klicka på följande länk:' - mail_body_account_information_external: "Du kan använda ditt %{value}-konto för att logga in." - mail_body_account_information: Din kontoinformation - mail_subject_account_activation_request: "%{value} begäran om kontoaktivering" - mail_body_account_activation_request: "En ny användare (%{value}) har registrerat sig och avvaktar ditt godkännande:" - mail_subject_reminder: "%{count} ärende(n) har deadline under de kommande %{days} dagarna" - mail_body_reminder: "%{count} ärende(n) som är tilldelat dig har deadline under de %{days} dagarna:" - mail_subject_wiki_content_added: "'%{id}' wikisida has lagts till" - mail_body_wiki_content_added: "The '%{id}' wikisida has lagts till av %{author}." - mail_subject_wiki_content_updated: "'%{id}' wikisida har uppdaterats" - mail_body_wiki_content_updated: "The '%{id}' wikisida har uppdaterats av %{author}." - - - field_name: Namn - field_description: Beskrivning - field_summary: Sammanfattning - field_is_required: Obligatorisk - field_firstname: Förnamn - field_lastname: Efternamn - field_mail: Mail - field_filename: Fil - field_filesize: Storlek - field_downloads: Nerladdningar - field_author: Författare - field_created_on: Skapad - field_updated_on: Uppdaterad - field_closed_on: Stängd - field_field_format: Format - field_is_for_all: För alla projekt - field_possible_values: Möjliga värden - field_regexp: Reguljärt uttryck - field_min_length: Minimilängd - field_max_length: Maxlängd - field_value: Värde - field_category: Kategori - field_title: Titel - field_project: Projekt - field_issue: Ärende - field_status: Status - field_notes: Anteckningar - field_is_closed: Ärendet är stängt - field_is_default: Standardvärde - field_tracker: Ärendetyp - field_subject: Ämne - field_due_date: Deadline - field_assigned_to: Tilldelad till - field_priority: Prioritet - field_fixed_version: Versionsmål - field_user: Användare - field_principal: Principal - field_role: Roll - field_homepage: Hemsida - field_is_public: Publik - field_parent: Underprojekt till - field_is_in_roadmap: Visa ärenden i roadmap - field_login: Användarnamn - field_mail_notification: Mailnotifieringar - field_admin: Administratör - field_last_login_on: Senaste inloggning - field_language: Språk - field_effective_date: Datum - field_password: Lösenord - field_new_password: Nytt lösenord - field_password_confirmation: Bekräfta lösenord - field_version: Version - field_type: Typ - field_host: Värddator - field_port: Port - field_account: Konto - field_base_dn: Bas-DN - field_attr_login: Inloggningsattribut - field_attr_firstname: Förnamnsattribut - field_attr_lastname: Efternamnsattribut - field_attr_mail: Mailattribut - field_onthefly: Skapa användare on-the-fly - field_start_date: Startdatum - field_done_ratio: "% Klart" - field_auth_source: Autentiseringsläge - field_hide_mail: Dölj min mailadress - field_comments: Kommentar - field_url: URL - field_start_page: Startsida - field_subproject: Underprojekt - field_hours: Timmar - field_activity: Aktivitet - field_spent_on: Datum - field_identifier: Identifierare - field_is_filter: Använd som filter - field_issue_to: Relaterade ärenden - field_delay: Fördröjning - field_assignable: Ärenden kan tilldelas denna roll - field_redirect_existing_links: Omdirigera existerande länkar - field_estimated_hours: Estimerad tid - field_column_names: Kolumner - field_time_entries: Spenderad tid - field_time_zone: Tidszon - field_searchable: Sökbar - field_default_value: Standardvärde - field_comments_sorting: Visa kommentarer - field_parent_title: Föräldersida - field_editable: Redigerbar - field_watcher: Bevakare - field_identity_url: OpenID URL - field_content: Innehåll - field_group_by: Gruppera resultat efter - field_sharing: Delning - field_parent_issue: Förälderaktivitet - field_member_of_group: "Tilldelad användares grupp" - field_assigned_to_role: "Tilldelad användares roll" - field_text: Textfält - field_visible: Synlig - field_warn_on_leaving_unsaved: Varna om jag lämnar en sida med osparad text - field_issues_visibility: Ärendesynlighet - field_is_private: Privat - field_commit_logs_encoding: Teckenuppsättning för commit-meddelanden - field_scm_path_encoding: Sökvägskodning - field_path_to_repository: Sökväg till versionsarkiv - field_root_directory: Rotmapp - field_cvsroot: CVSROOT - field_cvs_module: Modul - field_repository_is_default: Huvudarkiv - field_multiple: Flera värden - field_auth_source_ldap_filter: LDAP-filter - field_core_fields: Standardfält - field_timeout: "Timeout (i sekunder)" - field_board_parent: Förälderforum - field_private_notes: Privata anteckningar - field_inherit_members: Ärv medlemmar - field_generate_password: Generera lösenord - - setting_app_title: Applikationsrubrik - setting_welcome_text: Välkomsttext - setting_default_language: Standardspråk - setting_login_required: Kräver inloggning - setting_self_registration: Självregistrering - setting_attachment_max_size: Maxstorlek på bilaga - setting_issues_export_limit: Exportgräns för ärenden - setting_mail_from: Avsändaradress - setting_bcc_recipients: Hemlig kopia (bcc) till mottagare - setting_plain_text_mail: Oformaterad text i mail (ingen HTML) - setting_host_name: Värddatornamn - setting_text_formatting: Textformatering - setting_wiki_compression: Komprimering av wikihistorik - setting_feeds_limit: Innehållsgräns för Feed - setting_default_projects_public: Nya projekt är publika - setting_autofetch_changesets: Automatisk hämtning av commits - setting_sys_api_enabled: Aktivera WS för versionsarkivhantering - setting_commit_ref_keywords: Referens-nyckelord - setting_commit_fix_keywords: Fix-nyckelord - setting_autologin: Automatisk inloggning - setting_date_format: Datumformat - setting_time_format: Tidsformat - setting_cross_project_subtasks: Tillåt underaktiviteter mellan projekt - setting_cross_project_issue_relations: Tillåt ärenderelationer mellan projekt - setting_issue_list_default_columns: Standardkolumner i ärendelistan - setting_repositories_encodings: Encoding för bilagor och versionsarkiv - setting_emails_header: Mail-header - setting_emails_footer: Signatur - setting_protocol: Protokoll - setting_per_page_options: Alternativ, objekt per sida - setting_user_format: Visningsformat för användare - setting_activity_days_default: Dagar som visas på projektaktivitet - setting_display_subprojects_issues: Visa ärenden från underprojekt i huvudprojekt - setting_enabled_scm: Aktivera SCM - setting_mail_handler_body_delimiters: "Trunkera mail efter en av följande rader" - setting_mail_handler_api_enabled: Aktivera WS för inkommande mail - setting_mail_handler_api_key: API-nyckel - setting_sequential_project_identifiers: Generera projektidentifierare sekventiellt - setting_gravatar_enabled: Använd Gravatar-avatarer - setting_gravatar_default: Förvald Gravatar-bild - setting_diff_max_lines_displayed: Maximalt antal synliga rader i diff - setting_file_max_size_displayed: Maxstorlek på textfiler som visas inline - setting_repository_log_display_limit: Maximalt antal revisioner i filloggen - setting_openid: Tillåt inloggning och registrering med OpenID - setting_password_min_length: Minsta tillåtna lösenordslängd - setting_new_project_user_role_id: Tilldelad roll för en icke-administratör som skapar ett projekt - setting_default_projects_modules: Aktiverade moduler för nya projekt - setting_issue_done_ratio: Beräkna % klart med - setting_issue_done_ratio_issue_field: Använd ärendefältet - setting_issue_done_ratio_issue_status: Använd ärendestatus - setting_start_of_week: Första dagen i veckan - setting_rest_api_enabled: Aktivera REST webbtjänst - setting_cache_formatted_text: Cacha formaterad text - setting_default_notification_option: Standard notifieringsalternativ - setting_commit_logtime_enabled: Aktivera tidloggning - setting_commit_logtime_activity_id: Aktivitet för loggad tid - setting_gantt_items_limit: Maximalt antal aktiviteter som visas i gantt-schemat - setting_issue_group_assignment: Tillåt att ärenden tilldelas till grupper - setting_default_issue_start_date_to_creation_date: Använd dagens datum som startdatum för nya ärenden - setting_commit_cross_project_ref: Tillåt ärende i alla de andra projekten att bli refererade och fixade - setting_unsubscribe: Tillåt användare att avsluta prenumereration - setting_session_lifetime: Maximal sessionslivslängd - setting_session_timeout: Tidsgräns för sessionsinaktivitet - setting_thumbnails_enabled: Visa miniatyrbilder av bilagor - setting_thumbnails_size: Storlek på miniatyrbilder (i pixlar) - setting_non_working_week_days: Lediga dagar - setting_jsonp_enabled: Aktivera JSONP-stöd - setting_default_projects_tracker_ids: Standardärendetyper för nya projekt - - permission_add_project: Skapa projekt - permission_add_subprojects: Skapa underprojekt - permission_edit_project: Ändra projekt - permission_close_project: Stänga / återöppna projektet - permission_select_project_modules: Välja projektmoduler - permission_manage_members: Hantera medlemmar - permission_manage_project_activities: Hantera projektaktiviteter - permission_manage_versions: Hantera versioner - permission_manage_categories: Hantera ärendekategorier - permission_add_issues: Lägga till ärenden - permission_edit_issues: Ändra ärenden - permission_view_issues: Visa ärenden - permission_manage_issue_relations: Hantera ärenderelationer - permission_set_issues_private: Sätta ärenden publika eller privata - permission_set_own_issues_private: Sätta egna ärenden publika eller privata - permission_add_issue_notes: Lägga till ärendeanteckning - permission_edit_issue_notes: Ändra ärendeanteckningar - permission_edit_own_issue_notes: Ändra egna ärendeanteckningar - permission_view_private_notes: Visa privata anteckningar - permission_set_notes_private: Ställa in anteckningar som privata - permission_delete_issues: Ta bort ärenden - permission_manage_public_queries: Hantera publika frågor - permission_save_queries: Spara frågor - permission_view_gantt: Visa Gantt-schema - permission_view_calendar: Visa kalender - permission_view_issue_watchers: Visa bevakarlista - permission_add_issue_watchers: Lägga till bevakare - permission_delete_issue_watchers: Ta bort bevakare - permission_log_time: Logga spenderad tid - permission_view_time_entries: Visa spenderad tid - permission_edit_time_entries: Ändra tidloggningar - permission_edit_own_time_entries: Ändra egna tidloggningar - permission_manage_news: Hantera nyheter - permission_comment_news: Kommentera nyheter - permission_view_documents: Visa dokument - permission_add_documents: Lägga till dokument - permission_edit_documents: Ändra dokument - permission_delete_documents: Ta bort dokument - permission_manage_files: Hantera filer - permission_view_files: Visa filer - permission_manage_wiki: Hantera wiki - permission_rename_wiki_pages: Byta namn på wikisidor - permission_delete_wiki_pages: Ta bort wikisidor - permission_view_wiki_pages: Visa wiki - permission_view_wiki_edits: Visa wikihistorik - permission_edit_wiki_pages: Ändra wikisidor - permission_delete_wiki_pages_attachments: Ta bort bilagor - permission_protect_wiki_pages: Skydda wikisidor - permission_manage_repository: Hantera versionsarkiv - permission_browse_repository: Bläddra i versionsarkiv - permission_view_changesets: Visa changesets - permission_commit_access: Commit-åtkomst - permission_manage_boards: Hantera forum - permission_view_messages: Visa meddelanden - permission_add_messages: Lägg till meddelanden - permission_edit_messages: Ändra meddelanden - permission_edit_own_messages: Ändra egna meddelanden - permission_delete_messages: Ta bort meddelanden - permission_delete_own_messages: Ta bort egna meddelanden - permission_export_wiki_pages: Exportera wikisidor - permission_manage_subtasks: Hantera underaktiviteter - permission_manage_related_issues: Hantera relaterade ärenden - - project_module_issue_tracking: Ärendeuppföljning - project_module_time_tracking: Tidsuppföljning - project_module_news: Nyheter - project_module_documents: Dokument - project_module_files: Filer - project_module_wiki: Wiki - project_module_repository: Versionsarkiv - project_module_boards: Forum - project_module_calendar: Kalender - project_module_gantt: Gantt - - label_user: Användare - label_user_plural: Användare - label_user_new: Ny användare - label_user_anonymous: Anonym - label_project: Projekt - label_project_new: Nytt projekt - label_project_plural: Projekt - label_x_projects: - zero: inga projekt - one: 1 projekt - other: "%{count} projekt" - label_project_all: Alla projekt - label_project_latest: Senaste projekt - label_issue: Ärende - label_issue_new: Nytt ärende - label_issue_plural: Ärenden - label_issue_view_all: Visa alla ärenden - label_issues_by: "Ärenden %{value}" - label_issue_added: Ärende tillagt - label_issue_updated: Ärende uppdaterat - label_issue_note_added: Anteckning tillagd - label_issue_status_updated: Status uppdaterad - label_issue_priority_updated: Prioritet uppdaterad - label_document: Dokument - label_document_new: Nytt dokument - label_document_plural: Dokument - label_document_added: Dokument tillagt - label_role: Roll - label_role_plural: Roller - label_role_new: Ny roll - label_role_and_permissions: Roller och behörigheter - label_role_anonymous: Anonym - label_role_non_member: Icke-medlem - label_member: Medlem - label_member_new: Ny medlem - label_member_plural: Medlemmar - label_tracker: Ärendetyp - label_tracker_plural: Ärendetyper - label_tracker_new: Ny ärendetyp - label_workflow: Arbetsflöde - label_issue_status: Ärendestatus - label_issue_status_plural: Ärendestatus - label_issue_status_new: Ny status - label_issue_category: Ärendekategori - label_issue_category_plural: Ärendekategorier - label_issue_category_new: Ny kategori - label_custom_field: Användardefinerat fält - label_custom_field_plural: Användardefinerade fält - label_custom_field_new: Nytt användardefinerat fält - label_enumerations: Uppräkningar - label_enumeration_new: Nytt värde - label_information: Information - label_information_plural: Information - label_register: Registrera - label_login_with_open_id_option: eller logga in med OpenID - label_password_lost: Glömt lösenord - label_home: Hem - label_my_page: Min sida - label_my_account: Mitt konto - label_my_projects: Mina projekt - label_administration: Administration - label_login: Logga in - label_logout: Logga ut - label_help: Hjälp - label_reported_issues: Rapporterade ärenden - label_assigned_to_me_issues: Ärenden tilldelade till mig - label_last_login: Senaste inloggning - label_registered_on: Registrerad - label_activity: Aktivitet - label_overall_activity: All aktivitet - label_user_activity: "Aktiviteter för %{value}" - label_new: Ny - label_logged_as: Inloggad som - label_environment: Miljö - label_authentication: Autentisering - label_auth_source: Autentiseringsläge - label_auth_source_new: Nytt autentiseringsläge - label_auth_source_plural: Autentiseringslägen - label_subproject_plural: Underprojekt - label_subproject_new: Nytt underprojekt - label_and_its_subprojects: "%{value} och dess underprojekt" - label_min_max_length: Min./Max.-längd - label_list: Lista - label_date: Datum - label_integer: Heltal - label_float: Flyttal - label_boolean: Boolean - label_string: Text - label_text: Lång text - label_attribute: Attribut - label_attribute_plural: Attribut - label_no_data: Ingen data att visa - label_change_status: Ändra status - label_history: Historia - label_attachment: Fil - label_attachment_new: Ny fil - label_attachment_delete: Ta bort fil - label_attachment_plural: Filer - label_file_added: Fil tillagd - label_report: Rapport - label_report_plural: Rapporter - label_news: Nyhet - label_news_new: Lägg till nyhet - label_news_plural: Nyheter - label_news_latest: Senaste nyheterna - label_news_view_all: Visa alla nyheter - label_news_added: Nyhet tillagd - label_news_comment_added: Kommentar tillagd till en nyhet - label_settings: Inställningar - label_overview: Översikt - label_version: Version - label_version_new: Ny version - label_version_plural: Versioner - label_close_versions: Stäng klara versioner - label_confirmation: Bekräftelse - label_export_to: 'Finns även som:' - label_read: Läs... - label_public_projects: Publika projekt - label_open_issues: öppen - label_open_issues_plural: öppna - label_closed_issues: stängd - label_closed_issues_plural: stängda - label_x_open_issues_abbr: - zero: 0 öppna - one: 1 öppen - other: "%{count} öppna" - label_x_closed_issues_abbr: - zero: 0 stängda - one: 1 stängd - other: "%{count} stängda" - label_x_issues: - zero: 0 ärenden - one: 1 ärende - other: "%{count} ärenden" - label_total: Total - label_total_time: Total tid - label_permissions: Behörigheter - label_current_status: Nuvarande status - label_new_statuses_allowed: Nya tillåtna statusvärden - label_all: alla - label_any: vad/vem som helst - label_none: inget/ingen - label_nobody: ingen - label_next: Nästa - label_previous: Föregående - label_used_by: Använd av - label_details: Detaljer - label_add_note: Lägg till anteckning - label_calendar: Kalender - label_months_from: månader från - label_gantt: Gantt - label_internal: Intern - label_last_changes: "senaste %{count} ändringar" - label_change_view_all: Visa alla ändringar - label_comment: Kommentar - label_comment_plural: Kommentarer - label_x_comments: - zero: inga kommentarer - one: 1 kommentar - other: "%{count} kommentarer" - label_comment_add: Lägg till kommentar - label_comment_added: Kommentar tillagd - label_comment_delete: Ta bort kommentar - label_query: Användardefinerad fråga - label_query_plural: Användardefinerade frågor - label_query_new: Ny fråga - label_my_queries: Mina egna frågor - label_filter_add: Lägg till filter - label_filter_plural: Filter - label_equals: är - label_not_equals: är inte - label_in_less_than: om mindre än - label_in_more_than: om mer än - label_in_the_next_days: under kommande - label_in_the_past_days: under föregående - label_greater_or_equal: '>=' - label_less_or_equal: '<=' - label_between: mellan - label_in: om - label_today: idag - label_yesterday: igår - label_this_week: denna vecka - label_last_week: senaste veckan - label_last_n_weeks: "senaste %{count} veckorna" - label_last_n_days: "senaste %{count} dagarna" - label_this_month: denna månad - label_last_month: senaste månaden - label_this_year: detta året - label_date_range: Datumintervall - label_less_than_ago: mindre än dagar sedan - label_more_than_ago: mer än dagar sedan - label_ago: dagar sedan - label_contains: innehåller - label_not_contains: innehåller inte - label_any_issues_in_project: några ärenden i projektet - label_any_issues_not_in_project: några ärenden utanför projektet - label_no_issues_in_project: inga ärenden i projektet - label_day_plural: dagar - label_repository: Versionsarkiv - label_repository_new: Nytt versionsarkiv - label_repository_plural: Versionsarkiv - label_browse: Bläddra - label_branch: Branch - label_tag: Tag - label_revision: Revision - label_revision_plural: Revisioner - label_revision_id: "Revision %{value}" - label_associated_revisions: Associerade revisioner - label_added: tillagd - label_modified: modifierad - label_copied: kopierad - label_renamed: omdöpt - label_deleted: borttagen - label_latest_revision: Senaste revisionen - label_latest_revision_plural: Senaste revisionerna - label_view_revisions: Visa revisioner - label_view_all_revisions: Visa alla revisioner - label_max_size: Maxstorlek - label_sort_highest: Flytta till toppen - label_sort_higher: Flytta upp - label_sort_lower: Flytta ner - label_sort_lowest: Flytta till botten - label_roadmap: Roadmap - label_roadmap_due_in: "Färdig om %{value}" - label_roadmap_overdue: "%{value} sen" - label_roadmap_no_issues: Inga ärenden för denna version - label_search: Sök - label_result_plural: Resultat - label_all_words: Alla ord - label_wiki: Wiki - label_wiki_edit: Wikiändring - label_wiki_edit_plural: Wikiändringar - label_wiki_page: Wikisida - label_wiki_page_plural: Wikisidor - label_index_by_title: Innehåll efter titel - label_index_by_date: Innehåll efter datum - label_current_version: Nuvarande version - label_preview: Förhandsgranska - label_feed_plural: Feeds - label_changes_details: Detaljer om alla ändringar - label_issue_tracking: Ärendeuppföljning - label_spent_time: Spenderad tid - label_overall_spent_time: Total tid spenderad - label_f_hour: "%{value} timme" - label_f_hour_plural: "%{value} timmar" - label_time_tracking: Tidsuppföljning - label_change_plural: Ändringar - label_statistics: Statistik - label_commits_per_month: Commits per månad - label_commits_per_author: Commits per författare - label_diff: diff - label_view_diff: Visa skillnader - label_diff_inline: i texten - label_diff_side_by_side: sida vid sida - label_options: Inställningar - label_copy_workflow_from: Kopiera arbetsflöde från - label_permissions_report: Behörighetsrapport - label_watched_issues: Bevakade ärenden - label_related_issues: Relaterade ärenden - label_applied_status: Tilldelad status - label_loading: Laddar... - label_relation_new: Ny relation - label_relation_delete: Ta bort relation - label_relates_to: Relaterar till - label_duplicates: Kopierar - label_duplicated_by: Kopierad av - label_blocks: Blockerar - label_blocked_by: Blockerad av - label_precedes: Kommer före - label_follows: Följer - label_copied_to: Kopierad till - label_copied_from: Kopierad från - label_stay_logged_in: Förbli inloggad - label_disabled: inaktiverad - label_show_completed_versions: Visa färdiga versioner - label_me: mig - label_board: Forum - label_board_new: Nytt forum - label_board_plural: Forum - label_board_locked: Låst - label_board_sticky: Sticky - label_topic_plural: Ämnen - label_message_plural: Meddelanden - label_message_last: Senaste meddelande - label_message_new: Nytt meddelande - label_message_posted: Meddelande tillagt - label_reply_plural: Svar - label_send_information: Skicka kontoinformation till användaren - label_year: År - label_month: Månad - label_week: Vecka - label_date_from: Från - label_date_to: Till - label_language_based: Språkbaserad - label_sort_by: "Sortera på %{value}" - label_send_test_email: Skicka testmail - label_feeds_access_key: Atom-nyckel - label_missing_feeds_access_key: Saknar en Atom-nyckel - label_feeds_access_key_created_on: "Atom-nyckel skapad för %{value} sedan" - label_module_plural: Moduler - label_added_time_by: "Tillagd av %{author} för %{age} sedan" - label_updated_time_by: "Uppdaterad av %{author} för %{age} sedan" - label_updated_time: "Uppdaterad för %{value} sedan" - label_jump_to_a_project: Gå till projekt... - label_file_plural: Filer - label_changeset_plural: Changesets - label_default_columns: Standardkolumner - label_no_change_option: (Ingen ändring) - label_bulk_edit_selected_issues: Gemensam ändring av markerade ärenden - label_bulk_edit_selected_time_entries: Gruppredigera valda tidloggningar - label_theme: Tema - label_default: Standard - label_search_titles_only: Sök endast i titlar - label_user_mail_option_all: "För alla händelser i mina projekt" - label_user_mail_option_selected: "För alla händelser i markerade projekt..." - label_user_mail_option_none: "Inga händelser" - label_user_mail_option_only_my_events: "Endast för saker jag bevakar eller är inblandad i" - label_user_mail_no_self_notified: "Jag vill inte bli underrättad om ändringar som jag har gjort" - label_registration_activation_by_email: kontoaktivering med mail - label_registration_manual_activation: manuell kontoaktivering - label_registration_automatic_activation: automatisk kontoaktivering - label_display_per_page: "Per sida: %{value}" - label_age: Ålder - label_change_properties: Ändra inställningar - label_general: Allmänt - label_scm: SCM - label_plugins: Tillägg - label_ldap_authentication: LDAP-autentisering - label_downloads_abbr: Nerl. - label_optional_description: Valfri beskrivning - label_add_another_file: Lägg till ytterligare en fil - label_preferences: Användarinställningar - label_chronological_order: I kronologisk ordning - label_reverse_chronological_order: I omvänd kronologisk ordning - label_incoming_emails: Inkommande mail - label_generate_key: Generera en nyckel - label_issue_watchers: Bevakare - label_example: Exempel - label_display: Visa - label_sort: Sortera - label_descending: Fallande - label_ascending: Stigande - label_date_from_to: Från %{start} till %{end} - label_wiki_content_added: Wikisida tillagd - label_wiki_content_updated: Wikisida uppdaterad - label_group: Grupp - label_group_plural: Grupper - label_group_new: Ny grupp - label_time_entry_plural: Spenderad tid - label_version_sharing_none: Inte delad - label_version_sharing_descendants: Med underprojekt - label_version_sharing_hierarchy: Med projekthierarki - label_version_sharing_tree: Med projektträd - label_version_sharing_system: Med alla projekt - label_update_issue_done_ratios: Uppdatera % klart - label_copy_source: Källa - label_copy_target: Mål - label_copy_same_as_target: Samma som mål - label_display_used_statuses_only: Visa endast status som används av denna ärendetyp - label_api_access_key: API-nyckel - label_missing_api_access_key: Saknar en API-nyckel - label_api_access_key_created_on: "API-nyckel skapad för %{value} sedan" - label_profile: Profil - label_subtask_plural: Underaktiviteter - label_project_copy_notifications: Skicka mailnotifieringar när projektet kopieras - label_principal_search: "Sök efter användare eller grupp:" - label_user_search: "Sök efter användare:" - label_additional_workflow_transitions_for_author: Ytterligare övergångar tillåtna när användaren är den som skapat ärendet - label_additional_workflow_transitions_for_assignee: Ytterligare övergångar tillåtna när användaren är den som tilldelats ärendet - label_issues_visibility_all: Alla ärenden - label_issues_visibility_public: Alla icke-privata ärenden - label_issues_visibility_own: Ärenden skapade av eller tilldelade till användaren - label_git_report_last_commit: Rapportera senaste commit av filer och mappar - label_parent_revision: Förälder - label_child_revision: Barn - label_export_options: "%{export_format} exportalternativ" - label_copy_attachments: Kopiera bilagor - label_copy_subtasks: Kopiera underaktiviteter - label_item_position: "%{position}/%{count}" - label_completed_versions: Klara versioner - label_search_for_watchers: Sök efter bevakare att lägga till - label_session_expiration: Sessionsutgång - label_status_transitions: Statusövergångar - label_fields_permissions: Fältbehörigheter - label_readonly: Skrivskyddad - label_required: Nödvändig - label_attribute_of_project: Projektets %{name} - label_attribute_of_issue: Ärendets %{name} - label_attribute_of_author: Författarens %{name} - label_attribute_of_assigned_to: Tilldelad användares %{name} - label_attribute_of_user: Användarens %{name} - label_attribute_of_fixed_version: Målversionens %{name} - label_cross_project_descendants: Med underprojekt - label_cross_project_tree: Med projektträd - label_cross_project_hierarchy: Med projekthierarki - label_cross_project_system: Med alla projekt - label_gantt_progress_line: Framstegslinje - - button_login: Logga in - button_submit: Skicka - button_save: Spara - button_check_all: Markera alla - button_uncheck_all: Avmarkera alla - button_collapse_all: Kollapsa alla - button_expand_all: Expandera alla - button_delete: Ta bort - button_create: Skapa - button_create_and_continue: Skapa och fortsätt - button_test: Testa - button_edit: Ändra - button_edit_associated_wikipage: "Ändra associerad Wikisida: %{page_title}" - button_add: Lägg till - button_change: Ändra - button_apply: Verkställ - button_clear: Återställ - button_lock: Lås - button_unlock: Lås upp - button_download: Ladda ner - button_list: Lista - button_view: Visa - button_move: Flytta - button_move_and_follow: Flytta och följ efter - button_back: Tillbaka - button_cancel: Avbryt - button_activate: Aktivera - button_sort: Sortera - button_log_time: Logga tid - button_rollback: Återställ till denna version - button_watch: Bevaka - button_unwatch: Stoppa bevakning - button_reply: Svara - button_archive: Arkivera - button_unarchive: Ta bort från arkiv - button_reset: Återställ - button_rename: Byt namn - button_change_password: Ändra lösenord - button_copy: Kopiera - button_copy_and_follow: Kopiera och följ efter - button_annotate: Kommentera - button_update: Uppdatera - button_configure: Konfigurera - button_quote: Citera - button_show: Visa - button_hide: Göm - button_edit_section: Redigera denna sektion - button_export: Exportera - button_delete_my_account: Ta bort mitt konto - button_close: Stäng - button_reopen: Återöppna - - status_active: aktiv - status_registered: registrerad - status_locked: låst - - project_status_active: aktiv - project_status_closed: stängd - project_status_archived: arkiverad - - version_status_open: öppen - version_status_locked: låst - version_status_closed: stängd - - field_active: Aktiv - - text_select_mail_notifications: Välj för vilka händelser mail ska skickas. - text_regexp_info: eg. ^[A-Z0-9]+$ - text_min_max_length_info: 0 betyder ingen gräns - text_project_destroy_confirmation: Är du säker på att du vill ta bort detta projekt och all relaterad data? - text_subprojects_destroy_warning: "Alla underprojekt: %{value} kommer också tas bort." - text_workflow_edit: Välj en roll och en ärendetyp för att ändra arbetsflöde - text_are_you_sure: Är du säker ? - text_journal_changed: "%{label} ändrad från %{old} till %{new}" - text_journal_changed_no_detail: "%{label} uppdaterad" - text_journal_set_to: "%{label} satt till %{value}" - text_journal_deleted: "%{label} borttagen (%{old})" - text_journal_added: "%{label} %{value} tillagd" - text_tip_issue_begin_day: ärende som börjar denna dag - text_tip_issue_end_day: ärende som slutar denna dag - text_tip_issue_begin_end_day: ärende som börjar och slutar denna dag - text_project_identifier_info: 'Endast gemener (a-z), siffror, streck och understreck är tillåtna, måste börja med en bokstav.
    När identifieraren sparats kan den inte ändras.' - text_caracters_maximum: "max %{count} tecken." - text_caracters_minimum: "Måste vara minst %{count} tecken lång." - text_length_between: "Längd mellan %{min} och %{max} tecken." - text_tracker_no_workflow: Inget arbetsflöde definerat för denna ärendetyp - text_unallowed_characters: Otillåtna tecken - text_comma_separated: Flera värden tillåtna (kommaseparerade). - text_line_separated: Flera värden tillåtna (ett värde per rad). - text_issues_ref_in_commit_messages: Referera och fixa ärenden i commit-meddelanden - text_issue_added: "Ärende %{id} har rapporterats (av %{author})." - text_issue_updated: "Ärende %{id} har uppdaterats (av %{author})." - text_wiki_destroy_confirmation: Är du säker på att du vill ta bort denna wiki och allt dess innehåll ? - text_issue_category_destroy_question: "Några ärenden (%{count}) är tilldelade till denna kategori. Vad vill du göra ?" - text_issue_category_destroy_assignments: Ta bort kategoritilldelningar - text_issue_category_reassign_to: Återtilldela ärenden till denna kategori - text_user_mail_option: "För omarkerade projekt kommer du bara bli underrättad om saker du bevakar eller är inblandad i (T.ex. ärenden du skapat eller tilldelats)." - text_no_configuration_data: "Roller, ärendetyper, ärendestatus och arbetsflöden har inte konfigurerats ännu.\nDet rekommenderas att läsa in standardkonfigurationen. Du kommer att kunna göra ändringar efter att den blivit inläst." - text_load_default_configuration: Läs in standardkonfiguration - text_status_changed_by_changeset: "Tilldelad i changeset %{value}." - text_time_logged_by_changeset: "Tilldelad i changeset %{value}." - text_issues_destroy_confirmation: 'Är du säker på att du vill radera markerade ärende(n) ?' - text_issues_destroy_descendants_confirmation: Detta kommer även ta bort %{count} underaktivitet(er). - text_time_entries_destroy_confirmation: Är du säker på att du vill ta bort valda tidloggningar? - text_select_project_modules: 'Välj vilka moduler som ska vara aktiva för projektet:' - text_default_administrator_account_changed: Standardadministratörens konto ändrat - text_file_repository_writable: Arkivet för bifogade filer är skrivbart - text_plugin_assets_writable: Arkivet för plug-ins är skrivbart - text_minimagick_available: MiniMagick tillgängligt (ej obligatoriskt) - text_destroy_time_entries_question: "%{hours} timmar har rapporterats på ärendena du är på väg att ta bort. Vad vill du göra ?" - text_destroy_time_entries: Ta bort rapporterade timmar - text_assign_time_entries_to_project: Tilldela rapporterade timmar till projektet - text_reassign_time_entries: 'Återtilldela rapporterade timmar till detta ärende:' - text_user_wrote: "%{value} skrev:" - text_user_wrote_in: "%{value} skrev (%{link}):" - text_enumeration_destroy_question: "%{count} objekt är tilldelade till detta värde." - text_enumeration_category_reassign_to: 'Återtilldela till detta värde:' - text_email_delivery_not_configured: "Mailfunktionen har inte konfigurerats, och notifieringar via mail kan därför inte skickas.\nKonfigurera din SMTP-server i config/configuration.yml och starta om applikationen för att aktivera dem." - text_repository_usernames_mapping: "Välj eller uppdatera den Redmine-användare som är mappad till varje användarnamn i versionarkivloggen.\nAnvändare med samma användarnamn eller mailadress i både Redmine och versionsarkivet mappas automatiskt." - text_diff_truncated: '... Denna diff har förminskats eftersom den överskrider den maximala storlek som kan visas.' - text_custom_field_possible_values_info: 'Ett värde per rad' - text_wiki_page_destroy_question: "Denna sida har %{descendants} underliggande sidor. Vad vill du göra?" - text_wiki_page_nullify_children: "Behåll undersidor som rotsidor" - text_wiki_page_destroy_children: "Ta bort alla underliggande sidor" - text_wiki_page_reassign_children: "Flytta undersidor till denna föräldersida" - text_own_membership_delete_confirmation: "Några av, eller alla, dina behörigheter kommer att tas bort och du kanske inte längre kommer kunna göra ändringar i det här projektet.\nVill du verkligen fortsätta?" - text_zoom_out: Zooma ut - text_zoom_in: Zooma in - text_warn_on_leaving_unsaved: "Nuvarande sida innehåller osparad text som kommer försvinna om du lämnar sidan." - text_scm_path_encoding_note: "Standard: UTF-8" - text_git_repository_note: Versionsarkiv är tomt och lokalt (t.ex. /gitrepo, c:\gitrepo) - text_mercurial_repository_note: Lokalt versionsarkiv (t.ex. /hgrepo, c:\hgrepo) - text_scm_command: Kommando - text_scm_command_version: Version - text_scm_config: Du kan konfigurera dina scm-kommando i config/configuration.yml. Vänligen starta om applikationen när ändringar gjorts. - text_scm_command_not_available: Scm-kommando är inte tillgängligt. Vänligen kontrollera inställningarna i administratörspanelen. - text_issue_conflict_resolution_overwrite: "Använd mina ändringar i alla fall (tidigare anteckningar kommer behållas men några ändringar kan bli överskrivna)" - text_issue_conflict_resolution_add_notes: "Lägg till mina anteckningar och kasta mina andra ändringar" - text_issue_conflict_resolution_cancel: "Kasta alla mina ändringar och visa igen %{link}" - text_account_destroy_confirmation: "Är du säker på att du vill fortsätta?\nDitt konto kommer tas bort permanent, utan möjlighet att återaktivera det." - text_session_expiration_settings: "Varning: ändring av dessa inställningar kan få alla nuvarande sessioner, inklusive din egen, att gå ut." - text_project_closed: Detta projekt är stängt och skrivskyddat. - text_turning_multiple_off: "Om du inaktiverar möjligheten till flera värden kommer endast ett värde per objekt behållas." - - default_role_manager: Projektledare - default_role_developer: Utvecklare - default_role_reporter: Rapportör - default_tracker_bug: Bugg - default_tracker_feature: Funktionalitet - default_tracker_support: Support - default_issue_status_new: Ny - default_issue_status_in_progress: Pågår - default_issue_status_resolved: Löst - default_issue_status_feedback: Återkoppling - default_issue_status_closed: Stängd - default_issue_status_rejected: Avslagen - default_doc_category_user: Användardokumentation - default_doc_category_tech: Teknisk dokumentation - default_priority_low: Låg - default_priority_normal: Normal - default_priority_high: Hög - default_priority_urgent: Brådskande - default_priority_immediate: Omedelbar - default_activity_design: Design - default_activity_development: Utveckling - - enumeration_issue_priorities: Ärendeprioriteter - enumeration_doc_categories: Dokumentkategorier - enumeration_activities: Aktiviteter (tidsuppföljning) - enumeration_system_activity: Systemaktivitet - description_filter: Filter - description_search: Sökfält - description_choose_project: Projekt - description_project_scope: Sökomfång - description_notes: Anteckningar - description_message_content: Meddelandeinnehåll - description_query_sort_criteria_attribute: Sorteringsattribut - description_query_sort_criteria_direction: Sorteringsriktning - description_user_mail_notification: Mailnotifieringsinställningar - description_available_columns: Tillgängliga Kolumner - description_selected_columns: Valda Kolumner - description_all_columns: Alla kolumner - description_issue_category_reassign: Välj ärendekategori - description_wiki_subpages_reassign: Välj ny föräldersida - text_repository_identifier_info: 'Endast gemener (a-z), siffror, streck och understreck är tillåtna.
    När identifieraren sparats kan den inte ändras.' - notice_account_not_activated_yet: Du har inte aktiverat ditt konto än. Om du vill få ett nytt aktiveringsbrev, klicka på denna länk . - notice_account_locked: Ditt konto är låst. - label_hidden: Dold - label_visibility_private: endast för mig - label_visibility_roles: endast för dessa roller - label_visibility_public: för alla användare - field_must_change_passwd: Måste byta lösenord vid nästa inloggning. - notice_new_password_must_be_different: Det nya lösenordet måste skilja sig från det nuvarande lösenordet - setting_mail_handler_excluded_filenames: Uteslut bilagor med namn - text_convert_available: ImageMagick-konvertering tillgänglig (valbart) - label_link: Länk - label_only: endast - label_drop_down_list: droppmeny - label_checkboxes: kryssrutor - label_link_values_to: Länka värden till URL - setting_force_default_language_for_anonymous: Lås till förvalt språk för anonyma användare - setting_force_default_language_for_loggedin: Lås till förvalt språk för inloggade användare - label_custom_field_select_type: Väljd den typ av objekt som det anpassade fältet skall användas för - label_issue_assigned_to_updated: Tilldelad har uppdaterats - label_check_for_updates: Leta efter uppdateringar - label_latest_compatible_version: Senaste kompatibla version - label_unknown_plugin: Okänt tillägg - label_radio_buttons: alternativknappar - label_group_anonymous: Anonyma användare - label_group_non_member: Icke-medlemsanvändare - label_add_projects: Add projects - field_default_status: Default status - text_subversion_repository_note: 'Examples: file:///, http://, https://, svn://, svn+[tunnelscheme]://' - field_users_visibility: Users visibility - label_users_visibility_all: All active users - label_users_visibility_members_of_visible_projects: Members of visible projects - label_edit_attachments: Edit attached files - setting_link_copied_issue: Link issues on copy - label_link_copied_issue: Link copied issue - label_ask: Ask - label_search_attachments_yes: Search attachment filenames and descriptions - label_search_attachments_no: Do not search attachments - label_search_attachments_only: Search attachments only - label_search_open_issues_only: Open issues only - field_address: Mail - setting_max_additional_emails: Maximum number of additional email addresses - label_email_address_plural: Emails - label_email_address_add: Add email address - label_enable_notifications: Enable notifications - label_disable_notifications: Disable notifications - setting_search_results_per_page: Search results per page - label_blank_value: blank - permission_copy_issues: Copy issues - error_password_expired: Your password has expired or the administrator requires you - to change it. - field_time_entries_visibility: Time logs visibility - setting_password_max_age: Require password change after - label_parent_task_attributes: Parent tasks attributes - label_parent_task_attributes_derived: Calculated from subtasks - label_parent_task_attributes_independent: Independent of subtasks - label_time_entries_visibility_all: All time entries - label_time_entries_visibility_own: Time entries created by the user - label_member_management: Member management - label_member_management_all_roles: All roles - label_member_management_selected_roles_only: Only these roles - label_password_required: Confirm your password to continue - label_total_spent_time: Total tid spenderad - notice_import_finished: "%{count} items have been imported" - notice_import_finished_with_errors: "%{count} out of %{total} items could not be imported" - error_invalid_file_encoding: The file is not a valid %{encoding} encoded file - error_invalid_csv_file_or_settings: The file is not a CSV file or does not match the - settings below - error_can_not_read_import_file: An error occurred while reading the file to import - permission_import_issues: Import issues - label_import_issues: Import issues - label_select_file_to_import: Select the file to import - label_fields_separator: Field separator - label_fields_wrapper: Field wrapper - label_encoding: Encoding - label_comma_char: Comma - label_semi_colon_char: Semicolon - label_quote_char: Quote - label_double_quote_char: Double quote - label_fields_mapping: Fields mapping - label_file_content_preview: File content preview - label_create_missing_values: Create missing values - button_import: Import - field_total_estimated_hours: Total estimated time - label_api: API - label_total_plural: Totals - label_assigned_issues: Assigned issues - label_field_format_enumeration: Key/value list - label_f_hour_short: '%{value} h' - field_default_version: Default version - error_attachment_extension_not_allowed: Attachment extension %{extension} is not allowed - setting_attachment_extensions_allowed: Allowed extensions - setting_attachment_extensions_denied: Disallowed extensions - label_any_open_issues: any open issues - label_no_open_issues: no open issues - label_default_values_for_new_users: Default values for new users - error_ldap_bind_credentials: Invalid LDAP Account/Password - setting_sys_api_key: API-nyckel - setting_lost_password: Glömt lösenord - mail_subject_security_notification: Security notification - mail_body_security_notification_change: ! '%{field} was changed.' - mail_body_security_notification_change_to: ! '%{field} was changed to %{value}.' - mail_body_security_notification_add: ! '%{field} %{value} was added.' - mail_body_security_notification_remove: ! '%{field} %{value} was removed.' - mail_body_security_notification_notify_enabled: Email address %{value} now receives - notifications. - mail_body_security_notification_notify_disabled: Email address %{value} no longer - receives notifications. - mail_body_settings_updated: ! 'The following settings were changed:' - field_remote_ip: IP address - label_wiki_page_new: New wiki page - label_relations: Relations - button_filter: Filter - mail_body_password_updated: Your password has been changed. - label_no_preview: No preview available - error_no_tracker_allowed_for_new_issue_in_project: The project doesn't have any trackers - for which you can create an issue - label_tracker_all: All trackers - label_new_project_issue_tab_enabled: Display the "New issue" tab - setting_new_item_menu_tab: Project menu tab for creating new objects - label_new_object_tab_enabled: Display the "+" drop-down - error_no_projects_with_tracker_allowed_for_new_issue: There are no projects with trackers - for which you can create an issue - field_textarea_font: Font used for text areas - label_font_default: Default font - label_font_monospace: Monospaced font - label_font_proportional: Proportional font - setting_timespan_format: Time span format - label_table_of_contents: Table of contents - setting_commit_logs_formatting: Apply text formatting to commit messages - setting_mail_handler_enable_regex: Enable regular expressions - error_move_of_child_not_possible: 'Subtask %{child} could not be moved to the new - project: %{errors}' - error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted: Spent time cannot - be reassigned to an issue that is about to be deleted - setting_timelog_required_fields: Required fields for time logs - label_attribute_of_object: '%{object_name}''s %{name}' - label_user_mail_option_only_assigned: Only for things I watch or I am assigned to - label_user_mail_option_only_owner: Only for things I watch or I am the owner of - warning_fields_cleared_on_bulk_edit: Changes will result in the automatic deletion - of values from one or more fields on the selected objects - field_updated_by: Updated by - field_last_updated_by: Last updated by - field_full_width_layout: Full width layout - label_last_notes: Last notes - field_digest: Checksum - field_default_assigned_to: Default assignee - setting_show_custom_fields_on_registration: Show custom fields on registration - permission_view_news: View news - label_no_preview_alternative_html: No preview available. %{link} the file instead. - label_no_preview_download: Download - setting_close_duplicate_issues: Close duplicate issues automatically - error_exceeds_maximum_hours_per_day: Cannot log more than %{max_hours} hours on the - same day (%{logged_hours} hours have already been logged) - setting_time_entry_list_defaults: Timelog list defaults - setting_timelog_accept_0_hours: Accept time logs with 0 hours - setting_timelog_max_hours_per_day: Maximum hours that can be logged per day and user - label_x_revisions: "%{count} revisions" - error_can_not_delete_auth_source: This authentication mode is in use and cannot be - deleted. - button_actions: Actions - mail_body_lost_password_validity: Please be aware that you may change the password - only once using this link. - text_login_required_html: When not requiring authentication, public projects and their - contents are openly available on the network. You can edit - the applicable permissions. - label_login_required_yes: 'Yes' - label_login_required_no: No, allow anonymous access to public projects - text_project_is_public_non_member: Public projects and their contents are available - to all logged-in users. - text_project_is_public_anonymous: Public projects and their contents are openly available - on the network. - label_version_and_files: Versions (%{count}) and Files - label_ldap: LDAP - label_ldaps_verify_none: LDAPS (without certificate check) - label_ldaps_verify_peer: LDAPS - label_ldaps_warning: It is recommended to use an encrypted LDAPS connection with certificate - check to prevent any manipulation during the authentication process. - label_nothing_to_preview: Nothing to preview - error_token_expired: This password recovery link has expired, please try again. - error_spent_on_future_date: Cannot log time on a future date - setting_timelog_accept_future_dates: Accept time logs on future dates - label_delete_link_to_subtask: Ta bort relation - error_not_allowed_to_log_time_for_other_users: You are not allowed to log time - for other users - permission_log_time_for_other_users: Log spent time for other users - label_tomorrow: tomorrow - label_next_week: next week - label_next_month: next month - text_role_no_workflow: No workflow defined for this role - text_status_no_workflow: No tracker uses this status in the workflows - setting_mail_handler_preferred_body_part: Preferred part of multipart (HTML) emails - setting_show_status_changes_in_mail_subject: Show status changes in issue mail notifications - subject - label_inherited_from_parent_project: Inherited from parent project - label_inherited_from_group: Inherited from group %{name} - label_trackers_description: Trackers description - label_open_trackers_description: View all trackers description - label_preferred_body_part_text: Text - label_preferred_body_part_html: HTML (experimental) - field_parent_issue_subject: Parent task subject - permission_edit_own_issues: Edit own issues - text_select_apply_tracker: Select tracker - label_updated_issues: Updated issues - text_avatar_server_config_html: The current avatar server is %{url}. - You can configure it in config/configuration.yml. - setting_gantt_months_limit: Maximum number of months displayed on the gantt chart - permission_import_time_entries: Import time entries - label_import_notifications: Send email notifications during the import - text_gs_available: ImageMagick PDF support available (optional) - field_recently_used_projects: Number of recently used projects in jump box - label_optgroup_bookmarks: Bookmarks - label_optgroup_others: Other projects - label_optgroup_recents: Recently used - button_project_bookmark: Add bookmark - button_project_bookmark_delete: Remove bookmark - field_history_default_tab: Issue's history default tab - label_issue_history_properties: Property changes - label_issue_history_notes: Notes - label_last_tab_visited: Last visited tab - field_unique_id: Unique ID - text_no_subject: no subject - setting_password_required_char_classes: Required character classes for passwords - label_password_char_class_uppercase: uppercase letters - label_password_char_class_lowercase: lowercase letters - label_password_char_class_digits: digits - label_password_char_class_special_chars: special characters - text_characters_must_contain: Must contain %{character_classes}. - label_starts_with: starts with - label_ends_with: ends with - label_issue_fixed_version_updated: Target version updated - setting_project_list_defaults: Projects list defaults - label_display_type: Display results as - label_display_type_list: List - label_display_type_board: Board - label_my_bookmarks: My bookmarks - label_import_time_entries: Import time entries diff --git a/config/locales/th.yml b/config/locales/th.yml deleted file mode 100644 index 8225ded..0000000 --- a/config/locales/th.yml +++ /dev/null @@ -1,1311 +0,0 @@ -th: - direction: ltr - date: - formats: - # Use the strftime parameters for formats. - # When no format has been given, it uses default. - # You can provide other formats here if you like! - default: "%Y-%m-%d" - short: "%b %d" - long: "%B %d, %Y" - - day_names: [Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday] - abbr_day_names: [Sun, Mon, Tue, Wed, Thu, Fri, Sat] - - # Don't forget the nil at the beginning; there's no such thing as a 0th month - month_names: [~, January, February, March, April, May, June, July, August, September, October, November, December] - abbr_month_names: [~, Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec] - # Used in date_select and datime_select. - order: - - :year - - :month - - :day - - time: - formats: - default: "%a, %d %b %Y %H:%M:%S %z" - time: "%H:%M" - short: "%d %b %H:%M" - long: "%B %d, %Y %H:%M" - am: "am" - pm: "pm" - - datetime: - distance_in_words: - half_a_minute: "half a minute" - less_than_x_seconds: - one: "less than 1 second" - other: "less than %{count} seconds" - x_seconds: - one: "1 second" - other: "%{count} seconds" - less_than_x_minutes: - one: "less than a minute" - other: "less than %{count} minutes" - x_minutes: - one: "1 minute" - other: "%{count} minutes" - about_x_hours: - one: "about 1 hour" - other: "about %{count} hours" - x_hours: - one: "1 hour" - other: "%{count} hours" - x_days: - one: "1 day" - other: "%{count} days" - about_x_months: - one: "about 1 month" - other: "about %{count} months" - x_months: - one: "1 month" - other: "%{count} months" - about_x_years: - one: "about 1 year" - other: "about %{count} years" - over_x_years: - one: "over 1 year" - other: "over %{count} years" - almost_x_years: - one: "almost 1 year" - other: "almost %{count} years" - - number: - format: - separator: "." - delimiter: "" - precision: 3 - human: - format: - precision: 3 - delimiter: "" - storage_units: - format: "%n %u" - units: - kb: KB - tb: TB - gb: GB - byte: - one: Byte - other: Bytes - mb: MB - -# Used in array.to_sentence. - support: - array: - sentence_connector: "and" - skip_last_comma: false - - activerecord: - errors: - template: - header: - one: "1 error prohibited this %{model} from being saved" - other: "%{count} errors prohibited this %{model} from being saved" - messages: - inclusion: "ไม่อยู่ในรายการ" - exclusion: "ถูกสงวนไว้" - invalid: "ไม่ถูกต้อง" - confirmation: "พิมพ์ไม่เหมือนเดิม" - accepted: "ต้องยอมรับ" - empty: "ต้องเติม" - blank: "ต้องเติม" - too_long: "ยาวเกินไป" - too_short: "สั้นเกินไป" - wrong_length: "ความยาวไม่ถูกต้อง" - taken: "ถูกใช้ไปแล้ว" - not_a_number: "ไม่ใช่ตัวเลข" - not_a_date: "ไม่ใช่วันที่ ที่ถูกต้อง" - greater_than: "must be greater than %{count}" - greater_than_or_equal_to: "must be greater than or equal to %{count}" - equal_to: "must be equal to %{count}" - less_than: "must be less than %{count}" - less_than_or_equal_to: "must be less than or equal to %{count}" - odd: "must be odd" - even: "must be even" - greater_than_start_date: "ต้องมากกว่าวันเริ่ม" - not_same_project: "ไม่ได้อยู่ในโครงการเดียวกัน" - circular_dependency: "ความสัมพันธ์อ้างอิงเป็นวงกลม" - cant_link_an_issue_with_a_descendant: "An issue can not be linked to one of its subtasks" - earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" - not_a_regexp: "is not a valid regular expression" - open_issue_with_closed_parent: "An open issue cannot be attached to a closed parent task" - must_contain_uppercase: "must contain uppercase letters (A-Z)" - must_contain_lowercase: "must contain lowercase letters (a-z)" - must_contain_digits: "must contain digits (0-9)" - must_contain_special_chars: "must contain special characters (!, $, %, ...)" - - actionview_instancetag_blank_option: กรุณาเลือก - - general_text_No: 'ไม่' - general_text_Yes: 'ใช่' - general_text_no: 'ไม่' - general_text_yes: 'ใช่' - general_lang_name: 'Thai (ไทย)' - general_csv_separator: ',' - general_csv_decimal_separator: '.' - general_csv_encoding: Windows-874 - general_pdf_fontname: freeserif - general_pdf_monospaced_fontname: freeserif - general_first_day_of_week: '1' - - notice_account_updated: บัญชีได้ถูกปรับปรุงแล้ว. - notice_account_invalid_credentials: ชื้ผู้ใช้หรือรหัสผ่านไม่ถูกต้อง - notice_account_password_updated: รหัสได้ถูกปรับปรุงแล้ว. - notice_account_wrong_password: รหัสผ่านไม่ถูกต้อง - notice_account_register_done: บัญชีถูกสร้างแล้ว. กรุณาเช็คเมล์ แล้วคลิ๊กที่ลิงค์ในอีเมล์เพื่อเปิดใช้บัญชี - notice_account_unknown_email: ไม่มีผู้ใช้ที่ใช้อีเมล์นี้. - notice_can_t_change_password: บัญชีนี้ใช้การยืนยันตัวตนจากแหล่งภายนอก. ไม่สามารถปลี่ยนรหัสผ่านได้. - notice_account_lost_email_sent: เราได้ส่งอีเมล์พร้อมวิธีการสร้างรหัีสผ่านใหม่ให้คุณแล้ว กรุณาเช็คเมล์. - notice_account_activated: บัญชีของคุณได้เปิดใช้แล้ว. ตอนนี้คุณสามารถเข้าสู่ระบบได้แล้ว. - notice_successful_create: สร้างเสร็จแล้ว. - notice_successful_update: ปรับปรุงเสร็จแล้ว. - notice_successful_delete: ลบเสร็จแล้ว. - notice_successful_connection: ติดต่อสำเร็จแล้ว. - notice_file_not_found: หน้าที่คุณต้องการดูไม่มีอยู่จริง หรือถูกลบไปแล้ว. - notice_locking_conflict: ข้อมูลถูกปรับปรุงโดยผู้ใช้คนอื่น. - notice_not_authorized: คุณไม่มีสิทธิเข้าถึงหน้านี้. - notice_email_sent: "อีเมล์ได้ถูกส่งถึง %{value}" - notice_email_error: "เกิดความผิดพลาดขณะกำส่งอีเมล์ (%{value})" - notice_feeds_access_key_reseted: Atom access key ของคุณถูก reset แล้ว. - notice_failed_to_save_issues: "%{count} ปัญหาจาก %{total} ปัญหาที่ถูกเลือกไม่สามารถจัดเก็บ: %{ids}." - notice_no_issue_selected: "ไม่มีปัญหาที่ถูกเลือก! กรุณาเลือกปัญหาที่คุณต้องการแก้ไข." - notice_account_pending: "บัญชีของคุณสร้างเสร็จแล้ว ขณะนี้รอการอนุมัติจากผู้บริหารจัดการ." - notice_default_data_loaded: ค่าเริ่มต้นโหลดเสร็จแล้ว. - - error_can_t_load_default_data: "ค่าเริ่มต้นโหลดไม่สำเร็จ: %{value}" - error_scm_not_found: "ไม่พบรุ่นที่ต้องการในแหล่งเก็บต้นฉบับ." - error_scm_command_failed: "เกิดความผิดพลาดในการเข้าถึงแหล่งเก็บต้นฉบับ: %{value}" - error_scm_annotate: "entry ไม่มีอยู่จริง หรือไม่สามารถเขียนหมายเหตุประกอบ." - error_issue_not_found_in_project: 'ไม่พบปัญหานี้ หรือปัญหาไม่ได้อยู่ในโครงการนี้' - - mail_subject_lost_password: "รหัสผ่าน %{value} ของคุณ" - mail_body_lost_password: 'คลิ๊กที่ลิงค์ต่อไปนี้เพื่อเปลี่ยนรหัสผ่าน:' - mail_subject_register: "เปิดบัญชี %{value} ของคุณ" - mail_body_register: 'คลิ๊กที่ลิงค์ต่อไปนี้เพื่อเปลี่ยนรหัสผ่าน:' - mail_body_account_information_external: "คุณสามารถใช้บัญชี %{value} เพื่อเข้าสู่ระบบ." - mail_body_account_information: ข้อมูลบัญชีของคุณ - mail_subject_account_activation_request: "กรุณาเปิดบัญชี %{value}" - mail_body_account_activation_request: "ผู้ใช้ใหม่ (%{value}) ได้ลงทะเบียน. บัญชีของเขากำลังรออนุมัติ:" - - - field_name: ชื่อ - field_description: รายละเอียด - field_summary: สรุปย่อ - field_is_required: ต้องใส่ - field_firstname: ชื่อ - field_lastname: นามสกุล - field_mail: อีเมล์ - field_filename: แฟ้ม - field_filesize: ขนาด - field_downloads: ดาวน์โหลด - field_author: ผู้แต่ง - field_created_on: สร้าง - field_updated_on: ปรับปรุง - field_field_format: รูปแบบ - field_is_for_all: สำหรับทุกโครงการ - field_possible_values: ค่าที่เป็นไปได้ - field_regexp: Regular expression - field_min_length: สั้นสุด - field_max_length: ยาวสุด - field_value: ค่า - field_category: ประเภท - field_title: ชื่อเรื่อง - field_project: โครงการ - field_issue: ปัญหา - field_status: สถานะ - field_notes: บันทึก - field_is_closed: ปัญหาจบ - field_is_default: ค่าเริ่มต้น - field_tracker: การติดตาม - field_subject: เรื่อง - field_due_date: วันครบกำหนด - field_assigned_to: มอบหมายให้ - field_priority: ความสำคัญ - field_fixed_version: รุ่น - field_user: ผู้ใช้ - field_role: บทบาท - field_homepage: หน้าแรก - field_is_public: สาธารณะ - field_parent: โครงการย่อยของ - field_is_in_roadmap: ปัญหาแสดงใน แผนงาน - field_login: ชื่อที่ใช้เข้าระบบ - field_mail_notification: การแจ้งเตือนทางอีเมล์ - field_admin: ผู้บริหารจัดการ - field_last_login_on: เข้าระบบครั้งสุดท้าย - field_language: ภาษา - field_effective_date: วันที่ - field_password: รหัสผ่าน - field_new_password: รหัสผ่านใหม่ - field_password_confirmation: ยืนยันรหัสผ่าน - field_version: รุ่น - field_type: ชนิด - field_host: โฮสต์ - field_port: พอร์ต - field_account: บัญชี - field_base_dn: Base DN - field_attr_login: เข้าระบบ attribute - field_attr_firstname: ชื่อ attribute - field_attr_lastname: นามสกุล attribute - field_attr_mail: อีเมล์ attribute - field_onthefly: สร้างผู้ใช้ทันที - field_start_date: เริ่ม - field_done_ratio: "% สำเร็จ" - field_auth_source: วิธีการยืนยันตัวตน - field_hide_mail: ซ่อนอีเมล์ของฉัน - field_comments: ความเห็น - field_url: URL - field_start_page: หน้าเริ่มต้น - field_subproject: โครงการย่อย - field_hours: ชั่วโมง - field_activity: กิจกรรม - field_spent_on: วันที่ - field_identifier: ชื่อเฉพาะ - field_is_filter: ใช้เป็นตัวกรอง - field_issue_to: ปัญหาที่เกี่ยวข้อง - field_delay: เลื่อน - field_assignable: ปัญหาสามารถมอบหมายให้คนที่ทำบทบาทนี้ - field_redirect_existing_links: ย้ายจุดเชื่อมโยงนี้ - field_estimated_hours: เวลาที่ใช้โดยประมาณ - field_column_names: สดมภ์ - field_time_zone: ย่านเวลา - field_searchable: ค้นหาได้ - field_default_value: ค่าเริ่มต้น - field_comments_sorting: แสดงความเห็น - - setting_app_title: ชื่อโปรแกรม - setting_welcome_text: ข้อความต้อนรับ - setting_default_language: ภาษาเริ่มต้น - setting_login_required: ต้องป้อนผู้ใช้-รหัสผ่าน - setting_self_registration: ลงทะเบียนด้วยตนเอง - setting_attachment_max_size: ขนาดแฟ้มแนบสูงสุด - setting_issues_export_limit: การส่งออกปัญหาสูงสุด - setting_mail_from: อีเมล์ที่ใช้ส่ง - setting_bcc_recipients: ไม่ระบุชื่อผู้รับ (bcc) - setting_host_name: ชื่อโฮสต์ - setting_text_formatting: การจัดรูปแบบข้อความ - setting_wiki_compression: บีบอัดประวัติ Wiki - setting_feeds_limit: จำนวน Feed - setting_default_projects_public: โครงการใหม่มีค่าเริ่มต้นเป็น สาธารณะ - setting_autofetch_changesets: ดึง commits อัตโนมัติ - setting_sys_api_enabled: เปิดใช้ WS สำหรับการจัดการที่เก็บต้นฉบับ - setting_commit_ref_keywords: คำสำคัญ Referencing - setting_commit_fix_keywords: คำสำคัญ Fixing - setting_autologin: เข้าระบบอัตโนมัติ - setting_date_format: รูปแบบวันที่ - setting_time_format: รูปแบบเวลา - setting_cross_project_issue_relations: อนุญาตให้ระบุปัญหาข้ามโครงการ - setting_issue_list_default_columns: สดมภ์เริ่มต้นแสดงในรายการปัญหา - setting_emails_footer: คำลงท้ายอีเมล์ - setting_protocol: Protocol - setting_per_page_options: ตัวเลือกจำนวนต่อหน้า - setting_user_format: รูปแบบการแสดงชื่อผู้ใช้ - setting_activity_days_default: จำนวนวันที่แสดงในกิจกรรมของโครงการ - setting_display_subprojects_issues: แสดงปัญหาของโครงการย่อยในโครงการหลัก - - project_module_issue_tracking: การติดตามปัญหา - project_module_time_tracking: การใช้เวลา - project_module_news: ข่าว - project_module_documents: เอกสาร - project_module_files: แฟ้ม - project_module_wiki: Wiki - project_module_repository: ที่เก็บต้นฉบับ - project_module_boards: กระดานข้อความ - - label_user: ผู้ใช้ - label_user_plural: ผู้ใช้ - label_user_new: ผู้ใช้ใหม่ - label_project: โครงการ - label_project_new: โครงการใหม่ - label_project_plural: โครงการ - label_x_projects: - zero: no projects - one: 1 project - other: "%{count} projects" - label_project_all: โครงการทั้งหมด - label_project_latest: โครงการล่าสุด - label_issue: ปัญหา - label_issue_new: ปัญหาใหม่ - label_issue_plural: ปัญหา - label_issue_view_all: ดูปัญหาทั้งหมด - label_issues_by: "ปัญหาโดย %{value}" - label_issue_added: ปัญหาถูกเพิ่ม - label_issue_updated: ปัญหาถูกปรับปรุง - label_document: เอกสาร - label_document_new: เอกสารใหม่ - label_document_plural: เอกสาร - label_document_added: เอกสารถูกเพิ่ม - label_role: บทบาท - label_role_plural: บทบาท - label_role_new: บทบาทใหม่ - label_role_and_permissions: บทบาทและสิทธิ - label_member: สมาชิก - label_member_new: สมาชิกใหม่ - label_member_plural: สมาชิก - label_tracker: การติดตาม - label_tracker_plural: การติดตาม - label_tracker_new: การติดตามใหม่ - label_workflow: ลำดับงาน - label_issue_status: สถานะของปัญหา - label_issue_status_plural: สถานะของปัญหา - label_issue_status_new: สถานะใหม - label_issue_category: ประเภทของปัญหา - label_issue_category_plural: ประเภทของปัญหา - label_issue_category_new: ประเภทใหม่ - label_custom_field: เขตข้อมูลแบบระบุเอง - label_custom_field_plural: เขตข้อมูลแบบระบุเอง - label_custom_field_new: สร้างเขตข้อมูลแบบระบุเอง - label_enumerations: รายการ - label_enumeration_new: สร้างใหม่ - label_information: ข้อมูล - label_information_plural: ข้อมูล - label_register: ลงทะเบียน - label_password_lost: ลืมรหัสผ่าน - label_home: หน้าแรก - label_my_page: หน้าของฉัน - label_my_account: บัญชีของฉัน - label_my_projects: โครงการของฉัน - label_administration: บริหารจัดการ - label_login: เข้าระบบ - label_logout: ออกระบบ - label_help: ช่วยเหลือ - label_reported_issues: ปัญหาที่แจ้งไว้ - label_assigned_to_me_issues: ปัญหาที่มอบหมายให้ฉัน - label_last_login: ติดต่อครั้งสุดท้าย - label_registered_on: ลงทะเบียนเมื่อ - label_activity: กิจกรรม - label_activity_plural: กิจกรรม - label_overall_activity: กิจกรรมโดยรวม - label_new: ใหม่ - label_logged_as: เข้าระบบในชื่อ - label_environment: สภาพแวดล้อม - label_authentication: การยืนยันตัวตน - label_auth_source: วิธีการการยืนยันตัวตน - label_auth_source_new: สร้างวิธีการยืนยันตัวตนใหม่ - label_auth_source_plural: วิธีการ Authentication - label_subproject_plural: โครงการย่อย - label_min_max_length: สั้น-ยาว สุดที่ - label_list: รายการ - label_date: วันที่ - label_integer: จำนวนเต็ม - label_float: จำนวนจริง - label_boolean: ถูกผิด - label_string: ข้อความ - label_text: ข้อความขนาดยาว - label_attribute: คุณลักษณะ - label_attribute_plural: คุณลักษณะ - label_no_data: จำนวนข้อมูลที่แสดง - label_change_status: เปลี่ยนสถานะ - label_history: ประวัติ - label_attachment: แฟ้ม - label_attachment_new: แฟ้มใหม่ - label_attachment_delete: ลบแฟ้ม - label_attachment_plural: แฟ้ม - label_file_added: แฟ้มถูกเพิ่ม - label_report: รายงาน - label_report_plural: รายงาน - label_news: ข่าว - label_news_new: เพิ่มข่าว - label_news_plural: ข่าว - label_news_latest: ข่าวล่าสุด - label_news_view_all: ดูข่าวทั้งหมด - label_news_added: ข่าวถูกเพิ่ม - label_settings: ปรับแต่ง - label_overview: ภาพรวม - label_version: รุ่น - label_version_new: รุ่นใหม่ - label_version_plural: รุ่น - label_confirmation: ยืนยัน - label_export_to: 'รูปแบบอื่นๆ :' - label_read: อ่าน... - label_public_projects: โครงการสาธารณะ - label_open_issues: เปิด - label_open_issues_plural: เปิด - label_closed_issues: ปิด - label_closed_issues_plural: ปิด - label_x_open_issues_abbr: - zero: 0 open - one: 1 open - other: "%{count} open" - label_x_closed_issues_abbr: - zero: 0 closed - one: 1 closed - other: "%{count} closed" - label_total: จำนวนรวม - label_permissions: สิทธิ - label_current_status: สถานะปัจจุบัน - label_new_statuses_allowed: อนุญาตให้มีสถานะใหม่ - label_all: ทั้งหมด - label_none: ไม่มี - label_nobody: ไม่มีใคร - label_next: ต่อไป - label_previous: ก่อนหน้า - label_used_by: ถูกใช้โดย - label_details: รายละเอียด - label_add_note: เพิ่มบันทึก - label_calendar: ปฏิทิน - label_months_from: เดือนจาก - label_gantt: Gantt - label_internal: ภายใน - label_last_changes: "last %{count} เปลี่ยนแปลง" - label_change_view_all: ดูการเปลี่ยนแปลงทั้งหมด - label_comment: ความเห็น - label_comment_plural: ความเห็น - label_x_comments: - zero: no comments - one: 1 comment - other: "%{count} comments" - label_comment_add: เพิ่มความเห็น - label_comment_added: ความเห็นถูกเพิ่ม - label_comment_delete: ลบความเห็น - label_query: แบบสอบถามแบบกำหนดเอง - label_query_plural: แบบสอบถามแบบกำหนดเอง - label_query_new: แบบสอบถามใหม่ - label_filter_add: เพิ่มตัวกรอง - label_filter_plural: ตัวกรอง - label_equals: คือ - label_not_equals: ไม่ใช่ - label_in_less_than: น้อยกว่า - label_in_more_than: มากกว่า - label_in: ในช่วง - label_today: วันนี้ - label_yesterday: เมื่อวาน - label_this_week: อาทิตย์นี้ - label_last_week: อาทิตย์ที่แล้ว - label_last_n_days: "%{count} วันย้อนหลัง" - label_this_month: เดือนนี้ - label_last_month: เดือนที่แล้ว - label_this_year: ปีนี้ - label_date_range: ช่วงวันที่ - label_less_than_ago: น้อยกว่าหนึ่งวัน - label_more_than_ago: มากกว่าหนึ่งวัน - label_ago: วันผ่านมาแล้ว - label_contains: มี... - label_not_contains: ไม่มี... - label_day_plural: วัน - label_repository: ที่เก็บต้นฉบับ - label_repository_plural: ที่เก็บต้นฉบับ - label_browse: เปิดหา - label_revision: การแก้ไข - label_revision_plural: การแก้ไข - label_associated_revisions: การแก้ไขที่เกี่ยวข้อง - label_added: ถูกเพิ่ม - label_modified: ถูกแก้ไข - label_deleted: ถูกลบ - label_latest_revision: รุ่นการแก้ไขล่าสุด - label_latest_revision_plural: รุ่นการแก้ไขล่าสุด - label_view_revisions: ดูการแก้ไข - label_max_size: ขนาดใหญ่สุด - label_sort_highest: ย้ายไปบนสุด - label_sort_higher: ย้ายขึ้น - label_sort_lower: ย้ายลง - label_sort_lowest: ย้ายไปล่างสุด - label_roadmap: แผนงาน - label_roadmap_due_in: "ถึงกำหนดใน %{value}" - label_roadmap_overdue: "%{value} ช้ากว่ากำหนด" - label_roadmap_no_issues: ไม่มีปัญหาสำหรับรุ่นนี้ - label_search: ค้นหา - label_result_plural: ผลการค้นหา - label_all_words: ทุกคำ - label_wiki: Wiki - label_wiki_edit: แก้ไข Wiki - label_wiki_edit_plural: แก้ไข Wiki - label_wiki_page: หน้า Wiki - label_wiki_page_plural: หน้า Wiki - label_index_by_title: เรียงตามชื่อเรื่อง - label_index_by_date: เรียงตามวัน - label_current_version: รุ่นปัจจุบัน - label_preview: ตัวอย่างก่อนจัดเก็บ - label_feed_plural: Feeds - label_changes_details: รายละเอียดการเปลี่ยนแปลงทั้งหมด - label_issue_tracking: ติดตามปัญหา - label_spent_time: เวลาที่ใช้ - label_f_hour: "%{value} ชั่วโมง" - label_f_hour_plural: "%{value} ชั่วโมง" - label_time_tracking: ติดตามการใช้เวลา - label_change_plural: เปลี่ยนแปลง - label_statistics: สถิติ - label_commits_per_month: Commits ต่อเดือน - label_commits_per_author: Commits ต่อผู้แต่ง - label_view_diff: ดูความแตกต่าง - label_diff_inline: inline - label_diff_side_by_side: side by side - label_options: ตัวเลือก - label_copy_workflow_from: คัดลอกลำดับงานจาก - label_permissions_report: รายงานสิทธิ - label_watched_issues: เฝ้าดูปัญหา - label_related_issues: ปัญหาที่เกี่ยวข้อง - label_applied_status: จัดเก็บสถานะ - label_loading: กำลังโหลด... - label_relation_new: ความสัมพันธ์ใหม่ - label_relation_delete: ลบความสัมพันธ์ - label_relates_to: สัมพันธ์กับ - label_duplicates: ซ้ำ - label_blocks: กีดกัน - label_blocked_by: กีดกันโดย - label_precedes: นำหน้า - label_follows: ตามหลัง - label_stay_logged_in: อยู่ในระบบต่อ - label_disabled: ไม่ใช้งาน - label_show_completed_versions: แสดงรุ่นที่สมบูรณ์ - label_me: ฉัน - label_board: สภากาแฟ - label_board_new: สร้างสภากาแฟ - label_board_plural: สภากาแฟ - label_topic_plural: หัวข้อ - label_message_plural: ข้อความ - label_message_last: ข้อความล่าสุด - label_message_new: เขียนข้อความใหม่ - label_message_posted: ข้อความถูกเพิ่มแล้ว - label_reply_plural: ตอบกลับ - label_send_information: ส่งรายละเอียดของบัญชีให้ผู้ใช้ - label_year: ปี - label_month: เดือน - label_week: สัปดาห์ - label_date_from: จาก - label_date_to: ถึง - label_language_based: ขึ้นอยู่กับภาษาของผู้ใช้ - label_sort_by: "เรียงโดย %{value}" - label_send_test_email: ส่งจดหมายทดสอบ - label_feeds_access_key_created_on: "Atom access key สร้างเมื่อ %{value} ที่ผ่านมา" - label_module_plural: ส่วนประกอบ - label_added_time_by: "เพิ่มโดย %{author} %{age} ที่ผ่านมา" - label_updated_time: "ปรับปรุง %{value} ที่ผ่านมา" - label_jump_to_a_project: ไปที่โครงการ... - label_file_plural: แฟ้ม - label_changeset_plural: กลุ่มการเปลี่ยนแปลง - label_default_columns: สดมภ์เริ่มต้น - label_no_change_option: (ไม่เปลี่ยนแปลง) - label_bulk_edit_selected_issues: แก้ไขปัญหาที่เลือกทั้งหมด - label_theme: ชุดรูปแบบ - label_default: ค่าเริ่มต้น - label_search_titles_only: ค้นหาจากชื่อเรื่องเท่านั้น - label_user_mail_option_all: "ทุกๆ เหตุการณ์ในโครงการของฉัน" - label_user_mail_option_selected: "ทุกๆ เหตุการณ์ในโครงการที่เลือก..." - label_user_mail_no_self_notified: "ฉันไม่ต้องการได้รับการแจ้งเตือนในสิ่งที่ฉันทำเอง" - label_registration_activation_by_email: เปิดบัญชีผ่านอีเมล์ - label_registration_manual_activation: อนุมัติโดยผู้บริหารจัดการ - label_registration_automatic_activation: เปิดบัญชีอัตโนมัติ - label_display_per_page: "ต่อหน้า: %{value}" - label_age: อายุ - label_change_properties: เปลี่ยนคุณสมบัติ - label_general: ทั่วๆ ไป - label_scm: ตัวจัดการต้นฉบับ - label_plugins: ส่วนเสริม - label_ldap_authentication: การยืนยันตัวตนโดยใช้ LDAP - label_downloads_abbr: D/L - label_optional_description: รายละเอียดเพิ่มเติม - label_add_another_file: เพิ่มแฟ้มอื่นๆ - label_preferences: ค่าที่ชอบใจ - label_chronological_order: เรียงจากเก่าไปใหม่ - label_reverse_chronological_order: เรียงจากใหม่ไปเก่า - - button_login: เข้าระบบ - button_submit: จัดส่งข้อมูล - button_save: จัดเก็บ - button_check_all: เลือกทั้งหมด - button_uncheck_all: ไม่เลือกทั้งหมด - button_delete: ลบ - button_create: สร้าง - button_test: ทดสอบ - button_edit: แก้ไข - button_add: เพิ่ม - button_change: เปลี่ยนแปลง - button_apply: ประยุกต์ใช้ - button_clear: ล้างข้อความ - button_lock: ล็อค - button_unlock: ยกเลิกการล็อค - button_download: ดาวน์โหลด - button_list: รายการ - button_view: มุมมอง - button_move: ย้าย - button_back: กลับ - button_cancel: ยกเลิก - button_activate: เปิดใช้ - button_sort: จัดเรียง - button_log_time: บันทึกเวลา - button_rollback: ถอยกลับมาที่รุ่นนี้ - button_watch: เฝ้าดู - button_unwatch: เลิกเฝ้าดู - button_reply: ตอบกลับ - button_archive: เก็บเข้าโกดัง - button_unarchive: เอาออกจากโกดัง - button_reset: เริ่มใหมท - button_rename: เปลี่ยนชื่อ - button_change_password: เปลี่ยนรหัสผ่าน - button_copy: คัดลอก - button_annotate: หมายเหตุประกอบ - button_update: ปรับปรุง - button_configure: ปรับแต่ง - - status_active: เปิดใช้งานแล้ว - status_registered: รอการอนุมัติ - status_locked: ล็อค - - text_select_mail_notifications: เลือกการกระทำที่ต้องการให้ส่งอีเมล์แจ้ง. - text_regexp_info: ตัวอย่าง ^[A-Z0-9]+$ - text_min_max_length_info: 0 หมายถึงไม่จำกัด - text_project_destroy_confirmation: คุณแน่ใจไหมว่าต้องการลบโครงการและข้อมูลที่เกี่ยวข้่อง ? - text_subprojects_destroy_warning: "โครงการย่อย: %{value} จะถูกลบด้วย." - text_workflow_edit: เลือกบทบาทและการติดตาม เพื่อแก้ไขลำดับงาน - text_are_you_sure: คุณแน่ใจไหม ? - text_tip_issue_begin_day: งานที่เริ่มวันนี้ - text_tip_issue_end_day: งานที่จบวันนี้ - text_tip_issue_begin_end_day: งานที่เริ่มและจบวันนี้ - text_caracters_maximum: "สูงสุด %{count} ตัวอักษร." - text_caracters_minimum: "ต้องยาวอย่างน้อย %{count} ตัวอักษร." - text_length_between: "ความยาวระหว่าง %{min} ถึง %{max} ตัวอักษร." - text_tracker_no_workflow: ไม่ได้บัญญัติลำดับงานสำหรับการติดตามนี้ - text_unallowed_characters: ตัวอักษรต้องห้าม - text_comma_separated: ใส่ได้หลายค่า โดยคั่นด้วยลูกน้ำ( ,). - text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages - text_issue_added: "ปัญหา %{id} ถูกแจ้งโดย %{author}." - text_issue_updated: "ปัญหา %{id} ถูกปรับปรุงโดย %{author}." - text_wiki_destroy_confirmation: คุณแน่ใจหรือว่าต้องการลบ wiki นี้พร้อมทั้งเนี้อหา? - text_issue_category_destroy_question: "บางปัญหา (%{count}) อยู่ในประเภทนี้. คุณต้องการทำอย่างไร ?" - text_issue_category_destroy_assignments: ลบประเภทนี้ - text_issue_category_reassign_to: ระบุปัญหาในประเภทนี้ - text_user_mail_option: "ในโครงการที่ไม่ได้เลือก, คุณจะได้รับการแจ้งเกี่ยวกับสิ่งที่คุณเฝ้าดูหรือมีส่วนเกี่ยวข้อง (เช่นปัญหาที่คุณแจ้งไว้หรือได้รับมอบหมาย)." - text_no_configuration_data: "บทบาท, การติดตาม, สถานะปัญหา และลำดับงานยังไม่ได้ถูกตั้งค่า.\nขอแนะนำให้โหลดค่าเริ่มต้น. คุณสามารถแก้ไขค่าได้หลังจากโหลดแล้ว." - text_load_default_configuration: โหลดค่าเริ่มต้น - text_status_changed_by_changeset: "ประยุกต์ใช้ในกลุ่มการเปลี่ยนแปลง %{value}." - text_issues_destroy_confirmation: 'คุณแน่ใจไหมว่าต้องการลบปัญหา(ทั้งหลาย)ที่เลือกไว้?' - text_select_project_modules: 'เลือกส่วนประกอบที่ต้องการใช้งานสำหรับโครงการนี้:' - text_default_administrator_account_changed: ค่าเริ่มต้นของบัญชีผู้บริหารจัดการถูกเปลี่ยนแปลง - text_file_repository_writable: ที่เก็บต้นฉบับสามารถเขียนได้ - text_minimagick_available: MiniMagick มีให้ใช้ (เป็นตัวเลือก) - text_destroy_time_entries_question: "%{hours} ชั่วโมงที่ถูกแจ้งในปัญหานี้จะโดนลบ. คุณต้องการทำอย่างไร?" - text_destroy_time_entries: ลบเวลาที่รายงานไว้ - text_assign_time_entries_to_project: ระบุเวลาที่ใช้ในโครงการนี้ - text_reassign_time_entries: 'ระบุเวลาที่ใช้ในโครงการนี่อีกครั้ง:' - - default_role_manager: ผู้จัดการ - default_role_developer: ผู้พัฒนา - default_role_reporter: ผู้รายงาน - default_tracker_bug: บั๊ก - default_tracker_feature: ลักษณะเด่น - default_tracker_support: สนับสนุน - default_issue_status_new: เกิดขึ้น - default_issue_status_in_progress: In Progress - default_issue_status_resolved: ดำเนินการ - default_issue_status_feedback: รอคำตอบ - default_issue_status_closed: จบ - default_issue_status_rejected: ยกเลิก - default_doc_category_user: เอกสารของผู้ใช้ - default_doc_category_tech: เอกสารทางเทคนิค - default_priority_low: ต่ำ - default_priority_normal: ปกติ - default_priority_high: สูง - default_priority_urgent: เร่งด่วน - default_priority_immediate: ด่วนมาก - default_activity_design: ออกแบบ - default_activity_development: พัฒนา - - enumeration_issue_priorities: ความสำคัญของปัญหา - enumeration_doc_categories: ประเภทเอกสาร - enumeration_activities: กิจกรรม (ใช้ในการติดตามเวลา) - label_and_its_subprojects: "%{value} and its subprojects" - mail_body_reminder: "%{count} issue(s) that are assigned to you are due in the next %{days} days:" - mail_subject_reminder: "%{count} issue(s) due in the next %{days} days" - text_user_wrote: "%{value} wrote:" - text_user_wrote_in: "%{value} wrote (%{link}):" - label_duplicated_by: duplicated by - setting_enabled_scm: Enabled SCM - text_enumeration_category_reassign_to: 'Reassign them to this value:' - text_enumeration_destroy_question: "%{count} objects are assigned to this value." - label_incoming_emails: Incoming emails - label_generate_key: Generate a key - setting_mail_handler_api_enabled: Enable WS for incoming emails - setting_mail_handler_api_key: API key - text_email_delivery_not_configured: "Email delivery is not configured, and notifications are disabled.\nConfigure your SMTP server in config/configuration.yml and restart the application to enable them." - field_parent_title: Parent page - label_issue_watchers: Watchers - button_quote: Quote - setting_sequential_project_identifiers: Generate sequential project identifiers - notice_unable_delete_version: Unable to delete version - label_renamed: renamed - label_copied: copied - setting_plain_text_mail: plain text only (no HTML) - permission_view_files: View files - permission_edit_issues: Edit issues - permission_edit_own_time_entries: Edit own time logs - permission_manage_public_queries: Manage public queries - permission_add_issues: Add issues - permission_log_time: Log spent time - permission_view_changesets: View changesets - permission_view_time_entries: View spent time - permission_manage_versions: Manage versions - permission_manage_wiki: Manage wiki - permission_manage_categories: Manage issue categories - permission_protect_wiki_pages: Protect wiki pages - permission_comment_news: Comment news - permission_delete_messages: Delete messages - permission_select_project_modules: Select project modules - permission_edit_wiki_pages: Edit wiki pages - permission_add_issue_watchers: Add watchers - permission_view_gantt: View gantt chart - permission_manage_issue_relations: Manage issue relations - permission_delete_wiki_pages: Delete wiki pages - permission_manage_boards: Manage boards - permission_delete_wiki_pages_attachments: Delete attachments - permission_view_wiki_edits: View wiki history - permission_add_messages: Post messages - permission_view_messages: View messages - permission_manage_files: Manage files - permission_edit_issue_notes: Edit notes - permission_manage_news: Manage news - permission_view_calendar: View calendrier - permission_manage_members: Manage members - permission_edit_messages: Edit messages - permission_delete_issues: Delete issues - permission_view_issue_watchers: View watchers list - permission_manage_repository: Manage repository - permission_commit_access: Commit access - permission_browse_repository: Browse repository - permission_view_documents: View documents - permission_edit_project: Edit project - permission_add_issue_notes: Add notes - permission_save_queries: Save queries - permission_view_wiki_pages: View wiki - permission_rename_wiki_pages: Rename wiki pages - permission_edit_time_entries: Edit time logs - permission_edit_own_issue_notes: Edit own notes - setting_gravatar_enabled: Use Gravatar user icons - label_example: Example - text_repository_usernames_mapping: "Select ou update the Redmine user mapped to each username found in the repository log.\nUsers with the same Redmine and repository username or email are automatically mapped." - permission_edit_own_messages: Edit own messages - permission_delete_own_messages: Delete own messages - label_user_activity: "%{value}'s activity" - label_updated_time_by: "Updated by %{author} %{age} ago" - text_diff_truncated: '... This diff was truncated because it exceeds the maximum size that can be displayed.' - setting_diff_max_lines_displayed: Max number of diff lines displayed - text_plugin_assets_writable: Plugin assets directory writable - warning_attachments_not_saved: "%{count} file(s) could not be saved." - button_create_and_continue: Create and add another - text_custom_field_possible_values_info: 'One line for each value' - label_display: Display - field_editable: Editable - setting_repository_log_display_limit: Maximum number of revisions displayed on file log - setting_file_max_size_displayed: Max size of text files displayed inline - field_watcher: Watcher - setting_openid: Allow OpenID login and registration - field_identity_url: OpenID URL - label_login_with_open_id_option: or login with OpenID - field_content: Content - label_descending: Descending - label_sort: Sort - label_ascending: Ascending - label_date_from_to: From %{start} to %{end} - label_greater_or_equal: ">=" - label_less_or_equal: <= - text_wiki_page_destroy_question: This page has %{descendants} child page(s) and descendant(s). What do you want to do? - text_wiki_page_reassign_children: Reassign child pages to this parent page - text_wiki_page_nullify_children: Keep child pages as root pages - text_wiki_page_destroy_children: Delete child pages and all their descendants - setting_password_min_length: Minimum password length - field_group_by: Group results by - mail_subject_wiki_content_updated: "'%{id}' wiki page has been updated" - label_wiki_content_added: Wiki page added - mail_subject_wiki_content_added: "'%{id}' wiki page has been added" - mail_body_wiki_content_added: The '%{id}' wiki page has been added by %{author}. - label_wiki_content_updated: Wiki page updated - mail_body_wiki_content_updated: The '%{id}' wiki page has been updated by %{author}. - permission_add_project: Create project - setting_new_project_user_role_id: Role given to a non-admin user who creates a project - label_view_all_revisions: View all revisions - label_tag: Tag - label_branch: Branch - error_no_tracker_in_project: No tracker is associated to this project. Please check the Project settings. - error_no_default_issue_status: No default issue status is defined. Please check your configuration (Go to "Administration -> Issue statuses"). - text_journal_changed: "%{label} changed from %{old} to %{new}" - text_journal_set_to: "%{label} set to %{value}" - text_journal_deleted: "%{label} deleted (%{old})" - label_group_plural: Groups - label_group: Group - label_group_new: New group - label_time_entry_plural: Spent time - text_journal_added: "%{label} %{value} added" - field_active: Active - enumeration_system_activity: System Activity - permission_delete_issue_watchers: Delete watchers - version_status_closed: closed - version_status_locked: locked - version_status_open: open - error_can_not_reopen_issue_on_closed_version: An issue assigned to a closed version can not be reopened - label_user_anonymous: Anonymous - button_move_and_follow: Move and follow - setting_default_projects_modules: Default enabled modules for new projects - setting_gravatar_default: Default Gravatar image - field_sharing: Sharing - label_version_sharing_hierarchy: With project hierarchy - label_version_sharing_system: With all projects - label_version_sharing_descendants: With subprojects - label_version_sharing_tree: With project tree - label_version_sharing_none: Not shared - error_can_not_archive_project: This project can not be archived - button_copy_and_follow: Copy and follow - label_copy_source: Source - setting_issue_done_ratio: Calculate the issue done ratio with - setting_issue_done_ratio_issue_status: Use the issue status - error_issue_done_ratios_not_updated: Issue done ratios not updated. - error_workflow_copy_target: Please select target tracker(s) and role(s) - setting_issue_done_ratio_issue_field: Use the issue field - label_copy_same_as_target: Same as target - label_copy_target: Target - notice_issue_done_ratios_updated: Issue done ratios updated. - error_workflow_copy_source: Please select a source tracker or role - label_update_issue_done_ratios: Update issue done ratios - setting_start_of_week: Start calendars on - permission_view_issues: View Issues - label_display_used_statuses_only: Only display statuses that are used by this tracker - label_revision_id: Revision %{value} - label_api_access_key: API access key - label_api_access_key_created_on: API access key created %{value} ago - label_feeds_access_key: Atom access key - notice_api_access_key_reseted: Your API access key was reset. - setting_rest_api_enabled: Enable REST web service - label_missing_api_access_key: Missing an API access key - label_missing_feeds_access_key: Missing a Atom access key - button_show: Show - text_line_separated: Multiple values allowed (one line for each value). - setting_mail_handler_body_delimiters: Truncate emails after one of these lines - permission_add_subprojects: Create subprojects - label_subproject_new: New subproject - 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. - Are you sure you want to continue? - label_close_versions: Close completed versions - label_board_sticky: Sticky - label_board_locked: Locked - permission_export_wiki_pages: Export wiki pages - setting_cache_formatted_text: Cache formatted text - permission_manage_project_activities: Manage project activities - error_unable_delete_issue_status: Unable to delete issue status (%{value}) - label_profile: Profile - permission_manage_subtasks: Manage subtasks - field_parent_issue: Parent task - label_subtask_plural: Subtasks - label_project_copy_notifications: Send email notifications during the project copy - error_can_not_delete_custom_field: Unable to delete custom field - error_unable_to_connect: Unable to connect (%{value}) - error_can_not_remove_role: This role is in use and can not be deleted. - error_can_not_delete_tracker: This tracker contains issues and cannot be deleted. - field_principal: Principal - notice_failed_to_save_members: "Failed to save member(s): %{errors}." - text_zoom_out: Zoom out - text_zoom_in: Zoom in - notice_unable_delete_time_entry: Unable to delete time log entry. - label_overall_spent_time: Overall spent time - field_time_entries: Log time - project_module_gantt: Gantt - project_module_calendar: Calendar - button_edit_associated_wikipage: "Edit associated Wiki page: %{page_title}" - field_text: Text field - setting_default_notification_option: Default notification option - label_user_mail_option_only_my_events: Only for things I watch or I'm involved in - label_user_mail_option_none: No events - field_member_of_group: Assignee's group - field_assigned_to_role: Assignee's role - notice_not_authorized_archived_project: The project you're trying to access has been archived. - label_principal_search: "Search for user or group:" - label_user_search: "Search for user:" - field_visible: Visible - setting_commit_logtime_activity_id: Activity for logged time - text_time_logged_by_changeset: Applied in changeset %{value}. - setting_commit_logtime_enabled: Enable time logging - notice_gantt_chart_truncated: The chart was truncated because it exceeds the maximum number of items that can be displayed (%{max}) - setting_gantt_items_limit: Maximum number of items displayed on the gantt chart - field_warn_on_leaving_unsaved: Warn me when leaving a page with unsaved text - text_warn_on_leaving_unsaved: The current page contains unsaved text that will be lost if you leave this page. - label_my_queries: My custom queries - text_journal_changed_no_detail: "%{label} updated" - label_news_comment_added: Comment added to a news - button_expand_all: Expand all - button_collapse_all: Collapse all - label_additional_workflow_transitions_for_assignee: Additional transitions allowed when the user is the assignee - label_additional_workflow_transitions_for_author: Additional transitions allowed when the user is the author - label_bulk_edit_selected_time_entries: Bulk edit selected time entries - text_time_entries_destroy_confirmation: Are you sure you want to delete the selected time entr(y/ies)? - label_role_anonymous: Anonymous - label_role_non_member: Non member - label_issue_note_added: Note added - label_issue_status_updated: Status updated - label_issue_priority_updated: Priority updated - label_issues_visibility_own: Issues created by or assigned to the user - field_issues_visibility: Issues visibility - label_issues_visibility_all: All issues - permission_set_own_issues_private: Set own issues public or private - field_is_private: Private - permission_set_issues_private: Set issues public or private - label_issues_visibility_public: All non private issues - text_issues_destroy_descendants_confirmation: This will also delete %{count} subtask(s). - field_commit_logs_encoding: Commit messages encoding - field_scm_path_encoding: Path encoding - text_scm_path_encoding_note: "Default: UTF-8" - field_path_to_repository: Path to repository - field_root_directory: Root directory - field_cvs_module: Module - field_cvsroot: CVSROOT - text_mercurial_repository_note: Local repository (e.g. /hgrepo, c:\hgrepo) - text_scm_command: Command - text_scm_command_version: Version - label_git_report_last_commit: Report last commit for files and directories - notice_issue_successful_create: Issue %{id} created. - label_between: between - setting_issue_group_assignment: Allow issue assignment to groups - label_diff: diff - text_git_repository_note: Repository is bare and local (e.g. /gitrepo, c:\gitrepo) - description_query_sort_criteria_direction: Sort direction - description_project_scope: Search scope - description_filter: Filter - description_user_mail_notification: Mail notification settings - description_message_content: Message content - description_available_columns: Available Columns - description_issue_category_reassign: Choose issue category - description_search: Searchfield - description_notes: Notes - description_choose_project: Projects - description_query_sort_criteria_attribute: Sort attribute - description_wiki_subpages_reassign: Choose new parent page - description_selected_columns: Selected Columns - label_parent_revision: Parent - label_child_revision: Child - error_scm_annotate_big_text_file: The entry cannot be annotated, as it exceeds the maximum text file size. - setting_default_issue_start_date_to_creation_date: Use current date as start date for new issues - button_edit_section: Edit this section - setting_repositories_encodings: Attachments and repositories encodings - description_all_columns: All Columns - button_export: Export - label_export_options: "%{export_format} export options" - error_attachment_too_big: This file cannot be uploaded because it exceeds the maximum allowed file size (%{max_size}) - notice_failed_to_save_time_entries: "Failed to save %{count} time entrie(s) on %{total} selected: %{ids}." - label_x_issues: - zero: 0 ปัญหา - one: 1 ปัญหา - other: "%{count} ปัญหา" - label_repository_new: New repository - field_repository_is_default: Main repository - label_copy_attachments: Copy attachments - label_item_position: "%{position}/%{count}" - label_completed_versions: Completed versions - text_project_identifier_info: Only lower case letters (a-z), numbers, dashes and underscores are allowed.
    Once saved, the identifier cannot be changed. - field_multiple: Multiple values - setting_commit_cross_project_ref: Allow issues of all the other projects to be referenced and fixed - text_issue_conflict_resolution_add_notes: Add my notes and discard my other changes - text_issue_conflict_resolution_overwrite: Apply my changes anyway (previous notes will be kept but some changes may be overwritten) - notice_issue_update_conflict: The issue has been updated by an other user while you were editing it. - text_issue_conflict_resolution_cancel: Discard all my changes and redisplay %{link} - permission_manage_related_issues: Manage related issues - field_auth_source_ldap_filter: LDAP filter - label_search_for_watchers: Search for watchers to add - notice_account_deleted: Your account has been permanently deleted. - setting_unsubscribe: Allow users to delete their own account - button_delete_my_account: Delete my account - text_account_destroy_confirmation: |- - Are you sure you want to proceed? - Your account will be permanently deleted, with no way to reactivate it. - error_session_expired: Your session has expired. Please login again. - text_session_expiration_settings: "Warning: changing these settings may expire the current sessions including yours." - setting_session_lifetime: Session maximum lifetime - setting_session_timeout: Session inactivity timeout - label_session_expiration: Session expiration - permission_close_project: Close / reopen the project - button_close: Close - button_reopen: Reopen - project_status_active: active - project_status_closed: closed - project_status_archived: archived - text_project_closed: This project is closed and read-only. - notice_user_successful_create: User %{id} created. - field_core_fields: Standard fields - field_timeout: Timeout (in seconds) - setting_thumbnails_enabled: Display attachment thumbnails - setting_thumbnails_size: Thumbnails size (in pixels) - label_status_transitions: Status transitions - label_fields_permissions: Fields permissions - label_readonly: Read-only - label_required: Required - text_repository_identifier_info: Only lower case letters (a-z), numbers, dashes and underscores are allowed.
    Once saved, the identifier cannot be changed. - field_board_parent: Parent forum - label_attribute_of_project: Project's %{name} - label_attribute_of_author: Author's %{name} - label_attribute_of_assigned_to: Assignee's %{name} - label_attribute_of_fixed_version: Target version's %{name} - label_copy_subtasks: Copy subtasks - label_copied_to: copied to - label_copied_from: copied from - label_any_issues_in_project: any issues in project - label_any_issues_not_in_project: any issues not in project - field_private_notes: Private notes - permission_view_private_notes: View private notes - permission_set_notes_private: Set notes as private - label_no_issues_in_project: no issues in project - label_any: ทั้งหมด - label_last_n_weeks: last %{count} weeks - setting_cross_project_subtasks: Allow cross-project subtasks - label_cross_project_descendants: With subprojects - label_cross_project_tree: With project tree - label_cross_project_hierarchy: With project hierarchy - label_cross_project_system: With all projects - button_hide: Hide - setting_non_working_week_days: Non-working days - label_in_the_next_days: in the next - label_in_the_past_days: in the past - label_attribute_of_user: User's %{name} - text_turning_multiple_off: If you disable multiple values, multiple values will be - removed in order to preserve only one value per item. - label_attribute_of_issue: Issue's %{name} - permission_add_documents: Add documents - permission_edit_documents: Edit documents - permission_delete_documents: Delete documents - label_gantt_progress_line: Progress line - setting_jsonp_enabled: Enable JSONP support - field_inherit_members: Inherit members - field_closed_on: Closed - field_generate_password: Generate password - setting_default_projects_tracker_ids: Default trackers for new projects - label_total_time: จำนวนรวม - text_scm_config: You can configure your SCM commands in config/configuration.yml. Please restart the application after editing it. - text_scm_command_not_available: SCM command is not available. Please check settings on the administration panel. - setting_emails_header: Email header - notice_account_not_activated_yet: You haven't activated your account yet. If you want - to receive a new activation email, please click this link. - notice_account_locked: Your account is locked. - label_hidden: Hidden - label_visibility_private: to me only - label_visibility_roles: to these roles only - label_visibility_public: to any users - field_must_change_passwd: Must change password at next logon - notice_new_password_must_be_different: The new password must be different from the - current password - setting_mail_handler_excluded_filenames: Exclude attachments by name - text_convert_available: ImageMagick convert available (optional) - label_link: Link - label_only: only - label_drop_down_list: drop-down list - label_checkboxes: checkboxes - label_link_values_to: Link values to URL - setting_force_default_language_for_anonymous: Force default language for anonymous - users - setting_force_default_language_for_loggedin: Force default language for logged-in - users - label_custom_field_select_type: Select the type of object to which the custom field - is to be attached - label_issue_assigned_to_updated: Assignee updated - label_check_for_updates: Check for updates - label_latest_compatible_version: Latest compatible version - label_unknown_plugin: Unknown plugin - label_radio_buttons: radio buttons - label_group_anonymous: Anonymous users - label_group_non_member: Non member users - label_add_projects: Add projects - field_default_status: Default status - text_subversion_repository_note: 'Examples: file:///, http://, https://, svn://, svn+[tunnelscheme]://' - field_users_visibility: Users visibility - label_users_visibility_all: All active users - label_users_visibility_members_of_visible_projects: Members of visible projects - label_edit_attachments: Edit attached files - setting_link_copied_issue: Link issues on copy - label_link_copied_issue: Link copied issue - label_ask: Ask - label_search_attachments_yes: Search attachment filenames and descriptions - label_search_attachments_no: Do not search attachments - label_search_attachments_only: Search attachments only - label_search_open_issues_only: Open issues only - field_address: อีเมล์ - setting_max_additional_emails: Maximum number of additional email addresses - label_email_address_plural: Emails - label_email_address_add: Add email address - label_enable_notifications: Enable notifications - label_disable_notifications: Disable notifications - setting_search_results_per_page: Search results per page - label_blank_value: blank - permission_copy_issues: Copy issues - error_password_expired: Your password has expired or the administrator requires you - to change it. - field_time_entries_visibility: Time logs visibility - setting_password_max_age: Require password change after - label_parent_task_attributes: Parent tasks attributes - label_parent_task_attributes_derived: Calculated from subtasks - label_parent_task_attributes_independent: Independent of subtasks - label_time_entries_visibility_all: All time entries - label_time_entries_visibility_own: Time entries created by the user - label_member_management: Member management - label_member_management_all_roles: All roles - label_member_management_selected_roles_only: Only these roles - label_password_required: Confirm your password to continue - label_total_spent_time: Overall spent time - notice_import_finished: "%{count} items have been imported" - notice_import_finished_with_errors: "%{count} out of %{total} items could not be imported" - error_invalid_file_encoding: The file is not a valid %{encoding} encoded file - error_invalid_csv_file_or_settings: The file is not a CSV file or does not match the - settings below - error_can_not_read_import_file: An error occurred while reading the file to import - permission_import_issues: Import issues - label_import_issues: Import issues - label_select_file_to_import: Select the file to import - label_fields_separator: Field separator - label_fields_wrapper: Field wrapper - label_encoding: Encoding - label_comma_char: Comma - label_semi_colon_char: Semicolon - label_quote_char: Quote - label_double_quote_char: Double quote - label_fields_mapping: Fields mapping - label_file_content_preview: File content preview - label_create_missing_values: Create missing values - button_import: Import - field_total_estimated_hours: Total estimated time - label_api: API - label_total_plural: Totals - label_assigned_issues: Assigned issues - label_field_format_enumeration: Key/value list - label_f_hour_short: '%{value} h' - field_default_version: Default version - error_attachment_extension_not_allowed: Attachment extension %{extension} is not allowed - setting_attachment_extensions_allowed: Allowed extensions - setting_attachment_extensions_denied: Disallowed extensions - label_any_open_issues: any open issues - label_no_open_issues: no open issues - label_default_values_for_new_users: Default values for new users - error_ldap_bind_credentials: Invalid LDAP Account/Password - setting_sys_api_key: API key - setting_lost_password: ลืมรหัสผ่าน - mail_subject_security_notification: Security notification - mail_body_security_notification_change: ! '%{field} was changed.' - mail_body_security_notification_change_to: ! '%{field} was changed to %{value}.' - mail_body_security_notification_add: ! '%{field} %{value} was added.' - mail_body_security_notification_remove: ! '%{field} %{value} was removed.' - mail_body_security_notification_notify_enabled: Email address %{value} now receives - notifications. - mail_body_security_notification_notify_disabled: Email address %{value} no longer - receives notifications. - mail_body_settings_updated: ! 'The following settings were changed:' - field_remote_ip: IP address - label_wiki_page_new: New wiki page - label_relations: Relations - button_filter: Filter - mail_body_password_updated: Your password has been changed. - label_no_preview: No preview available - error_no_tracker_allowed_for_new_issue_in_project: The project doesn't have any trackers - for which you can create an issue - label_tracker_all: All trackers - label_new_project_issue_tab_enabled: Display the "New issue" tab - setting_new_item_menu_tab: Project menu tab for creating new objects - label_new_object_tab_enabled: Display the "+" drop-down - error_no_projects_with_tracker_allowed_for_new_issue: There are no projects with trackers - for which you can create an issue - field_textarea_font: Font used for text areas - label_font_default: Default font - label_font_monospace: Monospaced font - label_font_proportional: Proportional font - setting_timespan_format: Time span format - label_table_of_contents: Table of contents - setting_commit_logs_formatting: Apply text formatting to commit messages - setting_mail_handler_enable_regex: Enable regular expressions - error_move_of_child_not_possible: 'Subtask %{child} could not be moved to the new - project: %{errors}' - error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted: Spent time cannot - be reassigned to an issue that is about to be deleted - setting_timelog_required_fields: Required fields for time logs - label_attribute_of_object: '%{object_name}''s %{name}' - label_user_mail_option_only_assigned: Only for things I watch or I am assigned to - label_user_mail_option_only_owner: Only for things I watch or I am the owner of - warning_fields_cleared_on_bulk_edit: Changes will result in the automatic deletion - of values from one or more fields on the selected objects - field_updated_by: Updated by - field_last_updated_by: Last updated by - field_full_width_layout: Full width layout - label_last_notes: Last notes - field_digest: Checksum - field_default_assigned_to: Default assignee - setting_show_custom_fields_on_registration: Show custom fields on registration - permission_view_news: View news - label_no_preview_alternative_html: No preview available. %{link} the file instead. - label_no_preview_download: Download - setting_close_duplicate_issues: Close duplicate issues automatically - error_exceeds_maximum_hours_per_day: Cannot log more than %{max_hours} hours on the - same day (%{logged_hours} hours have already been logged) - setting_time_entry_list_defaults: Timelog list defaults - setting_timelog_accept_0_hours: Accept time logs with 0 hours - setting_timelog_max_hours_per_day: Maximum hours that can be logged per day and user - label_x_revisions: "%{count} revisions" - error_can_not_delete_auth_source: This authentication mode is in use and cannot be - deleted. - button_actions: Actions - mail_body_lost_password_validity: Please be aware that you may change the password - only once using this link. - text_login_required_html: When not requiring authentication, public projects and their - contents are openly available on the network. You can edit - the applicable permissions. - label_login_required_yes: 'Yes' - label_login_required_no: No, allow anonymous access to public projects - text_project_is_public_non_member: Public projects and their contents are available - to all logged-in users. - text_project_is_public_anonymous: Public projects and their contents are openly available - on the network. - label_version_and_files: Versions (%{count}) and Files - label_ldap: LDAP - label_ldaps_verify_none: LDAPS (without certificate check) - label_ldaps_verify_peer: LDAPS - label_ldaps_warning: It is recommended to use an encrypted LDAPS connection with certificate - check to prevent any manipulation during the authentication process. - label_nothing_to_preview: Nothing to preview - error_token_expired: This password recovery link has expired, please try again. - error_spent_on_future_date: Cannot log time on a future date - setting_timelog_accept_future_dates: Accept time logs on future dates - label_delete_link_to_subtask: ลบความสัมพันธ์ - error_not_allowed_to_log_time_for_other_users: You are not allowed to log time - for other users - permission_log_time_for_other_users: Log spent time for other users - label_tomorrow: tomorrow - label_next_week: next week - label_next_month: next month - text_role_no_workflow: No workflow defined for this role - text_status_no_workflow: No tracker uses this status in the workflows - setting_mail_handler_preferred_body_part: Preferred part of multipart (HTML) emails - setting_show_status_changes_in_mail_subject: Show status changes in issue mail notifications - subject - label_inherited_from_parent_project: Inherited from parent project - label_inherited_from_group: Inherited from group %{name} - label_trackers_description: Trackers description - label_open_trackers_description: View all trackers description - label_preferred_body_part_text: Text - label_preferred_body_part_html: HTML (experimental) - field_parent_issue_subject: Parent task subject - permission_edit_own_issues: Edit own issues - text_select_apply_tracker: Select tracker - label_updated_issues: Updated issues - text_avatar_server_config_html: The current avatar server is %{url}. - You can configure it in config/configuration.yml. - setting_gantt_months_limit: Maximum number of months displayed on the gantt chart - permission_import_time_entries: Import time entries - label_import_notifications: Send email notifications during the import - text_gs_available: ImageMagick PDF support available (optional) - field_recently_used_projects: Number of recently used projects in jump box - label_optgroup_bookmarks: Bookmarks - label_optgroup_others: Other projects - label_optgroup_recents: Recently used - button_project_bookmark: Add bookmark - button_project_bookmark_delete: Remove bookmark - field_history_default_tab: Issue's history default tab - label_issue_history_properties: Property changes - label_issue_history_notes: Notes - label_last_tab_visited: Last visited tab - field_unique_id: Unique ID - text_no_subject: no subject - setting_password_required_char_classes: Required character classes for passwords - label_password_char_class_uppercase: uppercase letters - label_password_char_class_lowercase: lowercase letters - label_password_char_class_digits: digits - label_password_char_class_special_chars: special characters - text_characters_must_contain: Must contain %{character_classes}. - label_starts_with: starts with - label_ends_with: ends with - label_issue_fixed_version_updated: Target version updated - setting_project_list_defaults: Projects list defaults - label_display_type: Display results as - label_display_type_list: List - label_display_type_board: Board - label_my_bookmarks: My bookmarks - label_import_time_entries: Import time entries diff --git a/config/locales/tr.yml b/config/locales/tr.yml deleted file mode 100644 index 695a999..0000000 --- a/config/locales/tr.yml +++ /dev/null @@ -1,1322 +0,0 @@ -# Turkish translations for Ruby on Rails -# by Ozgun Ataman (ozataman@gmail.com) -# by Burak Yigit Kaya (ben@byk.im) -# by Mert Salih Kaplan (mail@mertskaplan.com) - -tr: - direction: ltr - date: - formats: - default: "%d.%m.%Y" - short: "%e %b" - long: "%e %B %Y, %A" - only_day: "%e" - - day_names: [Pazar, Pazartesi, Salı, Çarşamba, Perşembe, Cuma, Cumartesi] - abbr_day_names: [Pzr, Pzt, Sal, Çrş, Prş, Cum, Cts] - month_names: [~, Ocak, Şubat, Mart, Nisan, Mayıs, Haziran, Temmuz, Ağustos, Eylül, Ekim, Kasım, Aralık] - abbr_month_names: [~, Oca, Şub, Mar, Nis, May, Haz, Tem, Ağu, Eyl, Eki, Kas, Ara] - order: - - :day - - :month - - :year - - time: - formats: - default: "%a %d.%b.%y %H:%M" - short: "%e %B, %H:%M" - long: "%e %B %Y, %A, %H:%M" - time: "%H:%M" - - am: "öğleden önce" - pm: "öğleden sonra" - - datetime: - distance_in_words: - half_a_minute: 'yarım dakika' - less_than_x_seconds: - zero: '1 saniyeden az' - one: '1 saniyeden az' - other: '%{count} saniyeden az' - x_seconds: - one: '1 saniye' - other: '%{count} saniye' - less_than_x_minutes: - zero: '1 dakikadan az' - one: '1 dakikadan az' - other: '%{count} dakikadan az' - x_minutes: - one: '1 dakika' - other: '%{count} dakika' - about_x_hours: - one: 'yaklaşık 1 saat' - other: 'yaklaşık %{count} saat' - x_hours: - one: "1 saat" - other: "%{count} saat" - x_days: - one: '1 gün' - other: '%{count} gün' - about_x_months: - one: 'yaklaşık 1 ay' - other: 'yaklaşık %{count} ay' - x_months: - one: '1 ay' - other: '%{count} ay' - about_x_years: - one: 'yaklaşık 1 yıl' - other: 'yaklaşık %{count} yıl' - over_x_years: - one: '1 yıldan fazla' - other: '%{count} yıldan fazla' - almost_x_years: - one: "neredeyse 1 Yıl" - other: "neredeyse %{count} yıl" - - number: - format: - precision: 2 - separator: ',' - delimiter: '.' - currency: - format: - unit: 'TRY' - format: '%n%u' - separator: ',' - delimiter: '.' - precision: 2 - percentage: - format: - delimiter: '.' - precision: - format: - delimiter: '.' - human: - format: - delimiter: '.' - precision: 3 - storage_units: - format: "%n %u" - units: - byte: - one: "Byte" - other: "Byte" - kb: "KB" - mb: "MB" - gb: "GB" - tb: "TB" - - support: - array: - sentence_connector: "ve" - skip_last_comma: true - - activerecord: - errors: - template: - header: - one: "%{model} girişi kaydedilemedi: 1 hata." - other: "%{model} girişi kadedilemedi: %{count} hata." - body: "Lütfen aşağıdaki hataları düzeltiniz:" - - messages: - inclusion: "kabul edilen bir kelime değil" - exclusion: "kullanılamaz" - invalid: "geçersiz" - confirmation: "teyidi uyuşmamakta" - accepted: "kabul edilmeli" - empty: "doldurulmalı" - blank: "doldurulmalı" - too_long: "çok uzun (en fazla %{count} karakter)" - too_short: "çok kısa (en az %{count} karakter)" - wrong_length: "yanlış uzunlukta (tam olarak %{count} karakter olmalı)" - taken: "hali hazırda kullanılmakta" - not_a_number: "geçerli bir sayı değil" - greater_than: "%{count} sayısından büyük olmalı" - greater_than_or_equal_to: "%{count} sayısına eşit veya büyük olmalı" - equal_to: "tam olarak %{count} olmalı" - less_than: "%{count} sayısından küçük olmalı" - less_than_or_equal_to: "%{count} sayısına eşit veya küçük olmalı" - odd: "tek olmalı" - even: "çift olmalı" - greater_than_start_date: "başlangıç tarihinden büyük olmalı" - not_same_project: "aynı projeye ait değil" - circular_dependency: "Bu ilişki döngüsel bağımlılık meydana getirecektir" - cant_link_an_issue_with_a_descendant: "Bir iş, alt işlerinden birine bağlanamaz" - earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" - not_a_regexp: "is not a valid regular expression" - open_issue_with_closed_parent: "An open issue cannot be attached to a closed parent task" - must_contain_uppercase: "must contain uppercase letters (A-Z)" - must_contain_lowercase: "must contain lowercase letters (a-z)" - must_contain_digits: "must contain digits (0-9)" - must_contain_special_chars: "must contain special characters (!, $, %, ...)" - models: - - actionview_instancetag_blank_option: Lütfen Seçin - - general_text_No: 'Hayır' - general_text_Yes: 'Evet' - general_text_no: 'hayır' - general_text_yes: 'evet' - general_lang_name: 'Turkish (Türkçe)' - general_csv_separator: ',' - general_csv_encoding: ISO-8859-9 - general_pdf_fontname: freesans - general_pdf_monospaced_fontname: freemono - general_first_day_of_week: '1' - - notice_account_updated: Hesap başarıyla güncelleştirildi. - notice_account_invalid_credentials: Geçersiz kullanıcı ya da parola - notice_account_password_updated: Parola başarıyla güncellendi. - notice_account_wrong_password: Yanlış parola - notice_account_register_done: Hesap başarıyla oluşturuldu. Hesabınızı etkinleştirmek için, size gönderilen e-postadaki bağlantıya tıklayın. - notice_account_unknown_email: Tanınmayan kullanıcı. - notice_can_t_change_password: Bu hesap harici bir denetim kaynağı kullanıyor. Parolayı değiştirmek mümkün değil. - notice_account_lost_email_sent: Yeni parola seçme talimatlarını içeren e-postanız gönderildi. - notice_account_activated: Hesabınız etkinleştirildi. Şimdi giriş yapabilirsiniz. - notice_successful_create: Başarıyla oluşturuldu. - notice_successful_update: Başarıyla güncellendi. - notice_successful_delete: Başarıyla silindi. - notice_successful_connection: Bağlantı başarılı. - notice_file_not_found: Erişmek istediğiniz sayfa mevcut değil ya da kaldırılmış. - notice_locking_conflict: Veri başka bir kullanıcı tarafından güncellendi. - notice_not_authorized: Bu sayfaya erişme yetkiniz yok. - notice_email_sent: "E-posta gönderildi %{value}" - notice_email_error: "E-posta gönderilirken bir hata oluştu (%{value})" - notice_feeds_access_key_reseted: Atom erişim anahtarınız sıfırlandı. - notice_failed_to_save_issues: "Failed to save %{count} issue(s) on %{total} selected: %{ids}." - notice_no_issue_selected: "Seçili iş yok! Lütfen, düzenlemek istediğiniz işleri işaretleyin." - notice_account_pending: "Hesabınız oluşturuldu ve yönetici onayı bekliyor." - notice_default_data_loaded: Varasayılan konfigürasyon başarılıyla yüklendi. - - error_can_t_load_default_data: "Varsayılan konfigürasyon yüklenemedi: %{value}" - error_scm_not_found: "Depoda, giriş ya da değişiklik yok." - error_scm_command_failed: "Depoya erişmeye çalışırken bir hata meydana geldi: %{value}" - error_scm_annotate: "Giriş mevcut değil veya izah edilemedi." - error_issue_not_found_in_project: 'İş bilgisi bulunamadı veya bu projeye ait değil' - - mail_subject_lost_password: "Parolanız %{value}" - mail_body_lost_password: 'Parolanızı değiştirmek için, aşağıdaki bağlantıya tıklayın:' - mail_subject_register: "%{value} hesap aktivasyonu" - mail_body_register: 'Hesabınızı etkinleştirmek için, aşağıdaki bağlantıya tıklayın:' - mail_body_account_information_external: "Hesabınızı %{value} giriş yapmak için kullanabilirsiniz." - mail_body_account_information: Hesap bilgileriniz - mail_subject_account_activation_request: "%{value} hesabı etkinleştirme isteği" - mail_body_account_activation_request: "Yeni bir kullanıcı (%{value}) kaydedildi. Hesap onaylanmayı bekliyor:" - - - field_name: İsim - field_description: Yorum - field_summary: Özet - field_is_required: Gerekli - field_firstname: Ad - field_lastname: Soyad - field_mail: E-Posta - field_filename: Dosya - field_filesize: Boyut - field_downloads: İndirilenler - field_author: Oluşturan - field_created_on: Oluşturulma - field_updated_on: Güncellenme - field_field_format: Biçim - field_is_for_all: Tüm projeler için - field_possible_values: Kullanılabilir değerler - field_regexp: Düzenli ifadeler - field_min_length: En az uzunluk - field_max_length: En çok uzunluk - field_value: Değer - field_category: Kategori - field_title: Başlık - field_project: Proje - field_issue: İş - field_status: Durum - field_notes: Notlar - field_is_closed: İş kapatıldı - field_is_default: Varsayılan Değer - field_tracker: İş tipi - field_subject: Konu - field_due_date: Bitiş Tarihi - field_assigned_to: Atanan - field_priority: Öncelik - field_fixed_version: Hedef Sürüm - field_user: Kullanıcı - field_role: Rol - field_homepage: Anasayfa - field_is_public: Genel - field_parent: 'Üst proje: ' - field_is_in_roadmap: Yol haritasında gösterilen işler - field_login: Giriş - field_mail_notification: E-posta uyarıları - field_admin: Yönetici - field_last_login_on: Son Bağlantı - field_language: Dil - field_effective_date: Tarih - field_password: Parola - field_new_password: Yeni Parola - field_password_confirmation: Parola Doğrulama - field_version: Sürüm - field_type: Tip - field_host: Host - field_port: Port - field_account: Hesap - field_base_dn: Base DN - field_attr_login: Giriş Niteliği - field_attr_firstname: Ad Niteliği - field_attr_lastname: Soyad Niteliği - field_attr_mail: E-Posta Niteliği - field_onthefly: Anında kullanıcı oluşturma - field_start_date: Başlangıç Tarihi - field_done_ratio: Tamamlanma yüzdesi - field_auth_source: Kimlik Denetim Modu - field_hide_mail: E-posta adresimi gizle - field_comments: Yorumlar - field_url: URL - field_start_page: Başlangıç Sayfası - field_subproject: Alt Proje - field_hours: Saat - field_activity: Faaliyet - field_spent_on: Tarih - field_identifier: Tanımlayıcı - field_is_filter: süzgeç olarak kullanılmış - field_issue_to: İlişkili iş - field_delay: Gecikme - field_assignable: Bu role atanabilecek işler - field_redirect_existing_links: Mevcut bağlantıları yönlendir - field_estimated_hours: Kalan zaman - field_column_names: Sütunlar - field_time_zone: Saat dilimi - field_searchable: Aranabilir - field_default_value: Varsayılan değer - field_comments_sorting: Yorumları göster - - setting_app_title: Uygulama Bağlığı - setting_welcome_text: Hoşgeldin Mesajı - setting_default_language: Varsayılan Dil - setting_login_required: Kimlik denetimi gerekli mi - setting_self_registration: Otomatik kayıt - setting_attachment_max_size: Maksimum ek boyutu - setting_issues_export_limit: İşlerin dışa aktarılma sınırı - setting_mail_from: Gönderici e-posta adresi - setting_bcc_recipients: Alıcıları birbirinden gizle (bcc) - setting_host_name: Host adı - setting_text_formatting: Metin biçimi - setting_wiki_compression: Wiki geçmişini sıkıştır - setting_feeds_limit: Haber yayını içerik limiti - setting_default_projects_public: Yeni projeler varsayılan olarak herkese açık - setting_autofetch_changesets: Otomatik gönderi al - setting_sys_api_enabled: Depo yönetimi için WS'yi etkinleştir - setting_commit_ref_keywords: Başvuru Kelimeleri - setting_commit_fix_keywords: Sabitleme kelimeleri - setting_autologin: Otomatik Giriş - setting_date_format: Tarih Formati - setting_time_format: Zaman Formatı - setting_cross_project_issue_relations: Çapraz-Proje iş ilişkilendirmesine izin ver - setting_issue_list_default_columns: İş listesinde gösterilen varsayılan sütunlar - setting_emails_footer: E-posta dip not - setting_protocol: Protokol - setting_per_page_options: Sayfada başına öğe sayısı - setting_user_format: Kullanıcı gösterim biçimi - setting_activity_days_default: Proje faaliyetlerinde gösterilen gün sayısı - setting_display_subprojects_issues: Varsayılan olarak ana projenin iş listesinde alt proje işlerini göster - - project_module_issue_tracking: İş Takibi - project_module_time_tracking: Zaman Takibi - project_module_news: Haberler - project_module_documents: Belgeler - project_module_files: Dosyalar - project_module_wiki: Wiki - project_module_repository: Depo - project_module_boards: Tartışma Alanı - - label_user: Kullanıcı - label_user_plural: Kullanıcılar - label_user_new: Yeni Kullanıcı - label_project: Proje - label_project_new: Yeni proje - label_project_plural: Projeler - label_x_projects: - zero: hiç proje yok - one: 1 proje - other: "%{count} proje" - label_project_all: Tüm Projeler - label_project_latest: En son projeler - label_issue: İş - label_issue_new: Yeni İş - label_issue_plural: İşler - label_issue_view_all: Tüm işleri izle - label_issues_by: "%{value} tarafından gönderilmiş işler" - label_issue_added: İş eklendi - label_issue_updated: İş güncellendi - label_document: Belge - label_document_new: Yeni belge - label_document_plural: Belgeler - label_document_added: Belge eklendi - label_role: Rol - label_role_plural: Roller - label_role_new: Yeni rol - label_role_and_permissions: Roller ve izinler - label_member: Üye - label_member_new: Yeni üye - label_member_plural: Üyeler - label_tracker: İş tipi - label_tracker_plural: İş tipleri - label_tracker_new: Yeni iş tipi - label_workflow: İş akışı - label_issue_status: İş durumu - label_issue_status_plural: İş durumları - label_issue_status_new: Yeni durum - label_issue_category: İş kategorisi - label_issue_category_plural: İş kategorileri - label_issue_category_new: Yeni kategori - label_custom_field: Özel alan - label_custom_field_plural: Özel alanlar - label_custom_field_new: Yeni özel alan - label_enumerations: Numaralandırmalar - label_enumeration_new: Yeni değer - label_information: Bilgi - label_information_plural: Bilgi - label_register: Kayıt - label_password_lost: Parolamı unuttum - label_home: Anasayfa - label_my_page: Kişisel Sayfam - label_my_account: Hesabım - label_my_projects: Projelerim - label_administration: Yönetim - label_login: Giriş - label_logout: Çıkış - label_help: Yardım - label_reported_issues: Rapor edilmiş işler - label_assigned_to_me_issues: Bana atanmış işler - label_last_login: Son bağlantı - label_registered_on: Kayıt tarihi - label_activity: Faaliyet - label_overall_activity: Tüm faaliyetler - label_new: Yeni - label_logged_as: "Kullanıcı :" - label_environment: Çevre - label_authentication: Kimlik Denetimi - label_auth_source: Kimlik Denetim Modu - label_auth_source_new: Yeni Denetim Modu - label_auth_source_plural: Denetim Modları - label_subproject_plural: Alt Projeler - label_min_max_length: Min - Maks uzunluk - label_list: Liste - label_date: Tarih - label_integer: Tam sayı - label_float: Ondalıklı sayı - label_boolean: "Evet/Hayır" - label_string: Metin - label_text: Uzun Metin - label_attribute: Nitelik - label_attribute_plural: Nitelikler - label_no_data: Gösterilecek veri yok - label_change_status: Değişim Durumu - label_history: Geçmiş - label_attachment: Dosya - label_attachment_new: Yeni Dosya - label_attachment_delete: Dosyayı Sil - label_attachment_plural: Dosyalar - label_file_added: Eklenen Dosyalar - label_report: Rapor - label_report_plural: Raporlar - label_news: Haber - label_news_new: Haber ekle - label_news_plural: Haber - label_news_latest: Son Haberler - label_news_view_all: Tüm haberleri oku - label_news_added: Haber eklendi - label_settings: Ayarlar - label_overview: Genel - label_version: Sürüm - label_version_new: Yeni sürüm - label_version_plural: Sürümler - label_confirmation: Doğrulamama - label_export_to: "Diğer uygun kaynaklar:" - label_read: "Oku..." - label_public_projects: Genel Projeler - label_open_issues: açık - label_open_issues_plural: açık - label_closed_issues: kapalı - label_closed_issues_plural: kapalı - label_x_open_issues_abbr: - zero: hiç açık yok - one: 1 açık - other: "%{count} açık" - label_x_closed_issues_abbr: - zero: hiç kapalı yok - one: 1 kapalı - other: "%{count} kapalı" - label_total: Toplam - label_permissions: İzinler - label_current_status: Mevcut Durum - label_new_statuses_allowed: Yeni durumlara izin verildi - label_all: Hepsi - label_none: Hiçbiri - label_nobody: Hiçkimse - label_next: Sonraki - label_previous: Önceki - label_used_by: 'Kullanan: ' - label_details: Ayrıntılar - label_add_note: Not ekle - label_calendar: Takvim - label_months_from: ay öncesinden itibaren - label_gantt: İş-Zaman Çizelgesi - label_internal: Dahili - label_last_changes: "Son %{count} değişiklik" - label_change_view_all: Tüm Değişiklikleri göster - label_comment: Yorum - label_comment_plural: Yorumlar - label_x_comments: - zero: hiç yorum yok - one: 1 yorum - other: "%{count} yorum" - label_comment_add: Yorum Ekle - label_comment_added: Yorum Eklendi - label_comment_delete: Yorumları sil - label_query: Özel Sorgu - label_query_plural: Özel Sorgular - label_query_new: Yeni Sorgu - label_filter_add: Süzgeç ekle - label_filter_plural: Süzgeçler - label_equals: Eşit - label_not_equals: Eşit değil - label_in_less_than: küçüktür - label_in_more_than: büyüktür - label_in: içinde - label_today: bugün - label_yesterday: Dün - label_this_week: Bu hafta - label_last_week: Geçen hafta - label_last_n_days: "Son %{count} gün" - label_this_month: Bu ay - label_last_month: Geçen ay - label_this_year: Bu yıl - label_date_range: Tarih aralığı - label_less_than_ago: günler öncesinden az - label_more_than_ago: günler öncesinden fazla - label_ago: gün önce - label_contains: içeriyor - label_not_contains: içermiyor - label_day_plural: Günler - label_repository: Depo - label_repository_plural: Depolar - label_browse: Gözat - label_revision: Değişiklik - label_revision_plural: Değişiklikler - label_associated_revisions: Birleştirilmiş değişiklikler - label_added: eklendi - label_modified: güncellendi - label_deleted: silindi - label_latest_revision: En son değişiklik - label_latest_revision_plural: En son değişiklikler - label_view_revisions: Değişiklikleri izle - label_max_size: En büyük boyut - label_sort_highest: Üste taşı - label_sort_higher: Yukarı taşı - label_sort_lower: Aşağı taşı - label_sort_lowest: Dibe taşı - label_roadmap: Yol Haritası - label_roadmap_due_in: "%{value} içinde bitmeli" - label_roadmap_overdue: "%{value} geç" - label_roadmap_no_issues: Bu sürüm için iş yok - label_search: Ara - label_result_plural: Sonuçlar - label_all_words: Tüm Kelimeler - label_wiki: Wiki - label_wiki_edit: Wiki düzenleme - label_wiki_edit_plural: Wiki düzenlemeleri - label_wiki_page: Wiki sayfası - label_wiki_page_plural: Wiki sayfaları - label_index_by_title: Başlığa göre diz - label_index_by_date: Tarihe göre diz - label_current_version: Güncel sürüm - label_preview: Önizleme - label_feed_plural: Beslemeler - label_changes_details: Bütün değişikliklerin detayları - label_issue_tracking: İş Takibi - label_spent_time: Harcanan zaman - label_f_hour: "%{value} saat" - label_f_hour_plural: "%{value} saat" - label_time_tracking: Zaman Takibi - label_change_plural: Değişiklikler - label_statistics: İstatistikler - label_commits_per_month: Aylık commit - label_commits_per_author: Oluşturan başına commit - label_view_diff: Farkları izle - label_diff_inline: satır içi - label_diff_side_by_side: Yan yana - label_options: Tercihler - label_copy_workflow_from: İşakışı kopyala - label_permissions_report: İzin raporu - label_watched_issues: İzlenmiş işler - label_related_issues: İlişkili işler - label_applied_status: uygulanmış işler - label_loading: Yükleniyor... - label_relation_new: Yeni ilişki - label_relation_delete: İlişkiyi sil - label_relates_to: ilişkili - label_duplicates: yinelenmiş - label_blocks: Engeller - label_blocked_by: Engelleyen - label_precedes: önce gelir - label_follows: sonra gelir - label_stay_logged_in: Sürekli bağlı kal - label_disabled: Devredışı - label_show_completed_versions: Tamamlanmış sürümleri göster - label_me: Ben - label_board: Tartışma Alanı - label_board_new: Yeni alan - label_board_plural: Tartışma alanları - label_topic_plural: Konular - label_message_plural: Mesajlar - label_message_last: Son mesaj - label_message_new: Yeni mesaj - label_message_posted: Mesaj eklendi - label_reply_plural: Cevaplar - label_send_information: Hesap bilgisini kullanıcıya gönder - label_year: Yıl - label_month: Ay - label_week: Hafta - label_date_from: Başlangıç - label_date_to: Bitiş - label_language_based: Kullanıcı dili bazlı - label_sort_by: "%{value} göre sırala" - label_send_test_email: Test e-postası gönder - label_feeds_access_key_created_on: "Atom erişim anahtarı %{value} önce oluşturuldu" - label_module_plural: Modüller - label_added_time_by: "%{author} tarafından %{age} önce eklendi" - label_updated_time: "%{value} önce güncellendi" - label_jump_to_a_project: Projeye git... - label_file_plural: Dosyalar - label_changeset_plural: Değişiklik Listeleri - label_default_columns: Varsayılan Sütunlar - label_no_change_option: (Değişiklik yok) - label_bulk_edit_selected_issues: Seçili işleri toplu olarak düzenle - label_theme: Tema - label_default: Varsayılan - label_search_titles_only: Sadece başlıkları ara - label_user_mail_option_all: "Tüm projelerimdeki herhangi bir olay için" - label_user_mail_option_selected: "Sadece seçili projelerdeki herhangi bir olay için" - label_user_mail_no_self_notified: "Kendi yaptığım değişikliklerden haberdar olmak istemiyorum" - label_registration_activation_by_email: e-posta ile hesap etkinleştirme - label_registration_manual_activation: Elle hesap etkinleştirme - label_registration_automatic_activation: Otomatik hesap etkinleştirme - label_display_per_page: "Sayfa başına: %{value}" - label_age: Yaş - label_change_properties: Özellikleri değiştir - label_general: Genel - label_scm: KY - label_plugins: Eklentiler - label_ldap_authentication: LDAP Denetimi - label_downloads_abbr: D/L - label_optional_description: İsteğe bağlı açıklama - label_add_another_file: Bir dosya daha ekle - label_preferences: Tercihler - label_chronological_order: Tarih sırasına göre - label_reverse_chronological_order: Ters tarih sırasına göre - - button_login: Giriş - button_submit: Gönder - button_save: Kaydet - button_check_all: Hepsini işaretle - button_uncheck_all: Tüm işaretleri kaldır - button_delete: Sil - button_create: Oluştur - button_test: Sına - button_edit: Düzenle - button_add: Ekle - button_change: Değiştir - button_apply: Uygula - button_clear: Temizle - button_lock: Kilitle - button_unlock: Kilidi aç - button_download: İndir - button_list: Listele - button_view: Bak - button_move: Taşı - button_back: Geri - button_cancel: İptal - button_activate: Etkinleştir - button_sort: Sırala - button_log_time: Zaman kaydı - button_rollback: Bu sürüme geri al - button_watch: İzle - button_unwatch: İzlemeyi iptal et - button_reply: Cevapla - button_archive: Arşivle - button_unarchive: Arşivlemeyi kaldır - button_reset: Sıfırla - button_rename: Yeniden adlandır - button_change_password: Parolayı değiştir - button_copy: Kopyala - button_annotate: Değişiklik geçmişine göre göster - button_update: Güncelle - button_configure: Yapılandır - - status_active: faal - status_registered: kayıtlı - status_locked: kilitli - - text_select_mail_notifications: Gönderilecek e-posta uyarısına göre hareketi seçin. - text_regexp_info: örn. ^[A-Z0-9]+$ - text_min_max_length_info: 0 sınırlama yok demektir - text_project_destroy_confirmation: Bu projeyi ve bağlantılı verileri silmek istediğinizden emin misiniz? - text_subprojects_destroy_warning: "Ayrıca %{value} alt proje silinecek." - text_workflow_edit: İşakışını düzenlemek için bir rol ve iş tipi seçin - text_are_you_sure: Emin misiniz ? - text_tip_issue_begin_day: Bugün başlayan görevler - text_tip_issue_end_day: Bugün sona eren görevler - text_tip_issue_begin_end_day: Bugün başlayan ve sona eren görevler - text_caracters_maximum: "En çok %{count} karakter." - text_caracters_minimum: "En az %{count} karakter uzunluğunda olmalı." - text_length_between: "%{min} ve %{max} karakterleri arasındaki uzunluk." - text_tracker_no_workflow: Bu iş tipi için işakışı tanımlanmamış - text_unallowed_characters: Yasaklı karakterler - text_comma_separated: Çoklu değer girilebilir(Virgül ile ayrılmış). - text_issues_ref_in_commit_messages: Teslim mesajlarındaki işleri çözme ve başvuruda bulunma - text_issue_added: "İş %{id}, %{author} tarafından rapor edildi." - text_issue_updated: "İş %{id}, %{author} tarafından güncellendi." - text_wiki_destroy_confirmation: bu wikiyi ve tüm içeriğini silmek istediğinizden emin misiniz? - text_issue_category_destroy_question: "Bazı işler (%{count}) bu kategoriye atandı. Ne yapmak istersiniz?" - text_issue_category_destroy_assignments: Kategori atamalarını kaldır - text_issue_category_reassign_to: İşleri bu kategoriye tekrar ata - text_user_mail_option: "Seçili olmayan projeler için, sadece dahil olduğunuz (oluşturan veya atanan) ya da izlediğiniz öğeler hakkında uyarılar alacaksınız." - text_no_configuration_data: "Roller, iş tipleri, iş durumları ve işakışı henüz yapılandırılmadı.\nVarsayılan yapılandırılmanın yüklenmesi şiddetle tavsiye edilir. Bir kez yüklendiğinde yapılandırmayı değiştirebileceksiniz." - text_load_default_configuration: Varsayılan yapılandırmayı yükle - text_status_changed_by_changeset: "Değişiklik listesi %{value} içinde uygulandı." - text_issues_destroy_confirmation: 'Seçili işleri silmek istediğinizden emin misiniz ?' - text_select_project_modules: 'Bu proje için etkinleştirmek istediğiniz modülleri seçin:' - text_default_administrator_account_changed: Varsayılan yönetici hesabı değişti - text_file_repository_writable: Dosya deposu yazılabilir - text_minimagick_available: MiniMagick Kullanılabilir (isteğe bağlı) - text_destroy_time_entries_question: Silmek üzere olduğunuz işler üzerine %{hours} saat raporlandı.Ne yapmak istersiniz ? - text_destroy_time_entries: Raporlanmış süreleri sil - text_assign_time_entries_to_project: Raporlanmış süreleri projeye ata - text_reassign_time_entries: 'Raporlanmış süreleri bu işe tekrar ata:' - - default_role_manager: Yönetici - default_role_developer: Geliştirici - default_role_reporter: Raporlayıcı - default_tracker_bug: Hata - default_tracker_feature: Özellik - default_tracker_support: Destek - default_issue_status_new: Yeni - default_issue_status_in_progress: Yapılıyor - default_issue_status_resolved: Çözüldü - default_issue_status_feedback: Geribildirim - default_issue_status_closed: "Kapatıldı" - default_issue_status_rejected: Reddedildi - default_doc_category_user: Kullanıcı Dökümantasyonu - default_doc_category_tech: Teknik Dökümantasyon - default_priority_low: Düşük - default_priority_normal: Normal - default_priority_high: Yüksek - default_priority_urgent: Acil - default_priority_immediate: Derhal - default_activity_design: Tasarım - default_activity_development: Geliştirme - - enumeration_issue_priorities: İş önceliği - enumeration_doc_categories: Belge Kategorileri - enumeration_activities: Faaliyetler (zaman takibi) - button_quote: Alıntı - setting_enabled_scm: KKY Açık - label_incoming_emails: "Gelen e-postalar" - label_generate_key: "Anahtar oluştur" - setting_sequential_project_identifiers: "Sıralı proje tanımlayıcıları oluştur" - field_parent_title: Üst sayfa - text_email_delivery_not_configured: "E-posta gönderme yapılandırılmadı ve bildirimler devre dışı.\nconfig/configuration.yml içinden SMTP sunucusunu yapılandırın ve uygulamayı yeniden başlatın." - text_enumeration_category_reassign_to: 'Hepsini şuna çevir:' - label_issue_watchers: Takipçiler - mail_body_reminder: "Size atanmış olan %{count} iş %{days} gün içerisinde bitirilmeli:" - label_duplicated_by: yineleyen - text_enumeration_destroy_question: "Bu nesneye %{count} değer bağlanmış." - text_user_wrote: "%{value} demiş ki:" - text_user_wrote_in: "%{value} demiş ki (%{link}):" - setting_mail_handler_api_enabled: Gelen e-postalar için WS'yi aç - label_and_its_subprojects: "%{value} ve alt projeleri" - mail_subject_reminder: "%{count} iş bir kaç güne bitecek" - setting_mail_handler_api_key: API anahtarı - general_csv_decimal_separator: '.' - notice_unable_delete_version: Sürüm silinemiyor - label_renamed: yeniden adlandırılmış - label_copied: kopyalanmış - setting_plain_text_mail: sadece düz metin (HTML yok) - permission_view_files: Dosyaları gösterme - permission_edit_issues: İşleri düzenleme - permission_edit_own_time_entries: Kendi zaman girişlerini düzenleme - permission_manage_public_queries: Herkese açık sorguları yönetme - permission_add_issues: İş ekleme - permission_log_time: Harcanan zamanı kaydetme - permission_view_changesets: Değişimleri gösterme(SVN, vs.) - permission_view_time_entries: Harcanan zamanı gösterme - permission_manage_versions: Sürümleri yönetme - permission_manage_wiki: Wiki'yi yönetme - permission_manage_categories: İş kategorilerini yönetme - permission_protect_wiki_pages: Wiki sayfalarını korumaya alma - permission_comment_news: Haberlere yorum yapma - permission_delete_messages: Mesaj silme - permission_select_project_modules: Proje modüllerini seçme - permission_edit_wiki_pages: Wiki sayfalarını düzenleme - permission_add_issue_watchers: Takipçi ekleme - permission_view_gantt: İş-Zaman çizelgesi gösterme - permission_manage_issue_relations: İşlerin biribiriyle bağlantılarını yönetme - permission_delete_wiki_pages: Wiki sayfalarını silme - permission_manage_boards: Panoları yönetme - permission_delete_wiki_pages_attachments: Ekleri silme - permission_view_wiki_edits: Wiki geçmişini gösterme - permission_add_messages: Mesaj gönderme - permission_view_messages: Mesajları gösterme - permission_manage_files: Dosyaları yönetme - permission_edit_issue_notes: Notları düzenleme - permission_manage_news: Haberleri yönetme - permission_view_calendar: Takvimleri gösterme - permission_manage_members: Üyeleri yönetme - permission_edit_messages: Mesajları düzenleme - permission_delete_issues: İşleri silme - permission_view_issue_watchers: Takipçi listesini gösterme - permission_manage_repository: Depo yönetimi - permission_commit_access: Gönderme erişimi - permission_browse_repository: Depoya gözatma - permission_view_documents: Belgeleri gösterme - permission_edit_project: Projeyi düzenleme - permission_add_issue_notes: Not ekleme - permission_save_queries: Sorgu kaydetme - permission_view_wiki_pages: Wiki gösterme - permission_rename_wiki_pages: Wiki sayfasının adını değiştirme - permission_edit_time_entries: Zaman kayıtlarını düzenleme - permission_edit_own_issue_notes: Kendi notlarını düzenleme - setting_gravatar_enabled: Kullanıcı resimleri için Gravatar kullan - label_example: Örnek - text_repository_usernames_mapping: "Redmine kullanıcı adlarını depo değişiklik kayıtlarındaki kullanıcı adlarıyla eşleştirin veya eşleştirmeleri güncelleyin.\nRedmine kullanıcı adları ile depo kullanıcı adları aynı olan kullanıcılar otomatik olarak eşlendirilecektir." - permission_edit_own_messages: Kendi mesajlarını düzenleme - permission_delete_own_messages: Kendi mesajlarını silme - label_user_activity: "%{value} kullanıcısının faaliyetleri" - label_updated_time_by: "%{author} tarafından %{age} önce güncellendi" - text_diff_truncated: '... Bu fark tam olarak gösterilemiyor çünkü gösterim için ayarlanmış üst sınırı aşıyor.' - setting_diff_max_lines_displayed: Gösterilebilecek maksimumu fark satırı - text_plugin_assets_writable: Eklenti yardımcı dosya dizini yazılabilir - warning_attachments_not_saved: "%{count} adet dosya kaydedilemedi." - button_create_and_continue: Oluştur ve devam et - text_custom_field_possible_values_info: 'Her değer için bir satır' - label_display: Göster - field_editable: Düzenlenebilir - setting_repository_log_display_limit: Dosya kaydında gösterilecek maksimum değişim sayısı - setting_file_max_size_displayed: Dahili olarak gösterilecek metin dosyaları için maksimum satır sayısı - field_watcher: Takipçi - setting_openid: Kayıt ve giriş için OpenID'ye izin ver - field_identity_url: OpenID URL - label_login_with_open_id_option: veya OpenID kullanın - field_content: İçerik - label_descending: Azalan - label_sort: Sırala - label_ascending: Artan - label_date_from_to: "%{start} - %{end} arası" - label_greater_or_equal: ">=" - label_less_or_equal: <= - text_wiki_page_destroy_question: Bu sayfanın %{descendants} adet alt sayfası var. Ne yapmak istersiniz? - text_wiki_page_reassign_children: Alt sayfaları bu sayfanın altına bağla - text_wiki_page_nullify_children: Alt sayfaları ana sayfa olarak sakla - text_wiki_page_destroy_children: Alt sayfaları ve onların alt sayfalarını tamamen sil - setting_password_min_length: Minimum parola uzunluğu - field_group_by: Sonuçları grupla - mail_subject_wiki_content_updated: "'%{id}' wiki sayfası güncellendi" - label_wiki_content_added: Wiki sayfası eklendi - mail_subject_wiki_content_added: "'%{id}' wiki sayfası eklendi" - mail_body_wiki_content_added: "'%{id}' wiki sayfası, %{author} tarafından eklendi." - label_wiki_content_updated: Wiki sayfası güncellendi - mail_body_wiki_content_updated: "'%{id}' wiki sayfası, %{author} tarafından güncellendi." - permission_add_project: Proje oluştur - setting_new_project_user_role_id: Yönetici olmayan ancak proje yaratabilen kullanıcıya verilen rol - label_view_all_revisions: Tüm değişiklikleri göster - label_tag: Etiket - label_branch: Kol - error_no_tracker_in_project: Bu projeye bağlanmış bir iş tipi yok. Lütfen proje ayarlarını kontrol edin. - error_no_default_issue_status: Varsayılan iş durumu tanımlanmamış. Lütfen ayarlarınızı kontrol edin ("Yönetim -> İş durumları" sayfasına gidin). - label_group_plural: Gruplar - label_group: Grup - label_group_new: Yeni grup - label_time_entry_plural: Harcanan zaman - text_journal_changed: "%{label}: %{old} -> %{new}" - text_journal_set_to: "%{label} %{value} yapıldı" - text_journal_deleted: "%{label} silindi (%{old})" - text_journal_added: "%{label} %{value} eklendi" - field_active: Etkin - enumeration_system_activity: Sistem Faaliyetleri - permission_delete_issue_watchers: İzleyicileri sil - version_status_closed: kapalı - version_status_locked: kilitli - version_status_open: açık - error_can_not_reopen_issue_on_closed_version: Kapatılmış bir sürüme ait işler tekrar açılamaz - label_user_anonymous: Anonim - button_move_and_follow: Yerini değiştir ve takip et - setting_default_projects_modules: Yeni projeler için varsayılan modüller - setting_gravatar_default: Varsayılan Gravatar resmi - field_sharing: Paylaşım - label_version_sharing_hierarchy: Proje hiyerarşisi ile - label_version_sharing_system: Tüm projeler ile - label_version_sharing_descendants: Alt projeler ile - label_version_sharing_tree: Proje ağacı ile - label_version_sharing_none: Paylaşılmamış - error_can_not_archive_project: Bu proje arşivlenemez - button_copy_and_follow: Kopyala ve takip et - label_copy_source: Kaynak - setting_issue_done_ratio: İş tamamlanma oranını şununla hesapla - setting_issue_done_ratio_issue_status: İş durumunu kullan - error_issue_done_ratios_not_updated: İş tamamlanma oranları güncellenmedi. - error_workflow_copy_target: Lütfen hedef iş tipi ve rolleri seçin - setting_issue_done_ratio_issue_field: İşteki alanı kullan - label_copy_same_as_target: Hedef ile aynı - label_copy_target: Hedef - notice_issue_done_ratios_updated: İş tamamlanma oranları güncellendi. - error_workflow_copy_source: Lütfen kaynak iş tipi ve rolleri seçin - label_update_issue_done_ratios: İş tamamlanma oranlarını güncelle - setting_start_of_week: Takvimleri şundan başlat - permission_view_issues: İşleri Göster - label_display_used_statuses_only: Sadece bu iş tipi tarafından kullanılan durumları göster - label_revision_id: Değişiklik %{value} - label_api_access_key: API erişim anahtarı - label_api_access_key_created_on: API erişim anahtarı %{value} önce oluşturuldu - label_feeds_access_key: Atom erişim anahtarı - notice_api_access_key_reseted: API erişim anahtarınız sıfırlandı. - setting_rest_api_enabled: REST web servisini etkinleştir - label_missing_api_access_key: Bir API erişim anahtarı eksik - label_missing_feeds_access_key: Bir Atom erişim anahtarı eksik - button_show: Göster - text_line_separated: Çoklu değer girilebilir (her satıra bir değer). - setting_mail_handler_body_delimiters: Şu satırların birinden sonra e-postayı sonlandır - permission_add_subprojects: Alt proje yaratma - label_subproject_new: Yeni alt proje - text_own_membership_delete_confirmation: "Projeyi daha sonra düzenleyememenize sebep olacak bazı yetkilerinizi kaldırmak üzeresiniz.\nDevam etmek istediğinize emin misiniz?" - label_close_versions: Tamamlanmış sürümleri kapat - label_board_sticky: Yapışkan - label_board_locked: Kilitli - permission_export_wiki_pages: Wiki sayfalarını dışarı aktar - setting_cache_formatted_text: Biçimlendirilmiş metni önbelleğe al - permission_manage_project_activities: Proje faaliyetlerini yönetme - error_unable_delete_issue_status: İş durumu silinemiyor (%{value}) - label_profile: Profil - permission_manage_subtasks: Alt işleri yönetme - field_parent_issue: Üst iş - label_subtask_plural: Alt işler - label_project_copy_notifications: Proje kopyalaması esnasında bilgilendirme e-postaları gönder - error_can_not_delete_custom_field: Özel alan silinemiyor - error_unable_to_connect: Bağlanılamıyor (%{value}) - error_can_not_remove_role: Bu rol kullanımda olduğundan silinemez. - error_can_not_delete_tracker: Bu iş tipi içerisinde iş barındırdığından silinemiyor. - field_principal: Temel - notice_failed_to_save_members: "Üyeler kaydedilemiyor: %{errors}." - text_zoom_out: Uzaklaş - text_zoom_in: Yakınlaş - notice_unable_delete_time_entry: Zaman kayıt girdisi silinemiyor. - label_overall_spent_time: Toplam harcanan zaman - field_time_entries: Zaman Kayıtları - project_module_gantt: İş-Zaman Çizelgesi - project_module_calendar: Takvim - button_edit_associated_wikipage: "İlişkilendirilmiş Wiki sayfasını düzenle: %{page_title}" - field_text: Metin alanı - setting_default_notification_option: Varsayılan bildirim seçeneği - label_user_mail_option_only_my_events: Sadece takip ettiğim ya da içinde olduğum şeyler için - label_user_mail_option_none: Hiç bir şey için - field_member_of_group: Atananın grubu - field_assigned_to_role: Atananın rolü - notice_not_authorized_archived_project: Erişmeye çalıştığınız proje arşive kaldırılmış. - label_principal_search: "Kullanıcı ya da grup ara:" - label_user_search: "Kullanıcı ara:" - field_visible: Görünür - setting_emails_header: "E-Posta başlığı" - setting_commit_logtime_activity_id: Kaydedilen zaman için faaliyet - text_time_logged_by_changeset: Değişiklik uygulandı %{value}. - setting_commit_logtime_enabled: Zaman kaydını etkinleştir - notice_gantt_chart_truncated: Görüntülenebilir öğelerin sayısını aştığı için tablo kısaltıldı (%{max}) - setting_gantt_items_limit: İş-Zaman çizelgesinde gösterilecek en fazla öğe sayısı - field_warn_on_leaving_unsaved: Kaydedilmemiş metin bulunan bir sayfadan çıkarken beni uyar - text_warn_on_leaving_unsaved: Bu sayfada terkettiğiniz takdirde kaybolacak kaydedilmemiş metinler var. - label_my_queries: Özel sorgularım - text_journal_changed_no_detail: "%{label} güncellendi" - label_news_comment_added: Bir habere yorum eklendi - button_expand_all: Tümünü genişlet - button_collapse_all: Tümünü daralt - label_additional_workflow_transitions_for_assignee: Kullanıcı atanan olduğu zaman tanınacak ek yetkiler - label_additional_workflow_transitions_for_author: Kullanıcı oluşturan olduğu zaman tanınacak ek yetkiler - label_bulk_edit_selected_time_entries: Seçilen zaman kayıtlarını toplu olarak düzenle - text_time_entries_destroy_confirmation: Seçilen zaman kaydını/kayıtlarını silmek istediğinize emin misiniz? - label_role_anonymous: Anonim - label_role_non_member: Üye Değil - label_issue_note_added: Not eklendi - label_issue_status_updated: Durum güncellendi - label_issue_priority_updated: Öncelik güncellendi - label_issues_visibility_own: Kullanıcı tarafından oluşturulmuş ya da kullanıcıya atanmış sorunlar - field_issues_visibility: İşlerin görünürlüğü - label_issues_visibility_all: Tüm işler - permission_set_own_issues_private: Kendi işlerini özel ya da genel olarak işaretle - field_is_private: Özel - permission_set_issues_private: İşleri özel ya da genel olarak işaretleme - label_issues_visibility_public: Özel olmayan tüm işler - text_issues_destroy_descendants_confirmation: "%{count} alt görev de silinecek." - field_commit_logs_encoding: Değişiklik mesajı kodlaması(encoding) - field_scm_path_encoding: Yol kodlaması(encoding) - text_scm_path_encoding_note: "Varsayılan: UTF-8" - field_path_to_repository: Depo yolu - field_root_directory: Ana dizin - field_cvs_module: Modül - field_cvsroot: CVSROOT - text_mercurial_repository_note: Yerel depo (ör. /hgrepo, c:\hgrepo) - text_scm_command: Komut - text_scm_command_version: Sürüm - label_git_report_last_commit: Son gönderilen dosya ve dizinleri raporla - notice_issue_successful_create: İş %{id} oluşturuldu. - label_between: arasında - setting_issue_group_assignment: Gruplara iş atanmasına izin ver - label_diff: farklar - text_git_repository_note: Depo yalın halde (bare) ve yerel sistemde bulunuyor. (örn. /gitrepo, c:\gitrepo) - description_query_sort_criteria_direction: Sıralama yönü - description_project_scope: Arama kapsamı - description_filter: Süzgeç - description_user_mail_notification: E-posta bildirim ayarları - description_message_content: Mesaj içeriği - description_available_columns: Kullanılabilir Sütunlar - description_issue_category_reassign: İş kategorisini seçin - description_search: Arama alanı - description_notes: Notlar - description_choose_project: Projeler - description_query_sort_criteria_attribute: Sıralama ölçütü - description_wiki_subpages_reassign: Yeni üst sayfa seç - description_selected_columns: Seçilmiş Sütunlar - label_parent_revision: Üst - label_child_revision: Alt - error_scm_annotate_big_text_file: Girdi maksimum metin dosyası boyutundan büyük olduğu için ek açıklama girilemiyor. - setting_default_issue_start_date_to_creation_date: Geçerli tarihi yeni işler için başlangıç tarihi olarak kullan - button_edit_section: Bölümü düzenle - setting_repositories_encodings: Eklerin ve depoların kodlamaları - description_all_columns: Tüm sütunlar - button_export: Dışarı aktar - label_export_options: "%{export_format} dışa aktarım seçenekleri" - error_attachment_too_big: İzin verilen maksimum dosya boyutunu (%{max_size}) aştığı için dosya yüklenemedi. - notice_failed_to_save_time_entries: "Seçilen %{total} adet zaman girdisinden %{count} tanesi kaydedilemedi: %{ids}." - label_x_issues: - zero: 0 İş - one: 1 İş - other: "%{count} İşler" - label_repository_new: Yeni depo - field_repository_is_default: Ana depo - label_copy_attachments: Ekleri kopyala - label_item_position: "%{position}/%{count}" - label_completed_versions: Tamamlanmış sürümler - text_project_identifier_info: Yalnızca küçük harfler (a-z), sayılar, tire ve alt tire kullanılabilir.
    Kaydedilen tanımlayıcı daha sonra değiştirilemez. - field_multiple: Çoklu değer - setting_commit_cross_project_ref: Diğer bütün projelerdeki iş kayıtlarının kaynak gösterilmesine ve kayıtların kapatılabilmesine izin ver - text_issue_conflict_resolution_add_notes: Notlarımı ekle ve diğer değişikliklerimi iptal et - text_issue_conflict_resolution_overwrite: Değişikliklerimi yine de uygula (önceki notlar saklanacak ancak bazı değişikliklerin üzerine yazılabilir) - notice_issue_update_conflict: Düzenleme yaparken başka bir kullanıcı tarafından sorun güncellendi. - text_issue_conflict_resolution_cancel: Tüm değişiklikleri iptal et ve yeniden görüntüle %{link} - permission_manage_related_issues: Benzer sorunları yönet - field_auth_source_ldap_filter: LDAP süzgeçi - label_search_for_watchers: Takipçi eklemek için ara - notice_account_deleted: Hesabınız kalıcı olarak silinmiştir. - setting_unsubscribe: Kullanıcıların kendi hesaplarını silebilmesine izin ver - button_delete_my_account: Hesabımı sil - text_account_destroy_confirmation: |- - Devam etmek istediğinize emin misiniz? - Hesabınız tekrar açılmamak üzere kalıcı olarak silinecektir. - error_session_expired: Oturum zaman aşımına uğradı. Lütfen tekrar giriş yapın. - text_session_expiration_settings: "Uyarı: Bu ayarları değiştirmek (sizinki de dahil) tüm oturumları sonlandırabilir." - setting_session_lifetime: Maksimum oturum süresi - setting_session_timeout: Maksimum hareketsizlik zaman aşımı - label_session_expiration: Oturum süre sonu - permission_close_project: Projeyi kapat/yeniden aç - button_close: Kapat - button_reopen: Yeniden aç - project_status_active: etkin - project_status_closed: kapalı - project_status_archived: arşivlenmiş - text_project_closed: Proje kapatıldı ve artık değiştirilemez. - notice_user_successful_create: Kullanıcı %{id} yaratıldı. - field_core_fields: Standart alanlar - field_timeout: Zaman aşımı (saniye olarak) - setting_thumbnails_enabled: Küçük resmi görüntüle - setting_thumbnails_size: Küçük resim boyutu (pixel olarak) - label_status_transitions: Durum değiştirme - label_fields_permissions: Alan izinleri - label_readonly: Salt okunur - label_required: Zorunlu - text_repository_identifier_info: Yalnızca küçük harfler (a-z), sayılar, tire ve alt tire kullanılabilir.
    Kaydedilen tanımlayıcı daha sonra değiştirilemez. - field_board_parent: Üst forum - label_attribute_of_project: Proje %{name} - label_attribute_of_author: Oluşturan %{name} - label_attribute_of_assigned_to: Atanan %{name} - label_attribute_of_fixed_version: Hedef sürüm %{name} - label_copy_subtasks: Alt görevi kopyala - label_copied_to: Kopyalama hedefi - label_copied_from: Kopyalanacak kaynak - label_any_issues_in_project: projedeki herhangi bir sorun - label_any_issues_not_in_project: projede olmayan herhangi bir sorun - field_private_notes: Özel notlar - permission_view_private_notes: Özel notları görüntüle - permission_set_notes_private: Notları özel olarak işaretle - label_no_issues_in_project: projede hiçbir sorun yok - label_any: Hepsi - label_last_n_weeks: son %{count} hafta - setting_cross_project_subtasks: Projeler arası alt işlere izin ver - label_cross_project_descendants: Alt projeler ile - label_cross_project_tree: Proje ağacı ile - label_cross_project_hierarchy: Proje hiyerarşisi ile - label_cross_project_system: Tüm projeler ile - button_hide: Gizle - setting_non_working_week_days: Tatil günleri - label_in_the_next_days: gelecekte - label_in_the_past_days: geçmişte - label_attribute_of_user: Kullanıcı %{name} - text_turning_multiple_off: Çoklu değer seçimini devre dışı bırakırsanız, çoklu değer içeren alanlar, her alan için yalnızca tek değer girilecek şekilde düzenlenecektir. - label_attribute_of_issue: Sorun %{name} - permission_add_documents: Belgeleri ekle - permission_edit_documents: Belgeleri düzenle - permission_delete_documents: Belgeleri sil - label_gantt_progress_line: İlerleme çizgisi - setting_jsonp_enabled: JSONP desteğini etkinleştir - field_inherit_members: Devralan kullanıcılar - field_closed_on: Kapanış tarihi - field_generate_password: Parola oluştur - setting_default_projects_tracker_ids: Yeni projeler için varsayılan iş tipi - label_total_time: Toplam - text_scm_config: config/configuration.yml içinden SCM komutlarını yapılandırabilirsiniz. Lütfen yapılandırmadan sonra uygulamayı tekrar başlatın. - text_scm_command_not_available: SCM komutu kullanılamıyor. Lütfen yönetim panelinden ayarları kontrol edin. - notice_account_not_activated_yet: Hesabınız henüz etkinleştirilmedi. Yeni bir hesap etkinleştirme e-postası istiyorsanız, lütfen buraya tıklayınız.. - notice_account_locked: Hesabınız kilitlendi. - label_hidden: Gizle - label_visibility_private: yalnız benim için - label_visibility_roles: yalnız bu roller için - label_visibility_public: herhangi bir kullanıcı için - field_must_change_passwd: Bir sonraki girişinizde şifrenizi değiştirmeniz gerekir. - notice_new_password_must_be_different: Yeni parola geçerli paroladan - farklı olmalı - setting_mail_handler_excluded_filenames: Dosya adı belirtilen ekleri hariç tut - text_convert_available: ImageMagick dönüştürmesi kullanılabilir (isteğe bağlı) - label_link: Bağlantı - label_only: sadece - label_drop_down_list: seçme listesi - label_checkboxes: kutucuk - label_link_values_to: Değerleri URLye bağla - setting_force_default_language_for_anonymous: Anonim kullanıcılar için zorunlu dil - seç - setting_force_default_language_for_loggedin: Giriş yapmış kullanıcılar için zorunlu dil - seç - label_custom_field_select_type: Özel alanın bağlı olacağı obje tipini - seçin - label_issue_assigned_to_updated: Atanan güncellendi - label_check_for_updates: Güncellemeleri kontrol et - label_latest_compatible_version: Son uyumlul sürüm - label_unknown_plugin: Bilinmeyen eklenti - label_radio_buttons: radyo butonları - label_group_anonymous: Anonim kullanıcı - label_group_non_member: Üye olmayan kullanıcılar - label_add_projects: Proje ekle - field_default_status: Öntanımlı durum - text_subversion_repository_note: 'Örnek: file:///, http://, https://, svn://, svn+[tünelmetodu]://' - field_users_visibility: Kullanıcı görünürlüğü - label_users_visibility_all: Tüm aktif kullanıcılar - label_users_visibility_members_of_visible_projects: Görünür projelerin kullanıcıları - label_edit_attachments: Ekli dosyaları düzenle - setting_link_copied_issue: Kopyalamada işleri ilişkilendir - label_link_copied_issue: Kopyalanmış iş ile ilişkilendir - label_ask: Sor - label_search_attachments_yes: Ekli dosyalarada ve açıklamalarında arama yap - label_search_attachments_no: Ekler içinde arama yapma - label_search_attachments_only: Sadece ekleri ara - label_search_open_issues_only: Sadece açık işler - field_address: E-Posta - setting_max_additional_emails: Maksimum ek e-posta adresleri - label_email_address_plural: E-postalar - label_email_address_add: E-posta adresi ekle - label_enable_notifications: Bildirimleri aç - label_disable_notifications: Bildirimleri kapat - setting_search_results_per_page: Sayfa başına arama sonucu sayısı - label_blank_value: boş - permission_copy_issues: İşleri kopyala - error_password_expired: Parolanızın süresi dolmuş veya yönetici parolanızı değiştirmenizi - talep etmiş. - field_time_entries_visibility: Zaman kaydı görünürlüğü - setting_password_max_age: Bu kadar zaman sonra şifre dğiştirmeye zorla - label_parent_task_attributes: Üst iş özellikleri - label_parent_task_attributes_derived: Alt işlerden hesalanır - label_parent_task_attributes_independent: Alt işlerden bağımsız - label_time_entries_visibility_all: Tüm zaman kayıtları - label_time_entries_visibility_own: Kullanıcı tarafında yaratılmış zaman kayıtları - label_member_management: Üye yönetimi - label_member_management_all_roles: Tüm roller - label_member_management_selected_roles_only: Sadece bu roller - label_password_required: Devam etmek için şifrenizi doğrulayın - label_total_spent_time: Toplam harcanan zaman - notice_import_finished: "%{count} kayıt içeri aktarıldı" - notice_import_finished_with_errors: "%{total} kayıttan %{count} tanesi aktarılamadı" - error_invalid_file_encoding: Dosyanın karakter kodlaması geçerli bir %{encoding} kodlaması değil. - error_invalid_csv_file_or_settings: Dosya CSV dosyası değil veya aşağıdaki ayarlara uymuyor - error_can_not_read_import_file: İçeri aktarılacak dosyayı okurken bir hata oluştu - permission_import_issues: İşleri içeri aktarma - label_import_issues: İşleri içeri aktar - label_select_file_to_import: İçeri aktarılacak dosyayı seçiniz - label_fields_separator: Alan ayracı - label_fields_wrapper: Alan kılıfı - label_encoding: Karakter kodlaması - label_comma_char: Virgül - label_semi_colon_char: Noktalı virgül - label_quote_char: Tek tırnak işareti - label_double_quote_char: Çift tırnak işareti - label_fields_mapping: Alan eşleştirme - label_file_content_preview: Dosya içeriği önizlemesi - label_create_missing_values: Eşleşlmeyen alanları oluştur - button_import: İçeri aktar - field_total_estimated_hours: Toplam tahmini zaman - label_api: API - label_total_plural: Toplamlar - label_assigned_issues: Atanan işler - label_field_format_enumeration: Anahtar/Değer listesi - label_f_hour_short: '%{value} s' - field_default_version: Ön tanımlı versiyon - error_attachment_extension_not_allowed: Dosya uzantısına izin verilmiyor; %{extension} - setting_attachment_extensions_allowed: İzin verilen dosya uzantıları - setting_attachment_extensions_denied: Yasaklı dosya uzantıları - label_any_open_issues: herhangi bir açık iş - label_no_open_issues: hiçbir açık iş - label_default_values_for_new_users: Default values for new users - error_ldap_bind_credentials: Invalid LDAP Account/Password - setting_sys_api_key: API anahtarı - setting_lost_password: Parolamı unuttum - mail_subject_security_notification: Security notification - mail_body_security_notification_change: ! '%{field} was changed.' - mail_body_security_notification_change_to: ! '%{field} was changed to %{value}.' - mail_body_security_notification_add: ! '%{field} %{value} was added.' - mail_body_security_notification_remove: ! '%{field} %{value} was removed.' - mail_body_security_notification_notify_enabled: Email address %{value} now receives - notifications. - mail_body_security_notification_notify_disabled: Email address %{value} no longer - receives notifications. - mail_body_settings_updated: ! 'The following settings were changed:' - field_remote_ip: IP address - label_wiki_page_new: New wiki page - label_relations: Relations - button_filter: Filter - mail_body_password_updated: Your password has been changed. - label_no_preview: No preview available - error_no_tracker_allowed_for_new_issue_in_project: The project doesn't have any trackers - for which you can create an issue - label_tracker_all: All trackers - label_new_project_issue_tab_enabled: Display the "New issue" tab - setting_new_item_menu_tab: Project menu tab for creating new objects - label_new_object_tab_enabled: Display the "+" drop-down - error_no_projects_with_tracker_allowed_for_new_issue: There are no projects with trackers - for which you can create an issue - field_textarea_font: Font used for text areas - label_font_default: Default font - label_font_monospace: Monospaced font - label_font_proportional: Proportional font - setting_timespan_format: Time span format - label_table_of_contents: Table of contents - setting_commit_logs_formatting: Apply text formatting to commit messages - setting_mail_handler_enable_regex: Enable regular expressions - error_move_of_child_not_possible: 'Subtask %{child} could not be moved to the new - project: %{errors}' - error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted: Spent time cannot - be reassigned to an issue that is about to be deleted - setting_timelog_required_fields: Required fields for time logs - label_attribute_of_object: '%{object_name}''s %{name}' - label_user_mail_option_only_assigned: Only for things I watch or I am assigned to - label_user_mail_option_only_owner: Only for things I watch or I am the owner of - warning_fields_cleared_on_bulk_edit: Changes will result in the automatic deletion - of values from one or more fields on the selected objects - field_updated_by: Updated by - field_last_updated_by: Last updated by - field_full_width_layout: Full width layout - label_last_notes: Last notes - field_digest: Checksum - field_default_assigned_to: Default assignee - setting_show_custom_fields_on_registration: Show custom fields on registration - permission_view_news: View news - label_no_preview_alternative_html: No preview available. %{link} the file instead. - label_no_preview_download: Download - setting_close_duplicate_issues: Close duplicate issues automatically - error_exceeds_maximum_hours_per_day: Cannot log more than %{max_hours} hours on the - same day (%{logged_hours} hours have already been logged) - setting_time_entry_list_defaults: Timelog list defaults - setting_timelog_accept_0_hours: Accept time logs with 0 hours - setting_timelog_max_hours_per_day: Maximum hours that can be logged per day and user - label_x_revisions: "%{count} revisions" - error_can_not_delete_auth_source: This authentication mode is in use and cannot be - deleted. - button_actions: Actions - mail_body_lost_password_validity: Please be aware that you may change the password - only once using this link. - text_login_required_html: When not requiring authentication, public projects and their - contents are openly available on the network. You can edit - the applicable permissions. - label_login_required_yes: 'Yes' - label_login_required_no: No, allow anonymous access to public projects - text_project_is_public_non_member: Public projects and their contents are available - to all logged-in users. - text_project_is_public_anonymous: Public projects and their contents are openly available - on the network. - label_version_and_files: Versions (%{count}) and Files - label_ldap: LDAP - label_ldaps_verify_none: LDAPS (without certificate check) - label_ldaps_verify_peer: LDAPS - label_ldaps_warning: It is recommended to use an encrypted LDAPS connection with certificate - check to prevent any manipulation during the authentication process. - label_nothing_to_preview: Nothing to preview - error_token_expired: This password recovery link has expired, please try again. - error_spent_on_future_date: Cannot log time on a future date - setting_timelog_accept_future_dates: Accept time logs on future dates - label_delete_link_to_subtask: İlişkiyi sil - error_not_allowed_to_log_time_for_other_users: You are not allowed to log time - for other users - permission_log_time_for_other_users: Log spent time for other users - label_tomorrow: tomorrow - label_next_week: next week - label_next_month: next month - text_role_no_workflow: No workflow defined for this role - text_status_no_workflow: No tracker uses this status in the workflows - setting_mail_handler_preferred_body_part: Preferred part of multipart (HTML) emails - setting_show_status_changes_in_mail_subject: Show status changes in issue mail notifications - subject - label_inherited_from_parent_project: Inherited from parent project - label_inherited_from_group: Inherited from group %{name} - label_trackers_description: Trackers description - label_open_trackers_description: View all trackers description - label_preferred_body_part_text: Text - label_preferred_body_part_html: HTML (experimental) - field_parent_issue_subject: Parent task subject - permission_edit_own_issues: Edit own issues - text_select_apply_tracker: Select tracker - label_updated_issues: Updated issues - text_avatar_server_config_html: The current avatar server is %{url}. - You can configure it in config/configuration.yml. - setting_gantt_months_limit: Maximum number of months displayed on the gantt chart - permission_import_time_entries: Import time entries - label_import_notifications: Send email notifications during the import - text_gs_available: ImageMagick PDF support available (optional) - field_recently_used_projects: Number of recently used projects in jump box - label_optgroup_bookmarks: Bookmarks - label_optgroup_others: Other projects - label_optgroup_recents: Recently used - button_project_bookmark: Add bookmark - button_project_bookmark_delete: Remove bookmark - field_history_default_tab: Issue's history default tab - label_issue_history_properties: Property changes - label_issue_history_notes: Notes - label_last_tab_visited: Last visited tab - field_unique_id: Unique ID - text_no_subject: no subject - setting_password_required_char_classes: Required character classes for passwords - label_password_char_class_uppercase: uppercase letters - label_password_char_class_lowercase: lowercase letters - label_password_char_class_digits: digits - label_password_char_class_special_chars: special characters - text_characters_must_contain: Must contain %{character_classes}. - label_starts_with: starts with - label_ends_with: ends with - label_issue_fixed_version_updated: Target version updated - setting_project_list_defaults: Projects list defaults - label_display_type: Display results as - label_display_type_list: List - label_display_type_board: Board - label_my_bookmarks: My bookmarks - label_import_time_entries: Import time entries diff --git a/config/locales/uk.yml b/config/locales/uk.yml deleted file mode 100644 index 75ff896..0000000 --- a/config/locales/uk.yml +++ /dev/null @@ -1,1303 +0,0 @@ -uk: - direction: ltr - date: - formats: - # Use the strftime parameters for formats. - # When no format has been given, it uses default. - # You can provide other formats here if you like! - default: "%Y-%m-%d" - short: "%b %d" - long: "%B %d, %Y" - - day_names: [неділя, понеділок, вівторок, середа, четвер, п'ятниця, субота] - abbr_day_names: [Нд, Пн, Вт, Ср, Чт, Пт, Сб] - - # Don't forget the nil at the beginning; there's no such thing as a 0th month - month_names: [~, січня, лютого, березня, квітня, травня, червня, липня, серпня, вересня, жовтня, листопада, грудня] - abbr_month_names: [~, січ., лют., бер., квіт., трав., чер., лип., серп., вер., жовт., лист., груд.] - # Used in date_select and datime_select. - order: - - :year - - :month - - :day - - time: - formats: - default: "%a, %d %b %Y %H:%M:%S %z" - time: "%H:%M" - short: "%d %b %H:%M" - long: "%B %d, %Y %H:%M" - am: "ранку" - pm: "вечора" - - datetime: - distance_in_words: - half_a_minute: "менше хвилини" - less_than_x_seconds: - one: "менше ніж за 1 секунду" - few: "менш %{count} секунд" - many: "менш %{count} секунд" - other: "менше ніж за %{count} секунди" - x_seconds: - one: "1 секунда" - few: "%{count} секунди" - many: "%{count} секунд" - other: "%{count} секунд" - less_than_x_minutes: - one: "менше ніж за хвилину" - few: "менше %{count} хвилин" - many: "менше %{count} хвилин" - other: "менш ніж за %{count} хвилин" - x_minutes: - one: "1 хвилина" - few: "%{count} хвилини" - many: "%{count} хвилин" - other: "%{count} хвилини" - about_x_hours: - one: "близько 1 години" - other: "близько %{count} годин" - x_hours: - one: "1 година" - few: "%{count} години" - many: "%{count} годин" - other: "%{count} години" - x_days: - one: "1 день" - few: "%{count} дня" - many: "%{count} днів" - other: "%{count} днів" - about_x_months: - one: "близько 1 місяця" - other: "близько %{count} місяців" - x_months: - one: "1 місяць" - few: "%{count} місяця" - many: "%{count} місяців" - other: "%{count} місяців" - about_x_years: - one: "близько 1 року" - other: "близько %{count} років" - over_x_years: - one: "більше 1 року" - other: "більше %{count} років" - almost_x_years: - one: "майже 1 рік" - few: "майже %{count} року" - many: "майже %{count} років" - other: "майже %{count} років" - - number: - format: - separator: "." - delimiter: "" - precision: 3 - human: - format: - precision: 3 - delimiter: "" - storage_units: - format: "%n %u" - units: - kb: КБ - tb: ТБ - gb: ГБ - byte: - one: Байт - other: Байтів - mb: МБ - -# Used in array.to_sentence. - support: - array: - sentence_connector: "і" - skip_last_comma: false - - activerecord: - errors: - template: - header: - one: "1 помилка не дозволяє зберегти %{model}" - other: "%{count} помилок не дозволяють зберегти %{model}" - messages: - inclusion: "немає в списку" - exclusion: "зарезервовано" - invalid: "невірне" - confirmation: "не збігається з підтвердженням" - accepted: "необхідно прийняти" - empty: "не може бути порожнім" - blank: "не може бути незаповненим" - too_long: "дуже довге" - too_short: "дуже коротке" - wrong_length: "не відповідає довжині" - taken: "вже використовується" - not_a_number: "не є числом" - not_a_date: "є недійсною датою" - greater_than: "значення має бути більшим ніж %{count}" - greater_than_or_equal_to: "значення має бути більшим або дорівнювати %{count}" - equal_to: "значення має дорівнювати %{count}" - less_than: "значення має бути меншим ніж %{count}" - less_than_or_equal_to: "значення має бути меншим або дорівнювати %{count}" - odd: "може мати тільки непарне значення" - even: "може мати тільки парне значення" - greater_than_start_date: "повинна бути пізніша за дату початку" - not_same_project: "не відносяться до одного проекту" - circular_dependency: "Такий зв'язок приведе до циклічної залежності" - cant_link_an_issue_with_a_descendant: "Задача не може бути зв'язана зі своїми підзадачами" - earlier_than_minimum_start_date: "не може бути раніше ніж %{date} через попередні задачі" - not_a_regexp: "недопустимий регулярний вираз" - open_issue_with_closed_parent: "Відкрите завдання не може бути приєднано до закритого батьківського завдання" - must_contain_uppercase: "must contain uppercase letters (A-Z)" - must_contain_lowercase: "must contain lowercase letters (a-z)" - must_contain_digits: "must contain digits (0-9)" - must_contain_special_chars: "must contain special characters (!, $, %, ...)" - - actionview_instancetag_blank_option: Оберіть - - general_text_No: 'Ні' - general_text_Yes: 'Так' - general_text_no: 'Ні' - general_text_yes: 'Так' - general_lang_name: 'Ukrainian (Українська)' - general_csv_separator: ',' - general_csv_decimal_separator: '.' - general_csv_encoding: UTF-8 - general_pdf_fontname: freesans - general_pdf_monospaced_fontname: freemono - general_first_day_of_week: '1' - - notice_account_updated: Обліковий запис успішно оновлений. - notice_account_invalid_credentials: Неправильне ім'я користувача або пароль. - notice_account_password_updated: Пароль успішно оновлений. - notice_account_wrong_password: Невірний пароль. - notice_account_register_done: Обліковий запис успішно створений. Для активації Вашого облікового запису зайдіть по посиланню, яке відіслане вам електронною поштою. - notice_account_unknown_email: Невідомий користувач. - notice_can_t_change_password: Для даного облікового запису використовується джерело зовнішньої аутентифікації. Неможливо змінити пароль. - notice_account_lost_email_sent: Вам відправлений лист з інструкціями по вибору нового пароля. - notice_account_activated: Ваш обліковий запис активований. Ви можете увійти. - notice_successful_create: Створення успішно завершене. - notice_successful_update: Оновлення успішно завершене. - notice_successful_delete: Видалення успішно завершене. - notice_successful_connection: Підключення успішно встановлене. - notice_file_not_found: Сторінка, на яку ви намагаєтеся зайти, не існує або видалена. - notice_locking_conflict: Дані оновлено іншим користувачем. - notice_not_authorized: У вас немає прав для відвідини даної сторінки. - notice_email_sent: "Відправлено листа %{value}" - notice_email_error: "Під час відправки листа відбулася помилка (%{value})" - notice_feeds_access_key_reseted: Ваш ключ доступу Atom було скинуто. - notice_failed_to_save_issues: "Не вдалося зберегти %{count} пункт(ів) з %{total} вибраних: %{ids}." - notice_no_issue_selected: "Не вибрано жодної задачі! Будь ласка, відзначте задачу, яку ви хочете відредагувати." - notice_account_pending: "Ваш обліковий запис створено і він чекає на підтвердження адміністратором." - - mail_subject_lost_password: "Ваш %{value} пароль" - mail_body_lost_password: 'Для зміни пароля, зайдіть за наступним посиланням:' - mail_subject_register: "Активація облікового запису %{value}" - mail_body_register: 'Для активації облікового запису, зайдіть за наступним посиланням:' - mail_body_account_information_external: "Ви можете використовувати ваш %{value} обліковий запис для входу." - mail_body_account_information: Інформація по Вашому обліковому запису - mail_subject_account_activation_request: "Запит на активацію облікового запису %{value}" - mail_body_account_activation_request: "Новий користувач (%{value}) зареєструвався. Його обліковий запис чекає на ваше підтвердження:" - - - field_name: Ім'я - field_description: Опис - field_summary: Короткий опис - field_is_required: Необхідно - field_firstname: Ім'я - field_lastname: Прізвище - field_mail: Ел. пошта - field_filename: Файл - field_filesize: Розмір - field_downloads: Завантаження - field_author: Автор - field_created_on: Створено - field_updated_on: Оновлено - field_field_format: Формат - field_is_for_all: Для усіх проектів - field_possible_values: Можливі значення - field_regexp: Регулярний вираз - field_min_length: Мінімальна довжина - field_max_length: Максимальна довжина - field_value: Значення - field_category: Категорія - field_title: Назва - field_project: Проект - field_issue: Питання - field_status: Статус - field_notes: Примітки - field_is_closed: Питання закрито - field_is_default: Типове значення - field_tracker: Координатор - field_subject: Тема - field_due_date: Дата виконання - field_assigned_to: Призначена до - field_priority: Пріоритет - field_fixed_version: Версія - field_user: Користувач - field_role: Роль - field_homepage: Домашня сторінка - field_is_public: Публічний - field_parent: Підпроект - field_is_in_roadmap: Питання, що відображаються в оперативному плані - field_login: Вхід - field_mail_notification: Повідомлення за електронною поштою - field_admin: Адміністратор - field_last_login_on: Останнє підключення - field_language: Мова - field_effective_date: Дата - field_password: Пароль - field_new_password: Новий пароль - field_password_confirmation: Підтвердження - field_version: Версія - field_type: Тип - field_host: Машина - field_port: Порт - field_account: Обліковий запис - field_base_dn: Базове відмітне ім'я - field_attr_login: Атрибут Реєстрація - field_attr_firstname: Атрибут Ім'я - field_attr_lastname: Атрибут Прізвище - field_attr_mail: Атрибут Email - field_onthefly: Створення користувача на льоту - field_start_date: Початок - field_done_ratio: "% зроблено" - field_auth_source: Режим аутентифікації - field_hide_mail: Приховувати мій email - field_comments: Коментар - field_url: URL - field_start_page: Стартова сторінка - field_subproject: Підпроект - field_hours: Годин(и/а) - field_activity: Діяльність - field_spent_on: Дата - field_identifier: Ідентифікатор - field_is_filter: Використовується як фільтр - field_issue_to: Зв'язані задачі - field_delay: Відкласти - field_assignable: Задача може бути призначена цій ролі - field_redirect_existing_links: Перенаправити існуючі посилання - field_estimated_hours: Оцінний час - field_column_names: Колонки - field_time_zone: Часовий пояс - field_searchable: Вживається у пошуку - - setting_app_title: Назва додатку - setting_welcome_text: Текст привітання - setting_default_language: Стандартна мова - setting_login_required: Необхідна аутентифікація - setting_self_registration: Можлива само-реєстрація - setting_attachment_max_size: Максимальний размір вкладення - setting_issues_export_limit: Обмеження по задачах, що експортуються - setting_mail_from: email адреса для передачі інформації - setting_bcc_recipients: Отримувачі сліпої копії (bcc) - setting_host_name: Им'я машини - setting_text_formatting: Форматування тексту - setting_wiki_compression: Стиснення історії Wiki - setting_feeds_limit: Обмеження змісту подачі - setting_autofetch_changesets: Автоматично доставати доповнення - setting_sys_api_enabled: Дозволити WS для управління репозиторієм - setting_commit_ref_keywords: Ключові слова для посилання - setting_commit_fix_keywords: Призначення ключових слів - setting_autologin: Автоматичний вхід - setting_date_format: Формат дати - setting_time_format: Формат часу - setting_cross_project_issue_relations: Дозволити міжпроектні відносини між питаннями - setting_issue_list_default_columns: Колонки, що відображаються за умовчанням в списку питань - setting_emails_footer: Підпис до електронної пошти - setting_protocol: Протокол - - label_user: Користувач - label_user_plural: Користувачі - label_user_new: Новий користувач - label_project: Проект - label_project_new: Новий проект - label_project_plural: Проекти - label_x_projects: - zero: немає проектів - one: 1 проект - other: "%{count} проектів" - label_project_all: Усі проекти - label_project_latest: Останні проекти - label_issue: Питання - label_issue_new: Нові питання - label_issue_plural: Питання - label_issue_view_all: Проглянути всі питання - label_issues_by: "Питання за %{value}" - label_document: Документ - label_document_new: Новий документ - label_document_plural: Документи - label_role: Роль - label_role_plural: Ролі - label_role_new: Нова роль - label_role_and_permissions: Ролі і права доступу - label_member: Учасник - label_member_new: Новий учасник - label_member_plural: Учасники - label_tracker: Координатор - label_tracker_plural: Координатори - label_tracker_new: Новий Координатор - label_workflow: Послідовність дій - label_issue_status: Статус питання - label_issue_status_plural: Статуси питань - label_issue_status_new: Новий статус - label_issue_category: Категорія питання - label_issue_category_plural: Категорії питань - label_issue_category_new: Нова категорія - label_custom_field: Поле клієнта - label_custom_field_plural: Поля клієнта - label_custom_field_new: Нове поле клієнта - label_enumerations: Довідники - label_enumeration_new: Нове значення - label_information: Інформація - label_information_plural: Інформація - label_register: Зареєструватися - label_password_lost: Забули пароль - label_home: Домашня сторінка - label_my_page: Моя сторінка - label_my_account: Мій обліковий запис - label_my_projects: Мої проекти - label_administration: Адміністрування - label_login: Увійти - label_logout: Вийти - label_help: Допомога - label_reported_issues: Створені питання - label_assigned_to_me_issues: Мої питання - label_last_login: Останнє підключення - label_registered_on: Зареєстрований(а) - label_activity: Активність - label_new: Новий - label_logged_as: Увійшов як - label_environment: Оточення - label_authentication: Аутентифікація - label_auth_source: Режим аутентифікації - label_auth_source_new: Новий режим аутентифікації - label_auth_source_plural: Режими аутентифікації - label_subproject_plural: Підпроекти - label_min_max_length: Мінімальна - максимальна довжина - label_list: Список - label_date: Дата - label_integer: Цілий - label_float: З плаваючою крапкою - label_boolean: Логічний - label_string: Текст - label_text: Довгий текст - label_attribute: Атрибут - label_attribute_plural: атрибути - label_no_data: Немає даних для відображення - label_change_status: Змінити статус - label_history: Історія - label_attachment: Файл - label_attachment_new: Новий файл - label_attachment_delete: Видалити файл - label_attachment_plural: Файли - label_report: Звіт - label_report_plural: Звіти - label_news: Новини - label_news_new: Додати новину - label_news_plural: Новини - label_news_latest: Останні новини - label_news_view_all: Подивитися всі новини - label_settings: Налаштування - label_overview: Перегляд - label_version: Версія - label_version_new: Нова версія - label_version_plural: Версії - label_confirmation: Підтвердження - label_export_to: Експортувати в - label_read: Читання... - label_public_projects: Публічні проекти - label_open_issues: відкрите - label_open_issues_plural: відкриті - label_closed_issues: закрите - label_closed_issues_plural: закриті - label_x_open_issues_abbr: - zero: 0 відкрито - one: 1 відкрита - other: "%{count} відкрито" - label_x_closed_issues_abbr: - zero: 0 закрито - one: 1 закрита - other: "%{count} закрито" - label_total: Всього - label_permissions: Права доступу - label_current_status: Поточний статус - label_new_statuses_allowed: Дозволені нові статуси - label_all: Усі - label_none: Нікому - label_nobody: Ніхто - label_next: Наступний - label_previous: Попередній - label_used_by: Використовується - label_details: Подробиці - label_add_note: Додати зауваження - label_calendar: Календар - label_months_from: місяців(ця) з - label_gantt: Діаграма Ганта - label_internal: Внутрішній - label_last_changes: "останні %{count} змін" - label_change_view_all: Проглянути всі зміни - label_comment: Коментувати - label_comment_plural: Коментарі - label_x_comments: - zero: немає коментарів - one: 1 коментар - other: "%{count} коментарів" - label_comment_add: Залишити коментар - label_comment_added: Коментар додано - label_comment_delete: Видалити коментарі - label_query: Запит клієнта - label_query_plural: Запити клієнтів - label_query_new: Новий запит - label_filter_add: Додати фільтр - label_filter_plural: Фільтри - label_equals: є - label_not_equals: немає - label_in_less_than: менш ніж - label_in_more_than: більш ніж - label_in: у - label_today: сьогодні - label_this_week: цього тижня - label_less_than_ago: менш ніж днів(я) тому - label_more_than_ago: більш ніж днів(я) тому - label_ago: днів(я) тому - label_contains: містить - label_not_contains: не містить - label_day_plural: днів(я) - label_repository: Репозиторій - label_browse: Проглянути - label_revision: Версія - label_revision_plural: Версій - label_added: додано - label_modified: змінене - label_deleted: видалено - label_latest_revision: Остання версія - label_latest_revision_plural: Останні версії - label_view_revisions: Проглянути версії - label_max_size: Максимальний розмір - label_sort_highest: На початок - label_sort_higher: Вгору - label_sort_lower: Вниз - label_sort_lowest: У кінець - label_roadmap: Оперативний план - label_roadmap_due_in: "Строк %{value}" - label_roadmap_overdue: "%{value} запізнення" - label_roadmap_no_issues: Немає питань для даної версії - label_search: Пошук - label_result_plural: Результати - label_all_words: Всі слова - label_wiki: Wiki - label_wiki_edit: Редагування Wiki - label_wiki_edit_plural: Редагування Wiki - label_wiki_page: Сторінка Wiki - label_wiki_page_plural: Сторінки Wiki - label_index_by_title: Індекс за назвою - label_index_by_date: Індекс за датою - label_current_version: Поточна версія - label_preview: Попередній перегляд - label_feed_plural: Подання - label_changes_details: Подробиці по всіх змінах - label_issue_tracking: Координація питань - label_spent_time: Витрачений час - label_f_hour: "%{value} година" - label_f_hour_plural: "%{value} годин(и)" - label_time_tracking: Облік часу - label_change_plural: Зміни - label_statistics: Статистика - label_commits_per_month: Подань на місяць - label_commits_per_author: Подань на користувача - label_view_diff: Проглянути відмінності - label_diff_inline: підключений - label_diff_side_by_side: поряд - label_options: Опції - label_copy_workflow_from: Скопіювати послідовність дій з - label_permissions_report: Звіт про права доступу - label_watched_issues: Проглянуті питання - label_related_issues: Зв'язані питання - label_applied_status: Застосовний статус - label_loading: Завантаження... - label_relation_new: Новий зв'язок - label_relation_delete: Видалити зв'язок - label_relates_to: пов'язане з - label_duplicates: дублює - label_blocks: блокує - label_blocked_by: заблоковане - label_precedes: передує - label_follows: наступний за - label_stay_logged_in: Залишатися в системі - label_disabled: відключений - label_show_completed_versions: Показати завершені версії - label_me: мене - label_board: Форум - label_board_new: Новий форум - label_board_plural: Форуми - label_topic_plural: Теми - label_message_plural: Повідомлення - label_message_last: Останнє повідомлення - label_message_new: Нове повідомлення - label_reply_plural: Відповіді - label_send_information: Відправити користувачеві інформацію з облікового запису - label_year: Рік - label_month: Місяць - label_week: Неділя - label_date_from: З - label_date_to: Кому - label_language_based: На основі мови користувача - label_sort_by: "Сортувати за %{value}" - label_send_test_email: Послати email для перевірки - label_feeds_access_key_created_on: "Ключ доступу Atom створений %{value} тому " - label_module_plural: Модулі - label_added_time_by: "Доданий %{author} %{age} тому" - label_updated_time: "Оновлений %{value} тому" - label_jump_to_a_project: Перейти до проекту... - label_file_plural: Файли - label_changeset_plural: Набори змін - label_default_columns: Типові колонки - label_no_change_option: (Немає змін) - label_bulk_edit_selected_issues: Редагувати всі вибрані питання - label_theme: Тема - label_default: Типовий - label_search_titles_only: Шукати тільки в назвах - label_user_mail_option_all: "Для всіх подій у всіх моїх проектах" - label_user_mail_option_selected: "Для всіх подій тільки у вибраному проекті..." - label_user_mail_no_self_notified: "Не сповіщати про зміни, які я зробив сам" - label_registration_activation_by_email: активація облікового запису електронною поштою - label_registration_manual_activation: ручна активація облікового запису - label_registration_automatic_activation: автоматична активація облыкового - - button_login: Вхід - button_submit: Відправити - button_save: Зберегти - button_check_all: Відзначити все - button_uncheck_all: Очистити - button_delete: Видалити - button_create: Створити - button_test: Перевірити - button_edit: Редагувати - button_add: Додати - button_change: Змінити - button_apply: Застосувати - button_clear: Очистити - button_lock: Заблокувати - button_unlock: Разблокувати - button_download: Завантажити - button_list: Список - button_view: Переглянути - button_move: Перемістити - button_back: Назад - button_cancel: Відмінити - button_activate: Активувати - button_sort: Сортувати - button_log_time: Записати час - button_rollback: Відкотити до даної версії - button_watch: Дивитися - button_unwatch: Не дивитися - button_reply: Відповісти - button_archive: Архівувати - button_unarchive: Розархівувати - button_reset: Перезапустити - button_rename: Перейменувати - button_change_password: Змінити пароль - button_copy: Копіювати - button_annotate: Анотувати - - status_active: Активний - status_registered: Зареєстрований - status_locked: Заблокований - - text_select_mail_notifications: Виберіть дії, на які відсилатиметься повідомлення на електронну пошту. - text_regexp_info: наприклад ^[A-Z0-9]+$ - text_min_max_length_info: 0 означає відсутність заборон - text_project_destroy_confirmation: Ви наполягаєте на видаленні цього проекту і всієї інформації, що відноситься до нього? - text_workflow_edit: Виберіть роль і координатор для редагування послідовності дій - text_are_you_sure: Ви впевнені? - text_tip_issue_begin_day: день початку задачі - text_tip_issue_end_day: день завершення задачі - text_tip_issue_begin_end_day: початок задачі і закінчення цього дня - text_caracters_maximum: "%{count} символів(и) максимум." - text_caracters_minimum: "Повинно мати якнайменше %{count} символів(и) у довжину." - text_length_between: "Довжина між %{min} і %{max} символів." - text_tracker_no_workflow: Для цього координатора послідовність дій не визначена - text_unallowed_characters: Заборонені символи - text_comma_separated: Допустимі декілька значень (розділені комою). - text_issues_ref_in_commit_messages: Посилання та зміна питань у повідомленнях до подавань - text_issue_added: "Задача %{id} була додана %{author}." - text_issue_updated: "Задача %{id} була оновлена %{author}." - text_wiki_destroy_confirmation: Ви впевнені, що хочете видалити цю wiki і весь зміст? - text_issue_category_destroy_question: "Декілька питань (%{count}) призначено в цю категорію. Що ви хочете зробити?" - text_issue_category_destroy_assignments: Видалити призначення категорії - text_issue_category_reassign_to: Перепризначити задачі до даної категорії - text_user_mail_option: "Для невибраних проектів ви отримуватимете повідомлення тільки про те, що проглядаєте або в чому берете участь (наприклад, питання автором яких ви є або які вам призначені)." - - default_role_manager: Менеджер - default_role_developer: Розробник - default_role_reporter: Репортер - # default_tracker_bug: Bug - # звітів default_tracker_bug: Помилка - default_tracker_bug: Помилка - default_tracker_feature: Властивість - default_tracker_support: Підтримка - default_issue_status_new: Новий - default_issue_status_in_progress: В процесі - default_issue_status_resolved: Вирішено - default_issue_status_feedback: Зворотний зв'язок - default_issue_status_closed: Зачинено - default_issue_status_rejected: Відмовлено - default_doc_category_user: Документація користувача - default_doc_category_tech: Технічна документація - default_priority_low: Низький - default_priority_normal: Нормальний - default_priority_high: Високий - default_priority_urgent: Терміновий - default_priority_immediate: Негайний - default_activity_design: Проектування - default_activity_development: Розробка - - enumeration_issue_priorities: Пріоритети питань - enumeration_doc_categories: Категорії документів - enumeration_activities: Дії (облік часу) - text_status_changed_by_changeset: "Реалізовано в редакції %{value}." - label_display_per_page: "На сторінку: %{value}" - label_issue_added: Задача додана - label_issue_updated: Задача оновлена - setting_per_page_options: Кількість записів на сторінку - notice_default_data_loaded: Конфігурація по замовчуванню була завантажена. - error_scm_not_found: "Сховище не містить записів і/чи виправлень." - label_associated_revisions: Пов'язані редакції - label_document_added: Документ додано - label_message_posted: Повідомлення додано - text_issues_destroy_confirmation: 'Ви впевнені, що хочете видалити вибрані задачі?' - error_scm_command_failed: "Помилка доступу до сховища: %{value}" - setting_user_format: Формат відображення часу - label_age: Вік - label_file_added: Файл додано - field_default_value: Значення по замовчуванню - label_scm: Тип сховища - label_general: Загальне - button_update: Оновити - text_select_project_modules: 'Виберіть модулі, які будуть використані в проекті:' - label_change_properties: Змінити властивості - text_load_default_configuration: Завантажити Конфігурацію по замовчуванню - text_no_configuration_data: "Ролі, трекери, статуси задач і оперативний план не були сконфігуровані.\nНаполегливо рекомендується завантажити конфігурацію по-замовчуванню. Ви зможете її змінити згодом." - label_news_added: Додана новина - label_repository_plural: Сховища - error_can_t_load_default_data: "Конфігурація по замовчуванню не може бути завантажена: %{value}" - project_module_boards: Форуми - project_module_issue_tracking: Задачі - project_module_wiki: Wiki - project_module_files: Файли - project_module_documents: Документи - project_module_repository: Сховище - project_module_news: Новини - project_module_time_tracking: Відстеження часу - text_file_repository_writable: Сховище файлів доступне для записів - text_default_administrator_account_changed: Обліковий запис адміністратора по замовчуванню змінений - text_minimagick_available: Доступно використання MiniMagick (опційно) - button_configure: Налаштування - label_plugins: Модулі - label_ldap_authentication: Авторизація за допомогою LDAP - label_downloads_abbr: Завантажень - label_this_month: цей місяць - label_last_n_days: "останні %{count} днів" - label_this_year: цей рік - label_date_range: інтервал часу - label_last_week: попередній тиждень - label_yesterday: вчора - label_last_month: попередній місяць - label_add_another_file: Додати ще один файл - label_optional_description: Опис (не обов'язково) - text_destroy_time_entries_question: "На дану задачу зареєстровано %{hours} години(ин) трудовитрат. Що Ви хочете зробити?" - error_issue_not_found_in_project: 'Задача не була знайдена або не стосується даного проекту' - text_assign_time_entries_to_project: Додати зареєстрований час до проекту - text_destroy_time_entries: Видалити зареєстрований час - text_reassign_time_entries: 'Перенести зареєстрований час на наступну задачу:' - setting_activity_days_default: Кількість днів, відображених в Діях - label_chronological_order: В хронологічному порядку - field_comments_sorting: Відображення коментарів - label_reverse_chronological_order: В зворотньому порядку - label_preferences: Переваги - setting_display_subprojects_issues: Відображення підпроектів по замовчуванню - label_overall_activity: Зведений звіт дій - setting_default_projects_public: Нові проекти є загальнодоступними - error_scm_annotate: "Коментар неможливий через перевищення максимального розміру текстового файлу." - text_subprojects_destroy_warning: "Підпроекти: %{value} також будуть видалені." - label_and_its_subprojects: "%{value} і всі підпроекти" - mail_body_reminder: "%{count} призначених на Вас задач на наступні %{days} днів:" - mail_subject_reminder: "%{count} призначених на Вас задач в найближчі %{days} дні" - text_user_wrote: "%{value} писав(ла):" - text_user_wrote_in: "%{value} писав(ла) (%{link}):" - label_duplicated_by: дублюється - setting_enabled_scm: Увімкнені SCM - text_enumeration_category_reassign_to: 'Надати їм наступне значення:' - text_enumeration_destroy_question: "%{count} об'єкт(а,ів) зв'язані з цим значенням." - label_incoming_emails: Прийом повідомлень - label_generate_key: Згенерувати ключ - setting_mail_handler_api_enabled: Увімкнути веб-сервіс для вхідних повідомлень - setting_mail_handler_api_key: API ключ - text_email_delivery_not_configured: "Параметри роботи з поштовим сервером не налаштовані і функція сповіщення по email не активна.\nНалаштувати параметри для Вашого SMTP-сервера Ви можете в файлі config/configuration.yml. Для застосування змін перезапустіть програму." - field_parent_title: Домашня сторінка - label_issue_watchers: Спостерігачі - button_quote: Цитувати - setting_sequential_project_identifiers: Генерувати послідовні ідентифікатори проектів - notice_unable_delete_version: Неможливо видалити версію. - label_renamed: перейменовано - label_copied: скопійовано в - setting_plain_text_mail: Тільки простий текст (без HTML) - permission_view_files: Перегляд файлів - permission_edit_issues: Редагування задач - permission_edit_own_time_entries: Редагування власного обліку часу - permission_manage_public_queries: Управління загальними запитами - permission_add_issues: Додавання задач - permission_log_time: Облік трудовитрат - permission_view_changesets: Перегляд змін сховища - permission_view_time_entries: Перегляд трудовитрат - permission_manage_versions: Управління версіями - permission_manage_wiki: Управління wiki - permission_manage_categories: Управління категоріями задач - permission_protect_wiki_pages: Блокування wiki-сторінок - permission_comment_news: Коментування новин - permission_delete_messages: Видалення повідомлень - permission_select_project_modules: Вибір модулів проекту - permission_edit_wiki_pages: Редагування wiki-сторінок - permission_add_issue_watchers: Додати спостерігачів - permission_view_gantt: Перегляд діаграми Ганта - permission_manage_issue_relations: Управління зв'язуванням задач - permission_delete_wiki_pages: Видалення wiki-сторінок - permission_manage_boards: Управління форумами - permission_delete_wiki_pages_attachments: Видалення прикріплених файлів - permission_view_wiki_edits: Перегляд історії wiki - permission_add_messages: Відправка повідомлень - permission_view_messages: Перегляд повідомлень - permission_manage_files: Управління файлами - permission_edit_issue_notes: Редагування нотаток - permission_manage_news: Управління новинами - permission_view_calendar: Перегляд календаря - permission_manage_members: Управління учасниками - permission_edit_messages: Редагування повідомлень - permission_delete_issues: Видалення задач - permission_view_issue_watchers: Перегляд списку спостерігачів - permission_manage_repository: Управління сховищем - permission_commit_access: Зміна файлів в сховищі - permission_browse_repository: Перегляд сховища - permission_view_documents: Перегляд документів - permission_edit_project: Редагування проектів - permission_add_issue_notes: Додавання нотаток - permission_save_queries: Збереження запитів - permission_view_wiki_pages: Перегляд wiki - permission_rename_wiki_pages: Перейменування wiki-сторінок - permission_edit_time_entries: Редагування обліку часу - permission_edit_own_issue_notes: Редагування власних нотаток - setting_gravatar_enabled: Використовувати аватар користувача із Gravatar - label_example: Зразок - text_repository_usernames_mapping: "Виберіть або оновіть користувача Redmine, пов'язаного зі знайденими іменами в журналі сховища.\nКористувачі з одинаковими іменами або email в Redmine і сховищі пов'язуються автоматично." - permission_edit_own_messages: Редагування власних повідомлень - permission_delete_own_messages: Видалення власних повідомлень - label_user_activity: "Дії користувача %{value}" - label_updated_time_by: "Оновлено %{author} %{age} тому" - text_diff_truncated: '... Цей diff обмежений, так як перевищує максимальний розмір, що може бути відображений.' - setting_diff_max_lines_displayed: Максимальна кількість рядків для diff - text_plugin_assets_writable: Каталог ресурсів модулів доступний для запису - warning_attachments_not_saved: "%{count} файл(ів) неможливо зберегти." - button_create_and_continue: Створити та продовжити - text_custom_field_possible_values_info: 'По одному значенню в кожному рядку' - label_display: Відображення - field_editable: Доступно до редагування - setting_repository_log_display_limit: Максимальна кількість редакцій, відображених в журналі змін - setting_file_max_size_displayed: Максимальний розмір текстового файлу для відображення - field_watcher: Спостерігач - setting_openid: Дозволити OpenID для входу та реєстрації - field_identity_url: OpenID URL - label_login_with_open_id_option: або війти з допомогою OpenID - field_content: Вміст - label_descending: За спаданням - label_sort: Сортувати - label_ascending: За зростанням - label_date_from_to: Від %{start} до %{end} - label_greater_or_equal: ">=" - label_less_or_equal: <= - text_wiki_page_destroy_question: Ця сторінка має %{descendants} дочірних сторінок і їх нащадків. Що Ви хочете зробити? - text_wiki_page_reassign_children: Перепризначити дочірні сторінки поточній сторінці - text_wiki_page_nullify_children: Зробити дочірні сторінки головними сторінками - text_wiki_page_destroy_children: Видалити дочірні сторінки і всіх їх нащадків - setting_password_min_length: Мінімальна довжина паролю - field_group_by: Групувати результати по - mail_subject_wiki_content_updated: "Wiki-сторінка '%{id}' була оновлена" - label_wiki_content_added: Wiki-сторінка додана - mail_subject_wiki_content_added: "Wiki-сторінка '%{id}' була додана" - mail_body_wiki_content_added: "%{author} додав(ла) wiki-сторінку %{id}." - label_wiki_content_updated: Wiki-сторінка оновлена - mail_body_wiki_content_updated: "%{author} оновив(ла) wiki-сторінку %{id}." - permission_add_project: Створення проекту - setting_new_project_user_role_id: Роль, яка призначається користувачеві що створив проект - label_view_all_revisions: Показати всі ревізії - label_tag: Мітка - label_branch: Гілка - error_no_tracker_in_project: З цим проектом не асоційований жоден трекер. Будь ласка, перевірте налаштування проекту. - error_no_default_issue_status: Не визначений статус задач за замовчуванням. Будь ласка, перевірте налаштування (див. "Адміністрування -> Статуси задач"). - text_journal_changed: "Параметр %{label} змінився з %{old} на %{new}" - text_journal_set_to: "Параметр %{label} змінився на %{value}" - text_journal_deleted: "Значення %{old} параметру %{label} видалено" - label_group_plural: Групи - label_group: Група - label_group_new: Нова група - label_time_entry_plural: Трудовитрати - text_journal_added: "%{label} %{value} доданий" - field_active: Активно - enumeration_system_activity: Системне - permission_delete_issue_watchers: Видалення спостерігачів - version_status_closed: закритий - version_status_locked: заблокований - version_status_open: відкритий - error_can_not_reopen_issue_on_closed_version: Задача, що прикріплена до закритої версії, не зможе бути відкрита знову - label_user_anonymous: Анонім - button_move_and_follow: Перемістити і перейти - setting_default_projects_modules: Включені по замовчуванню модулі для нових проектів - setting_gravatar_default: Зображення Gravatar за замовчуванням - field_sharing: Спільне використання - label_version_sharing_hierarchy: З ієрархією пректів - label_version_sharing_system: З усіма проектами - label_version_sharing_descendants: З підпроектами - label_version_sharing_tree: З деревом проектів - label_version_sharing_none: Без спільного доступу - error_can_not_archive_project: Цей проект не може бути заархівований - button_copy_and_follow: Скопіювати та продовжити - label_copy_source: Джерело - setting_issue_done_ratio: Розраховувати готовність задачі з допомогою поля - setting_issue_done_ratio_issue_status: Статус задачі - error_issue_done_ratios_not_updated: Параметр готовність задач не оновлений. - error_workflow_copy_target: Оберіть цільові трекери і ролі - setting_issue_done_ratio_issue_field: Готовність задачі - label_copy_same_as_target: Те саме, що і у цілі - label_copy_target: Ціль - notice_issue_done_ratios_updated: Параметр «готовність» оновлений. - error_workflow_copy_source: Будь ласка, виберіть початковий трекер або роль - label_update_issue_done_ratios: Оновити готовність задач - setting_start_of_week: День початку тижня - permission_view_issues: Перегляд задач - label_display_used_statuses_only: Відображати тільки ті статуси, які використовуються в цьому трекері - label_revision_id: Ревізія %{value} - label_api_access_key: Ключ доступу до API - label_api_access_key_created_on: Ключ доступу до API створено %{value} тому - label_feeds_access_key: Ключ доступу до Atom - notice_api_access_key_reseted: Ваш ключ доступу до API був скинутий. - setting_rest_api_enabled: Включити веб-сервіс REST - label_missing_api_access_key: Відсутній ключ доступу до API - label_missing_feeds_access_key: Відсутній ключ доступу до Atom - button_show: Показати - text_line_separated: Дозволено кілька значень (по одному значенню в рядок). - setting_mail_handler_body_delimiters: Обрізати вміст листів після одного з цих рядків - permission_add_subprojects: Створення підпроектів - label_subproject_new: Новий підпроект - text_own_membership_delete_confirmation: |- - Ви збираєтесь видалити деякі або всі права, через що можуть зникнути права на редагування цього проекту. - Ви впевнені що хочете продовжити? - label_close_versions: Закрити завершені версії - label_board_sticky: Прикріплена - label_board_locked: Заблокована - permission_export_wiki_pages: Експорт wiki-сторінок - setting_cache_formatted_text: Кешувати форматований текст - permission_manage_project_activities: Управління типами дій для проекту - error_unable_delete_issue_status: Неможливо видалити статус задачі (%{value}) - label_profile: Профіль - permission_manage_subtasks: Управління підзадачами - field_parent_issue: Батьківська задача - label_subtask_plural: Підзадачі - label_project_copy_notifications: Відправляти сповіщення по електронній пошті при копіюванні проекту - error_can_not_delete_custom_field: Неможливо видалити поле що налаштовується - error_unable_to_connect: Неможливо підключитись (%{value}) - error_can_not_remove_role: Ця роль використовується і не може бути видалена. - error_can_not_delete_tracker: Цей трекер містить задачі і не може бути видалений. - field_principal: Ім'я - notice_failed_to_save_members: "Не вдалось зберегти учасника(ів): %{errors}." - text_zoom_out: Віддалити - text_zoom_in: Наблизити - notice_unable_delete_time_entry: Неможливо видалити запис журналу. - label_overall_spent_time: Всього витраченого часу (трудовитрати) - field_time_entries: Видимість трудовитрат - project_module_gantt: Діаграма Ганта - project_module_calendar: Календар - button_edit_associated_wikipage: "Редагувати пов'язану Wiki сторінку: %{page_title}" - field_text: Текстове поле - setting_default_notification_option: Спосіб сповіщення за замовчуванням - label_user_mail_option_only_my_events: Тільки для задач, які я відслідковую чи беру участь - label_user_mail_option_none: Немає подій - field_member_of_group: Група виконавця - field_assigned_to_role: Роль виконавця - notice_not_authorized_archived_project: Даний проект заархівований. - label_principal_search: "Знайти користувача або групу:" - label_user_search: "Знайти користувача:" - field_visible: Видимий - setting_commit_logtime_activity_id: Для для обліку часу - text_time_logged_by_changeset: Взято до уваги в редакції %{value}. - setting_commit_logtime_enabled: Включити облік часу - notice_gantt_chart_truncated: Діаграма буде обрізана, так як перевищено максимальну к-сть елементів для відображення (%{max}) - setting_gantt_items_limit: Максимальна к-сть елементів для відображення на діаграмі Ганта - field_warn_on_leaving_unsaved: Попереджувати при закритті сторінки з незбереженим текстом - text_warn_on_leaving_unsaved: Дана сторінка містить незбережений текст, який буде втрачено при закритті сторінки. - label_my_queries: Мої збережені запити - text_journal_changed_no_detail: "%{label} оновлено" - label_news_comment_added: Добавлено новий коментар до новини - button_expand_all: Розгорнути все - button_collapse_all: Згорнути все - label_additional_workflow_transitions_for_assignee: Додаткові переходи дозволені користувачу, який є виконавцем - label_additional_workflow_transitions_for_author: Додаткові переходи дозволені користувачу, який є автором - label_bulk_edit_selected_time_entries: Масова зміна вибраних записів трудовитрат - text_time_entries_destroy_confirmation: Ви впевнені, що хочете видалити вибрані трудовитрати? - label_role_anonymous: Анонім - label_role_non_member: Не учасник - label_issue_note_added: Примітку додано - label_issue_status_updated: Статус оновлено - label_issue_priority_updated: Пріоритет оновлено - label_issues_visibility_own: Створені або призначені задачі для користувача - field_issues_visibility: Видимість задач - label_issues_visibility_all: Всі задачі - permission_set_own_issues_private: Встановити видимість (повна/чаткова) для власних задач - field_is_private: Приватна - permission_set_issues_private: Встановити видимість (повна/чаткова) для задач - label_issues_visibility_public: Тільки загальні задачі - text_issues_destroy_descendants_confirmation: Також буде видалено %{count} задача(і). - field_commit_logs_encoding: Кодування коментарів у сховищі - field_scm_path_encoding: Кодування шляху - text_scm_path_encoding_note: "По замовчуванню: UTF-8" - field_path_to_repository: Шлях до сховища - field_root_directory: Коренева директорія - field_cvs_module: Модуль - field_cvsroot: CVSROOT - text_mercurial_repository_note: Локальне сховище (наприклад. /hgrepo, c:\hgrepo) - text_scm_command: Команда - text_scm_command_version: Версія - label_git_report_last_commit: Зазначати останні зміни для файлів та директорій - notice_issue_successful_create: Задача %{id} створена. - label_between: між - setting_issue_group_assignment: Надавати доступ до створення задача групам користувачів - label_diff: різниця - text_git_repository_note: Сховище пусте та локальнеl (тобто. /gitrepo, c:\gitrepo) - description_query_sort_criteria_direction: Порядок сортування - description_project_scope: Область пошуку - description_filter: Фільтр - description_user_mail_notification: Налаштування поштових сповіщень - description_message_content: Зміст повідомлення - description_available_columns: Доступні колонки - description_issue_category_reassign: Виберіть категорію задачі - description_search: Поле пошуку - description_notes: Примітки - description_choose_project: Проекти - description_query_sort_criteria_attribute: Критерій сортування - description_wiki_subpages_reassign: Виберіть батьківську сторінку - description_selected_columns: Вибрані колонки - label_parent_revision: Батьківський - label_child_revision: Підпорядкований - error_scm_annotate_big_text_file: Неможливо додати коментарій через перевищення максимального розміру текстового файлу. - setting_default_issue_start_date_to_creation_date: Використовувати поточну дату, як дату початку нових задач - button_edit_section: Редагувати дану секцію - setting_repositories_encodings: Кодування вкладень та сховищ - description_all_columns: Всі колонки - button_export: Експорт - label_export_options: "%{export_format} параметри екпортування" - error_attachment_too_big: Неможливо завантажити файл, він перевищує максимальний дозволений розмір (%{max_size}) - notice_failed_to_save_time_entries: "Не вдалось зберегти %{count} трудовитрати %{total} вибраних: %{ids}." - label_x_issues: - zero: 0 Задач - one: 1 Задача - other: "%{count} Задач" - label_repository_new: Нове сховище - field_repository_is_default: Сховище за замовчуванням - label_copy_attachments: Скопіювати вкладення - label_item_position: "%{position}/%{count}" - label_completed_versions: Завершені версії - text_project_identifier_info: Допускаються тільки рядкові малі букви (a-z), цифри, тире та підкреслення (нижнє тире).
    Після збереження ідентифікатор заборонено редагувати. - field_multiple: Множинні значення - setting_commit_cross_project_ref: Дозволяти посилання та редагування задач у всіх інших проектах - text_issue_conflict_resolution_add_notes: Додати мої примітки та відмовитись від моїх змін - text_issue_conflict_resolution_overwrite: Застосувати мої зміни (всі попередні примітки будуть збережені, але деякі зміни зможуть бути перезаписані) - notice_issue_update_conflict: Хтось змінив задачу, поки ви її редагували - text_issue_conflict_resolution_cancel: Скасувати мої зміни та показати та повторно показати задачу %{link} - permission_manage_related_issues: Управління пов'язаними задачами - field_auth_source_ldap_filter: Фільтр LDAP - label_search_for_watchers: Знайти спостерігачів - notice_account_deleted: "Ваш обліковій запис повністю видалений" - setting_unsubscribe: "Дозволити користувачам видаляти свої облікові записи" - button_delete_my_account: "Видалити мій обліковий запис" - text_account_destroy_confirmation: "Ваш обліковий запис буде повністю видалений без можливості відновлення.\nВи впевнені, що бажаете продовжити?" - error_session_expired: Сеанс вичерпано. Будь ласка, увійдіть іще раз. - text_session_expiration_settings: "Увага!: зміна даних налаштувань може спричинити завершення активних сеансів, включаючи Ваш." - setting_session_lifetime: Максимальна тривалість сеансу - setting_session_timeout: Таймаут сеансу - label_session_expiration: Термін закінчення сеансу - permission_close_project: Закривати/відкривати проекти - button_close: Закрити - button_reopen: Відкрити - project_status_active: Відкриті(ий) - project_status_closed: Закриті(ий) - project_status_archived: Заархівовані(ий) - text_project_closed: Проект закрито. Доступний лише в режимі читання. - notice_user_successful_create: Користувача %{id} створено. - field_core_fields: Стандартні поля - field_timeout: Таймаут (в секундах) - setting_thumbnails_enabled: Відображати попередній перегляд для вкладень - setting_thumbnails_size: Розмір попереднього перегляду (в пікселях) - label_status_transitions: Статус-переходи - label_fields_permissions: Права на редагування полів - label_readonly: Тільки для перегляду - label_required: Обов'язкове - text_repository_identifier_info: Допускаються тільки рядкові малі букви (a-z), цифри, тире та підкреслення (нижнє тире).
    Після збереження ідентифікатор заборонено редагувати. - field_board_parent: Батьківський форум - label_attribute_of_project: Проект %{name} - label_attribute_of_author: Ім'я автора %{name} - label_attribute_of_assigned_to: Призначено %{name} - label_attribute_of_fixed_version: Версія %{name} - label_copy_subtasks: Скопіювати підзадачі - label_copied_to: Скопійовано в - label_copied_from: Скопійовано з - label_any_issues_in_project: будь-які задачі в проекті - label_any_issues_not_in_project: будь-які задачі не в проекті - field_private_notes: Приватні коментарі - permission_view_private_notes: Перегляд приватних коментарів - permission_set_notes_private: Розміщення приватних коментарів - label_no_issues_in_project: в проекті немає задач - label_any: Усі - label_last_n_weeks: минулий(і) %{count} тиждень(ні) - setting_cross_project_subtasks: Дозволити підзадачі між проектами - label_cross_project_descendants: З підпроектами - label_cross_project_tree: З деревом проектів - label_cross_project_hierarchy: З ієрархією проектів - label_cross_project_system: З усіма проектами - button_hide: Сховати - setting_non_working_week_days: Неробочі дні - label_in_the_next_days: в наступні дні - label_in_the_past_days: минулі дні - label_attribute_of_user: Користувач %{name} - text_turning_multiple_off: Якщо відключити множинні значення, зайві значення будуть видалені зі списку, так аби залишилось тільки по одному значенню. - label_attribute_of_issue: Задача %{name} - permission_add_documents: Додати документи - permission_edit_documents: Редагувати документи - permission_delete_documents: Видалити документи - label_gantt_progress_line: Лінія прогресу - setting_jsonp_enabled: Включити JSONP підтримку - field_inherit_members: Наслідувати учасників - field_closed_on: Закрито - field_generate_password: Створити пароль - setting_default_projects_tracker_ids: Трекери по замовчуванню для нових проектів - label_total_time: Всього - text_scm_config: Ви можете налаштувати команди SCM в файлі config/configuration.yml. Будь ласка, перезавантажте додаток після редагування даного файлу. - text_scm_command_not_available: SCM команада недоступна. Будь ласка, перевірте налаштування в адміністративній панелі. - setting_emails_header: Заголовок листа - notice_account_not_activated_yet: Поки що ви не маєте активованих облікових записів. Для того аби отримати лист із активацією, перейдіть по click this link. - notice_account_locked: Ваш обліковий запис заблоковано. - label_hidden: Схований - label_visibility_private: тільки для мене - label_visibility_roles: тільки для даних ролей - label_visibility_public: для всіх користувачів - field_must_change_passwd: Змінити пароль при наступному вході - notice_new_password_must_be_different: Новий пароль повинен відрізнятись від існуючого - setting_mail_handler_excluded_filenames: Виключити вкладення по імені - text_convert_available: ImageMagick використання доступно (опціонально) - label_link: Посилання - label_only: тільки - label_drop_down_list: випадаючий список - label_checkboxes: чекбокси - label_link_values_to: Значення посилань для URL - setting_force_default_language_for_anonymous: Не визначати мову для анонімних користувачів - setting_force_default_language_for_loggedin: Не визначати мову для зареєстрованих користувачів - label_custom_field_select_type: Виберіть тип об'єкта, для якого буде створено поле для налаштування - label_issue_assigned_to_updated: Виконавець оновлений - label_check_for_updates: Перевірити оновлення - label_latest_compatible_version: Остання сумісна версія - label_unknown_plugin: Невідомий плагін - label_radio_buttons: радіо-кнопки - label_group_anonymous: Анонімні користувачі - label_group_non_member: Користувачі неучасники - label_add_projects: Додати проекти - field_default_status: Статус по замовчуванню - text_subversion_repository_note: 'наприклад:///, http://, https://, svn://, svn+[tunnelscheme]://' - field_users_visibility: Видимість користувачів - label_users_visibility_all: Всі активні користувачі - label_users_visibility_members_of_visible_projects: Учасники видимих проектів - label_edit_attachments: Редагувати прикріплені файли - setting_link_copied_issue: Зв'язати задачі при копіюванні - label_link_copied_issue: Зв'язати скопійовану задачу - label_ask: Спитати - label_search_attachments_yes: Шукати в назвах прикріплених файлів та описах - label_search_attachments_no: Не шукати в прикріплених файлах - label_search_attachments_only: Шукати тільки в прикріплених файлах - label_search_open_issues_only: Тільки у відкритих задачах - field_address: Ел. пошта - setting_max_additional_emails: Максимальна кількість додаткрвих email адрес - label_email_address_plural: Emails - label_email_address_add: Додати email адреси - label_enable_notifications: Увімкнути сповіщення - label_disable_notifications: Вимкнути сповіщення - setting_search_results_per_page: Кількість знайдених результатів на сторінку - label_blank_value: пусто - permission_copy_issues: Копіювання задач - error_password_expired: Термін дії вашого паролю закінчився або адміністратор запросив поміняти його. - field_time_entries_visibility: Видимість трудовитрат - setting_password_max_age: Вимагати заміну пароля по завершенню - label_parent_task_attributes: Атрибути батьківської задачі - label_parent_task_attributes_derived: З урахуванням підзадач - label_parent_task_attributes_independent: Без урахування підзадач - label_time_entries_visibility_all: Всі трудовитрати - label_time_entries_visibility_own: Тільки власні трудовитрати - label_member_management: Управління учасниками - label_member_management_all_roles: Всі ролі - label_member_management_selected_roles_only: Тільки дані ролі - label_password_required: Підтвердіть ваш пароль для продовження - label_total_spent_time: Всього витрачено часу - notice_import_finished: "%{count} елементи(ів) було імпортовано" - notice_import_finished_with_errors: "%{count} з %{total} елементи(ів) неможливо імпортувати" - error_invalid_file_encoding: Кодування файлу не відповідає видраній(ому) %{encoding} - error_invalid_csv_file_or_settings: Файл не є файлом CSV або не відповідає вибраним налаштуванням - error_can_not_read_import_file: Під час читання файлу для імпорту виникла помилка - permission_import_issues: Імпорт задач - label_import_issues: Імпорт задач - label_select_file_to_import: Виберіть файл для імпорту - label_fields_separator: Розділювач - label_fields_wrapper: Обмежувач - label_encoding: Кодування - label_comma_char: Кома - label_semi_colon_char: Крапка з комою - label_quote_char: Дужки - label_double_quote_char: Подвійні дужки - label_fields_mapping: Відповідність полів - label_file_content_preview: Попередній перегляд вмісту файлу - label_create_missing_values: Створити відсутні значення - button_import: Імпорт - field_total_estimated_hours: Всього залишилось часу - label_api: API - label_total_plural: Висновки - label_assigned_issues: Призначені задачі - label_field_format_enumeration: Ключ/значення список - label_f_hour_short: '%{value} г' - field_default_version: Версія за замовчуванням - error_attachment_extension_not_allowed: Дане розширення %{extension} заборонено - setting_attachment_extensions_allowed: Дозволені розширенні - setting_attachment_extensions_denied: Заборонені розширення - label_any_open_issues: будь-які відкриті задачі - label_no_open_issues: немає відкритих задач - label_default_values_for_new_users: Значення за замовчуванням для нових користувачів - error_ldap_bind_credentials: Неправильний обліковий запис LDAP /Пароль - setting_sys_api_key: API ключ - setting_lost_password: Забули пароль - mail_subject_security_notification: Сповіщення безпеки - mail_body_security_notification_change: ! '%{field} змінено.' - mail_body_security_notification_change_to: ! '%{field} було змінено на %{value}.' - mail_body_security_notification_add: ! '%{field} %{value} додано.' - mail_body_security_notification_remove: ! '%{field} %{value} видалено.' - mail_body_security_notification_notify_enabled: Email адреса %{value} зараз отримує сповіщення. - mail_body_security_notification_notify_disabled: Email адреса %{value} більше не отримує сповіщення. - mail_body_settings_updated: ! 'Наступні налаштування було змінено:' - field_remote_ip: IP адреси - label_wiki_page_new: Нова wiki сторінка - label_relations: Зв'язки - button_filter: Фільтр - mail_body_password_updated: Ваш пароль змінено. - label_no_preview: Попередній перегляд недоступний - error_no_tracker_allowed_for_new_issue_in_project: Проект не містить трекерів, для яких можна створити задачу - label_tracker_all: Всі трекери - label_new_project_issue_tab_enabled: Відображати вкладку "Нова задача" - setting_new_item_menu_tab: Вкладка "меню проекту" для створення нових об'єктів - label_new_object_tab_enabled: Відображати випадаючий список "+" - error_no_projects_with_tracker_allowed_for_new_issue: Немає проектів з трекерами, для яких можна було б створити задачу - field_textarea_font: Шрифт, який використовується для текстових полів - label_font_default: Шрифт за замовчуванням - label_font_monospace: Моноширинний шрифт - label_font_proportional: Пропорційний шрифт - setting_timespan_format: Формат часового діапазону - label_table_of_contents: Зміст - setting_commit_logs_formatting: Застосувати форматування тексту для повідомлення - setting_mail_handler_enable_regex: Використовувати регулярні вирази - error_move_of_child_not_possible: 'Підзадача %{child} не може бути перенесена в новий проект: %{errors}' - error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted: Витрачений час не можна перенести на задачу, яка має бути видалена - setting_timelog_required_fields: Обов'язкові поля для журналу часу - label_attribute_of_object: '%{object_name}''s %{name}' - warning_fields_cleared_on_bulk_edit: Зміни призведуть до автоматичного видалення значень з одного або декількох полів на обраних об'єктах - field_updated_by: Оновлено - field_last_updated_by: Востаннє оновлено - field_full_width_layout: Макет на повну ширину - label_user_mail_option_only_assigned: Лише для об'єктів за якими я спостерігаю або до яких прикріплений - label_user_mail_option_only_owner: Лише для об'єктів за якими я спостерігаю або є власником - label_last_notes: Останні коментарі - field_digest: Контрольна сума - field_default_assigned_to: Призначити по замовчуванню - setting_show_custom_fields_on_registration: Показувати додаткові поля при реєстрації - permission_view_news: Переглядати новини - label_no_preview_alternative_html: Попередній перегляд недоступний. %{link} файл натомість. - label_no_preview_download: Завантажити - setting_close_duplicate_issues: Закривати дублі задач автоматично - error_exceeds_maximum_hours_per_day: Неможливо зареєструвати більше ніж %{max_hours} годин за один день - (%{logged_hours} годин вже зареєстровано) - setting_time_entry_list_defaults: Перелік трудозатрат по замовчуванню - setting_timelog_accept_0_hours: Приймати порожні трудозатрати із 0 годин - setting_timelog_max_hours_per_day: Максимальна кількість годин що можна зазвітувати користувачеві на дешь - label_x_revisions: "%{count} версій" - error_can_not_delete_auth_source: Цей метод аутентифікації використовується і не може бути видалений. - button_actions: Actions - mail_body_lost_password_validity: Ви можете змінити пароль лише один раз використовуючи це посилання. - text_login_required_html: Без вимоги аутентифікації, публічні проекти та їх вміст вільно доступні в мережі. Ви можете змінити - необхідні права. - label_login_required_yes: 'Так' - label_login_required_no: Ні, дозволити анонімний доступ до публічних проектів - text_project_is_public_non_member: Публічні проекти та їх вміст доступні всім зареєстрованим користувачам. - text_project_is_public_anonymous: Публічні проекти та їх вміст вільно доступні в мережі. - label_version_and_files: Версій (%{count}) і Файлів - label_ldap: LDAP - label_ldaps_verify_none: LDAPS (без перевірки сертифікату) - label_ldaps_verify_peer: LDAPS - label_ldaps_warning: Рекомендовано використовувати шифроване LDAPS з'єднання з перевіркою сертифікату - щоби попередити маніпуляції під час процесу аутентифікації. - label_nothing_to_preview: Нічого не має для перегляду - error_token_expired: Це посилання відновлення паролю застаріло, буль ласка спробуйте заново. - error_spent_on_future_date: Неможна внести час на дату у майбутньому - setting_timelog_accept_future_dates: Приймати внесення часу на дати у майбутньому - label_delete_link_to_subtask: Видалити зв'язок - error_not_allowed_to_log_time_for_other_users: Не дозволено вносити час за інших користувачів. - permission_log_time_for_other_users: Дозволяти вносити час за інших користувачів. - label_tomorrow: tomorrow - label_next_week: next week - label_next_month: next month - text_role_no_workflow: No workflow defined for this role - text_status_no_workflow: No tracker uses this status in the workflows - setting_mail_handler_preferred_body_part: Preferred part of multipart (HTML) emails - setting_show_status_changes_in_mail_subject: Show status changes in issue mail notifications - subject - label_inherited_from_parent_project: Inherited from parent project - label_inherited_from_group: Inherited from group %{name} - label_trackers_description: Trackers description - label_open_trackers_description: View all trackers description - label_preferred_body_part_text: Text - label_preferred_body_part_html: HTML (experimental) - field_parent_issue_subject: Parent task subject - permission_edit_own_issues: Edit own issues - text_select_apply_tracker: Select tracker - label_updated_issues: Updated issues - text_avatar_server_config_html: The current avatar server is %{url}. - You can configure it in config/configuration.yml. - setting_gantt_months_limit: Maximum number of months displayed on the gantt chart - permission_import_time_entries: Import time entries - label_import_notifications: Send email notifications during the import - text_gs_available: ImageMagick PDF support available (optional) - field_recently_used_projects: Number of recently used projects in jump box - label_optgroup_bookmarks: Bookmarks - label_optgroup_others: Other projects - label_optgroup_recents: Recently used - button_project_bookmark: Add bookmark - button_project_bookmark_delete: Remove bookmark - field_history_default_tab: Issue's history default tab - label_issue_history_properties: Property changes - label_issue_history_notes: Notes - label_last_tab_visited: Last visited tab - field_unique_id: Unique ID - text_no_subject: no subject - setting_password_required_char_classes: Required character classes for passwords - label_password_char_class_uppercase: uppercase letters - label_password_char_class_lowercase: lowercase letters - label_password_char_class_digits: digits - label_password_char_class_special_chars: special characters - text_characters_must_contain: Must contain %{character_classes}. - label_starts_with: starts with - label_ends_with: ends with - label_issue_fixed_version_updated: Target version updated - setting_project_list_defaults: Projects list defaults - label_display_type: Display results as - label_display_type_list: List - label_display_type_board: Board - label_my_bookmarks: My bookmarks - label_import_time_entries: Import time entries diff --git a/config/locales/vi.yml b/config/locales/vi.yml deleted file mode 100644 index a5b4703..0000000 --- a/config/locales/vi.yml +++ /dev/null @@ -1,1367 +0,0 @@ -# Vietnamese translation for Ruby on Rails -# by -# Do Hai Bac (dohaibac@gmail.com) -# Dao Thanh Ngoc (ngocdaothanh@gmail.com, http://github.com/ngocdaothanh/rails-i18n/tree/master) -# Nguyen Minh Thien (thiencdcn@gmail.com, http://www.eDesignLab.org) - -vi: - number: - # Used in number_with_delimiter() - # These are also the defaults for 'currency', 'percentage', 'precision', and 'human' - format: - # Sets the separator between the units, for more precision (e.g. 1.0 / 2.0 == 0.5) - separator: "," - # Delimets thousands (e.g. 1,000,000 is a million) (always in groups of three) - delimiter: "." - # Number of decimals, behind the separator (1 with a precision of 2 gives: 1.00) - precision: 3 - - # Used in number_to_currency() - currency: - format: - # Where is the currency sign? %u is the currency unit, %n the number (default: $5.00) - format: "%n %u" - unit: "đồng" - # These three are to override number.format and are optional - separator: "," - delimiter: "." - precision: 2 - - # Used in number_to_percentage() - percentage: - format: - # These three are to override number.format and are optional - # separator: - delimiter: "" - # precision: - - # Used in number_to_precision() - precision: - format: - # These three are to override number.format and are optional - # separator: - delimiter: "" - # precision: - - # Used in number_to_human_size() - human: - format: - # These three are to override number.format and are optional - # separator: - delimiter: "" - precision: 3 - storage_units: - format: "%n %u" - units: - byte: - one: "Byte" - other: "Bytes" - kb: "KB" - mb: "MB" - gb: "GB" - tb: "TB" - - # Used in distance_of_time_in_words(), distance_of_time_in_words_to_now(), time_ago_in_words() - datetime: - distance_in_words: - half_a_minute: "30 giây" - less_than_x_seconds: - one: "chưa tới 1 giây" - other: "chưa tới %{count} giây" - x_seconds: - one: "1 giây" - other: "%{count} giây" - less_than_x_minutes: - one: "chưa tới 1 phút" - other: "chưa tới %{count} phút" - x_minutes: - one: "1 phút" - other: "%{count} phút" - about_x_hours: - one: "khoảng 1 giờ" - other: "khoảng %{count} giờ" - x_hours: - one: "1 giờ" - other: "%{count} giờ" - x_days: - one: "1 ngày" - other: "%{count} ngày" - about_x_months: - one: "khoảng 1 tháng" - other: "khoảng %{count} tháng" - x_months: - one: "1 tháng" - other: "%{count} tháng" - about_x_years: - one: "khoảng 1 năm" - other: "khoảng %{count} năm" - over_x_years: - one: "hơn 1 năm" - other: "hơn %{count} năm" - almost_x_years: - one: "gần 1 năm" - other: "gần %{count} năm" - prompts: - year: "Năm" - month: "Tháng" - day: "Ngày" - hour: "Giờ" - minute: "Phút" - second: "Giây" - - activerecord: - errors: - template: - header: - one: "1 lỗi ngăn không cho lưu %{model} này" - other: "%{count} lỗi ngăn không cho lưu %{model} này" - # The variable :count is also available - body: "Có lỗi với các mục sau:" - - # The values :model, :attribute and :value are always available for interpolation - # The value :count is available when applicable. Can be used for pluralization. - messages: - inclusion: "không có trong danh sách" - exclusion: "đã được giành trước" - invalid: "không hợp lệ" - confirmation: "không khớp với xác nhận" - accepted: "phải được đồng ý" - empty: "không thể rỗng" - blank: "không thể để trắng" - too_long: "quá dài (tối đa %{count} ký tự)" - too_short: "quá ngắn (tối thiểu %{count} ký tự)" - wrong_length: "độ dài không đúng (phải là %{count} ký tự)" - taken: "đã có" - not_a_number: "không phải là số" - greater_than: "phải lớn hơn %{count}" - greater_than_or_equal_to: "phải lớn hơn hoặc bằng %{count}" - equal_to: "phải bằng %{count}" - less_than: "phải nhỏ hơn %{count}" - less_than_or_equal_to: "phải nhỏ hơn hoặc bằng %{count}" - odd: "phải là số chẵn" - even: "phải là số lẻ" - greater_than_start_date: "phải đi sau ngày bắt đầu" - not_same_project: "không thuộc cùng dự án" - circular_dependency: "quan hệ có thể gây ra lặp vô tận" - cant_link_an_issue_with_a_descendant: "Một vấn đề không thể liên kết tới một trong số những tác vụ con của nó" - earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" - not_a_regexp: "is not a valid regular expression" - open_issue_with_closed_parent: "An open issue cannot be attached to a closed parent task" - must_contain_uppercase: "must contain uppercase letters (A-Z)" - must_contain_lowercase: "must contain lowercase letters (a-z)" - must_contain_digits: "must contain digits (0-9)" - must_contain_special_chars: "must contain special characters (!, $, %, ...)" - - direction: ltr - date: - formats: - # Use the strftime parameters for formats. - # When no format has been given, it uses default. - # You can provide other formats here if you like! - default: "%d-%m-%Y" - short: "%d %b" - long: "%d %B, %Y" - - day_names: ["Chủ nhật", "Thứ hai", "Thứ ba", "Thứ tư", "Thứ năm", "Thứ sáu", "Thứ bảy"] - abbr_day_names: ["Chủ nhật", "Thứ hai", "Thứ ba", "Thứ tư", "Thứ năm", "Thứ sáu", "Thứ bảy"] - - # Don't forget the nil at the beginning; there's no such thing as a 0th month - month_names: [~, "Tháng một", "Tháng hai", "Tháng ba", "Tháng tư", "Tháng năm", "Tháng sáu", "Tháng bảy", "Tháng tám", "Tháng chín", "Tháng mười", "Tháng mười một", "Tháng mười hai"] - abbr_month_names: [~, "Tháng một", "Tháng hai", "Tháng ba", "Tháng tư", "Tháng năm", "Tháng sáu", "Tháng bảy", "Tháng tám", "Tháng chín", "Tháng mười", "Tháng mười một", "Tháng mười hai"] - # Used in date_select and datime_select. - order: - - :day - - :month - - :year - - time: - formats: - default: "%a, %d %b %Y %H:%M:%S %z" - time: "%H:%M" - short: "%d %b %H:%M" - long: "%d %B, %Y %H:%M" - am: "sáng" - pm: "chiều" - - # Used in array.to_sentence. - support: - array: - words_connector: ", " - two_words_connector: " và " - last_word_connector: ", và " - - actionview_instancetag_blank_option: Vui lòng chọn - - general_text_No: 'Không' - general_text_Yes: 'Có' - general_text_no: 'không' - general_text_yes: 'có' - general_lang_name: 'Vietnamese (Tiếng Việt)' - general_csv_separator: ',' - general_csv_decimal_separator: '.' - general_csv_encoding: UTF-8 - general_pdf_fontname: DejaVuSans - general_pdf_monospaced_fontname: DejaVuSans - general_first_day_of_week: '1' - - notice_account_updated: Cập nhật tài khoản thành công. - notice_account_invalid_credentials: Tài khoản hoặc mật mã không hợp lệ - notice_account_password_updated: Cập nhật mật mã thành công. - notice_account_wrong_password: Sai mật mã - notice_account_register_done: Tài khoản được tạo thành công. Để kích hoạt vui lòng làm theo hướng dẫn trong email gửi đến bạn. - notice_account_unknown_email: Không rõ tài khoản. - notice_can_t_change_password: Tài khoản được chứng thực từ nguồn bên ngoài. Không thể đổi mật mã cho loại chứng thực này. - notice_account_lost_email_sent: Thông tin để đổi mật mã mới đã gửi đến bạn qua email. - notice_account_activated: Tài khoản vừa được kích hoạt. Bây giờ bạn có thể đăng nhập. - notice_successful_create: Tạo thành công. - notice_successful_update: Cập nhật thành công. - notice_successful_delete: Xóa thành công. - notice_successful_connection: Kết nối thành công. - notice_file_not_found: Trang bạn cố xem không tồn tại hoặc đã chuyển. - notice_locking_conflict: Thông tin đang được cập nhật bởi người khác. Hãy chép nội dung cập nhật của bạn vào clipboard. - notice_not_authorized: Bạn không có quyền xem trang này. - notice_email_sent: "Email đã được gửi tới %{value}" - notice_email_error: "Lỗi xảy ra khi gửi email (%{value})" - notice_feeds_access_key_reseted: Mã số chứng thực Atom đã được tạo lại. - notice_failed_to_save_issues: "Thất bại khi lưu %{count} vấn đề trong %{total} lựa chọn: %{ids}." - notice_no_issue_selected: "Không có vấn đề được chọn! Vui lòng kiểm tra các vấn đề bạn cần chỉnh sửa." - notice_account_pending: "Thông tin tài khoản đã được tạo ra và đang chờ chứng thực từ ban quản trị." - notice_default_data_loaded: Đã nạp cấu hình mặc định. - notice_unable_delete_version: Không thể xóa phiên bản. - - error_can_t_load_default_data: "Không thể nạp cấu hình mặc định: %{value}" - error_scm_not_found: "Không tìm thấy dữ liệu trong kho chứa." - error_scm_command_failed: "Lỗi xảy ra khi truy cập vào kho lưu trữ: %{value}" - error_scm_annotate: "Đầu vào không tồn tại hoặc không thể chú thích." - error_issue_not_found_in_project: 'Vấn đề không tồn tại hoặc không thuộc dự án' - - mail_subject_lost_password: "%{value}: mật mã của bạn" - mail_body_lost_password: "Để đổi mật mã, hãy click chuột vào liên kết sau:" - mail_subject_register: "%{value}: kích hoạt tài khoản" - mail_body_register: "Để kích hoạt tài khoản, hãy click chuột vào liên kết sau:" - mail_body_account_information_external: " Bạn có thể dùng tài khoản %{value} để đăng nhập." - mail_body_account_information: Thông tin về tài khoản - mail_subject_account_activation_request: "%{value}: Yêu cầu chứng thực tài khoản" - mail_body_account_activation_request: "Người dùng (%{value}) mới đăng ký và cần bạn xác nhận:" - mail_subject_reminder: "%{count} vấn đề hết hạn trong các %{days} ngày tới" - mail_body_reminder: "%{count} công việc bạn được phân công sẽ hết hạn trong %{days} ngày tới:" - - field_name: Tên dự án - field_description: Mô tả - field_summary: Tóm tắt - field_is_required: Bắt buộc - field_firstname: Tên đệm và Tên - field_lastname: Họ - field_mail: Email - field_filename: Tập tin - field_filesize: Cỡ - field_downloads: Tải về - field_author: Tác giả - field_created_on: Tạo - field_updated_on: Cập nhật - field_field_format: Định dạng - field_is_for_all: Cho mọi dự án - field_possible_values: Giá trị hợp lệ - field_regexp: Biểu thức chính quy - field_min_length: Chiều dài tối thiểu - field_max_length: Chiều dài tối đa - field_value: Giá trị - field_category: Chủ đề - field_title: Tiêu đề - field_project: Dự án - field_issue: Vấn đề - field_status: Trạng thái - field_notes: Ghi chú - field_is_closed: Vấn đề đóng - field_is_default: Giá trị mặc định - field_tracker: Kiểu vấn đề - field_subject: Chủ đề - field_due_date: Hết hạn - field_assigned_to: Phân công cho - field_priority: Mức ưu tiên - field_fixed_version: Phiên bản - field_user: Người dùng - field_role: Quyền - field_homepage: Trang chủ - field_is_public: Công cộng - field_parent: Dự án con của - field_is_in_roadmap: Có thể thấy trong Kế hoạch - field_login: Đăng nhập - field_mail_notification: Thông báo qua email - field_admin: Quản trị - field_last_login_on: Kết nối cuối - field_language: Ngôn ngữ - field_effective_date: Ngày - field_password: Mật khẩu - field_new_password: Mật khẩu mới - field_password_confirmation: Nhập lại mật khẩu - field_version: Phiên bản - field_type: Kiểu - field_host: Host - field_port: Cổng - field_account: Tài khoản - field_base_dn: Base DN - field_attr_login: Thuộc tính đăng nhập - field_attr_firstname: Thuộc tính tên đệm và Tên - field_attr_lastname: Thuộc tính Họ - field_attr_mail: Thuộc tính Email - field_onthefly: Tạo người dùng tức thì - field_start_date: Bắt đầu - field_done_ratio: Tiến độ - field_auth_source: Chế độ xác thực - field_hide_mail: Không hiện email của tôi - field_comments: Bình luận - field_url: URL - field_start_page: Trang bắt đầu - field_subproject: Dự án con - field_hours: Giờ - field_activity: Hoạt động - field_spent_on: Ngày - field_identifier: Mã nhận dạng - field_is_filter: Dùng như bộ lọc - field_issue_to: Vấn đề liên quan - field_delay: Độ trễ - field_assignable: Vấn đề có thể gán cho vai trò này - field_redirect_existing_links: Chuyển hướng trang đã có - field_estimated_hours: Thời gian ước lượng - field_column_names: Cột - field_time_zone: Múi giờ - field_searchable: Tìm kiếm được - field_default_value: Giá trị mặc định - field_comments_sorting: Liệt kê bình luận - field_parent_title: Trang mẹ - - setting_app_title: Tựa đề ứng dụng - setting_welcome_text: Thông điệp chào mừng - setting_default_language: Ngôn ngữ mặc định - setting_login_required: Cần đăng nhập - setting_self_registration: Tự chứng thực - setting_attachment_max_size: Cỡ tối đa của tập tin đính kèm - setting_issues_export_limit: Giới hạn Export vấn đề - setting_mail_from: Địa chỉ email gửi thông báo - setting_bcc_recipients: Tạo bản CC bí mật (bcc) - setting_host_name: Tên miền và đường dẫn - setting_text_formatting: Định dạng bài viết - setting_wiki_compression: Nén lịch sử Wiki - setting_feeds_limit: Giới hạn nội dung của feed - setting_default_projects_public: Dự án mặc định là public - setting_autofetch_changesets: Tự động tìm nạp commits - setting_sys_api_enabled: Cho phép WS quản lý kho chứa - setting_commit_ref_keywords: Từ khóa tham khảo - setting_commit_fix_keywords: Từ khóa chỉ vấn đề đã giải quyết - setting_autologin: Tự động đăng nhập - setting_date_format: Định dạng ngày - setting_time_format: Định dạng giờ - setting_cross_project_issue_relations: Cho phép quan hệ chéo giữa các dự án - setting_issue_list_default_columns: Các cột mặc định hiển thị trong danh sách vấn đề - setting_emails_footer: Chữ ký cuối thư - setting_protocol: Giao thức - setting_per_page_options: Tùy chọn đối tượng mỗi trang - setting_user_format: Định dạng hiển thị người dùng - setting_activity_days_default: Ngày hiển thị hoạt động của dự án - setting_display_subprojects_issues: Hiển thị mặc định vấn đề của dự án con ở dự án chính - setting_enabled_scm: Cho phép SCM - setting_mail_handler_api_enabled: Cho phép WS cho các email tới - setting_mail_handler_api_key: Mã số API - setting_sequential_project_identifiers: Tự sinh chuỗi ID dự án - - project_module_issue_tracking: Theo dõi vấn đề - project_module_time_tracking: Theo dõi thời gian - project_module_news: Tin tức - project_module_documents: Tài liệu - project_module_files: Tập tin - project_module_wiki: Wiki - project_module_repository: Kho lưu trữ - project_module_boards: Diễn đàn - - label_user: Tài khoản - label_user_plural: Tài khoản - label_user_new: Tài khoản mới - label_project: Dự án - label_project_new: Dự án mới - label_project_plural: Dự án - label_x_projects: - zero: không có dự án - one: một dự án - other: "%{count} dự án" - label_project_all: Mọi dự án - label_project_latest: Dự án mới nhất - label_issue: Vấn đề - label_issue_new: Tạo vấn đề mới - label_issue_plural: Vấn đề - label_issue_view_all: Tất cả vấn đề - label_issues_by: "Vấn đề của %{value}" - label_issue_added: Đã thêm vấn đề - label_issue_updated: Vấn đề được cập nhật - label_document: Tài liệu - label_document_new: Tài liệu mới - label_document_plural: Tài liệu - label_document_added: Đã thêm tài liệu - label_role: Vai trò - label_role_plural: Vai trò - label_role_new: Vai trò mới - label_role_and_permissions: Vai trò và Quyền hạn - label_member: Thành viên - label_member_new: Thành viên mới - label_member_plural: Thành viên - label_tracker: Kiểu vấn đề - label_tracker_plural: Kiểu vấn đề - label_tracker_new: Tạo kiểu vấn đề mới - label_workflow: Quy trình làm việc - label_issue_status: Trạng thái vấn đề - label_issue_status_plural: Trạng thái vấn đề - label_issue_status_new: Thêm trạng thái - label_issue_category: Chủ đề - label_issue_category_plural: Chủ đề - label_issue_category_new: Chủ đề mới - label_custom_field: Trường tùy biến - label_custom_field_plural: Trường tùy biến - label_custom_field_new: Thêm Trường tùy biến - label_enumerations: Liệt kê - label_enumeration_new: Thêm giá trị - label_information: Thông tin - label_information_plural: Thông tin - label_register: Đăng ký - label_password_lost: Phục hồi mật mã - label_home: Trang chính - label_my_page: Trang riêng - label_my_account: Cá nhân - label_my_projects: Dự án của bạn - label_administration: Quản trị - label_login: Đăng nhập - label_logout: Thoát - label_help: Giúp đỡ - label_reported_issues: Công việc bạn phân công - label_assigned_to_me_issues: Công việc được phân công - label_last_login: Kết nối cuối - label_registered_on: Ngày tham gia - label_activity: Hoạt động - label_overall_activity: Tất cả hoạt động - label_new: Mới - label_logged_as: Tài khoản » - label_environment: Môi trường - label_authentication: Xác thực - label_auth_source: Chế độ xác thực - label_auth_source_new: Chế độ xác thực mới - label_auth_source_plural: Chế độ xác thực - label_subproject_plural: Dự án con - label_and_its_subprojects: "%{value} và dự án con" - label_min_max_length: Độ dài nhỏ nhất - lớn nhất - label_list: Danh sách - label_date: Ngày - label_integer: Số nguyên - label_float: Số thực - label_boolean: Boolean - label_string: Văn bản - label_text: Văn bản dài - label_attribute: Thuộc tính - label_attribute_plural: Các thuộc tính - label_no_data: Chưa có thông tin gì - label_change_status: Đổi trạng thái - label_history: Lược sử - label_attachment: Tập tin - label_attachment_new: Thêm tập tin mới - label_attachment_delete: Xóa tập tin - label_attachment_plural: Tập tin - label_file_added: Đã thêm tập tin - label_report: Báo cáo - label_report_plural: Báo cáo - label_news: Tin tức - label_news_new: Thêm tin - label_news_plural: Tin tức - label_news_latest: Tin mới - label_news_view_all: Xem mọi tin - label_news_added: Đã thêm tin - label_settings: Thiết lập - label_overview: Tóm tắt - label_version: Phiên bản - label_version_new: Phiên bản mới - label_version_plural: Phiên bản - label_confirmation: Khẳng định - label_export_to: 'Định dạng khác của trang này:' - label_read: Đọc... - label_public_projects: Các dự án công cộng - label_open_issues: mở - label_open_issues_plural: mở - label_closed_issues: đóng - label_closed_issues_plural: đóng - label_x_open_issues_abbr: - zero: 0 mở - one: 1 mở - other: "%{count} mở" - label_x_closed_issues_abbr: - zero: 0 đóng - one: 1 đóng - other: "%{count} đóng" - label_total: Tổng cộng - label_permissions: Quyền - label_current_status: Trạng thái hiện tại - label_new_statuses_allowed: Trạng thái mới được phép - label_all: Tất cả - label_none: không - label_nobody: Chẳng ai - label_next: Sau - label_previous: Trước - label_used_by: Được dùng bởi - label_details: Chi tiết - label_add_note: Thêm ghi chú - label_calendar: Lịch - label_months_from: tháng từ - label_gantt: Biểu đồ sự kiện - label_internal: Nội bộ - label_last_changes: "%{count} thay đổi cuối" - label_change_view_all: Xem mọi thay đổi - label_comment: Bình luận - label_comment_plural: Bình luận - label_x_comments: - zero: không có bình luận - one: 1 bình luận - other: "%{count} bình luận" - label_comment_add: Thêm bình luận - label_comment_added: Đã thêm bình luận - label_comment_delete: Xóa bình luận - label_query: Truy vấn riêng - label_query_plural: Truy vấn riêng - label_query_new: Truy vấn mới - label_filter_add: Thêm lọc - label_filter_plural: Bộ lọc - label_equals: là - label_not_equals: không là - label_in_less_than: ít hơn - label_in_more_than: nhiều hơn - label_in: trong - label_today: hôm nay - label_yesterday: hôm qua - label_this_week: tuần này - label_last_week: tuần trước - label_last_n_days: "%{count} ngày cuối" - label_this_month: tháng này - label_last_month: tháng cuối - label_this_year: năm này - label_date_range: Thời gian - label_less_than_ago: cách đây dưới - label_more_than_ago: cách đây hơn - label_ago: cách đây - label_contains: chứa - label_not_contains: không chứa - label_day_plural: ngày - label_repository: Kho lưu trữ - label_repository_plural: Kho lưu trữ - label_browse: Duyệt - label_revision: Bản điều chỉnh - label_revision_plural: Bản điều chỉnh - label_associated_revisions: Các bản điều chỉnh được ghép - label_added: thêm - label_modified: đổi - label_copied: chép - label_renamed: đổi tên - label_deleted: xóa - label_latest_revision: Bản điều chỉnh cuối cùng - label_latest_revision_plural: Bản điều chỉnh cuối cùng - label_view_revisions: Xem các bản điều chỉnh - label_max_size: Dung lượng tối đa - label_sort_highest: Lên trên cùng - label_sort_higher: Dịch lên - label_sort_lower: Dịch xuống - label_sort_lowest: Xuống dưới cùng - label_roadmap: Kế hoạch - label_roadmap_due_in: "Hết hạn trong %{value}" - label_roadmap_overdue: "Trễ %{value}" - label_roadmap_no_issues: Không có vấn đề cho phiên bản này - label_search: Tìm - label_result_plural: Kết quả - label_all_words: Mọi từ - label_wiki: Wiki - label_wiki_edit: Sửa Wiki - label_wiki_edit_plural: Thay đổi wiki - label_wiki_page: Trang wiki - label_wiki_page_plural: Trang wiki - label_index_by_title: Danh sách theo tên - label_index_by_date: Danh sách theo ngày - label_current_version: Bản hiện tại - label_preview: Xem trước - label_feed_plural: Nguồn cấp tin - label_changes_details: Chi tiết của mọi thay đổi - label_issue_tracking: Vấn đề - label_spent_time: Thời gian - label_f_hour: "%{value} giờ" - label_f_hour_plural: "%{value} giờ" - label_time_tracking: Theo dõi thời gian - label_change_plural: Thay đổi - label_statistics: Thống kê - label_commits_per_month: Commits mỗi tháng - label_commits_per_author: Commits mỗi tác giả - label_view_diff: So sánh - label_diff_inline: inline - label_diff_side_by_side: bên cạnh nhau - label_options: Tùy chọn - label_copy_workflow_from: Sao chép quy trình từ - label_permissions_report: Thống kê các quyền - label_watched_issues: Chủ đề đang theo dõi - label_related_issues: Liên quan - label_applied_status: Trạng thái áp dụng - label_loading: Đang xử lý... - label_relation_new: Quan hệ mới - label_relation_delete: Xóa quan hệ - label_relates_to: liên quan - label_duplicates: trùng với - label_duplicated_by: bị trùng bởi - label_blocks: chặn - label_blocked_by: chặn bởi - label_precedes: đi trước - label_follows: đi sau - label_stay_logged_in: Lưu thông tin đăng nhập - label_disabled: Bị vô hiệu - label_show_completed_versions: Xem phiên bản đã hoàn thành - label_me: tôi - label_board: Diễn đàn - label_board_new: Tạo diễn đàn mới - label_board_plural: Diễn đàn - label_topic_plural: Chủ đề - label_message_plural: Diễn đàn - label_message_last: Bài cuối - label_message_new: Tạo bài mới - label_message_posted: Đã thêm bài viết - label_reply_plural: Hồi âm - label_send_information: Gửi thông tin đến người dùng qua email - label_year: Năm - label_month: Tháng - label_week: Tuần - label_date_from: Từ - label_date_to: Đến - label_language_based: Theo ngôn ngữ người dùng - label_sort_by: "Sắp xếp theo %{value}" - label_send_test_email: Gửi một email kiểm tra - label_feeds_access_key_created_on: "Mã chứng thực Atom được tạo ra cách đây %{value}" - label_module_plural: Module - label_added_time_by: "Thêm bởi %{author} cách đây %{age}" - label_updated_time: "Cập nhật cách đây %{value}" - label_jump_to_a_project: Nhảy đến dự án... - label_file_plural: Tập tin - label_changeset_plural: Thay đổi - label_default_columns: Cột mặc định - label_no_change_option: (không đổi) - label_bulk_edit_selected_issues: Sửa nhiều vấn đề - label_theme: Giao diện - label_default: Mặc định - label_search_titles_only: Chỉ tìm trong tựa đề - label_user_mail_option_all: "Mọi sự kiện trên mọi dự án của tôi" - label_user_mail_option_selected: "Mọi sự kiện trên các dự án được chọn..." - label_user_mail_no_self_notified: "Đừng gửi email về các thay đổi do chính tôi thực hiện" - label_registration_activation_by_email: kích hoạt tài khoản qua email - label_registration_manual_activation: kích hoạt tài khoản thủ công - label_registration_automatic_activation: kích hoạt tài khoản tự động - label_display_per_page: "mỗi trang: %{value}" - label_age: Thời gian - label_change_properties: Thay đổi thuộc tính - label_general: Tổng quan - label_scm: SCM - label_plugins: Module - label_ldap_authentication: Chứng thực LDAP - label_downloads_abbr: Số lượng Download - label_optional_description: Mô tả bổ sung - label_add_another_file: Thêm tập tin khác - label_preferences: Cấu hình - label_chronological_order: Bài cũ xếp trước - label_reverse_chronological_order: Bài mới xếp trước - label_incoming_emails: Nhận mail - label_generate_key: Tạo mã - label_issue_watchers: Theo dõi - - button_login: Đăng nhập - button_submit: Gửi - button_save: Lưu - button_check_all: Đánh dấu tất cả - button_uncheck_all: Bỏ dấu tất cả - button_delete: Xóa - button_create: Tạo - button_test: Kiểm tra - button_edit: Sửa - button_add: Thêm - button_change: Đổi - button_apply: Áp dụng - button_clear: Xóa - button_lock: Khóa - button_unlock: Mở khóa - button_download: Tải về - button_list: Liệt kê - button_view: Xem - button_move: Chuyển - button_back: Quay lại - button_cancel: Bỏ qua - button_activate: Kích hoạt - button_sort: Sắp xếp - button_log_time: Thêm thời gian - button_rollback: Quay trở lại phiên bản này - button_watch: Theo dõi - button_unwatch: Bỏ theo dõi - button_reply: Trả lời - button_archive: Đóng băng - button_unarchive: Xả băng - button_reset: Tạo lại - button_rename: Đổi tên - button_change_password: Đổi mật mã - button_copy: Sao chép - button_annotate: Chú giải - button_update: Cập nhật - button_configure: Cấu hình - button_quote: Trích dẫn - - status_active: Đang hoạt động - status_registered: Mới đăng ký - status_locked: Đã khóa - - text_select_mail_notifications: Chọn hành động đối với mỗi email sẽ gửi. - text_regexp_info: eg. ^[A-Z0-9]+$ - text_min_max_length_info: 0 để chỉ không hạn chế - text_project_destroy_confirmation: Bạn có chắc chắn muốn xóa dự án này và các dữ liệu liên quan ? - text_subprojects_destroy_warning: "Dự án con của : %{value} cũng sẽ bị xóa." - text_workflow_edit: Chọn một vai trò và một vấn đề để sửa quy trình - text_are_you_sure: Bạn chắc chứ? - text_tip_issue_begin_day: ngày bắt đầu - text_tip_issue_end_day: ngày kết thúc - text_tip_issue_begin_end_day: bắt đầu và kết thúc cùng ngày - text_caracters_maximum: "Tối đa %{count} ký tự." - text_caracters_minimum: "Phải gồm ít nhất %{count} ký tự." - text_length_between: "Chiều dài giữa %{min} và %{max} ký tự." - text_tracker_no_workflow: Không có quy trình được định nghĩa cho theo dõi này - text_unallowed_characters: Ký tự không hợp lệ - text_comma_separated: Nhiều giá trị được phép (cách nhau bởi dấu phẩy). - text_issues_ref_in_commit_messages: Vấn đề tham khảo và cố định trong ghi chú commit - text_issue_added: "Vấn đề %{id} đã được báo cáo bởi %{author}." - text_issue_updated: "Vấn đề %{id} đã được cập nhật bởi %{author}." - text_wiki_destroy_confirmation: Bạn có chắc chắn muốn xóa trang wiki này và tất cả nội dung của nó ? - text_issue_category_destroy_question: "Một số vấn đề (%{count}) được gán cho danh mục này. Bạn muốn làm gì ?" - text_issue_category_destroy_assignments: Gỡ bỏ danh mục được phân công - text_issue_category_reassign_to: Gán lại vấn đề cho danh mục này - text_user_mail_option: "Với các dự án không được chọn, bạn chỉ có thể nhận được thông báo về các vấn đề bạn đăng ký theo dõi hoặc có liên quan đến bạn (chẳng hạn, vấn đề được gán cho bạn)." - text_no_configuration_data: "Quyền, theo dõi, tình trạng vấn đề và quy trình chưa được cấu hình.\nBắt buộc phải nạp cấu hình mặc định. Bạn sẽ thay đổi nó được sau khi đã nạp." - text_load_default_configuration: Nạp lại cấu hình mặc định - text_status_changed_by_changeset: "Áp dụng trong changeset : %{value}." - text_issues_destroy_confirmation: 'Bạn có chắc chắn muốn xóa các vấn đề đã chọn ?' - text_select_project_modules: 'Chọn các module cho dự án:' - text_default_administrator_account_changed: Thay đổi tài khoản quản trị mặc định - text_file_repository_writable: Cho phép ghi thư mục đính kèm - text_minimagick_available: Trạng thái MiniMagick - text_destroy_time_entries_question: "Thời gian %{hours} giờ đã báo cáo trong vấn đề bạn định xóa. Bạn muốn làm gì tiếp ?" - text_destroy_time_entries: Xóa thời gian báo cáo - text_assign_time_entries_to_project: Gán thời gian báo cáo cho dự án - text_reassign_time_entries: 'Gán lại thời gian báo cáo cho Vấn đề này:' - text_user_wrote: "%{value} đã viết:" - text_user_wrote_in: "%{value} đã viết (%{link}):" - text_enumeration_destroy_question: "%{count} đối tượng được gán giá trị này." - text_enumeration_category_reassign_to: 'Gán lại giá trị này:' - text_email_delivery_not_configured: "Cấu hình gửi Email chưa được đặt, và chức năng thông báo bị loại bỏ.\nCấu hình máy chủ SMTP của bạn ở file config/configuration.yml và khởi động lại để kích hoạt chúng." - - default_role_manager: 'Điều hành ' - default_role_developer: 'Phát triển ' - default_role_reporter: Báo cáo - default_tracker_bug: Lỗi - default_tracker_feature: Tính năng - default_tracker_support: Hỗ trợ - default_issue_status_new: Mới - default_issue_status_in_progress: Đang tiến hành - default_issue_status_resolved: Đã được giải quyết - default_issue_status_feedback: Phản hồi - default_issue_status_closed: Đã đóng - default_issue_status_rejected: Từ chối - default_doc_category_user: Tài liệu người dùng - default_doc_category_tech: Tài liệu kỹ thuật - default_priority_low: Thấp - default_priority_normal: Bình thường - default_priority_high: Cao - default_priority_urgent: Khẩn cấp - default_priority_immediate: Trung bình - default_activity_design: Thiết kế - default_activity_development: Phát triển - - enumeration_issue_priorities: Mức độ ưu tiên vấn đề - enumeration_doc_categories: Danh mục tài liệu - enumeration_activities: Hoạt động - - setting_plain_text_mail: Mail dạng text đơn giản (không dùng HTML) - setting_gravatar_enabled: Dùng biểu tượng Gravatar - permission_edit_project: Chỉnh dự án - permission_select_project_modules: Chọn Module - permission_manage_members: Quản lý thành viên - permission_manage_versions: Quản lý phiên bản - permission_manage_categories: Quản lý chủ đề - permission_add_issues: Thêm vấn đề - permission_edit_issues: Sửa vấn đề - permission_manage_issue_relations: Quản lý quan hệ vấn đề - permission_add_issue_notes: Thêm chú thích - permission_edit_issue_notes: Sửa chú thích - permission_edit_own_issue_notes: Sửa chú thích cá nhân - permission_delete_issues: Xóa vấn đề - permission_manage_public_queries: Quản lý truy vấn công cộng - permission_save_queries: Lưu truy vấn - permission_view_gantt: Xem biểu đồ sự kiện - permission_view_calendar: Xem lịch - permission_view_issue_watchers: Xem những người theo dõi - permission_add_issue_watchers: Thêm người theo dõi - permission_log_time: Lưu thời gian đã qua - permission_view_time_entries: Xem thời gian đã qua - permission_edit_time_entries: Xem nhật ký thời gian - permission_edit_own_time_entries: Sửa thời gian đã lưu - permission_manage_news: Quản lý tin mới - permission_comment_news: Chú thích vào tin mới - permission_view_documents: Xem tài liệu - permission_manage_files: Quản lý tập tin - permission_view_files: Xem tập tin - permission_manage_wiki: Quản lý wiki - permission_rename_wiki_pages: Đổi tên trang wiki - permission_delete_wiki_pages: Xóa trang wiki - permission_view_wiki_pages: Xem wiki - permission_view_wiki_edits: Xem lược sử trang wiki - permission_edit_wiki_pages: Sửa trang wiki - permission_delete_wiki_pages_attachments: Xóa tệp đính kèm - permission_protect_wiki_pages: Bảo vệ trang wiki - permission_manage_repository: Quản lý kho lưu trữ - permission_browse_repository: Duyệt kho lưu trữ - permission_view_changesets: Xem các thay đổi - permission_commit_access: Truy cập commit - permission_manage_boards: Quản lý diễn đàn - permission_view_messages: Xem bài viết - permission_add_messages: Gửi bài viết - permission_edit_messages: Sửa bài viết - permission_edit_own_messages: Sửa bài viết cá nhân - permission_delete_messages: Xóa bài viết - permission_delete_own_messages: Xóa bài viết cá nhân - label_example: Ví dụ - text_repository_usernames_mapping: "Lựa chọn hoặc cập nhật ánh xạ người dùng hệ thống với người dùng trong kho lưu trữ.\nKhi người dùng trùng hợp về tên và email sẽ được tự động ánh xạ." - permission_delete_own_messages: Xóa thông điệp - label_user_activity: "%{value} hoạt động" - label_updated_time_by: "Cập nhật bởi %{author} cách đây %{age}" - text_diff_truncated: '... Thay đổi này đã được cắt bớt do nó vượt qua giới hạn kích thước có thể hiển thị.' - setting_diff_max_lines_displayed: Số dòng thay đổi tối đa được hiển thị - text_plugin_assets_writable: Cho phép ghi thư mục Plugin - warning_attachments_not_saved: "%{count} file không được lưu." - button_create_and_continue: Tạo và tiếp tục - text_custom_field_possible_values_info: 'Một dòng cho mỗi giá trị' - label_display: Hiển thị - field_editable: Có thể sửa được - setting_repository_log_display_limit: Số lượng tối đa các bản điều chỉnh hiển thị trong file log - setting_file_max_size_displayed: Kích thước tối đa của tệp tin văn bản - field_watcher: Người quan sát - setting_openid: Cho phép đăng nhập và đăng ký dùng OpenID - field_identity_url: OpenID URL - label_login_with_open_id_option: hoặc đăng nhập với OpenID - field_content: Nội dung - label_descending: Giảm dần - label_sort: Sắp xếp - label_ascending: Tăng dần - label_date_from_to: "Từ %{start} tới %{end}" - label_greater_or_equal: ">=" - label_less_or_equal: "<=" - text_wiki_page_destroy_question: "Trang này có %{descendants} trang con và trang cháu. Bạn muốn làm gì tiếp?" - text_wiki_page_reassign_children: Gán lại trang con vào trang mẹ này - text_wiki_page_nullify_children: Giữ trang con như trang gốc - text_wiki_page_destroy_children: Xóa trang con và tất cả trang con cháu của nó - setting_password_min_length: Chiều dài tối thiểu của mật khẩu - field_group_by: Nhóm kết quả bởi - mail_subject_wiki_content_updated: "%{id} trang wiki đã được cập nhật" - label_wiki_content_added: Đã thêm trang Wiki - mail_subject_wiki_content_added: "%{id} trang wiki đã được thêm vào" - mail_body_wiki_content_added: "Có %{id} trang wiki đã được thêm vào bởi %{author}." - label_wiki_content_updated: Trang Wiki đã được cập nhật - mail_body_wiki_content_updated: "Có %{id} trang wiki đã được cập nhật bởi %{author}." - permission_add_project: Tạo dự án - setting_new_project_user_role_id: Quyền được gán cho người dùng không phải quản trị viên khi tạo dự án mới - label_view_all_revisions: Xem tất cả bản điều chỉnh - label_tag: Thẻ - label_branch: Nhánh - error_no_tracker_in_project: Không có ai theo dõi dự án này. Hãy kiểm tra lại phần thiết lập cho dự án. - error_no_default_issue_status: Không có vấn đề mặc định được định nghĩa. Vui lòng kiểm tra cấu hình của bạn (Vào "Quản trị -> Trạng thái vấn đề"). - text_journal_changed: "%{label} thay đổi từ %{old} tới %{new}" - text_journal_set_to: "%{label} gán cho %{value}" - text_journal_deleted: "%{label} xóa (%{old})" - label_group_plural: Các nhóm - label_group: Nhóm - label_group_new: Thêm nhóm - label_time_entry_plural: Thời gian đã sử dụng - text_journal_added: "%{label} %{value} được thêm" - field_active: Tích cực - enumeration_system_activity: Hoạt động hệ thống - permission_delete_issue_watchers: Xóa người quan sát - version_status_closed: đóng - version_status_locked: khóa - version_status_open: mở - error_can_not_reopen_issue_on_closed_version: Một vấn đề được gán cho phiên bản đã đóng không thể mở lại được - label_user_anonymous: Ẩn danh - button_move_and_follow: Di chuyển và theo - setting_default_projects_modules: Các Module được kích hoạt mặc định cho dự án mới - setting_gravatar_default: Ảnh Gravatar mặc định - field_sharing: Chia sẻ - label_version_sharing_hierarchy: Với thứ bậc dự án - label_version_sharing_system: Với tất cả dự án - label_version_sharing_descendants: Với dự án con - label_version_sharing_tree: Với cây dự án - label_version_sharing_none: Không chia sẻ - error_can_not_archive_project: Dựa án này không thể lưu trữ được - button_copy_and_follow: Sao chép và theo - label_copy_source: Nguồn - setting_issue_done_ratio: Tính toán tỷ lệ hoàn thành vấn đề với - setting_issue_done_ratio_issue_status: Sử dụng trạng thái của vấn đề - error_issue_done_ratios_not_updated: Tỷ lệ hoàn thành vấn đề không được cập nhật. - error_workflow_copy_target: Vui lòng lựa chọn đích của theo dấu và quyền - setting_issue_done_ratio_issue_field: Dùng trường vấn đề - label_copy_same_as_target: Tương tự như đích - label_copy_target: Đích - notice_issue_done_ratios_updated: Tỷ lệ hoàn thành vấn đề được cập nhật. - error_workflow_copy_source: Vui lòng lựa chọn nguồn của theo dấu hoặc quyền - label_update_issue_done_ratios: Cập nhật tỷ lệ hoàn thành vấn đề - setting_start_of_week: Định dạng lịch - permission_view_issues: Xem Vấn đề - label_display_used_statuses_only: Chỉ hiển thị trạng thái đã được dùng bởi theo dõi này - label_revision_id: "Bản điều chỉnh %{value}" - label_api_access_key: Khoá truy cập API - label_api_access_key_created_on: "Khoá truy cập API đựơc tạo cách đây %{value}. Khóa này được dùng cho eDesignLab Client." - label_feeds_access_key: Khoá truy cập Atom - notice_api_access_key_reseted: Khoá truy cập API của bạn đã được đặt lại. - setting_rest_api_enabled: Cho phép dịch vụ web REST - label_missing_api_access_key: Mất Khoá truy cập API - label_missing_feeds_access_key: Mất Khoá truy cập Atom - button_show: Hiện - text_line_separated: Nhiều giá trị được phép(mỗi dòng một giá trị). - setting_mail_handler_body_delimiters: "Cắt bớt email sau những dòng :" - permission_add_subprojects: Tạo Dự án con - label_subproject_new: Thêm dự án con - text_own_membership_delete_confirmation: |- - Bạn đang cố gỡ bỏ một số hoặc tất cả quyền của bạn với dự án này và có thể sẽ mất quyền thay đổi nó sau đó. - Bạn có muốn tiếp tục? - label_close_versions: Đóng phiên bản đã hoàn thành - label_board_sticky: Chú ý - label_board_locked: Đã khóa - permission_export_wiki_pages: Xuất trang wiki - setting_cache_formatted_text: Cache định dạng các ký tự - permission_manage_project_activities: Quản lý hoạt động của dự án - error_unable_delete_issue_status: Không thể xóa trạng thái vấn đề (%{value}) - label_profile: Hồ sơ - permission_manage_subtasks: Quản lý tác vụ con - field_parent_issue: Tác vụ cha - label_subtask_plural: Tác vụ con - label_project_copy_notifications: Gửi email thông báo trong khi dự án được sao chép - error_can_not_delete_custom_field: Không thể xóa trường tùy biến - error_unable_to_connect: "Không thể kết nối (%{value})" - error_can_not_remove_role: Quyền này đang được dùng và không thể xóa được. - error_can_not_delete_tracker: Theo dõi này chứa vấn đề và không thể xóa được. - field_principal: Chủ yếu - notice_failed_to_save_members: "Thất bại khi lưu thành viên : %{errors}." - text_zoom_out: Thu nhỏ - text_zoom_in: Phóng to - notice_unable_delete_time_entry: Không thể xóa mục time log. - label_overall_spent_time: Tổng thời gian sử dụng - field_time_entries: Log time - project_module_gantt: Biểu đồ Gantt - project_module_calendar: Lịch - button_edit_associated_wikipage: "Chỉnh sửa trang Wiki liên quan: %{page_title}" - field_text: Trường văn bản - setting_default_notification_option: Tuỳ chọn thông báo mặc định - label_user_mail_option_only_my_events: Chỉ những thứ tôi theo dõi hoặc liên quan - label_user_mail_option_none: Không có sự kiện - field_member_of_group: Nhóm thụ hưởng - field_assigned_to_role: Quyền thụ hưởng - notice_not_authorized_archived_project: Dự án bạn đang có truy cập đã được lưu trữ. - label_principal_search: "Tìm kiếm người dùng hoặc nhóm:" - label_user_search: "Tìm kiếm người dùng:" - field_visible: Nhìn thấy - setting_emails_header: Tiêu đề Email - setting_commit_logtime_activity_id: Cho phép ghi lại thời gian - text_time_logged_by_changeset: "Áp dụng trong changeset : %{value}." - setting_commit_logtime_enabled: Cho phép time logging - notice_gantt_chart_truncated: "Đồ thị đã được cắt bớt bởi vì nó đã vượt qua lượng thông tin tối đa có thể hiển thị :(%{max})" - setting_gantt_items_limit: Lượng thông tin tối đa trên đồ thị gantt - description_selected_columns: Các cột được lựa chọn - field_warn_on_leaving_unsaved: Cảnh báo tôi khi rời một trang có các nội dung chưa lưu - text_warn_on_leaving_unsaved: Trang hiện tại chứa nội dung chưa lưu và sẽ bị mất nếu bạn rời trang này. - label_my_queries: Các truy vấn tùy biến - text_journal_changed_no_detail: "%{label} cập nhật" - label_news_comment_added: Bình luận đã được thêm cho một tin tức - button_expand_all: Mở rộng tất cả - button_collapse_all: Thu gọn tất cả - label_additional_workflow_transitions_for_assignee: Chuyển đổi bổ sung cho phép khi người sử dụng là người nhận chuyển nhượng - label_additional_workflow_transitions_for_author: Các chuyển đổi bổ xung được phép khi người dùng là tác giả - label_bulk_edit_selected_time_entries: Sửa nhiều mục đã chọn - text_time_entries_destroy_confirmation: Bạn có chắc chắn muốn xóa bỏ các mục đã chọn? - label_role_anonymous: Ẩn danh - label_role_non_member: Không là thành viên - label_issue_note_added: Ghi chú được thêm - label_issue_status_updated: Trạng thái cập nhật - label_issue_priority_updated: Cập nhật ưu tiên - label_issues_visibility_own: Vấn đề tạo bởi hoặc gán cho người dùng - field_issues_visibility: Vấn đề được nhìn thấy - label_issues_visibility_all: Tất cả vấn đề - permission_set_own_issues_private: Đặt vấn đề sở hữu là riêng tư hoặc công cộng - field_is_private: Riêng tư - permission_set_issues_private: Gán vấn đề là riêng tư hoặc công cộng - label_issues_visibility_public: Tất cả vấn đề không riêng tư - text_issues_destroy_descendants_confirmation: "Hành động này sẽ xóa %{count} tác vụ con." - field_commit_logs_encoding: Mã hóa ghi chú Commit - field_scm_path_encoding: Mã hóa đường dẫn - text_scm_path_encoding_note: "Mặc định: UTF-8" - field_path_to_repository: Đường dẫn tới kho chứa - field_root_directory: Thư mục gốc - field_cvs_module: Module - field_cvsroot: CVSROOT - text_mercurial_repository_note: Kho chứa cục bộ (vd. /hgrepo, c:\hgrepo) - text_scm_command: Lệnh - text_scm_command_version: Phiên bản - label_git_report_last_commit: Báo cáo lần Commit cuối cùng cho file và thư mục - text_scm_config: Bạn có thể cấu hình lệnh Scm trong file config/configuration.yml. Vui lòng khởi động lại ứng dụng sau khi chỉnh sửa nó. - text_scm_command_not_available: Lệnh Scm không có sẵn. Vui lòng kiểm tra lại thiết đặt trong phần Quản trị. - notice_issue_successful_create: "Vấn đề %{id} đã được tạo." - label_between: Ở giữa - setting_issue_group_assignment: Cho phép gán vấn đề đến các nhóm - label_diff: Sự khác nhau - text_git_repository_note: Kho chứa cục bộ và công cộng (vd. /gitrepo, c:\gitrepo) - description_query_sort_criteria_direction: Chiều sắp xếp - description_project_scope: Phạm vi tìm kiếm - description_filter: Lọc - description_user_mail_notification: Thiết lập email thông báo - description_message_content: Nội dung thông điệp - description_available_columns: Các cột có sẵn - description_issue_category_reassign: Chọn danh mục vấn đề - description_search: Trường tìm kiếm - description_notes: Các chú ý - description_choose_project: Các dự án - description_query_sort_criteria_attribute: Sắp xếp thuộc tính - description_wiki_subpages_reassign: Chọn một trang cấp trên - label_parent_revision: Cha - label_child_revision: Con - error_scm_annotate_big_text_file: Các mục không được chú thích, vì nó vượt quá kích thước tập tin văn bản tối đa. - setting_default_issue_start_date_to_creation_date: Sử dụng thời gian hiện tại khi tạo vấn đề mới - button_edit_section: Soạn thảo sự lựa chọn này - setting_repositories_encodings: Mã hóa kho chứa - description_all_columns: Các cột - button_export: Export - label_export_options: "%{export_format} tùy chọn Export" - error_attachment_too_big: "File này không thể tải lên vì nó vượt quá kích thước cho phép : (%{max_size})" - notice_failed_to_save_time_entries: "Lỗi khi lưu %{count} lần trên %{total} sự lựa chọn : %{ids}." - label_x_issues: - zero: 0 vấn đề - one: 1 vấn đề - other: "%{count} vấn đề" - label_repository_new: Kho lưu trữ mới - field_repository_is_default: Kho lưu trữ chính - label_copy_attachments: Copy các file đính kèm - label_item_position: "%{position}/%{count}" - label_completed_versions: Các phiên bản hoàn thành - text_project_identifier_info: Chỉ cho phép chữ cái thường (a-z), con số và dấu gạch ngang.
    Sau khi lưu, chỉ số ID không thể thay đổi. - field_multiple: Nhiều giá trị - setting_commit_cross_project_ref: Sử dụng thời gian hiện tại khi tạo vấn đề mới - text_issue_conflict_resolution_add_notes: Thêm ghi chú của tôi và loại bỏ các thay đổi khác - text_issue_conflict_resolution_overwrite: Áp dụng thay đổi bằng bất cứ giá nào, ghi chú trước đó có thể bị ghi đè - notice_issue_update_conflict: Vấn đề này đã được cập nhật bởi một người dùng khác trong khi bạn đang chỉnh sửa nó. - text_issue_conflict_resolution_cancel: "Loại bỏ tất cả các thay đổi và hiển thị lại %{link}" - permission_manage_related_issues: Quản lý các vấn đề liên quan - field_auth_source_ldap_filter: Bộ lọc LDAP - label_search_for_watchers: Tìm kiếm người theo dõi để thêm - notice_account_deleted: Tài khoản của bạn đã được xóa vĩnh viễn. - button_delete_my_account: Xóa tài khoản của tôi - setting_unsubscribe: Cho phép người dùng xóa Account - text_account_destroy_confirmation: |- - Bạn đồng ý không ? - Tài khoản của bạn sẽ bị xóa vĩnh viễn, không thể khôi phục lại! - error_session_expired: Phiên làm việc của bạn bị quá hạn, hãy đăng nhập lại - text_session_expiration_settings: "Chú ý : Thay đổi các thiết lập này có thể gây vô hiệu hóa Session hiện tại" - setting_session_lifetime: Thời gian tồn tại lớn nhất của Session - setting_session_timeout: Thời gian vô hiệu hóa Session - label_session_expiration: Phiên làm việc bị quá hạn - permission_close_project: Đóng / Mở lại dự án - button_close: Đóng - button_reopen: Mở lại - project_status_active: Kích hoạt - project_status_closed: Đã đóng - project_status_archived: Lưu trữ - text_project_closed: Dự án này đã đóng và chỉ đọc - notice_user_successful_create: "Người dùng %{id} đã được tạo." - field_core_fields: Các trường tiêu chuẩn - field_timeout: Quá hạn - setting_thumbnails_enabled: Hiển thị các thumbnail đính kèm - setting_thumbnails_size: Kích thước Thumbnails(pixel) - setting_session_lifetime: Thời gian tồn tại lớn nhất của Session - setting_session_timeout: Thời gian vô hiệu hóa Session - label_status_transitions: Trạng thái chuyển tiếp - label_fields_permissions: Cho phép các trường - label_readonly: Chỉ đọc - label_required: Yêu cầu - text_repository_identifier_info: Chỉ có các chữ thường (a-z), các số (0-9), dấu gạch ngang và gạch dưới là hợp lệ.
    Khi đã lưu, tên định danh sẽ không thể thay đổi. - field_board_parent: Diễn đàn cha - label_attribute_of_project: "Của dự án : %{name}" - label_attribute_of_author: "Của tác giả : %{name}" - label_attribute_of_assigned_to: "Được phân công bởi %{name}" - label_attribute_of_fixed_version: "Phiên bản mục tiêu của %{name}" - label_copy_subtasks: Sao chép các nhiệm vụ con - label_copied_to: Sao chép đến - label_copied_from: Sao chép từ - label_any_issues_in_project: Bất kỳ vấn đề nào trong dự án - label_any_issues_not_in_project: Bất kỳ vấn đề nào không thuộc dự án - field_private_notes: Ghi chú riêng tư - permission_view_private_notes: Xem ghi chú riêng tư - permission_set_notes_private: Đặt ghi chú thành riêng tư - label_no_issues_in_project: Không có vấn đề nào trong dự án - label_any: tất cả - label_last_n_weeks: "%{count} tuần qua" - setting_cross_project_subtasks: Cho phép các nhiệm vụ con liên dự án - label_cross_project_descendants: Trong các dự án con - label_cross_project_tree: Trong cùng cây dự án - label_cross_project_hierarchy: Trong dự án cùng cấp bậc - label_cross_project_system: Trong tất cả các dự án - button_hide: Ẩn - setting_non_working_week_days: Các ngày không làm việc - label_in_the_next_days: Trong tương lai - label_in_the_past_days: Trong quá khứ - label_attribute_of_user: "Của người dùng %{name}" - text_turning_multiple_off: Nếu bạn vô hiệu hóa nhiều giá trị, chúng sẽ bị loại bỏ để duy trì chỉ có một giá trị cho mỗi mục. - label_attribute_of_issue: "Vấn đề của %{name}" - permission_add_documents: Thêm tài liệu - permission_edit_documents: Soạn thảo tài liệu - permission_delete_documents: Xóa tài liệu - label_gantt_progress_line: Tiến độ - setting_jsonp_enabled: Cho phép trợ giúp JSONP - field_inherit_members: Các thành viên kế thừa - field_closed_on: Đã đóng - field_generate_password: Generate password - setting_default_projects_tracker_ids: Default trackers for new projects - label_total_time: Tổng cộng - notice_account_not_activated_yet: You haven't activated your account yet. If you want - to receive a new activation email, please click this link. - notice_account_locked: Your account is locked. - label_hidden: Hidden - label_visibility_private: to me only - label_visibility_roles: to these roles only - label_visibility_public: to any users - field_must_change_passwd: Must change password at next logon - notice_new_password_must_be_different: The new password must be different from the - current password - setting_mail_handler_excluded_filenames: Exclude attachments by name - text_convert_available: ImageMagick convert available (optional) - label_link: Link - label_only: only - label_drop_down_list: drop-down list - label_checkboxes: checkboxes - label_link_values_to: Link values to URL - setting_force_default_language_for_anonymous: Force default language for anonymous - users - setting_force_default_language_for_loggedin: Force default language for logged-in - users - label_custom_field_select_type: Select the type of object to which the custom field - is to be attached - label_issue_assigned_to_updated: Assignee updated - label_check_for_updates: Check for updates - label_latest_compatible_version: Latest compatible version - label_unknown_plugin: Unknown plugin - label_radio_buttons: radio buttons - label_group_anonymous: Anonymous users - label_group_non_member: Non member users - label_add_projects: Add projects - field_default_status: Default status - text_subversion_repository_note: 'Examples: file:///, http://, https://, svn://, svn+[tunnelscheme]://' - field_users_visibility: Users visibility - label_users_visibility_all: All active users - label_users_visibility_members_of_visible_projects: Members of visible projects - label_edit_attachments: Edit attached files - setting_link_copied_issue: Link issues on copy - label_link_copied_issue: Link copied issue - label_ask: Ask - label_search_attachments_yes: Search attachment filenames and descriptions - label_search_attachments_no: Do not search attachments - label_search_attachments_only: Search attachments only - label_search_open_issues_only: Open issues only - field_address: Email - setting_max_additional_emails: Maximum number of additional email addresses - label_email_address_plural: Emails - label_email_address_add: Add email address - label_enable_notifications: Enable notifications - label_disable_notifications: Disable notifications - setting_search_results_per_page: Search results per page - label_blank_value: blank - permission_copy_issues: Copy issues - error_password_expired: Your password has expired or the administrator requires you - to change it. - field_time_entries_visibility: Time logs visibility - setting_password_max_age: Require password change after - label_parent_task_attributes: Parent tasks attributes - label_parent_task_attributes_derived: Calculated from subtasks - label_parent_task_attributes_independent: Independent of subtasks - label_time_entries_visibility_all: All time entries - label_time_entries_visibility_own: Time entries created by the user - label_member_management: Member management - label_member_management_all_roles: All roles - label_member_management_selected_roles_only: Only these roles - label_password_required: Confirm your password to continue - label_total_spent_time: Tổng thời gian sử dụng - notice_import_finished: "%{count} items have been imported" - notice_import_finished_with_errors: "%{count} out of %{total} items could not be imported" - error_invalid_file_encoding: The file is not a valid %{encoding} encoded file - error_invalid_csv_file_or_settings: The file is not a CSV file or does not match the - settings below - error_can_not_read_import_file: An error occurred while reading the file to import - permission_import_issues: Import issues - label_import_issues: Import issues - label_select_file_to_import: Select the file to import - label_fields_separator: Field separator - label_fields_wrapper: Field wrapper - label_encoding: Encoding - label_comma_char: Comma - label_semi_colon_char: Semicolon - label_quote_char: Quote - label_double_quote_char: Double quote - label_fields_mapping: Fields mapping - label_file_content_preview: File content preview - label_create_missing_values: Create missing values - button_import: Import - field_total_estimated_hours: Total estimated time - label_api: API - label_total_plural: Totals - label_assigned_issues: Assigned issues - label_field_format_enumeration: Key/value list - label_f_hour_short: '%{value} h' - field_default_version: Default version - error_attachment_extension_not_allowed: Attachment extension %{extension} is not allowed - setting_attachment_extensions_allowed: Allowed extensions - setting_attachment_extensions_denied: Disallowed extensions - label_any_open_issues: any open issues - label_no_open_issues: no open issues - label_default_values_for_new_users: Default values for new users - error_ldap_bind_credentials: Invalid LDAP Account/Password - setting_sys_api_key: Mã số API - setting_lost_password: Phục hồi mật mã - mail_subject_security_notification: Security notification - mail_body_security_notification_change: ! '%{field} was changed.' - mail_body_security_notification_change_to: ! '%{field} was changed to %{value}.' - mail_body_security_notification_add: ! '%{field} %{value} was added.' - mail_body_security_notification_remove: ! '%{field} %{value} was removed.' - mail_body_security_notification_notify_enabled: Email address %{value} now receives - notifications. - mail_body_security_notification_notify_disabled: Email address %{value} no longer - receives notifications. - mail_body_settings_updated: ! 'The following settings were changed:' - field_remote_ip: IP address - label_wiki_page_new: New wiki page - label_relations: Relations - button_filter: Filter - mail_body_password_updated: Your password has been changed. - label_no_preview: No preview available - error_no_tracker_allowed_for_new_issue_in_project: The project doesn't have any trackers - for which you can create an issue - label_tracker_all: All trackers - label_new_project_issue_tab_enabled: Display the "New issue" tab - setting_new_item_menu_tab: Project menu tab for creating new objects - label_new_object_tab_enabled: Display the "+" drop-down - error_no_projects_with_tracker_allowed_for_new_issue: There are no projects with trackers - for which you can create an issue - field_textarea_font: Font used for text areas - label_font_default: Default font - label_font_monospace: Monospaced font - label_font_proportional: Proportional font - setting_timespan_format: Time span format - label_table_of_contents: Table of contents - setting_commit_logs_formatting: Apply text formatting to commit messages - setting_mail_handler_enable_regex: Enable regular expressions - error_move_of_child_not_possible: 'Subtask %{child} could not be moved to the new - project: %{errors}' - error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted: Spent time cannot - be reassigned to an issue that is about to be deleted - setting_timelog_required_fields: Required fields for time logs - label_attribute_of_object: '%{object_name}''s %{name}' - label_user_mail_option_only_assigned: Only for things I watch or I am assigned to - label_user_mail_option_only_owner: Only for things I watch or I am the owner of - warning_fields_cleared_on_bulk_edit: Changes will result in the automatic deletion - of values from one or more fields on the selected objects - field_updated_by: Updated by - field_last_updated_by: Last updated by - field_full_width_layout: Full width layout - label_last_notes: Last notes - field_digest: Checksum - field_default_assigned_to: Default assignee - setting_show_custom_fields_on_registration: Show custom fields on registration - permission_view_news: View news - label_no_preview_alternative_html: No preview available. %{link} the file instead. - label_no_preview_download: Download - setting_close_duplicate_issues: Close duplicate issues automatically - error_exceeds_maximum_hours_per_day: Cannot log more than %{max_hours} hours on the - same day (%{logged_hours} hours have already been logged) - setting_time_entry_list_defaults: Timelog list defaults - setting_timelog_accept_0_hours: Accept time logs with 0 hours - setting_timelog_max_hours_per_day: Maximum hours that can be logged per day and user - label_x_revisions: "%{count} revisions" - error_can_not_delete_auth_source: This authentication mode is in use and cannot be - deleted. - button_actions: Actions - mail_body_lost_password_validity: Please be aware that you may change the password - only once using this link. - text_login_required_html: When not requiring authentication, public projects and their - contents are openly available on the network. You can edit - the applicable permissions. - label_login_required_yes: 'Yes' - label_login_required_no: No, allow anonymous access to public projects - text_project_is_public_non_member: Public projects and their contents are available - to all logged-in users. - text_project_is_public_anonymous: Public projects and their contents are openly available - on the network. - label_version_and_files: Versions (%{count}) and Files - label_ldap: LDAP - label_ldaps_verify_none: LDAPS (without certificate check) - label_ldaps_verify_peer: LDAPS - label_ldaps_warning: It is recommended to use an encrypted LDAPS connection with certificate - check to prevent any manipulation during the authentication process. - label_nothing_to_preview: Nothing to preview - error_token_expired: This password recovery link has expired, please try again. - error_spent_on_future_date: Cannot log time on a future date - setting_timelog_accept_future_dates: Accept time logs on future dates - label_delete_link_to_subtask: Xóa quan hệ - error_not_allowed_to_log_time_for_other_users: You are not allowed to log time - for other users - permission_log_time_for_other_users: Log spent time for other users - label_tomorrow: tomorrow - label_next_week: next week - label_next_month: next month - text_role_no_workflow: No workflow defined for this role - text_status_no_workflow: No tracker uses this status in the workflows - setting_mail_handler_preferred_body_part: Preferred part of multipart (HTML) emails - setting_show_status_changes_in_mail_subject: Show status changes in issue mail notifications - subject - label_inherited_from_parent_project: Inherited from parent project - label_inherited_from_group: Inherited from group %{name} - label_trackers_description: Trackers description - label_open_trackers_description: View all trackers description - label_preferred_body_part_text: Text - label_preferred_body_part_html: HTML (experimental) - field_parent_issue_subject: Parent task subject - permission_edit_own_issues: Edit own issues - text_select_apply_tracker: Select tracker - label_updated_issues: Updated issues - text_avatar_server_config_html: The current avatar server is %{url}. - You can configure it in config/configuration.yml. - setting_gantt_months_limit: Maximum number of months displayed on the gantt chart - permission_import_time_entries: Import time entries - label_import_notifications: Send email notifications during the import - text_gs_available: ImageMagick PDF support available (optional) - field_recently_used_projects: Number of recently used projects in jump box - label_optgroup_bookmarks: Bookmarks - label_optgroup_others: Other projects - label_optgroup_recents: Recently used - button_project_bookmark: Add bookmark - button_project_bookmark_delete: Remove bookmark - field_history_default_tab: Issue's history default tab - label_issue_history_properties: Property changes - label_issue_history_notes: Notes - label_last_tab_visited: Last visited tab - field_unique_id: Unique ID - text_no_subject: no subject - setting_password_required_char_classes: Required character classes for passwords - label_password_char_class_uppercase: uppercase letters - label_password_char_class_lowercase: lowercase letters - label_password_char_class_digits: digits - label_password_char_class_special_chars: special characters - text_characters_must_contain: Must contain %{character_classes}. - label_starts_with: starts with - label_ends_with: ends with - label_issue_fixed_version_updated: Target version updated - setting_project_list_defaults: Projects list defaults - label_display_type: Display results as - label_display_type_list: List - label_display_type_board: Board - label_my_bookmarks: My bookmarks - label_import_time_entries: Import time entries diff --git a/config/locales/zh-TW.yml b/config/locales/zh-TW.yml deleted file mode 100644 index bfd859b..0000000 --- a/config/locales/zh-TW.yml +++ /dev/null @@ -1,1371 +0,0 @@ -# Chinese (Taiwan) translations for Ruby on Rails -# by tsechingho (http://github.com/tsechingho) -# See http://github.com/svenfuchs/rails-i18n/ for details. - -"zh-TW": - direction: ltr - jquery: - locale: "zh-TW" - date: - formats: - # Use the strftime parameters for formats. - # When no format has been given, it uses default. - # You can provide other formats here if you like! - default: "%Y-%m-%d" - short: "%b%d日" - long: "%Y年%b%d日" - - day_names: [星期日, 星期一, 星期二, 星期三, 星期四, 星期五, 星期六] - abbr_day_names: [日, 一, 二, 三, 四, 五, 六] - - # Don't forget the nil at the beginning; there's no such thing as a 0th month - month_names: [~, 一月, 二月, 三月, 四月, 五月, 六月, 七月, 八月, 九月, 十月, 十一月, 十二月] - abbr_month_names: [~, 1月, 2月, 3月, 4月, 5月, 6月, 7月, 8月, 9月, 10月, 11月, 12月] - # 使用於 date_select 與 datime_select. - order: - - :year - - :month - - :day - - time: - formats: - default: "%Y年%b%d日 %A %H:%M:%S %Z" - time: "%H:%M" - short: "%b%d日 %H:%M" - long: "%Y年%b%d日 %H:%M" - am: "AM" - pm: "PM" - -# 使用於 array.to_sentence. - support: - array: - words_connector: ", " - two_words_connector: " 和 " - last_word_connector: ", 和 " - sentence_connector: "且" - skip_last_comma: false - - number: - # 使用於 number_with_delimiter() - # 同時也是 'currency', 'percentage', 'precision', 與 'human' 的預設值 - format: - # 設定小數點分隔字元,以使用更高的準確度 (例如: 1.0 / 2.0 == 0.5) - separator: "." - # 千分位符號 (例如:一百萬是 1,000,000) (均以三個位數來分組) - delimiter: "," - # 小數點分隔字元後之精確位數 (數字 1 搭配 2 位精確位數為: 1.00) - precision: 3 - - # 使用於 number_to_currency() - currency: - format: - # 貨幣符號的位置? %u 是貨幣符號, %n 是數值 (預設值: $5.00) - format: "%u%n" - unit: "NT$" - # 下列三個選項設定, 若有設定值將會取代 number.format 成為預設值 - separator: "." - delimiter: "," - precision: 2 - - # 使用於 number_to_percentage() - percentage: - format: - # 下列三個選項設定, 若有設定值將會取代 number.format 成為預設值 - # separator: - delimiter: "" - # precision: - - # 使用於 number_to_precision() - precision: - format: - # 下列三個選項設定, 若有設定值將會取代 number.format 成為預設值 - # separator: - delimiter: "" - # precision: - - # 使用於 number_to_human_size() - human: - format: - # 下列三個選項設定, 若有設定值將會取代 number.format 成為預設值 - # separator: - delimiter: "" - precision: 3 - # 儲存單位輸出格式. - # %u 是儲存單位, %n 是數值 (預設值: 2 MB) - storage_units: - format: "%n %u" - units: - byte: - one: "位元組 (B)" - other: "位元組 (B)" - kb: "KB" - mb: "MB" - gb: "GB" - tb: "TB" - - # 使用於 distance_of_time_in_words(), distance_of_time_in_words_to_now(), time_ago_in_words() - datetime: - distance_in_words: - half_a_minute: "半分鐘" - less_than_x_seconds: - one: "小於 1 秒" - other: "小於 %{count} 秒" - x_seconds: - one: "1 秒" - other: "%{count} 秒" - less_than_x_minutes: - one: "小於 1 分鐘" - other: "小於 %{count} 分鐘" - x_minutes: - one: "1 分鐘" - other: "%{count} 分鐘" - about_x_hours: - one: "約 1 小時" - other: "約 %{count} 小時" - x_hours: - one: "1 小時" - other: "%{count} 小時" - x_days: - one: "1 天" - other: "%{count} 天" - about_x_months: - one: "約 1 個月" - other: "約 %{count} 個月" - x_months: - one: "1 個月" - other: "%{count} 個月" - about_x_years: - one: "約 1 年" - other: "約 %{count} 年" - over_x_years: - one: "超過 1 年" - other: "超過 %{count} 年" - almost_x_years: - one: "將近 1 年" - other: "將近 %{count} 年" - prompts: - year: "年" - month: "月" - day: "日" - hour: "時" - minute: "分" - second: "秒" - - activerecord: - errors: - template: - header: - one: "有 1 個錯誤發生使得「%{model}」無法被儲存。" - other: "有 %{count} 個錯誤發生使得「%{model}」無法被儲存。" - # The variable :count is also available - body: "下面所列欄位有問題:" - # The values :model, :attribute and :value are always available for interpolation - # The value :count is available when applicable. Can be used for pluralization. - messages: - inclusion: "沒有包含在列表中" - exclusion: "是被保留的" - invalid: "是無效的" - confirmation: "不符合確認值" - accepted: "必须是可被接受的" - empty: "不能留空" - blank: "不能是空白字元" - too_long: "過長(最長是 %{count} 個字)" - too_short: "過短(最短是 %{count} 個字)" - wrong_length: "字數錯誤(必須是 %{count} 個字)" - taken: "已經被使用" - not_a_number: "不是數字" - greater_than: "必須大於 %{count}" - greater_than_or_equal_to: "必須大於或等於 %{count}" - equal_to: "必須等於 %{count}" - less_than: "必須小於 %{count}" - less_than_or_equal_to: "必須小於或等於 %{count}" - odd: "必須是奇數" - even: "必須是偶數" - # Append your own errors here or at the model/attributes scope. - greater_than_start_date: "必須在開始日期之後" - not_same_project: "不屬於同一個專案" - circular_dependency: "這個關聯會導致環狀相依" - cant_link_an_issue_with_a_descendant: "議題無法被連結至自己的子任務" - earlier_than_minimum_start_date: "不能早於 %{date} 因為有前置議題" - not_a_regexp: "is not a valid regular expression" - open_issue_with_closed_parent: "An open issue cannot be attached to a closed parent task" - must_contain_uppercase: "must contain uppercase letters (A-Z)" - must_contain_lowercase: "must contain lowercase letters (a-z)" - must_contain_digits: "must contain digits (0-9)" - must_contain_special_chars: "must contain special characters (!, $, %, ...)" - - # You can define own errors for models or model attributes. - # The values :model, :attribute and :value are always available for interpolation. - # - # For example, - # models: - # user: - # blank: "This is a custom blank message for %{model}: %{attribute}" - # attributes: - # login: - # blank: "This is a custom blank message for User login" - # Will define custom blank validation message for User model and - # custom blank validation message for login attribute of User model. - #models: - - # Translate model names. Used in Model.human_name(). - #models: - # For example, - # user: "Dude" - # will translate User model name to "Dude" - - # Translate model attribute names. Used in Model.human_attribute_name(attribute). - #attributes: - # For example, - # user: - # login: "Handle" - # will translate User attribute "login" as "Handle" - - actionview_instancetag_blank_option: 請選擇 - - general_text_No: '否' - general_text_Yes: '是' - general_text_no: '否' - general_text_yes: '是' - general_lang_name: 'Chinese/Traditional (繁體中文)' - general_csv_separator: ',' - general_csv_decimal_separator: '.' - general_csv_encoding: Big5 - general_pdf_fontname: msungstdlight - general_pdf_monospaced_fontname: msungstdlight - general_first_day_of_week: '7' - - notice_account_updated: 帳戶更新資訊已儲存 - notice_account_invalid_credentials: 帳戶或密碼不正確 - notice_account_password_updated: 帳戶新密碼已儲存 - notice_account_wrong_password: 密碼不正確 - notice_account_register_done: 帳號已建立成功。欲啟用您的帳號,請點擊系統確認信函中的啟用連結。 - notice_account_unknown_email: 未知的使用者 - notice_account_not_activated_yet: 您尚未完成啟用您的帳號。若您要索取新的帳號啟用 Email ,請 點擊此連結 。 - notice_account_locked: 您的帳號已被鎖定。 - notice_can_t_change_password: 這個帳號使用外部驗證方式,無法變更其密碼。 - notice_account_lost_email_sent: 包含選擇新密碼指示的電子郵件,已經寄出給您。 - notice_account_activated: 您的帳號已經啟用,可用它登入系統。 - notice_successful_create: 建立成功 - notice_successful_update: 更新成功 - notice_successful_delete: 刪除成功 - notice_successful_connection: 連線成功 - notice_file_not_found: 您想要存取的頁面已經不存在或被搬移至其他位置。 - notice_locking_conflict: 資料已被其他使用者更新。 - notice_not_authorized: 你未被授權存取此頁面。 - notice_not_authorized_archived_project: 您欲存取的專案已經被封存。 - notice_email_sent: "郵件已經成功寄送至以下收件者: %{value}" - notice_email_error: "寄送郵件的過程中發生錯誤 (%{value})" - notice_feeds_access_key_reseted: 您的 Atom 存取金鑰已被重新設定。 - notice_api_access_key_reseted: 您的 API 存取金鑰已被重新設定。 - notice_failed_to_save_issues: "無法儲存 %{count} 議題到下列所選取的 %{total} 個項目中: %{ids}。" - notice_failed_to_save_time_entries: "無法儲存 %{count} 個工時到下列所選取的 %{total} 個項目中: %{ids}。" - notice_failed_to_save_members: "成員儲存失敗: %{errors}." - notice_no_issue_selected: "未選擇任何議題!請勾選您想要編輯的議題。" - notice_account_pending: "您的帳號已經建立,正在等待管理員的審核。" - notice_default_data_loaded: 預設組態已載入成功。 - notice_unable_delete_version: 無法刪除版本。 - notice_unable_delete_time_entry: 無法刪除工時記錄項目。 - notice_issue_done_ratios_updated: 議題完成百分比已更新。 - notice_gantt_chart_truncated: "由於項目數量超過可顯示數量的最大值 (%{max}),故此甘特圖尾部已被截斷" - notice_issue_successful_create: "議題 %{id} 已建立。" - notice_issue_update_conflict: "當您正在編輯這個議題的時候,它已經被其他人搶先一步更新過。" - notice_account_deleted: "您的帳戶已被永久刪除。" - notice_user_successful_create: "已建立用戶 %{id}。" - notice_new_password_must_be_different: 新舊密碼必須相異 - notice_import_finished: "已成功匯入所有的項目共 %{count} 個" - notice_import_finished_with_errors: "無法匯入 %{count} 個項目 (全部共 %{total} 個)" - - error_can_t_load_default_data: "無法載入預設組態: %{value}" - error_scm_not_found: "在儲存機制中找不到這個項目或修訂版。" - error_scm_command_failed: "嘗試存取儲存機制時發生錯誤: %{value}" - error_scm_annotate: "項目不存在或項目無法被加上附註。" - error_scm_annotate_big_text_file: 此項目無法被標註,因為它已經超過最大的文字檔大小。 - error_issue_not_found_in_project: '該議題不存在或不屬於此專案' - error_no_tracker_in_project: '此專案尚未指定追蹤標籤。請檢查專案的設定資訊。' - error_no_default_issue_status: '尚未定義議題狀態的預設值。請您前往「網站管理」->「議題狀態清單」頁面,檢查相關組態設定。' - error_can_not_delete_custom_field: 無法刪除自訂欄位 - error_can_not_delete_tracker: "此追蹤標籤已包含議題,無法被刪除。" - error_can_not_remove_role: "此角色已被使用,無法將其刪除。" - error_can_not_reopen_issue_on_closed_version: '分派給「已結束」版本的議題,無法再將其狀態變更為「進行中」' - error_can_not_archive_project: 此專案無法被封存 - error_issue_done_ratios_not_updated: "議題完成百分比未更新。" - error_workflow_copy_source: '請選擇一個來源議題追蹤標籤或角色' - error_workflow_copy_target: '請選擇一個(或多個)目的議題追蹤標籤或角色' - error_unable_delete_issue_status: '無法刪除議題狀態 (%{value})' - error_unable_to_connect: "無法連線至(%{value})" - error_attachment_too_big: "這個檔案無法被上傳,因為它已經超過最大的檔案大小 (%{max_size})" - error_session_expired: "您的工作階段已經過期。請重新登入。" - warning_attachments_not_saved: "%{count} 個附加檔案無法被儲存。" - error_password_expired: "您的密碼已經過期或是管理員要求您變更密碼." - error_invalid_file_encoding: "這個檔案不是一個有效的 %{encoding} 編碼檔案" - error_invalid_csv_file_or_settings: "這個檔案不是一個 CSV 檔案,或是未符合下面所列之設定值" - error_can_not_read_import_file: "讀取匯入檔案時發生錯誤" - error_attachment_extension_not_allowed: "附件之附檔名不允許使用 %{extension}" - error_ldap_bind_credentials: "無效的 LDAP 帳號/密碼" - error_no_tracker_allowed_for_new_issue_in_project: "此專案沒有您可用來建立新議題的追蹤標籤" - error_no_projects_with_tracker_allowed_for_new_issue: "此追蹤標籤沒有您可用來建立新議題的專案" - error_move_of_child_not_possible: "子任務 %{child} 無法被搬移至新的專案: %{errors}" - error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted: "無法將耗用工時重新分配給即將被刪除的問題" - warning_fields_cleared_on_bulk_edit: "選取物件的變更將導致一個或多個欄位之內容值被自動刪除" - error_exceeds_maximum_hours_per_day: "工時記錄單日不能超過 %{max_hours} 小時 (目前已登錄 %{logged_hours} 小時)" - - mail_subject_lost_password: 您的 Redmine 網站密碼 - mail_body_lost_password: '欲變更您的 Redmine 網站密碼, 請點選以下鏈結:' - mail_subject_register: 啟用您的 Redmine 帳號 - mail_body_register: '欲啟用您的 Redmine 帳號, 請點選以下鏈結:' - mail_body_account_information_external: "您可以使用 %{value} 帳號登入 Redmine 網站。" - mail_body_account_information: 您的 Redmine 帳號資訊 - mail_subject_account_activation_request: Redmine 帳號啟用需求通知 - mail_body_account_activation_request: "有位新用戶 (%{value}) 已經完成註冊,正等候您的審核:" - mail_subject_reminder: "您有 %{count} 個議題即將到期 (%{days})" - mail_body_reminder: "%{count} 個分派給您的議題,將於 %{days} 天之內到期:" - mail_subject_wiki_content_added: "'%{id}' wiki 頁面已被新增" - mail_body_wiki_content_added: "此 '%{id}' wiki 頁面已被 %{author} 新增。" - mail_subject_wiki_content_updated: "'%{id}' wiki 頁面已被更新" - mail_body_wiki_content_updated: "此 '%{id}' wiki 頁面已被 %{author} 更新。" - mail_subject_security_notification: "安全性通知" - mail_body_security_notification_change: "%{field} 已變更。" - mail_body_security_notification_change_to: "%{field} 已變更為 %{value}。" - mail_body_security_notification_add: "%{field} %{value} 已新增。" - mail_body_security_notification_remove: "%{field} %{value} 已移除。" - mail_body_security_notification_notify_enabled: "電子郵件地址 %{value} 已開始接收通知。" - mail_body_security_notification_notify_disabled: "電子郵件地址 %{value} 已不再接收通知。" - mail_body_settings_updated: "下列設定已變更:" - mail_body_password_updated: "您的密碼已變更。" - - field_name: 名稱 - field_description: 概述 - field_summary: 摘要 - field_is_required: 必填 - field_firstname: 名字 - field_lastname: 姓氏 - field_mail: 電子郵件 - field_address: 電子郵件地址 - field_filename: 檔案名稱 - field_filesize: 大小 - field_downloads: 下載次數 - field_author: 作者 - field_created_on: 建立日期 - field_updated_on: 更新日期 - field_closed_on: 結束日期 - field_field_format: 格式 - field_is_for_all: 給全部的專案 - field_possible_values: 可能值 - field_regexp: 正規表示式 - field_min_length: 最小長度 - field_max_length: 最大長度 - field_value: 值 - field_category: 分類 - field_title: 標題 - field_project: 專案 - field_issue: 議題 - field_status: 狀態 - field_notes: 筆記 - field_is_closed: 議題已結束 - field_is_default: 預設值 - field_tracker: 追蹤標籤 - field_subject: 主旨 - field_due_date: 完成日期 - field_assigned_to: 被分派者 - field_priority: 優先權 - field_fixed_version: 版本 - field_user: 用戶 - field_principal: 原則 - field_role: 角色 - field_homepage: 網站首頁 - field_is_public: 公開 - field_parent: 父專案 - field_is_in_roadmap: 議題顯示於版本藍圖中 - field_login: 帳戶名稱 - field_mail_notification: 電子郵件提醒選項 - field_admin: 管理者 - field_last_login_on: 最近連線日期 - field_language: 語言 - field_effective_date: 日期 - field_password: 目前密碼 - field_new_password: 新密碼 - field_password_confirmation: 確認新密碼 - field_version: 版本 - field_type: Type - field_host: Host - field_port: 連接埠 - field_account: 帳戶 - field_base_dn: Base DN - field_attr_login: 登入屬性 - field_attr_firstname: 名字屬性 - field_attr_lastname: 姓氏屬性 - field_attr_mail: 電子郵件信箱屬性 - field_onthefly: 即時建立使用者 - field_start_date: 開始日期 - field_done_ratio: 完成百分比 - field_auth_source: 驗證模式 - field_hide_mail: 隱藏我的電子郵件 - field_comments: 回應 - field_url: 網址 - field_start_page: 首頁 - field_subproject: 子專案 - field_hours: 小時 - field_activity: 活動 - field_spent_on: 日期 - field_identifier: 代碼 - field_is_filter: 用來作為篩選器 - field_issue_to: 相關議題 - field_delay: 逾期 - field_assignable: 議題可被分派至此角色 - field_redirect_existing_links: 重新導向現有連結 - field_estimated_hours: 預估工時 - field_column_names: 欄位 - field_time_entries: 耗用工時 - field_time_zone: 時區 - field_searchable: 可用做搜尋條件 - field_default_value: 預設值 - field_comments_sorting: 回應排序 - field_parent_title: 父頁面 - field_editable: 可編輯 - field_watcher: 觀察者 - field_identity_url: OpenID 網址 - field_content: 內容 - field_group_by: 結果分組方式 - field_sharing: 共用 - field_parent_issue: 父議題 - field_member_of_group: "被分派者的群組" - field_assigned_to_role: "被分派者的角色" - field_text: 內容文字 - field_visible: 可被看見 - field_warn_on_leaving_unsaved: "提醒我將要離開的頁面中尚有未儲存的資料" - field_issues_visibility: 議題可見度 - field_is_private: 私人 - field_commit_logs_encoding: 認可訊息編碼 - field_scm_path_encoding: 路徑編碼 - field_path_to_repository: 儲存機制路徑 - field_root_directory: 根資料夾 - field_cvsroot: CVSROOT - field_cvs_module: 模組 - field_repository_is_default: 主要儲存機制 - field_multiple: 多重值 - field_auth_source_ldap_filter: LDAP 篩選器 - field_core_fields: 標準欄位 - field_timeout: "逾時 (單位: 秒)" - field_board_parent: 父論壇 - field_private_notes: 私人筆記 - field_inherit_members: 繼承父專案成員 - field_generate_password: 產生密碼 - field_must_change_passwd: 必須在下次登入時變更密碼 - field_default_status: 預設狀態 - field_users_visibility: 用戶可見度 - field_time_entries_visibility: 工時紀錄可見度 - field_total_estimated_hours: 預估工時總計 - field_default_version: 預設版本 - field_remote_ip: IP 位址 - field_textarea_font: 文字區域使用的字型 - field_updated_by: 更新者 - field_last_updated_by: 上次更新者 - field_full_width_layout: 全寬度式版面配置 - field_digest: 總和檢查碼 - field_default_assigned_to: 預設被分派者 - - setting_app_title: 標題 - setting_welcome_text: 歡迎詞 - setting_default_language: 預設語言 - setting_login_required: 需要驗證 - setting_self_registration: 註冊選項 - setting_show_custom_fields_on_registration: 註冊時顯示自訂欄位 - setting_attachment_max_size: 附件大小限制 - setting_issues_export_limit: 議題匯出限制 - setting_mail_from: 寄件者電子郵件 - setting_bcc_recipients: 使用密件副本 (BCC) - setting_plain_text_mail: 純文字郵件 (不含 HTML) - setting_host_name: 主機名稱 - setting_text_formatting: 文字格式 - setting_wiki_compression: 壓縮 Wiki 歷史文章 - setting_feeds_limit: Atom 新聞限制 - setting_autofetch_changesets: 自動擷取認可 - setting_default_projects_public: 新建立之專案預設為「公開」 - setting_sys_api_enabled: 啟用管理儲存機制的網頁服務 (Web Service) - setting_commit_ref_keywords: 認可用於參照之關鍵字 - setting_commit_fix_keywords: 認可用於修正之關鍵字 - setting_autologin: 自動登入 - setting_date_format: 日期格式 - setting_time_format: 時間格式 - setting_timespan_format: 時間範圍格式 - setting_cross_project_issue_relations: 允許關聯至其它專案的議題 - setting_cross_project_subtasks: 允許跨專案的子任務 - setting_issue_list_default_columns: 預設顯示於議題清單的欄位 - setting_repositories_encodings: 附加檔案與儲存機制的編碼 - setting_emails_header: 電子郵件前頭說明 - setting_emails_footer: 電子郵件附帶說明 - setting_protocol: 協定 - setting_per_page_options: 每頁顯示個數選項 - setting_user_format: 用戶顯示格式 - setting_activity_days_default: 專案活動顯示天數 - setting_display_subprojects_issues: 預設於父專案中顯示子專案的議題 - setting_enabled_scm: 啟用的 SCM - setting_mail_handler_body_delimiters: "截去郵件中包含下列值之後的內容" - setting_mail_handler_enable_regex: "啟用規則運算式" - setting_mail_handler_api_enabled: 啟用處理傳入電子郵件的服務 - setting_mail_handler_api_key: 傳入電子郵件網頁服務 API 金鑰 - setting_sys_api_key: 儲存機制管理網頁服務 API 金鑰 - setting_sequential_project_identifiers: 循序產生專案識別碼 - setting_gravatar_enabled: 啟用 Gravatar 全球認證大頭像 - setting_gravatar_default: 預設全球認證大頭像圖片 - setting_diff_max_lines_displayed: 差異顯示行數之最大值 - setting_file_max_size_displayed: 檔案內容顯示大小之最大值 - setting_repository_log_display_limit: 修訂版顯示數目之最大值 - setting_openid: 允許使用 OpenID 登入與註冊 - setting_password_max_age: 必須在多少天後變更密碼 - setting_password_min_length: 密碼最小長度 - setting_lost_password: 允許使用電子郵件重新設定密碼 - setting_new_project_user_role_id: 管理者以外之用戶建立新專案時,將被分派的角色 - setting_default_projects_modules: 新專案預設啟用的模組 - setting_issue_done_ratio: 計算議題完成百分比之方式 - setting_issue_done_ratio_issue_field: 依據議題完成百分比欄位 - setting_issue_done_ratio_issue_status: 依據議題狀態 - setting_start_of_week: 週的第一天 - setting_rest_api_enabled: 啟用 REST 網路服務技術(Web Service) - setting_cache_formatted_text: 快取已格式化文字 - setting_default_notification_option: 預設通知選項 - setting_commit_logtime_enabled: 啟用認可中的時間記錄 - setting_commit_logtime_activity_id: 時間記錄對應的活動 - setting_gantt_items_limit: 甘特圖中項目顯示數量的最大值 - setting_issue_group_assignment: 允許議題被分派至群組 - setting_default_issue_start_date_to_creation_date: 設定新議題的起始日期為今天的日期 - setting_commit_cross_project_ref: 允許關聯並修正其他專案的議題 - setting_unsubscribe: 允許用戶取消註冊(刪除帳戶) - setting_session_lifetime: 工作階段存留時間最大值 - setting_session_timeout: 工作階段無活動逾時時間 - setting_thumbnails_enabled: 顯示附加檔案的縮圖 - setting_thumbnails_size: "縮圖大小 (單位: 像素 pixels)" - setting_non_working_week_days: 非工作日 - setting_jsonp_enabled: 啟用 JSONP 支援 - setting_default_projects_tracker_ids: 新專案預設使用的追蹤標籤 - setting_mail_handler_excluded_filenames: 移除符合下列名稱的附件 - setting_force_default_language_for_anonymous: 強迫匿名用戶使用預設語言 - setting_force_default_language_for_loggedin: 強迫已登入用戶使用預設語言 - setting_link_copied_issue: 複製時連結議題 - setting_max_additional_emails: 其他電子郵件地址的最大值 - setting_search_results_per_page: 每一頁的搜尋結果數目 - setting_attachment_extensions_allowed: 允許使用的附檔名 - setting_attachment_extensions_denied: 禁止使用的副檔名 - setting_new_item_menu_tab: 建立新物件的專案功能分頁 - setting_commit_logs_formatting: 套用文字格式至認可訊息 - setting_timelog_required_fields: 工時記錄必填欄位 - setting_close_duplicate_issues: 自動結束重複的議題 - setting_time_entry_list_defaults: 工時記錄清單預設值 - setting_timelog_accept_0_hours: 允許工時為 0 的工時記錄 - setting_timelog_max_hours_per_day: 單一用戶每日工時之最大值 - - permission_add_project: 建立專案 - permission_add_subprojects: 建立子專案 - permission_edit_project: 編輯專案 - permission_close_project: 關閉 / 重新開啟專案 - permission_select_project_modules: 選擇專案模組 - permission_manage_members: 管理成員 - permission_manage_project_activities: 管理專案活動 - permission_manage_versions: 管理版本 - permission_manage_categories: 管理議題分類 - permission_view_issues: 檢視議題 - permission_add_issues: 新增議題 - permission_edit_issues: 編輯議題 - permission_copy_issues: 複製議題 - permission_manage_issue_relations: 管理議題關聯 - permission_set_issues_private: 設定議題為公開或私人 - permission_set_own_issues_private: 設定自己的議題為公開或私人 - permission_add_issue_notes: 新增筆記 - permission_edit_issue_notes: 編輯筆記 - permission_edit_own_issue_notes: 編輯自己的筆記 - permission_view_private_notes: 檢視私人筆記 - permission_set_notes_private: 設定筆記為私人筆記 - permission_delete_issues: 刪除議題 - permission_manage_public_queries: 管理公開查詢 - permission_save_queries: 儲存查詢 - permission_view_gantt: 檢視甘特圖 - permission_view_calendar: 檢視日曆 - permission_view_issue_watchers: 檢視監看者清單 - permission_add_issue_watchers: 新增監看者 - permission_delete_issue_watchers: 刪除監看者 - permission_log_time: 紀錄耗用工時 - permission_view_time_entries: 檢視耗用工時 - permission_edit_time_entries: 編輯工時紀錄 - permission_edit_own_time_entries: 編輯自己的工時記錄 - permission_view_news: 檢視新聞 - permission_manage_news: 管理新聞 - permission_comment_news: 回應新聞 - permission_view_documents: 檢視文件 - permission_add_documents: 新增文件 - permission_edit_documents: 編輯文件 - permission_delete_documents: 刪除文件 - permission_manage_files: 管理檔案 - permission_view_files: 檢視檔案 - permission_manage_wiki: 管理 wiki - permission_rename_wiki_pages: 重新命名 wiki 頁面 - permission_delete_wiki_pages: 刪除 wiki 頁面 - permission_view_wiki_pages: 檢視 wiki - permission_view_wiki_edits: 檢視 wiki 歷史 - permission_edit_wiki_pages: 編輯 wiki 頁面 - permission_delete_wiki_pages_attachments: 刪除附件 - permission_protect_wiki_pages: 專案 wiki 頁面 - permission_manage_repository: 管理儲存機制 - permission_browse_repository: 瀏覽儲存機制 - permission_view_changesets: 檢視變更集 - permission_commit_access: 存取認可 - permission_manage_boards: 管理討論版 - permission_view_messages: 檢視訊息 - permission_add_messages: 新增訊息 - permission_edit_messages: 編輯訊息 - permission_edit_own_messages: 編輯自己的訊息 - permission_delete_messages: 刪除訊息 - permission_delete_own_messages: 刪除自己的訊息 - permission_export_wiki_pages: 匯出 wiki 頁面 - permission_manage_subtasks: 管理子任務 - permission_manage_related_issues: 管理相關議題 - permission_import_issues: 匯入議題 - - project_module_issue_tracking: 議題追蹤 - project_module_time_tracking: 工時追蹤 - project_module_news: 新聞 - project_module_documents: 文件 - project_module_files: 檔案 - project_module_wiki: Wiki - project_module_repository: 版本控管 - project_module_boards: 討論區 - project_module_calendar: 日曆 - project_module_gantt: 甘特圖 - - label_user: 用戶 - label_user_plural: 用戶清單 - label_user_new: 建立新用戶 - label_user_anonymous: 匿名用戶 - label_project: 專案 - label_project_new: 建立新專案 - label_project_plural: 專案清單 - label_x_projects: - zero: 無專案 - one: 1 個專案 - other: "%{count} 個專案" - label_project_all: 全部的專案 - label_project_latest: 最近的專案 - label_issue: 議題 - label_issue_new: 建立新議題 - label_issue_plural: 議題清單 - label_issue_view_all: 檢視所有議題 - label_issues_by: "議題按 %{value} 分組顯示" - label_issue_added: 議題已新增 - label_issue_updated: 議題已更新 - label_issue_note_added: 筆記已新增 - label_issue_status_updated: 狀態已更新 - label_issue_assigned_to_updated: 被分派者已更新 - label_issue_priority_updated: 優先權已更新 - label_document: 文件 - label_document_new: 建立新文件 - label_document_plural: 文件 - label_document_added: 文件已新增 - label_role: 角色 - label_role_plural: 角色 - label_role_new: 建立新角色 - label_role_and_permissions: 角色與權限 - label_role_anonymous: 匿名者 - label_role_non_member: 非會員 - label_member: 成員 - label_member_new: 建立新成員 - label_member_plural: 成員 - label_tracker: 追蹤標籤 - label_tracker_plural: 追蹤標籤清單 - label_tracker_all: 所有的追蹤標籤 - label_tracker_new: 建立新的追蹤標籤 - label_workflow: 流程 - label_issue_status: 議題狀態 - label_issue_status_plural: 議題狀態清單 - label_issue_status_new: 建立新狀態 - label_issue_category: 議題分類 - label_issue_category_plural: 議題分類清單 - label_issue_category_new: 建立新分類 - label_custom_field: 自訂欄位 - label_custom_field_plural: 自訂欄位清單 - label_custom_field_new: 建立新自訂欄位 - label_enumerations: 列舉值清單 - label_enumeration_new: 建立新列舉值 - label_information: 資訊 - label_information_plural: 資訊 - label_register: 註冊 - label_login_with_open_id_option: 或使用 OpenID 登入 - label_password_lost: 遺失密碼 - label_password_required: 確認您的密碼後繼續 - label_home: 網站首頁 - label_my_page: 帳戶首頁 - label_my_account: 我的帳戶 - label_my_projects: 我的專案 - label_administration: 網站管理 - label_login: 登入 - label_logout: 登出 - label_help: 說明 - label_reported_issues: 我通報的議題 - label_assigned_issues: 我被分派的議題 - label_assigned_to_me_issues: 分派給我的議題 - label_last_login: 最近一次連線 - label_registered_on: 註冊於 - label_activity: 活動 - label_overall_activity: 整體活動 - label_user_activity: "%{value} 的活動" - label_new: 建立新的... - label_logged_as: 目前登入 - label_environment: 環境 - label_authentication: 驗證 - label_auth_source: 驗證模式 - label_auth_source_new: 建立新驗證模式 - label_auth_source_plural: 驗證模式清單 - label_subproject_plural: 子專案 - label_subproject_new: 建立子專案 - label_and_its_subprojects: "%{value} 與其子專案" - label_min_max_length: 最小 - 最大 長度 - label_list: 清單 - label_date: 日期 - label_integer: 整數 - label_float: 浮點數 - label_boolean: 布林 - label_string: 文字 - label_text: 長文字 - label_attribute: 屬性 - label_attribute_plural: 屬性 - label_no_data: 沒有任何資料可供顯示 - label_no_preview: 無法預覽 - label_no_preview_alternative_html: 無法預覽. 請改為使用 %{link} 此檔案. - label_no_preview_download: 下載 - label_change_status: 變更狀態 - label_history: 歷史 - label_attachment: 檔案 - label_attachment_new: 建立新檔案 - label_attachment_delete: 刪除檔案 - label_attachment_plural: 檔案 - label_file_added: 檔案已新增 - label_report: 報告 - label_report_plural: 報告 - label_news: 新聞 - label_news_new: 建立新聞 - label_news_plural: 新聞 - label_news_latest: 最近新聞 - label_news_view_all: 檢視全部的新聞 - label_news_added: 新聞已新增 - label_news_comment_added: 回應已加入新聞 - label_settings: 設定 - label_overview: 概觀 - label_version: 版本 - label_version_new: 建立新版本 - label_version_plural: 版本 - label_close_versions: 結束已完成的版本 - label_confirmation: 確認 - label_export_to: 匯出至 - label_read: 讀取... - label_public_projects: 公開專案 - label_open_issues: 進行中 - label_open_issues_plural: 進行中 - label_closed_issues: 已結束 - label_closed_issues_plural: 已結束 - label_x_open_issues_abbr: - zero: 0 進行中 - one: 1 進行中 - other: "%{count} 進行中" - label_x_closed_issues_abbr: - zero: 0 已結束 - one: 1 已結束 - other: "%{count} 已結束" - label_x_issues: - zero: 0 個議題 - one: 1 個議題 - other: "%{count} 個議題" - label_total: 總計 - label_total_plural: 總計 - label_total_time: 工時總計 - label_permissions: 權限 - label_current_status: 目前狀態 - label_new_statuses_allowed: 可變更至以下狀態 - label_all: 全部 - label_any: 任意一個 - label_none: 空值 - label_nobody: 無名 - label_next: 下一頁 - label_previous: 上一頁 - label_used_by: 已使用專案 - label_details: 明細 - label_add_note: 加入一個新筆記 - label_calendar: 日曆 - label_months_from: 個月, 開始月份 - label_gantt: 甘特圖 - label_internal: 內部 - label_last_changes: "最近 %{count} 個變更" - label_change_view_all: 檢視全部的變更 - label_comment: 回應 - label_comment_plural: 回應 - label_x_comments: - zero: 無回應 - one: 1 個回應 - other: "%{count} 個回應" - label_comment_add: 加入新回應 - label_comment_added: 新回應已加入 - label_comment_delete: 刪除回應 - label_query: 自訂查詢 - label_query_plural: 自訂查詢 - label_query_new: 建立新查詢 - label_my_queries: 我的自訂查詢 - label_filter_add: 加入新篩選條件 - label_filter_plural: 篩選條件 - label_equals: 等於 - label_not_equals: 不等於 - label_in_less_than: 在小於 - label_in_more_than: 在大於 - label_in_the_next_days: 在未來幾天之內 - label_in_the_past_days: 在過去幾天之內 - label_greater_or_equal: "大於等於 (>=)" - label_less_or_equal: "小於等於 (<=)" - label_between: 區間 - label_in: 在 - label_today: 今天 - label_yesterday: 昨天 - label_this_week: 本週 - label_last_week: 上週 - label_last_n_weeks: "過去 %{count} 週" - label_last_n_days: "過去 %{count} 天" - label_this_month: 這個月 - label_last_month: 上個月 - label_this_year: 今年 - label_date_range: 日期區間 - label_less_than_ago: 小於幾天之前 - label_more_than_ago: 大於幾天之前 - label_ago: 天以前 - label_contains: 包含 - label_not_contains: 不包含 - label_any_issues_in_project: 在專案中的任意議題 - label_any_issues_not_in_project: 不在專案中的任意議題 - label_no_issues_in_project: 沒有議題在專案中 - label_any_open_issues: 任意進行中之議題 - label_no_open_issues: 任意非進行中之議題 - label_day_plural: 天 - label_repository: 儲存機制 - label_repository_new: 建立新儲存機制 - label_repository_plural: 儲存機制清單 - label_browse: 瀏覽 - label_branch: 分支 - label_tag: 標籤 - label_revision: 修訂版 - label_revision_plural: 修訂版清單 - label_revision_id: "修訂版 %{value}" - label_associated_revisions: 關聯的修訂版 - label_added: 已新增 - label_modified: 已修改 - label_copied: 已複製 - label_renamed: 已重新命名 - label_deleted: 已刪除 - label_latest_revision: 最新的修訂版 - label_latest_revision_plural: 最新的修訂版清單 - label_view_revisions: 檢視修訂版清單 - label_view_all_revisions: 檢視所有的的修訂版清單 - label_x_revisions: "%{count} 個修訂版" - label_max_size: 最大長度 - label_sort_highest: 移動至開頭 - label_sort_higher: 往上移動 - label_sort_lower: 往下移動 - label_sort_lowest: 移動至結尾 - label_roadmap: 版本藍圖 - label_roadmap_due_in: "剩餘 %{value}" - label_roadmap_overdue: "逾期 %{value}" - label_roadmap_no_issues: 此版本尚未包含任何議題 - label_search: 搜尋 - label_result_plural: 結果 - label_all_words: 包含全部的字詞 - label_wiki: Wiki - label_wiki_edit: Wiki 編輯 - label_wiki_edit_plural: Wiki 編輯 - label_wiki_page: Wiki 網頁 - label_wiki_page_plural: Wiki 網頁 - label_wiki_page_new: 新增 Wiki 頁面 - label_index_by_title: 依標題索引 - label_index_by_date: 依日期索引 - label_current_version: 現行版本 - label_preview: 預覽 - label_feed_plural: Feeds - label_changes_details: 所有變更的明細 - label_issue_tracking: 議題追蹤 - label_spent_time: 耗用工時 - label_total_spent_time: 耗用工時總計 - label_overall_spent_time: 整體耗用工時 - label_f_hour: "%{value} 小時" - label_f_hour_plural: "%{value} 小時" - label_f_hour_short: "%{value} 小時" - label_time_tracking: 工時追蹤 - label_change_plural: 變更 - label_statistics: 統計資訊 - label_commits_per_month: 依月份統計認可 - label_commits_per_author: 依作者統計認可 - label_view_diff: 檢視差異 - label_diff: 差異 - label_diff_inline: 直列 - label_diff_side_by_side: 並排 - label_options: 選項清單 - label_copy_workflow_from: 從以下追蹤標籤複製工作流程 - label_permissions_report: 權限報表 - label_watched_issues: 監看中的議題清單 - label_related_issues: 相關的議題清單 - label_applied_status: 已套用狀態 - label_loading: 載入中... - label_relation_new: 建立新關聯 - label_relation_delete: 刪除關聯 - label_relates_to: 關聯至 - label_duplicates: 已重複 - label_duplicated_by: 與後面所列議題重複 - label_blocks: 阻擋 - label_blocked_by: 被阻擋 - label_precedes: 優先於 - label_follows: 跟隨於 - label_copied_to: 複製到 - label_copied_from: 複製於 - label_stay_logged_in: 維持已登入狀態 - label_disabled: 關閉 - label_show_completed_versions: 顯示已完成的版本 - label_me: 我自己 - label_board: 論壇 - label_board_new: 建立新論壇 - label_board_plural: 論壇 - label_board_locked: 鎖定 - label_board_sticky: 置頂 - label_topic_plural: 討論主題 - label_message_plural: 訊息 - label_message_last: 上一封訊息 - label_message_new: 建立新訊息 - label_message_posted: 訊息已新增 - label_reply_plural: 回應 - label_send_information: 寄送帳戶資訊電子郵件給用戶 - label_year: 年 - label_month: 月 - label_week: 週 - label_date_from: 開始 - label_date_to: 結束 - label_language_based: 依用戶之語言決定 - label_sort_by: "按 %{value} 排序" - label_send_test_email: 寄送測試郵件 - label_feeds_access_key: Atom 存取金鑰 - label_missing_feeds_access_key: 找不到 Atom 存取金鑰 - label_feeds_access_key_created_on: "Atom 存取鍵建立於 %{value} 之前" - label_module_plural: 模組 - label_added_time_by: "是由 %{author} 於 %{age} 前加入" - label_updated_time_by: "是由 %{author} 於 %{age} 前更新" - label_updated_time: "於 %{value} 前更新" - label_jump_to_a_project: 選擇欲前往的專案... - label_file_plural: 檔案清單 - label_changeset_plural: 變更集清單 - label_default_columns: 預設欄位清單 - label_no_change_option: (維持不變) - label_bulk_edit_selected_issues: 大量編輯選取的議題 - label_bulk_edit_selected_time_entries: 大量編輯選取的工時項目 - label_theme: 畫面主題 - label_default: 預設 - label_search_titles_only: 僅搜尋標題 - label_user_mail_option_all: "提醒與我的專案有關的全部事件" - label_user_mail_option_selected: "只提醒我所選擇專案中的事件..." - label_user_mail_option_none: "取消提醒" - label_user_mail_option_only_my_events: "只提醒我觀察中或參與中的事物" - label_user_mail_option_only_assigned: "只提醒我觀察中或分派給我的事物" - label_user_mail_option_only_owner: "只提醒我觀察中或擁有者為我的事物" - label_user_mail_no_self_notified: "不提醒我自己所做的變更" - label_registration_activation_by_email: 透過電子郵件啟用帳戶 - label_registration_manual_activation: 手動啟用帳戶 - label_registration_automatic_activation: 自動啟用帳戶 - label_display_per_page: "每頁顯示: %{value} 個" - label_age: 年齡 - label_change_properties: 變更屬性 - label_general: 一般 - label_scm: 版本控管 - label_plugins: 外掛程式 - label_ldap_authentication: LDAP 驗證 - label_downloads_abbr: 下載 - label_optional_description: 額外的說明 - label_add_another_file: 增加其他檔案 - label_preferences: 偏好選項 - label_chronological_order: 以時間由遠至近排序 - label_reverse_chronological_order: 以時間由近至遠排序 - label_incoming_emails: 傳入的電子郵件 - label_generate_key: 產生金鑰 - label_issue_watchers: 監看者 - label_example: 範例 - label_display: 顯示 - label_sort: 排序 - label_ascending: 遞增排序 - label_descending: 遞減排序 - label_date_from_to: 起 %{start} 迄 %{end} - label_wiki_content_added: Wiki 頁面已新增 - label_wiki_content_updated: Wiki 頁面已更新 - label_group: 群組 - label_group_plural: 群組清單 - label_group_new: 建立新群組 - label_group_anonymous: 匿名用戶 - label_group_non_member: 非成員用戶 - label_time_entry_plural: 耗用工時 - label_version_sharing_none: 不共用 - label_version_sharing_descendants: 與子專案共用 - label_version_sharing_hierarchy: 與專案階層架構共用 - label_version_sharing_tree: 與專案樹共用 - label_version_sharing_system: 與全部的專案共用 - label_update_issue_done_ratios: 更新議題完成百分比 - label_copy_source: 來源 - label_copy_target: 目的地 - label_copy_same_as_target: 與目的地相同 - label_display_used_statuses_only: 僅顯示此追蹤標籤所使用之狀態 - label_api_access_key: API 存取金鑰 - label_missing_api_access_key: 找不到 API 存取金鑰 - label_api_access_key_created_on: "API 存取金鑰建立於 %{value} 之前" - label_profile: 配置概況 - label_subtask_plural: 子任務 - label_project_copy_notifications: 在複製專案的過程中,傳送通知郵件 - label_principal_search: "搜尋用戶或群組:" - label_user_search: "搜尋用戶:" - label_additional_workflow_transitions_for_author: 用戶為作者時額外允許的流程轉換 - label_additional_workflow_transitions_for_assignee: 用戶為被分派者時額外允許的流程轉換 - label_issues_visibility_all: 所有議題 - label_issues_visibility_public: 所有非私人議題 - label_issues_visibility_own: 使用者所建立的或被分派的議題 - label_git_report_last_commit: 報告最後認可的文件和目錄 - label_parent_revision: 父項 - label_child_revision: 子項 - label_export_options: "%{export_format} 匯出選項" - label_copy_attachments: 複製附件 - label_copy_subtasks: 複製子任務 - label_item_position: "%{position} / %{count}" - label_completed_versions: 已完成版本 - label_search_for_watchers: 搜尋可供加入的監看者 - label_session_expiration: 工作階段逾期 - label_status_transitions: 狀態轉換 - label_fields_permissions: 欄位權限 - label_readonly: 唯讀 - label_required: 必填 - label_hidden: 隱藏 - label_attribute_of_project: "專案的 %{name}" - label_attribute_of_issue: "議題的 %{name}" - label_attribute_of_author: "作者的 %{name}" - label_attribute_of_assigned_to: "被分派者的 %{name}" - label_attribute_of_user: "用戶的 %{name}" - label_attribute_of_fixed_version: "版本的 %{name}" - label_attribute_of_object: "%{object_name}的 %{name}" - label_cross_project_descendants: 與子專案共用 - label_cross_project_tree: 與專案樹共用 - label_cross_project_hierarchy: 與專案階層架構共用 - label_cross_project_system: 與全部的專案共用 - label_gantt_progress_line: 進度線 - label_visibility_private: 僅我自己可見 - label_visibility_roles: 僅選取之角色可見 - label_visibility_public: 任何用戶均可見 - label_link: 連結 - label_only: 僅於 - label_drop_down_list: 下拉式清單 - label_checkboxes: 核取方塊 - label_radio_buttons: 選項按鈕 - label_link_values_to: 連結欄位值至此網址 - label_custom_field_select_type: 請選擇連結此自訂欄位的物件類型 - label_check_for_updates: 檢查更新 - label_latest_compatible_version: 最新的相容版本 - label_unknown_plugin: 無法辨識的外掛程式 - label_add_projects: 加入專案 - label_users_visibility_all: 所有活動中的用戶 - label_users_visibility_members_of_visible_projects: 可見專案中的成員 - label_edit_attachments: 編輯附加檔案 - label_link_copied_issue: 連結到被複製的議題 - label_ask: 詢問 - label_search_attachments_yes: 搜尋附加檔案的檔案名稱與說明 - label_search_attachments_no: 不搜尋附加檔案 - label_search_attachments_only: 僅搜尋附加檔案 - label_search_open_issues_only: 僅搜尋進行中的議題 - label_email_address_plural: 電子郵件 - label_email_address_add: 新增電子郵件地址 - label_enable_notifications: 啟用通知 - label_disable_notifications: 停用通知 - label_blank_value: 空白 - label_parent_task_attributes: 父議題屬性 - label_parent_task_attributes_derived: 從子任務計算導出 - label_parent_task_attributes_independent: 與子任務無關 - label_time_entries_visibility_all: 所有工時紀錄 - label_time_entries_visibility_own: 用戶自己建立的工時紀錄 - label_member_management: 成員管理 - label_member_management_all_roles: 所有角色 - label_member_management_selected_roles_only: 僅限下列角色 - label_import_issues: 匯入議題 - label_select_file_to_import: 選取要匯入的檔案 - label_fields_separator: 欄位分隔符號 - label_fields_wrapper: 欄位包裝識別符號 - label_encoding: 編碼 - label_comma_char: 逗號(,) - label_semi_colon_char: 分號(;) - label_quote_char: 引號(') - label_double_quote_char: 雙引號(") - label_fields_mapping: 欄位對應 - label_file_content_preview: 檔案內容預覽 - label_create_missing_values: 建立缺少的數值 - label_api: API - label_field_format_enumeration: 鍵/值 清單 - label_default_values_for_new_users: 新用戶使用之預設值 - label_relations: 關聯 - label_new_project_issue_tab_enabled: 顯示「建立新議題」標籤頁面 - label_new_object_tab_enabled: 顯示 "+" 下拉功能表 - label_table_of_contents: 目錄 - label_font_default: 預設字型 - label_font_monospace: 等寬字型 - label_font_proportional: 調和間距字型 - label_last_notes: 最後一則筆記 - - button_login: 登入 - button_submit: 送出 - button_save: 儲存 - button_check_all: 全選 - button_uncheck_all: 全不選 - button_collapse_all: 全部摺疊 - button_expand_all: 全部展開 - button_delete: 刪除 - button_create: 建立 - button_create_and_continue: 繼續建立 - button_test: 測試 - button_edit: 編輯 - button_edit_associated_wikipage: "編輯相關 Wiki 頁面: %{page_title}" - button_add: 新增 - button_change: 修改 - button_apply: 套用 - button_clear: 清除 - button_lock: 鎖定 - button_unlock: 解除鎖定 - button_download: 下載 - button_list: 清單 - button_view: 檢視 - button_move: 移動 - button_move_and_follow: 移動後跟隨 - button_back: 返回 - button_cancel: 取消 - button_activate: 啟用 - button_sort: 排序 - button_log_time: 記錄時間 - button_rollback: 還原至此版本 - button_watch: 觀察 - button_unwatch: 取消觀察 - button_reply: 回應 - button_archive: 封存 - button_unarchive: 取消封存 - button_reset: 回復 - button_rename: 重新命名 - button_change_password: 變更密碼 - button_copy: 複製 - button_copy_and_follow: 複製後跟隨 - button_annotate: 註解 - button_update: 更新 - button_configure: 設定 - button_quote: 引用 - button_show: 顯示 - button_hide: 隱藏 - button_edit_section: 編輯此區塊 - button_export: 匯出 - button_delete_my_account: 刪除我的帳戶 - button_close: 關閉 - button_reopen: 重新開啟 - button_import: 匯入 - button_filter: 篩選器 - - status_active: 活動中 - status_registered: 註冊完成 - status_locked: 鎖定中 - - project_status_active: 使用中 - project_status_closed: 已關閉 - project_status_archived: 已封存 - - version_status_open: 進行中 - version_status_locked: 已鎖定 - version_status_closed: 已結束 - - field_active: 活動中 - - text_select_mail_notifications: 選擇欲寄送提醒通知郵件之動作 - text_regexp_info: eg. ^[A-Z0-9]+$ - text_min_max_length_info: 0 代表「不限制」 - text_project_destroy_confirmation: 您確定要刪除這個專案和其他相關資料? - text_subprojects_destroy_warning: "下列子專案: %{value} 將一併被刪除。" - text_workflow_edit: 選擇角色與追蹤標籤以設定其工作流程 - text_are_you_sure: 確定執行? - text_journal_changed: "%{label} 從 %{old} 變更為 %{new}" - text_journal_changed_no_detail: "%{label} 已更新" - text_journal_set_to: "%{label} 設定為 %{value}" - text_journal_deleted: "%{label} 已刪除 (%{old})" - text_journal_added: "%{label} %{value} 已新增" - text_tip_issue_begin_day: 今天起始的議題 - text_tip_issue_end_day: 今天截止的的議題 - text_tip_issue_begin_end_day: 今天起始與截止的議題 - text_project_identifier_info: '僅允許使用小寫英文字母 (a-z), 阿拉伯數字, 虛線與底線。
    一旦儲存之後, 代碼便無法再次被更改。' - text_caracters_maximum: "最多 %{count} 個字元." - text_caracters_minimum: "長度必須大於 %{count} 個字元." - text_length_between: "長度必須介於 %{min} 至 %{max} 個字元之間." - text_tracker_no_workflow: 此追蹤標籤尚未定義工作流程 - text_unallowed_characters: 不允許的字元 - text_comma_separated: 可輸入多個值(須以逗號分隔)。 - text_line_separated: 可輸入多個值(須以換行符號分隔,即每列只能輸入一個值)。 - text_issues_ref_in_commit_messages: 認可訊息中參照(或修正)議題之關鍵字 - text_issue_added: "議題 %{id} 已被 %{author} 通報。" - text_issue_updated: "議題 %{id} 已被 %{author} 更新。" - text_wiki_destroy_confirmation: 您確定要刪除這個 wiki 和其中的所有內容? - text_issue_category_destroy_question: "有 (%{count}) 個議題被分派到此分類. 請選擇您想要的動作?" - text_issue_category_destroy_assignments: 移除這些議題的分類 - text_issue_category_reassign_to: 重新分派這些議題至其它分類 - text_user_mail_option: "對於那些未被選擇的專案,將只會接收到您正在觀察中,或是參與中的議題通知。(「參與中的議題」包含您建立的或是分派給您的議題)" - text_no_configuration_data: "角色、追蹤標籤、議題狀態與流程尚未被設定完成。\n強烈建議您先載入預設的組態。將預設組態載入之後,您可再變更其中之值。" - text_load_default_configuration: 載入預設組態 - text_status_changed_by_changeset: "已套用至變更集 %{value}." - text_time_logged_by_changeset: "紀錄於變更集 %{value}." - text_issues_destroy_confirmation: '確定刪除已選擇的議題?' - text_issues_destroy_descendants_confirmation: "這麼做將會一併刪除 %{count} 子任務。" - text_time_entries_destroy_confirmation: 您確定要刪除所選擇的工時紀錄? - text_select_project_modules: '選擇此專案可使用之模組:' - text_default_administrator_account_changed: 已變更預設管理員帳號內容 - text_file_repository_writable: 可寫入附加檔案目錄 - text_plugin_assets_writable: 可寫入外掛程式目錄 - text_minimagick_available: 可使用 MiniMagick (選配) - text_convert_available: 可使用 ImageMagick 轉換圖片格式 (選配) - text_destroy_time_entries_question: 您即將刪除的議題已報工 %{hours} 小時. 您的選擇是? - text_destroy_time_entries: 刪除已報工的時數 - text_assign_time_entries_to_project: 指定已報工的時數至專案中 - text_reassign_time_entries: '重新指定已報工的時數至此議題:' - text_user_wrote: "%{value} 先前提到:" - text_user_wrote_in: "%{value} 先前在 %{link} 中提到:" - text_enumeration_destroy_question: "目前有 %{count} 個物件使用此列舉值。" - text_enumeration_category_reassign_to: '重新設定其列舉值為:' - text_email_delivery_not_configured: "您尚未設定電子郵件傳送方式,因此提醒選項已被停用。\n請在 config/configuration.yml 中設定 SMTP 之後,重新啟動 Redmine,以啟用電子郵件提醒選項。" - text_repository_usernames_mapping: "選擇或更新 Redmine 使用者與儲存機制紀錄使用者之對應關係。\n儲存機制中之使用者帳號或電子郵件信箱,與 Redmine 設定相同者,將自動產生對應關係。" - text_diff_truncated: '... 這份差異已被截短以符合顯示行數之最大值' - text_custom_field_possible_values_info: '一列輸入一個值' - text_wiki_page_destroy_question: "此頁面包含 %{descendants} 個子頁面及延伸頁面。 請選擇您想要的動作?" - text_wiki_page_nullify_children: "保留所有子頁面當作根頁面" - text_wiki_page_destroy_children: "刪除所有子頁面及其延伸頁面" - text_wiki_page_reassign_children: "重新指定所有的子頁面之父頁面至此頁面" - text_own_membership_delete_confirmation: "您在專案中,所擁有的部分或全部權限即將被移除,在這之後可能無法再次編輯此專案。\n您確定要繼續執行這個動作?" - text_zoom_in: 放大 - text_zoom_out: 縮小 - text_warn_on_leaving_unsaved: "若您離開這個頁面,此頁面所包含的未儲存資料將會遺失。" - text_scm_path_encoding_note: "預設: UTF-8" - text_subversion_repository_note: "範例: file:///, http://, https://, svn://, svn+[tunnelscheme]://" - text_git_repository_note: 儲存機制是本機的空(bare)目錄 (即: /gitrepo, c:\gitrepo) - text_mercurial_repository_note: 本機儲存機制 (即: /hgrepo, c:\hgrepo) - text_scm_command: 命令 - text_scm_command_version: 版本 - text_scm_config: 您可以在 config/configuration.yml 中設定 SCM 命令。請在編輯該檔案之後重新啟動 Redmine 應用程式。 - text_scm_command_not_available: SCM 命令無法使用。請檢查管理面板中的設定。 - text_issue_conflict_resolution_overwrite: "直接套用我的變更 (先前的筆記將會被保留,但是某些變更可能會被複寫)" - text_issue_conflict_resolution_add_notes: "新增我的筆記並捨棄我其他的變更" - text_issue_conflict_resolution_cancel: "捨棄我全部的變更並重新顯示 %{link}" - text_account_destroy_confirmation: |- - 您確定要繼續這個動作嗎? - 您的帳戶將會被永久刪除,且無法被重新啟用。 - text_session_expiration_settings: "警告:變更這些設定將會導致包含您在內的所有工作階段過期。" - text_project_closed: 此專案已被關閉,僅供唯讀使用。 - text_turning_multiple_off: "若您停用多重值設定,重複的值將會被移除,以使每個項目僅保留一個值。" - - default_role_manager: 管理人員 - default_role_developer: 開發人員 - default_role_reporter: 報告人員 - default_tracker_bug: 臭蟲 - default_tracker_feature: 功能 - default_tracker_support: 支援 - default_issue_status_new: 新建立 - default_issue_status_in_progress: 實作中 - default_issue_status_resolved: 已解決 - default_issue_status_feedback: 已回應 - default_issue_status_closed: 已結束 - default_issue_status_rejected: 已拒絕 - default_doc_category_user: 使用手冊 - default_doc_category_tech: 技術文件 - default_priority_low: 低 - default_priority_normal: 正常 - default_priority_high: 高 - default_priority_urgent: 速 - default_priority_immediate: 急 - default_activity_design: 設計 - default_activity_development: 開發 - - enumeration_issue_priorities: 議題優先權 - enumeration_doc_categories: 文件分類 - enumeration_activities: 活動 (時間追蹤) - enumeration_system_activity: 系統活動 - description_filter: 篩選條件 - description_search: 搜尋欄位 - description_choose_project: 專案清單 - description_project_scope: 搜尋範圍 - description_notes: 筆記 - description_message_content: 訊息內容 - description_query_sort_criteria_attribute: 排序屬性 - description_query_sort_criteria_direction: 排列順序 - description_user_mail_notification: 郵件通知設定 - description_available_columns: 可用欄位 - description_selected_columns: 已選取的欄位 - description_all_columns: 所有欄位 - description_issue_category_reassign: 選擇議題分類 - description_wiki_subpages_reassign: 選擇新的父頁面 - text_repository_identifier_info: '僅允許使用小寫英文字母 (a-z), 阿拉伯數字, 虛線與底線。
    一旦儲存之後, 代碼便無法再次被更改。' - error_can_not_delete_auth_source: "此驗證模式目前使用中, 無法被刪除." - button_actions: 動作 - mail_body_lost_password_validity: '請注意您只能使用此鏈接更改密碼一次。' - text_login_required_html: 當不需要驗證時, 公開的專案與其內容在網路上是開放可用的. 您可 編輯適用的權限設定. - label_login_required_yes: '是' - label_login_required_no: 否, 允許以匿名方式存取公開之專案 - text_project_is_public_non_member: 公開之專案及其內容, 可供所有已登入的用戶使用. - text_project_is_public_anonymous: 公開之專案及其內容, 在網路上是開放可用的. - label_version_and_files: 版本 (%{count}) 與檔案 - label_ldap: LDAP - label_ldaps_verify_none: LDAPS (不含 SSL 憑證檢查) - label_ldaps_verify_peer: LDAPS - label_ldaps_warning: 建議使用包含 SSL 憑證檢查的加密 LADPS 協定,以防止驗證過程被竄改操縱。 - label_nothing_to_preview: 沒有可供預覽的項目 - error_token_expired: 此密碼復原連結已經過期, 請再試一次. - error_spent_on_future_date: 無法輸入未來日期的工時紀錄 - setting_timelog_accept_future_dates: 接受輸入未來日期的工時紀錄 - label_delete_link_to_subtask: 刪除連結至子任務的關聯 - error_not_allowed_to_log_time_for_other_users: 您未被允許可替他人輸入工時紀錄 - permission_log_time_for_other_users: 輸入他人的工時紀錄 - label_tomorrow: 明天 - label_next_week: 下一週 - label_next_month: 下個月 - text_role_no_workflow: 此角色尚未定義工作流程 - text_status_no_workflow: 工作流程中尚未有使用此狀態的追蹤標籤 - setting_mail_handler_preferred_body_part: Multipart (HTML) 郵件中偏好使用的部分 - setting_show_status_changes_in_mail_subject: 於議題通知電子郵件的主旨中顯示狀態變更 - label_inherited_from_parent_project: 繼承自父專案 - label_inherited_from_group: 繼承自 %{name} 群組 - label_trackers_description: 追蹤標籤說明 - label_open_trackers_description: 檢視所有追蹤標籤的說明 - label_preferred_body_part_text: 純文字 - label_preferred_body_part_html: HTML (實驗性) - field_parent_issue_subject: 父議題主旨 - permission_edit_own_issues: 編輯自己的議題 - text_select_apply_tracker: 選擇追蹤標籤 - label_updated_issues: 已更新之議題 - text_avatar_server_config_html: 目前使用的大頭像(虛擬人偶)伺服器是 %{url}。 您可於 config/configuration.yml 中進行設定。 - setting_gantt_months_limit: 甘特圖中月份顯示數量的最大值 - permission_import_time_entries: 匯入工時項目紀錄 - label_import_notifications: 匯入過程中傳送通知郵件 - text_gs_available: 可使用 ImageMagick 轉換 PDF 格式 (選配) - field_recently_used_projects: 跳轉下拉方塊中最近用過的專案數目 - label_optgroup_bookmarks: 書籤 - label_optgroup_others: 其他專案 - label_optgroup_recents: 最近用過的 - button_project_bookmark: 新增書籤 - button_project_bookmark_delete: 移除書籤 - field_history_default_tab: 議題歷史預設分頁 - label_issue_history_properties: 屬性變更 - label_issue_history_notes: 筆記 - label_last_tab_visited: 上次瀏覽的分頁 - field_unique_id: 唯一識別碼 - text_no_subject: 沒有主旨 - setting_password_required_char_classes: 密碼必要的字元類別 - label_password_char_class_uppercase: 大寫字母 - label_password_char_class_lowercase: 小寫字母 - label_password_char_class_digits: 數字 - label_password_char_class_special_chars: 特殊字元 - text_characters_must_contain: 必須包含 %{character_classes}. - label_starts_with: 開頭是 - label_ends_with: 結尾是 - label_issue_fixed_version_updated: 目標版本已更新 - setting_project_list_defaults: 專案清單預設值 - label_display_type: 篩選結果顯示為 - label_display_type_list: 清單 - label_display_type_board: 面板 - label_my_bookmarks: 我的書籤 - label_import_time_entries: 匯入工時項目紀錄 diff --git a/config/locales/zh.yml b/config/locales/zh.yml deleted file mode 100644 index 2abbef2..0000000 --- a/config/locales/zh.yml +++ /dev/null @@ -1,1293 +0,0 @@ -# Chinese (China) translations for Ruby on Rails -# by tsechingho (http://github.com/tsechingho) -zh: - # Text direction: Left-to-Right (ltr) or Right-to-Left (rtl) - direction: ltr - jquery: - locale: "zh-CN" - date: - formats: - # Use the strftime parameters for formats. - # When no format has been given, it uses default. - # You can provide other formats here if you like! - default: "%Y-%m-%d" - short: "%b%d日" - long: "%Y年%b%d日" - - day_names: [星期天, 星期一, 星期二, 星期三, 星期四, 星期五, 星期六] - abbr_day_names: [日, 一, 二, 三, 四, 五, 六] - - # Don't forget the nil at the beginning; there's no such thing as a 0th month - month_names: [~, 一月, 二月, 三月, 四月, 五月, 六月, 七月, 八月, 九月, 十月, 十一月, 十二月] - abbr_month_names: [~, 1月, 2月, 3月, 4月, 5月, 6月, 7月, 8月, 9月, 10月, 11月, 12月] - # Used in date_select and datime_select. - order: - - :year - - :month - - :day - - time: - formats: - default: "%Y年%b%d日 %A %H:%M:%S" - time: "%H:%M" - short: "%b%d日 %H:%M" - long: "%Y年%b%d日 %H:%M" - am: "上午" - pm: "下午" - - datetime: - distance_in_words: - half_a_minute: "半分钟" - less_than_x_seconds: - one: "一秒内" - other: "少于 %{count} 秒" - x_seconds: - one: "一秒" - other: "%{count} 秒" - less_than_x_minutes: - one: "一分钟内" - other: "少于 %{count} 分钟" - x_minutes: - one: "一分钟" - other: "%{count} 分钟" - about_x_hours: - one: "大约一小时" - other: "大约 %{count} 小时" - x_hours: - one: "1 小时" - other: "%{count} 小时" - x_days: - one: "一天" - other: "%{count} 天" - about_x_months: - one: "大约一个月" - other: "大约 %{count} 个月" - x_months: - one: "一个月" - other: "%{count} 个月" - about_x_years: - one: "大约一年" - other: "大约 %{count} 年" - over_x_years: - one: "超过一年" - other: "超过 %{count} 年" - almost_x_years: - one: "将近 1 年" - other: "将近 %{count} 年" - - number: - # Default format for numbers - format: - separator: "." - delimiter: "" - precision: 3 - human: - format: - delimiter: "" - precision: 3 - storage_units: - format: "%n %u" - units: - byte: - one: "Byte" - other: "Bytes" - kb: "KB" - mb: "MB" - gb: "GB" - tb: "TB" - -# Used in array.to_sentence. - support: - array: - sentence_connector: "和" - skip_last_comma: false - - activerecord: - errors: - template: - header: - one: "由于发生了一个错误 %{model} 无法保存" - other: "%{count} 个错误使得 %{model} 无法保存" - messages: - inclusion: "不包含于列表中" - exclusion: "是保留关键字" - invalid: "是无效的" - confirmation: "与确认值不匹配" - accepted: "必须是可被接受的" - empty: "不能留空" - blank: "不能为空字符" - too_long: "过长(最长为 %{count} 个字符)" - too_short: "过短(最短为 %{count} 个字符)" - wrong_length: "长度非法(必须为 %{count} 个字符)" - taken: "已经被使用" - not_a_number: "不是数字" - not_a_date: "不是合法日期" - greater_than: "必须大于 %{count}" - greater_than_or_equal_to: "必须大于或等于 %{count}" - equal_to: "必须等于 %{count}" - less_than: "必须小于 %{count}" - less_than_or_equal_to: "必须小于或等于 %{count}" - odd: "必须为单数" - even: "必须为双数" - greater_than_start_date: "必须在起始日期之后" - not_same_project: "不属于同一个项目" - circular_dependency: "此关联将导致循环依赖" - cant_link_an_issue_with_a_descendant: "问题不能关联到它的子任务" - earlier_than_minimum_start_date: "不能早于 %{date} 由于有前置问题" - not_a_regexp: "不是一个合法的正则表达式" - open_issue_with_closed_parent: "无法将一个打开的问题关联至一个被关闭的父任务" - must_contain_uppercase: "必须包含大写字母 (A-Z)" - must_contain_lowercase: "必须包含小写字母 (a-z)" - must_contain_digits: "必须包含数字 (0-9)" - must_contain_special_chars: "必须包含特殊字符 (!, $, %, ...)" - - actionview_instancetag_blank_option: 请选择 - - general_text_No: '否' - general_text_Yes: '是' - general_text_no: '否' - general_text_yes: '是' - general_lang_name: 'Chinese/Simplified (简体中文)' - general_csv_separator: ',' - general_csv_decimal_separator: '.' - general_csv_encoding: gb18030 - general_pdf_fontname: stsongstdlight - general_pdf_monospaced_fontname: stsongstdlight - general_first_day_of_week: '7' - - notice_account_updated: 帐号更新成功 - notice_account_invalid_credentials: 无效的用户名或密码 - notice_account_password_updated: 密码更新成功 - notice_account_wrong_password: 密码错误 - notice_account_register_done: 帐号创建成功,请使用注册确认邮件中的链接来激活您的帐号。 - notice_account_unknown_email: 未知用户 - notice_can_t_change_password: 该帐号使用了外部认证,因此无法更改密码。 - notice_account_lost_email_sent: 系统已将引导您设置新密码的邮件发送给您。 - notice_account_activated: 您的帐号已被激活。您现在可以登录了。 - notice_successful_create: 创建成功 - notice_successful_update: 更新成功 - notice_successful_delete: 删除成功 - notice_successful_connection: 连接成功 - notice_file_not_found: 您访问的页面不存在或已被删除。 - notice_locking_conflict: 数据已被另一位用户更新 - notice_not_authorized: 对不起,您无权访问此页面。 - notice_not_authorized_archived_project: 要访问的项目已经归档。 - notice_email_sent: "邮件已发送至 %{value}" - notice_email_error: "发送邮件时发生错误 (%{value})" - notice_feeds_access_key_reseted: 您的Atom存取键已被重置。 - notice_api_access_key_reseted: 您的API访问键已被重置。 - notice_failed_to_save_issues: "%{count} 个问题保存失败(共选择 %{total} 个问题):%{ids}." - notice_failed_to_save_members: "成员保存失败: %{errors}." - notice_no_issue_selected: "未选择任何问题!请选择您要编辑的问题。" - notice_account_pending: "您的帐号已被成功创建,正在等待管理员的审核。" - notice_default_data_loaded: 成功载入默认设置。 - notice_unable_delete_version: 无法删除版本 - notice_unable_delete_time_entry: 无法删除工时 - notice_issue_done_ratios_updated: 问题完成度已更新。 - notice_gantt_chart_truncated: "由于项目数量超过可显示的最大值 (%{max}),故此甘特图将截断超出部分" - - error_can_t_load_default_data: "无法载入默认设置:%{value}" - error_scm_not_found: "版本库中不存在该条目和(或)其修订版本。" - error_scm_command_failed: "访问版本库时发生错误:%{value}" - error_scm_annotate: "该条目不存在或无法追溯。" - error_issue_not_found_in_project: '问题不存在或不属于此项目' - error_no_tracker_in_project: 该项目未设定跟踪标签,请检查项目配置。 - error_no_default_issue_status: 未设置默认的问题状态。请检查系统设置("管理" -> "问题状态")。 - error_can_not_delete_custom_field: 无法删除自定义属性 - error_can_not_delete_tracker: "该跟踪标签已包含问题,无法删除" - error_can_not_remove_role: "该角色正在使用中,无法删除" - error_can_not_reopen_issue_on_closed_version: 该问题被关联到一个已经关闭的版本,因此无法重新打开。 - error_can_not_archive_project: 该项目无法被存档 - error_issue_done_ratios_not_updated: 问题完成度未能被更新。 - error_workflow_copy_source: 请选择一个源跟踪标签或者角色 - error_workflow_copy_target: 请选择目标跟踪标签和角色 - error_unable_delete_issue_status: '无法删除问题状态 (%{value})' - error_unable_to_connect: "无法连接 (%{value})" - warning_attachments_not_saved: "%{count} 个文件保存失败" - - mail_subject_lost_password: "您的 %{value} 密码" - mail_body_lost_password: '请点击以下链接来修改您的密码:' - mail_subject_register: "%{value}帐号激活" - mail_body_register: '请点击以下链接来激活您的帐号:' - mail_body_account_information_external: "您可以使用您的 %{value} 帐号来登录。" - mail_body_account_information: 您的帐号信息 - mail_subject_account_activation_request: "%{value}帐号激活请求" - mail_body_account_activation_request: "新用户(%{value})已完成注册,正在等候您的审核:" - mail_subject_reminder: "%{count} 个问题需要尽快解决 (%{days})" - mail_body_reminder: "指派给您的 %{count} 个问题需要在 %{days} 天内完成:" - mail_subject_wiki_content_added: "'%{id}' wiki页面已添加" - mail_body_wiki_content_added: "'%{id}' wiki页面已由 %{author} 添加。" - mail_subject_wiki_content_updated: "'%{id}' wiki页面已更新。" - mail_body_wiki_content_updated: "'%{id}' wiki页面已由 %{author} 更新。" - - - field_name: 名称 - field_description: 描述 - field_summary: 摘要 - field_is_required: 必填 - field_firstname: 名字 - field_lastname: 姓氏 - field_mail: 邮件地址 - field_filename: 文件 - field_filesize: 大小 - field_downloads: 下载次数 - field_author: 作者 - field_created_on: 创建于 - field_updated_on: 更新于 - field_field_format: 格式 - field_is_for_all: 用于所有项目 - field_possible_values: 可能的值 - field_regexp: 正则表达式 - field_min_length: 最小长度 - field_max_length: 最大长度 - field_value: 值 - field_category: 类别 - field_title: 标题 - field_project: 项目 - field_issue: 问题 - field_status: 状态 - field_notes: 说明 - field_is_closed: 已关闭的问题 - field_is_default: 默认值 - field_tracker: 跟踪 - field_subject: 主题 - field_due_date: 计划完成日期 - field_assigned_to: 指派给 - field_priority: 优先级 - field_fixed_version: 目标版本 - field_user: 用户 - field_principal: 用户/用户组 - field_role: 角色 - field_homepage: 主页 - field_is_public: 公开 - field_parent: 上级项目 - field_is_in_roadmap: 在路线图中显示 - field_login: 登录名 - field_mail_notification: 邮件通知 - field_admin: 管理员 - field_last_login_on: 最后登录 - field_language: 语言 - field_effective_date: 截止日期 - field_password: 密码 - field_new_password: 新密码 - field_password_confirmation: 确认 - field_version: 版本 - field_type: 类型 - field_host: 主机 - field_port: 端口 - field_account: 帐号 - field_base_dn: Base DN - field_attr_login: 登录名属性 - field_attr_firstname: 名字属性 - field_attr_lastname: 姓氏属性 - field_attr_mail: 邮件属性 - field_onthefly: 即时用户生成 - field_start_date: 开始日期 - field_done_ratio: "% 完成" - field_auth_source: 认证模式 - field_hide_mail: 隐藏我的邮件地址 - field_comments: 注释 - field_url: URL - field_start_page: 起始页 - field_subproject: 子项目 - field_hours: 小时 - field_activity: 活动 - field_spent_on: 日期 - field_identifier: 标识 - field_is_filter: 作为过滤条件 - field_issue_to: 相关问题 - field_delay: 延期 - field_assignable: 问题可指派给此角色 - field_redirect_existing_links: 重定向到现有链接 - field_estimated_hours: 预期时间 - field_column_names: 列 - field_time_entries: 工时 - field_time_zone: 时区 - field_searchable: 可用作搜索条件 - field_default_value: 默认值 - field_comments_sorting: 显示注释 - field_parent_title: 上级页面 - field_editable: 可编辑 - field_watcher: 关注者 - field_identity_url: OpenID URL - field_content: 内容 - field_group_by: 根据此条件分组 - field_sharing: 共享 - field_parent_issue: 父任务 - field_member_of_group: 用户组的成员 - field_assigned_to_role: 角色的成员 - field_text: 文本字段 - field_visible: 可见的 - - setting_app_title: 应用程序标题 - setting_welcome_text: 欢迎文字 - setting_default_language: 默认语言 - setting_login_required: 要求认证 - setting_self_registration: 允许自注册 - setting_attachment_max_size: 附件大小限制 - setting_issues_export_limit: 问题导出条目的限制 - setting_mail_from: 邮件发件人地址 - setting_bcc_recipients: 使用密件抄送 (bcc) - setting_plain_text_mail: 纯文本(无HTML) - setting_host_name: 主机名称 - setting_text_formatting: 文本格式 - setting_wiki_compression: 压缩Wiki历史文档 - setting_feeds_limit: Atom Feed内容条数限制 - setting_default_projects_public: 新建项目默认为公开项目 - setting_autofetch_changesets: 自动获取程序变更 - setting_sys_api_enabled: 启用用于版本库管理的Web Service - setting_commit_ref_keywords: 用于引用问题的关键字 - setting_commit_fix_keywords: 用于解决问题的关键字 - setting_autologin: 自动登录 - setting_date_format: 日期格式 - setting_time_format: 时间格式 - setting_cross_project_issue_relations: 允许不同项目之间的问题关联 - setting_issue_list_default_columns: 问题列表中显示的默认列 - setting_emails_header: 邮件头 - setting_emails_footer: 邮件签名 - setting_protocol: 协议 - setting_per_page_options: 每页显示条目个数的设置 - setting_user_format: 用户显示格式 - setting_activity_days_default: 在项目活动中显示的天数 - setting_display_subprojects_issues: 在项目页面上默认显示子项目的问题 - setting_enabled_scm: 启用 SCM - setting_mail_handler_body_delimiters: 在这些行之后截断邮件 - setting_mail_handler_api_enabled: 启用用于接收邮件的服务 - setting_mail_handler_api_key: API key - setting_sequential_project_identifiers: 顺序产生项目标识 - setting_gravatar_enabled: 使用Gravatar用户头像 - setting_gravatar_default: 默认的Gravatar头像 - setting_diff_max_lines_displayed: 查看差别页面上显示的最大行数 - setting_file_max_size_displayed: 允许直接显示的最大文本文件 - setting_repository_log_display_limit: 在文件变更记录页面上显示的最大修订版本数量 - setting_openid: 允许使用OpenID登录和注册 - setting_password_min_length: 最短密码长度 - setting_new_project_user_role_id: 非管理员用户新建项目时将被赋予的(在该项目中的)角色 - setting_default_projects_modules: 新建项目默认启用的模块 - setting_issue_done_ratio: 计算问题完成度: - setting_issue_done_ratio_issue_field: 使用问题(的完成度)属性 - setting_issue_done_ratio_issue_status: 使用问题状态 - setting_start_of_week: 日历开始于 - setting_rest_api_enabled: 启用REST web service - setting_cache_formatted_text: 缓存格式化文字 - setting_default_notification_option: 默认提醒选项 - setting_commit_logtime_enabled: 激活时间日志 - setting_commit_logtime_activity_id: 记录的活动 - setting_gantt_items_limit: 在甘特图上显示的最大记录数 - - permission_add_project: 新建项目 - permission_add_subprojects: 新建子项目 - permission_edit_project: 编辑项目 - permission_select_project_modules: 选择项目模块 - permission_manage_members: 管理成员 - permission_manage_project_activities: 管理项目活动 - permission_manage_versions: 管理版本 - permission_manage_categories: 管理问题类别 - permission_view_issues: 查看问题 - permission_add_issues: 新建问题 - permission_edit_issues: 更新问题 - permission_manage_issue_relations: 管理问题关联 - permission_add_issue_notes: 添加说明 - permission_edit_issue_notes: 编辑说明 - permission_edit_own_issue_notes: 编辑自己的说明 - permission_delete_issues: 删除问题 - permission_manage_public_queries: 管理公开的查询 - permission_save_queries: 保存查询 - permission_view_gantt: 查看甘特图 - permission_view_calendar: 查看日历 - permission_view_issue_watchers: 查看关注者列表 - permission_add_issue_watchers: 添加关注者 - permission_delete_issue_watchers: 删除关注者 - permission_log_time: 登记工时 - permission_view_time_entries: 查看耗时 - permission_edit_time_entries: 编辑耗时 - permission_edit_own_time_entries: 编辑自己的耗时 - permission_manage_news: 管理新闻 - permission_comment_news: 为新闻添加评论 - permission_view_documents: 查看文档 - permission_manage_files: 管理文件 - permission_view_files: 查看文件 - permission_manage_wiki: 管理Wiki - permission_rename_wiki_pages: 重定向/重命名Wiki页面 - permission_delete_wiki_pages: 删除Wiki页面 - permission_view_wiki_pages: 查看Wiki - permission_view_wiki_edits: 查看Wiki历史记录 - permission_edit_wiki_pages: 编辑Wiki页面 - permission_delete_wiki_pages_attachments: 删除附件 - permission_protect_wiki_pages: 保护Wiki页面 - permission_manage_repository: 管理版本库 - permission_browse_repository: 浏览版本库 - permission_view_changesets: 查看变更 - permission_commit_access: 访问提交信息 - permission_manage_boards: 管理讨论区 - permission_view_messages: 查看帖子 - permission_add_messages: 发表帖子 - permission_edit_messages: 编辑帖子 - permission_edit_own_messages: 编辑自己的帖子 - permission_delete_messages: 删除帖子 - permission_delete_own_messages: 删除自己的帖子 - permission_export_wiki_pages: 导出 wiki 页面 - permission_manage_subtasks: 管理子任务 - - project_module_issue_tracking: 问题跟踪 - project_module_time_tracking: 时间跟踪 - project_module_news: 新闻 - project_module_documents: 文档 - project_module_files: 文件 - project_module_wiki: Wiki - project_module_repository: 版本库 - project_module_boards: 讨论区 - project_module_calendar: 日历 - project_module_gantt: 甘特图 - - label_user: 用户 - label_user_plural: 用户 - label_user_new: 新建用户 - label_user_anonymous: 匿名用户 - label_project: 项目 - label_project_new: 新建项目 - label_project_plural: 项目 - label_x_projects: - zero: 无项目 - one: 1 个项目 - other: "%{count} 个项目" - label_project_all: 所有的项目 - label_project_latest: 最近的项目 - label_issue: 问题 - label_issue_new: 新建问题 - label_issue_plural: 问题 - label_issue_view_all: 查看所有问题 - label_issues_by: "按 %{value} 分组显示问题" - label_issue_added: 问题已添加 - label_issue_updated: 问题已更新 - label_document: 文档 - label_document_new: 新建文档 - label_document_plural: 文档 - label_document_added: 文档已添加 - label_role: 角色 - label_role_plural: 角色 - label_role_new: 新建角色 - label_role_and_permissions: 角色和权限 - label_member: 成员 - label_member_new: 新建成员 - label_member_plural: 成员 - label_tracker: 跟踪标签 - label_tracker_plural: 跟踪标签 - label_tracker_new: 新建跟踪标签 - label_workflow: 工作流程 - label_issue_status: 问题状态 - label_issue_status_plural: 问题状态 - label_issue_status_new: 新建问题状态 - label_issue_category: 问题类别 - label_issue_category_plural: 问题类别 - label_issue_category_new: 新建问题类别 - label_custom_field: 自定义属性 - label_custom_field_plural: 自定义属性 - label_custom_field_new: 新建自定义属性 - label_enumerations: 枚举值 - label_enumeration_new: 新建枚举值 - label_information: 信息 - label_information_plural: 信息 - label_register: 注册 - label_login_with_open_id_option: 或使用OpenID登录 - label_password_lost: 忘记密码 - label_home: 主页 - label_my_page: 我的工作台 - label_my_account: 我的帐号 - label_my_projects: 我的项目 - label_administration: 管理 - label_login: 登录 - label_logout: 退出 - label_help: 帮助 - label_reported_issues: 已报告的问题 - label_assigned_to_me_issues: 指派给我的问题 - label_last_login: 最后登录 - label_registered_on: 注册于 - label_activity: 活动 - label_overall_activity: 活动概览 - label_user_activity: "%{value} 的活动" - label_new: 新建 - label_logged_as: 登录为 - label_environment: 环境 - label_authentication: 认证 - label_auth_source: 认证模式 - label_auth_source_new: 新建认证模式 - label_auth_source_plural: 认证模式 - label_subproject_plural: 子项目 - label_subproject_new: 新建子项目 - label_and_its_subprojects: "%{value} 及其子项目" - label_min_max_length: 最小 - 最大 长度 - label_list: 列表 - label_date: 日期 - label_integer: 整数 - label_float: 浮点数 - label_boolean: 布尔值 - label_string: 字符串 - label_text: 文本 - label_attribute: 属性 - label_attribute_plural: 属性 - label_no_data: 没有任何数据可供显示 - label_change_status: 变更状态 - label_history: 历史记录 - label_attachment: 文件 - label_attachment_new: 新建文件 - label_attachment_delete: 删除文件 - label_attachment_plural: 文件 - label_file_added: 文件已添加 - label_report: 报表 - label_report_plural: 报表 - label_news: 新闻 - label_news_new: 添加新闻 - label_news_plural: 新闻 - label_news_latest: 最近的新闻 - label_news_view_all: 查看所有新闻 - label_news_added: 新闻已添加 - label_settings: 配置 - label_overview: 概述 - label_version: 版本 - label_version_new: 新建版本 - label_version_plural: 版本 - label_close_versions: 关闭已完成的版本 - label_confirmation: 确认 - label_export_to: 导出 - label_read: 读取... - label_public_projects: 公开的项目 - label_open_issues: 打开 - label_open_issues_plural: 打开 - label_closed_issues: 已关闭 - label_closed_issues_plural: 已关闭 - label_x_open_issues_abbr: - zero: 0 打开 - one: 1 打开 - other: "%{count} 打开" - label_x_closed_issues_abbr: - zero: 0 已关闭 - one: 1 已关闭 - other: "%{count} 已关闭" - label_total: 合计 - label_permissions: 权限 - label_current_status: 当前状态 - label_new_statuses_allowed: 允许的新状态 - label_all: 全部 - label_none: 无 - label_nobody: 无人 - label_next: 下一页 - label_previous: 上一页 - label_used_by: 使用中 - label_details: 详情 - label_add_note: 添加说明 - label_calendar: 日历 - label_months_from: 个月以来 - label_gantt: 甘特图 - label_internal: 内部 - label_last_changes: "最近的 %{count} 次变更" - label_change_view_all: 查看所有变更 - label_comment: 评论 - label_comment_plural: 评论 - label_x_comments: - zero: 无评论 - one: 1 条评论 - other: "%{count} 条评论" - label_comment_add: 添加评论 - label_comment_added: 评论已添加 - label_comment_delete: 删除评论 - label_query: 自定义查询 - label_query_plural: 自定义查询 - label_query_new: 新建查询 - label_filter_add: 增加过滤器 - label_filter_plural: 过滤器 - label_equals: 等于 - label_not_equals: 不等于 - label_in_less_than: 剩余天数小于 - label_in_more_than: 剩余天数大于 - label_greater_or_equal: '>=' - label_less_or_equal: '<=' - label_in: 剩余天数 - label_today: 今天 - label_yesterday: 昨天 - label_this_week: 本周 - label_last_week: 上周 - label_last_n_days: "最后 %{count} 天" - label_this_month: 本月 - label_last_month: 上月 - label_this_year: 今年 - label_date_range: 日期范围 - label_less_than_ago: 之前天数少于 - label_more_than_ago: 之前天数大于 - label_ago: 之前天数 - label_contains: 包含 - label_not_contains: 不包含 - label_day_plural: 天 - label_repository: 版本库 - label_repository_plural: 版本库 - label_browse: 浏览 - label_branch: 分支 - label_tag: 标签 - label_revision: 修订 - label_revision_plural: 修订 - label_revision_id: 修订 %{value} - label_associated_revisions: 相关修订版本 - label_added: 已添加 - label_modified: 已修改 - label_copied: 已复制 - label_renamed: 已重命名 - label_deleted: 已删除 - label_latest_revision: 最近的修订版本 - label_latest_revision_plural: 最近的修订版本 - label_view_revisions: 查看修订 - label_view_all_revisions: 查看所有修订 - label_max_size: 最大尺寸 - label_sort_highest: 置顶 - label_sort_higher: 上移 - label_sort_lower: 下移 - label_sort_lowest: 置底 - label_roadmap: 路线图 - label_roadmap_due_in: "截止日期到 %{value}" - label_roadmap_overdue: "%{value} 延期" - label_roadmap_no_issues: 该版本没有问题 - label_search: 搜索 - label_result_plural: 结果 - label_all_words: 所有单词 - label_wiki: Wiki - label_wiki_edit: Wiki 编辑 - label_wiki_edit_plural: Wiki 编辑记录 - label_wiki_page: Wiki 页面 - label_wiki_page_plural: Wiki 页面 - label_index_by_title: 按标题索引 - label_index_by_date: 按日期索引 - label_current_version: 当前版本 - label_preview: 预览 - label_feed_plural: Feeds - label_changes_details: 所有变更的详情 - label_issue_tracking: 问题跟踪 - label_spent_time: 耗时 - label_overall_spent_time: 总体耗时 - label_f_hour: "%{value} 小时" - label_f_hour_plural: "%{value} 小时" - label_time_tracking: 时间跟踪 - label_change_plural: 变更 - label_statistics: 统计 - label_commits_per_month: 每月提交次数 - label_commits_per_author: 每用户提交次数 - label_view_diff: 查看差别 - label_diff_inline: 直列 - label_diff_side_by_side: 并排 - label_options: 选项 - label_copy_workflow_from: 从以下选项复制工作流程 - label_permissions_report: 权限报表 - label_watched_issues: 关注的问题 - label_related_issues: 相关的问题 - label_applied_status: 应用后的状态 - label_loading: 载入中... - label_relation_new: 新建关联 - label_relation_delete: 删除关联 - label_relates_to: 关联到 - label_duplicates: 重复 - label_duplicated_by: 与其重复 - label_blocks: 阻挡 - label_blocked_by: 被阻挡 - label_precedes: 优先于 - label_follows: 跟随于 - label_stay_logged_in: 保持登录状态 - label_disabled: 禁用 - label_show_completed_versions: 显示已完成的版本 - label_me: 我 - label_board: 讨论区 - label_board_new: 新建讨论区 - label_board_plural: 讨论区 - label_board_locked: 锁定 - label_board_sticky: 置顶 - label_topic_plural: 主题 - label_message_plural: 帖子 - label_message_last: 最新的帖子 - label_message_new: 新贴 - label_message_posted: 发帖成功 - label_reply_plural: 回复 - label_send_information: 给用户发送帐号信息 - label_year: 年 - label_month: 月 - label_week: 周 - label_date_from: 从 - label_date_to: 到 - label_language_based: 根据用户的语言 - label_sort_by: "根据 %{value} 排序" - label_send_test_email: 发送测试邮件 - label_feeds_access_key: Atom存取键 - label_missing_feeds_access_key: 缺少Atom存取键 - label_feeds_access_key_created_on: "Atom存取键是在 %{value} 之前建立的" - label_module_plural: 模块 - label_added_time_by: "由 %{author} 在 %{age} 之前添加" - label_updated_time: " 更新于 %{value} 之前" - label_updated_time_by: "由 %{author} 更新于 %{age} 之前" - label_jump_to_a_project: 选择一个项目... - label_file_plural: 文件 - label_changeset_plural: 变更 - label_default_columns: 默认列 - label_no_change_option: (不变) - label_bulk_edit_selected_issues: 批量修改选中的问题 - label_theme: 主题 - label_default: 默认 - label_search_titles_only: 仅在标题中搜索 - label_user_mail_option_all: "收取我的项目的所有通知" - label_user_mail_option_selected: "收取选中项目的所有通知..." - label_user_mail_option_none: "不收取任何通知" - label_user_mail_option_only_my_events: "只收取我关注或参与的项目的通知" - label_user_mail_no_self_notified: "不要发送对我自己提交的修改的通知" - label_registration_activation_by_email: 通过邮件认证激活帐号 - label_registration_manual_activation: 手动激活帐号 - label_registration_automatic_activation: 自动激活帐号 - label_display_per_page: "每页显示:%{value}" - label_age: 提交时间 - label_change_properties: 修改属性 - label_general: 一般 - label_scm: SCM - label_plugins: 插件 - label_ldap_authentication: LDAP 认证 - label_downloads_abbr: D/L - label_optional_description: 可选的描述 - label_add_another_file: 添加其它文件 - label_preferences: 首选项 - label_chronological_order: 按时间顺序 - label_reverse_chronological_order: 按时间顺序(倒序) - label_incoming_emails: 接收邮件 - label_generate_key: 生成一个key - label_issue_watchers: 关注者 - label_example: 示例 - label_display: 显示 - label_sort: 排序 - label_ascending: 升序 - label_descending: 降序 - label_date_from_to: 从 %{start} 到 %{end} - label_wiki_content_added: Wiki 页面已添加 - label_wiki_content_updated: Wiki 页面已更新 - label_group: 组 - label_group_plural: 组 - label_group_new: 新建组 - label_time_entry_plural: 耗时 - label_version_sharing_none: 不共享 - label_version_sharing_descendants: 与子项目共享 - label_version_sharing_hierarchy: 与项目继承层次共享 - label_version_sharing_tree: 与项目树共享 - label_version_sharing_system: 与所有项目共享 - label_update_issue_done_ratios: 更新问题的完成度 - label_copy_source: 源 - label_copy_target: 目标 - label_copy_same_as_target: 与目标一致 - label_display_used_statuses_only: 只显示被此跟踪标签使用的状态 - label_api_access_key: API访问键 - label_missing_api_access_key: 缺少API访问键 - label_api_access_key_created_on: API访问键是在 %{value} 之前建立的 - label_profile: 简介 - label_subtask_plural: 子任务 - label_project_copy_notifications: 复制项目时发送邮件通知 - label_principal_search: "搜索用户或组:" - label_user_search: "搜索用户:" - - button_login: 登录 - button_submit: 提交 - button_save: 保存 - button_check_all: 全选 - button_uncheck_all: 清除 - button_delete: 删除 - button_create: 创建 - button_create_and_continue: 创建并继续 - button_test: 测试 - button_edit: 编辑 - button_edit_associated_wikipage: "编辑相关wiki页面: %{page_title}" - button_add: 新增 - button_change: 修改 - button_apply: 应用 - button_clear: 清除 - button_lock: 锁定 - button_unlock: 解锁 - button_download: 下载 - button_list: 列表 - button_view: 查看 - button_move: 移动 - button_move_and_follow: 移动并转到新问题 - button_back: 返回 - button_cancel: 取消 - button_activate: 激活 - button_sort: 排序 - button_log_time: 登记工时 - button_rollback: 恢复到这个版本 - button_watch: 关注 - button_unwatch: 取消关注 - button_reply: 回复 - button_archive: 存档 - button_unarchive: 取消存档 - button_reset: 重置 - button_rename: 重命名/重定向 - button_change_password: 修改密码 - button_copy: 复制 - button_copy_and_follow: 复制并转到新问题 - button_annotate: 追溯 - button_update: 更新 - button_configure: 配置 - button_quote: 引用 - button_show: 显示 - - status_active: 活动的 - status_registered: 已注册 - status_locked: 已锁定 - - version_status_open: 打开 - version_status_locked: 锁定 - version_status_closed: 关闭 - - field_active: 活动 - - text_select_mail_notifications: 选择需要发送邮件通知的动作 - text_regexp_info: 例如:^[A-Z0-9]+$ - text_min_max_length_info: 0 表示没有限制 - text_project_destroy_confirmation: 您确信要删除这个项目以及所有相关的数据吗? - text_subprojects_destroy_warning: "以下子项目也将被同时删除:%{value}" - text_workflow_edit: 选择角色和跟踪标签来编辑工作流程 - text_are_you_sure: 您确定? - text_journal_changed: "%{label} 从 %{old} 变更为 %{new}" - text_journal_set_to: "%{label} 被设置为 %{value}" - text_journal_deleted: "%{label} 已删除 (%{old})" - text_journal_added: "%{label} %{value} 已添加" - text_tip_issue_begin_day: 今天开始的任务 - text_tip_issue_end_day: 今天结束的任务 - text_tip_issue_begin_end_day: 今天开始并结束的任务 - text_caracters_maximum: "最多 %{count} 个字符。" - text_caracters_minimum: "至少需要 %{count} 个字符。" - text_length_between: "长度必须在 %{min} 到 %{max} 个字符之间。" - text_tracker_no_workflow: 此跟踪标签未定义工作流程 - text_unallowed_characters: 非法字符 - text_comma_separated: 可以使用多个值(用逗号,分开)。 - text_line_separated: 可以使用多个值(每行一个值)。 - text_issues_ref_in_commit_messages: 在提交信息中引用和解决问题 - text_issue_added: "问题 %{id} 已由 %{author} 提交。" - text_issue_updated: "问题 %{id} 已由 %{author} 更新。" - text_wiki_destroy_confirmation: 您确定要删除这个 wiki 及其所有内容吗? - text_issue_category_destroy_question: "有一些问题(%{count} 个)属于此类别。您想进行哪种操作?" - text_issue_category_destroy_assignments: 删除问题的所属类别(问题变为无类别) - text_issue_category_reassign_to: 为问题选择其它类别 - text_user_mail_option: "对于没有选中的项目,您将只会收到您关注或参与的项目的通知(比如说,您是问题的报告者, 或被指派解决此问题)。" - text_no_configuration_data: "角色、跟踪标签、问题状态和工作流程还没有设置。\n强烈建议您先载入默认设置,然后在此基础上进行修改。" - text_load_default_configuration: 载入默认设置 - text_status_changed_by_changeset: "已应用到变更列表 %{value}." - text_time_logged_by_changeset: "已应用到修订版本 %{value}." - text_issues_destroy_confirmation: '您确定要删除选中的问题吗?' - text_select_project_modules: '请选择此项目可以使用的模块:' - text_default_administrator_account_changed: 默认的管理员帐号已改变 - text_file_repository_writable: 附件路径可写 - text_plugin_assets_writable: 插件的附件路径可写 - text_minimagick_available: MiniMagick 可用(可选的) - text_destroy_time_entries_question: 您要删除的问题已经上报了 %{hours} 小时的工作量。您想进行那种操作? - text_destroy_time_entries: 删除上报的工作量 - text_assign_time_entries_to_project: 将已上报的工作量提交到项目中 - text_reassign_time_entries: '将已上报的工作量指定到此问题:' - text_user_wrote: "%{value} 写到:" - text_user_wrote_in: "%{value} 在 %{link} 中写到:" - text_enumeration_destroy_question: "%{count} 个对象被关联到了这个枚举值。" - text_enumeration_category_reassign_to: '将它们关联到新的枚举值:' - text_email_delivery_not_configured: "邮件参数尚未配置,因此邮件通知功能已被禁用。\n请在config/configuration.yml中配置您的SMTP服务器信息并重新启动以使其生效。" - text_repository_usernames_mapping: "选择或更新与版本库中的用户名对应的Redmine用户。\n版本库中与Redmine中的同名用户将被自动对应。" - text_diff_truncated: '... 差别内容超过了可显示的最大行数并已被截断' - text_custom_field_possible_values_info: '每项数值一行' - text_wiki_page_destroy_question: 此页面有 %{descendants} 个子页面和下级页面。您想进行那种操作? - text_wiki_page_nullify_children: 将子页面保留为根页面 - text_wiki_page_destroy_children: 删除子页面及其所有下级页面 - text_wiki_page_reassign_children: 将子页面的上级页面设置为 - text_own_membership_delete_confirmation: 你正在删除你现有的某些或全部权限,如果这样做了你可能将会再也无法编辑该项目了。你确定要继续吗? - text_zoom_in: 放大 - text_zoom_out: 缩小 - - default_role_manager: 管理人员 - default_role_developer: 开发人员 - default_role_reporter: 报告人员 - default_tracker_bug: 错误 - default_tracker_feature: 功能 - default_tracker_support: 支持 - default_issue_status_new: 新建 - default_issue_status_in_progress: 进行中 - default_issue_status_resolved: 已解决 - default_issue_status_feedback: 反馈 - default_issue_status_closed: 已关闭 - default_issue_status_rejected: 已拒绝 - default_doc_category_user: 用户文档 - default_doc_category_tech: 技术文档 - default_priority_low: 低 - default_priority_normal: 普通 - default_priority_high: 高 - default_priority_urgent: 紧急 - default_priority_immediate: 立刻 - default_activity_design: 设计 - default_activity_development: 开发 - - enumeration_issue_priorities: 问题优先级 - enumeration_doc_categories: 文档类别 - enumeration_activities: 活动(时间跟踪) - enumeration_system_activity: 系统活动 - - field_warn_on_leaving_unsaved: 当离开未保存内容的页面时,提示我 - text_warn_on_leaving_unsaved: 若离开当前页面,则该页面内未保存的内容将丢失。 - label_my_queries: 我的自定义查询 - text_journal_changed_no_detail: "%{label} 已更新。" - label_news_comment_added: 添加到新闻的评论 - button_expand_all: 展开所有 - button_collapse_all: 合拢所有 - label_additional_workflow_transitions_for_assignee: 当用户是问题的指派对象时所允许的问题状态转换 - label_additional_workflow_transitions_for_author: 当用户是问题作者时所允许的问题状态转换 - label_bulk_edit_selected_time_entries: 批量修改选定的时间条目 - text_time_entries_destroy_confirmation: 是否确定要删除选定的时间条目? - label_role_anonymous: 匿名用户 - label_role_non_member: 非成员用户 - label_issue_note_added: 问题备注已添加 - label_issue_status_updated: 问题状态更新 - label_issue_priority_updated: 问题优先级更新 - label_issues_visibility_own: 用户创建或被指派的问题 - field_issues_visibility: 问题可见度 - label_issues_visibility_all: 全部问题 - permission_set_own_issues_private: 设置自己的问题为公开或私有 - field_is_private: 私有 - permission_set_issues_private: 设置问题为公开或私有 - label_issues_visibility_public: 全部非私有问题 - text_issues_destroy_descendants_confirmation: 此操作同时会删除 %{count} 个子任务。 - - field_commit_logs_encoding: 提交注释的编码 - field_scm_path_encoding: 路径编码 - text_scm_path_encoding_note: "默认: UTF-8" - field_path_to_repository: 库路径 - field_root_directory: 根目录 - field_cvs_module: CVS 模块 - field_cvsroot: CVSROOT - text_mercurial_repository_note: 本地库 (e.g. /hgrepo, c:\hgrepo) - text_scm_command: 命令 - text_scm_command_version: 版本 - label_git_report_last_commit: 报告最后一次文件/目录提交 - text_scm_config: 您可以在config/configuration.yml中配置您的SCM命令。 请在编辑后,重启Redmine应用。 - text_scm_command_not_available: Scm命令不可用。 请检查管理面板的配置。 - text_git_repository_note: 库中无内容。(e.g. /gitrepo, c:\gitrepo) - notice_issue_successful_create: 问题 %{id} 已创建。 - label_between: 介于 - setting_issue_group_assignment: 允许将问题指派给组 - label_diff: 差异 - description_query_sort_criteria_direction: 排序方式 - description_project_scope: 搜索范围 - description_filter: 过滤器 - description_user_mail_notification: 邮件通知设置 - description_message_content: 信息内容 - description_available_columns: 备选列 - description_issue_category_reassign: 选择问题类别 - description_search: 搜索字段 - description_notes: 批注 - description_choose_project: 项目 - description_query_sort_criteria_attribute: 排序方式 - description_wiki_subpages_reassign: 选择父页面 - description_selected_columns: 已选列 - label_parent_revision: 父修订 - label_child_revision: 子修订 - error_scm_annotate_big_text_file: 输入文本内容超长,无法输入。 - setting_default_issue_start_date_to_creation_date: 使用当前日期作为新问题的开始日期 - button_edit_section: 编辑此区域 - setting_repositories_encodings: 附件和版本库编码 - description_all_columns: 所有列 - button_export: 导出 - label_export_options: "%{export_format} 导出选项" - error_attachment_too_big: 该文件无法上传。超过文件大小限制 (%{max_size}) - notice_failed_to_save_time_entries: "无法保存下列所选取的 %{total} 个项目中的 %{count} 工时: %{ids}。" - label_x_issues: - zero: 0 问题 - one: 1 问题 - other: "%{count} 问题" - label_repository_new: 新建版本库 - field_repository_is_default: 主版本库 - label_copy_attachments: 复制附件 - label_item_position: "%{position}/%{count}" - label_completed_versions: 已完成的版本 - text_project_identifier_info: 仅小写字母(a-z)、数字、破折号(-)和下划线(_)可以使用。
    一旦保存,标识无法修改。 - field_multiple: 多重取值 - setting_commit_cross_project_ref: 允许引用/修复所有其他项目的问题 - text_issue_conflict_resolution_add_notes: 添加说明并取消我的其他变更处理。 - text_issue_conflict_resolution_overwrite: 直接套用我的变更 (先前的说明将被保留,但是某些变更内容可能会被覆盖) - notice_issue_update_conflict: 当您正在编辑这个问题的时候,它已经被其他人抢先一步更新过了。 - text_issue_conflict_resolution_cancel: 取消我所有的变更并重新刷新显示 %{link} 。 - permission_manage_related_issues: 相关问题管理 - field_auth_source_ldap_filter: LDAP 过滤器 - label_search_for_watchers: 通过查找方式添加关注者 - notice_account_deleted: 您的账号已被永久删除(账号已无法恢复)。 - setting_unsubscribe: 允许用户退订 - button_delete_my_account: 删除我的账号 - text_account_destroy_confirmation: |- - 确定继续处理? - 您的账号一旦删除,将无法再次激活使用。 - error_session_expired: 您的会话已过期。请重新登陆。 - text_session_expiration_settings: "警告: 更改这些设置将会使包括你在内的当前会话失效。" - setting_session_lifetime: 会话最大有效时间 - setting_session_timeout: 会话闲置超时 - label_session_expiration: 会话过期 - permission_close_project: 关闭/重开项目 - button_close: 关闭 - button_reopen: 重开 - project_status_active: 已激活 - project_status_closed: 已关闭 - project_status_archived: 已存档 - text_project_closed: 当前项目已被关闭。当前项目只读。 - notice_user_successful_create: 用户 %{id} 已创建。 - field_core_fields: 标准字段 - field_timeout: 超时 (秒) - setting_thumbnails_enabled: 显示附件略缩图 - setting_thumbnails_size: 略缩图尺寸 (像素) - label_status_transitions: 状态转换 - label_fields_permissions: 字段权限 - label_readonly: 只读 - label_required: 必填 - text_repository_identifier_info: 仅小写字母(a-z)、数字、破折号(-)和下划线(_)可以使用。
    一旦保存,标识无法修改。 - field_board_parent: 父论坛 - label_attribute_of_project: 项目 %{name} - label_attribute_of_author: 作者 %{name} - label_attribute_of_assigned_to: 指派给 %{name} - label_attribute_of_fixed_version: 目标版本 %{name} - label_copy_subtasks: 复制子任务 - label_copied_to: 复制到 - label_copied_from: 复制于 - label_any_issues_in_project: 项目内任意问题 - label_any_issues_not_in_project: 项目外任意问题 - field_private_notes: 私有注解 - permission_view_private_notes: 查看私有注解 - permission_set_notes_private: 设置为私有注解 - label_no_issues_in_project: 项目内无相关问题 - label_any: 全部 - label_last_n_weeks: 上 %{count} 周前 - setting_cross_project_subtasks: 支持跨项目子任务 - label_cross_project_descendants: 与子项目共享 - label_cross_project_tree: 与项目树共享 - label_cross_project_hierarchy: 与项目继承层次共享 - label_cross_project_system: 与所有项目共享 - button_hide: 隐藏 - setting_non_working_week_days: 非工作日 - label_in_the_next_days: 在未来几天之内 - label_in_the_past_days: 在过去几天之内 - label_attribute_of_user: 用户是 %{name} - text_turning_multiple_off: 如果您停用多重值设定,重复的值将被移除,以使每个项目仅保留一个值 - label_attribute_of_issue: 问题是 %{name} - permission_add_documents: 添加文档 - permission_edit_documents: 编辑文档 - permission_delete_documents: 删除文档 - label_gantt_progress_line: 进度线 - setting_jsonp_enabled: 启用JSONP支持 - field_inherit_members: 继承父项目成员 - field_closed_on: 结束日期 - field_generate_password: 生成密码 - setting_default_projects_tracker_ids: 新建项目默认跟踪标签 - label_total_time: 合计 - notice_account_not_activated_yet: 您的账号尚未激活. 若您要重新收取激活邮件, 请单击此链接. - notice_account_locked: 您的帐号已被锁定 - label_hidden: 隐藏 - label_visibility_private: 仅对我可见 - label_visibility_roles: 仅对选取角色可见 - label_visibility_public: 对任何人可见 - field_must_change_passwd: 下次登录时必须修改密码 - notice_new_password_must_be_different: 新密码必须和旧密码不同 - setting_mail_handler_excluded_filenames: 移除符合下列名称的附件 - text_convert_available: 可使用 ImageMagick 转换图片格式 (可选) - label_link: 连接 - label_only: 仅于 - label_drop_down_list: 下拉列表 - label_checkboxes: 复选框 - label_link_values_to: 链接数值至此网址 - setting_force_default_language_for_anonymous: 强制匿名用户使用默认语言 - setting_force_default_language_for_loggedin: 强制已登录用户使用默认语言 - label_custom_field_select_type: 请选择需要关联自定义属性的类型 - label_issue_assigned_to_updated: 指派人已更新 - label_check_for_updates: 检查更新 - label_latest_compatible_version: 最新兼容版本 - label_unknown_plugin: 未知插件 - label_radio_buttons: 单选按钮 - label_group_anonymous: 匿名用户 - label_group_non_member: 非成员用户 - label_add_projects: 加入项目 - field_default_status: 默认状态 - text_subversion_repository_note: '示例: file:///, http://, https://, svn://, svn+[tunnelscheme]://' - field_users_visibility: 用户可见度 - label_users_visibility_all: 所有活动用户 - label_users_visibility_members_of_visible_projects: 可见项目中的成员 - label_edit_attachments: 编辑附件 - setting_link_copied_issue: 复制时关联问题 - label_link_copied_issue: 关联已复制的问题 - label_ask: 询问 - label_search_attachments_yes: 搜索附件的文件名和描述 - label_search_attachments_no: 不搜索附件 - label_search_attachments_only: 只搜索附件 - label_search_open_issues_only: 只搜索进行中的问题 - field_address: 邮件地址 - setting_max_additional_emails: 其它电子邮件地址上限 - label_email_address_plural: 电子邮件 - label_email_address_add: 增加电子邮件地址 - label_enable_notifications: 启用通知 - label_disable_notifications: 禁用通知 - setting_search_results_per_page: 每一页的搜索结果数 - label_blank_value: 空白 - permission_copy_issues: 复制问题 - error_password_expired: 您的密码已经过期或是管理员要求您修改密码. - field_time_entries_visibility: 工时记录可见度 - setting_password_max_age: 密码有效期 - label_parent_task_attributes: 父问题属性 - label_parent_task_attributes_derived: 从子任务计算导出 - label_parent_task_attributes_independent: 与子任务无关 - label_time_entries_visibility_all: 所有工时记录 - label_time_entries_visibility_own: 用户自己创建的工时记录 - label_member_management: 成员管理 - label_member_management_all_roles: 所有角色 - label_member_management_selected_roles_only: 只限下列角色 - label_password_required: 确认您的密码后继续 - label_total_spent_time: 总体耗时 - notice_import_finished: 成功导入 %{count} 个项目 - notice_import_finished_with_errors: 有 %{count} 个项目无法导入(共计 %{total} 个) - error_invalid_file_encoding: 这不是一个有效的 %{encoding} 编码文件 - error_invalid_csv_file_or_settings: 这不是一个CSV文件或者不符合以下设置 - error_can_not_read_import_file: 读取导入文件时发生错误 - permission_import_issues: 问题导入 - label_import_issues: 问题导入 - label_select_file_to_import: 选择要导入的文件 - label_fields_separator: 字段分隔符 - label_fields_wrapper: 字段包装识别符 - label_encoding: 编码 - label_comma_char: 逗号(,) - label_semi_colon_char: 分号(;) - label_quote_char: 单引号(') - label_double_quote_char: 双引号(") - label_fields_mapping: 字段映射 - label_file_content_preview: 文件内容预览 - label_create_missing_values: 创建缺失的数值 - button_import: 导入 - field_total_estimated_hours: 预估工时统计 - label_api: API - label_total_plural: 总计 - label_assigned_issues: 被指派的问题 - label_field_format_enumeration: 键/值 清单 - label_f_hour_short: '%{value} 小时' - field_default_version: 默认版本 - error_attachment_extension_not_allowed: 不允许上传此类型 %{extension} 附件 - setting_attachment_extensions_allowed: 允许上传的附件类型 - setting_attachment_extensions_denied: 禁止上传的附件类型 - label_any_open_issues: 任意进行中的问题 - label_no_open_issues: 任意已关闭的问题 - label_default_values_for_new_users: 新用户默认值 - error_ldap_bind_credentials: 无效的LDAP账号或密码 - setting_sys_api_key: 版本库管理网页服务 API 密钥 - setting_lost_password: 忘记密码 - mail_subject_security_notification: 安全通知 - mail_body_security_notification_change: "%{field} 已变更." - mail_body_security_notification_change_to: "%{field} 已变更为 %{value}." - mail_body_security_notification_add: "%{field} %{value} 已增加." - mail_body_security_notification_remove: "%{field} %{value} 已移除." - mail_body_security_notification_notify_enabled: 邮件地址 %{value} 开始接收通知. - mail_body_security_notification_notify_disabled: 邮件地址 %{value} 不再接收通知. - mail_body_settings_updated: "下列设置已更新:" - field_remote_ip: IP 地址 - label_wiki_page_new: 新建Wiki页面 - label_relations: 相关的问题 - button_filter: 设置为过滤条件 - mail_body_password_updated: 您的密码已经变更。 - label_no_preview: 没有可以显示的预览内容 - error_no_tracker_allowed_for_new_issue_in_project: 项目没有任何跟踪标签,您不能创建一个问题 - label_tracker_all: 所有跟踪标签 - label_new_project_issue_tab_enabled: 显示“新建问题”标签 - setting_new_item_menu_tab: 建立新对象条目的项目菜单栏目 - label_new_object_tab_enabled: 显示 "+" 为下拉列表 - error_no_projects_with_tracker_allowed_for_new_issue: 当前项目中不包含对应的跟踪类型,不能创建该类型的工作项。 - field_textarea_font: 用于文本区域的字体 - label_font_default: 默认字体 - label_font_monospace: 等宽字体 - label_font_proportional: 比例字体 - setting_timespan_format: 时间格式设置 - label_table_of_contents: 目录 - setting_commit_logs_formatting: 在提交日志消息时,应用文本格式 - setting_mail_handler_enable_regex: 启用正则表达式 - error_move_of_child_not_possible: '子任务 %{child} 不能移动到新项目:%{errors}' - error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted: 已用耗时不能重新分配到即将被删除的任务里。 - setting_timelog_required_fields: 工时登记必填字段 - label_attribute_of_object: '%{object_name} 的 %{name} 属性' - label_user_mail_option_only_assigned: 只发送我关注或指派给我的相关信息 - label_user_mail_option_only_owner: 只发送我关注或我创建的相关信息 - warning_fields_cleared_on_bulk_edit: 修改将导致所选内容的一个或多个字段值被自动删除。 - field_updated_by: 更新人 - field_last_updated_by: 最近更新人 - field_full_width_layout: 全宽布局 - label_last_notes: 最近批注 - field_digest: 校验和 - field_default_assigned_to: 默认指派给 - setting_show_custom_fields_on_registration: 注册时显示自定义字段 - permission_view_news: 查看新闻 - label_no_preview_alternative_html: 无法预览。请使用文件 %{link} 查阅。 - label_no_preview_download: 下载 - setting_close_duplicate_issues: 自动关闭重复的问题 - error_exceeds_maximum_hours_per_day: 当日内无法计入超过 %{max_hours} 的工时 (%{logged_hours} 工时已被记录) - setting_time_entry_list_defaults: 默认日志一览 - setting_timelog_accept_0_hours: 允许计入0小时工时 - setting_timelog_max_hours_per_day: 每用户每天最大可计入工时上限 - label_x_revisions: "%{count} 修订" - error_can_not_delete_auth_source: 此认证模式正在使用,不能删除。 - button_actions: 行为 - mail_body_lost_password_validity: 请注意您只能使用此链接更改一次密码。 - text_login_required_html: 当不需要认证时,公开项目和它们的内容将会在网络上公开访问。你可以编辑合适的权限。 - label_login_required_yes: '是' - label_login_required_no: 否,允许任何人访问公开项目 - text_project_is_public_non_member: 所有已登录的用户都可以访问公共项目和内容。 - text_project_is_public_anonymous: 公共项目及其内容将在网络上公开。 - label_version_and_files: 版本 (%{count}) 文件 - label_ldap: LDAP - label_ldaps_verify_none: LDAPS (无证书检查) - label_ldaps_verify_peer: LDAPS - label_ldaps_warning: 建议使用带有证书检查的加密LDAPS连接,以防止在身份验证过程中的任何篡改伪造。 - label_nothing_to_preview: 无预览 - error_token_expired: 此密码恢复链接已过期,请再试一次。 - error_spent_on_future_date: 无法记录为将来的工时。 - setting_timelog_accept_future_dates: 接受将来工时。 - label_delete_link_to_subtask: 删除关联 - error_not_allowed_to_log_time_for_other_users: 不允许为其他用户记录时间 - permission_log_time_for_other_users: 记录其他用户的工时 - label_tomorrow: 明天 - label_next_week: 下周 - label_next_month: 下月 - text_role_no_workflow: 没有为此角色定义工作流程 - text_status_no_workflow: 在工作流程中没有跟踪程序使用此状态 - setting_mail_handler_preferred_body_part: Preferred part of multipart (HTML) emails - setting_show_status_changes_in_mail_subject: 邮件通知的标题中显示更改状态 - label_inherited_from_parent_project: 继承自父项目 - label_inherited_from_group: 继承自 %{name} 组 - label_trackers_description: 工作描述 - label_open_trackers_description: 查看全部跟踪标签描述 - label_preferred_body_part_text: Text - label_preferred_body_part_html: HTML (实验功能) - field_parent_issue_subject: 父任务主题 - permission_edit_own_issues: 更新自己的问题 - text_select_apply_tracker: 选择跟踪标签 - label_updated_issues: 更新的问题 - text_avatar_server_config_html: 当前的Gravatar头像服务器是 %{url} 。您可以在 config/configuration.yml 配置它。 - setting_gantt_months_limit: 甘特图上显示的最大月数 - permission_import_time_entries: 导入工时条目 - label_import_notifications: 在导入期间发送电子邮件通知 - text_gs_available: ImageMagick PDF 支持 (可选) - field_recently_used_projects: 跳转框中最近使用的项目数量 - label_optgroup_bookmarks: 书签 - label_optgroup_others: 其他项目 - label_optgroup_recents: 最近使用 - button_project_bookmark: 添加书签 - button_project_bookmark_delete: 移除书签 - field_history_default_tab: 问题的历史默认标签 - label_issue_history_properties: 更改属性 - label_issue_history_notes: 说明 - label_last_tab_visited: 最近访问标签 - field_unique_id: 唯一ID - text_no_subject: 无主题 - setting_password_required_char_classes: 密码需要这些特征 - label_password_char_class_uppercase: 大写字母 - label_password_char_class_lowercase: 小写字母 - label_password_char_class_digits: 数字 - label_password_char_class_special_chars: 特殊字符 - text_characters_must_contain: 必须包含字符 %{character_classes}。 - label_starts_with: 开始于 - label_ends_with: 结束于 - label_issue_fixed_version_updated: 更新目标版本 - setting_project_list_defaults: 项目列表默认值 - label_display_type: 显示结果到 - label_display_type_list: 列表 - label_display_type_board: 面板 - label_my_bookmarks: 我的书签 - label_import_time_entries: 导入工时条目 diff --git a/config/routes.rb b/config/routes.rb deleted file mode 100644 index d8e5fd7..0000000 --- a/config/routes.rb +++ /dev/null @@ -1,377 +0,0 @@ -# frozen_string_literal: true - -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - -Rails.application.routes.draw do - root :to => 'welcome#index', :as => 'home' - - match 'login', :to => 'account#login', :as => 'signin', :via => [:get, :post] - match 'logout', :to => 'account#logout', :as => 'signout', :via => [:get, :post] - match 'account/register', :to => 'account#register', :via => [:get, :post], :as => 'register' - match 'account/lost_password', :to => 'account#lost_password', :via => [:get, :post], :as => 'lost_password' - match 'account/activate', :to => 'account#activate', :via => :get - get 'account/activation_email', :to => 'account#activation_email', :as => 'activation_email' - - match '/news/preview', :controller => 'previews', :action => 'news', :as => 'preview_news', :via => [:get, :post, :put, :patch] - match '/issues/preview', :to => 'previews#issue', :as => 'preview_issue', :via => [:get, :post, :put, :patch] - match '/preview/text', :to => 'previews#text', :as => 'preview_text', :via => [:get, :post, :put, :patch] - - match 'projects/:id/wiki/destroy', :to => 'wikis#destroy', :via => [:get, :post] - - match 'boards/:board_id/topics/new', :to => 'messages#new', :via => [:get, :post], :as => 'new_board_message' - get 'boards/:board_id/topics/:id', :to => 'messages#show', :as => 'board_message' - match 'boards/:board_id/topics/quote/:id', :to => 'messages#quote', :via => [:get, :post] - get 'boards/:board_id/topics/:id/edit', :to => 'messages#edit' - - post 'boards/:board_id/topics/preview', :to => 'messages#preview', :as => 'preview_board_message' - post 'boards/:board_id/topics/:id/replies', :to => 'messages#reply' - post 'boards/:board_id/topics/:id/edit', :to => 'messages#edit' - post 'boards/:board_id/topics/:id/destroy', :to => 'messages#destroy' - - # Misc issue routes. TODO: move into resources - match '/issues/auto_complete', :to => 'auto_completes#issues', :via => :get, :as => 'auto_complete_issues' - match '/issues/context_menu', :to => 'context_menus#issues', :as => 'issues_context_menu', :via => [:get, :post] - match '/issues/changes', :to => 'journals#index', :as => 'issue_changes', :via => :get - match '/issues/:id/quoted', :to => 'journals#new', :id => /\d+/, :via => :post, :as => 'quoted_issue' - - resources :journals, :only => [:edit, :update] do - member do - get 'diff' - end - end - - get '/projects/:project_id/issues/gantt', :to => 'gantts#show', :as => 'project_gantt' - get '/issues/gantt', :to => 'gantts#show' - - get '/projects/:project_id/issues/calendar', :to => 'calendars#show', :as => 'project_calendar' - get '/issues/calendar', :to => 'calendars#show' - - get 'projects/:id/issues/report', :to => 'reports#issue_report', :as => 'project_issues_report' - get 'projects/:id/issues/report/:detail', :to => 'reports#issue_report_details', :as => 'project_issues_report_details' - - get '/issues/imports/new', :to => 'imports#new', :defaults => { :type => 'IssueImport' }, :as => 'new_issues_import' - get '/time_entries/imports/new', :to => 'imports#new', :defaults => { :type => 'TimeEntryImport' }, :as => 'new_time_entries_import' - post '/imports', :to => 'imports#create', :as => 'imports' - get '/imports/:id', :to => 'imports#show', :as => 'import' - match '/imports/:id/settings', :to => 'imports#settings', :via => [:get, :post], :as => 'import_settings' - match '/imports/:id/mapping', :to => 'imports#mapping', :via => [:get, :post], :as => 'import_mapping' - match '/imports/:id/run', :to => 'imports#run', :via => [:get, :post], :as => 'import_run' - - match 'my/account', :controller => 'my', :action => 'account', :via => [:get, :put] - match 'my/account/destroy', :controller => 'my', :action => 'destroy', :via => [:get, :post] - match 'my/page', :controller => 'my', :action => 'page', :via => :get - post 'my/page', :to => 'my#update_page' - match 'my', :controller => 'my', :action => 'index', :via => :get # Redirects to my/page - get 'my/api_key', :to => 'my#show_api_key', :as => 'my_api_key' - post 'my/api_key', :to => 'my#reset_api_key' - post 'my/rss_key', :to => 'my#reset_rss_key', :as => 'my_rss_key' - match 'my/password', :controller => 'my', :action => 'password', :via => [:get, :post] - match 'my/add_block', :controller => 'my', :action => 'add_block', :via => :post - match 'my/remove_block', :controller => 'my', :action => 'remove_block', :via => :post - match 'my/order_blocks', :controller => 'my', :action => 'order_blocks', :via => :post - - resources :users do - resources :memberships, :controller => 'principal_memberships' - resources :email_addresses, :only => [:index, :create, :update, :destroy] - end - - post 'watchers/watch', :to => 'watchers#watch', :as => 'watch' - delete 'watchers/watch', :to => 'watchers#unwatch' - get 'watchers/new', :to => 'watchers#new', :as => 'new_watchers' - post 'watchers', :to => 'watchers#create' - post 'watchers/append', :to => 'watchers#append' - delete 'watchers', :to => 'watchers#destroy' - get 'watchers/autocomplete_for_user', :to => 'watchers#autocomplete_for_user' - # Specific routes for issue watchers API - post 'issues/:object_id/watchers', :to => 'watchers#create', :object_type => 'issue' - delete 'issues/:object_id/watchers/:user_id' => 'watchers#destroy', :object_type => 'issue' - - resources :projects do - collection do - get 'autocomplete' - end - - member do - get 'settings(/:tab)', :action => 'settings', :as => 'settings' - post 'archive' - post 'unarchive' - post 'close' - post 'reopen' - match 'copy', :via => [:get, :post] - match 'bookmark', :via => [:delete, :post] - end - - shallow do - resources :memberships, :controller => 'members' do - collection do - get 'autocomplete' - end - end - end - - resource :enumerations, :controller => 'project_enumerations', :only => [:update, :destroy] - - get 'issues/:copy_from/copy', :to => 'issues#new', :as => 'copy_issue' - resources :issues, :only => [:index, :new, :create] - # Used when updating the form of a new issue - post 'issues/new', :to => 'issues#new' - - resources :files, :only => [:index, :new, :create] - - resources :versions, :except => [:index, :show, :edit, :update, :destroy] do - collection do - put 'close_completed' - end - end - get 'versions.:format', :to => 'versions#index' - get 'roadmap', :to => 'versions#index', :format => false - get 'versions', :to => 'versions#index' - - resources :news, :except => [:show, :edit, :update, :destroy] - resources :time_entries, :controller => 'timelog', :except => [:show, :edit, :update, :destroy] do - get 'report', :on => :collection - end - resources :queries, :only => [:new, :create] - shallow do - resources :issue_categories - end - resources :documents, :except => [:show, :edit, :update, :destroy] - resources :boards - shallow do - resources :repositories, :except => [:index, :show] do - member do - match 'committers', :via => [:get, :post] - end - end - end - - match 'wiki/index', :controller => 'wiki', :action => 'index', :via => :get - resources :wiki, :except => [:index, :create], :as => 'wiki_page' do - member do - get 'rename' - post 'rename' - get 'history' - get 'diff' - match 'preview', :via => [:post, :put, :patch] - post 'protect' - post 'add_attachment' - end - collection do - get 'export' - get 'date_index' - post 'new' - end - end - match 'wiki', :controller => 'wiki', :action => 'show', :via => :get - get 'wiki/:id/:version', :to => 'wiki#show', :constraints => {:version => /\d+/} - delete 'wiki/:id/:version', :to => 'wiki#destroy_version' - get 'wiki/:id/:version/annotate', :to => 'wiki#annotate' - get 'wiki/:id/:version/diff', :to => 'wiki#diff' - end - - resources :issues do - member do - # Used when updating the form of an existing issue - patch 'edit', :to => 'issues#edit' - get 'tab/:name', :action => 'issue_tab', :as => 'tab' - end - collection do - match 'bulk_edit', :via => [:get, :post] - post 'bulk_update' - end - resources :time_entries, :controller => 'timelog', :only => [:new, :create] - shallow do - resources :relations, :controller => 'issue_relations', :only => [:index, :show, :create, :destroy] - end - end - # Used when updating the form of a new issue outside a project - post '/issues/new', :to => 'issues#new' - match '/issues', :controller => 'issues', :action => 'destroy', :via => :delete - - resources :queries, :except => [:show] - get '/queries/filter', :to => 'queries#filter', :as => 'queries_filter' - - resources :news, :only => [:index, :show, :edit, :update, :destroy] - match '/news/:id/comments', :to => 'comments#create', :via => :post - match '/news/:id/comments/:comment_id', :to => 'comments#destroy', :via => :delete - - resources :versions, :only => [:show, :edit, :update, :destroy] do - post 'status_by', :on => :member - end - - resources :documents, :only => [:show, :edit, :update, :destroy] do - post 'add_attachment', :on => :member - end - - match '/time_entries/context_menu', :to => 'context_menus#time_entries', :as => :time_entries_context_menu, :via => [:get, :post] - - resources :time_entries, :controller => 'timelog', :except => :destroy do - member do - # Used when updating the edit form of an existing time entry - patch 'edit', :to => 'timelog#edit' - end - collection do - get 'report' - get 'bulk_edit' - post 'bulk_update' - end - end - match '/time_entries/:id', :to => 'timelog#destroy', :via => :delete, :id => /\d+/ - # TODO: delete /time_entries for bulk deletion - match '/time_entries/destroy', :to => 'timelog#destroy', :via => :delete - # Used to update the new time entry form - post '/time_entries/new', :to => 'timelog#new' - # Used to update the bulk edit time entry form - post '/time_entries/bulk_edit', :to => 'timelog#bulk_edit' - - get 'projects/:id/activity', :to => 'activities#index', :as => :project_activity - get 'activity', :to => 'activities#index' - - # repositories routes - get 'projects/:id/repository/:repository_id/statistics', :to => 'repositories#stats' - get 'projects/:id/repository/:repository_id/graph', :to => 'repositories#graph' - - get 'projects/:id/repository/:repository_id/revisions/:rev', :to => 'repositories#revision' - get 'projects/:id/repository/:repository_id/revision', :to => 'repositories#revision' - post 'projects/:id/repository/:repository_id/revisions/:rev/issues', :to => 'repositories#add_related_issue' - delete 'projects/:id/repository/:repository_id/revisions/:rev/issues/:issue_id', :to => 'repositories#remove_related_issue' - get 'projects/:id/repository/:repository_id/revisions', :to => 'repositories#revisions' - %w(browse show entry raw annotate).each do |action| - get "projects/:id/repository/:repository_id/revisions/:rev/#{action}(/*path)", - :controller => 'repositories', - :action => action, - :format => 'html', - :constraints => {:rev => /[a-z0-9\.\-_]+/, :path => /.*/} - end - - %w(browse entry raw changes annotate).each do |action| - get "projects/:id/repository/:repository_id/#{action}(/*path)", - :controller => 'repositories', - :action => action, - :format => 'html', - :constraints => {:path => /.*/} - end - - get "projects/:id/repository/:repository_id/revisions/:rev/diff(/*path)", - :to => 'repositories#diff', - :format => false, - :constraints => {:rev => /[a-z0-9\.\-_]+/, :path => /.*/} - get "projects/:id/repository/:repository_id/diff(/*path)", - :to => 'repositories#diff', - :format => false, - :constraints => {:path => /.*/} - - get 'projects/:id/repository/:repository_id/show/*path', :to => 'repositories#show', :format => 'html', :constraints => {:path => /.*/} - - get 'projects/:id/repository/:repository_id', :to => 'repositories#show', :path => nil - get 'projects/:id/repository', :to => 'repositories#show', :path => nil - - # additional routes for having the file name at the end of url - get 'attachments/:id/:filename', :to => 'attachments#show', :id => /\d+/, :filename => /.*/, :as => 'named_attachment', :format => 'html' - get 'attachments/download/:id/:filename', :to => 'attachments#download', :id => /\d+/, :filename => /.*/, :as => 'download_named_attachment' - get 'attachments/download/:id', :to => 'attachments#download', :id => /\d+/ - get 'attachments/thumbnail/:id(/:size)', :to => 'attachments#thumbnail', :id => /\d+/, :size => /\d+/, :as => 'thumbnail' - resources :attachments, :only => [:show, :update, :destroy] - get 'attachments/:object_type/:object_id/edit', :to => 'attachments#edit_all', :as => :object_attachments_edit - patch 'attachments/:object_type/:object_id', :to => 'attachments#update_all', :as => :object_attachments - - resources :groups do - resources :memberships, :controller => 'principal_memberships' - member do - get 'autocomplete_for_user' - end - end - - get 'groups/:id/users/new', :to => 'groups#new_users', :id => /\d+/, :as => 'new_group_users' - post 'groups/:id/users', :to => 'groups#add_users', :id => /\d+/, :as => 'group_users' - delete 'groups/:id/users/:user_id', :to => 'groups#remove_user', :id => /\d+/, :as => 'group_user' - - resources :trackers, :except => :show do - collection do - match 'fields', :via => [:get, :post] - end - end - resources :issue_statuses, :except => :show do - collection do - post 'update_issue_done_ratio' - end - end - resources :custom_fields, :except => :show do - resources :enumerations, :controller => 'custom_field_enumerations', :except => [:show, :new, :edit] - put 'enumerations', :to => 'custom_field_enumerations#update_each' - end - resources :roles do - collection do - get 'permissions' - post 'permissions', :to => 'roles#update_permissions' - end - end - resources :enumerations, :except => :show - match 'enumerations/:type', :to => 'enumerations#index', :via => :get - - get 'projects/:id/search', :controller => 'search', :action => 'index' - get 'search', :controller => 'search', :action => 'index' - - - get 'mail_handler', :to => 'mail_handler#new' - post 'mail_handler', :to => 'mail_handler#index' - - get 'admin', :to => 'admin#index' - get 'admin/projects', :to => 'admin#projects' - get 'admin/plugins', :to => 'admin#plugins' - get 'admin/info', :to => 'admin#info' - post 'admin/test_email', :to => 'admin#test_email', :as => 'test_email' - post 'admin/default_configuration', :to => 'admin#default_configuration' - - resources :auth_sources do - member do - get 'test_connection', :as => 'try_connection' - end - collection do - get 'autocomplete_for_new_user' - end - end - - match 'workflows', :controller => 'workflows', :action => 'index', :via => :get - match 'workflows/edit', :controller => 'workflows', :action => 'edit', :via => [:get, :post] - match 'workflows/permissions', :controller => 'workflows', :action => 'permissions', :via => [:get, :post] - match 'workflows/copy', :controller => 'workflows', :action => 'copy', :via => [:get, :post] - match 'settings', :controller => 'settings', :action => 'index', :via => :get - match 'settings/edit', :controller => 'settings', :action => 'edit', :via => [:get, :post] - match 'settings/plugin/:id', :controller => 'settings', :action => 'plugin', :via => [:get, :post], :as => 'plugin_settings' - - match 'sys/projects', :to => 'sys#projects', :via => :get - match 'sys/projects/:id/repository', :to => 'sys#create_project_repository', :via => :post - match 'sys/fetch_changesets', :to => 'sys#fetch_changesets', :via => [:get, :post] - - match 'uploads', :to => 'attachments#upload', :via => :post - - get 'robots', :to => 'welcome#robots' - - Dir.glob File.expand_path("#{Redmine::Plugin.directory}/*") do |plugin_dir| - file = File.join(plugin_dir, "config/routes.rb") - if File.exists?(file) - begin - instance_eval File.read(file) - rescue SyntaxError, StandardError => e - puts "An error occurred while loading the routes definition of #{File.basename(plugin_dir)} plugin (#{file}): #{e.message}." - exit 1 - end - end - end -end diff --git a/config/settings.yml b/config/settings.yml deleted file mode 100644 index b5fc647..0000000 --- a/config/settings.yml +++ /dev/null @@ -1,330 +0,0 @@ -# Redmine - project management software -# Copyright (C) 2006-2019 Jean-Philippe Lang -# -# 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. - - -# DO NOT MODIFY THIS FILE !!! -# Settings can be defined through the application in Admin -> Settings - -app_title: - default: Redmine -welcome_text: - default: -login_required: - default: 0 - security_notifications: 1 -self_registration: - default: '2' - security_notifications: 1 -show_custom_fields_on_registration: - default: 1 -lost_password: - default: 1 - security_notifications: 1 -unsubscribe: - default: 1 -password_required_char_classes: - serialized: true - default: [] - security_notifications: 1 -password_min_length: - format: int - default: 8 - security_notifications: 1 -# Maximum password age in days -password_max_age: - format: int - default: 0 - security_notifications: 1 -# Maximum number of additional email addresses per user -max_additional_emails: - format: int - default: 5 -# Maximum lifetime of user sessions in minutes -session_lifetime: - format: int - default: 0 - security_notifications: 1 -# User session timeout in minutes -session_timeout: - format: int - default: 0 - security_notifications: 1 -attachment_max_size: - format: int - default: 5120 -attachment_extensions_allowed: - default: -attachment_extensions_denied: - default: -issues_export_limit: - format: int - default: 500 -activity_days_default: - format: int - default: 30 -per_page_options: - default: '25,50,100' -search_results_per_page: - default: 10 -mail_from: - default: redmine@example.net -bcc_recipients: - default: 1 -plain_text_mail: - default: 0 -text_formatting: - default: textile -cache_formatted_text: - default: 0 -wiki_compression: - default: "" -default_language: - default: en -force_default_language_for_anonymous: - default: 0 -force_default_language_for_loggedin: - default: 0 -host_name: - default: localhost:3000 -protocol: - default: http - security_notifications: 1 -feeds_limit: - format: int - default: 15 -gantt_items_limit: - format: int - default: 500 -gantt_months_limit: - format: int - default: 24 -# Maximum size of files that can be displayed -# inline through the file viewer (in KB) -file_max_size_displayed: - format: int - default: 512 -diff_max_lines_displayed: - format: int - default: 1500 -enabled_scm: - serialized: true - default: - - Subversion - - Mercurial - - Cvs - - Bazaar - - Git - security_notifications: 1 -autofetch_changesets: - default: 1 -sys_api_enabled: - default: 0 - security_notifications: 1 -sys_api_key: - default: '' - security_notifications: 1 -commit_cross_project_ref: - default: 0 -commit_ref_keywords: - default: 'refs,references,IssueID' -commit_update_keywords: - serialized: true - default: [] -commit_logtime_enabled: - default: 0 -commit_logtime_activity_id: - format: int - default: 0 -# autologin duration in days -# 0 means autologin is disabled -autologin: - format: int - default: 0 -# date format -date_format: - default: '' -time_format: - default: '' -timespan_format: - default: 'decimal' -user_format: - default: :firstname_lastname - format: symbol -cross_project_issue_relations: - default: 0 -# Enables subtasks to be in other projects -cross_project_subtasks: - default: 'tree' -parent_issue_dates: - default: 'derived' -parent_issue_priority: - default: 'derived' -parent_issue_done_ratio: - default: 'derived' -link_copied_issue: - default: 'ask' -close_duplicate_issues: - default: 1 -issue_group_assignment: - default: 0 -default_issue_start_date_to_creation_date: - default: 1 -notified_events: - serialized: true - default: - - issue_added - - issue_updated -mail_handler_body_delimiters: - default: '' -mail_handler_enable_regex_delimiters: - default: 0 -mail_handler_enable_regex_excluded_filenames: - default: 0 -mail_handler_excluded_filenames: - default: '' -mail_handler_api_enabled: - default: 0 - security_notifications: 1 -mail_handler_api_key: - default: - security_notifications: 1 -mail_handler_preferred_body_part: - default: plain -issue_list_default_columns: - serialized: true - default: - - tracker - - status - - priority - - subject - - assigned_to - - updated_on -issue_list_default_totals: - serialized: true - default: [] -display_subprojects_issues: - default: 1 -time_entry_list_defaults: - serialized: true - default: - column_names: - - spent_on - - user - - activity - - issue - - comments - - hours - totalable_names: - - hours -project_list_defaults: - serialized: true - default: - column_names: - - name - - identifier - - short_description -issue_done_ratio: - default: 'issue_field' -default_projects_public: - default: 1 -default_projects_modules: - serialized: true - default: - - issue_tracking - - time_tracking - - news - - documents - - files - - wiki - - repository - - boards - - calendar - - gantt -default_projects_tracker_ids: - serialized: true - default: -# Role given to a non-admin user who creates a project -new_project_user_role_id: - format: int - default: '' -sequential_project_identifiers: - default: 0 -# encodings used to convert repository files content to UTF-8 -# multiple values accepted, comma separated -default_users_hide_mail: - default: 1 -default_users_time_zone: - default: "" -repositories_encodings: - default: '' -# encoding used to convert commit logs to UTF-8 -commit_logs_encoding: - default: 'UTF-8' -commit_logs_formatting: - default: 1 -repository_log_display_limit: - format: int - default: 100 -ui_theme: - default: '' -emails_footer: - default: |- - You have received this notification because you have either subscribed to it, or are involved in it. - To change your notification preferences, please click here: http://hostname/my/account -gravatar_enabled: - default: 0 -openid: - default: 0 - security_notifications: 1 -gravatar_default: - default: '' -start_of_week: - default: '' -rest_api_enabled: - default: 0 - security_notifications: 1 -jsonp_enabled: - default: 0 - security_notifications: 1 -default_notification_option: - default: 'only_my_events' -emails_header: - default: '' -thumbnails_enabled: - default: 1 -thumbnails_size: - format: int - default: 100 -non_working_week_days: - serialized: true - default: - - '6' - - '7' -new_item_menu_tab: - default: 2 -timelog_required_fields: - serialized: true - default: [] -timelog_accept_0_hours: - default: 1 -timelog_max_hours_per_day: - format: int - default: 999 -timelog_accept_future_dates: - default: 1 -show_status_changes_in_mail_subject: - default: 1 diff --git a/db/migrate/001_setup.rb b/db/migrate/001_setup.rb deleted file mode 100644 index 1cd5694..0000000 --- a/db/migrate/001_setup.rb +++ /dev/null @@ -1,328 +0,0 @@ -# Redmine - project management software -# Copyright (C) 2006 Jean-Philippe Lang -# -# 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. - -class Setup < ActiveRecord::Migration[4.2] - - class User < ActiveRecord::Base - end - - # model removed - class Permission < ActiveRecord::Base; end - - def self.up - create_table "attachments", :force => true do |t| - t.column "container_id", :integer, :default => 0, :null => false - t.column "container_type", :string, :limit => 30, :default => "", :null => false - t.column "filename", :string, :default => "", :null => false - t.column "disk_filename", :string, :default => "", :null => false - t.column "filesize", :integer, :default => 0, :null => false - t.column "content_type", :string, :limit => 60, :default => "" - t.column "digest", :string, :limit => 40, :default => "", :null => false - t.column "downloads", :integer, :default => 0, :null => false - t.column "author_id", :integer, :default => 0, :null => false - t.column "created_on", :timestamp - end - - create_table "auth_sources", :force => true do |t| - t.column "type", :string, :limit => 30, :default => "", :null => false - t.column "name", :string, :limit => 60, :default => "", :null => false - t.column "host", :string, :limit => 60 - t.column "port", :integer - t.column "account", :string, :limit => 60 - t.column "account_password", :string, :limit => 60 - t.column "base_dn", :string, :limit => 255 - t.column "attr_login", :string, :limit => 30 - t.column "attr_firstname", :string, :limit => 30 - t.column "attr_lastname", :string, :limit => 30 - t.column "attr_mail", :string, :limit => 30 - t.column "onthefly_register", :boolean, :default => false, :null => false - end - - create_table "custom_fields", :force => true do |t| - t.column "type", :string, :limit => 30, :default => "", :null => false - t.column "name", :string, :limit => 30, :default => "", :null => false - t.column "field_format", :string, :limit => 30, :default => "", :null => false - t.column "possible_values", :text - t.column "regexp", :string, :default => "" - t.column "min_length", :integer, :default => 0, :null => false - t.column "max_length", :integer, :default => 0, :null => false - t.column "is_required", :boolean, :default => false, :null => false - t.column "is_for_all", :boolean, :default => false, :null => false - end - - create_table "custom_fields_projects", :id => false, :force => true do |t| - t.column "custom_field_id", :integer, :default => 0, :null => false - t.column "project_id", :integer, :default => 0, :null => false - end - - create_table "custom_fields_trackers", :id => false, :force => true do |t| - t.column "custom_field_id", :integer, :default => 0, :null => false - t.column "tracker_id", :integer, :default => 0, :null => false - end - - create_table "custom_values", :force => true do |t| - t.column "customized_type", :string, :limit => 30, :default => "", :null => false - t.column "customized_id", :integer, :default => 0, :null => false - t.column "custom_field_id", :integer, :default => 0, :null => false - t.column "value", :text - end - - create_table "documents", :force => true do |t| - t.column "project_id", :integer, :default => 0, :null => false - t.column "category_id", :integer, :default => 0, :null => false - t.column "title", :string, :limit => 60, :default => "", :null => false - t.column "description", :text - t.column "created_on", :timestamp - end - - add_index "documents", ["project_id"], :name => "documents_project_id" - - create_table "enumerations", :force => true do |t| - t.column "opt", :string, :limit => 4, :default => "", :null => false - t.column "name", :string, :limit => 30, :default => "", :null => false - end - - create_table "issue_categories", :force => true do |t| - t.column "project_id", :integer, :default => 0, :null => false - t.column "name", :string, :limit => 30, :default => "", :null => false - end - - add_index "issue_categories", ["project_id"], :name => "issue_categories_project_id" - - create_table "issue_histories", :force => true do |t| - t.column "issue_id", :integer, :default => 0, :null => false - t.column "status_id", :integer, :default => 0, :null => false - t.column "author_id", :integer, :default => 0, :null => false - t.column "notes", :text - t.column "created_on", :timestamp - end - - add_index "issue_histories", ["issue_id"], :name => "issue_histories_issue_id" - - create_table "issue_statuses", :force => true do |t| - t.column "name", :string, :limit => 30, :default => "", :null => false - t.column "is_closed", :boolean, :default => false, :null => false - t.column "is_default", :boolean, :default => false, :null => false - t.column "html_color", :string, :limit => 6, :default => "FFFFFF", :null => false - end - - create_table "issues", :force => true do |t| - t.column "tracker_id", :integer, :default => 0, :null => false - t.column "project_id", :integer, :default => 0, :null => false - t.column "subject", :string, :default => "", :null => false - t.column "description", :text - t.column "due_date", :date - t.column "category_id", :integer - t.column "status_id", :integer, :default => 0, :null => false - t.column "assigned_to_id", :integer - t.column "priority_id", :integer, :default => 0, :null => false - t.column "fixed_version_id", :integer - t.column "author_id", :integer, :default => 0, :null => false - t.column "lock_version", :integer, :default => 0, :null => false - t.column "created_on", :timestamp - t.column "updated_on", :timestamp - end - - add_index "issues", ["project_id"], :name => "issues_project_id" - - create_table "members", :force => true do |t| - t.column "user_id", :integer, :default => 0, :null => false - t.column "project_id", :integer, :default => 0, :null => false - t.column "role_id", :integer, :default => 0, :null => false - t.column "created_on", :timestamp - end - - create_table "news", :force => true do |t| - t.column "project_id", :integer - t.column "title", :string, :limit => 60, :default => "", :null => false - t.column "summary", :string, :limit => 255, :default => "" - t.column "description", :text - t.column "author_id", :integer, :default => 0, :null => false - t.column "created_on", :timestamp - end - - add_index "news", ["project_id"], :name => "news_project_id" - - create_table "permissions", :force => true do |t| - t.column "controller", :string, :limit => 30, :default => "", :null => false - t.column "action", :string, :limit => 30, :default => "", :null => false - t.column "description", :string, :limit => 60, :default => "", :null => false - t.column "is_public", :boolean, :default => false, :null => false - t.column "sort", :integer, :default => 0, :null => false - t.column "mail_option", :boolean, :default => false, :null => false - t.column "mail_enabled", :boolean, :default => false, :null => false - end - - create_table "permissions_roles", :id => false, :force => true do |t| - t.column "permission_id", :integer, :default => 0, :null => false - t.column "role_id", :integer, :default => 0, :null => false - end - - add_index "permissions_roles", ["role_id"], :name => "permissions_roles_role_id" - - create_table "projects", :force => true do |t| - t.column "name", :string, :limit => 30, :default => "", :null => false - t.column "description", :string, :default => "", :null => false - t.column "homepage", :string, :limit => 60, :default => "" - t.column "is_public", :boolean, :default => true, :null => false - t.column "parent_id", :integer - t.column "projects_count", :integer, :default => 0 - t.column "created_on", :timestamp - t.column "updated_on", :timestamp - end - - create_table "roles", :force => true do |t| - t.column "name", :string, :limit => 30, :default => "", :null => false - end - - create_table "tokens", :force => true do |t| - t.column "user_id", :integer, :default => 0, :null => false - t.column "action", :string, :limit => 30, :default => "", :null => false - t.column "value", :string, :limit => 40, :default => "", :null => false - t.column "created_on", :datetime, :null => false - end - - create_table "trackers", :force => true do |t| - t.column "name", :string, :limit => 30, :default => "", :null => false - t.column "is_in_chlog", :boolean, :default => false, :null => false - end - - create_table "users", :force => true do |t| - t.column "login", :string, :limit => 30, :default => "", :null => false - t.column "hashed_password", :string, :limit => 40, :default => "", :null => false - t.column "firstname", :string, :limit => 30, :default => "", :null => false - t.column "lastname", :string, :limit => 30, :default => "", :null => false - t.column "mail", :string, :limit => 60, :default => "", :null => false - t.column "mail_notification", :boolean, :default => true, :null => false - t.column "admin", :boolean, :default => false, :null => false - t.column "status", :integer, :default => 1, :null => false - t.column "last_login_on", :datetime - t.column "language", :string, :limit => 2, :default => "" - t.column "auth_source_id", :integer - t.column "created_on", :timestamp - t.column "updated_on", :timestamp - end - - create_table "versions", :force => true do |t| - t.column "project_id", :integer, :default => 0, :null => false - t.column "name", :string, :limit => 30, :default => "", :null => false - t.column "description", :string, :default => "" - t.column "effective_date", :date - t.column "created_on", :timestamp - t.column "updated_on", :timestamp - end - - add_index "versions", ["project_id"], :name => "versions_project_id" - - create_table "workflows", :force => true do |t| - t.column "tracker_id", :integer, :default => 0, :null => false - t.column "old_status_id", :integer, :default => 0, :null => false - t.column "new_status_id", :integer, :default => 0, :null => false - t.column "role_id", :integer, :default => 0, :null => false - end - - # project - Permission.create :controller => "projects", :action => "show", :description => "label_overview", :sort => 100, :is_public => true - Permission.create :controller => "projects", :action => "changelog", :description => "label_change_log", :sort => 105, :is_public => true - Permission.create :controller => "reports", :action => "issue_report", :description => "label_report_plural", :sort => 110, :is_public => true - Permission.create :controller => "projects", :action => "settings", :description => "label_settings", :sort => 150 - Permission.create :controller => "projects", :action => "edit", :description => "button_edit", :sort => 151 - # members - Permission.create :controller => "projects", :action => "list_members", :description => "button_list", :sort => 200, :is_public => true - Permission.create :controller => "projects", :action => "add_member", :description => "button_add", :sort => 220 - Permission.create :controller => "members", :action => "edit", :description => "button_edit", :sort => 221 - Permission.create :controller => "members", :action => "destroy", :description => "button_delete", :sort => 222 - # versions - Permission.create :controller => "projects", :action => "add_version", :description => "button_add", :sort => 320 - Permission.create :controller => "versions", :action => "edit", :description => "button_edit", :sort => 321 - Permission.create :controller => "versions", :action => "destroy", :description => "button_delete", :sort => 322 - # issue categories - Permission.create :controller => "projects", :action => "add_issue_category", :description => "button_add", :sort => 420 - Permission.create :controller => "issue_categories", :action => "edit", :description => "button_edit", :sort => 421 - Permission.create :controller => "issue_categories", :action => "destroy", :description => "button_delete", :sort => 422 - # issues - Permission.create :controller => "projects", :action => "list_issues", :description => "button_list", :sort => 1000, :is_public => true - Permission.create :controller => "projects", :action => "export_issues_csv", :description => "label_export_csv", :sort => 1001, :is_public => true - Permission.create :controller => "issues", :action => "show", :description => "button_view", :sort => 1005, :is_public => true - Permission.create :controller => "issues", :action => "download", :description => "button_download", :sort => 1010, :is_public => true - Permission.create :controller => "projects", :action => "add_issue", :description => "button_add", :sort => 1050, :mail_option => 1, :mail_enabled => 1 - Permission.create :controller => "issues", :action => "edit", :description => "button_edit", :sort => 1055 - Permission.create :controller => "issues", :action => "change_status", :description => "label_change_status", :sort => 1060, :mail_option => 1, :mail_enabled => 1 - Permission.create :controller => "issues", :action => "destroy", :description => "button_delete", :sort => 1065 - Permission.create :controller => "issues", :action => "add_attachment", :description => "label_attachment_new", :sort => 1070 - Permission.create :controller => "issues", :action => "destroy_attachment", :description => "label_attachment_delete", :sort => 1075 - # news - Permission.create :controller => "projects", :action => "list_news", :description => "button_list", :sort => 1100, :is_public => true - Permission.create :controller => "news", :action => "show", :description => "button_view", :sort => 1101, :is_public => true - Permission.create :controller => "projects", :action => "add_news", :description => "button_add", :sort => 1120 - Permission.create :controller => "news", :action => "edit", :description => "button_edit", :sort => 1121 - Permission.create :controller => "news", :action => "destroy", :description => "button_delete", :sort => 1122 - # documents - Permission.create :controller => "projects", :action => "list_documents", :description => "button_list", :sort => 1200, :is_public => true - Permission.create :controller => "documents", :action => "show", :description => "button_view", :sort => 1201, :is_public => true - Permission.create :controller => "documents", :action => "download", :description => "button_download", :sort => 1202, :is_public => true - Permission.create :controller => "projects", :action => "add_document", :description => "button_add", :sort => 1220 - Permission.create :controller => "documents", :action => "edit", :description => "button_edit", :sort => 1221 - Permission.create :controller => "documents", :action => "destroy", :description => "button_delete", :sort => 1222 - Permission.create :controller => "documents", :action => "add_attachment", :description => "label_attachment_new", :sort => 1223 - Permission.create :controller => "documents", :action => "destroy_attachment", :description => "label_attachment_delete", :sort => 1224 - # files - Permission.create :controller => "projects", :action => "list_files", :description => "button_list", :sort => 1300, :is_public => true - Permission.create :controller => "versions", :action => "download", :description => "button_download", :sort => 1301, :is_public => true - Permission.create :controller => "projects", :action => "add_file", :description => "button_add", :sort => 1320 - Permission.create :controller => "versions", :action => "destroy_file", :description => "button_delete", :sort => 1322 - - # create default administrator account - user = User.new :firstname => "Redmine", - :lastname => "Admin", - :mail => "admin@example.net", - :mail_notification => true, - :status => 1 - user.login = 'admin' - user.hashed_password = "d033e22ae348aeb5660fc2140aec35850c4da997" - user.admin = true - user.save - - - end - - def self.down - drop_table :attachments - drop_table :auth_sources - drop_table :custom_fields - drop_table :custom_fields_projects - drop_table :custom_fields_trackers - drop_table :custom_values - drop_table :documents - drop_table :enumerations - drop_table :issue_categories - drop_table :issue_histories - drop_table :issue_statuses - drop_table :issues - drop_table :members - drop_table :news - drop_table :permissions - drop_table :permissions_roles - drop_table :projects - drop_table :roles - drop_table :trackers - drop_table :tokens - drop_table :users - drop_table :versions - drop_table :workflows - end -end diff --git a/db/migrate/002_issue_move.rb b/db/migrate/002_issue_move.rb deleted file mode 100644 index d5966f0..0000000 --- a/db/migrate/002_issue_move.rb +++ /dev/null @@ -1,12 +0,0 @@ -class IssueMove < ActiveRecord::Migration[4.2] - # model removed - class Permission < ActiveRecord::Base; end - - def self.up - Permission.create :controller => "projects", :action => "move_issues", :description => "button_move", :sort => 1061, :mail_option => 0, :mail_enabled => 0 - end - - def self.down - Permission.where("controller=? and action=?", 'projects', 'move_issues').first.destroy - end -end diff --git a/db/migrate/003_issue_add_note.rb b/db/migrate/003_issue_add_note.rb deleted file mode 100644 index 9f899a8..0000000 --- a/db/migrate/003_issue_add_note.rb +++ /dev/null @@ -1,12 +0,0 @@ -class IssueAddNote < ActiveRecord::Migration[4.2] - # model removed - class Permission < ActiveRecord::Base; end - - def self.up - Permission.create :controller => "issues", :action => "add_note", :description => "label_add_note", :sort => 1057, :mail_option => 1, :mail_enabled => 0 - end - - def self.down - Permission.where("controller=? and action=?", 'issues', 'add_note').first.destroy - end -end diff --git a/db/migrate/004_export_pdf.rb b/db/migrate/004_export_pdf.rb deleted file mode 100644 index ac7ef26..0000000 --- a/db/migrate/004_export_pdf.rb +++ /dev/null @@ -1,14 +0,0 @@ -class ExportPdf < ActiveRecord::Migration[4.2] - # model removed - class Permission < ActiveRecord::Base; end - - def self.up - Permission.create :controller => "projects", :action => "export_issues_pdf", :description => "label_export_pdf", :sort => 1002, :is_public => true, :mail_option => 0, :mail_enabled => 0 - Permission.create :controller => "issues", :action => "export_pdf", :description => "label_export_pdf", :sort => 1015, :is_public => true, :mail_option => 0, :mail_enabled => 0 - end - - def self.down - Permission.where("controller=? and action=?", 'projects', 'export_issues_pdf').first.destroy - Permission.where("controller=? and action=?", 'issues', 'export_pdf').first.destroy - end -end diff --git a/db/migrate/005_issue_start_date.rb b/db/migrate/005_issue_start_date.rb deleted file mode 100644 index 93decfb..0000000 --- a/db/migrate/005_issue_start_date.rb +++ /dev/null @@ -1,11 +0,0 @@ -class IssueStartDate < ActiveRecord::Migration[4.2] - def self.up - add_column :issues, :start_date, :date - add_column :issues, :done_ratio, :integer, :default => 0, :null => false - end - - def self.down - remove_column :issues, :start_date - remove_column :issues, :done_ratio - end -end diff --git a/db/migrate/006_calendar_and_activity.rb b/db/migrate/006_calendar_and_activity.rb deleted file mode 100644 index 3ff204c..0000000 --- a/db/migrate/006_calendar_and_activity.rb +++ /dev/null @@ -1,16 +0,0 @@ -class CalendarAndActivity < ActiveRecord::Migration[4.2] - # model removed - class Permission < ActiveRecord::Base; end - - def self.up - Permission.create :controller => "projects", :action => "activity", :description => "label_activity", :sort => 160, :is_public => true, :mail_option => 0, :mail_enabled => 0 - Permission.create :controller => "projects", :action => "calendar", :description => "label_calendar", :sort => 165, :is_public => true, :mail_option => 0, :mail_enabled => 0 - Permission.create :controller => "projects", :action => "gantt", :description => "label_gantt", :sort => 166, :is_public => true, :mail_option => 0, :mail_enabled => 0 - end - - def self.down - Permission.where("controller=? and action=?", 'projects', 'activity').first.destroy - Permission.where("controller=? and action=?", 'projects', 'calendar').first.destroy - Permission.where("controller=? and action=?", 'projects', 'gantt').first.destroy - end -end diff --git a/db/migrate/007_create_journals.rb b/db/migrate/007_create_journals.rb deleted file mode 100644 index 0d12014..0000000 --- a/db/migrate/007_create_journals.rb +++ /dev/null @@ -1,56 +0,0 @@ -class CreateJournals < ActiveRecord::Migration[4.2] - - # model removed, but needed for data migration - class IssueHistory < ActiveRecord::Base; belongs_to :issue; end - # model removed - class Permission < ActiveRecord::Base; end - - def self.up - create_table :journals, :force => true do |t| - t.column "journalized_id", :integer, :default => 0, :null => false - t.column "journalized_type", :string, :limit => 30, :default => "", :null => false - t.column "user_id", :integer, :default => 0, :null => false - t.column "notes", :text - t.column "created_on", :datetime, :null => false - end - create_table :journal_details, :force => true do |t| - t.column "journal_id", :integer, :default => 0, :null => false - t.column "property", :string, :limit => 30, :default => "", :null => false - t.column "prop_key", :string, :limit => 30, :default => "", :null => false - t.column "old_value", :string - t.column "value", :string - end - - # indexes - add_index "journals", ["journalized_id", "journalized_type"], :name => "journals_journalized_id" - add_index "journal_details", ["journal_id"], :name => "journal_details_journal_id" - - Permission.create :controller => "issues", :action => "history", :description => "label_history", :sort => 1006, :is_public => true, :mail_option => 0, :mail_enabled => 0 - - # data migration - IssueHistory.all.each {|h| - j = Journal.new(:journalized => h.issue, :user_id => h.author_id, :notes => h.notes, :created_on => h.created_on) - j.details << JournalDetail.new(:property => 'attr', :prop_key => 'status_id', :value => h.status_id) - j.save - } - - drop_table :issue_histories - end - - def self.down - drop_table :journal_details - drop_table :journals - - create_table "issue_histories", :force => true do |t| - t.column "issue_id", :integer, :default => 0, :null => false - t.column "status_id", :integer, :default => 0, :null => false - t.column "author_id", :integer, :default => 0, :null => false - t.column "notes", :text, :default => "" - t.column "created_on", :timestamp - end - - add_index "issue_histories", ["issue_id"], :name => "issue_histories_issue_id" - - Permission.where("controller=? and action=?", 'issues', 'history').first.destroy - end -end diff --git a/db/migrate/008_create_user_preferences.rb b/db/migrate/008_create_user_preferences.rb deleted file mode 100644 index b782b17..0000000 --- a/db/migrate/008_create_user_preferences.rb +++ /dev/null @@ -1,12 +0,0 @@ -class CreateUserPreferences < ActiveRecord::Migration[4.2] - def self.up - create_table :user_preferences do |t| - t.column "user_id", :integer, :default => 0, :null => false - t.column "others", :text - end - end - - def self.down - drop_table :user_preferences - end -end diff --git a/db/migrate/009_add_hide_mail_pref.rb b/db/migrate/009_add_hide_mail_pref.rb deleted file mode 100644 index 8dd3399..0000000 --- a/db/migrate/009_add_hide_mail_pref.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddHideMailPref < ActiveRecord::Migration[4.2] - def self.up - add_column :user_preferences, :hide_mail, :boolean, :default => false - end - - def self.down - remove_column :user_preferences, :hide_mail - end -end diff --git a/db/migrate/010_create_comments.rb b/db/migrate/010_create_comments.rb deleted file mode 100644 index c711c74..0000000 --- a/db/migrate/010_create_comments.rb +++ /dev/null @@ -1,16 +0,0 @@ -class CreateComments < ActiveRecord::Migration[4.2] - def self.up - create_table :comments do |t| - t.column :commented_type, :string, :limit => 30, :default => "", :null => false - t.column :commented_id, :integer, :default => 0, :null => false - t.column :author_id, :integer, :default => 0, :null => false - t.column :comments, :text - t.column :created_on, :datetime, :null => false - t.column :updated_on, :datetime, :null => false - end - end - - def self.down - drop_table :comments - end -end diff --git a/db/migrate/011_add_news_comments_count.rb b/db/migrate/011_add_news_comments_count.rb deleted file mode 100644 index 01a2833..0000000 --- a/db/migrate/011_add_news_comments_count.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddNewsCommentsCount < ActiveRecord::Migration[4.2] - def self.up - add_column :news, :comments_count, :integer, :default => 0, :null => false - end - - def self.down - remove_column :news, :comments_count - end -end diff --git a/db/migrate/012_add_comments_permissions.rb b/db/migrate/012_add_comments_permissions.rb deleted file mode 100644 index e82fb89..0000000 --- a/db/migrate/012_add_comments_permissions.rb +++ /dev/null @@ -1,14 +0,0 @@ -class AddCommentsPermissions < ActiveRecord::Migration[4.2] - # model removed - class Permission < ActiveRecord::Base; end - - def self.up - Permission.create :controller => "news", :action => "add_comment", :description => "label_comment_add", :sort => 1130, :is_public => false, :mail_option => 0, :mail_enabled => 0 - Permission.create :controller => "news", :action => "destroy_comment", :description => "label_comment_delete", :sort => 1133, :is_public => false, :mail_option => 0, :mail_enabled => 0 - end - - def self.down - Permission.where("controller=? and action=?", 'news', 'add_comment').first.destroy - Permission.where("controller=? and action=?", 'news', 'destroy_comment').first.destroy - end -end diff --git a/db/migrate/013_create_queries.rb b/db/migrate/013_create_queries.rb deleted file mode 100644 index 5784725..0000000 --- a/db/migrate/013_create_queries.rb +++ /dev/null @@ -1,15 +0,0 @@ -class CreateQueries < ActiveRecord::Migration[4.2] - def self.up - create_table :queries, :force => true do |t| - t.column "project_id", :integer - t.column "name", :string, :default => "", :null => false - t.column "filters", :text - t.column "user_id", :integer, :default => 0, :null => false - t.column "is_public", :boolean, :default => false, :null => false - end - end - - def self.down - drop_table :queries - end -end diff --git a/db/migrate/014_add_queries_permissions.rb b/db/migrate/014_add_queries_permissions.rb deleted file mode 100644 index 07f9749..0000000 --- a/db/migrate/014_add_queries_permissions.rb +++ /dev/null @@ -1,12 +0,0 @@ -class AddQueriesPermissions < ActiveRecord::Migration[4.2] - # model removed - class Permission < ActiveRecord::Base; end - - def self.up - Permission.create :controller => "projects", :action => "add_query", :description => "button_create", :sort => 600, :is_public => false, :mail_option => 0, :mail_enabled => 0 - end - - def self.down - Permission.where("controller=? and action=?", 'projects', 'add_query').first.destroy - end -end diff --git a/db/migrate/015_create_repositories.rb b/db/migrate/015_create_repositories.rb deleted file mode 100644 index e8e92bd..0000000 --- a/db/migrate/015_create_repositories.rb +++ /dev/null @@ -1,12 +0,0 @@ -class CreateRepositories < ActiveRecord::Migration[4.2] - def self.up - create_table :repositories, :force => true do |t| - t.column "project_id", :integer, :default => 0, :null => false - t.column "url", :string, :default => "", :null => false - end - end - - def self.down - drop_table :repositories - end -end diff --git a/db/migrate/016_add_repositories_permissions.rb b/db/migrate/016_add_repositories_permissions.rb deleted file mode 100644 index 217df3c..0000000 --- a/db/migrate/016_add_repositories_permissions.rb +++ /dev/null @@ -1,22 +0,0 @@ -class AddRepositoriesPermissions < ActiveRecord::Migration[4.2] - # model removed - class Permission < ActiveRecord::Base; end - - def self.up - Permission.create :controller => "repositories", :action => "show", :description => "button_view", :sort => 1450, :is_public => true - Permission.create :controller => "repositories", :action => "browse", :description => "label_browse", :sort => 1460, :is_public => true - Permission.create :controller => "repositories", :action => "entry", :description => "entry", :sort => 1462, :is_public => true - Permission.create :controller => "repositories", :action => "revisions", :description => "label_view_revisions", :sort => 1470, :is_public => true - Permission.create :controller => "repositories", :action => "revision", :description => "label_view_revisions", :sort => 1472, :is_public => true - Permission.create :controller => "repositories", :action => "diff", :description => "diff", :sort => 1480, :is_public => true - end - - def self.down - Permission.where("controller=? and action=?", 'repositories', 'show').first.destroy - Permission.where("controller=? and action=?", 'repositories', 'browse').first.destroy - Permission.where("controller=? and action=?", 'repositories', 'entry').first.destroy - Permission.where("controller=? and action=?", 'repositories', 'revisions').first.destroy - Permission.where("controller=? and action=?", 'repositories', 'revision').first.destroy - Permission.where("controller=? and action=?", 'repositories', 'diff').first.destroy - end -end diff --git a/db/migrate/017_create_settings.rb b/db/migrate/017_create_settings.rb deleted file mode 100644 index 777e36e..0000000 --- a/db/migrate/017_create_settings.rb +++ /dev/null @@ -1,12 +0,0 @@ -class CreateSettings < ActiveRecord::Migration[4.2] - def self.up - create_table :settings, :force => true do |t| - t.column "name", :string, :limit => 30, :default => "", :null => false - t.column "value", :text - end - end - - def self.down - drop_table :settings - end -end diff --git a/db/migrate/018_set_doc_and_files_notifications.rb b/db/migrate/018_set_doc_and_files_notifications.rb deleted file mode 100644 index aca6873..0000000 --- a/db/migrate/018_set_doc_and_files_notifications.rb +++ /dev/null @@ -1,18 +0,0 @@ -class SetDocAndFilesNotifications < ActiveRecord::Migration[4.2] - # model removed - class Permission < ActiveRecord::Base; end - - def self.up - Permission.where(:controller => "projects", :action => "add_file").each {|p| p.update_attribute(:mail_option, true)} - Permission.where(:controller => "projects", :action => "add_document").each {|p| p.update_attribute(:mail_option, true)} - Permission.where(:controller => "documents", :action => "add_attachment").each {|p| p.update_attribute(:mail_option, true)} - Permission.where(:controller => "issues", :action => "add_attachment").each {|p| p.update_attribute(:mail_option, true)} - end - - def self.down - Permission.where(:controller => "projects", :action => "add_file").each {|p| p.update_attribute(:mail_option, false)} - Permission.where(:controller => "projects", :action => "add_document").each {|p| p.update_attribute(:mail_option, false)} - Permission.where(:controller => "documents", :action => "add_attachment").each {|p| p.update_attribute(:mail_option, false)} - Permission.where(:controller => "issues", :action => "add_attachment").each {|p| p.update_attribute(:mail_option, false)} - end -end diff --git a/db/migrate/019_add_issue_status_position.rb b/db/migrate/019_add_issue_status_position.rb deleted file mode 100644 index 1536bdd..0000000 --- a/db/migrate/019_add_issue_status_position.rb +++ /dev/null @@ -1,10 +0,0 @@ -class AddIssueStatusPosition < ActiveRecord::Migration[4.2] - def self.up - add_column :issue_statuses, :position, :integer, :default => 1 - IssueStatus.all.each_with_index {|status, i| status.update_attribute(:position, i+1)} - end - - def self.down - remove_column :issue_statuses, :position - end -end diff --git a/db/migrate/020_add_role_position.rb b/db/migrate/020_add_role_position.rb deleted file mode 100644 index 39a678e..0000000 --- a/db/migrate/020_add_role_position.rb +++ /dev/null @@ -1,10 +0,0 @@ -class AddRolePosition < ActiveRecord::Migration[4.2] - def self.up - add_column :roles, :position, :integer, :default => 1 - Role.all.each_with_index {|role, i| role.update_attribute(:position, i+1)} - end - - def self.down - remove_column :roles, :position - end -end diff --git a/db/migrate/021_add_tracker_position.rb b/db/migrate/021_add_tracker_position.rb deleted file mode 100644 index dca65d1..0000000 --- a/db/migrate/021_add_tracker_position.rb +++ /dev/null @@ -1,10 +0,0 @@ -class AddTrackerPosition < ActiveRecord::Migration[4.2] - def self.up - add_column :trackers, :position, :integer, :default => 1 - Tracker.all.each_with_index {|tracker, i| tracker.update_attribute(:position, i+1)} - end - - def self.down - remove_column :trackers, :position - end -end diff --git a/db/migrate/022_serialize_possibles_values.rb b/db/migrate/022_serialize_possibles_values.rb deleted file mode 100644 index 66905c9..0000000 --- a/db/migrate/022_serialize_possibles_values.rb +++ /dev/null @@ -1,13 +0,0 @@ -class SerializePossiblesValues < ActiveRecord::Migration[4.2] - def self.up - CustomField.all.each do |field| - if field.possible_values and field.possible_values.is_a? String - field.possible_values = field.possible_values.split('|') - field.save - end - end - end - - def self.down - end -end diff --git a/db/migrate/023_add_tracker_is_in_roadmap.rb b/db/migrate/023_add_tracker_is_in_roadmap.rb deleted file mode 100644 index 727b1a8..0000000 --- a/db/migrate/023_add_tracker_is_in_roadmap.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddTrackerIsInRoadmap < ActiveRecord::Migration[4.2] - def self.up - add_column :trackers, :is_in_roadmap, :boolean, :default => true, :null => false - end - - def self.down - remove_column :trackers, :is_in_roadmap - end -end diff --git a/db/migrate/024_add_roadmap_permission.rb b/db/migrate/024_add_roadmap_permission.rb deleted file mode 100644 index 72aeaed..0000000 --- a/db/migrate/024_add_roadmap_permission.rb +++ /dev/null @@ -1,12 +0,0 @@ -class AddRoadmapPermission < ActiveRecord::Migration[4.2] - # model removed - class Permission < ActiveRecord::Base; end - - def self.up - Permission.create :controller => "projects", :action => "roadmap", :description => "label_roadmap", :sort => 107, :is_public => true, :mail_option => 0, :mail_enabled => 0 - end - - def self.down - Permission.where("controller=? and action=?", 'projects', 'roadmap').first.destroy - end -end diff --git a/db/migrate/025_add_search_permission.rb b/db/migrate/025_add_search_permission.rb deleted file mode 100644 index 782eeb2..0000000 --- a/db/migrate/025_add_search_permission.rb +++ /dev/null @@ -1,12 +0,0 @@ -class AddSearchPermission < ActiveRecord::Migration[4.2] - # model removed - class Permission < ActiveRecord::Base; end - - def self.up - Permission.create :controller => "projects", :action => "search", :description => "label_search", :sort => 130, :is_public => true, :mail_option => 0, :mail_enabled => 0 - end - - def self.down - Permission.where(:controller => "projects", :action => "search").each {|p| p.destroy} - end -end diff --git a/db/migrate/026_add_repository_login_and_password.rb b/db/migrate/026_add_repository_login_and_password.rb deleted file mode 100644 index e26c233..0000000 --- a/db/migrate/026_add_repository_login_and_password.rb +++ /dev/null @@ -1,11 +0,0 @@ -class AddRepositoryLoginAndPassword < ActiveRecord::Migration[4.2] - def self.up - add_column :repositories, :login, :string, :limit => 60, :default => "" - add_column :repositories, :password, :string, :limit => 60, :default => "" - end - - def self.down - remove_column :repositories, :login - remove_column :repositories, :password - end -end diff --git a/db/migrate/027_create_wikis.rb b/db/migrate/027_create_wikis.rb deleted file mode 100644 index c404814..0000000 --- a/db/migrate/027_create_wikis.rb +++ /dev/null @@ -1,14 +0,0 @@ -class CreateWikis < ActiveRecord::Migration[4.2] - def self.up - create_table :wikis do |t| - t.column :project_id, :integer, :null => false - t.column :start_page, :string, :limit => 255, :null => false - t.column :status, :integer, :default => 1, :null => false - end - add_index :wikis, :project_id, :name => :wikis_project_id - end - - def self.down - drop_table :wikis - end -end diff --git a/db/migrate/028_create_wiki_pages.rb b/db/migrate/028_create_wiki_pages.rb deleted file mode 100644 index 95fd6b5..0000000 --- a/db/migrate/028_create_wiki_pages.rb +++ /dev/null @@ -1,14 +0,0 @@ -class CreateWikiPages < ActiveRecord::Migration[4.2] - def self.up - create_table :wiki_pages do |t| - t.column :wiki_id, :integer, :null => false - t.column :title, :string, :limit => 255, :null => false - t.column :created_on, :datetime, :null => false - end - add_index :wiki_pages, [:wiki_id, :title], :name => :wiki_pages_wiki_id_title - end - - def self.down - drop_table :wiki_pages - end -end diff --git a/db/migrate/029_create_wiki_contents.rb b/db/migrate/029_create_wiki_contents.rb deleted file mode 100644 index 6624884..0000000 --- a/db/migrate/029_create_wiki_contents.rb +++ /dev/null @@ -1,30 +0,0 @@ -class CreateWikiContents < ActiveRecord::Migration[4.2] - def self.up - create_table :wiki_contents do |t| - t.column :page_id, :integer, :null => false - t.column :author_id, :integer - t.column :text, :text - t.column :comments, :string, :limit => 255, :default => "" - t.column :updated_on, :datetime, :null => false - t.column :version, :integer, :null => false - end - add_index :wiki_contents, :page_id, :name => :wiki_contents_page_id - - create_table :wiki_content_versions do |t| - t.column :wiki_content_id, :integer, :null => false - t.column :page_id, :integer, :null => false - t.column :author_id, :integer - t.column :data, :binary - t.column :compression, :string, :limit => 6, :default => "" - t.column :comments, :string, :limit => 255, :default => "" - t.column :updated_on, :datetime, :null => false - t.column :version, :integer, :null => false - end - add_index :wiki_content_versions, :wiki_content_id, :name => :wiki_content_versions_wcid - end - - def self.down - drop_table :wiki_contents - drop_table :wiki_content_versions - end -end diff --git a/db/migrate/030_add_projects_feeds_permissions.rb b/db/migrate/030_add_projects_feeds_permissions.rb deleted file mode 100644 index 29e31ab..0000000 --- a/db/migrate/030_add_projects_feeds_permissions.rb +++ /dev/null @@ -1,12 +0,0 @@ -class AddProjectsFeedsPermissions < ActiveRecord::Migration[4.2] - # model removed - class Permission < ActiveRecord::Base; end - - def self.up - Permission.create :controller => "projects", :action => "feeds", :description => "label_feed_plural", :sort => 132, :is_public => true, :mail_option => 0, :mail_enabled => 0 - end - - def self.down - Permission.where(:controller => "projects", :action => "feeds").each {|p| p.destroy} - end -end diff --git a/db/migrate/031_add_repository_root_url.rb b/db/migrate/031_add_repository_root_url.rb deleted file mode 100644 index 96ac761..0000000 --- a/db/migrate/031_add_repository_root_url.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddRepositoryRootUrl < ActiveRecord::Migration[4.2] - def self.up - add_column :repositories, :root_url, :string, :limit => 255, :default => "" - end - - def self.down - remove_column :repositories, :root_url - end -end diff --git a/db/migrate/032_create_time_entries.rb b/db/migrate/032_create_time_entries.rb deleted file mode 100644 index 0e93dca..0000000 --- a/db/migrate/032_create_time_entries.rb +++ /dev/null @@ -1,24 +0,0 @@ -class CreateTimeEntries < ActiveRecord::Migration[4.2] - def self.up - create_table :time_entries do |t| - t.column :project_id, :integer, :null => false - t.column :user_id, :integer, :null => false - t.column :issue_id, :integer - t.column :hours, :float, :null => false - t.column :comments, :string, :limit => 255 - t.column :activity_id, :integer, :null => false - t.column :spent_on, :date, :null => false - t.column :tyear, :integer, :null => false - t.column :tmonth, :integer, :null => false - t.column :tweek, :integer, :null => false - t.column :created_on, :datetime, :null => false - t.column :updated_on, :datetime, :null => false - end - add_index :time_entries, [:project_id], :name => :time_entries_project_id - add_index :time_entries, [:issue_id], :name => :time_entries_issue_id - end - - def self.down - drop_table :time_entries - end -end diff --git a/db/migrate/033_add_timelog_permissions.rb b/db/migrate/033_add_timelog_permissions.rb deleted file mode 100644 index 42889f1..0000000 --- a/db/migrate/033_add_timelog_permissions.rb +++ /dev/null @@ -1,12 +0,0 @@ -class AddTimelogPermissions < ActiveRecord::Migration[4.2] - # model removed - class Permission < ActiveRecord::Base; end - - def self.up - Permission.create :controller => "timelog", :action => "edit", :description => "button_log_time", :sort => 1520, :is_public => false, :mail_option => 0, :mail_enabled => 0 - end - - def self.down - Permission.where(:controller => "timelog", :action => "edit").each {|p| p.destroy} - end -end diff --git a/db/migrate/034_create_changesets.rb b/db/migrate/034_create_changesets.rb deleted file mode 100644 index e0180a0..0000000 --- a/db/migrate/034_create_changesets.rb +++ /dev/null @@ -1,16 +0,0 @@ -class CreateChangesets < ActiveRecord::Migration[4.2] - def self.up - create_table :changesets do |t| - t.column :repository_id, :integer, :null => false - t.column :revision, :integer, :null => false - t.column :committer, :string, :limit => 30 - t.column :committed_on, :datetime, :null => false - t.column :comments, :text - end - add_index :changesets, [:repository_id, :revision], :unique => true, :name => :changesets_repos_rev - end - - def self.down - drop_table :changesets - end -end diff --git a/db/migrate/035_create_changes.rb b/db/migrate/035_create_changes.rb deleted file mode 100644 index ed62e4c..0000000 --- a/db/migrate/035_create_changes.rb +++ /dev/null @@ -1,16 +0,0 @@ -class CreateChanges < ActiveRecord::Migration[4.2] - def self.up - create_table :changes do |t| - t.column :changeset_id, :integer, :null => false - t.column :action, :string, :limit => 1, :default => "", :null => false - t.column :path, :string, :default => "", :null => false - t.column :from_path, :string - t.column :from_revision, :integer - end - add_index :changes, [:changeset_id], :name => :changesets_changeset_id - end - - def self.down - drop_table :changes - end -end diff --git a/db/migrate/036_add_changeset_commit_date.rb b/db/migrate/036_add_changeset_commit_date.rb deleted file mode 100644 index 90ce524..0000000 --- a/db/migrate/036_add_changeset_commit_date.rb +++ /dev/null @@ -1,10 +0,0 @@ -class AddChangesetCommitDate < ActiveRecord::Migration[4.2] - def self.up - add_column :changesets, :commit_date, :date - Changeset.update_all "commit_date = committed_on" - end - - def self.down - remove_column :changesets, :commit_date - end -end diff --git a/db/migrate/037_add_project_identifier.rb b/db/migrate/037_add_project_identifier.rb deleted file mode 100644 index de796d6..0000000 --- a/db/migrate/037_add_project_identifier.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddProjectIdentifier < ActiveRecord::Migration[4.2] - def self.up - add_column :projects, :identifier, :string, :limit => 20 - end - - def self.down - remove_column :projects, :identifier - end -end diff --git a/db/migrate/038_add_custom_field_is_filter.rb b/db/migrate/038_add_custom_field_is_filter.rb deleted file mode 100644 index a57c1b0..0000000 --- a/db/migrate/038_add_custom_field_is_filter.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddCustomFieldIsFilter < ActiveRecord::Migration[4.2] - def self.up - add_column :custom_fields, :is_filter, :boolean, :null => false, :default => false - end - - def self.down - remove_column :custom_fields, :is_filter - end -end diff --git a/db/migrate/039_create_watchers.rb b/db/migrate/039_create_watchers.rb deleted file mode 100644 index d14cea4..0000000 --- a/db/migrate/039_create_watchers.rb +++ /dev/null @@ -1,13 +0,0 @@ -class CreateWatchers < ActiveRecord::Migration[4.2] - def self.up - create_table :watchers do |t| - t.column :watchable_type, :string, :default => "", :null => false - t.column :watchable_id, :integer, :default => 0, :null => false - t.column :user_id, :integer - end - end - - def self.down - drop_table :watchers - end -end diff --git a/db/migrate/040_create_changesets_issues.rb b/db/migrate/040_create_changesets_issues.rb deleted file mode 100644 index d4aad0f..0000000 --- a/db/migrate/040_create_changesets_issues.rb +++ /dev/null @@ -1,13 +0,0 @@ -class CreateChangesetsIssues < ActiveRecord::Migration[4.2] - def self.up - create_table :changesets_issues, :id => false do |t| - t.column :changeset_id, :integer, :null => false - t.column :issue_id, :integer, :null => false - end - add_index :changesets_issues, [:changeset_id, :issue_id], :unique => true, :name => :changesets_issues_ids - end - - def self.down - drop_table :changesets_issues - end -end diff --git a/db/migrate/041_rename_comment_to_comments.rb b/db/migrate/041_rename_comment_to_comments.rb deleted file mode 100644 index 0239109..0000000 --- a/db/migrate/041_rename_comment_to_comments.rb +++ /dev/null @@ -1,13 +0,0 @@ -class RenameCommentToComments < ActiveRecord::Migration[4.2] - def self.up - rename_column(:comments, :comment, :comments) if ActiveRecord::Base.connection.columns(Comment.table_name).detect{|c| c.name == "comment"} - rename_column(:wiki_contents, :comment, :comments) if ActiveRecord::Base.connection.columns(WikiContent.table_name).detect{|c| c.name == "comment"} - rename_column(:wiki_content_versions, :comment, :comments) if ActiveRecord::Base.connection.columns(WikiContentVersion.table_name).detect{|c| c.name == "comment"} - rename_column(:time_entries, :comment, :comments) if ActiveRecord::Base.connection.columns(TimeEntry.table_name).detect{|c| c.name == "comment"} - rename_column(:changesets, :comment, :comments) if ActiveRecord::Base.connection.columns(Changeset.table_name).detect{|c| c.name == "comment"} - end - - def self.down - raise IrreversibleMigration - end -end diff --git a/db/migrate/042_create_issue_relations.rb b/db/migrate/042_create_issue_relations.rb deleted file mode 100644 index 98ad24f..0000000 --- a/db/migrate/042_create_issue_relations.rb +++ /dev/null @@ -1,14 +0,0 @@ -class CreateIssueRelations < ActiveRecord::Migration[4.2] - def self.up - create_table :issue_relations do |t| - t.column :issue_from_id, :integer, :null => false - t.column :issue_to_id, :integer, :null => false - t.column :relation_type, :string, :default => "", :null => false - t.column :delay, :integer - end - end - - def self.down - drop_table :issue_relations - end -end diff --git a/db/migrate/043_add_relations_permissions.rb b/db/migrate/043_add_relations_permissions.rb deleted file mode 100644 index 7250606..0000000 --- a/db/migrate/043_add_relations_permissions.rb +++ /dev/null @@ -1,14 +0,0 @@ -class AddRelationsPermissions < ActiveRecord::Migration[4.2] - # model removed - class Permission < ActiveRecord::Base; end - - def self.up - Permission.create :controller => "issue_relations", :action => "new", :description => "label_relation_new", :sort => 1080, :is_public => false, :mail_option => 0, :mail_enabled => 0 - Permission.create :controller => "issue_relations", :action => "destroy", :description => "label_relation_delete", :sort => 1085, :is_public => false, :mail_option => 0, :mail_enabled => 0 - end - - def self.down - Permission.where(:controller => "issue_relations", :action => "new").each {|p| p.destroy} - Permission.where(:controller => "issue_relations", :action => "destroy").each {|p| p.destroy} - end -end diff --git a/db/migrate/044_set_language_length_to_five.rb b/db/migrate/044_set_language_length_to_five.rb deleted file mode 100644 index 1e60069..0000000 --- a/db/migrate/044_set_language_length_to_five.rb +++ /dev/null @@ -1,9 +0,0 @@ -class SetLanguageLengthToFive < ActiveRecord::Migration[4.2] - def self.up - change_column :users, :language, :string, :limit => 5, :default => "" - end - - def self.down - raise IrreversibleMigration - end -end diff --git a/db/migrate/045_create_boards.rb b/db/migrate/045_create_boards.rb deleted file mode 100644 index 49b15ed..0000000 --- a/db/migrate/045_create_boards.rb +++ /dev/null @@ -1,18 +0,0 @@ -class CreateBoards < ActiveRecord::Migration[4.2] - def self.up - create_table :boards do |t| - t.column :project_id, :integer, :null => false - t.column :name, :string, :default => "", :null => false - t.column :description, :string - t.column :position, :integer, :default => 1 - t.column :topics_count, :integer, :default => 0, :null => false - t.column :messages_count, :integer, :default => 0, :null => false - t.column :last_message_id, :integer - end - add_index :boards, [:project_id], :name => :boards_project_id - end - - def self.down - drop_table :boards - end -end diff --git a/db/migrate/046_create_messages.rb b/db/migrate/046_create_messages.rb deleted file mode 100644 index 99d39c8..0000000 --- a/db/migrate/046_create_messages.rb +++ /dev/null @@ -1,21 +0,0 @@ -class CreateMessages < ActiveRecord::Migration[4.2] - def self.up - create_table :messages do |t| - t.column :board_id, :integer, :null => false - t.column :parent_id, :integer - t.column :subject, :string, :default => "", :null => false - t.column :content, :text - t.column :author_id, :integer - t.column :replies_count, :integer, :default => 0, :null => false - t.column :last_reply_id, :integer - t.column :created_on, :datetime, :null => false - t.column :updated_on, :datetime, :null => false - end - add_index :messages, [:board_id], :name => :messages_board_id - add_index :messages, [:parent_id], :name => :messages_parent_id - end - - def self.down - drop_table :messages - end -end diff --git a/db/migrate/047_add_boards_permissions.rb b/db/migrate/047_add_boards_permissions.rb deleted file mode 100644 index cf7938e..0000000 --- a/db/migrate/047_add_boards_permissions.rb +++ /dev/null @@ -1,16 +0,0 @@ -class AddBoardsPermissions < ActiveRecord::Migration[4.2] - # model removed - class Permission < ActiveRecord::Base; end - - def self.up - Permission.create :controller => "boards", :action => "new", :description => "button_add", :sort => 2000, :is_public => false, :mail_option => 0, :mail_enabled => 0 - Permission.create :controller => "boards", :action => "edit", :description => "button_edit", :sort => 2005, :is_public => false, :mail_option => 0, :mail_enabled => 0 - Permission.create :controller => "boards", :action => "destroy", :description => "button_delete", :sort => 2010, :is_public => false, :mail_option => 0, :mail_enabled => 0 - end - - def self.down - Permission.where(:controller => "boards", :action => "new").each {|p| p.destroy} - Permission.where(:controller => "boards", :action => "edit").each {|p| p.destroy} - Permission.where(:controller => "boards", :action => "destroy").each {|p| p.destroy} - end -end diff --git a/db/migrate/048_allow_null_version_effective_date.rb b/db/migrate/048_allow_null_version_effective_date.rb deleted file mode 100644 index 9cce1e3..0000000 --- a/db/migrate/048_allow_null_version_effective_date.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AllowNullVersionEffectiveDate < ActiveRecord::Migration[4.2] - def self.up - change_column :versions, :effective_date, :date, :default => nil, :null => true - end - - def self.down - raise IrreversibleMigration - end -end diff --git a/db/migrate/049_add_wiki_destroy_page_permission.rb b/db/migrate/049_add_wiki_destroy_page_permission.rb deleted file mode 100644 index bbeb26d..0000000 --- a/db/migrate/049_add_wiki_destroy_page_permission.rb +++ /dev/null @@ -1,12 +0,0 @@ -class AddWikiDestroyPagePermission < ActiveRecord::Migration[4.2] - # model removed - class Permission < ActiveRecord::Base; end - - def self.up - Permission.create :controller => 'wiki', :action => 'destroy', :description => 'button_delete', :sort => 1740, :is_public => false, :mail_option => 0, :mail_enabled => 0 - end - - def self.down - Permission.where(:controller => "wiki", :action => "destroy").each {|p| p.destroy} - end -end diff --git a/db/migrate/050_add_wiki_attachments_permissions.rb b/db/migrate/050_add_wiki_attachments_permissions.rb deleted file mode 100644 index fd5f358..0000000 --- a/db/migrate/050_add_wiki_attachments_permissions.rb +++ /dev/null @@ -1,14 +0,0 @@ -class AddWikiAttachmentsPermissions < ActiveRecord::Migration[4.2] - # model removed - class Permission < ActiveRecord::Base; end - - def self.up - Permission.create :controller => 'wiki', :action => 'add_attachment', :description => 'label_attachment_new', :sort => 1750, :is_public => false, :mail_option => 0, :mail_enabled => 0 - Permission.create :controller => 'wiki', :action => 'destroy_attachment', :description => 'label_attachment_delete', :sort => 1755, :is_public => false, :mail_option => 0, :mail_enabled => 0 - end - - def self.down - Permission.where(:controller => "wiki", :action => "add_attachment").each {|p| p.destroy} - Permission.where(:controller => "wiki", :action => "destroy_attachment").each {|p| p.destroy} - end -end diff --git a/db/migrate/051_add_project_status.rb b/db/migrate/051_add_project_status.rb deleted file mode 100644 index e7ceade..0000000 --- a/db/migrate/051_add_project_status.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddProjectStatus < ActiveRecord::Migration[4.2] - def self.up - add_column :projects, :status, :integer, :default => 1, :null => false - end - - def self.down - remove_column :projects, :status - end -end diff --git a/db/migrate/052_add_changes_revision.rb b/db/migrate/052_add_changes_revision.rb deleted file mode 100644 index e9b1784..0000000 --- a/db/migrate/052_add_changes_revision.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddChangesRevision < ActiveRecord::Migration[4.2] - def self.up - add_column :changes, :revision, :string - end - - def self.down - remove_column :changes, :revision - end -end diff --git a/db/migrate/053_add_changes_branch.rb b/db/migrate/053_add_changes_branch.rb deleted file mode 100644 index d8dbcfd..0000000 --- a/db/migrate/053_add_changes_branch.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddChangesBranch < ActiveRecord::Migration[4.2] - def self.up - add_column :changes, :branch, :string - end - - def self.down - remove_column :changes, :branch - end -end diff --git a/db/migrate/054_add_changesets_scmid.rb b/db/migrate/054_add_changesets_scmid.rb deleted file mode 100644 index 034facb..0000000 --- a/db/migrate/054_add_changesets_scmid.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddChangesetsScmid < ActiveRecord::Migration[4.2] - def self.up - add_column :changesets, :scmid, :string - end - - def self.down - remove_column :changesets, :scmid - end -end diff --git a/db/migrate/055_add_repositories_type.rb b/db/migrate/055_add_repositories_type.rb deleted file mode 100644 index 5ee43cb..0000000 --- a/db/migrate/055_add_repositories_type.rb +++ /dev/null @@ -1,11 +0,0 @@ -class AddRepositoriesType < ActiveRecord::Migration[4.2] - def self.up - add_column :repositories, :type, :string - # Set class name for existing SVN repositories - Repository.update_all "type = 'Subversion'" - end - - def self.down - remove_column :repositories, :type - end -end diff --git a/db/migrate/056_add_repositories_changes_permission.rb b/db/migrate/056_add_repositories_changes_permission.rb deleted file mode 100644 index 71e23be..0000000 --- a/db/migrate/056_add_repositories_changes_permission.rb +++ /dev/null @@ -1,12 +0,0 @@ -class AddRepositoriesChangesPermission < ActiveRecord::Migration[4.2] - # model removed - class Permission < ActiveRecord::Base; end - - def self.up - Permission.create :controller => 'repositories', :action => 'changes', :description => 'label_change_plural', :sort => 1475, :is_public => true, :mail_option => 0, :mail_enabled => 0 - end - - def self.down - Permission.where(:controller => "repositories", :action => "changes").each {|p| p.destroy} - end -end diff --git a/db/migrate/057_add_versions_wiki_page_title.rb b/db/migrate/057_add_versions_wiki_page_title.rb deleted file mode 100644 index cb22735..0000000 --- a/db/migrate/057_add_versions_wiki_page_title.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddVersionsWikiPageTitle < ActiveRecord::Migration[4.2] - def self.up - add_column :versions, :wiki_page_title, :string - end - - def self.down - remove_column :versions, :wiki_page_title - end -end diff --git a/db/migrate/058_add_issue_categories_assigned_to_id.rb b/db/migrate/058_add_issue_categories_assigned_to_id.rb deleted file mode 100644 index d17afdc..0000000 --- a/db/migrate/058_add_issue_categories_assigned_to_id.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddIssueCategoriesAssignedToId < ActiveRecord::Migration[4.2] - def self.up - add_column :issue_categories, :assigned_to_id, :integer - end - - def self.down - remove_column :issue_categories, :assigned_to_id - end -end diff --git a/db/migrate/059_add_roles_assignable.rb b/db/migrate/059_add_roles_assignable.rb deleted file mode 100644 index 6b4b3f9..0000000 --- a/db/migrate/059_add_roles_assignable.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddRolesAssignable < ActiveRecord::Migration[4.2] - def self.up - add_column :roles, :assignable, :boolean, :default => true - end - - def self.down - remove_column :roles, :assignable - end -end diff --git a/db/migrate/060_change_changesets_committer_limit.rb b/db/migrate/060_change_changesets_committer_limit.rb deleted file mode 100644 index d8a03b8..0000000 --- a/db/migrate/060_change_changesets_committer_limit.rb +++ /dev/null @@ -1,9 +0,0 @@ -class ChangeChangesetsCommitterLimit < ActiveRecord::Migration[4.2] - def self.up - change_column :changesets, :committer, :string, :limit => nil - end - - def self.down - change_column :changesets, :committer, :string, :limit => 30 - end -end diff --git a/db/migrate/061_add_roles_builtin.rb b/db/migrate/061_add_roles_builtin.rb deleted file mode 100644 index 65124b0..0000000 --- a/db/migrate/061_add_roles_builtin.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddRolesBuiltin < ActiveRecord::Migration[4.2] - def self.up - add_column :roles, :builtin, :integer, :default => 0, :null => false - end - - def self.down - remove_column :roles, :builtin - end -end diff --git a/db/migrate/062_insert_builtin_roles.rb b/db/migrate/062_insert_builtin_roles.rb deleted file mode 100644 index 07f902f..0000000 --- a/db/migrate/062_insert_builtin_roles.rb +++ /dev/null @@ -1,16 +0,0 @@ -class InsertBuiltinRoles < ActiveRecord::Migration[4.2] - def self.up - Role.reset_column_information - nonmember = Role.new(:name => 'Non member', :position => 0) - nonmember.builtin = Role::BUILTIN_NON_MEMBER - nonmember.save - - anonymous = Role.new(:name => 'Anonymous', :position => 0) - anonymous.builtin = Role::BUILTIN_ANONYMOUS - anonymous.save - end - - def self.down - Role.where('builtin <> 0').destroy_all - end -end diff --git a/db/migrate/063_add_roles_permissions.rb b/db/migrate/063_add_roles_permissions.rb deleted file mode 100644 index a2626f8..0000000 --- a/db/migrate/063_add_roles_permissions.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddRolesPermissions < ActiveRecord::Migration[4.2] - def self.up - add_column :roles, :permissions, :text - end - - def self.down - remove_column :roles, :permissions - end -end diff --git a/db/migrate/064_drop_permissions.rb b/db/migrate/064_drop_permissions.rb deleted file mode 100644 index 6d39519..0000000 --- a/db/migrate/064_drop_permissions.rb +++ /dev/null @@ -1,10 +0,0 @@ -class DropPermissions < ActiveRecord::Migration[4.2] - def self.up - drop_table :permissions - drop_table :permissions_roles - end - - def self.down - raise IrreversibleMigration - end -end diff --git a/db/migrate/065_add_settings_updated_on.rb b/db/migrate/065_add_settings_updated_on.rb deleted file mode 100644 index ab0b03a..0000000 --- a/db/migrate/065_add_settings_updated_on.rb +++ /dev/null @@ -1,11 +0,0 @@ -class AddSettingsUpdatedOn < ActiveRecord::Migration[4.2] - def self.up - add_column :settings, :updated_on, :timestamp - # set updated_on - Setting.all.each(&:save) - end - - def self.down - remove_column :settings, :updated_on - end -end diff --git a/db/migrate/066_add_custom_value_customized_index.rb b/db/migrate/066_add_custom_value_customized_index.rb deleted file mode 100644 index da4c725..0000000 --- a/db/migrate/066_add_custom_value_customized_index.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddCustomValueCustomizedIndex < ActiveRecord::Migration[4.2] - def self.up - add_index :custom_values, [:customized_type, :customized_id], :name => :custom_values_customized - end - - def self.down - remove_index :custom_values, :name => :custom_values_customized - end -end diff --git a/db/migrate/067_create_wiki_redirects.rb b/db/migrate/067_create_wiki_redirects.rb deleted file mode 100644 index 54b1d5d..0000000 --- a/db/migrate/067_create_wiki_redirects.rb +++ /dev/null @@ -1,15 +0,0 @@ -class CreateWikiRedirects < ActiveRecord::Migration[4.2] - def self.up - create_table :wiki_redirects do |t| - t.column :wiki_id, :integer, :null => false - t.column :title, :string - t.column :redirects_to, :string - t.column :created_on, :datetime, :null => false - end - add_index :wiki_redirects, [:wiki_id, :title], :name => :wiki_redirects_wiki_id_title - end - - def self.down - drop_table :wiki_redirects - end -end diff --git a/db/migrate/068_create_enabled_modules.rb b/db/migrate/068_create_enabled_modules.rb deleted file mode 100644 index c836be7..0000000 --- a/db/migrate/068_create_enabled_modules.rb +++ /dev/null @@ -1,18 +0,0 @@ -class CreateEnabledModules < ActiveRecord::Migration[4.2] - def self.up - create_table :enabled_modules do |t| - t.column :project_id, :integer - t.column :name, :string, :null => false - end - add_index :enabled_modules, [:project_id], :name => :enabled_modules_project_id - - # Enable all modules for existing projects - Project.all.each do |project| - project.enabled_module_names = Redmine::AccessControl.available_project_modules - end - end - - def self.down - drop_table :enabled_modules - end -end diff --git a/db/migrate/069_add_issues_estimated_hours.rb b/db/migrate/069_add_issues_estimated_hours.rb deleted file mode 100644 index d651993..0000000 --- a/db/migrate/069_add_issues_estimated_hours.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddIssuesEstimatedHours < ActiveRecord::Migration[4.2] - def self.up - add_column :issues, :estimated_hours, :float - end - - def self.down - remove_column :issues, :estimated_hours - end -end diff --git a/db/migrate/070_change_attachments_content_type_limit.rb b/db/migrate/070_change_attachments_content_type_limit.rb deleted file mode 100644 index ae9f736..0000000 --- a/db/migrate/070_change_attachments_content_type_limit.rb +++ /dev/null @@ -1,9 +0,0 @@ -class ChangeAttachmentsContentTypeLimit < ActiveRecord::Migration[4.2] - def self.up - change_column :attachments, :content_type, :string, :limit => nil - end - - def self.down - change_column :attachments, :content_type, :string, :limit => 60 - end -end diff --git a/db/migrate/071_add_queries_column_names.rb b/db/migrate/071_add_queries_column_names.rb deleted file mode 100644 index 5f6873a..0000000 --- a/db/migrate/071_add_queries_column_names.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddQueriesColumnNames < ActiveRecord::Migration[4.2] - def self.up - add_column :queries, :column_names, :text - end - - def self.down - remove_column :queries, :column_names - end -end diff --git a/db/migrate/072_add_enumerations_position.rb b/db/migrate/072_add_enumerations_position.rb deleted file mode 100644 index 804ce00..0000000 --- a/db/migrate/072_add_enumerations_position.rb +++ /dev/null @@ -1,15 +0,0 @@ -class AddEnumerationsPosition < ActiveRecord::Migration[4.2] - def self.up - add_column(:enumerations, :position, :integer, :default => 1) unless Enumeration.column_names.include?('position') - Enumeration.all.group_by(&:opt).each do |opt, enums| - enums.each_with_index do |enum, i| - # do not call model callbacks - Enumeration.where({:id => enum.id}).update_all(:position => (i+1)) - end - end - end - - def self.down - remove_column :enumerations, :position - end -end diff --git a/db/migrate/073_add_enumerations_is_default.rb b/db/migrate/073_add_enumerations_is_default.rb deleted file mode 100644 index 269cbf3..0000000 --- a/db/migrate/073_add_enumerations_is_default.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddEnumerationsIsDefault < ActiveRecord::Migration[4.2] - def self.up - add_column :enumerations, :is_default, :boolean, :default => false, :null => false - end - - def self.down - remove_column :enumerations, :is_default - end -end diff --git a/db/migrate/074_add_auth_sources_tls.rb b/db/migrate/074_add_auth_sources_tls.rb deleted file mode 100644 index 298e39e..0000000 --- a/db/migrate/074_add_auth_sources_tls.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddAuthSourcesTls < ActiveRecord::Migration[4.2] - def self.up - add_column :auth_sources, :tls, :boolean, :default => false, :null => false - end - - def self.down - remove_column :auth_sources, :tls - end -end diff --git a/db/migrate/075_add_members_mail_notification.rb b/db/migrate/075_add_members_mail_notification.rb deleted file mode 100644 index 8722e95..0000000 --- a/db/migrate/075_add_members_mail_notification.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddMembersMailNotification < ActiveRecord::Migration[4.2] - def self.up - add_column :members, :mail_notification, :boolean, :default => false, :null => false - end - - def self.down - remove_column :members, :mail_notification - end -end diff --git a/db/migrate/076_allow_null_position.rb b/db/migrate/076_allow_null_position.rb deleted file mode 100644 index a5f396f..0000000 --- a/db/migrate/076_allow_null_position.rb +++ /dev/null @@ -1,16 +0,0 @@ -class AllowNullPosition < ActiveRecord::Migration[4.2] - def self.up - Enumeration.reset_column_information - - # removes the 'not null' constraint on position fields - change_column :issue_statuses, :position, :integer, :default => 1, :null => true - change_column :roles, :position, :integer, :default => 1, :null => true - change_column :trackers, :position, :integer, :default => 1, :null => true - change_column :boards, :position, :integer, :default => 1, :null => true - change_column :enumerations, :position, :integer, :default => 1, :null => true - end - - def self.down - # nothing to do - end -end diff --git a/db/migrate/077_remove_issue_statuses_html_color.rb b/db/migrate/077_remove_issue_statuses_html_color.rb deleted file mode 100644 index fdf64ce..0000000 --- a/db/migrate/077_remove_issue_statuses_html_color.rb +++ /dev/null @@ -1,9 +0,0 @@ -class RemoveIssueStatusesHtmlColor < ActiveRecord::Migration[4.2] - def self.up - remove_column :issue_statuses, :html_color - end - - def self.down - raise IrreversibleMigration - end -end diff --git a/db/migrate/078_add_custom_fields_position.rb b/db/migrate/078_add_custom_fields_position.rb deleted file mode 100644 index ebe8441..0000000 --- a/db/migrate/078_add_custom_fields_position.rb +++ /dev/null @@ -1,15 +0,0 @@ -class AddCustomFieldsPosition < ActiveRecord::Migration[4.2] - def self.up - add_column(:custom_fields, :position, :integer, :default => 1) - CustomField.all.group_by(&:type).each do |t, fields| - fields.each_with_index do |field, i| - # do not call model callbacks - CustomField.where({:id => field.id}).update_all(:position => (i+1)) - end - end - end - - def self.down - remove_column :custom_fields, :position - end -end diff --git a/db/migrate/079_add_user_preferences_time_zone.rb b/db/migrate/079_add_user_preferences_time_zone.rb deleted file mode 100644 index fd3ac2c..0000000 --- a/db/migrate/079_add_user_preferences_time_zone.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddUserPreferencesTimeZone < ActiveRecord::Migration[4.2] - def self.up - add_column :user_preferences, :time_zone, :string - end - - def self.down - remove_column :user_preferences, :time_zone - end -end diff --git a/db/migrate/080_add_users_type.rb b/db/migrate/080_add_users_type.rb deleted file mode 100644 index 342a995..0000000 --- a/db/migrate/080_add_users_type.rb +++ /dev/null @@ -1,10 +0,0 @@ -class AddUsersType < ActiveRecord::Migration[4.2] - def self.up - add_column :users, :type, :string - User.update_all "type = 'User'" - end - - def self.down - remove_column :users, :type - end -end diff --git a/db/migrate/081_create_projects_trackers.rb b/db/migrate/081_create_projects_trackers.rb deleted file mode 100644 index 8156e39..0000000 --- a/db/migrate/081_create_projects_trackers.rb +++ /dev/null @@ -1,19 +0,0 @@ -class CreateProjectsTrackers < ActiveRecord::Migration[4.2] - def self.up - create_table :projects_trackers, :id => false do |t| - t.column :project_id, :integer, :default => 0, :null => false - t.column :tracker_id, :integer, :default => 0, :null => false - end - add_index :projects_trackers, :project_id, :name => :projects_trackers_project_id - - # Associates all trackers to all projects (as it was before) - tracker_ids = Tracker.all.collect(&:id) - Project.all.each do |project| - project.tracker_ids = tracker_ids - end - end - - def self.down - drop_table :projects_trackers - end -end diff --git a/db/migrate/082_add_messages_locked.rb b/db/migrate/082_add_messages_locked.rb deleted file mode 100644 index c88533e..0000000 --- a/db/migrate/082_add_messages_locked.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddMessagesLocked < ActiveRecord::Migration[4.2] - def self.up - add_column :messages, :locked, :boolean, :default => false - end - - def self.down - remove_column :messages, :locked - end -end diff --git a/db/migrate/083_add_messages_sticky.rb b/db/migrate/083_add_messages_sticky.rb deleted file mode 100644 index aa6dde2..0000000 --- a/db/migrate/083_add_messages_sticky.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddMessagesSticky < ActiveRecord::Migration[4.2] - def self.up - add_column :messages, :sticky, :integer, :default => 0 - end - - def self.down - remove_column :messages, :sticky - end -end diff --git a/db/migrate/084_change_auth_sources_account_limit.rb b/db/migrate/084_change_auth_sources_account_limit.rb deleted file mode 100644 index 4e2870a..0000000 --- a/db/migrate/084_change_auth_sources_account_limit.rb +++ /dev/null @@ -1,9 +0,0 @@ -class ChangeAuthSourcesAccountLimit < ActiveRecord::Migration[4.2] - def self.up - change_column :auth_sources, :account, :string, :limit => nil - end - - def self.down - change_column :auth_sources, :account, :string, :limit => 60 - end -end diff --git a/db/migrate/085_add_role_tracker_old_status_index_to_workflows.rb b/db/migrate/085_add_role_tracker_old_status_index_to_workflows.rb deleted file mode 100644 index 12c1504..0000000 --- a/db/migrate/085_add_role_tracker_old_status_index_to_workflows.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddRoleTrackerOldStatusIndexToWorkflows < ActiveRecord::Migration[4.2] - def self.up - add_index :workflows, [:role_id, :tracker_id, :old_status_id], :name => :wkfs_role_tracker_old_status - end - - def self.down - remove_index(:workflows, :name => :wkfs_role_tracker_old_status); rescue - end -end diff --git a/db/migrate/086_add_custom_fields_searchable.rb b/db/migrate/086_add_custom_fields_searchable.rb deleted file mode 100644 index 5ee1875..0000000 --- a/db/migrate/086_add_custom_fields_searchable.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddCustomFieldsSearchable < ActiveRecord::Migration[4.2] - def self.up - add_column :custom_fields, :searchable, :boolean, :default => false - end - - def self.down - remove_column :custom_fields, :searchable - end -end diff --git a/db/migrate/087_change_projects_description_to_text.rb b/db/migrate/087_change_projects_description_to_text.rb deleted file mode 100644 index 0f1d8fe..0000000 --- a/db/migrate/087_change_projects_description_to_text.rb +++ /dev/null @@ -1,8 +0,0 @@ -class ChangeProjectsDescriptionToText < ActiveRecord::Migration[4.2] - def self.up - change_column :projects, :description, :text, :null => true, :default => nil - end - - def self.down - end -end diff --git a/db/migrate/088_add_custom_fields_default_value.rb b/db/migrate/088_add_custom_fields_default_value.rb deleted file mode 100644 index 1148c07..0000000 --- a/db/migrate/088_add_custom_fields_default_value.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddCustomFieldsDefaultValue < ActiveRecord::Migration[4.2] - def self.up - add_column :custom_fields, :default_value, :text - end - - def self.down - remove_column :custom_fields, :default_value - end -end diff --git a/db/migrate/089_add_attachments_description.rb b/db/migrate/089_add_attachments_description.rb deleted file mode 100644 index f2a9666..0000000 --- a/db/migrate/089_add_attachments_description.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddAttachmentsDescription < ActiveRecord::Migration[4.2] - def self.up - add_column :attachments, :description, :string - end - - def self.down - remove_column :attachments, :description - end -end diff --git a/db/migrate/090_change_versions_name_limit.rb b/db/migrate/090_change_versions_name_limit.rb deleted file mode 100644 index 5f34cd5..0000000 --- a/db/migrate/090_change_versions_name_limit.rb +++ /dev/null @@ -1,9 +0,0 @@ -class ChangeVersionsNameLimit < ActiveRecord::Migration[4.2] - def self.up - change_column :versions, :name, :string, :limit => nil - end - - def self.down - change_column :versions, :name, :string, :limit => 30 - end -end diff --git a/db/migrate/091_change_changesets_revision_to_string.rb b/db/migrate/091_change_changesets_revision_to_string.rb deleted file mode 100644 index f92f8f7..0000000 --- a/db/migrate/091_change_changesets_revision_to_string.rb +++ /dev/null @@ -1,32 +0,0 @@ -class ChangeChangesetsRevisionToString < ActiveRecord::Migration[4.2] - def self.up - # Some backends (eg. SQLServer 2012) do not support changing the type - # of an indexed column so the index needs to be dropped first - # BUT this index is renamed with some backends (at least SQLite3) for - # some (unknown) reasons, thus we check for the other name as well - # so we don't end up with 2 identical indexes - if index_exists? :changesets, [:repository_id, :revision], :name => :changesets_repos_rev - remove_index :changesets, :name => :changesets_repos_rev - end - if index_exists? :changesets, [:repository_id, :revision], :name => :altered_changesets_repos_rev - remove_index :changesets, :name => :altered_changesets_repos_rev - end - - change_column :changesets, :revision, :string, :null => false - - add_index :changesets, [:repository_id, :revision], :unique => true, :name => :changesets_repos_rev - end - - def self.down - if index_exists? :changesets, :changesets_repos_rev - remove_index :changesets, :name => :changesets_repos_rev - end - if index_exists? :changesets, [:repository_id, :revision], :name => :altered_changesets_repos_rev - remove_index :changesets, :name => :altered_changesets_repos_rev - end - - change_column :changesets, :revision, :integer, :null => false - - add_index :changesets, [:repository_id, :revision], :unique => true, :name => :changesets_repos_rev - end -end diff --git a/db/migrate/092_change_changes_from_revision_to_string.rb b/db/migrate/092_change_changes_from_revision_to_string.rb deleted file mode 100644 index c91919c..0000000 --- a/db/migrate/092_change_changes_from_revision_to_string.rb +++ /dev/null @@ -1,9 +0,0 @@ -class ChangeChangesFromRevisionToString < ActiveRecord::Migration[4.2] - def self.up - change_column :changes, :from_revision, :string - end - - def self.down - change_column :changes, :from_revision, :integer - end -end diff --git a/db/migrate/093_add_wiki_pages_protected.rb b/db/migrate/093_add_wiki_pages_protected.rb deleted file mode 100644 index 6ff72d8..0000000 --- a/db/migrate/093_add_wiki_pages_protected.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddWikiPagesProtected < ActiveRecord::Migration[4.2] - def self.up - add_column :wiki_pages, :protected, :boolean, :default => false, :null => false - end - - def self.down - remove_column :wiki_pages, :protected - end -end diff --git a/db/migrate/094_change_projects_homepage_limit.rb b/db/migrate/094_change_projects_homepage_limit.rb deleted file mode 100644 index 950c53e..0000000 --- a/db/migrate/094_change_projects_homepage_limit.rb +++ /dev/null @@ -1,9 +0,0 @@ -class ChangeProjectsHomepageLimit < ActiveRecord::Migration[4.2] - def self.up - change_column :projects, :homepage, :string, :limit => nil, :default => '' - end - - def self.down - change_column :projects, :homepage, :string, :limit => 60, :default => '' - end -end diff --git a/db/migrate/095_add_wiki_pages_parent_id.rb b/db/migrate/095_add_wiki_pages_parent_id.rb deleted file mode 100644 index 6aff1fb..0000000 --- a/db/migrate/095_add_wiki_pages_parent_id.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddWikiPagesParentId < ActiveRecord::Migration[4.2] - def self.up - add_column :wiki_pages, :parent_id, :integer, :default => nil - end - - def self.down - remove_column :wiki_pages, :parent_id - end -end diff --git a/db/migrate/096_add_commit_access_permission.rb b/db/migrate/096_add_commit_access_permission.rb deleted file mode 100644 index 9b5fc66..0000000 --- a/db/migrate/096_add_commit_access_permission.rb +++ /dev/null @@ -1,13 +0,0 @@ -class AddCommitAccessPermission < ActiveRecord::Migration[4.2] - def self.up - Role.all.select { |r| not r.builtin? }.each do |r| - r.add_permission!(:commit_access) - end - end - - def self.down - Role.all.select { |r| not r.builtin? }.each do |r| - r.remove_permission!(:commit_access) - end - end -end diff --git a/db/migrate/097_add_view_wiki_edits_permission.rb b/db/migrate/097_add_view_wiki_edits_permission.rb deleted file mode 100644 index 1808f72..0000000 --- a/db/migrate/097_add_view_wiki_edits_permission.rb +++ /dev/null @@ -1,13 +0,0 @@ -class AddViewWikiEditsPermission < ActiveRecord::Migration[4.2] - def self.up - Role.all.each do |r| - r.add_permission!(:view_wiki_edits) if r.has_permission?(:view_wiki_pages) - end - end - - def self.down - Role.all.each do |r| - r.remove_permission!(:view_wiki_edits) - end - end -end diff --git a/db/migrate/098_set_topic_authors_as_watchers.rb b/db/migrate/098_set_topic_authors_as_watchers.rb deleted file mode 100644 index 979ae8e..0000000 --- a/db/migrate/098_set_topic_authors_as_watchers.rb +++ /dev/null @@ -1,15 +0,0 @@ -class SetTopicAuthorsAsWatchers < ActiveRecord::Migration[4.2] - def self.up - # Sets active users who created/replied a topic as watchers of the topic - # so that the new watch functionality at topic level doesn't affect notifications behaviour - Message.connection.execute("INSERT INTO #{Watcher.table_name} (watchable_type, watchable_id, user_id)" + - " SELECT DISTINCT 'Message', COALESCE(m.parent_id, m.id), m.author_id" + - " FROM #{Message.table_name} m, #{User.table_name} u" + - " WHERE m.author_id = u.id AND u.status = 1") - end - - def self.down - # Removes all message watchers - Watcher.where("watchable_type = 'Message'").delete_all - end -end diff --git a/db/migrate/099_add_delete_wiki_pages_attachments_permission.rb b/db/migrate/099_add_delete_wiki_pages_attachments_permission.rb deleted file mode 100644 index b016bfc..0000000 --- a/db/migrate/099_add_delete_wiki_pages_attachments_permission.rb +++ /dev/null @@ -1,13 +0,0 @@ -class AddDeleteWikiPagesAttachmentsPermission < ActiveRecord::Migration[4.2] - def self.up - Role.all.each do |r| - r.add_permission!(:delete_wiki_pages_attachments) if r.has_permission?(:edit_wiki_pages) - end - end - - def self.down - Role.all.each do |r| - r.remove_permission!(:delete_wiki_pages_attachments) - end - end -end diff --git a/db/migrate/100_add_changesets_user_id.rb b/db/migrate/100_add_changesets_user_id.rb deleted file mode 100644 index 8b722ae..0000000 --- a/db/migrate/100_add_changesets_user_id.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddChangesetsUserId < ActiveRecord::Migration[4.2] - def self.up - add_column :changesets, :user_id, :integer, :default => nil - end - - def self.down - remove_column :changesets, :user_id - end -end diff --git a/db/migrate/101_populate_changesets_user_id.rb b/db/migrate/101_populate_changesets_user_id.rb deleted file mode 100644 index 7e7d81d..0000000 --- a/db/migrate/101_populate_changesets_user_id.rb +++ /dev/null @@ -1,18 +0,0 @@ -class PopulateChangesetsUserId < ActiveRecord::Migration[4.2] - def self.up - committers = Changeset.connection.select_values("SELECT DISTINCT committer FROM #{Changeset.table_name}") - committers.each do |committer| - next if committer.blank? - if committer.strip =~ /^([^<]+)(<(.*)>)?$/ - username, email = $1.strip, $3 - u = User.find_by_login(username) - u ||= User.find_by_mail(email) unless email.blank? - Changeset.where(["committer = ?", committer]).update_all("user_id = #{u.id}") unless u.nil? - end - end - end - - def self.down - Changeset.update_all('user_id = NULL') - end -end diff --git a/db/migrate/102_add_custom_fields_editable.rb b/db/migrate/102_add_custom_fields_editable.rb deleted file mode 100644 index 28b73cc..0000000 --- a/db/migrate/102_add_custom_fields_editable.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddCustomFieldsEditable < ActiveRecord::Migration[4.2] - def self.up - add_column :custom_fields, :editable, :boolean, :default => true - end - - def self.down - remove_column :custom_fields, :editable - end -end diff --git a/db/migrate/103_set_custom_fields_editable.rb b/db/migrate/103_set_custom_fields_editable.rb deleted file mode 100644 index c43846c..0000000 --- a/db/migrate/103_set_custom_fields_editable.rb +++ /dev/null @@ -1,9 +0,0 @@ -class SetCustomFieldsEditable < ActiveRecord::Migration[4.2] - def self.up - UserCustomField.update_all("editable = #{CustomField.connection.quoted_false}") - end - - def self.down - UserCustomField.update_all("editable = #{CustomField.connection.quoted_true}") - end -end diff --git a/db/migrate/104_add_projects_lft_and_rgt.rb b/db/migrate/104_add_projects_lft_and_rgt.rb deleted file mode 100644 index 77569fc..0000000 --- a/db/migrate/104_add_projects_lft_and_rgt.rb +++ /dev/null @@ -1,11 +0,0 @@ -class AddProjectsLftAndRgt < ActiveRecord::Migration[4.2] - def self.up - add_column :projects, :lft, :integer - add_column :projects, :rgt, :integer - end - - def self.down - remove_column :projects, :lft - remove_column :projects, :rgt - end -end diff --git a/db/migrate/105_build_projects_tree.rb b/db/migrate/105_build_projects_tree.rb deleted file mode 100644 index 27ca3df..0000000 --- a/db/migrate/105_build_projects_tree.rb +++ /dev/null @@ -1,8 +0,0 @@ -class BuildProjectsTree < ActiveRecord::Migration[4.2] - def self.up - Project.rebuild_tree! - end - - def self.down - end -end diff --git a/db/migrate/106_remove_projects_projects_count.rb b/db/migrate/106_remove_projects_projects_count.rb deleted file mode 100644 index 4f14974..0000000 --- a/db/migrate/106_remove_projects_projects_count.rb +++ /dev/null @@ -1,9 +0,0 @@ -class RemoveProjectsProjectsCount < ActiveRecord::Migration[4.2] - def self.up - remove_column :projects, :projects_count - end - - def self.down - add_column :projects, :projects_count, :integer, :default => 0 - end -end diff --git a/db/migrate/107_add_open_id_authentication_tables.rb b/db/migrate/107_add_open_id_authentication_tables.rb deleted file mode 100644 index 3d6d6e9..0000000 --- a/db/migrate/107_add_open_id_authentication_tables.rb +++ /dev/null @@ -1,20 +0,0 @@ -class AddOpenIdAuthenticationTables < ActiveRecord::Migration[4.2] - def self.up - create_table :open_id_authentication_associations, :force => true do |t| - t.integer :issued, :lifetime - t.string :handle, :assoc_type - t.binary :server_url, :secret - end - - create_table :open_id_authentication_nonces, :force => true do |t| - t.integer :timestamp, :null => false - t.string :server_url, :null => true - t.string :salt, :null => false - end - end - - def self.down - drop_table :open_id_authentication_associations - drop_table :open_id_authentication_nonces - end -end diff --git a/db/migrate/108_add_identity_url_to_users.rb b/db/migrate/108_add_identity_url_to_users.rb deleted file mode 100644 index 009743c..0000000 --- a/db/migrate/108_add_identity_url_to_users.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddIdentityUrlToUsers < ActiveRecord::Migration[4.2] - def self.up - add_column :users, :identity_url, :string - end - - def self.down - remove_column :users, :identity_url - end -end diff --git a/db/migrate/20090214190337_add_watchers_user_id_type_index.rb b/db/migrate/20090214190337_add_watchers_user_id_type_index.rb deleted file mode 100644 index c60a3b2..0000000 --- a/db/migrate/20090214190337_add_watchers_user_id_type_index.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddWatchersUserIdTypeIndex < ActiveRecord::Migration[4.2] - def self.up - add_index :watchers, [:user_id, :watchable_type], :name => :watchers_user_id_type - end - - def self.down - remove_index :watchers, :name => :watchers_user_id_type - end -end diff --git a/db/migrate/20090312172426_add_queries_sort_criteria.rb b/db/migrate/20090312172426_add_queries_sort_criteria.rb deleted file mode 100644 index c5bc030..0000000 --- a/db/migrate/20090312172426_add_queries_sort_criteria.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddQueriesSortCriteria < ActiveRecord::Migration[4.2] - def self.up - add_column :queries, :sort_criteria, :text - end - - def self.down - remove_column :queries, :sort_criteria - end -end diff --git a/db/migrate/20090312194159_add_projects_trackers_unique_index.rb b/db/migrate/20090312194159_add_projects_trackers_unique_index.rb deleted file mode 100644 index 24fb6c2..0000000 --- a/db/migrate/20090312194159_add_projects_trackers_unique_index.rb +++ /dev/null @@ -1,21 +0,0 @@ -class AddProjectsTrackersUniqueIndex < ActiveRecord::Migration[4.2] - def self.up - remove_duplicates - add_index :projects_trackers, [:project_id, :tracker_id], :name => :projects_trackers_unique, :unique => true - end - - def self.down - remove_index :projects_trackers, :name => :projects_trackers_unique - end - - # Removes duplicates in projects_trackers table - def self.remove_duplicates - Project.all.each do |project| - ids = project.trackers.collect(&:id) - unless ids == ids.uniq - project.trackers.clear - project.tracker_ids = ids.uniq - end - end - end -end diff --git a/db/migrate/20090318181151_extend_settings_name.rb b/db/migrate/20090318181151_extend_settings_name.rb deleted file mode 100644 index 1091dac..0000000 --- a/db/migrate/20090318181151_extend_settings_name.rb +++ /dev/null @@ -1,9 +0,0 @@ -class ExtendSettingsName < ActiveRecord::Migration[4.2] - def self.up - change_column :settings, :name, :string, :limit => 255, :default => '', :null => false - end - - def self.down - raise ActiveRecord::IrreversibleMigration - end -end diff --git a/db/migrate/20090323224724_add_type_to_enumerations.rb b/db/migrate/20090323224724_add_type_to_enumerations.rb deleted file mode 100644 index 100468d..0000000 --- a/db/migrate/20090323224724_add_type_to_enumerations.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddTypeToEnumerations < ActiveRecord::Migration[4.2] - def self.up - add_column :enumerations, :type, :string - end - - def self.down - remove_column :enumerations, :type - end -end diff --git a/db/migrate/20090401221305_update_enumerations_to_sti.rb b/db/migrate/20090401221305_update_enumerations_to_sti.rb deleted file mode 100644 index 1ba4107..0000000 --- a/db/migrate/20090401221305_update_enumerations_to_sti.rb +++ /dev/null @@ -1,11 +0,0 @@ -class UpdateEnumerationsToSti < ActiveRecord::Migration[4.2] - def self.up - Enumeration.where("opt = 'IPRI'").update_all("type = 'IssuePriority'") - Enumeration.where("opt = 'DCAT'").update_all("type = 'DocumentCategory'") - Enumeration.where("opt = 'ACTI'").update_all("type = 'TimeEntryActivity'") - end - - def self.down - # no-op - end -end diff --git a/db/migrate/20090401231134_add_active_field_to_enumerations.rb b/db/migrate/20090401231134_add_active_field_to_enumerations.rb deleted file mode 100644 index 5b9e432..0000000 --- a/db/migrate/20090401231134_add_active_field_to_enumerations.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddActiveFieldToEnumerations < ActiveRecord::Migration[4.2] - def self.up - add_column :enumerations, :active, :boolean, :default => true, :null => false - end - - def self.down - remove_column :enumerations, :active - end -end diff --git a/db/migrate/20090403001910_add_project_to_enumerations.rb b/db/migrate/20090403001910_add_project_to_enumerations.rb deleted file mode 100644 index a909289..0000000 --- a/db/migrate/20090403001910_add_project_to_enumerations.rb +++ /dev/null @@ -1,11 +0,0 @@ -class AddProjectToEnumerations < ActiveRecord::Migration[4.2] - def self.up - add_column :enumerations, :project_id, :integer, :null => true, :default => nil - add_index :enumerations, :project_id - end - - def self.down - remove_index :enumerations, :project_id - remove_column :enumerations, :project_id - end -end diff --git a/db/migrate/20090406161854_add_parent_id_to_enumerations.rb b/db/migrate/20090406161854_add_parent_id_to_enumerations.rb deleted file mode 100644 index 546c0b7..0000000 --- a/db/migrate/20090406161854_add_parent_id_to_enumerations.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddParentIdToEnumerations < ActiveRecord::Migration[4.2] - def self.up - add_column :enumerations, :parent_id, :integer, :null => true, :default => nil - end - - def self.down - remove_column :enumerations, :parent_id - end -end diff --git a/db/migrate/20090425161243_add_queries_group_by.rb b/db/migrate/20090425161243_add_queries_group_by.rb deleted file mode 100644 index 07e1c59..0000000 --- a/db/migrate/20090425161243_add_queries_group_by.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddQueriesGroupBy < ActiveRecord::Migration[4.2] - def self.up - add_column :queries, :group_by, :string - end - - def self.down - remove_column :queries, :group_by - end -end diff --git a/db/migrate/20090503121501_create_member_roles.rb b/db/migrate/20090503121501_create_member_roles.rb deleted file mode 100644 index 69ce2e8..0000000 --- a/db/migrate/20090503121501_create_member_roles.rb +++ /dev/null @@ -1,12 +0,0 @@ -class CreateMemberRoles < ActiveRecord::Migration[4.2] - def self.up - create_table :member_roles do |t| - t.column :member_id, :integer, :null => false - t.column :role_id, :integer, :null => false - end - end - - def self.down - drop_table :member_roles - end -end diff --git a/db/migrate/20090503121505_populate_member_roles.rb b/db/migrate/20090503121505_populate_member_roles.rb deleted file mode 100644 index 75ba261..0000000 --- a/db/migrate/20090503121505_populate_member_roles.rb +++ /dev/null @@ -1,12 +0,0 @@ -class PopulateMemberRoles < ActiveRecord::Migration[4.2] - def self.up - MemberRole.delete_all - Member.all.each do |member| - MemberRole.insert!({:member_id => member.id, :role_id => member.role_id}) - end - end - - def self.down - MemberRole.delete_all - end -end diff --git a/db/migrate/20090503121510_drop_members_role_id.rb b/db/migrate/20090503121510_drop_members_role_id.rb deleted file mode 100644 index 7b8e3cf..0000000 --- a/db/migrate/20090503121510_drop_members_role_id.rb +++ /dev/null @@ -1,9 +0,0 @@ -class DropMembersRoleId < ActiveRecord::Migration[4.2] - def self.up - remove_column :members, :role_id - end - - def self.down - raise IrreversibleMigration - end -end diff --git a/db/migrate/20090614091200_fix_messages_sticky_null.rb b/db/migrate/20090614091200_fix_messages_sticky_null.rb deleted file mode 100644 index 66ea4bf..0000000 --- a/db/migrate/20090614091200_fix_messages_sticky_null.rb +++ /dev/null @@ -1,9 +0,0 @@ -class FixMessagesStickyNull < ActiveRecord::Migration[4.2] - def self.up - Message.where('sticky IS NULL').update_all('sticky = 0') - end - - def self.down - # nothing to do - end -end diff --git a/db/migrate/20090704172350_populate_users_type.rb b/db/migrate/20090704172350_populate_users_type.rb deleted file mode 100644 index 8342f97..0000000 --- a/db/migrate/20090704172350_populate_users_type.rb +++ /dev/null @@ -1,8 +0,0 @@ -class PopulateUsersType < ActiveRecord::Migration[4.2] - def self.up - Principal.where("type IS NULL").update_all("type = 'User'") - end - - def self.down - end -end diff --git a/db/migrate/20090704172355_create_groups_users.rb b/db/migrate/20090704172355_create_groups_users.rb deleted file mode 100644 index 6d67630..0000000 --- a/db/migrate/20090704172355_create_groups_users.rb +++ /dev/null @@ -1,13 +0,0 @@ -class CreateGroupsUsers < ActiveRecord::Migration[4.2] - def self.up - create_table :groups_users, :id => false do |t| - t.column :group_id, :integer, :null => false - t.column :user_id, :integer, :null => false - end - add_index :groups_users, [:group_id, :user_id], :unique => true, :name => :groups_users_ids - end - - def self.down - drop_table :groups_users - end -end diff --git a/db/migrate/20090704172358_add_member_roles_inherited_from.rb b/db/migrate/20090704172358_add_member_roles_inherited_from.rb deleted file mode 100644 index 45f0e45..0000000 --- a/db/migrate/20090704172358_add_member_roles_inherited_from.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddMemberRolesInheritedFrom < ActiveRecord::Migration[4.2] - def self.up - add_column :member_roles, :inherited_from, :integer - end - - def self.down - remove_column :member_roles, :inherited_from - end -end diff --git a/db/migrate/20091010093521_fix_users_custom_values.rb b/db/migrate/20091010093521_fix_users_custom_values.rb deleted file mode 100644 index 38cabac..0000000 --- a/db/migrate/20091010093521_fix_users_custom_values.rb +++ /dev/null @@ -1,11 +0,0 @@ -class FixUsersCustomValues < ActiveRecord::Migration[4.2] - def self.up - CustomValue.where("customized_type = 'User'"). - update_all("customized_type = 'Principal'") - end - - def self.down - CustomValue.where("customized_type = 'Principal'"). - update_all("customized_type = 'User'") - end -end diff --git a/db/migrate/20091017212227_add_missing_indexes_to_workflows.rb b/db/migrate/20091017212227_add_missing_indexes_to_workflows.rb deleted file mode 100644 index bf84c4f..0000000 --- a/db/migrate/20091017212227_add_missing_indexes_to_workflows.rb +++ /dev/null @@ -1,13 +0,0 @@ -class AddMissingIndexesToWorkflows < ActiveRecord::Migration[4.2] - def self.up - add_index :workflows, :old_status_id - add_index :workflows, :role_id - add_index :workflows, :new_status_id - end - - def self.down - remove_index :workflows, :old_status_id - remove_index :workflows, :role_id - remove_index :workflows, :new_status_id - end -end diff --git a/db/migrate/20091017212457_add_missing_indexes_to_custom_fields_projects.rb b/db/migrate/20091017212457_add_missing_indexes_to_custom_fields_projects.rb deleted file mode 100644 index 235f1e6..0000000 --- a/db/migrate/20091017212457_add_missing_indexes_to_custom_fields_projects.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddMissingIndexesToCustomFieldsProjects < ActiveRecord::Migration[4.2] - def self.up - add_index :custom_fields_projects, [:custom_field_id, :project_id] - end - - def self.down - remove_index :custom_fields_projects, :column => [:custom_field_id, :project_id] - end -end diff --git a/db/migrate/20091017212644_add_missing_indexes_to_messages.rb b/db/migrate/20091017212644_add_missing_indexes_to_messages.rb deleted file mode 100644 index 06897e1..0000000 --- a/db/migrate/20091017212644_add_missing_indexes_to_messages.rb +++ /dev/null @@ -1,11 +0,0 @@ -class AddMissingIndexesToMessages < ActiveRecord::Migration[4.2] - def self.up - add_index :messages, :last_reply_id - add_index :messages, :author_id - end - - def self.down - remove_index :messages, :last_reply_id - remove_index :messages, :author_id - end -end diff --git a/db/migrate/20091017212938_add_missing_indexes_to_repositories.rb b/db/migrate/20091017212938_add_missing_indexes_to_repositories.rb deleted file mode 100644 index c9ac3f1..0000000 --- a/db/migrate/20091017212938_add_missing_indexes_to_repositories.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddMissingIndexesToRepositories < ActiveRecord::Migration[4.2] - def self.up - add_index :repositories, :project_id - end - - def self.down - remove_index :repositories, :project_id - end -end diff --git a/db/migrate/20091017213027_add_missing_indexes_to_comments.rb b/db/migrate/20091017213027_add_missing_indexes_to_comments.rb deleted file mode 100644 index 4bb8c00..0000000 --- a/db/migrate/20091017213027_add_missing_indexes_to_comments.rb +++ /dev/null @@ -1,11 +0,0 @@ -class AddMissingIndexesToComments < ActiveRecord::Migration[4.2] - def self.up - add_index :comments, [:commented_id, :commented_type] - add_index :comments, :author_id - end - - def self.down - remove_index :comments, :column => [:commented_id, :commented_type] - remove_index :comments, :author_id - end -end diff --git a/db/migrate/20091017213113_add_missing_indexes_to_enumerations.rb b/db/migrate/20091017213113_add_missing_indexes_to_enumerations.rb deleted file mode 100644 index e97b993..0000000 --- a/db/migrate/20091017213113_add_missing_indexes_to_enumerations.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddMissingIndexesToEnumerations < ActiveRecord::Migration[4.2] - def self.up - add_index :enumerations, [:id, :type] - end - - def self.down - remove_index :enumerations, :column => [:id, :type] - end -end diff --git a/db/migrate/20091017213151_add_missing_indexes_to_wiki_pages.rb b/db/migrate/20091017213151_add_missing_indexes_to_wiki_pages.rb deleted file mode 100644 index edeca8d..0000000 --- a/db/migrate/20091017213151_add_missing_indexes_to_wiki_pages.rb +++ /dev/null @@ -1,11 +0,0 @@ -class AddMissingIndexesToWikiPages < ActiveRecord::Migration[4.2] - def self.up - add_index :wiki_pages, :wiki_id - add_index :wiki_pages, :parent_id - end - - def self.down - remove_index :wiki_pages, :wiki_id - remove_index :wiki_pages, :parent_id - end -end diff --git a/db/migrate/20091017213228_add_missing_indexes_to_watchers.rb b/db/migrate/20091017213228_add_missing_indexes_to_watchers.rb deleted file mode 100644 index 18e948e..0000000 --- a/db/migrate/20091017213228_add_missing_indexes_to_watchers.rb +++ /dev/null @@ -1,11 +0,0 @@ -class AddMissingIndexesToWatchers < ActiveRecord::Migration[4.2] - def self.up - add_index :watchers, :user_id - add_index :watchers, [:watchable_id, :watchable_type] - end - - def self.down - remove_index :watchers, :user_id - remove_index :watchers, :column => [:watchable_id, :watchable_type] - end -end diff --git a/db/migrate/20091017213257_add_missing_indexes_to_auth_sources.rb b/db/migrate/20091017213257_add_missing_indexes_to_auth_sources.rb deleted file mode 100644 index eca4522..0000000 --- a/db/migrate/20091017213257_add_missing_indexes_to_auth_sources.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddMissingIndexesToAuthSources < ActiveRecord::Migration[4.2] - def self.up - add_index :auth_sources, [:id, :type] - end - - def self.down - remove_index :auth_sources, :column => [:id, :type] - end -end diff --git a/db/migrate/20091017213332_add_missing_indexes_to_documents.rb b/db/migrate/20091017213332_add_missing_indexes_to_documents.rb deleted file mode 100644 index a4e7e95..0000000 --- a/db/migrate/20091017213332_add_missing_indexes_to_documents.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddMissingIndexesToDocuments < ActiveRecord::Migration[4.2] - def self.up - add_index :documents, :category_id - end - - def self.down - remove_index :documents, :category_id - end -end diff --git a/db/migrate/20091017213444_add_missing_indexes_to_tokens.rb b/db/migrate/20091017213444_add_missing_indexes_to_tokens.rb deleted file mode 100644 index 27ce82a..0000000 --- a/db/migrate/20091017213444_add_missing_indexes_to_tokens.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddMissingIndexesToTokens < ActiveRecord::Migration[4.2] - def self.up - add_index :tokens, :user_id - end - - def self.down - remove_index :tokens, :user_id - end -end diff --git a/db/migrate/20091017213536_add_missing_indexes_to_changesets.rb b/db/migrate/20091017213536_add_missing_indexes_to_changesets.rb deleted file mode 100644 index a719108..0000000 --- a/db/migrate/20091017213536_add_missing_indexes_to_changesets.rb +++ /dev/null @@ -1,11 +0,0 @@ -class AddMissingIndexesToChangesets < ActiveRecord::Migration[4.2] - def self.up - add_index :changesets, :user_id - add_index :changesets, :repository_id - end - - def self.down - remove_index :changesets, :user_id - remove_index :changesets, :repository_id - end -end diff --git a/db/migrate/20091017213642_add_missing_indexes_to_issue_categories.rb b/db/migrate/20091017213642_add_missing_indexes_to_issue_categories.rb deleted file mode 100644 index 0a6282a..0000000 --- a/db/migrate/20091017213642_add_missing_indexes_to_issue_categories.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddMissingIndexesToIssueCategories < ActiveRecord::Migration[4.2] - def self.up - add_index :issue_categories, :assigned_to_id - end - - def self.down - remove_index :issue_categories, :assigned_to_id - end -end diff --git a/db/migrate/20091017213716_add_missing_indexes_to_member_roles.rb b/db/migrate/20091017213716_add_missing_indexes_to_member_roles.rb deleted file mode 100644 index fed50d6..0000000 --- a/db/migrate/20091017213716_add_missing_indexes_to_member_roles.rb +++ /dev/null @@ -1,11 +0,0 @@ -class AddMissingIndexesToMemberRoles < ActiveRecord::Migration[4.2] - def self.up - add_index :member_roles, :member_id - add_index :member_roles, :role_id - end - - def self.down - remove_index :member_roles, :member_id - remove_index :member_roles, :role_id - end -end diff --git a/db/migrate/20091017213757_add_missing_indexes_to_boards.rb b/db/migrate/20091017213757_add_missing_indexes_to_boards.rb deleted file mode 100644 index 5e5a97a..0000000 --- a/db/migrate/20091017213757_add_missing_indexes_to_boards.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddMissingIndexesToBoards < ActiveRecord::Migration[4.2] - def self.up - add_index :boards, :last_message_id - end - - def self.down - remove_index :boards, :last_message_id - end -end diff --git a/db/migrate/20091017213835_add_missing_indexes_to_user_preferences.rb b/db/migrate/20091017213835_add_missing_indexes_to_user_preferences.rb deleted file mode 100644 index 83a259e..0000000 --- a/db/migrate/20091017213835_add_missing_indexes_to_user_preferences.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddMissingIndexesToUserPreferences < ActiveRecord::Migration[4.2] - def self.up - add_index :user_preferences, :user_id - end - - def self.down - remove_index :user_preferences, :user_id - end -end diff --git a/db/migrate/20091017213910_add_missing_indexes_to_issues.rb b/db/migrate/20091017213910_add_missing_indexes_to_issues.rb deleted file mode 100644 index a337ebc..0000000 --- a/db/migrate/20091017213910_add_missing_indexes_to_issues.rb +++ /dev/null @@ -1,21 +0,0 @@ -class AddMissingIndexesToIssues < ActiveRecord::Migration[4.2] - def self.up - add_index :issues, :status_id - add_index :issues, :category_id - add_index :issues, :assigned_to_id - add_index :issues, :fixed_version_id - add_index :issues, :tracker_id - add_index :issues, :priority_id - add_index :issues, :author_id - end - - def self.down - remove_index :issues, :status_id - remove_index :issues, :category_id - remove_index :issues, :assigned_to_id - remove_index :issues, :fixed_version_id - remove_index :issues, :tracker_id - remove_index :issues, :priority_id - remove_index :issues, :author_id - end -end diff --git a/db/migrate/20091017214015_add_missing_indexes_to_members.rb b/db/migrate/20091017214015_add_missing_indexes_to_members.rb deleted file mode 100644 index 6932580..0000000 --- a/db/migrate/20091017214015_add_missing_indexes_to_members.rb +++ /dev/null @@ -1,11 +0,0 @@ -class AddMissingIndexesToMembers < ActiveRecord::Migration[4.2] - def self.up - add_index :members, :user_id - add_index :members, :project_id - end - - def self.down - remove_index :members, :user_id - remove_index :members, :project_id - end -end diff --git a/db/migrate/20091017214107_add_missing_indexes_to_custom_fields.rb b/db/migrate/20091017214107_add_missing_indexes_to_custom_fields.rb deleted file mode 100644 index 7dbb0e7..0000000 --- a/db/migrate/20091017214107_add_missing_indexes_to_custom_fields.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddMissingIndexesToCustomFields < ActiveRecord::Migration[4.2] - def self.up - add_index :custom_fields, [:id, :type] - end - - def self.down - remove_index :custom_fields, :column => [:id, :type] - end -end diff --git a/db/migrate/20091017214136_add_missing_indexes_to_queries.rb b/db/migrate/20091017214136_add_missing_indexes_to_queries.rb deleted file mode 100644 index 9a8d6ad..0000000 --- a/db/migrate/20091017214136_add_missing_indexes_to_queries.rb +++ /dev/null @@ -1,11 +0,0 @@ -class AddMissingIndexesToQueries < ActiveRecord::Migration[4.2] - def self.up - add_index :queries, :project_id - add_index :queries, :user_id - end - - def self.down - remove_index :queries, :project_id - remove_index :queries, :user_id - end -end diff --git a/db/migrate/20091017214236_add_missing_indexes_to_time_entries.rb b/db/migrate/20091017214236_add_missing_indexes_to_time_entries.rb deleted file mode 100644 index cbe4166..0000000 --- a/db/migrate/20091017214236_add_missing_indexes_to_time_entries.rb +++ /dev/null @@ -1,11 +0,0 @@ -class AddMissingIndexesToTimeEntries < ActiveRecord::Migration[4.2] - def self.up - add_index :time_entries, :activity_id - add_index :time_entries, :user_id - end - - def self.down - remove_index :time_entries, :activity_id - remove_index :time_entries, :user_id - end -end diff --git a/db/migrate/20091017214308_add_missing_indexes_to_news.rb b/db/migrate/20091017214308_add_missing_indexes_to_news.rb deleted file mode 100644 index e6194f4..0000000 --- a/db/migrate/20091017214308_add_missing_indexes_to_news.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddMissingIndexesToNews < ActiveRecord::Migration[4.2] - def self.up - add_index :news, :author_id - end - - def self.down - remove_index :news, :author_id - end -end diff --git a/db/migrate/20091017214336_add_missing_indexes_to_users.rb b/db/migrate/20091017214336_add_missing_indexes_to_users.rb deleted file mode 100644 index 7eedd10..0000000 --- a/db/migrate/20091017214336_add_missing_indexes_to_users.rb +++ /dev/null @@ -1,11 +0,0 @@ -class AddMissingIndexesToUsers < ActiveRecord::Migration[4.2] - def self.up - add_index :users, [:id, :type] - add_index :users, :auth_source_id - end - - def self.down - remove_index :users, :column => [:id, :type] - remove_index :users, :auth_source_id - end -end diff --git a/db/migrate/20091017214406_add_missing_indexes_to_attachments.rb b/db/migrate/20091017214406_add_missing_indexes_to_attachments.rb deleted file mode 100644 index 7fee1ea..0000000 --- a/db/migrate/20091017214406_add_missing_indexes_to_attachments.rb +++ /dev/null @@ -1,11 +0,0 @@ -class AddMissingIndexesToAttachments < ActiveRecord::Migration[4.2] - def self.up - add_index :attachments, [:container_id, :container_type] - add_index :attachments, :author_id - end - - def self.down - remove_index :attachments, :column => [:container_id, :container_type] - remove_index :attachments, :author_id - end -end diff --git a/db/migrate/20091017214440_add_missing_indexes_to_wiki_contents.rb b/db/migrate/20091017214440_add_missing_indexes_to_wiki_contents.rb deleted file mode 100644 index 47888d4..0000000 --- a/db/migrate/20091017214440_add_missing_indexes_to_wiki_contents.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddMissingIndexesToWikiContents < ActiveRecord::Migration[4.2] - def self.up - add_index :wiki_contents, :author_id - end - - def self.down - remove_index :wiki_contents, :author_id - end -end diff --git a/db/migrate/20091017214519_add_missing_indexes_to_custom_values.rb b/db/migrate/20091017214519_add_missing_indexes_to_custom_values.rb deleted file mode 100644 index 8b83c64..0000000 --- a/db/migrate/20091017214519_add_missing_indexes_to_custom_values.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddMissingIndexesToCustomValues < ActiveRecord::Migration[4.2] - def self.up - add_index :custom_values, :custom_field_id - end - - def self.down - remove_index :custom_values, :custom_field_id - end -end diff --git a/db/migrate/20091017214611_add_missing_indexes_to_journals.rb b/db/migrate/20091017214611_add_missing_indexes_to_journals.rb deleted file mode 100644 index 26e37bf..0000000 --- a/db/migrate/20091017214611_add_missing_indexes_to_journals.rb +++ /dev/null @@ -1,11 +0,0 @@ -class AddMissingIndexesToJournals < ActiveRecord::Migration[4.2] - def self.up - add_index :journals, :user_id - add_index :journals, :journalized_id - end - - def self.down - remove_index :journals, :user_id - remove_index :journals, :journalized_id - end -end diff --git a/db/migrate/20091017214644_add_missing_indexes_to_issue_relations.rb b/db/migrate/20091017214644_add_missing_indexes_to_issue_relations.rb deleted file mode 100644 index 29de45f..0000000 --- a/db/migrate/20091017214644_add_missing_indexes_to_issue_relations.rb +++ /dev/null @@ -1,11 +0,0 @@ -class AddMissingIndexesToIssueRelations < ActiveRecord::Migration[4.2] - def self.up - add_index :issue_relations, :issue_from_id - add_index :issue_relations, :issue_to_id - end - - def self.down - remove_index :issue_relations, :issue_from_id - remove_index :issue_relations, :issue_to_id - end -end diff --git a/db/migrate/20091017214720_add_missing_indexes_to_wiki_redirects.rb b/db/migrate/20091017214720_add_missing_indexes_to_wiki_redirects.rb deleted file mode 100644 index a0ce07f..0000000 --- a/db/migrate/20091017214720_add_missing_indexes_to_wiki_redirects.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddMissingIndexesToWikiRedirects < ActiveRecord::Migration[4.2] - def self.up - add_index :wiki_redirects, :wiki_id - end - - def self.down - remove_index :wiki_redirects, :wiki_id - end -end diff --git a/db/migrate/20091017214750_add_missing_indexes_to_custom_fields_trackers.rb b/db/migrate/20091017214750_add_missing_indexes_to_custom_fields_trackers.rb deleted file mode 100644 index 23b6e5e..0000000 --- a/db/migrate/20091017214750_add_missing_indexes_to_custom_fields_trackers.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddMissingIndexesToCustomFieldsTrackers < ActiveRecord::Migration[4.2] - def self.up - add_index :custom_fields_trackers, [:custom_field_id, :tracker_id] - end - - def self.down - remove_index :custom_fields_trackers, :column => [:custom_field_id, :tracker_id] - end -end diff --git a/db/migrate/20091025163651_add_activity_indexes.rb b/db/migrate/20091025163651_add_activity_indexes.rb deleted file mode 100644 index 0bbf91b..0000000 --- a/db/migrate/20091025163651_add_activity_indexes.rb +++ /dev/null @@ -1,25 +0,0 @@ -class AddActivityIndexes < ActiveRecord::Migration[4.2] - def self.up - add_index :journals, :created_on - add_index :changesets, :committed_on - add_index :wiki_content_versions, :updated_on - add_index :messages, :created_on - add_index :issues, :created_on - add_index :news, :created_on - add_index :attachments, :created_on - add_index :documents, :created_on - add_index :time_entries, :created_on - end - - def self.down - remove_index :journals, :created_on - remove_index :changesets, :committed_on - remove_index :wiki_content_versions, :updated_on - remove_index :messages, :created_on - remove_index :issues, :created_on - remove_index :news, :created_on - remove_index :attachments, :created_on - remove_index :documents, :created_on - remove_index :time_entries, :created_on - end -end diff --git a/db/migrate/20091108092559_add_versions_status.rb b/db/migrate/20091108092559_add_versions_status.rb deleted file mode 100644 index 36db4d8..0000000 --- a/db/migrate/20091108092559_add_versions_status.rb +++ /dev/null @@ -1,10 +0,0 @@ -class AddVersionsStatus < ActiveRecord::Migration[4.2] - def self.up - add_column :versions, :status, :string, :default => 'open' - Version.update_all("status = 'open'") - end - - def self.down - remove_column :versions, :status - end -end diff --git a/db/migrate/20091114105931_add_view_issues_permission.rb b/db/migrate/20091114105931_add_view_issues_permission.rb deleted file mode 100644 index a0a9bcb..0000000 --- a/db/migrate/20091114105931_add_view_issues_permission.rb +++ /dev/null @@ -1,15 +0,0 @@ -class AddViewIssuesPermission < ActiveRecord::Migration[4.2] - def self.up - Role.reset_column_information - Role.all.each do |r| - r.add_permission!(:view_issues) - end - end - - def self.down - Role.reset_column_information - Role.all.each do |r| - r.remove_permission!(:view_issues) - end - end -end diff --git a/db/migrate/20091123212029_add_default_done_ratio_to_issue_status.rb b/db/migrate/20091123212029_add_default_done_ratio_to_issue_status.rb deleted file mode 100644 index 2b9df4f..0000000 --- a/db/migrate/20091123212029_add_default_done_ratio_to_issue_status.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddDefaultDoneRatioToIssueStatus < ActiveRecord::Migration[4.2] - def self.up - add_column :issue_statuses, :default_done_ratio, :integer - end - - def self.down - remove_column :issue_statuses, :default_done_ratio - end -end diff --git a/db/migrate/20091205124427_add_versions_sharing.rb b/db/migrate/20091205124427_add_versions_sharing.rb deleted file mode 100644 index 815f9fc..0000000 --- a/db/migrate/20091205124427_add_versions_sharing.rb +++ /dev/null @@ -1,10 +0,0 @@ -class AddVersionsSharing < ActiveRecord::Migration[4.2] - def self.up - add_column :versions, :sharing, :string, :default => 'none', :null => false - add_index :versions, :sharing - end - - def self.down - remove_column :versions, :sharing - end -end diff --git a/db/migrate/20091220183509_add_lft_and_rgt_indexes_to_projects.rb b/db/migrate/20091220183509_add_lft_and_rgt_indexes_to_projects.rb deleted file mode 100644 index 8ec5108..0000000 --- a/db/migrate/20091220183509_add_lft_and_rgt_indexes_to_projects.rb +++ /dev/null @@ -1,11 +0,0 @@ -class AddLftAndRgtIndexesToProjects < ActiveRecord::Migration[4.2] - def self.up - add_index :projects, :lft - add_index :projects, :rgt - end - - def self.down - remove_index :projects, :lft - remove_index :projects, :rgt - end -end diff --git a/db/migrate/20091220183727_add_index_to_settings_name.rb b/db/migrate/20091220183727_add_index_to_settings_name.rb deleted file mode 100644 index 51a33b1..0000000 --- a/db/migrate/20091220183727_add_index_to_settings_name.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddIndexToSettingsName < ActiveRecord::Migration[4.2] - def self.up - add_index :settings, :name - end - - def self.down - remove_index :settings, :name - end -end diff --git a/db/migrate/20091220184736_add_indexes_to_issue_status.rb b/db/migrate/20091220184736_add_indexes_to_issue_status.rb deleted file mode 100644 index 9b94351..0000000 --- a/db/migrate/20091220184736_add_indexes_to_issue_status.rb +++ /dev/null @@ -1,13 +0,0 @@ -class AddIndexesToIssueStatus < ActiveRecord::Migration[4.2] - def self.up - add_index :issue_statuses, :position - add_index :issue_statuses, :is_closed - add_index :issue_statuses, :is_default - end - - def self.down - remove_index :issue_statuses, :position - remove_index :issue_statuses, :is_closed - remove_index :issue_statuses, :is_default - end -end diff --git a/db/migrate/20091225164732_remove_enumerations_opt.rb b/db/migrate/20091225164732_remove_enumerations_opt.rb deleted file mode 100644 index ee39d5b..0000000 --- a/db/migrate/20091225164732_remove_enumerations_opt.rb +++ /dev/null @@ -1,12 +0,0 @@ -class RemoveEnumerationsOpt < ActiveRecord::Migration[4.2] - def self.up - remove_column :enumerations, :opt - end - - def self.down - add_column :enumerations, :opt, :string, :limit => 4, :default => '', :null => false - Enumeration.where("type = 'IssuePriority'").update_all("opt = 'IPRI'") - Enumeration.where("type = 'DocumentCategory'").update_all("opt = 'DCAT'") - Enumeration.where("type = 'TimeEntryActivity'").update_all("opt = 'ACTI'") - end -end diff --git a/db/migrate/20091227112908_change_wiki_contents_text_limit.rb b/db/migrate/20091227112908_change_wiki_contents_text_limit.rb deleted file mode 100644 index 6ca99d9..0000000 --- a/db/migrate/20091227112908_change_wiki_contents_text_limit.rb +++ /dev/null @@ -1,16 +0,0 @@ -class ChangeWikiContentsTextLimit < ActiveRecord::Migration[4.2] - def self.up - # Migrates MySQL databases only - # Postgres would raise an error (see http://dev.rubyonrails.org/ticket/3818) - # Not fixed in Rails 2.3.5 - if Redmine::Database.mysql? - max_size = 16.megabytes - change_column :wiki_contents, :text, :text, :limit => max_size - change_column :wiki_content_versions, :data, :binary, :limit => max_size - end - end - - def self.down - # no-op - end -end diff --git a/db/migrate/20100129193402_change_users_mail_notification_to_string.rb b/db/migrate/20100129193402_change_users_mail_notification_to_string.rb deleted file mode 100644 index a31666e..0000000 --- a/db/migrate/20100129193402_change_users_mail_notification_to_string.rb +++ /dev/null @@ -1,21 +0,0 @@ -class ChangeUsersMailNotificationToString < ActiveRecord::Migration[4.2] - def self.up - rename_column :users, :mail_notification, :mail_notification_bool - add_column :users, :mail_notification, :string, :default => '', :null => false - User.where("mail_notification_bool = #{connection.quoted_true}"). - update_all("mail_notification = 'all'") - User.where("EXISTS (SELECT 1 FROM #{Member.table_name} WHERE #{Member.table_name}.mail_notification = #{connection.quoted_true} AND #{Member.table_name}.user_id = #{User.table_name}.id)"). - update_all("mail_notification = 'selected'") - User.where("mail_notification NOT IN ('all', 'selected')"). - update_all("mail_notification = 'only_my_events'") - remove_column :users, :mail_notification_bool - end - - def self.down - rename_column :users, :mail_notification, :mail_notification_char - add_column :users, :mail_notification, :boolean, :default => true, :null => false - User.where("mail_notification_char <> 'all'"). - update_all("mail_notification = #{connection.quoted_false}") - remove_column :users, :mail_notification_char - end -end diff --git a/db/migrate/20100129193813_update_mail_notification_values.rb b/db/migrate/20100129193813_update_mail_notification_values.rb deleted file mode 100644 index 00d3a04..0000000 --- a/db/migrate/20100129193813_update_mail_notification_values.rb +++ /dev/null @@ -1,11 +0,0 @@ -# Patch the data from a boolean change. -class UpdateMailNotificationValues < ActiveRecord::Migration[4.2] - def self.up - # No-op - # See 20100129193402_change_users_mail_notification_to_string.rb - end - - def self.down - # No-op - end -end diff --git a/db/migrate/20100221100219_add_index_on_changesets_scmid.rb b/db/migrate/20100221100219_add_index_on_changesets_scmid.rb deleted file mode 100644 index cef4be5..0000000 --- a/db/migrate/20100221100219_add_index_on_changesets_scmid.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddIndexOnChangesetsScmid < ActiveRecord::Migration[4.2] - def self.up - add_index :changesets, [:repository_id, :scmid], :name => :changesets_repos_scmid - end - - def self.down - remove_index :changesets, :name => :changesets_repos_scmid - end -end diff --git a/db/migrate/20100313132032_add_issues_nested_sets_columns.rb b/db/migrate/20100313132032_add_issues_nested_sets_columns.rb deleted file mode 100644 index a7e5cee..0000000 --- a/db/migrate/20100313132032_add_issues_nested_sets_columns.rb +++ /dev/null @@ -1,17 +0,0 @@ -class AddIssuesNestedSetsColumns < ActiveRecord::Migration[4.2] - def self.up - add_column :issues, :parent_id, :integer, :default => nil - add_column :issues, :root_id, :integer, :default => nil - add_column :issues, :lft, :integer, :default => nil - add_column :issues, :rgt, :integer, :default => nil - - Issue.update_all("parent_id = NULL, root_id = id, lft = 1, rgt = 2") - end - - def self.down - remove_column :issues, :parent_id - remove_column :issues, :root_id - remove_column :issues, :lft - remove_column :issues, :rgt - end -end diff --git a/db/migrate/20100313171051_add_index_on_issues_nested_set.rb b/db/migrate/20100313171051_add_index_on_issues_nested_set.rb deleted file mode 100644 index b624c22..0000000 --- a/db/migrate/20100313171051_add_index_on_issues_nested_set.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddIndexOnIssuesNestedSet < ActiveRecord::Migration[4.2] - def self.up - add_index :issues, [:root_id, :lft, :rgt] - end - - def self.down - remove_index :issues, [:root_id, :lft, :rgt] - end -end diff --git a/db/migrate/20100705164950_change_changes_path_length_limit.rb b/db/migrate/20100705164950_change_changes_path_length_limit.rb deleted file mode 100644 index f40ca08..0000000 --- a/db/migrate/20100705164950_change_changes_path_length_limit.rb +++ /dev/null @@ -1,14 +0,0 @@ -class ChangeChangesPathLengthLimit < ActiveRecord::Migration[4.2] - def self.up - # these are two steps to please MySQL 5 on Win32 - change_column :changes, :path, :text, :default => nil, :null => true - change_column :changes, :path, :text, :null => false - - change_column :changes, :from_path, :text - end - - def self.down - change_column :changes, :path, :string, :default => "", :null => false - change_column :changes, :from_path, :string - end -end diff --git a/db/migrate/20100819172912_enable_calendar_and_gantt_modules_where_appropriate.rb b/db/migrate/20100819172912_enable_calendar_and_gantt_modules_where_appropriate.rb deleted file mode 100644 index 2e178e5..0000000 --- a/db/migrate/20100819172912_enable_calendar_and_gantt_modules_where_appropriate.rb +++ /dev/null @@ -1,12 +0,0 @@ -class EnableCalendarAndGanttModulesWhereAppropriate < ActiveRecord::Migration[4.2] - def self.up - EnabledModule.where(:name => 'issue_tracking').each do |e| - EnabledModule.create(:name => 'calendar', :project_id => e.project_id) - EnabledModule.create(:name => 'gantt', :project_id => e.project_id) - end - end - - def self.down - EnabledModule.where("name = 'calendar' OR name = 'gantt'").delete_all - end -end diff --git a/db/migrate/20101104182107_add_unique_index_on_members.rb b/db/migrate/20101104182107_add_unique_index_on_members.rb deleted file mode 100644 index a29fc75..0000000 --- a/db/migrate/20101104182107_add_unique_index_on_members.rb +++ /dev/null @@ -1,22 +0,0 @@ -class AddUniqueIndexOnMembers < ActiveRecord::Migration[4.2] - def self.up - # Clean and reassign MemberRole rows if needed - MemberRole.where("member_id NOT IN (SELECT id FROM #{Member.table_name})").delete_all - MemberRole.update_all("member_id =" + - " (SELECT min(m2.id) FROM #{Member.table_name} m1, #{Member.table_name} m2" + - " WHERE m1.user_id = m2.user_id AND m1.project_id = m2.project_id" + - " AND m1.id = #{MemberRole.table_name}.member_id)") - # Remove duplicates - Member.connection.select_values("SELECT m.id FROM #{Member.table_name} m" + - " WHERE m.id > (SELECT min(m1.id) FROM #{Member.table_name} m1 WHERE m1.user_id = m.user_id AND m1.project_id = m.project_id)").each do |i| - Member.where(["id = ?", i]).delete_all - end - - # Then add a unique index - add_index :members, [:user_id, :project_id], :unique => true - end - - def self.down - remove_index :members, [:user_id, :project_id] - end -end diff --git a/db/migrate/20101107130441_add_custom_fields_visible.rb b/db/migrate/20101107130441_add_custom_fields_visible.rb deleted file mode 100644 index d3edb14..0000000 --- a/db/migrate/20101107130441_add_custom_fields_visible.rb +++ /dev/null @@ -1,10 +0,0 @@ -class AddCustomFieldsVisible < ActiveRecord::Migration[4.2] - def self.up - add_column :custom_fields, :visible, :boolean, :null => false, :default => true - CustomField.update_all("visible = #{CustomField.connection.quoted_true}") - end - - def self.down - remove_column :custom_fields, :visible - end -end diff --git a/db/migrate/20101114115114_change_projects_name_limit.rb b/db/migrate/20101114115114_change_projects_name_limit.rb deleted file mode 100644 index e731a00..0000000 --- a/db/migrate/20101114115114_change_projects_name_limit.rb +++ /dev/null @@ -1,9 +0,0 @@ -class ChangeProjectsNameLimit < ActiveRecord::Migration[4.2] - def self.up - change_column :projects, :name, :string, :limit => nil, :default => '', :null => false - end - - def self.down - change_column :projects, :name, :string, :limit => 30, :default => '', :null => false - end -end diff --git a/db/migrate/20101114115359_change_projects_identifier_limit.rb b/db/migrate/20101114115359_change_projects_identifier_limit.rb deleted file mode 100644 index 1e2bb6e..0000000 --- a/db/migrate/20101114115359_change_projects_identifier_limit.rb +++ /dev/null @@ -1,9 +0,0 @@ -class ChangeProjectsIdentifierLimit < ActiveRecord::Migration[4.2] - def self.up - change_column :projects, :identifier, :string, :limit => nil - end - - def self.down - change_column :projects, :identifier, :string, :limit => 20 - end -end diff --git a/db/migrate/20110220160626_add_workflows_assignee_and_author.rb b/db/migrate/20110220160626_add_workflows_assignee_and_author.rb deleted file mode 100644 index 5b04bd9..0000000 --- a/db/migrate/20110220160626_add_workflows_assignee_and_author.rb +++ /dev/null @@ -1,14 +0,0 @@ -class AddWorkflowsAssigneeAndAuthor < ActiveRecord::Migration[4.2] - def self.up - add_column :workflows, :assignee, :boolean, :null => false, :default => false - add_column :workflows, :author, :boolean, :null => false, :default => false - - WorkflowRule.update_all(:assignee => false) - WorkflowRule.update_all(:author => false) - end - - def self.down - remove_column :workflows, :assignee - remove_column :workflows, :author - end -end diff --git a/db/migrate/20110223180944_add_users_salt.rb b/db/migrate/20110223180944_add_users_salt.rb deleted file mode 100644 index 5fda334..0000000 --- a/db/migrate/20110223180944_add_users_salt.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddUsersSalt < ActiveRecord::Migration[4.2] - def self.up - add_column :users, :salt, :string, :limit => 64 - end - - def self.down - remove_column :users, :salt - end -end diff --git a/db/migrate/20110223180953_salt_user_passwords.rb b/db/migrate/20110223180953_salt_user_passwords.rb deleted file mode 100644 index df2b486..0000000 --- a/db/migrate/20110223180953_salt_user_passwords.rb +++ /dev/null @@ -1,13 +0,0 @@ -class SaltUserPasswords < ActiveRecord::Migration[4.2] - - def self.up - say_with_time "Salting user passwords, this may take some time..." do - User.salt_unsalted_passwords! - end - end - - def self.down - # Unsalted passwords can not be restored - raise ActiveRecord::IrreversibleMigration, "Can't decypher salted passwords. This migration can not be rollback'ed." - end -end diff --git a/db/migrate/20110224000000_add_repositories_path_encoding.rb b/db/migrate/20110224000000_add_repositories_path_encoding.rb deleted file mode 100644 index 23c16d2..0000000 --- a/db/migrate/20110224000000_add_repositories_path_encoding.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddRepositoriesPathEncoding < ActiveRecord::Migration[4.2] - def self.up - add_column :repositories, :path_encoding, :string, :limit => 64, :default => nil - end - - def self.down - remove_column :repositories, :path_encoding - end -end diff --git a/db/migrate/20110226120112_change_repositories_password_limit.rb b/db/migrate/20110226120112_change_repositories_password_limit.rb deleted file mode 100644 index 5eb41f5..0000000 --- a/db/migrate/20110226120112_change_repositories_password_limit.rb +++ /dev/null @@ -1,9 +0,0 @@ -class ChangeRepositoriesPasswordLimit < ActiveRecord::Migration[4.2] - def self.up - change_column :repositories, :password, :string, :limit => nil, :default => '' - end - - def self.down - change_column :repositories, :password, :string, :limit => 60, :default => '' - end -end diff --git a/db/migrate/20110226120132_change_auth_sources_account_password_limit.rb b/db/migrate/20110226120132_change_auth_sources_account_password_limit.rb deleted file mode 100644 index fac820b..0000000 --- a/db/migrate/20110226120132_change_auth_sources_account_password_limit.rb +++ /dev/null @@ -1,9 +0,0 @@ -class ChangeAuthSourcesAccountPasswordLimit < ActiveRecord::Migration[4.2] - def self.up - change_column :auth_sources, :account_password, :string, :limit => nil, :default => '' - end - - def self.down - change_column :auth_sources, :account_password, :string, :limit => 60, :default => '' - end -end diff --git a/db/migrate/20110227125750_change_journal_details_values_to_text.rb b/db/migrate/20110227125750_change_journal_details_values_to_text.rb deleted file mode 100644 index 36dd7b5..0000000 --- a/db/migrate/20110227125750_change_journal_details_values_to_text.rb +++ /dev/null @@ -1,11 +0,0 @@ -class ChangeJournalDetailsValuesToText < ActiveRecord::Migration[4.2] - def self.up - change_column :journal_details, :old_value, :text - change_column :journal_details, :value, :text - end - - def self.down - change_column :journal_details, :old_value, :string - change_column :journal_details, :value, :string - end -end diff --git a/db/migrate/20110228000000_add_repositories_log_encoding.rb b/db/migrate/20110228000000_add_repositories_log_encoding.rb deleted file mode 100644 index 7201f74..0000000 --- a/db/migrate/20110228000000_add_repositories_log_encoding.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddRepositoriesLogEncoding < ActiveRecord::Migration[4.2] - def self.up - add_column :repositories, :log_encoding, :string, :limit => 64, :default => nil - end - - def self.down - remove_column :repositories, :log_encoding - end -end diff --git a/db/migrate/20110228000100_copy_repositories_log_encoding.rb b/db/migrate/20110228000100_copy_repositories_log_encoding.rb deleted file mode 100644 index 1648bf7..0000000 --- a/db/migrate/20110228000100_copy_repositories_log_encoding.rb +++ /dev/null @@ -1,12 +0,0 @@ -class CopyRepositoriesLogEncoding < ActiveRecord::Migration[4.2] - def self.up - encoding = Setting.commit_logs_encoding.to_s.strip - encoding = encoding.presence || 'UTF-8' - # encoding is NULL by default - Repository.where("type IN ('Bazaar', 'Cvs', 'Darcs')"). - update_all(["log_encoding = ?", encoding]) - end - - def self.down - end -end diff --git a/db/migrate/20110401192910_add_index_to_users_type.rb b/db/migrate/20110401192910_add_index_to_users_type.rb deleted file mode 100644 index 63fc496..0000000 --- a/db/migrate/20110401192910_add_index_to_users_type.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddIndexToUsersType < ActiveRecord::Migration[4.2] - def self.up - add_index :users, :type - end - - def self.down - remove_index :users, :type - end -end diff --git a/db/migrate/20110408103312_add_roles_issues_visibility.rb b/db/migrate/20110408103312_add_roles_issues_visibility.rb deleted file mode 100644 index 4f07e25..0000000 --- a/db/migrate/20110408103312_add_roles_issues_visibility.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddRolesIssuesVisibility < ActiveRecord::Migration[4.2] - def self.up - add_column :roles, :issues_visibility, :string, :limit => 30, :default => 'default', :null => false - end - - def self.down - remove_column :roles, :issues_visibility - end -end diff --git a/db/migrate/20110412065600_add_issues_is_private.rb b/db/migrate/20110412065600_add_issues_is_private.rb deleted file mode 100644 index 0066225..0000000 --- a/db/migrate/20110412065600_add_issues_is_private.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddIssuesIsPrivate < ActiveRecord::Migration[4.2] - def self.up - add_column :issues, :is_private, :boolean, :default => false, :null => false - end - - def self.down - remove_column :issues, :is_private - end -end diff --git a/db/migrate/20110511000000_add_repositories_extra_info.rb b/db/migrate/20110511000000_add_repositories_extra_info.rb deleted file mode 100644 index 60ab175..0000000 --- a/db/migrate/20110511000000_add_repositories_extra_info.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddRepositoriesExtraInfo < ActiveRecord::Migration[4.2] - def self.up - add_column :repositories, :extra_info, :text - end - - def self.down - remove_column :repositories, :extra_info - end -end diff --git a/db/migrate/20110902000000_create_changeset_parents.rb b/db/migrate/20110902000000_create_changeset_parents.rb deleted file mode 100644 index 1f367e6..0000000 --- a/db/migrate/20110902000000_create_changeset_parents.rb +++ /dev/null @@ -1,14 +0,0 @@ -class CreateChangesetParents < ActiveRecord::Migration[4.2] - def self.up - create_table :changeset_parents, :id => false do |t| - t.column :changeset_id, :integer, :null => false - t.column :parent_id, :integer, :null => false - end - add_index :changeset_parents, [:changeset_id], :unique => false, :name => :changeset_parents_changeset_ids - add_index :changeset_parents, [:parent_id], :unique => false, :name => :changeset_parents_parent_ids - end - - def self.down - drop_table :changeset_parents - end -end diff --git a/db/migrate/20111201201315_add_unique_index_to_issue_relations.rb b/db/migrate/20111201201315_add_unique_index_to_issue_relations.rb deleted file mode 100644 index 63e6af8..0000000 --- a/db/migrate/20111201201315_add_unique_index_to_issue_relations.rb +++ /dev/null @@ -1,16 +0,0 @@ -class AddUniqueIndexToIssueRelations < ActiveRecord::Migration[4.2] - def self.up - - # Remove duplicates - IssueRelation.connection.select_values("SELECT r.id FROM #{IssueRelation.table_name} r" + - " WHERE r.id > (SELECT min(r1.id) FROM #{IssueRelation.table_name} r1 WHERE r1.issue_from_id = r.issue_from_id AND r1.issue_to_id = r.issue_to_id)").each do |i| - IssueRelation.where(["id = ?", i]).delete_all - end - - add_index :issue_relations, [:issue_from_id, :issue_to_id], :unique => true - end - - def self.down - remove_index :issue_relations, :column => [:issue_from_id, :issue_to_id] - end -end diff --git a/db/migrate/20120115143024_add_repositories_identifier.rb b/db/migrate/20120115143024_add_repositories_identifier.rb deleted file mode 100644 index 28af221..0000000 --- a/db/migrate/20120115143024_add_repositories_identifier.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddRepositoriesIdentifier < ActiveRecord::Migration[4.2] - def self.up - add_column :repositories, :identifier, :string - end - - def self.down - remove_column :repositories, :identifier - end -end diff --git a/db/migrate/20120115143100_add_repositories_is_default.rb b/db/migrate/20120115143100_add_repositories_is_default.rb deleted file mode 100644 index 81c242b..0000000 --- a/db/migrate/20120115143100_add_repositories_is_default.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddRepositoriesIsDefault < ActiveRecord::Migration[4.2] - def self.up - add_column :repositories, :is_default, :boolean, :default => false - end - - def self.down - remove_column :repositories, :is_default - end -end diff --git a/db/migrate/20120115143126_set_default_repositories.rb b/db/migrate/20120115143126_set_default_repositories.rb deleted file mode 100644 index e99b307..0000000 --- a/db/migrate/20120115143126_set_default_repositories.rb +++ /dev/null @@ -1,14 +0,0 @@ -class SetDefaultRepositories < ActiveRecord::Migration[4.2] - def self.up - Repository.update_all(["is_default = ?", false]) - # Sets the last repository as default in case multiple repositories exist for the same project - Repository.connection.select_values("SELECT r.id FROM #{Repository.table_name} r" + - " WHERE r.id = (SELECT max(r1.id) FROM #{Repository.table_name} r1 WHERE r1.project_id = r.project_id)").each do |i| - Repository.where(["id = ?", i]).update_all(["is_default = ?", true]) - end - end - - def self.down - Repository.update_all(["is_default = ?", false]) - end -end diff --git a/db/migrate/20120127174243_add_custom_fields_multiple.rb b/db/migrate/20120127174243_add_custom_fields_multiple.rb deleted file mode 100644 index 608fa62..0000000 --- a/db/migrate/20120127174243_add_custom_fields_multiple.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddCustomFieldsMultiple < ActiveRecord::Migration[4.2] - def self.up - add_column :custom_fields, :multiple, :boolean, :default => false - end - - def self.down - remove_column :custom_fields, :multiple - end -end diff --git a/db/migrate/20120205111326_change_users_login_limit.rb b/db/migrate/20120205111326_change_users_login_limit.rb deleted file mode 100644 index 6f3c08b..0000000 --- a/db/migrate/20120205111326_change_users_login_limit.rb +++ /dev/null @@ -1,9 +0,0 @@ -class ChangeUsersLoginLimit < ActiveRecord::Migration[4.2] - def self.up - change_column :users, :login, :string, :limit => nil, :default => '', :null => false - end - - def self.down - change_column :users, :login, :string, :limit => 30, :default => '', :null => false - end -end diff --git a/db/migrate/20120223110929_change_attachments_container_defaults.rb b/db/migrate/20120223110929_change_attachments_container_defaults.rb deleted file mode 100644 index 3c48276..0000000 --- a/db/migrate/20120223110929_change_attachments_container_defaults.rb +++ /dev/null @@ -1,25 +0,0 @@ -class ChangeAttachmentsContainerDefaults < ActiveRecord::Migration[4.2] - def self.up - # Need to drop the index otherwise the following error occurs in Rails 3.1.3: - # - # Index name 'temp_index_altered_attachments_on_container_id_and_container_type' on - # table 'altered_attachments' is too long; the limit is 64 characters - remove_index :attachments, [:container_id, :container_type] - - change_column :attachments, :container_id, :integer, :default => nil, :null => true - change_column :attachments, :container_type, :string, :limit => 30, :default => nil, :null => true - Attachment.where("container_id = 0").update_all("container_id = NULL") - Attachment.where("container_type = ''").update_all("container_type = NULL") - - add_index :attachments, [:container_id, :container_type] - end - - def self.down - remove_index :attachments, [:container_id, :container_type] - - change_column :attachments, :container_id, :integer, :default => 0, :null => false - change_column :attachments, :container_type, :string, :limit => 30, :default => "", :null => false - - add_index :attachments, [:container_id, :container_type] - end -end diff --git a/db/migrate/20120301153455_add_auth_sources_filter.rb b/db/migrate/20120301153455_add_auth_sources_filter.rb deleted file mode 100644 index 8538f4d..0000000 --- a/db/migrate/20120301153455_add_auth_sources_filter.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddAuthSourcesFilter < ActiveRecord::Migration[4.2] - def self.up - add_column :auth_sources, :filter, :string - end - - def self.down - remove_column :auth_sources, :filter - end -end diff --git a/db/migrate/20120422150750_change_repositories_to_full_sti.rb b/db/migrate/20120422150750_change_repositories_to_full_sti.rb deleted file mode 100644 index 101ecbc..0000000 --- a/db/migrate/20120422150750_change_repositories_to_full_sti.rb +++ /dev/null @@ -1,22 +0,0 @@ -class ChangeRepositoriesToFullSti < ActiveRecord::Migration[4.2] - def up - Repository.connection. - select_rows("SELECT id, type FROM #{Repository.table_name}"). - each do |repository_id, repository_type| - unless repository_type =~ /^Repository::/ - Repository.where(["id = ?", repository_id]). - update_all(["type = ?", "Repository::#{repository_type}"]) - end - end - end - - def down - Repository.connection. - select_rows("SELECT id, type FROM #{Repository.table_name}"). - each do |repository_id, repository_type| - if repository_type =~ /^Repository::(.+)$/ - Repository.where(["id = ?", repository_id]).update_all(["type = ?", $1]) - end - end - end -end diff --git a/db/migrate/20120705074331_add_trackers_fields_bits.rb b/db/migrate/20120705074331_add_trackers_fields_bits.rb deleted file mode 100644 index 90e2ca1..0000000 --- a/db/migrate/20120705074331_add_trackers_fields_bits.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddTrackersFieldsBits < ActiveRecord::Migration[4.2] - def self.up - add_column :trackers, :fields_bits, :integer, :default => 0 - end - - def self.down - remove_column :trackers, :fields_bits - end -end diff --git a/db/migrate/20120707064544_add_auth_sources_timeout.rb b/db/migrate/20120707064544_add_auth_sources_timeout.rb deleted file mode 100644 index 4491bc3..0000000 --- a/db/migrate/20120707064544_add_auth_sources_timeout.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddAuthSourcesTimeout < ActiveRecord::Migration[4.2] - def up - add_column :auth_sources, :timeout, :integer - end - - def self.down - remove_column :auth_sources, :timeout - end -end diff --git a/db/migrate/20120714122000_add_workflows_type.rb b/db/migrate/20120714122000_add_workflows_type.rb deleted file mode 100644 index 6e2ffb6..0000000 --- a/db/migrate/20120714122000_add_workflows_type.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddWorkflowsType < ActiveRecord::Migration[4.2] - def up - add_column :workflows, :type, :string, :limit => 30 - end - - def down - remove_column :workflows, :type - end -end diff --git a/db/migrate/20120714122100_update_workflows_to_sti.rb b/db/migrate/20120714122100_update_workflows_to_sti.rb deleted file mode 100644 index a5da4ba..0000000 --- a/db/migrate/20120714122100_update_workflows_to_sti.rb +++ /dev/null @@ -1,9 +0,0 @@ -class UpdateWorkflowsToSti < ActiveRecord::Migration[4.2] - def up - WorkflowRule.update_all "type = 'WorkflowTransition'" - end - - def down - WorkflowRule.update_all "type = NULL" - end -end diff --git a/db/migrate/20120714122200_add_workflows_rule_fields.rb b/db/migrate/20120714122200_add_workflows_rule_fields.rb deleted file mode 100644 index aff919b..0000000 --- a/db/migrate/20120714122200_add_workflows_rule_fields.rb +++ /dev/null @@ -1,11 +0,0 @@ -class AddWorkflowsRuleFields < ActiveRecord::Migration[4.2] - def up - add_column :workflows, :field_name, :string, :limit => 30 - add_column :workflows, :rule, :string, :limit => 30 - end - - def down - remove_column :workflows, :field_name - remove_column :workflows, :rule - end -end diff --git a/db/migrate/20120731164049_add_boards_parent_id.rb b/db/migrate/20120731164049_add_boards_parent_id.rb deleted file mode 100644 index f674684..0000000 --- a/db/migrate/20120731164049_add_boards_parent_id.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddBoardsParentId < ActiveRecord::Migration[4.2] - def up - add_column :boards, :parent_id, :integer - end - - def down - remove_column :boards, :parent_id - end -end diff --git a/db/migrate/20120930112914_add_journals_private_notes.rb b/db/migrate/20120930112914_add_journals_private_notes.rb deleted file mode 100644 index 265d251..0000000 --- a/db/migrate/20120930112914_add_journals_private_notes.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddJournalsPrivateNotes < ActiveRecord::Migration[4.2] - def up - add_column :journals, :private_notes, :boolean, :default => false, :null => false - end - - def down - remove_column :journals, :private_notes - end -end diff --git a/db/migrate/20121026002032_add_enumerations_position_name.rb b/db/migrate/20121026002032_add_enumerations_position_name.rb deleted file mode 100644 index eb5423f..0000000 --- a/db/migrate/20121026002032_add_enumerations_position_name.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddEnumerationsPositionName < ActiveRecord::Migration[4.2] - def up - add_column :enumerations, :position_name, :string, :limit => 30 - end - - def down - remove_column :enumerations, :position_name - end -end diff --git a/db/migrate/20121026003537_populate_enumerations_position_name.rb b/db/migrate/20121026003537_populate_enumerations_position_name.rb deleted file mode 100644 index d4f1807..0000000 --- a/db/migrate/20121026003537_populate_enumerations_position_name.rb +++ /dev/null @@ -1,9 +0,0 @@ -class PopulateEnumerationsPositionName < ActiveRecord::Migration[4.2] - def up - IssuePriority.compute_position_names - end - - def down - IssuePriority.clear_position_names - end -end diff --git a/db/migrate/20121209123234_add_queries_type.rb b/db/migrate/20121209123234_add_queries_type.rb deleted file mode 100644 index fdfaac4..0000000 --- a/db/migrate/20121209123234_add_queries_type.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddQueriesType < ActiveRecord::Migration[4.2] - def up - add_column :queries, :type, :string - end - - def down - remove_column :queries, :type - end -end diff --git a/db/migrate/20121209123358_update_queries_to_sti.rb b/db/migrate/20121209123358_update_queries_to_sti.rb deleted file mode 100644 index 088b8ca..0000000 --- a/db/migrate/20121209123358_update_queries_to_sti.rb +++ /dev/null @@ -1,9 +0,0 @@ -class UpdateQueriesToSti < ActiveRecord::Migration[4.2] - def up - ::Query.update_all :type => 'IssueQuery' - end - - def down - ::Query.update_all :type => nil - end -end diff --git a/db/migrate/20121213084931_add_attachments_disk_directory.rb b/db/migrate/20121213084931_add_attachments_disk_directory.rb deleted file mode 100644 index dc34580..0000000 --- a/db/migrate/20121213084931_add_attachments_disk_directory.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddAttachmentsDiskDirectory < ActiveRecord::Migration[4.2] - def up - add_column :attachments, :disk_directory, :string - end - - def down - remove_column :attachments, :disk_directory - end -end diff --git a/db/migrate/20130110122628_split_documents_permissions.rb b/db/migrate/20130110122628_split_documents_permissions.rb deleted file mode 100644 index f52b8e4..0000000 --- a/db/migrate/20130110122628_split_documents_permissions.rb +++ /dev/null @@ -1,23 +0,0 @@ -class SplitDocumentsPermissions < ActiveRecord::Migration[4.2] - def up - # :manage_documents permission split into 3 permissions: - # :add_documents, :edit_documents and :delete_documents - Role.all.each do |role| - if role.has_permission?(:manage_documents) - role.add_permission! :add_documents, :edit_documents, :delete_documents - role.remove_permission! :manage_documents - end - end - end - - def down - Role.all.each do |role| - if role.has_permission?(:add_documents) || - role.has_permission?(:edit_documents) || - role.has_permission?(:delete_documents) - role.remove_permission! :add_documents, :edit_documents, :delete_documents - role.add_permission! :manage_documents - end - end - end -end diff --git a/db/migrate/20130201184705_add_unique_index_on_tokens_value.rb b/db/migrate/20130201184705_add_unique_index_on_tokens_value.rb deleted file mode 100644 index 1d3716e..0000000 --- a/db/migrate/20130201184705_add_unique_index_on_tokens_value.rb +++ /dev/null @@ -1,15 +0,0 @@ -class AddUniqueIndexOnTokensValue < ActiveRecord::Migration[4.2] - def up - say_with_time "Adding unique index on tokens, this may take some time..." do - # Just in case - duplicates = Token.connection.select_values("SELECT value FROM #{Token.table_name} GROUP BY value HAVING COUNT(id) > 1") - Token.where(:value => duplicates).delete_all - - add_index :tokens, :value, :unique => true, :name => 'tokens_value' - end - end - - def down - remove_index :tokens, :name => 'tokens_value' - end -end diff --git a/db/migrate/20130202090625_add_projects_inherit_members.rb b/db/migrate/20130202090625_add_projects_inherit_members.rb deleted file mode 100644 index 629ad45..0000000 --- a/db/migrate/20130202090625_add_projects_inherit_members.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddProjectsInheritMembers < ActiveRecord::Migration[4.2] - def up - add_column :projects, :inherit_members, :boolean, :default => false, :null => false - end - - def down - remove_column :projects, :inherit_members - end -end diff --git a/db/migrate/20130207175206_add_unique_index_on_custom_fields_trackers.rb b/db/migrate/20130207175206_add_unique_index_on_custom_fields_trackers.rb deleted file mode 100644 index 3353803..0000000 --- a/db/migrate/20130207175206_add_unique_index_on_custom_fields_trackers.rb +++ /dev/null @@ -1,24 +0,0 @@ -class AddUniqueIndexOnCustomFieldsTrackers < ActiveRecord::Migration[4.2] - def up - table_name = "#{CustomField.table_name_prefix}custom_fields_trackers#{CustomField.table_name_suffix}" - duplicates = CustomField.connection.select_rows("SELECT custom_field_id, tracker_id FROM #{table_name} GROUP BY custom_field_id, tracker_id HAVING COUNT(*) > 1") - duplicates.each do |custom_field_id, tracker_id| - # Removes duplicate rows - CustomField.connection.execute("DELETE FROM #{table_name} WHERE custom_field_id=#{custom_field_id} AND tracker_id=#{tracker_id}") - # And insert one - CustomField.connection.execute("INSERT INTO #{table_name} (custom_field_id, tracker_id) VALUES (#{custom_field_id}, #{tracker_id})") - end - - if index_exists? :custom_fields_trackers, [:custom_field_id, :tracker_id] - remove_index :custom_fields_trackers, [:custom_field_id, :tracker_id] - end - add_index :custom_fields_trackers, [:custom_field_id, :tracker_id], :unique => true - end - - def down - if index_exists? :custom_fields_trackers, [:custom_field_id, :tracker_id] - remove_index :custom_fields_trackers, [:custom_field_id, :tracker_id] - end - add_index :custom_fields_trackers, [:custom_field_id, :tracker_id] - end -end diff --git a/db/migrate/20130207181455_add_unique_index_on_custom_fields_projects.rb b/db/migrate/20130207181455_add_unique_index_on_custom_fields_projects.rb deleted file mode 100644 index 2198aed..0000000 --- a/db/migrate/20130207181455_add_unique_index_on_custom_fields_projects.rb +++ /dev/null @@ -1,24 +0,0 @@ -class AddUniqueIndexOnCustomFieldsProjects < ActiveRecord::Migration[4.2] - def up - table_name = "#{CustomField.table_name_prefix}custom_fields_projects#{CustomField.table_name_suffix}" - duplicates = CustomField.connection.select_rows("SELECT custom_field_id, project_id FROM #{table_name} GROUP BY custom_field_id, project_id HAVING COUNT(*) > 1") - duplicates.each do |custom_field_id, project_id| - # Removes duplicate rows - CustomField.connection.execute("DELETE FROM #{table_name} WHERE custom_field_id=#{custom_field_id} AND project_id=#{project_id}") - # And insert one - CustomField.connection.execute("INSERT INTO #{table_name} (custom_field_id, project_id) VALUES (#{custom_field_id}, #{project_id})") - end - - if index_exists? :custom_fields_projects, [:custom_field_id, :project_id] - remove_index :custom_fields_projects, [:custom_field_id, :project_id] - end - add_index :custom_fields_projects, [:custom_field_id, :project_id], :unique => true - end - - def down - if index_exists? :custom_fields_projects, [:custom_field_id, :project_id] - remove_index :custom_fields_projects, [:custom_field_id, :project_id] - end - add_index :custom_fields_projects, [:custom_field_id, :project_id] - end -end diff --git a/db/migrate/20130215073721_change_users_lastname_length_to_255.rb b/db/migrate/20130215073721_change_users_lastname_length_to_255.rb deleted file mode 100644 index 02939aa..0000000 --- a/db/migrate/20130215073721_change_users_lastname_length_to_255.rb +++ /dev/null @@ -1,9 +0,0 @@ -class ChangeUsersLastnameLengthTo255 < ActiveRecord::Migration[4.2] - def self.up - change_column :users, :lastname, :string, :limit => 255, :default => '', :null => false - end - - def self.down - change_column :users, :lastname, :string, :limit => 30, :default => '', :null => false - end -end diff --git a/db/migrate/20130215111127_add_issues_closed_on.rb b/db/migrate/20130215111127_add_issues_closed_on.rb deleted file mode 100644 index f719b0d..0000000 --- a/db/migrate/20130215111127_add_issues_closed_on.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddIssuesClosedOn < ActiveRecord::Migration[4.2] - def up - add_column :issues, :closed_on, :datetime, :default => nil - end - - def down - remove_column :issues, :closed_on - end -end diff --git a/db/migrate/20130215111141_populate_issues_closed_on.rb b/db/migrate/20130215111141_populate_issues_closed_on.rb deleted file mode 100644 index 0095738..0000000 --- a/db/migrate/20130215111141_populate_issues_closed_on.rb +++ /dev/null @@ -1,26 +0,0 @@ -class PopulateIssuesClosedOn < ActiveRecord::Migration[4.2] - def up - closed_status_ids = IssueStatus.where(:is_closed => true).pluck(:id) - if closed_status_ids.any? - # First set closed_on for issues that have been closed once - closed_status_values = closed_status_ids.map {|status_id| "'#{status_id}'"}.join(',') - subselect = "SELECT MAX(#{Journal.table_name}.created_on)" + - " FROM #{Journal.table_name}, #{JournalDetail.table_name}" + - " WHERE #{Journal.table_name}.id = #{JournalDetail.table_name}.journal_id" + - " AND #{Journal.table_name}.journalized_type = 'Issue' AND #{Journal.table_name}.journalized_id = #{Issue.table_name}.id" + - " AND #{JournalDetail.table_name}.property = 'attr' AND #{JournalDetail.table_name}.prop_key = 'status_id'" + - " AND #{JournalDetail.table_name}.old_value NOT IN (#{closed_status_values})" + - " AND #{JournalDetail.table_name}.value IN (#{closed_status_values})" - Issue.update_all "closed_on = (#{subselect})" - - # Then set closed_on for closed issues that weren't up updated by the above UPDATE - # No journal was found so we assume that they were closed on creation - Issue.where({:status_id => closed_status_ids, :closed_on => nil}). - update_all("closed_on = created_on") - end - end - - def down - Issue.update_all :closed_on => nil - end -end diff --git a/db/migrate/20130217094251_remove_issues_default_fk_values.rb b/db/migrate/20130217094251_remove_issues_default_fk_values.rb deleted file mode 100644 index e2cea21..0000000 --- a/db/migrate/20130217094251_remove_issues_default_fk_values.rb +++ /dev/null @@ -1,19 +0,0 @@ -class RemoveIssuesDefaultFkValues < ActiveRecord::Migration[4.2] - def up - change_column_default :issues, :tracker_id, nil - change_column_default :issues, :project_id, nil - change_column_default :issues, :status_id, nil - change_column_default :issues, :assigned_to_id, nil - change_column_default :issues, :priority_id, nil - change_column_default :issues, :author_id, nil - end - - def down - change_column_default :issues, :tracker_id, 0 - change_column_default :issues, :project_id, 0 - change_column_default :issues, :status_id, 0 - change_column_default :issues, :assigned_to_id, 0 - change_column_default :issues, :priority_id, 0 - change_column_default :issues, :author_id, 0 - end -end diff --git a/db/migrate/20130602092539_create_queries_roles.rb b/db/migrate/20130602092539_create_queries_roles.rb deleted file mode 100644 index f37c26b..0000000 --- a/db/migrate/20130602092539_create_queries_roles.rb +++ /dev/null @@ -1,13 +0,0 @@ -class CreateQueriesRoles < ActiveRecord::Migration[4.2] - def self.up - create_table :queries_roles, :id => false do |t| - t.column :query_id, :integer, :null => false - t.column :role_id, :integer, :null => false - end - add_index :queries_roles, [:query_id, :role_id], :unique => true, :name => :queries_roles_ids - end - - def self.down - drop_table :queries_roles - end -end diff --git a/db/migrate/20130710182539_add_queries_visibility.rb b/db/migrate/20130710182539_add_queries_visibility.rb deleted file mode 100644 index 36f298d..0000000 --- a/db/migrate/20130710182539_add_queries_visibility.rb +++ /dev/null @@ -1,13 +0,0 @@ -class AddQueriesVisibility < ActiveRecord::Migration[4.2] - def up - add_column :queries, :visibility, :integer, :default => 0 - Query.where(:is_public => true).update_all(:visibility => 2) - remove_column :queries, :is_public - end - - def down - add_column :queries, :is_public, :boolean, :default => true, :null => false - Query.where('visibility <> ?', 2).update_all(:is_public => false) - remove_column :queries, :visibility - end -end diff --git a/db/migrate/20130713104233_create_custom_fields_roles.rb b/db/migrate/20130713104233_create_custom_fields_roles.rb deleted file mode 100644 index c34a123..0000000 --- a/db/migrate/20130713104233_create_custom_fields_roles.rb +++ /dev/null @@ -1,14 +0,0 @@ -class CreateCustomFieldsRoles < ActiveRecord::Migration[4.2] - def self.up - create_table :custom_fields_roles, :id => false do |t| - t.column :custom_field_id, :integer, :null => false - t.column :role_id, :integer, :null => false - end - add_index :custom_fields_roles, [:custom_field_id, :role_id], :unique => true, :name => :custom_fields_roles_ids - CustomField.where({:type => 'IssueCustomField'}).update_all({:visible => true}) - end - - def self.down - drop_table :custom_fields_roles - end -end diff --git a/db/migrate/20130713111657_add_queries_options.rb b/db/migrate/20130713111657_add_queries_options.rb deleted file mode 100644 index 9bd5834..0000000 --- a/db/migrate/20130713111657_add_queries_options.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddQueriesOptions < ActiveRecord::Migration[4.2] - def up - add_column :queries, :options, :text - end - - def down - remove_column :queries, :options - end -end diff --git a/db/migrate/20130729070143_add_users_must_change_passwd.rb b/db/migrate/20130729070143_add_users_must_change_passwd.rb deleted file mode 100644 index 3a5860f..0000000 --- a/db/migrate/20130729070143_add_users_must_change_passwd.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddUsersMustChangePasswd < ActiveRecord::Migration[4.2] - def up - add_column :users, :must_change_passwd, :boolean, :default => false, :null => false - end - - def down - remove_column :users, :must_change_passwd - end -end diff --git a/db/migrate/20130911193200_remove_eols_from_attachments_filename.rb b/db/migrate/20130911193200_remove_eols_from_attachments_filename.rb deleted file mode 100644 index 3eafd33..0000000 --- a/db/migrate/20130911193200_remove_eols_from_attachments_filename.rb +++ /dev/null @@ -1,12 +0,0 @@ -class RemoveEolsFromAttachmentsFilename < ActiveRecord::Migration[4.2] - def up - Attachment.where("filename like ? or filename like ?", "%\r%", "%\n%").each do |attachment| - filename = attachment.filename.to_s.tr("\r\n", "_") - Attachment.where(:id => attachment.id).update_all(:filename => filename) - end - end - - def down - # nop - end -end diff --git a/db/migrate/20131004113137_support_for_multiple_commit_keywords.rb b/db/migrate/20131004113137_support_for_multiple_commit_keywords.rb deleted file mode 100644 index d8beb4a..0000000 --- a/db/migrate/20131004113137_support_for_multiple_commit_keywords.rb +++ /dev/null @@ -1,17 +0,0 @@ -class SupportForMultipleCommitKeywords < ActiveRecord::Migration[4.2] - def up - # Replaces commit_fix_keywords, commit_fix_status_id, commit_fix_done_ratio settings - # with commit_update_keywords setting - keywords = Setting.where(:name => 'commit_fix_keywords').limit(1).pluck(:value).first - status_id = Setting.where(:name => 'commit_fix_status_id').limit(1).pluck(:value).first - done_ratio = Setting.where(:name => 'commit_fix_done_ratio').limit(1).pluck(:value).first - if keywords.present? - Setting.commit_update_keywords = [{'keywords' => keywords, 'status_id' => status_id, 'done_ratio' => done_ratio}] - end - Setting.where(:name => %w(commit_fix_keywords commit_fix_status_id commit_fix_done_ratio)).delete_all - end - - def down - Setting.where(:name => 'commit_update_keywords').delete_all - end -end diff --git a/db/migrate/20131005100610_add_repositories_created_on.rb b/db/migrate/20131005100610_add_repositories_created_on.rb deleted file mode 100644 index ccc664b..0000000 --- a/db/migrate/20131005100610_add_repositories_created_on.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddRepositoriesCreatedOn < ActiveRecord::Migration[4.2] - def up - add_column :repositories, :created_on, :timestamp - end - - def down - remove_column :repositories, :created_on - end -end diff --git a/db/migrate/20131124175346_add_custom_fields_format_store.rb b/db/migrate/20131124175346_add_custom_fields_format_store.rb deleted file mode 100644 index fc9cb4d..0000000 --- a/db/migrate/20131124175346_add_custom_fields_format_store.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddCustomFieldsFormatStore < ActiveRecord::Migration[4.2] - def up - add_column :custom_fields, :format_store, :text - end - - def down - remove_column :custom_fields, :format_store - end -end diff --git a/db/migrate/20131210180802_add_custom_fields_description.rb b/db/migrate/20131210180802_add_custom_fields_description.rb deleted file mode 100644 index 736b2cf..0000000 --- a/db/migrate/20131210180802_add_custom_fields_description.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddCustomFieldsDescription < ActiveRecord::Migration[4.2] - def up - add_column :custom_fields, :description, :text - end - - def down - remove_column :custom_fields, :description - end -end diff --git a/db/migrate/20131214094309_remove_custom_fields_min_max_length_default_values.rb b/db/migrate/20131214094309_remove_custom_fields_min_max_length_default_values.rb deleted file mode 100644 index 7a37d3c..0000000 --- a/db/migrate/20131214094309_remove_custom_fields_min_max_length_default_values.rb +++ /dev/null @@ -1,15 +0,0 @@ -class RemoveCustomFieldsMinMaxLengthDefaultValues < ActiveRecord::Migration[4.2] - def up - change_column :custom_fields, :min_length, :int, :default => nil, :null => true - change_column :custom_fields, :max_length, :int, :default => nil, :null => true - CustomField.where(:min_length => 0).update_all(:min_length => nil) - CustomField.where(:max_length => 0).update_all(:max_length => nil) - end - - def self.down - CustomField.where(:min_length => nil).update_all(:min_length => 0) - CustomField.where(:max_length => nil).update_all(:max_length => 0) - change_column :custom_fields, :min_length, :int, :default => 0, :null => false - change_column :custom_fields, :max_length, :int, :default => 0, :null => false - end -end diff --git a/db/migrate/20131215104612_store_relation_type_in_journal_details.rb b/db/migrate/20131215104612_store_relation_type_in_journal_details.rb deleted file mode 100644 index c1990e6..0000000 --- a/db/migrate/20131215104612_store_relation_type_in_journal_details.rb +++ /dev/null @@ -1,26 +0,0 @@ -class StoreRelationTypeInJournalDetails < ActiveRecord::Migration[4.2] - - MAPPING = { - "label_relates_to" => "relates", - "label_duplicates" => "duplicates", - "label_duplicated_by" => "duplicated", - "label_blocks" => "blocks", - "label_blocked_by" => "blocked", - "label_precedes" => "precedes", - "label_follows" => "follows", - "label_copied_to" => "copied_to", - "label_copied_from" => "copied_from" - } - - def up - StoreRelationTypeInJournalDetails::MAPPING.each do |prop_key, replacement| - JournalDetail.where(:property => 'relation', :prop_key => prop_key).update_all(:prop_key => replacement) - end - end - - def down - StoreRelationTypeInJournalDetails::MAPPING.each do |prop_key, replacement| - JournalDetail.where(:property => 'relation', :prop_key => replacement).update_all(:prop_key => prop_key) - end - end -end diff --git a/db/migrate/20131218183023_delete_orphan_time_entries_custom_values.rb b/db/migrate/20131218183023_delete_orphan_time_entries_custom_values.rb deleted file mode 100644 index e9d902d..0000000 --- a/db/migrate/20131218183023_delete_orphan_time_entries_custom_values.rb +++ /dev/null @@ -1,9 +0,0 @@ -class DeleteOrphanTimeEntriesCustomValues < ActiveRecord::Migration[4.2] - def up - CustomValue.where("customized_type = ? AND NOT EXISTS (SELECT 1 FROM #{TimeEntry.table_name} t WHERE t.id = customized_id)", "TimeEntry").delete_all - end - - def down - # nop - end -end diff --git a/db/migrate/20140228130325_change_changesets_comments_limit.rb b/db/migrate/20140228130325_change_changesets_comments_limit.rb deleted file mode 100644 index 480b343..0000000 --- a/db/migrate/20140228130325_change_changesets_comments_limit.rb +++ /dev/null @@ -1,12 +0,0 @@ -class ChangeChangesetsCommentsLimit < ActiveRecord::Migration[4.2] - def up - if Redmine::Database.mysql? - max_size = 16.megabytes - change_column :changesets, :comments, :text, :limit => max_size - end - end - - def down - # no-op - end -end diff --git a/db/migrate/20140903143914_add_password_changed_at_to_user.rb b/db/migrate/20140903143914_add_password_changed_at_to_user.rb deleted file mode 100644 index 19a2ea0..0000000 --- a/db/migrate/20140903143914_add_password_changed_at_to_user.rb +++ /dev/null @@ -1,5 +0,0 @@ -class AddPasswordChangedAtToUser < ActiveRecord::Migration[4.2] - def change - add_column :users, :passwd_changed_on, :datetime - end -end diff --git a/db/migrate/20140920094058_insert_builtin_groups.rb b/db/migrate/20140920094058_insert_builtin_groups.rb deleted file mode 100644 index f58d77f..0000000 --- a/db/migrate/20140920094058_insert_builtin_groups.rb +++ /dev/null @@ -1,21 +0,0 @@ -class InsertBuiltinGroups < ActiveRecord::Migration[4.2] - def up - Group.reset_column_information - - unless GroupAnonymous.any? - g = GroupAnonymous.new(:lastname => 'Anonymous users') - g.status = 1 - g.save :validate => false - end - unless GroupNonMember.any? - g = GroupNonMember.new(:lastname => 'Non member users') - g.status = 1 - g.save :validate => false - end - end - - def down - GroupAnonymous.delete_all - GroupNonMember.delete_all - end -end diff --git a/db/migrate/20141029181752_add_trackers_default_status_id.rb b/db/migrate/20141029181752_add_trackers_default_status_id.rb deleted file mode 100644 index 74716ea..0000000 --- a/db/migrate/20141029181752_add_trackers_default_status_id.rb +++ /dev/null @@ -1,15 +0,0 @@ -class AddTrackersDefaultStatusId < ActiveRecord::Migration[4.2] - def up - add_column :trackers, :default_status_id, :integer - - status_id = IssueStatus.where(:is_default => true).pluck(:id).first - status_id ||= IssueStatus.order(:position).pluck(:id).first - if status_id - Tracker.update_all :default_status_id => status_id - end - end - - def down - remove_column :trackers, :default_status_id - end -end diff --git a/db/migrate/20141029181824_remove_issue_statuses_is_default.rb b/db/migrate/20141029181824_remove_issue_statuses_is_default.rb deleted file mode 100644 index 09808e3..0000000 --- a/db/migrate/20141029181824_remove_issue_statuses_is_default.rb +++ /dev/null @@ -1,12 +0,0 @@ -class RemoveIssueStatusesIsDefault < ActiveRecord::Migration[4.2] - def up - remove_column :issue_statuses, :is_default - end - - def down - add_column :issue_statuses, :is_default, :boolean, :null => false, :default => false - # Restores the first status as default - default_status_id = IssueStatus.order(:position).pluck(:id).first - IssueStatus.where(:id => default_status_id).update_all(:is_default => true) - end -end diff --git a/db/migrate/20141109112308_add_roles_users_visibility.rb b/db/migrate/20141109112308_add_roles_users_visibility.rb deleted file mode 100644 index ef9dabb..0000000 --- a/db/migrate/20141109112308_add_roles_users_visibility.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddRolesUsersVisibility < ActiveRecord::Migration[4.2] - def self.up - add_column :roles, :users_visibility, :string, :limit => 30, :default => 'all', :null => false - end - - def self.down - remove_column :roles, :users_visibility - end -end diff --git a/db/migrate/20141122124142_add_wiki_redirects_redirects_to_wiki_id.rb b/db/migrate/20141122124142_add_wiki_redirects_redirects_to_wiki_id.rb deleted file mode 100644 index fee1499..0000000 --- a/db/migrate/20141122124142_add_wiki_redirects_redirects_to_wiki_id.rb +++ /dev/null @@ -1,11 +0,0 @@ -class AddWikiRedirectsRedirectsToWikiId < ActiveRecord::Migration[4.2] - def self.up - add_column :wiki_redirects, :redirects_to_wiki_id, :integer - WikiRedirect.update_all "redirects_to_wiki_id = wiki_id" - change_column :wiki_redirects, :redirects_to_wiki_id, :integer, :null => false - end - - def self.down - remove_column :wiki_redirects, :redirects_to_wiki_id - end -end diff --git a/db/migrate/20150113194759_create_email_addresses.rb b/db/migrate/20150113194759_create_email_addresses.rb deleted file mode 100644 index 001beda..0000000 --- a/db/migrate/20150113194759_create_email_addresses.rb +++ /dev/null @@ -1,12 +0,0 @@ -class CreateEmailAddresses < ActiveRecord::Migration[4.2] - def change - create_table :email_addresses do |t| - t.column :user_id, :integer, :null => false - t.column :address, :string, :null => false - t.column :is_default, :boolean, :null => false, :default => false - t.column :notify, :boolean, :null => false, :default => true - t.column :created_on, :datetime, :null => false - t.column :updated_on, :datetime, :null => false - end - end -end diff --git a/db/migrate/20150113211532_populate_email_addresses.rb b/db/migrate/20150113211532_populate_email_addresses.rb deleted file mode 100644 index 7e4a550..0000000 --- a/db/migrate/20150113211532_populate_email_addresses.rb +++ /dev/null @@ -1,14 +0,0 @@ -class PopulateEmailAddresses < ActiveRecord::Migration[4.2] - def self.up - t = EmailAddress.connection.quoted_true - n = EmailAddress.connection.quoted_date(Time.now) - - sql = "INSERT INTO #{EmailAddress.table_name} (user_id, address, is_default, notify, created_on, updated_on)" + - " SELECT id, mail, #{t}, #{t}, '#{n}', '#{n}' FROM #{User.table_name} WHERE type = 'User' ORDER BY id" - EmailAddress.connection.execute(sql) - end - - def self.down - EmailAddress.delete_all - end -end diff --git a/db/migrate/20150113213922_remove_users_mail.rb b/db/migrate/20150113213922_remove_users_mail.rb deleted file mode 100644 index 2942c41..0000000 --- a/db/migrate/20150113213922_remove_users_mail.rb +++ /dev/null @@ -1,13 +0,0 @@ -class RemoveUsersMail < ActiveRecord::Migration[4.2] - def self.up - remove_column :users, :mail - end - - def self.down - add_column :users, :mail, :string, :limit => 60, :default => '', :null => false - - EmailAddress.where(:is_default => true).each do |a| - User.where(:id => a.user_id).update_all(:mail => a.address) - end - end -end diff --git a/db/migrate/20150113213955_add_email_addresses_user_id_index.rb b/db/migrate/20150113213955_add_email_addresses_user_id_index.rb deleted file mode 100644 index b57b362..0000000 --- a/db/migrate/20150113213955_add_email_addresses_user_id_index.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddEmailAddressesUserIdIndex < ActiveRecord::Migration[4.2] - def up - add_index :email_addresses, :user_id - end - - def down - remove_index :email_addresses, :user_id - end -end diff --git a/db/migrate/20150208105930_replace_move_issues_permission.rb b/db/migrate/20150208105930_replace_move_issues_permission.rb deleted file mode 100644 index d9ccb48..0000000 --- a/db/migrate/20150208105930_replace_move_issues_permission.rb +++ /dev/null @@ -1,19 +0,0 @@ -class ReplaceMoveIssuesPermission < ActiveRecord::Migration[4.2] - def self.up - Role.all.each do |role| - if role.has_permission?(:edit_issues) && !role.has_permission?(:move_issues) - # inserts one line per tracker and status - rule = WorkflowPermission.connection.quote_column_name('rule') # rule is a reserved keyword in SQLServer - WorkflowPermission.connection.execute( - "INSERT INTO #{WorkflowPermission.table_name} (tracker_id, old_status_id, role_id, type, field_name, #{rule})" + - " SELECT t.id, s.id, #{role.id}, 'WorkflowPermission', 'project_id', 'readonly'" + - " FROM #{Tracker.table_name} t, #{IssueStatus.table_name} s" - ) - end - end - end - - def self.down - raise IrreversibleMigration - end -end diff --git a/db/migrate/20150510083747_change_documents_title_limit.rb b/db/migrate/20150510083747_change_documents_title_limit.rb deleted file mode 100644 index ebb2767..0000000 --- a/db/migrate/20150510083747_change_documents_title_limit.rb +++ /dev/null @@ -1,9 +0,0 @@ -class ChangeDocumentsTitleLimit < ActiveRecord::Migration[4.2] - def self.up - change_column :documents, :title, :string, :limit => nil, :default => '', :null => false - end - - def self.down - change_column :documents, :title, :string, :limit => 60, :default => '', :null => false - end -end diff --git a/db/migrate/20150525103953_clear_estimated_hours_on_parent_issues.rb b/db/migrate/20150525103953_clear_estimated_hours_on_parent_issues.rb deleted file mode 100644 index 4dfc38d..0000000 --- a/db/migrate/20150525103953_clear_estimated_hours_on_parent_issues.rb +++ /dev/null @@ -1,15 +0,0 @@ -class ClearEstimatedHoursOnParentIssues < ActiveRecord::Migration[4.2] - def self.up - # Clears estimated hours on parent issues - Issue.where("rgt > lft + 1 AND estimated_hours > 0").update_all :estimated_hours => nil - end - - def self.down - table_name = Issue.table_name - leaves_sum_select = "SELECT SUM(leaves.estimated_hours) FROM (SELECT * FROM #{table_name}) AS leaves" + - " WHERE leaves.root_id = #{table_name}.root_id AND leaves.lft > #{table_name}.lft AND leaves.rgt < #{table_name}.rgt" + - " AND leaves.rgt = leaves.lft + 1" - - Issue.where("rgt > lft + 1").update_all "estimated_hours = (#{leaves_sum_select})" - end -end diff --git a/db/migrate/20150526183158_add_roles_time_entries_visibility.rb b/db/migrate/20150526183158_add_roles_time_entries_visibility.rb deleted file mode 100644 index 968adc6..0000000 --- a/db/migrate/20150526183158_add_roles_time_entries_visibility.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddRolesTimeEntriesVisibility < ActiveRecord::Migration[4.2] - def self.up - add_column :roles, :time_entries_visibility, :string, :limit => 30, :default => 'all', :null => false - end - - def self.down - remove_column :roles, :time_entries_visibility - end -end diff --git a/db/migrate/20150528084820_add_roles_all_roles_managed.rb b/db/migrate/20150528084820_add_roles_all_roles_managed.rb deleted file mode 100644 index 08c8ddc..0000000 --- a/db/migrate/20150528084820_add_roles_all_roles_managed.rb +++ /dev/null @@ -1,5 +0,0 @@ -class AddRolesAllRolesManaged < ActiveRecord::Migration[4.2] - def change - add_column :roles, :all_roles_managed, :boolean, :default => true, :null => false - end -end diff --git a/db/migrate/20150528092912_create_roles_managed_roles.rb b/db/migrate/20150528092912_create_roles_managed_roles.rb deleted file mode 100644 index 707fca6..0000000 --- a/db/migrate/20150528092912_create_roles_managed_roles.rb +++ /dev/null @@ -1,8 +0,0 @@ -class CreateRolesManagedRoles < ActiveRecord::Migration[4.2] - def change - create_table :roles_managed_roles, :id => false do |t| - t.integer :role_id, :null => false - t.integer :managed_role_id, :null => false - end - end -end diff --git a/db/migrate/20150528093249_add_unique_index_on_roles_managed_roles.rb b/db/migrate/20150528093249_add_unique_index_on_roles_managed_roles.rb deleted file mode 100644 index c208736..0000000 --- a/db/migrate/20150528093249_add_unique_index_on_roles_managed_roles.rb +++ /dev/null @@ -1,5 +0,0 @@ -class AddUniqueIndexOnRolesManagedRoles < ActiveRecord::Migration[4.2] - def change - add_index :roles_managed_roles, [:role_id, :managed_role_id], :unique => true - end -end diff --git a/db/migrate/20150725112753_insert_allowed_statuses_for_new_issues.rb b/db/migrate/20150725112753_insert_allowed_statuses_for_new_issues.rb deleted file mode 100644 index f86d54f..0000000 --- a/db/migrate/20150725112753_insert_allowed_statuses_for_new_issues.rb +++ /dev/null @@ -1,23 +0,0 @@ -class InsertAllowedStatusesForNewIssues < ActiveRecord::Migration[4.2] - def self.up - # Adds the default status for all trackers and roles - sql = "INSERT INTO #{WorkflowTransition.table_name} (tracker_id, old_status_id, new_status_id, role_id, type)" + - " SELECT t.id, 0, t.default_status_id, r.id, 'WorkflowTransition'" + - " FROM #{Tracker.table_name} t, #{Role.table_name} r" - WorkflowTransition.connection.execute(sql) - - # Adds other statuses that are reachable with one transition - # to preserve previous behaviour as default - sql = "INSERT INTO #{WorkflowTransition.table_name} (tracker_id, old_status_id, new_status_id, role_id, type)" + - " SELECT t.id, 0, w.new_status_id, w.role_id, 'WorkflowTransition'" + - " FROM #{Tracker.table_name} t" + - " JOIN #{IssueStatus.table_name} s on s.id = t.default_status_id" + - " JOIN #{WorkflowTransition.table_name} w on w.tracker_id = t.id and w.old_status_id = s.id and w.type = 'WorkflowTransition'" + - " WHERE w.new_status_id <> t.default_status_id" - WorkflowTransition.connection.execute(sql) - end - - def self.down - WorkflowTransition.where(:old_status_id => 0).delete_all - end -end diff --git a/db/migrate/20150730122707_create_imports.rb b/db/migrate/20150730122707_create_imports.rb deleted file mode 100644 index 0a4109e..0000000 --- a/db/migrate/20150730122707_create_imports.rb +++ /dev/null @@ -1,13 +0,0 @@ -class CreateImports < ActiveRecord::Migration[4.2] - def change - create_table :imports do |t| - t.string :type - t.integer :user_id, :null => false - t.string :filename - t.text :settings - t.integer :total_items - t.boolean :finished, :null => false, :default => false - t.timestamps :null => false - end - end -end diff --git a/db/migrate/20150730122735_create_import_items.rb b/db/migrate/20150730122735_create_import_items.rb deleted file mode 100644 index 2639805..0000000 --- a/db/migrate/20150730122735_create_import_items.rb +++ /dev/null @@ -1,10 +0,0 @@ -class CreateImportItems < ActiveRecord::Migration[4.2] - def change - create_table :import_items do |t| - t.integer :import_id, :null => false - t.integer :position, :null => false - t.integer :obj_id - t.text :message - end - end -end diff --git a/db/migrate/20150921204850_change_time_entries_comments_limit_to_1024.rb b/db/migrate/20150921204850_change_time_entries_comments_limit_to_1024.rb deleted file mode 100644 index f529a99..0000000 --- a/db/migrate/20150921204850_change_time_entries_comments_limit_to_1024.rb +++ /dev/null @@ -1,9 +0,0 @@ -class ChangeTimeEntriesCommentsLimitTo1024 < ActiveRecord::Migration[4.2] - def self.up - change_column :time_entries, :comments, :string, :limit => 1024 - end - - def self.down - change_column :time_entries, :comments, :string, :limit => 255 - end -end diff --git a/db/migrate/20150921210243_change_wiki_contents_comments_limit_to_1024.rb b/db/migrate/20150921210243_change_wiki_contents_comments_limit_to_1024.rb deleted file mode 100644 index 9f85a7c..0000000 --- a/db/migrate/20150921210243_change_wiki_contents_comments_limit_to_1024.rb +++ /dev/null @@ -1,11 +0,0 @@ -class ChangeWikiContentsCommentsLimitTo1024 < ActiveRecord::Migration[4.2] - def self.up - change_column :wiki_content_versions, :comments, :string, :limit => 1024, :default => '' - change_column :wiki_contents, :comments, :string, :limit => 1024, :default => '' - end - - def self.down - change_column :wiki_content_versions, :comments, :string, :limit => 255, :default => '' - change_column :wiki_contents, :comments, :string, :limit => 255, :default => '' - end -end diff --git a/db/migrate/20151020182334_change_attachments_filesize_limit_to_8.rb b/db/migrate/20151020182334_change_attachments_filesize_limit_to_8.rb deleted file mode 100644 index 5ea3240..0000000 --- a/db/migrate/20151020182334_change_attachments_filesize_limit_to_8.rb +++ /dev/null @@ -1,9 +0,0 @@ -class ChangeAttachmentsFilesizeLimitTo8 < ActiveRecord::Migration[4.2] - def self.up - change_column :attachments, :filesize, :integer, :limit => 8, :default => 0, :null => false - end - - def self.down - change_column :attachments, :filesize, :integer, :limit => 4, :default => 0, :null => false - end -end diff --git a/db/migrate/20151020182731_fix_comma_in_user_format_setting_value.rb b/db/migrate/20151020182731_fix_comma_in_user_format_setting_value.rb deleted file mode 100644 index d929558..0000000 --- a/db/migrate/20151020182731_fix_comma_in_user_format_setting_value.rb +++ /dev/null @@ -1,13 +0,0 @@ -class FixCommaInUserFormatSettingValue < ActiveRecord::Migration[4.2] - def self.up - Setting. - where(:name => 'user_format', :value => 'lastname_coma_firstname'). - update_all(:value => 'lastname_comma_firstname') - end - - def self.down - Setting. - where(:name => 'user_format', :value => 'lastname_comma_firstname'). - update_all(:value => 'lastname_coma_firstname') - end -end diff --git a/db/migrate/20151021184614_change_issue_categories_name_limit_to_60.rb b/db/migrate/20151021184614_change_issue_categories_name_limit_to_60.rb deleted file mode 100644 index 7ac2f0e..0000000 --- a/db/migrate/20151021184614_change_issue_categories_name_limit_to_60.rb +++ /dev/null @@ -1,9 +0,0 @@ -class ChangeIssueCategoriesNameLimitTo60 < ActiveRecord::Migration[4.2] - def self.up - change_column :issue_categories, :name, :string, :limit => 60, :default => "", :null => false - end - - def self.down - change_column :issue_categories, :name, :string, :limit => 30, :default => "", :null => false - end -end diff --git a/db/migrate/20151021185456_change_auth_sources_filter_to_text.rb b/db/migrate/20151021185456_change_auth_sources_filter_to_text.rb deleted file mode 100644 index 056ea75..0000000 --- a/db/migrate/20151021185456_change_auth_sources_filter_to_text.rb +++ /dev/null @@ -1,9 +0,0 @@ -class ChangeAuthSourcesFilterToText < ActiveRecord::Migration[4.2] - def self.up - change_column :auth_sources, :filter, :text - end - - def self.down - change_column :auth_sources, :filter, :string - end -end diff --git a/db/migrate/20151021190616_change_user_preferences_hide_mail_default_to_true.rb b/db/migrate/20151021190616_change_user_preferences_hide_mail_default_to_true.rb deleted file mode 100644 index bee7992..0000000 --- a/db/migrate/20151021190616_change_user_preferences_hide_mail_default_to_true.rb +++ /dev/null @@ -1,9 +0,0 @@ -class ChangeUserPreferencesHideMailDefaultToTrue < ActiveRecord::Migration[4.2] - def self.up - change_column :user_preferences, :hide_mail, :boolean, :default => true - end - - def self.down - change_column :user_preferences, :hide_mail, :boolean, :default => false - end -end diff --git a/db/migrate/20151024082034_add_tokens_updated_on.rb b/db/migrate/20151024082034_add_tokens_updated_on.rb deleted file mode 100644 index 7b94a3a..0000000 --- a/db/migrate/20151024082034_add_tokens_updated_on.rb +++ /dev/null @@ -1,10 +0,0 @@ -class AddTokensUpdatedOn < ActiveRecord::Migration[4.2] - def self.up - add_column :tokens, :updated_on, :timestamp - Token.update_all("updated_on = created_on") - end - - def self.down - remove_column :tokens, :updated_on - end -end diff --git a/db/migrate/20151025072118_create_custom_field_enumerations.rb b/db/migrate/20151025072118_create_custom_field_enumerations.rb deleted file mode 100644 index c1b2eae..0000000 --- a/db/migrate/20151025072118_create_custom_field_enumerations.rb +++ /dev/null @@ -1,10 +0,0 @@ -class CreateCustomFieldEnumerations < ActiveRecord::Migration[4.2] - def change - create_table :custom_field_enumerations do |t| - t.integer :custom_field_id, :null => false - t.string :name, :null => false - t.boolean :active, :default => true, :null => false - t.integer :position, :default => 1, :null => false - end - end -end diff --git a/db/migrate/20151031095005_add_projects_default_version_id.rb b/db/migrate/20151031095005_add_projects_default_version_id.rb deleted file mode 100644 index e62c54e..0000000 --- a/db/migrate/20151031095005_add_projects_default_version_id.rb +++ /dev/null @@ -1,12 +0,0 @@ -class AddProjectsDefaultVersionId < ActiveRecord::Migration[4.2] - def self.up - # Don't try to add the column if redmine_default_version plugin was used - unless column_exists?(:projects, :default_version_id, :integer) - add_column :projects, :default_version_id, :integer, :default => nil - end - end - - def self.down - remove_column :projects, :default_version_id - end -end diff --git a/db/migrate/20160404080304_force_password_reset_during_setup.rb b/db/migrate/20160404080304_force_password_reset_during_setup.rb deleted file mode 100644 index 00d3a65..0000000 --- a/db/migrate/20160404080304_force_password_reset_during_setup.rb +++ /dev/null @@ -1,9 +0,0 @@ -class ForcePasswordResetDuringSetup < ActiveRecord::Migration[4.2] - def up - User.where(login: "admin", last_login_on: nil).update_all(must_change_passwd: true) - end - - def down - User.where(login: "admin", last_login_on: nil, must_change_passwd: true).update_all(must_change_passwd: false) - end -end diff --git a/db/migrate/20160416072926_remove_position_defaults.rb b/db/migrate/20160416072926_remove_position_defaults.rb deleted file mode 100644 index 9ba7b3c..0000000 --- a/db/migrate/20160416072926_remove_position_defaults.rb +++ /dev/null @@ -1,13 +0,0 @@ -class RemovePositionDefaults < ActiveRecord::Migration[4.2] - def up - [Board, CustomField, Enumeration, IssueStatus, Role, Tracker].each do |klass| - change_column klass.table_name, :position, :integer, :default => nil - end - end - - def down - [Board, CustomField, Enumeration, IssueStatus, Role, Tracker].each do |klass| - change_column klass.table_name, :position, :integer, :default => 1 - end - end -end diff --git a/db/migrate/20160529063352_add_roles_settings.rb b/db/migrate/20160529063352_add_roles_settings.rb deleted file mode 100644 index 84f2bf3..0000000 --- a/db/migrate/20160529063352_add_roles_settings.rb +++ /dev/null @@ -1,5 +0,0 @@ -class AddRolesSettings < ActiveRecord::Migration[4.2] - def change - add_column :roles, :settings, :text - end -end diff --git a/db/migrate/20161001122012_add_tracker_id_index_to_workflows.rb b/db/migrate/20161001122012_add_tracker_id_index_to_workflows.rb deleted file mode 100644 index 60c62a6..0000000 --- a/db/migrate/20161001122012_add_tracker_id_index_to_workflows.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddTrackerIdIndexToWorkflows < ActiveRecord::Migration[4.2] - def self.up - add_index :workflows, :tracker_id - end - - def self.down - remove_index :workflows, :tracker_id - end -end diff --git a/db/migrate/20161002133421_add_index_on_member_roles_inherited_from.rb b/db/migrate/20161002133421_add_index_on_member_roles_inherited_from.rb deleted file mode 100644 index f806a31..0000000 --- a/db/migrate/20161002133421_add_index_on_member_roles_inherited_from.rb +++ /dev/null @@ -1,5 +0,0 @@ -class AddIndexOnMemberRolesInheritedFrom < ActiveRecord::Migration[4.2] - def change - add_index :member_roles, :inherited_from - end -end diff --git a/db/migrate/20161010081301_change_issues_description_limit.rb b/db/migrate/20161010081301_change_issues_description_limit.rb deleted file mode 100644 index f428e27..0000000 --- a/db/migrate/20161010081301_change_issues_description_limit.rb +++ /dev/null @@ -1,12 +0,0 @@ -class ChangeIssuesDescriptionLimit < ActiveRecord::Migration[4.2] - def up - if Redmine::Database.mysql? - max_size = 16.megabytes - change_column :issues, :description, :text, :limit => max_size - end - end - - def down - # no-op - end -end diff --git a/db/migrate/20161010081528_change_journal_details_value_limit.rb b/db/migrate/20161010081528_change_journal_details_value_limit.rb deleted file mode 100644 index 4064faa..0000000 --- a/db/migrate/20161010081528_change_journal_details_value_limit.rb +++ /dev/null @@ -1,13 +0,0 @@ -class ChangeJournalDetailsValueLimit < ActiveRecord::Migration[4.2] - def up - if Redmine::Database.mysql? - max_size = 16.megabytes - change_column :journal_details, :value, :text, :limit => max_size - change_column :journal_details, :old_value, :text, :limit => max_size - end - end - - def down - # no-op - end -end diff --git a/db/migrate/20161010081600_change_journals_notes_limit.rb b/db/migrate/20161010081600_change_journals_notes_limit.rb deleted file mode 100644 index 1ff33bf..0000000 --- a/db/migrate/20161010081600_change_journals_notes_limit.rb +++ /dev/null @@ -1,12 +0,0 @@ -class ChangeJournalsNotesLimit < ActiveRecord::Migration[4.2] - def up - if Redmine::Database.mysql? - max_size = 16.megabytes - change_column :journals, :notes, :text, :limit => max_size - end - end - - def down - # no-op - end -end diff --git a/db/migrate/20161126094932_add_index_on_changesets_issues_issue_id.rb b/db/migrate/20161126094932_add_index_on_changesets_issues_issue_id.rb deleted file mode 100644 index 54db52f..0000000 --- a/db/migrate/20161126094932_add_index_on_changesets_issues_issue_id.rb +++ /dev/null @@ -1,5 +0,0 @@ -class AddIndexOnChangesetsIssuesIssueId < ActiveRecord::Migration[4.2] - def change - add_index :changesets_issues, :issue_id - end -end diff --git a/db/migrate/20161220091118_add_index_on_issues_parent_id.rb b/db/migrate/20161220091118_add_index_on_issues_parent_id.rb deleted file mode 100644 index 07592a9..0000000 --- a/db/migrate/20161220091118_add_index_on_issues_parent_id.rb +++ /dev/null @@ -1,5 +0,0 @@ -class AddIndexOnIssuesParentId < ActiveRecord::Migration[4.2] - def change - add_index :issues, :parent_id - end -end diff --git a/db/migrate/20170207050700_add_index_on_disk_filename_to_attachments.rb b/db/migrate/20170207050700_add_index_on_disk_filename_to_attachments.rb deleted file mode 100644 index 3f2eaee..0000000 --- a/db/migrate/20170207050700_add_index_on_disk_filename_to_attachments.rb +++ /dev/null @@ -1,5 +0,0 @@ -class AddIndexOnDiskFilenameToAttachments < ActiveRecord::Migration[4.2] - def change - add_index :attachments, :disk_filename - end -end diff --git a/db/migrate/20170302015225_change_attachments_digest_limit_to_64.rb b/db/migrate/20170302015225_change_attachments_digest_limit_to_64.rb deleted file mode 100644 index f7e0018..0000000 --- a/db/migrate/20170302015225_change_attachments_digest_limit_to_64.rb +++ /dev/null @@ -1,9 +0,0 @@ -class ChangeAttachmentsDigestLimitTo64 < ActiveRecord::Migration[4.2] - def up - change_column :attachments, :digest, :string, limit: 64 - end - - def down - change_column :attachments, :digest, :string, limit: 40 - end -end diff --git a/db/migrate/20170309214320_add_project_default_assigned_to_id.rb b/db/migrate/20170309214320_add_project_default_assigned_to_id.rb deleted file mode 100644 index 40d3282..0000000 --- a/db/migrate/20170309214320_add_project_default_assigned_to_id.rb +++ /dev/null @@ -1,13 +0,0 @@ -class AddProjectDefaultAssignedToId < ActiveRecord::Migration[4.2] - def up - add_column :projects, :default_assigned_to_id, :integer, :default => nil - # Try to copy existing settings from the plugin if redmine_default_assign plugin was used - if column_exists?(:projects, :default_assignee_id, :integer) - Project.update_all('default_assigned_to_id = default_assignee_id') - end - end - - def down - remove_column :projects, :default_assigned_to_id - end -end diff --git a/db/migrate/20170320051650_change_repositories_extra_info_limit.rb b/db/migrate/20170320051650_change_repositories_extra_info_limit.rb deleted file mode 100644 index 1052efc..0000000 --- a/db/migrate/20170320051650_change_repositories_extra_info_limit.rb +++ /dev/null @@ -1,12 +0,0 @@ -class ChangeRepositoriesExtraInfoLimit < ActiveRecord::Migration[4.2] - def up - if Redmine::Database.mysql? - max_size = 16.megabytes - change_column :repositories, :extra_info, :text, :limit => max_size - end - end - - def down - # no-op - end -end diff --git a/db/migrate/20170418090031_add_view_news_to_all_existing_roles.rb b/db/migrate/20170418090031_add_view_news_to_all_existing_roles.rb deleted file mode 100644 index 7c9896c..0000000 --- a/db/migrate/20170418090031_add_view_news_to_all_existing_roles.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddViewNewsToAllExistingRoles < ActiveRecord::Migration[4.2] - def up - Role.all.each { |role| role.add_permission! :view_news } - end - - def down - # nothing to revert - end -end diff --git a/db/migrate/20170419144536_add_view_messages_to_all_existing_roles.rb b/db/migrate/20170419144536_add_view_messages_to_all_existing_roles.rb deleted file mode 100644 index 7a3ba67..0000000 --- a/db/migrate/20170419144536_add_view_messages_to_all_existing_roles.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddViewMessagesToAllExistingRoles < ActiveRecord::Migration[4.2] - def up - Role.all.each { |role| role.add_permission! :view_messages } - end - - def down - # nothing to revert - end -end diff --git a/db/migrate/20170723112801_rename_comments_to_content.rb b/db/migrate/20170723112801_rename_comments_to_content.rb deleted file mode 100644 index 6c01428..0000000 --- a/db/migrate/20170723112801_rename_comments_to_content.rb +++ /dev/null @@ -1,5 +0,0 @@ -class RenameCommentsToContent < ActiveRecord::Migration[5.1] - def change - rename_column :comments, :comments, :content - end -end diff --git a/db/migrate/20180501132547_add_author_id_to_time_entries.rb b/db/migrate/20180501132547_add_author_id_to_time_entries.rb deleted file mode 100644 index 3d79bf2..0000000 --- a/db/migrate/20180501132547_add_author_id_to_time_entries.rb +++ /dev/null @@ -1,11 +0,0 @@ -class AddAuthorIdToTimeEntries < ActiveRecord::Migration[5.1] - def up - add_column :time_entries, :author_id, :integer, :default => nil, :after => :project_id - # Copy existing user_id to author_id - TimeEntry.update_all('author_id = user_id') - end - - def down - remove_column :time_entries, :author_id - end -end diff --git a/db/migrate/20180913072918_add_verify_peer_to_auth_sources.rb b/db/migrate/20180913072918_add_verify_peer_to_auth_sources.rb deleted file mode 100644 index b36564c..0000000 --- a/db/migrate/20180913072918_add_verify_peer_to_auth_sources.rb +++ /dev/null @@ -1,7 +0,0 @@ -class AddVerifyPeerToAuthSources < ActiveRecord::Migration[5.2] - def change - change_table :auth_sources do |t| - t.boolean :verify_peer, default: true, null: false - end - end -end diff --git a/db/migrate/20180923082945_change_sqlite_booleans_to_0_and_1.rb b/db/migrate/20180923082945_change_sqlite_booleans_to_0_and_1.rb deleted file mode 100644 index fb789ae..0000000 --- a/db/migrate/20180923082945_change_sqlite_booleans_to_0_and_1.rb +++ /dev/null @@ -1,46 +0,0 @@ -class ChangeSqliteBooleansTo0And1 < ActiveRecord::Migration[5.2] - - COLUMNS = { - AuthSource => ['onthefly_register', 'tls'], - CustomFieldEnumeration => ['active'], - CustomField => ['is_required', 'is_for_all', 'is_filter', 'searchable', 'editable', 'visible', 'multiple'], - EmailAddress => ['is_default', 'notify'], - Enumeration => ['is_default', 'active'], - Import => ['finished'], - IssueStatus => ['is_closed'], - Issue => ['is_private'], - Journal => ['private_notes'], - Member => ['mail_notification'], - Message => ['locked'], - Project => ['is_public', 'inherit_members'], - Repository => ['is_default'], - Role => ['assignable', 'all_roles_managed'], - Tracker => ['is_in_chlog', 'is_in_roadmap'], - UserPreference => ['hide_mail'], - User => ['admin', 'must_change_passwd'], - WikiPage => ['protected'], - WorkflowRule => ['assignee', 'author'], - } - - def up - if ActiveRecord::Base.connection.adapter_name =~ /sqlite/i - COLUMNS.each do |klass, columns| - columns.each do |column| - klass.where("#{column} = 't'").update_all(column => 1) - klass.where("#{column} = 'f'").update_all(column => 0) - end - end - end - end - - def down - if ActiveRecord::Base.connection.adapter_name =~ /sqlite/i - COLUMNS.each do |klass, columns| - columns.each do |column| - klass.where("#{column} = 1").update_all(column => 't') - klass.where("#{column} = 0").update_all(column => 'f') - end - end - end - end -end diff --git a/db/migrate/20180923091603_change_sqlite_booleans_default.rb b/db/migrate/20180923091603_change_sqlite_booleans_default.rb deleted file mode 100644 index 563bf32..0000000 --- a/db/migrate/20180923091603_change_sqlite_booleans_default.rb +++ /dev/null @@ -1,93 +0,0 @@ -class ChangeSqliteBooleansDefault < ActiveRecord::Migration[5.2] - DEFAULTS = { - "auth_sources" => { - "onthefly_register" => false, - "tls" => false - }, - "custom_field_enumerations" => { - "active" => true - }, - "custom_fields" => { - "is_required" => false, - "is_for_all" => false, - "is_filter" => false, - "searchable" => false, - "editable" => true, - "visible" => true, - "multiple" => false - }, - "email_addresses" => { - "is_default" => false, - "notify" => true - }, - "enumerations" => { - "is_default" => false, - "active" => true - }, - "imports" => { - "finished" => false - }, - "issue_statuses" => { - "is_closed" => false - }, - "issues" => { - "is_private" => false - }, - "journals" => { - "private_notes" => false - }, - "members" => { - "mail_notification" => false - }, - "messages" => { - "locked" => false - }, - "projects" => { - "is_public" => true, - "inherit_members" => false - }, - "repositories" => { - "is_default" => false - }, - "roles" => { - "assignable" => true, - "all_roles_managed" => true - }, - "trackers" => { - "is_in_chlog" => false, - "is_in_roadmap" => true - }, - "user_preferences" => { - "hide_mail" => true - }, - "users" => { - "admin" => false, - "must_change_passwd" => false - }, - "wiki_pages" => { - "protected" => false - }, - "workflows" => { - "assignee" => false, - "author" => false - } - } - - def up - if ActiveRecord::Base.connection.adapter_name =~ /sqlite/i - DEFAULTS.each do |table, defaults| - defaults.each do |column, value| - # Reset default values for boolean column (t/f => 1/0) - change_column_default(table, column, value) - end - end - end - end - - def down - if ActiveRecord::Base.connection.adapter_name =~ /sqlite/i - # Cannot restore default values as t/f - raise ActiveRecord::IrreversibleMigration - end - end -end diff --git a/db/migrate/20190315094151_change_custom_values_value_limit.rb b/db/migrate/20190315094151_change_custom_values_value_limit.rb deleted file mode 100644 index a1d6912..0000000 --- a/db/migrate/20190315094151_change_custom_values_value_limit.rb +++ /dev/null @@ -1,12 +0,0 @@ -class ChangeCustomValuesValueLimit < ActiveRecord::Migration[5.2] - def up - if Redmine::Database.mysql? - max_size = 16.megabytes - change_column :custom_values, :value, :text, :limit => max_size - end - end - - def down - # no-op - end -end diff --git a/db/migrate/20190315102101_add_trackers_description.rb b/db/migrate/20190315102101_add_trackers_description.rb deleted file mode 100644 index b2ece45..0000000 --- a/db/migrate/20190315102101_add_trackers_description.rb +++ /dev/null @@ -1,5 +0,0 @@ -class AddTrackersDescription < ActiveRecord::Migration[5.2] - def change - add_column :trackers, :description, :string, :after => :name - end -end diff --git a/db/migrate/20190510070108_add_unique_id_to_import_items.rb b/db/migrate/20190510070108_add_unique_id_to_import_items.rb deleted file mode 100644 index d1b4236..0000000 --- a/db/migrate/20190510070108_add_unique_id_to_import_items.rb +++ /dev/null @@ -1,8 +0,0 @@ -class AddUniqueIdToImportItems < ActiveRecord::Migration[5.2] - def change - change_table :import_items do |t| - t.string "unique_id" - t.index ["import_id", "unique_id"] - end - end -end diff --git a/db/migrate/20190620135549_change_roles_name_limit.rb b/db/migrate/20190620135549_change_roles_name_limit.rb deleted file mode 100644 index 691a411..0000000 --- a/db/migrate/20190620135549_change_roles_name_limit.rb +++ /dev/null @@ -1,9 +0,0 @@ -class ChangeRolesNameLimit < ActiveRecord::Migration[5.2] - def self.up - change_column :roles, :name, :string, :limit => 255, :default => '' - end - - def self.down - change_column :roles, :name, :string, :limit => 30, :default => '' - end -end diff --git a/doc/CHANGELOG b/doc/CHANGELOG deleted file mode 100644 index 90d51b5..0000000 --- a/doc/CHANGELOG +++ /dev/null @@ -1,5548 +0,0 @@ -== Redmine changelog - -Redmine - project management software -Copyright (C) 2006-2021 Jean-Philippe Lang -https://www.redmine.org/ - -== 2022-03-28 v4.1.7 - -=== [Attachments] - -* Defect #36013: Paste image mixed with other DataTransferItem - -=== [Database] - -* Defect #36766: Database migration from Redmine 0.8.7 or earlier fails - -=== [Documents] - -* Defect #36686: Allow pasting screenshots from clipboard in documents - -=== [Issues filter] - -* Defect #30924: Filter on Target version's Status in subproject doesn't work on version from top project - -=== [Projects] - -* Defect #36593: User without permissions to view required project custom fields cannot create new projects - -=== [Rails support] - -* Patch #36757: Update Rails to 5.2.6.3 - -== 2022-02-20 v4.1.6 - -=== [Gantt] - -* Defect #35027: Gantt PNG export ignores imagemagick_convert_command - -=== [Gems support] - -* Defect #35435: Psych 4: aliases in database.yml cause Psych::BadAlias exception -* Defect #36226: Psych 4: Psych::DisallowedClass exception when unserializing a setting value - -=== [Issues] - -* Defect #36455: Text custom field values are not aligned with their labels when text formatting is enabled - -=== [Rails support] - -* Patch #36633: Update Rails to 5.2.6.2 - -=== [UI] - -* Defect #35090: Permission check of the setting button on the issues page mismatches button semantics -* Defect #36363: Cannot select text in a table with a context menu available -* Patch #36378: Update copyright year in the footer to 2022 - -=== [Wiki] - -* Defect #36494: WikiContentVersion API returns 500 if author is nil -* Defect #36561: Wiki revision page does not return 404 if revision does not exist - -== 2021-10-10 v4.1.5 - -=== [Administration] - -* Defect #35731: Password and Confirmation fields are marked as required when editing a user - -=== [Attachments] - -* Defect #35715: File upload fails when run with uWSGI - -=== [Issues] - -* Defect #35642: Long text custom field values are not aligned with their labels - -=== [Issues planning] - -* Defect #35669: Prints of Issues Report details are messed-up due to the size of the graphs - -=== [Permissions and roles] - -* Defect #35634: Attachments deletable even though issue edit not permitted - -=== [Security] - -* Defect #35789: Redmine is leaking usernames on activities index view -* Patch #35463: Enforce stricter class filtering in WatchersController - -=== [UI] - -* Defect #34834: Line breaks in the description of a custom field are ignored in a tooltip - -== 2021-08-01 v4.1.4 - -=== [Accounts / authentication] - -* Defect #35226: Add SameSite=Lax to cookies to fix warnings in web browsers - -=== [Attachments] - -* Defect #33752: Uploading a big file fails with NoMemoryError - -=== [Gantt] - -* Defect #34694: Progress bar for a shared version on gantt disappears when the tree is collapsed and then expanded - -=== [Gems support] - -* Defect #35621: Bundler fails to install globalid when using Ruby < 2.6.0 - -=== [Issues] - -* Defect #35134: Change total spent time link to global time entries when issue has subtasks that can be on non descendent projects - -=== [Issues filter] - -* Defect #35201: Duplicate entries in issue filter values - -=== [Rails support] - -* Patch #35214: Update Rails to 5.2.6 - -=== [Time tracking] - -* Defect #34856: Time entry error on private issue - -== 2021-04-26 v4.1.3 - -=== [Activity view] - -* Defect #34933: Atom feed of the activity page does not contain items after the second page - -=== [Email receiving] - -* Defect #35100: MailHandler raises NameError exception when generating error message - -=== [Gems support] - -* Patch #34969: Remove dependency on MimeMagic - -=== [Issues] - -* Defect #34921: Do not journalize attachments that are added during a "Copy Issue" operation - -=== [Performance] - -* Patch #35034: Improve loading speed of workflow page - -=== [Rails support] - -* Patch #34966: Update Rails to 5.2.5 - -=== [Security] - -* Defect #34367: Allowed filename extensions of attachments can be circumvented -* Defect #34950: SysController and MailHandlerController are vulnerable to timing attack -* Defect #35045: Mail handler bypasses add_issue_notes permission -* Defect #35085: Arbitrary file read in Git adapter - -=== [Text formatting] - -* Defect #34894: User link using @ not working at the end of line - -=== [UI] - -* Patch #34955: Update copyright year in the footer to 2021 - -== 2021-03-21 v4.1.2 - -=== [Accounts / authentication] - -* Defect #33926: Rake tasks "db:encrypt" and "db:decrypt" may fail due to validation error - -=== [Administration] - -* Defect #33310: Warnings while running redmine:load_default_data rake task -* Defect #33339: Broken layout of the preview tab of "Welcome text" setting due to unexpectedly applied padding-left -* Defect #33355: TypeError when attempting to update a user with a blank email address -* Defect #34247: Web browser freezes when displaying workflow page with a large number of issue statuses -* Patch #32341: Show tooltip when hovering on repeat-value link in Field permission tab - -=== [Attachments] - -* Defect #33283: Thumbnail support for PDF attachments may not be detected -* Defect #33459: The order of thumbnails in journals does not match the order of file name list -* Defect #33639: Cannot paste image from clipboard when copying the image from web browsers or some apps -* Defect #33769: When creating more than two identical attachments in a single db transaction, the first one always ends up unreadable -* Patch #34479: Fix possible race condition with parallel, identical file uploads - -=== [Custom fields] - -* Defect #33275: Possible values field in list format custom field form is not marked as required -* Defect #33550: Per role visibility settings for spent time custom fields is not properly checked - -=== [Documentation] - -* Defect #33939: Unnecessary translation of {{toc}} macros in Russian Wiki formatting help - -=== [Filters] - -* Defect #33281: Totals of custom fields may not be sorted as configured -* Defect #34375: "is not" operator for Subproject filter incorrectly excludes closed subprojects - -=== [Gantt] - -* Defect #33140: Gantt bar is not displayed if the due date is the leftmost date or the start date is the rightmost date -* Defect #33175: Starting or ending marker is not displayed if they are on the leftmost or rightmost boundary of the gantt -* Defect #33220: Parent task subject column in gantt is not fully displayed when the column is widened -* Defect #33724: Selected gantt columns are not displayed with MS Edge Legacy - -=== [Gems support] - -* Defect #33206: Unable to autoload constant Version.table_name if gems uses Version class -* Defect #33768: Bundler may fail to install stringio if Ruby prior to 2.5 is used -* Patch #34461: Update Redcarpet to 3.5.1 -* Patch #34619: Update Nokogiri to 1.11 - -=== [I18n] - -* Defect #33452: Untranslated string "diff" in journal detail - -=== [Issues] - -* Defect #33338: Property changes tab does not show journals with both property changes and notes -* Defect #33576: Done ratio of a parent issue may be shown as 99% even though all subtasks are completed - -=== [Issues list] - -* Defect #33273: Total estimated time column shows up as decimal value regardless of time setting -* Defect #33548: Column header is clickable even when the column is not actually sortable -* Defect #34297: Subprojects issues are not displayed on main project when all subprojects are closed - -=== [Projects] - -* Defect #33889: Do not show list for custom fields without list entry on project overview -* Patch #34595: Filter list of recent projects in the project jump box - -=== [REST API] - -* Defect #33417: Updating an issue via REST API causes internal server error if invalid project id is specified -* Defect #34615: 'Search' falsy parameters are not respected - -=== [Security] - -* Defect #33846: Inline issue auto complete doesn't sanitize HTML tags - -=== [SEO] - -* Defect #6734: robots.txt: disallow crawling issues list with a query string - -=== [Security] - -* Defect #33360: Names of private projects are leaked by issue journal details that contain project_id changes -* Defect #33689: Issues API bypasses add_issue_notes permission -* Feature #33906: Upgrade Rails to 5.2.4.5 - -=== [Themes] - -* Defect #8251: Classic Theme: Missed base line - -=== [Time tracking] - -* Defect #33341: Time entry user is shown twice in the User drop-down when editing spent time - -=== [Translations] - -* Defect #34447: Typo in translation string 'setting_issue_list_default_columns': s//Isuses/Issues -* Patch #34200: Portuguese (Brazil) translation for 4.1-stable -* Patch #34439: Spanish translation update for 4.1-stable - -=== [UI] - -* Defect #33563: File selection buttons are not fully displayed with Google Chrome in some language -* Feature #34123: System tests for inline auto complete feature -* Patch #33958: Jump to end of line in editor when starting list or quote - -== 2020-04-06 v4.1.1 - -=== [Accounts / authentication] - -* Defect #32793: Email address with Punycode top-level domain is not accepted - -=== [Administration] - -* Defect #33176: Sort order icon is missing in users index -* Feature #32945: Show module names in bold in permission report - -=== [Attachments] - -* Defect #32656: Drag and drop objects from Outlook to Redmine deletes the objects -* Defect #32785: X-Sendfile header field is not set if rack 2.1.0 is installed - -=== [Custom fields] - -* Defect #33085: Unable to update the values of a custom field for enumerations when multiple values option is enabled -* Defect #33183: Unable to edit user or group that has custom fields with text formatting enabled - -=== [Database] - -* Defect #30285: Microsoft SQL server support is broken - -=== [Gantt] - -* Defect #19248: End markers in gantt PDF are misaligned -* Defect #23645: Gantt bars for single-day tasks may be rendered wrongly in PDF -* Defect #32812: Clicking on a parent object in gantt wrongly collapses objects at the same level -* Defect #33082: Links in the last column in gantt are unclickable - -=== [Gems support] - -* Defect #32839: Redmine 4.1 installation fails due to an attempt to install sprockets 4.0.0 if bundler prior to 1.15.2 is used on Ruby prior to 2.5 - -=== [Importers] - -* Defect #33027: Fix missing closing div in _time_entries_fields_mapping.html.erb - -=== [Issues] - -* Defect #32737: Duplicate sort keys for issue query cause SQL error with SQL Server -* Defect #33169: Issues CSV export does not include custom fields with "Full width layout" enabled - -=== [Issues list] - -* Defect #33110: Sort does not work with group by datetime columns -* Defect #33163: Parent task subject column should be in the same style as Subject column - -=== [Issues workflow] - -* Defect #33059: "Role" dropdown in Workflow page is unexpectedly expanded when selecting "all" - -=== [PDF export] - -* Defect #32477: Right-aligned TOC tag is displayed in exported PDF if the text formatting setting is Markdown -* Defect #32832: FrozenError when exporting content to PDF in some languages -* Defect #32858: Exporting issue as PDF fails when the issue has private journal -* Defect #32859: Issue list: long text custom field missing in PDF export -* Defect #33103: Export to PDF fails when subject of parent task is included in issue list - -=== [Projects] - -* Defect #32769: Unable to sort projects table by custom field -* Defect #32891: Bookmark link on project page should not use full path with hostname -* Defect #32896: Totals not working in projects list view -* Defect #33083: Projects filter "Subproject of" does not work when the given value is "My projects" or "My bookmarks" - -=== [REST API] - -* Defect #33113: Default version and assignee are not exposed via projects API - -=== [Rails support] - -* Patch #33196: Update Rails to 5.2.4.2 - -=== [Ruby support] - -* Patch #32788: Specify supported Ruby version in Gemfile and doc/INSTALL - -=== [SCM] - -* Defect #32449: Diff view for .js files in repositories is broken - -=== [Security] - -* Defect #32850: XSS vulnerability due to missing back_url validation -* Defect #32934: XSS vulnerabilities in textile inline links -* Defect #33075: Time entries csv export should check issue visibility - -=== [Text formatting] - -* Defect #32754: Fix missing arrow icon of collapse macro -* Defect #32765: ##123 syntax for linking to issues: Title cannot be distinguished from following text -* Defect #32971: New line between list items break a list - -=== [Time tracking] - -* Defect #32768: Internal Error when issue text custom field is shown in Spent time query results -* Defect #32774: Creating time tracking entry for other user through rest API fails with 403 -* Defect #32959: Fix selected user on log time edit page when user has permissions to log time for another user -* Defect #32973: Editing a time entry for a locked user changes the user to the current user -* Defect #33052: Missing subject and tracker name in CSV export of time entries report -* Feature #3800: Editing time entries should show the person involved - -=== [Translations] - -* Patch #32659: Russian translation update for 4.1-stable -* Patch #32746: Italian translation update for 4.1-stable -* Patch #32917: Bulgarian translation -* Patch #32928: Czech translation for 4.1-stable -* Patch #32995: Russian translation update for 4.1-stable -* Patch #33070: Simplified Chinese translation update for 4.1-stable -* Patch #33122: German translation update for 4.1-stable -* Patch #33219: Persian translation update for 4.1-stable - -=== [UI] - -* Defect #32772: Tabs are displayed on two lines when the total width of the tabs is greater than 2000px -* Defect #32829: HTML entity is used in CSS string -* Defect #32838: Typo in application.css: s/paddin-bottom/padding-bottom/ -* Defect #32981: Unable to distinguish disabled input fields -* Patch #32991: Make group names bold on tracker summary view -* Patch #33068: Update copyright year in the footer to 2020 - -=== [UI - Responsive] - -* Defect #32889: Responsive layout for issue tree and issue relation on issue page is broken -* Feature #33156: Allow zooming on mobile devices - -== 2019-12-20 v4.1.0 - -=== [Accounts / authentication] - -* Feature #4221: Force passwords to contain specified character classes -* Feature #9112: Libravatar and Gravatar-compatible servers support -* Feature #26127: Display user logins on profiles - -=== [Administration] - -* Defect #29601: Redmine::VERSION::revision may return wrong value -* Feature #8343: Add wiki toolbar to "Email header" and "Email footer" in "Email notifications" admin tab -* Feature #30853: Show warning when no workflow is defined for the role -* Feature #30916: Show warning when no tracker uses the status in the workflows -* Feature #31154: Reject setting RFC non-compliant emission email addresses -* Feature #31361: Include a reason in the error message when an issue status cannot be deleted -* Feature #32343: Ability to filter roles that are displayed on the permissions report -* Patch #29589: Set the first status as a default status in "New tracker" form - -=== [Attachments] - -* Defect #32289: Don't try to generate thumbnails if convert command is not available -* Feature #3816: Allow pasting screenshots from clipboard -* Feature #22481: Show thumbnails for PDF attachments -* Feature #29752: Render Textile and Markdown attachments on the preview page -* Feature #31553: Preview .webm as video instead of audio -* Feature #32249: Show attachment thumbnails by default -* Patch #13688: Chosen thumbnail has to be bigger than requested one and not smaller -* Patch #30177: Thumbnail lifecycle: reuse thumbs from identical files, delete thumbs when diskfile is deleted - -=== [Calendar] - -* Feature #27096: Mark non-working days in calendar view - -=== [Code cleanup/refactoring] - -* Defect #30474: IssuesControllerTest#test_index_sort_by_total_estimated_hours tests practically nothing -* Defect #30806: TimeEntryTest#test_create_should_validate_user_id occasionally fails -* Defect #31053: Some issue fixtures are set inconsistent tracker id which is not available in the project -* Defect #31074: TimelogTest#test_default_query_setting fails depending on the language of the browser -* Defect #31093: Duplicate method definition: ProjectsControllerTest#test_jump_should_not_redirect_to_unknown_tab -* Defect #31387: Don't rescue Exception class -* Defect #31388: ApiTest fails if config.time_zone is set -* Defect #31510: Fix missing closing tags in workflows/permissions.html.erb -* Defect #31929: MarkdownFormatterTest#test_should_support_underlined_text is declared as private -* Patch #29441: Remove code related to JRuby and unsupported Ruby versions -* Patch #30163: Remove unnecessary tests in test/unit/initializers/patches_test.rb -* Patch #30276: Add missing fixtures to several tests -* Patch #30347: test_links_separated_with_line_break_should_link tests nothing -* Patch #30445: Remove unnecessary bgl and bgr wrappers from the footer -* Patch #30466: Remove unused i18n key "label_all_time" -* Patch #30994: Refactor custom field css classes -* Patch #31004: Decode hexadecimal-encoded literals in order to be frozen string literals friendly -* Patch #31034: Remove encoding magic comments -* Patch #31046: Remove unused method ApplicationHelper#generate_csv -* Patch #31059: Use #b shortcut instead of #force_encoding -* Patch #31088: Remove useless code in TimeEntryQuery#sql_for_activity_id_field -* Patch #31131: CalendarsControllerTest#test_show fails depending on the date -* Patch #31205: Replace jquery-rails with vanilla javascript ujs -* Patch #31344: Remove unused i18n key "label_please_login" -* Patch #31391: Small refactorization of avatar methods -* Patch #31402: Add support for customization by block to IssueCustomField.generate! -* Patch #31433: Use "icon icon-*" classes for sort-handler, collapsible fieldsets and collapsible versions -* Patch #31506: Remove trailing whitespaces -* Patch #31509: Add Rubocop to enforce some styles -* Patch #31555: Use Redmine::Database.mysql? instead of a regular expression -* Patch #31705: Add missing fixtures to AttachmentFormatVisibilityTest -* Patch #31865: Add missing fixtures to ImportsControllerTest -* Patch #31941: ThemesTest may fail if a third-party theme with a favicon is installed -* Patch #31965: Add missing fixtures to Redmine::ApiTest::VersionsTest -* Patch #31966: Add missing fixtures to Redmine::Helpers::GanttHelperTest -* Patch #31967: IssueCustomFieldTest randomly fails -* Patch #32023: Add missing fixtures to IssueStatusesControllerTest -* Patch #32025: mail_body method in test/test_helper.rb raises an exception if the message is not multipart -* Patch #32094: Remove unnecessary call to set_tmp_attachments_directory -* Patch #32122: Fix test failure due to missing call to set_tmp_attachments_directory -* Patch #32297: Remove code for unsupported versions of Rails from open_id_authentication -* Patch #32400: Remove unused i18n key "button_duplicate" -* Patch #32431: Invalid association IssueCustomField#issue_custom_values -* Patch #32432: Avoid class name overlap that causes TypeError on `rake test:system test` - -=== [Custom fields] - -* Defect #29209: Long text custom fields don't accept values longer than 64KB if backend database is MySQL -* Feature #23997: Per role visibility settings for version custom fields -* Feature #29712: Preview and wiki toolbar for full width custom fields -* Feature #31159: "Create and continue" button for custom fields -* Feature #31444: Add "<< me >>" option to user format issue custom fields -* Feature #31859: Per role visibility settings for spent time custom fields -* Feature #31925: Per role visibility settings for project custom fields -* Patch #31320: Set an appropriate default type in New custom field page depending on the current tab - -=== [Database] - -* Feature #31921: Changes to properly support 4 byte characters (emoji) when database is MySQL - -=== [Documentation] - -* Feature #32119: Add TOC to wiki formatting help -* Feature #32123: Add "Highlighted code" section in Wiki Syntax Quick Reference -* Feature #32169: Add links to the detailed Wiki formatting help in Quick Reference -* Patch #30970: Small improvements in appearance of the code coverage index page -* Patch #31169: Wiki syntax help for document image pasting and drag/drop embedding -* Patch #31327: Update CONTRIBUTING.md - -=== [Documents] - -* Feature #29725: Show recent documents first when sorting documents by date - -=== [Email notifications] - -* Defect #13888: Daylight savings causes inconsistency of Message-Id in emails -* Defect #14792: Don't add a display name and extra angle brackets in List-Id header field -* Defect #17096: Issue emails cannot be threaded by some mailers due to inconsistent Message-ID and References field -* Defect #31501: reminder.rake should ignore blank parameters -* Feature #5913: Authors name in from address of email notifications -* Feature #10378: Don't show empty fields in email notifications -* Feature #13111: New setting to include the status changes in issue mail notifications subject -* Feature #13307: Start date and due date in email notifications -* Feature #17840: Option to send email notification on "Target version updated" -* Feature #22771: Option to send email notifications while importing issues from CSV files -* Feature #31104: Show the total number of open issues in a reminder -* Feature #31225: Show the number of days left until the due date in reminders -* Feature #31910: Add additional mail headers for issue tracker - -=== [Email receiving] - -* Defect #31232: Text may unexpectedly be enclosed in pre tags when an issue is created via HTML email -* Defect #31549: LF line terminators cause misparse of a multi-part email when rdm-mailhandler.rb is invoked from /etc/aliases -* Defect #31695: Convert HTML links to Textile/Markdown links when creating an issue from an email -* Defect #31946: No log message when MailHandler ignored a reply to a nonexistent issue, journal, or message -* Feature #17699: Parse author's name enclosed in parentheses in the From field when creating a user account from an email -* Feature #19903: Change textfield to textarea for "Exclude attachments by name" -* Feature #30838: Option to parse HTML part of multipart (HTML) emails first -* Feature #31231: Better handling of HTML tables when creating an issue from an email -* Patch #31324: Allow to set is_private flag through a keyword in emails -* Patch #31899: Improve MailHandler logging for unauthorized attempts - -=== [Gantt] - -* Feature #6417: Allow collapse/expand in gantt chart -* Feature #14654: Allow a bigger range for the gantt timeline -* Feature #27672: Show selected columns in gantt chart -* Feature #31373: Previous and next month links in gantt - -=== [Gems support] - -* Defect #31657: Update capybara (~> 3.25.0) -* Defect #32223: Disable sprockets to avoid Sprockets::Railtie::ManifestNeededError raised by sprockets 4.0.0 -* Feature #29946: Update i18n gem (~> 1.6.0) -* Feature #30492: Replace RMagick with MiniMagick -* Feature #30963: Update simplecov gem (~> 0.17.0) -* Feature #31911: Update request_store gem to 1.4 -* Patch #31126: Update sqlite3 gem (~> 1.4.0) -* Patch #31556: Update Rouge to 3.12.0 -* Patch #31611: Update csv gem (~> 3.1.1) -* Patch #31847: Update redcarpet to 3.5.0 -* Patch #31877: Update rbpdf (~> 1.20.0) -* Patch #31919: Update roadie-rails gem (~> 2.1.0) - -=== [Groups] - -* Feature #12796: Display user's groups on profile - -=== [Hook requests] - -* Patch #7975: Hook for adding content to the side bar of Wiki page - -=== [I18n] - -* Defect #5820: Hard-coded string "no subject" in app/models/mail_handler.rb - -=== [Importers] - -* Defect #21766: CSV import does not keep the project it was clicked from -* Feature #28213: Support external ID when importing issues -* Feature #28234: Add CSV Import for Time Entries -* Feature #31450: Support "YYYY/MM/DD" date format when importing issues - -=== [Issues] - -* Defect #28502: Support issue[assigned_to_id]=me when prefilling issues -* Feature #442: Add a description for trackers -* Feature #3058: Show issue history using tabs -* Feature #22368: Ability to add private comments from the issue bulk edit page -* Feature #25540: Unify fields of subtasks and related issues on issue page -* Feature #31418: Stacked bar charts in the issue details report -* Feature #31427: Insert a link to the source to the attribution line when quoting a note or a message -* Feature #31499: Show "Due in X days" in issue details page -* Patch #28138: Add link to add a new issue on the version page -* Patch #31493: Add a link to project_issues_report from project_issues_report_details -* Patch #31994: Allow issue auto complete to return 10 issues when there is not search term provided - -=== [Issues filter] - -* Defect #32546: Issue relations filter lacks "is not" -* Feature #13803: Implement grouping issues by date (start, due, creation, update, closing dates) -* Feature #16904: Add anonymous user to users list in query filters -* Feature #26826: Issue filtering by spent time -* Feature #30482: Multiple issue ids in "Parent task" filter -* Feature #30808: Multiple issue ids in "Subtasks" filter -* Feature #31328: Change the "+" button in the issues filter to a larger one -* Feature #31879: "starts with" and "ends with" filter operators for string values -* Patch #4502: New date filter operators: tomorrow, next week, next month -* Patch #25265: QueriesController can not handle subclass of IssueQuery - -=== [Issues list] - -* Defect #29581: Issues in paginated views may be lost because sorting criteria are not unique -* Feature #19371: Add a new query column for the parent task subject -* Feature #26081: Allow full_width_layout long-text custom fields to appear in the issue list like 'Description' (as a block column) -* Patch #31280: Left align long text custom fields in the issues list - -=== [My page] - -* Feature #30975: New My page block: Updated issues - -=== [PDF export] - -* Patch #30162: Wiki page collapse block image is not displayed in exported PDF - -=== [Performance] - -* Feature #26561: Enable frozen string literals -* Patch #28940: Use Regexp#match? to reduce allocations of MatchData object -* Patch #30249: Performance improvement when rendering news or calendar block on My page -* Patch #30828: Refactor GitAdapter#default_branch not to unnecessarily iterate through all elements -* Patch #31855: Speed up workflow edit page rendering - -=== [Permissions and roles] - -* Defect #17219: Rename label for "Issues can be assigned to this role" -* Defect #30431: Useless "Delete issues" tracker permission is shown on the role page for Anonymous and Non-member -* Feature #1248: New Permission: Edit own issues -* Patch #27625: Increase maximum size for role name - -=== [Plugin API] - -* Patch #27659: redmine_plugin_model_generator improvements(fixes and timestamps) -* Patch #31110: Raise an exception if the plugin directory name differs from the plugin id -* Patch #31457: Add support for reloading plugin assets automatically in development mode -* Patch #31485: Add support for :sql ActiveRecord::Base.schema_format in redmine:plugins:migrate -* Patch #31498: Add redmine_plugin_migration generator -* Patch #31746: Add redmine:plugins:test:system task - -=== [Project settings] - -* Defect #27101: Project identifier model constraint doesn't match with text_project_identifier_info and JS-generated identifiers -* Feature #22090: Make project settings more accessible -* Feature #31032: Display details about inheritance when editing a member roles -* Patch #30203: Add links to administration pages in project settings - -=== [Projects] - -* Feature #29482: Query system for Projects page -* Feature #31355: Bookmarks and recently used projects for the project jump box -* Feature #32306: Add a link to projects administration page on projects page -* Patch #31356: replace icon-fav with icon-user for 'my projects' -* Patch #31465: Add an icon linked to trackers detail report on the project overview page - -=== [REST API] - -* Defect #30073: Ajax Request Returns 200 but an error event is fired instead of success -* Feature #26237: Support wiki_page_title attribute in Versions REST API -* Feature #30086: Use HTTP status code 403 instead of 401 when REST API is disabled -* Feature #31559: Support "active" attribute in Enumerations REST API -* Feature #32002: Add inherit_members to projects API response -* Feature #32242: Add estimated hours and spent hours to Versions API -* Patch #13468: REST API for News -* Patch #31399: make /my/account endpoint accessible through API - -=== [Roadmap] - -* Defect #30949: Roadmap shows 100%, but one of its tasks is still set to 90% -* Patch #28510: Show issue assignee gravatar in roadmap and version page -* Patch #29391: Show version status in Roadmap and Version pages -* Patch #31424: Add issue css classes to issue rows in Roadmap and Version pages - -=== [Ruby support] - -* Defect #30967: "rake test:coverage" fails in Ruby 2.5 and 2.6 -* Feature #30356: Drop Ruby 2.2 support - -=== [SCM] - -* Defect #16881: Git: repository page crashes when non-ascii character in tag or branch name - -=== [Text formatting] - -* Defect #30259: URLs end with "-" are rendered incorrectly in Textile -* Feature #29489: Issue macro for flexible linking to issues -* Feature #30829: Simpler link syntax "#note-123" to make a link to a note of the current issue -* Patch #32359: Markdown: Fix sections parsing with code blocks - -=== [Third-party libraries] - -* Feature #31196: Updates jQuery to 2.2.4 and adds jQuery Migrate library -* Feature #31434: Update Chart.js to 2.8.0 -* Feature #31436: Update raphael.js to 2.3.0 - -=== [Time tracking] - -* Feature #3322: Setting to restrict spent times on future dates -* Feature #3848: Permission to log time for another user -* Feature #5061: Show time log entries in issue history -* Feature #30233: Allow grouping of time entries by creation date -* Feature #30346: Add "Target Version" to the list of "Available columns" in "Spent time" Tab -* Feature #30464: Show estimated hours on the overview page as well as spent hours - -=== [Translations] - -* Defect #31269: Fix Japanese translation for status_locked -* Defect #32354: Fix inconsistent capitalization in Italian translation -* Patch #10702: Change "Create and Continue" translation to "Create and add another" -* Patch #29142: Japanese translation change for "lost password" -* Patch #29151: Add honorific suffixes ("san") in Japanese translation -* Patch #30170: Change Japanese translation for "note" -* Patch #31256: german translation for missing parts -* Patch #31260: Improvement of Japanese translation for permission names -* Patch #32358: Fix incomplete Italian translation for notice_successful keys - -=== [UI] - -* Defect #27330: "Name" field in the 'edit version' form has no "maxlength" -* Defect #30467: Footer is not placed at the bottom on pages with little content -* Defect #31496: Switch between toggle plus and minus icons for toggle multi select -* Feature #6831: Add different style for group names in the New member modal window -* Feature #23392: Link to remove a subtask from its parent task -* Feature #30207: Hide menu item in the cross-project menu if the module is not enabled in any project -* Feature #31294: Add "robohash" to "Default Gravatar image" options -* Feature #31989: Inline issue auto complete (#) in fields with text-formatting enabled -* Feature #32052: Auto-complete issues #id in search form -* Patch #5899: Display user's gravatar when editing profile -* Patch #26604: Set a random name attribute on all forms to prevent overwritten values after soft reload with Firefox -* Patch #26646: Remove hardcoded width in query column selects -* Patch #29289: Wrap subprojects in the overview section with an unordered list to improve customisation -* Patch #30168: Wrap "splitcontentright" and "splitcontentleft" containers with a flexbox -* Patch #30294: Move the links (View all issues, Summary, Import) from the Issues section of the issues list sidebar under a dropdown -* Patch #30421: Issue tracking table on user profile page -* Patch #30435: Replace float rules with flexbox for content and sidebar block -* Patch #31022: Always use HTTPS when accessing gravatar.com -* Patch #31066: Show projects using a table instead of an unordered list in the user profile page -* Patch #31147: Add custom styles for all fields -* Patch #31204: Add hover styles to buttons -* Patch #31343: Visually distinguishable style for code tag -* Patch #31441: Show elements titles using jQuery UI tooltips -* Patch #31598: Move the links (All time entries, Import) from Spent time section of the spent time list sidebar under a dropdown -* Patch #31640: Add clear query icon next to selected query in sidebar -* Patch #31697: Show closed date in a tooltip if the issue is closed -* Patch #31950: Add CSS class to "journal" and "reply" headers -* Patch #31971: Change the color of the input field frame when in focus -* Patch #32013: Rounded corners of the main menu -* Patch #32014: Rounded corners on table.list elements -* Patch #32015: Rounded corners of "my page" blocks -* Patch #32037: Constrain sidebar width on different resolutions -* Patch #32165: Rounded corners on table.cal - -=== [Wiki] - -* Defect #11359: Wiki diff doesn't keep spaces -* Defect #20910: Hierarchy in TOC is not preserved when Wiki index is exported to HTML -* Feature #9634: Show locked badge for locked wiki pages - -== 2019-12-20 v4.0.6 - -=== [Attachments] - -* Defect #20277: "Couldn't find template for digesting" error in the log when sending a thumbnail or an attachment - -=== [Gems support] - -* Patch #32592: Require 'mocha/minitest' instead of deprecated 'mocha/setup' - -=== [Rails support] - -* Feature #32526: Update Rails to 5.2.4.1 - -=== [Text formatting] - -* Defect #32422: Textile indentation does not work in the preview tab -* Patch #25742: Improper markup sanitization in user content for space separated attribute values and different quoting styles - -=== [Time tracking] - -* Defect #32500: Spent time report csv shows translation missing text if custom fields are involved - -== 2019-10-19 v4.0.5 - -=== [Code cleanup/refactoring] - -* Defect #31870: Remove deprecated .zIndex() method -* Defect #32022: IssueSubtaskingTest fails with high probability -* Defect #32110: "already initialized constant Redmine::Scm::Adapters::SubversionAdapter::SVN_BIN" warning when executing rake tasks -* Patch #32189: Remove unnecessary requiring of "rexml/document" - -=== [Documentation] - -* Defect #32170: Text enclosed in pre tag in Wiki formatting reference is not displayed in monospaced font in Chrome -* Defect #32184: Incorrect headings example in Textile help - -=== [Gantt] - -* Defect #31552: View switches from gantt to list after editing an issue - -=== [Gems support] - -* Defect #32300: Don't use sprockets 4.0.0 in order to avoid Sprockets::Railtie::ManifestNeededError -* Patch #32294: Update ruby-openid to 2.9.2 - -=== [Issues] - -* Defect #31778: Total estimated time issue query column and issue field might leak information - -=== [Issues list] - -* Defect #31779: Total estimated time column shown even when estimated time field is deactivated - -=== [Translations] - -* Defect #32290: Typo in Russian translation for label_in_the_next_days -* Patch #31951: German translation update for 4.0-stable - -=== [UI] - -* Defect #31742: The color of h4 in the comment also changes when #note-1 is specified -* Defect #32012: Broken JavaScript icon in the repository view -* Defect #32024: Broken gzip icon in the repository view - -== 2019-06-10 v4.0.4 - -=== [Administration] - -* Defect #31125: Don't output ImageMagick version information to stdout - -=== [Attachments] - -* Defect #29259: Attachment preview does not work for some source files such as JavaScript and Go -* Defect #30441: Attachments with Unicode uppercase names are not shown in wiki pages -* Defect #31275: Safari adds .html extension when downloading files of unknown type - -=== [Code cleanup/refactoring] - -* Defect #30811: "rake db:fixtures:load" does not work - -=== [Email receiving] - -* Defect #30457: MailHandler.safe_receive does not output any error log -* Defect #31365: Issue subject may be broken if the subject field in the receiving email is split into multiple lines -* Defect #31503: Undefined local variable sender_email in MailHandler#receive_message_reply - -=== [Gantt] - -* Defect #31268: Fix gaps in resizable gantt chart - -=== [Issues filter] - -* Patch #31276: Serialize group_by and totalable_names in Query#as_params - -=== [Rails support] - -* Defect #31337: Explicitly load redmine/info in order to avoid "uninitialized constant" error -* Patch #31113: Update Rails to 5.2.3 - -=== [SCM] - -* Defect #30850: Unified diff link broken on specific file/revision diff view -* Defect #31120: Garbage lines in the output of 'git branch' break git adapter - -=== [Security] - -* Defect #31520: Persistent XSS in textile formatting - -=== [Text formatting] - -* Defect #31285: Syntax highlighting does not work for attachments with .pl extension - -=== [Time tracking] - -* Defect #31511: CSV export of time entries report does not honor project filter - -=== [Translations] - -* Defect #31264: Conflicting translation between "track" and "watch" in Simplified Chinese - -=== [UI] - -* Defect #31330: Import issues: File content preview block is scrolling -* Defect #31438: Incorrect position of the "Associated revisions" block when comments are displayed in reverse chronological order - -=== [UI - Responsive] - -* Defect #31153: Display horizontal scroll bar of files table when overflow occurs on small screen -* Defect #31311: admin/info page: text cut off in pre tag on mobile - -=== [Wiki] - -* Patch #31334: Do not lose content when updating a wiki page that has been renamed in the meantime - -== 2019-03-31 v4.0.3 - -=== [Administration] - -* Defect #30939: Timeout for "Check for updates" on Plugins page is too short - -=== [Email notifications] - -* Defect #30955: "View all issues" link in email reminders points to issues list which does not include issues assigned to a group - -=== [Files] - -* Defect #31087: Deleting a version silently deletes its attachments - -=== [Gantt] - -* Defect #31063: Can't uncheck Gantt chart options of custom queries - -=== [Issues filter] - -* Defect #30367: "Last updated by" filter causes an SQL error with MariaDB - -=== [Issues list] - -* Defect #26836: Filtering issues via context menu should not reset selected columns - -=== [Plugin API] - -* Defect #30753: Plugins auto_load and eager_load paths -* Patch #31030: Include plugin name in the exception when the plugin required by requires_redmine_plugin is not found - -=== [REST API] - -* Defect #29055: Searching for issue number with REST API redirects to issue HTML page - -=== [Rails support] - -* Feature #31026: Upgrade to Rails 5.2.2.1 - -=== [SCM] - -* Defect #30731: "View differences" buttons are shown in the repository page even without "Browse repository" permission -* Defect #30850: Unified diff link broken on specific file/revision diff view - -=== [Search engine] - -* Defect #30923: Project search should select subprojects scope when the project has subprojects - -=== [Text formatting] - -* Defect #30256: Cannot make cross-project wiki link if the project name includes square brackets - -=== [Translations] - -* Patch #31124: Galician translation update for 4.0-stable - -=== [UI] - -* Defect #30872: Copyright is outdated -* Defect #30988: Preformatted text overflows the preview area -* Feature #30977: Add CSS class to project custom fields -* Feature #30985: Add CSS class to user custom fields - -== 2019-02-21 v4.0.2 - -=== [Attachments] - -* Defect #30434: Line height is too large when previewing files with syntax highlighting if the line terminators are CRLF - -=== [Email receiving] - -* Defect #30785: Mail handler does not ignore emails sent from emission email address if Setting.mail_from includes display name - -=== [Gems support] - -* Defect #30114: Installing xpath with Bundler fails in Ruby <=2.2 -* Patch #30821: Stay in RMagick 2.16.0 and don't update to 3.0.0 - -=== [Issues filter] - -* Defect #30718: Translation missing for filter by project status - -=== [Issues list] - -* Defect #30236: Accidentally clicking next to the checkbox breaks issue selection - -=== [Rails support] - -* Patch #30725: Plugin eager_load should depend on environment setting instead of name - -=== [SCM] - -* Defect #30411: Filesystem adapter does not show correct size for large files - -=== [Translations] - -* Defect #30732: Bulgarian translation update for 4.0-stable -* Patch #30791: Traditional Chinese translation update for 4.0-stable - -=== [UI] - -* Feature #10264: Add a check/uncheck all button to search -* Feature #30834: Links to forum replies should highlight the linked reply -* Patch #30818: Issues autocomplete should respond with content type json - -=== [Wiki] - -* Defect #30758: Preview URL in Wiki Toolbar should be escaped - -== 2019-01-20 v4.0.1 - -=== [Calendar] - -* Defect #30287: The tooltip layout of the calendar is broken - -=== [Code cleanup/refactoring] - -* Patch #30115: Move Version#fixed_issues extension to a module -* Patch #30413: Add ".ruby-version" to svn:ignore, .git:ignore, and .hgignore - -=== [Database] - -* Defect #30171: Decrypting LDAP and SCM passwords fail if the plaintext password is longer than 31 bytes - -=== [Documentation] - -* Defect #30161: Incorrect supported Ruby version in doc/INSTALL - -=== [Email receiving] - -* Defect #30455: Adding an issue note via email fails due to NoMethodError - -=== [Forums] - -* Patch #2635: Display notice on forum updates - -=== [Gems support] - -* Defect #30353: Installing rails with Bundler 2.0 fails in 3.x -* Patch #30241: Update nokogiri gem (~> 1.10.0) -* Patch #30420: Update pg gem (~> 1.1.4) - -=== [Importers] - -* Patch #30412: Import UTF-8 issue CSV files with BOM and quoted strings - -=== [Performance] - -* Patch #30465: Deadlock when assigning custom values - -=== [Ruby support] - -* Feature #30118: Ruby 2.6 support - -=== [Translations] - -* Patch #29767: Traditional Chinese translation update -* Patch #30292: Ukrainian translation update for 4.0-stable - -=== [UI] - -* Defect #30426: Table rows are not highlighted on mouseover on some pages -* Patch #29951: Quick design fix/proposals for projects index page - -== 2018-12-09 v4.0.0 - -=== [Accounts / authentication] - -* Feature #28561: Add note about link validity to password lost email -* Patch #5957: Export users list to CSV -* Patch #29781: Prevent users from getting stuck with an expired password recovery token in their session - -=== [Administration] - -* Defect #28920: Redmine::VERSION::revision should take subversion_command setting into account -* Feature #29993: Option to unarchive the project when admins visit an archived project -* Patch #26341: Add useful details to error message when a template is missing - -=== [Attachments] - -* Feature #16410: Bulk delete wiki attachments -* Feature #27822: Remove filename from attachment preview links -* Feature #28616: Handle image orientation of attachments and thumbnails -* Patch #27336: Render previews for audio and video files -* Patch #28295: Show name changes in diff preview -* Patch #29190: Add link to container on attachment preview -* Patch #29395: Pagination between repository entries and attachments of the same container - -=== [Calendar] - -* Feature #28067: Add context menu for issues in calendar - -=== [Code cleanup/refactoring] - -* Defect #28268: Fix typo in test name: s/udpate/update/ -* Defect #28931: Unreachable code in QueriesControllerTest#test_bulk_copy_to_another_project -* Defect #29215: Fixture is missing for IssuesTest#test_create_issue_with_new_target_version -* Defect #29708: Wrong use of refute_includes in tests -* Defect #29820: Missing fixture enabled_modules in TrackerTest -* Defect #29883: AttachmentsVisibilityTest and Redmine::AttachmentFieldFormatTest fail randomly due to uninitialized User.current -* Defect #29912: Missing closing tag in app/views/roles/_form.html.erb -* Defect #29990: Add missing fixtures for test_create_should_send_notification -* Defect #30054: Add missing fixtures for test_create_with_one_attachment -* Defect #30120: Add missing fixture for reports_controller_test -* Patch #26130: Refactor "multiple_values_detail" struct creation -* Patch #26323: Remove ActiveRecord workaround (fixed in Rails 5) -* Patch #27670: Fix typo in configuration.yml.example -* Patch #28024: Fix typo in error message in mailer.rb -* Patch #28028: Remove unused method Mailer#mylogger -* Patch #28229: Remove unused i18n key "setting_app_subtitle" -* Patch #28478: Update the app name in extra/sample_plugin/init.rb: s/RedMine/Redmine/ -* Patch #28605: Add the missing icon class to the items with icons from the contextual menu -* Patch #28611: Remove unused i18n strings from locale files -* Patch #29160: Remove unused and broken method CustomField.visibility_condition -* Patch #29440: Fix typo in test name: s/highligth/highlight/ -* Patch #29632: Redmine::SortCriteria#normalize! does not limit properly the number of elements -* Patch #29710: Remove unused variable 'filter_options' from Query#add_filter -* Patch #30137: Remove rails-html-sanitizer from Gemfile - -=== [Custom fields] - -* Defect #25726: Issue details page shows default values for custom fields that aren't actually set -* Patch #27024: Links on custom field values don't have "external" class -* Patch #29161: Avoid SQL errors when adding a project custom field as a time report criteria -* Patch #29189: Display custom fields on group pages - -=== [Documentation] - -* Patch #28943: Remove RDoc tags -* Patch #28996: Update Redmine::Plugin documentation - -=== [Email notifications] - -* Defect #5703: On SMTP failure, an internal error occurs and all changes to an issue are lost -* Defect #8157: Redmine do not send notification emails if a recipients email address is not valid -* Feature #26791: Send individual notification mails per mail recipient -* Feature #29771: Sort issues by due date in email reminders -* Feature #30068: Remove :async_smtp and :async_sendmail delivery methods - -=== [Email receiving] - -* Defect #27810: Typo in rdm-mailhandler.rb: s/Proccessed/Processed/ -* Defect #27812: Typo in rdm-mailhandler.rb: s/subadress/subaddress/ -* Defect #29442: Vendor-defined characters in ISO-2022-JP email subject break issue's subject -* Feature #27070: Allow setting "Parent issue" attribute in emails -* Patch #27025: Regex support for excluded mail attachments -* Patch #28026: "project_from_subbaddress" option is not listed in the help of "rake redmine:email:receive_imap" -* Patch #29614: redmine:email:read and rdm-mailhandler.rb should use safe_receive instead of receive -* Patch #29669: "no_notification" option is not listed in the description of email.rake - -=== [Gantt] - -* Defect #13521: Gantt bars with start date and end date on the same day don't become red by overdue -* Feature #10485: Add new context menu in Gantt view for each issue -* Feature #20481: Gantt: right and left resizable panel -* Patch #26671: Use the new pagination style in gantt -* Patch #26869: Use number input field instead of text input for Gantt months field -* Patch #28602: Move edit and delete buttons for queries to the buttons section - -=== [Gems support] - -* Defect #26066: Selenium::WebDriver doesn't work with current version of Firefox -* Feature #29443: Update mail gem (~> 2.7.1) -* Feature #29947: Update roadie gem to 3.4.0 -* Patch #26322: Update simplecov gem (~> 0.14.1) -* Patch #26503: Update nokogiri gem (~> 1.8.0) -* Patch #28504: Update mysql2 gem to 0.5.0 -* Patch #28505: Update pg gem to 1.0 -* Patch #28929: Update roadie-rails to ~> 1.3.0 -* Patch #29999: Update rdoc gem - -=== [Hook requests] - -* Patch #28895: view_projects_copy_only_items hook - -=== [I18n] - -* Feature #26618: Support of default ActiveRecord I18n scopes in LabelledFormBuilder - -=== [Issues] - -* Defect #14846: Calculation of the start date of following issues ignores the "non-working days" setting -* Defect #27848: The progress exceeding 99.5% is displayed as 100% -* Defect #28264: Global and public custom queries are shown as editable to non administrators in projects -* Defect #28951: Cannot clear category field on copying an Issue -* Defect #29701: Custom queries are broken by updating with nil parameter values -* Feature #2529: Extend Issue Summary to include subprojects -* Feature #12704: Allow selecting subprojects on new issue form -* Feature #15919: Set default category assignee immediately upon category selection -* Feature #23518: Move action links and edit form above the history when displaying comments in reverse order -* Feature #26192: Option to disable automatic closing of duplicate issues -* Feature #26279: Allow switching the encoding to UTF-8 when exporting to CSV -* Patch #27772: Issues reports should show only statuses used by the project -* Patch #28154: Support for lastnames with spaces in user autocompleters -* Patch #28494: Recalculate issue priority position names if default value changed - -=== [Issues filter] - -* Feature #8160: Extend watched_by_me-issue filter to include all project-members instead of only <>-substitution -* Feature #15201: Filter "Assignee" should contain locked users -* Feature #28660: Change default operator for text format custom fields from "is" to "contains" -* Patch #26091: Allow to filter by any visible version on the global issues view - -=== [Issues list] - -* Feature #27316: Highlight due date of overdue issues in the issues list - -=== [LDAP] - -* Defect #24970: Net::LDAP::LdapError is deprecated -* Defect #28000: Deletion of an LDAP authentication mode may fail silently -* Feature #21923: net-ldap 0.12.0 - 0.12.1 dropped support of UTF-8 -* Patch #29606: Support self-signed LDAPS connections - -=== [My page] - -* Feature #2471: Add my activities to my page -* Feature #29449: Filter out issues from closed projects in My Page blocks - -=== [PDF export] - -* Defect #12510: Issues PDF export: Spent time/Float-values aren't rounded to 2 digits - -=== [Performance] - -* Feature #28952: Update User#last_login_on only once per minute -* Patch #26711: Use pluck instead of collect/map -* Patch #26747: Use find_by instead of where.first to remove unnecessary sorting -* Patch #27671: Use reverse_each instead of reverse.each for better performance -* Patch #29299: Use Enumerable#sort_by instead of Enumerable#sort -* Patch #29305: Use Hash#each_key instead of Hash#keys.each -* Patch #29359: Switch to mini_mime from mime-types -* Patch #29363: Use String#tr instead of String#gsub -* Patch #29406: Use sorted instead of sort - -=== [Permissions and roles] - -* Defect #26145: Don't redirect anonymous users to the login form for disabled modules - -=== [Plugin API] - -* Defect #26610: Migration file generated by redmine_plugin_model generator is not compatible with Rails 5.1 -* Defect #28668: redmine_plugin_controller generates camelcase filename -* Patch #28564: JSON API responses cannot have elements named 'request' or 'response' - -=== [Project settings] - -* Feature #26488: Project settings : Move issue tracking settings to their own tab -* Feature #26579: Project settings : remove Wiki tab -* Patch #27799: Mark default version in versions tab from project settings - -=== [Projects] - -* Feature #10282: Copy wiki attachments on project copy -* Feature #20081: Filter issues and time entries by project status -* Patch #26621: Allow to copy documents along with projects -* Patch #26622: Copy version attachments (i.e. Files) along with the versions on project copy - -=== [REST API] - -* Defect #28686: /users API does not accept boolean-like String values for generate_password -* Patch #28191: Add assignable, issues_visibility, time_entries_visibility and users_visibility to Roles API response -* Patch #29459: Add admin flag to users API - -=== [Rails support] - -* Feature #19755: Drop protected_attributes gem -* Feature #23630: Migrate to Rails 5.2 -* Patch #28934: Support migration context for plugins - -=== [Roadmap] - -* Patch #27676: Information leak on roadmap and versions view - -=== [Ruby support] - -* Feature #25538: Drop support for Ruby 2.2.1 and ealier, 2.2.2+ is now required -* Feature #27849: Ruby 2.5 support - -=== [SCM] - -* Feature #26576: Use tabs to switch between file changes and diff of a commit -* Patch #26391: Drop Darcs SCM support -* Patch #26522: Repository routing bug when file path starts with (browse|entry|raw|changes|annotate|diff)/ - -=== [SEO] - -* Defect #27865: RailsBaseURI ignored while creating robots.txt -* Feature #27876: Add project id to robots.txt -* Feature #29503: Discourage search engines from indexing old versions of wiki pages - -=== [Search engine] - -* Feature #26620: Change the text of the submit button on search page from button_submit to label_search -* Patch #30037: Allow single Chinese character as a search keyword - -=== [Text formatting] - -* Defect #26443: User link syntax (user:login) doesn't work for logins consisting of an email adress -* Defect #26507: "attachment:filename" link syntax would not work if the file name contains "@" -* Defect #26708: Diff formatting results empty lines if they contains HTML tags -* Defect #26892: Link to user in wiki syntax only works when login is written in lower case -* Defect #27968: Image filename for HDPI monitors (image@2x.jpg) are misrecognized as email address -* Feature #22843: Change the value of "pre" button in Markdown toolbar from "~~~" to "```" -* Feature #24681: Syntax highlighter: replace CodeRay with Rouge -* Feature #26552: Allow "max-height", "max-width", "min-height" and "min-width" CSS properties in Textile -* Feature #28796: Make sure that inline markups inserted by wiki toolbar are surrounded by whitespaces -* Patch #16313: Allow to link to an anchor of the current wikipage -* Patch #27114: Make robust Redmine::Helpers::URL#uri_with_safe_scheme? -* Patch #28169: Enable and add underline button to the toolbar for Markdown formatting -* Patch #28207: Test improvements for footnotes formatting syntax -* Patch #29488: ##123 syntax for linking to issues with tracker name and subject - -=== [Time tracking] - -* Feature #26356: Time entry list: set default column options -* Feature #26396: Timelog list : new column that contains the date when the time was logged -* Feature #28391: Add issue category filter and column to spent time queries -* Feature #29042: Add links to Users, Projects and Versions (at least) in timelog report -* Patch #24005: Settings to accept 0 hours time entries and for maximum hours per user and day -* Patch #26534: Allow project bulk edit of time entries -* Patch #29162: Only allow visible custom fields as aggregation criteria in time reports - -=== [Translations] - -* Defect #22424: Change Russian translation for default_issue_status_feedback -* Defect #28160: Misleading russian translation for "Log time" button -* Defect #29901: Fix typo in French text_tracker_no_workflow -* Patch #26501: Change English translation for setting_issue_list_default_columns -* Patch #26514: German translation for 404-error-page is semantically not correct and misleading -* Patch #26591: Spanish "text_journal_changed" translate change -* Patch #27506: Czech translation change -* Patch #27768: Lithuanian "default_role_developer" translation change -* Patch #27926: Change Bulgarian translation for label_news_new -* Patch #27989: Change Galician translation for "Underline" and "Wiki link" (jstoolbar-gl.js) -* Patch #28279: Change German translation for not_a_regexp and setting_mail_handler_enable_regex -* Patch #28311: Remove unused i18n key "permission_move_issues" -* Patch #28321: Change Japanese translation for "in use" -* Patch #28493: Persian translation update and improvements -* Patch #28769: Change inconsistent Japanese translation for time tracking activities -* Patch #29115: Change Japanese translation for date filter operators -* Patch #29118: Change Japanese translation for text_user_mail_option -* Patch #29129: Use active voice instead of passive voice in Japanese translation -* Patch #29275: Update French translations -* Patch #29697: Czech translation fixes -* Patch #29739: Change English name for zh and zh-TW to "Chinese/Simplified" and "Chinese/Traditional" - -=== [UI] - -* Defect #5593: Grey out workflow checkboxes for transitions to the same status -* Defect #17517: Attempting to Add a Related Issue Multiple Times Sequentially Causes 500 -* Defect #29607: Allow project column to break into new line in time entry table -* Feature #8888: Add a link / button to get back to the Issue/Time tracking screen from the "Log time" screen -* Feature #12221: Add "View Differences" button above wiki and repository revisions table -* Feature #22978: Links to issue notes should highlight the linked note -* Feature #26253: Render repository graphs using Chart.js instead of SVG -* Feature #26577: More neutral color download icon -* Feature #26638: Move journal action links above the notes -* Feature #26648: Show transparency grid when previewing images -* Feature #27758: Adds preview option to the wiki toolbar -* Feature #28330: Links to wiki headings should highlight the linked heading -* Feature #28413: Add CSS class to identify public projects -* Feature #28531: Add css to distinguish when a main menu is present or not -* Feature #29053: Add check/unchek all icon in "Email notifications" section on "My account" page -* Feature #29080: Add check/uncheck all icon in "Copy" section on copy_project page -* Feature #29183: Move "Latest news" above "Members" on project overview page -* Feature #29306: Add assignee's icon to tooltips in gantt and calendar -* Patch #25853: Move left bottom links from project settings above -* Patch #26125: Unify form#query_form on calendar/gantt views with issues/spent time views -* Patch #26655: Additional icon for contextmenu -* Patch #26662: Add border around issue history to prevent accidental deletion of an issue -* Patch #26674: Add CSS classes to column headers of issues and timelogs list -* Patch #27009: Clarify consequences of disabling the login_required setting -* Patch #27219: Show default status on the trackers list -* Patch #27240: Render the activities block on the UsersController#show view grouped, with event_type icon and with the 'me' indication -* Patch #27807: Use a unique way to check/uncheck a group/fieldset with checkboxes -* Patch #28242: Add toggle checkboxes link (green tick) to several screens -* Patch #28662: Replace "Cancel" buttons from the modals with "Cancel" link -* Patch #29033: Move attachments to their own section in issue page -* Patch #29644: Add a link to issues summary to issue tracking box on overview page - -=== [Wiki] - -* Defect #22967: Special character like quote breaks wiki links -* Defect #22975: Moving a wiki page to a different project should refresh parent page list -* Feature #26575: Add update info at the bottom of the wiki page -* Patch #16446: Generate full URLs to images and linked pages in the Wiki HTML export -* Patch #26043: Set the parent page automatically when creating a wiki page from the "Add page" link - -== 2018-06-10 v3.4.6 - -=== [Issues] - -* Defect #27863: If version is closed or locked subtasks don't get copied -* Defect #28765: Copying an issue fails if the issue is watched by a locked user -* Patch #28649: Log automatic rescheduling of following issues to journal - -=== [Permissions and roles] - -* Defect #28693: Irrelevant permission is required to access some tabs in project settings page - -=== [Project settings] - -* Defect #27122: Filter for version name should be case-insensitive - -=== [SCM] - -* Defect #28725: Mercurial 4.6 compatibility - -=== [Text formatting] - -* Defect #28469: Syntax highlighter does not work if language name is single-quoted - -=== [Translations] - -* Patch #28881: Fix Japanese mistranslation for label_comment_added - -=== [UI] - -* Defect #22023: Issue id input should get focus after adding related issue - -=== [UI - Responsive] - -* Defect #28523: Display horizontal scroll bar of plugins table when overflow occurs on small screen - -=== [Wiki] - -* Patch #27090: Show the number of attachments on wiki pages - -== 2018-04-07 v3.4.5 - -=== [Custom fields] - -* Defect #28393: Sort issue custom fields by position in tracker UI - -=== [Email notifications] - -* Defect #28302: Security notification when changing password on password forgotten is empty - -=== [Gantt] - -* Defect #28204: Too large avatar breaks gantt when assignee is a group - -=== [Issues] - -* Defect #27862: Preformatted text overflows in preview -* Patch #28168: Allow context-menu edit of % done and priority of parent issues if the fields are not derived - -=== [Issues filter] - -* Defect #28180: Role-base cross-project issue query visibility calculated incorrectly - -=== [Plugin API] - -* Patch #27963: Remove 'unloadable' from bundled sample plugin - -=== [Security] - -* Defect #26857: Fix for CVE-2015-9251 in JQuery 1.11.1 - -=== [Text formatting] - -* Defect #27884: RTL wiki class broken in Redmine 3.2.6 -* Defect #28331: h4, h5 and h6 headings on wiki pages should have a paragraph mark -* Patch #28119: Enable lax_spacing for markdown formatting in order to allow markdown blocks not surrounded by empty lines - -=== [Time tracking] - -* Defect #28110: Don't allow reassigning reported hours to the project if issue is a required field for time logs - -=== [Translations] - -* Defect #28109: Incorrect interpolation in Swedish locale -* Defect #28113: Fix typo in German label_font_default -* Defect #28192: Fix typo in German label_font_monospace -* Patch #27994: Galician translation update (jstoolbar-gl.js) -* Patch #28102: Fix typo in Lithuanian label_version_sharing_tree - -=== [UI] - -* Defect #28079: The green tick is positioned after the label in the new member modals -* Defect #28208: Anonymous icon is wrongly displayed when assignee is a group -* Defect #28259: attachments_fields id to class change not properly reflected in all CSS - -=== [Wiki] - -* Defect #25299: Markdown pre-block could derive incorrect wiki sections - -== 2018-01-08 v3.4.4 - -=== [Accounts / authentication] - -* Defect #22532: Strip whitespace from login on login page -* Defect #27754: Strip whitespace from email addresses on lost password page - -=== [Administration] - -* Defect #27586: "Uncheck all" icon at the upper left corner in workflow status transitions page is not working - -=== [Calendar] - -* Defect #27153: Custom query breaks calendar view with error 500 -* Patch #27139: Fix for project link background in calendar tooltips - -=== [Custom fields] - -* Defect #26705: Unable to download file if custom field is not defined as visible to any users - -=== [Email receiving] - -* Patch #27885: Empty email attachments are imported to Redmine, creating broken DB records - -=== [Gantt] - -* Defect #26410: Gravatar icon is misaligned in gantt - -=== [Gems support] - -* Defect #27206: cannot install public_suffix if ruby < 2.1 -* Defect #27505: Cannot install nokogiri 1.7 on Windows Ruby 2.4 - -=== [Issues] - -* Defect #26880: Cannot clear all watchers when copying an issue -* Defect #27110: Changing the tracker to a tracker with the tracker field set to read-only won't work -* Defect #27881: No validation errors when entering an invalid "Estimate hours" value -* Patch #27663: Same relates relation can be created twice -* Patch #27695: Fix ActiveRecord::RecordNotUnique errors when trying to add certain issue relations - -=== [Issues list] - -* Defect #27533: Cannot change the priority of the parent issue in issue query context menu when parent priority is independent of children - -=== [Plugin API] - -* Defect #20513: Unloadable plugin convention breaks with Rails 4.2.3 - -=== [SCM] - -* Defect #27333: Switching SCM fails after validation error in "New repository" page - -=== [Security] - -* Defect #27516: Remote command execution through mercurial adapter - -=== [Translations] - -* Patch #27502: Lithuanian translation for 3.4-stable -* Patch #27620: Brazilian translation update -* Patch #27642: Spanish translation update (jstoolbar-es.js) -* Patch #27649: Spanish/Panama translation update (jstoolbar-es-pa.js) -* Patch #27767: Czech translation for 3.4-stable - -=== [UI] - -* Defect #19578: Issues reports table header overlaping -* Defect #26699: Anonymous user should have their icon - -== 2017-10-15 v3.4.3 - -=== [Administration] - -* Defect #26564: Enumerations sorting does not work - -=== [Custom fields] - -* Defect #26468: Using custom fields of type "File" leads to unsolvable error if filetype is not allowed - -=== [Issues] - -* Defect #26627: Editing issues no longer sends notifications to previous assignee - -=== [Issues list] - -* Defect #26471: Issue Query: inconsistency between spent_hours sum and sum of shown spent_hours values - -=== [PDF export] - -* Defect #25702: Exporting wiki page with specific table to PDF causes 500 - -=== [Roadmap] - -* Patch #26492: % is not valid without a format specifier - -=== [SCM] - -* Defect #26403: The second and subsequent lines of commit messages are not displayed in repository browser -* Defect #26645: git 2.14 compatibility - -=== [Text formatting] - -* Patch #26682: URL-escape the ! character in generated markup for dropped uploads - -=== [Time tracking] - -* Defect #26520: Blank "Issue" field on the "Log time" from the "Spent time - Details" page for an issue -* Defect #26667: Filtering time entries after issue's target version doesn't work as expected in some cases -* Defect #26780: Translation for label_week in time report is not working - -=== [Translations] - -* Patch #26703: German translations in 3.4-stable -* Patch #27034: Patch for updated Chinese translation - -=== [UI] - -* Defect #26568: Multiple Selection List Filter View - items are cut off from view -* Patch #26395: Jump to project autocomplete: focus selected project -* Patch #26689: Add title to author's and assignee's icon - -=== [Wiki] - -* Defect #26599: Corrupted file name when exporting a wiki page with Non-ASCII title using Microsoft's browsers - -=== [Security] - -* Defect #27186: XSS vulnerabilities - -== 2017-07-16 v3.4.2 - -=== [Administration] - -* Defect #26393: Error when unchecking all settings on some plugins configurations - -=== [Attachments] - -* Defect #26379: Fix thumbnail rendering for images with height >> width - -=== [Time tracking] - -* Defect #26387: Error displaying time entries filtered by Activity - -=== [UI] - -* Defect #26445: Text formatting not applied to commit messages even if enabled in settings -* Patch #26424: Avatar Spacing in Headlines - -== 2017-07-09 v3.4.1 - -=== [Issues list] - -* Defect #26364: Sort is not reflected when export CSV of issues list - -=== [Projects] - -* Defect #26376: Wrong issue counts and spent time on project overview - -=== [Translations] - -* Patch #26344: Bulgarian translation -* Patch #26365: Traditional Chinese translation - -=== [UI] - -* Defect #26325: Wrong CSS syntax -* Defect #26350: Don't display file download button while on repository directory entries - -== 2017-07-02 v3.4.0 - -=== [Accounts / authentication] - -* Defect #13741: Not landing on home page on login after visiting lost password page -* Feature #10840: Allow "Stay logged in" from multiple browsers -* Feature #25253: Password reset should count as a password change for User#must_change_passwd -* Feature #26190: Add setting to hide optional user custom fields on registration form -* Patch #25483: Forbid to edit/update/delete the anonymous user - -=== [Activity view] - -* Patch #18399: Missing "next" pagination link when looking at yesterday's activity - -=== [Administration] - -* Defect #7577: "Send account information to the user" only works when password is set -* Defect #25289: Adding a principal to 2 projects with member inheritance leads to an error -* Feature #12598: Add tooltip on Workflow matrix for helping in big ones -* Feature #16484: Add default timezone for new users -* Feature #24780: Add tooltip on Permissions report matrix -* Feature #24790: Add tooltip on trackers summary matrix - -=== [Attachments] - -* Defect #24308: Allow Journal to return empty Array instead nil in Journal#attachments -* Feature #13072: Delete multiple attachments with one action -* Patch #22941: Allow thumbnails on documents, messages and wiki pages -* Patch #24186: Restrict the length attachment filenames on disk -* Patch #25215: Re-use existing identical disk files for new attachments -* Patch #25240: Use SHA256 for attachment digest computation -* Patch #25295: Use path instead of URL of image in preview - -=== [Code cleanup/refactoring] - -* Defect #24928: Wrong text in log/delete.me -* Defect #25563: Remove is_binary_data? from String -* Feature #15361: Use css pseudo-classes instead of cycle("odd", "even") -* Patch #24313: Use the regular "icon icon-*" classes for all elements with icons -* Patch #24382: More readable regex for parse_redmine_links -* Patch #24523: Source: ignore .idea -* Patch #24578: Remove unused CSS class ".icon-details" -* Patch #24643: Rename "issue" to "item" in query helpers -* Patch #24713: Remove iteration in ApplicationHelper#syntax_highlight_lines -* Patch #24832: Remove instance variable which is unused after r9603 -* Patch #24899: Remove unused "description_date_*" from locale files -* Patch #24900: Remove unused "label_planning" from locale files -* Patch #24901: Remove unused "label_more" from locale files -* Patch #26149: Remove duplicate method shell_quote - -=== [Core Plugins] - -* Feature #24167: Rebuild a single nested set with nested_set plugin - -=== [Custom fields] - -* Feature #6719: File format for custom fields (specific file uploads) -* Feature #16549: Set multiple values in emails for list custom fields -* Feature #23265: Group versions by status in version custom field filter -* Patch #21705: Option for long text custom fields to be displayed using full width -* Patch #24801: Flash messages on CustomFields destroy - -=== [Database] - -* Defect #23347: MySQL: You can't specify target table for update in FROM clause -* Defect #25416: "My account" broken with MySQL 8.0 (keyword admin should be escaped) - -=== [Documentation] - -* Defect #21375: Working external URL prefixes (protocols and 'www' host part) not documented in wiki syntax -* Feature #25616: Change format of the changelog (both on redmine.org and in the shipped changelog file) -* Patch #24800: Remove internal style sheet duplication and obsoleted meta tag from wiki_syntax_* documentation. -* Patch #26188: Documentation (detailed syntax help & code) additions/improvements - -=== [Email notifications] - -* Feature #25842: Add table border to email notifications -* Patch #23978: Make the email notifications for adding/updating issues more readable/clear - -=== [Email receiving] - -* Defect #25256: Mail parts with empty content should be ignored -* Feature #5864: Regex Text on Receiver Email -* Patch #17718: Body delimiters to truncate emails do not take uncommon whitespace into account - -=== [Forums] - -* Patch #24535: Flash messages on Board destroy - -=== [Gantt] - -* Patch #25876: Gantt chart shows % done even if the field is disabled for the tracker - -=== [Gems support] - -* Feature #23932: Update TinyTds to recent version (1.0.5) -* Feature #25781: Markdown: Upgrade redcarpet gem to 3.4 - -=== [Hook requests] - -* Patch #23545: Add before_render hook to WikiController#show - -=== [I18n] - -* Defect #24616: Should not replace all invalid utf8 characters (e.g in mail) -* Patch #24938: Update tr.yml for general_first_day_of_week -* Patch #25014: redmine/i18n.rb - languages_lookup class variable is rebuilt every time - -=== [Importers] - -* Feature #22701: Allow forward reference to parent when importing issues - -=== [Issues] - -* Defect #5385: Status filter should show statuses related to project trackers only -* Defect #15226: Searching for issues with "updated = none" always returns zero results -* Defect #16260: Add Subtask does not work correctly from tasks with Parent Task field disabled -* Defect #17632: Users can't see private notes created by themselves if "Mark notes as private" is set but "View private notes" is not -* Defect #17762: When copying an issue and changing the project, the list of watchers is not updated -* Defect #20127: The description column in the issues table is too short (MySQL) -* Defect #21579: The cancel operation in the issue edit mode doesn't work -* Defect #23511: Progress of parent task should be calculated using total estimated hours of children -* Defect #23755: Bulk edit form not show fields based on target tracker and status -* Feature #482: Default assignee on each project -* Feature #3425: View progress bar of related issues -* Feature #10460: Option to copy watchers when copying issues -* Feature #10989: Prevent parent issue from being closed if a child issue is open -* Feature #12706: Ability to change the private flag when editing a note -* Feature #20279: Allow to filter issues with "Any" or "None" target version defined when viewing all issues -* Feature #21623: Journalize values that are cleared after project or tracker change -* Feature #22600: Add warning when loosing data from custom fields when bulk editing issues -* Feature #23610: Reset status when copying issues -* Feature #24015: Do not hide estimated_hours label when value is nil -* Feature #25052: Allow to disable description field in tracker setting -* Patch #23888: Show an error message when changing an issue's project fails due to errors in child issues -* Patch #24692: Issue destroy : Reassign time issue autocomplete -* Patch #24877: Filter parent task issues in auto complete by open/closed status depending on the subtask status -* Patch #25055: Filter out current issue from the related issues autocomplete - -=== [Issues filter] - -* Defect #24769: User custom field filter lists only "Me" on cross project issue list -* Defect #24907: Issue queries: "Default columns" option conflicts with "Show description" -* Defect #25077: Issue description filter's 'none' operator does not match issues with blank descriptions -* Feature #2783: Filter issues by attachments -* Feature #10412: Target version filter shoud group versions by status -* Feature #15773: Filtering out specific subprojects (using 'is not' operator) -* Feature #17720: Filter issues by "Updated by" and "Last updated by" -* Feature #21249: Ability to filter issues by attributes of a version custom field (e.g. release date) -* Feature #23215: Add the possibility to filter issues after Target Version's Status and Due Date - -=== [Issues list] - -* Feature #1474: Show last comment/notes in the issue list -* Feature #6375: Last updated by colum in issue list -* Feature #25515: View attachments on the issue list -* Patch #24649: Make Spent time clickable in issue lists - -=== [Issues workflow] - -* Defect #14696: Limited status when copying an issue -* Patch #24281: Workflow editing shows statuses of irrelevant roles - -=== [My page] - -* Feature #1565: Custom query on My page -* Feature #7769: Sortable columns in issue lists on "My page" -* Feature #8761: My page - Spent time section only display 7 days, make it a parameter -* Feature #23459: Columns selection on the issues lists on "My page" -* Feature #25297: In place editing of "My page" layout - -=== [Performance] - -* Defect #24433: The changeset display is slow when changeset_issues has very many records -* Feature #23743: Add index to workflows.tracker_id -* Feature #23987: Add an index on issues.parent_id -* Patch #21608: Project#allowed_to_condition performance -* Patch #22850: Speedup remove_inherited_roles -* Patch #23519: Don't preload projects and roles on Principal#memberships association -* Patch #24587: Improve custom fields list performance -* Patch #24787: Don't preload all filter values when displaying issues/time entries -* Patch #24839: Minor performance improvement - Replace count by exists? -* Patch #24865: Load associations of query results more efficiently -* Patch #25022: Add an index on attachments.disk_filename - -=== [Permissions and roles] - -* Feature #4866: New permission: view forum -* Feature #7068: New permission: view news - -=== [Project settings] - -* Defect #23470: Disable "Select project modules" permission does not apply to the new project form -* Feature #22608: Enable filtering versions on Project -> Settings -> Versions -* Feature #24011: Add option to set a new version as default directly from New Version page - -=== [REST API] - -* Defect #23921: REST API Issue PUT responds 200 OK even when it can't set assigned_to_id -* Feature #7506: Include allowed activities list in "project" API response -* Feature #12181: Add attachment information to issues.xml in REST API -* Feature #23566: REST API should return attachment's id in addition to token -* Patch #19116: Files REST API -* Patch #22356: Add support for updating attachments over REST API -* Patch #22795: Render custom field values of enumerations in API requests - -=== [Roadmap] - -* Defect #23377: Don't show "status" field when creating a new version -* Feature #23137: Completed versions on Roadmap: Sort it so that recently created versions are on top - -=== [Ruby support] - -* Feature #25048: Ruby 2.4 support - -=== [SCM] - -* Defect #14626: Repositories' extra_info column is too short with MySQL - -=== [SCM extra] - -* Defect #23865: Typo: s/projet/project/ in Redmine.pm comments - -=== [Search engine] - -* Feature #9909: Search in project and its subprojects by default - -=== [Text formatting] - -* Defect #26310: "attachment:filename" should generate a link to preview instead of download -* Feature #4179: Link to user in wiki syntax -* Feature #22758: Make text formatting of commit messages optional -* Feature #24922: Support high resolution images in formatted content -* Patch #26157: Render all possible inline textile images - -=== [Themes] - -* Defect #25118: ThemesTest#test_without_theme_js may fail if third-party theme is installed - -=== [Time tracking] - -* Defect #13653: Keep displaying spent time page when switching project via dropdown menu -* Defect #23912: No validation error when date value is invalid in time entries filter -* Defect #24041: Issue subject is not updated when you select another issue in the new "Log time" page -* Feature #588: Move timelog between projects -* Feature #13558: Add version filter in spent time report -* Feature #14790: Ability to save spent time query filters -* Feature #16843: Enable grouping on time entries list -* Feature #23401: Add tracker and status columns/filters to detailed timelog -* Feature #24157: Make project custom fields available in timelogs columns -* Feature #24577: Settings to make the issue and/or comment fields mandatory for time logs -* Patch #24189: Time entry form - limit issue autocomplete to already selected project - -=== [Translations] - -* Defect #25470: Fix Japanese mistranslation for field_base_dn -* Defect #25687: Bad translation in french for indentation -* Patch #23108: Change Japanese translation for text_git_repository_note -* Patch #23250: Fixes issues with Catalan translation -* Patch #23359: Change Japanese translation for label_commits_per_author -* Patch #23388: German translation change -* Patch #23419: Change Japanese translation for label_display_used_statuses_only -* Patch #23659: Change Japanese translation for label_enumerations -* Patch #23806: Fix Japanese translation inconsistency of label_tracker_new and label_custom_field_new -* Patch #24174: Change Japanese translation for "format" -* Patch #24177: Change translation for label_user_mail_option_only_(assigned|owner) -* Patch #24268: Wrong German translation of logging time error message -* Patch #24407: Dutch (NL) translation enhancements and complete review (major update) -* Patch #24494: Spanish Panama "label_issue_new" translation change -* Patch #24518: Spanish translation change (adding accent mark and caps) -* Patch #24572: Spanish label_search_open_issues_only: translation change -* Patch #24750: Change Japanese translation for setting_text_formatting and setting_cache_formatted_text -* Patch #24891: Change Japanese translation for "items" -* Patch #25019: Localization for Ukrainian language - completed -* Patch #25204: Portuguese translation file -* Patch #25392: Change Russian translation for field_due_date and label_relation_new -* Patch #25609: Change Japanese translation for field_attr_* -* Patch #25628: Better wording for issue update conflict resolution in German -* Patch #26180: Change Russian translation for "Estimated time" - -=== [UI] - -* Defect #23575: Issue subjects are truncated at 60 characters on activity page -* Defect #23840: Reduce the maximum height of the issue description field -* Defect #23979: Elements are not aligned properly in issues table for some cases -* Defect #24617: Browser js/css cache remains after upgrade -* Feature #5920: Unify and improve cross-project views layout -* Feature #9850: Differentiate shared versions in version-format custom field drop-downs by prepending its project name -* Feature #10250: Renaming "duplicates" and "duplicated by" to something less confusing -* Feature #23310: Improved "jump to project" drop-down -* Feature #23311: New "Spent time" menu tab when spent time module is enabled on project -* Feature #23653: User preference for monospaced / variable-width font in textareas -* Feature #23996: Introduce a setting to change the display format of timespans to HH:MM -* Feature #24720: Move all 'new item' links in project settings to above the item tables -* Feature #24927: Render high resolution Gravatars and Thumbnails -* Feature #25988: Preview files by default instead of downloading them -* Feature #25999: View repository content by default (instead of the history) -* Feature #26035: More visually consistent download links -* Feature #26071: Generate markup for uploaded image dropped into wiki-edit textarea -* Feature #26189: For 3 comments or more on news items and forum messages, show reply link at top of comments as well -* Patch #23146: Show revision details using the same structure and look from the journals details -* Patch #23192: Add the new pagination style in the activity page -* Patch #23639: Add "Log time" to global button menu (+) -* Patch #23998: Added link to author in Repository -* Patch #24776: UI inconsistencies on /enumerations/index view -* Patch #24833: Always show "Jump to project" drop-down -* Patch #25320: Remove initial indentation of blockquotes for better readability -* Patch #25775: Show assignee's icon in addition to author's icon - -=== [Wiki] - -* Feature #12183: Hide attachments by default on wiki pages -* Feature #23179: Add heading to table of contents macro - -== 2017-07-02 v3.3.4 - -=== [Accounts / authentication] - -* Patch #25653: Fix NoMethodError on HEAD requests to AccountController#register - -=== [Code cleanup/refactoring] - -* Defect #26055: Three issues with Redmine::SyntaxHighlighting::CodeRay.language_supported? - -=== [Gems support] - -* Defect #25829: mysql2 0.3 gem doesn't properly close connections - -=== [Importers] - -* Patch #25861: CSV Importer - handle UndefinedConversionErrors - -=== [Issues] - -* Defect #26072: Set default assignee before validation - -=== [Issues filter] - -* Defect #25212: User profile should link to issues assigned to user or his groups - -=== [Issues permissions] - -* Defect #25791: Bypass Tracker role-based permissions when copying issues - -=== [Security] - -* Defect #26183: Use Nokogiri 1.7.2 - -=== [Text formatting] - -* Defect #25634: Highlight language aliases are no more supported - -=== [Translations] - -* Patch #26264: Simplified Chinese translation for 3.3-stable - -=== [UI] - -* Defect #25760: Clicking custom field label should not check the first option - -=== [UI - Responsive] - -* Defect #25064: Issue description edit link corrupted in low resolution -* Patch #25745: Optimize Gantt Charts for mobile screens - -== 2017-04-09 v3.3.3 - -* Defect #22335: Images with non-ASCII file names are not shown in PDF -* Defect #24271: htmlentities warning -* Defect #24869: Circular inclusion detected when including a wiki page with the same name -* Defect #24875: Issues API does not respect time_entries_visibility -* Defect #24999: Mercurial 4.1 compatibility -* Defect #25371: Git 2.9 compatibility -* Defect #25478: Related to "no open issues" shows all issues -* Defect #25501: Time entries query through multiple projects by issue custom field not possible anymore -* Patch #20661: Show visible spent time link for users allowed to view time entries. -* Patch #24778: Czech localisation for 3.3-stable -* Patch #24824: Traditional Chinese translation (to r16179) -* Patch #24885: Japanese translation for 3.3-stable -* Patch #24948: Bulgarian translation for 3.3-stable -* Patch #25459: Portuguese translation for 3.3-stable -* Patch #25502: Russian translation for 3.3-stable -* Patch #25115: Support upload of empty files and fix invalid API response -* Patch #25526: Revert API change in spent_hours field in issue#show -* Defect #23793: Information leak when rendering of Wiki links -* Defect #23803: Information leak when rendering Time Entry activities -* Defect #24199: Stored XSS with SVG attachments -* Defect #24307: Redmine.pm doesn't check that the repository module is enabled on project -* Defect #24416: Use redirect to prevent password reset tokens in referers -* Defect #25503: Improper markup sanitization in user content - -== 2017-01-07 v3.3.2 - -* Defect #13622: "Clear" button in Spent Time Report tab also clears global filters -* Defect #14658: Wrong activity timezone on user page -* Defect #14817: Redmine loses filters after deleting a spent time -* Defect #22034: Locked users disappear from project settings -* Defect #23922: Time Entries context menu/bulk edit shows activities not available for the time entry's project -* Defect #24000: z-index children menu should be greater than content -* Defect #24092: bundler error: selenium-webdriver requires Ruby version >= 2.0. -* Defect #24156: Redmine might create many AnonymousUser and AnonymousGroup entries -* Defect #24274: Query totals and query buttons overlaps on small screens -* Defect #24297: Show action not allowed for time entries in closed projects -* Defect #24311: Project field disappears when target project disallows user to edit the project -* Defect #24348: acts_as_versioned use old style (Rails 2.x) of method call for #all -* Defect #24595: Unarchive link for a subproject of a closed project does not work -* Defect #24646: X-Sendfile is missing in response headers -* Defect #24693: Spent time on subtasks should also be reassigned when deleting an issue -* Defect #24718: Prevent from reassigning spent time to an issue that is going to be deleted -* Defect #24722: Error when trying to reassign spent time when deleting issues from different projects -* Patch #24003: Catalan Translation -* Patch #24004: Spanish & Spanish (PA) Translation -* Patch #24062: Allow only vertical reorderingin sortable lists -* Patch #24283: Validate length of string fields -* Patch #24296: Add tablename to siblings query to prevent AmbiguousColumn errors - -== 2016-10-10 v3.3.1 - -* Defect #23067: Custom field List Link values to URL breaks on entries with spaces -* Defect #23655: Restricted permissions for non member/anonymous on a given project not working -* Defect #23839: "Invalid query" (Error 500) message with MS SQL when displaying an issue from a list grouped and sorted by fixed version -* Defect #23841: Custom field URL spaces not decoded properly -* Defect #22123: Totals cannot be removed completely if some columns are set in the global settings -* Defect #23054: Clearing time entry custom fields while bulk editing results in values set to __none__ -* Defect #23206: Wrong filters are applied when exporting issues to CSV with blank filter -* Defect #23246: Saving an empty Markdown image tag in Wiki pages causes internal server error -* Defect #23829: Wrong allow-override example in rdm-mailhandler.rb -* Defect #23152: Distinguish closed subprojects on the project overview -* Defect #23172: Tickets can be assigned to users who are not available in specific tracker -* Defect #23242: thumbnail macro does not render when displaying wiki content version -* Defect #23369: encoding error in locales de.yml -* Defect #23391: Wrong CSS classes in subtasks tree -* Defect #23410: Error if create new issue and there is no project -* Defect #23472: Show open issues only in "Reported Issues" on My page -* Defect #23558: IssueImportTest#test_should_not_import_with_default_tracker_when_tracker_is_invalid fails randomly -* Defect #23596: Filter on issue ID with between/lesser/greater operator does not work -* Defect #23700: Creating a wiki page named "Sidebar" without proper permission raises an exception -* Defect #23751: Tab buttons appear on pages that have no tabs -* Defect #23766: API : creating issues with project identifier no longer possible -* Defect #23878: Closing all subtasks causes error if default priority is not defined and priority is derived from subtasks -* Defect #23969: Edit/delete links displayed on issue even if project is closed -* Defect #24014: Custom fields not used in project should not be visible in spent time report -* Patch #23117: Traditional Chinese textile and markdown help translation -* Patch #23387: Traditional Chinese textile and markdown detailed help translation (to r15723) -* Patch #23764: closed_on field of copied issue is always set to source issue's value -* Patch #23269: Fix for Error: Unable to autoload constant Redmine::Version when accessing the time report in first request -* Patch #23278: When creating issues by receiving an email, watchers created via CC in the mail don't get an email notification -* Patch #23389: Print Styles get overriden by responsive media query -* Patch #23708: Too long words in subtasks break layout -* Patch #23883: iOS 10 ignore disabled Zoom -* Patch #23134: Updated Korean locale -* Patch #23153: Plugin hooks for custom search results -* Patch #23171: Simplified Chinese translation for 3.3-stable -* Patch #23180: Make the issue id from email notifications linkable to issue page -* Patch #23334: Issue#editable_custom_field_values very slow for issues with many custom fields -* Patch #23346: Set user's localization before redirecting on forced password change to generate flash message in current user's language -* Patch #23376: Downloading of attachments with MIME type text/javascript fails -* Patch #23497: Russian translation for 3.3.0 -* Patch #23587: Sudo-Mode refinements -* Patch #23725: Updated Brazilian translation for 3.3.0.stable -* Patch #23745: German translation for 3.3-stable - -== 2016-06-19 v3.3.0 - -* Defect #5880: Only consider open subtasks when computing the priority of a parent issue -* Defect #8628: "Related to" reference may yield circular dependency error message -* Defect #12893: Copying an issue does not copy parent task id -* Defect #13654: Can't set parent issue when issue relations among child issues are present -* Defect #15777: Watched issues count on "My page" is shown for all issues instead of only open ones -* Defect #17580: After copying a task, setting the parent as the orignal task's parent triggers an error -* Defect #19924: Adding subtask takes very long -* Defect #20882: % done: progress bar blocked at 80 in the issue list -* Defect #21037: Issue show : bullet points not aligned if sub-task is in a different project -* Defect #21433: "version-completed" class is never set when version has no due date -* Defect #21674: The LDAP connection test does not check the credentials -* Defect #21695: Warning "Can't mass-assign protected attributes for IssueRelation: issue_to_id" -* Defect #21742: Received text attachments doesn't hold the original encoding on Ruby >= 2.1 -* Defect #21855: Gravatar get images over http instead https -* Defect #21856: I18n backend does not support original i18n Pluralization -* Defect #21861: typo: s/creditentials/credentials/ -* Defect #22059: Issue percentage selector extends screen border -* Defect #22115: Text in the "removed" part of a wiki diff is double-escaped -* Defect #22123: Totals cannot be removed completely if some columns are set in the global settings -* Defect #22135: Semi colon is spelled semicolon -* Defect #22405: SQL server: non ASCII filter does not work -* Defect #22493: Test code bug in application_helper_test -* Defect #22745: Rest API for Custom Fields does not return keys for key/value types -* Defect #23044: Typo in Azerbaijani general_lang_name -* Defect #23054: Clearing time entry custom fields while bulk editing results in values set to __none__ -* Defect #23067: Custom field List Link values to URL breaks on entries with spaces -* Feature #285: Tracker role-based permissioning -* Feature #1725: Delete button on comments -* Feature #4266: Display changeset comment on repository diff view. -* Feature #4806: Filter the issue list by issue ids -* Feature #5536: Simplify Wiki Page creation ("Add Page" link) -* Feature #5754: Allow addition of watchers via bulk edit context menu -* Feature #6204: Make the "New issue" menu item optional -* Feature #7017: Add watchers from To and Cc fields in issue replies -* Feature #7839: Limit trackers for new issue to certain roles -* Feature #12456: Add units in history for estimated time -* Feature #12909: Drag'n'drop order configuration for statuses, trackers, roles... -* Feature #13718: Accept dots in JSONP callback -* Feature #14462: Previous/next links may be lost after editing the issue -* Feature #14574: "I don't want to be notified of changes that I make myself" as Default for all User -* Feature #14830: REST API : Add support for attaching file to Wiki pages -* Feature #14937: Code highlighting toolbar button -* Feature #15880: Consistent, global button/menu to add new content -* Feature #20985: Include private_notes property in xml/json Journals output -* Feature #21125: Removing attachment after rollback transaction -* Feature #21421: Security Notifications when security related things are changed -* Feature #21500: Add the "Hide my email address" option on the registration form -* Feature #21757: Add Total spent hours and Estimated hours to the REST API response -* Feature #22018: Add id and class for easier styling of query filters -* Feature #22058: Show image attachments and repo entries instead of downloading them -* Feature #22147: Change "Related issues" label for generic grouped query filters -* Feature #22381: Require password reset on initial setup for default admin account -* Feature #22383: Support of default Active Record (I18n) transliteration paths -* Feature #22482: Respond with "No preview available" instead of sending the file when no preview is available -* Feature #22951: Make Tracker and Status map-able for CSV import -* Feature #22987: Ruby 2.3 support -* Feature #23020: Default assigned_to when receiving emails -* Feature #23107: Update CodeRay to v1.1.1. -* Patch #3551: Additional case of USER_FORMAT, #{lastname}#{firstname} without any sperator -* Patch #6277: REST API for Search -* Patch #14680: Change Simplified Chinese translation for version 'field_effective_date' -* Patch #14828: Patch to add support for deleting attachments via API -* Patch #19468: Replace jQuery UI Datepicker with native browser date fields when available -* Patch #20632: Tab left/right buttons for project menu -* Patch #21256: Use CSS instead of image_tag() to show icons for better theming support -* Patch #21282: Remove left position from gantt issue tooltip -* Patch #21434: Additional CSS class for version status -* Patch #21474: Adding issue css classes to subtasks and relations tr -* Patch #21497: Tooltip on progress bar -* Patch #21541: Russian translation improvement -* Patch #21582: Performance in User#roles_for_project -* Patch #21583: Use association instead of a manual JOIN in Project#rolled_up_trackers -* Patch #21587: Additional view hook for body_top -* Patch #21611: Do not collect ids of subtree in Query#project_statement -* Patch #21628: Correct Turkish translation -* Patch #21632: Updated Estonian translation -* Patch #21663: Wrap textilizable with DIV containing wiki class -* Patch #21678: Add missing wiki container for news comments -* Patch #21685: Change Spanish Panama thousand delimiters and separator -* Patch #21738: Add .sql to mime-types -* Patch #21747: Catalan translation -* Patch #21776: Add status, assigned_to and done_ratio classes to issue subtasks -* Patch #21805: Improve accessibility for icon-only links -* Patch #21931: Simplified Chinese translation for 3.3 (some fixes) -* Patch #21942: Fix Czech translation of field_time_entries_visibility -* Patch #21944: Bugfix: Hide custom field link values from being shown when value is empty -* Patch #21947: Improve page header title for deeply nested project structures (+ improved XSS resilience) -* Patch #21963: German translations change -* Patch #21985: Increase space between menu items -* Patch #21991: Japanese wiki_syntax_detailed_textile.html translation improvement -* Patch #22078: Incorrect French translation of :setting_issue_group_assignment -* Patch #22126: Update for Lithuanian translation -* Patch #22138: fix Korean translation typo -* Patch #22277: Add id to issue query forms to ease styling within themes -* Patch #22309: Add styles for blockquote in email notifications -* Patch #22315: Change English translation for field_effective_date: "Date" to "Due date" -* Patch #22320: Respect user's timezone when comparing / parsing Dates -* Patch #22345: Trackers that have parent_issue_id in their disabled_core_fields should not be selectable for new child issues -* Patch #22376: Change Japanese translation for label_issue_watchers -* Patch #22401: Notify the user of missing attachments -* Patch #22496: Add text wrap for multiple value list custom fields -* Patch #22506: Updated Korean locale data -* Patch #22693: Add styles for pre in email notifications -* Patch #22724: Change Japanese translation for "last name" and "first name" -* Patch #22756: Edit versions links on the roadmap -* Patch #23021: fix Russian "setting_thumbnails_enabled" misspelling -* Patch #23065: Fix confusing Japanese translation for permission_manage_related_issues -* Patch #23083: Allow filtering for system-shared versions in version custom fields in the global issues view - -== 2016-06-05 v3.2.3 - -* Defect #22808: Malformed SQL query with SQLServer when grouping and sorting by fixed version -* Defect #22912: Selecting a new filter on Activities should not reset the date range -* Defect #22924: Persistent XSS in Markdown parsing -* Defect #22925: Persistent XSS in project homepage field -* Defect #22926: Persistent XSS in Textile parsing -* Defect #22932: "Group by" row from issues listing has the colspan attribute bigger with one than the number of columns from the table -* Patch #22427: pt-BR translation for 3.2.stable -* Patch #22761: Korean translation for 3.2-stable -* Patch #22898: !>image.png! generates invalid HTML -* Patch #22911: Error raised when importing issue with Key/Value List custom field - -== 2016-05-05 v3.2.2 - -* Defect #5156: Bulk edit form lacks estimated time field -* Defect #22105: Responsive layout. Change menu selector in responsive.js. -* Defect #22134: HTML markup discrepancy ol and ul at app/views/imports/show.html.erb -* Defect #22196: Improve positioning of issue history and changesets on small screens -* Defect #22305: Highlighting of required and read-only custom fields broken in Workflow editor -* Defect #22331: bundler error: Ruby 1.9.3 = "mime-types-data requires Ruby version >= 2.0." -* Defect #22342: When copying issues to a different project, subtasks /w custom fields not copied over -* Defect #22354: Sort criteria defined in custom queries are not applied when exporting to CSV -* Defect #22583: CSV import delimiter detection broken -* Patch #22278: Revision Graph and Table should work with vertical-align: middle -* Patch #22296: Add collision option to autocomplete initialization -* Patch #22319: Fix German "error_invalid_csv_file_or_settings" typo -* Patch #22336: Revision Table does not scroll horizontally on small screens -* Patch #22721: Check that the file is actually an image before generating the thumbnail - -== 2016-03-13 v3.2.1 - -* Defect #21588: Simplified Chinese "field_cvs_module" translation has problem (Patch #21430) -* Defect #21656: Fix Non ASCII attachment filename encoding broken (MOJIBAKE) in Microsoft Edge Explorer -* Defect #22072: Private notes get copied without private flag to Duplicate issues -* Defect #22127: Issues can be assigned to any user -* Defect #21219: Date pickers images for start/due date fields are not shown for issues with subtasks -* Defect #21477: Assign to "Anonymous" doesn't make much sense -* Defect #21488: Don't use past start date as default due date in the date picker -* Defect #21504: IssuePriority.position_name not recalculated every time it should -* Defect #21551: Private note flag disappears in issue update conflict -* Defect #21843: Nokogiri security issue -* Defect #21900: Moving a page with a child raises an error if target wiki contains a page with the same name as the child -* Defect #20988: % done field shown on issue show subtree even if deactivated for that tracker -* Defect #21263: Wiki lists in the sidebar are broken -* Defect #21453: LDAP account creation fails when first name/last name contain non ASCII -* Defect #21531: rdm-mailhandler with project-from-subaddress fails -* Defect #21534: Backtrace cleaner should not clean plugin paths -* Defect #21535: Moving a custom field value in the order switches in the edit view -* Defect #21775: Field "Done" from issue subtasks table overlaps the layout in responsive mode, width 400 -* Defect #22108: Issues filter for CSV Export are not applied -* Defect #22178: Grouping issues by key/value custom field raises error 500 -* Feature #21447: Option to show email adresses by default -* Patch #21650: Simplified Chinese translation of wiki formating for 2.6-stable -* Patch #21881: Russian wiki translation for 2.6-stable -* Patch #21898: Catalan wiki translation for 2.6-stable -* Patch #21456: Simplified Chinese translation of wiki formating for 3.1-stable -* Patch #21686: Russian translation for 3.1-stable -* Patch #21687: German translations for 3.1-stable -* Patch #21689: Turkish translation for 3.1-stable -* Patch #21882: Russian wiki translation for 3.1-stable -* Patch #21899: Catalan wiki translation for 3.1-stable -* Patch #22131: German translations for 3.1-stable -* Patch #22139: Japanese wiki syntax (Markdown) translation for 3.1-stable -* Patch #21436: Prevent admins from sending themselves their own password -* Patch #21454: Simplified Chinese translation for 3.2.0 -* Patch #21487: Larger font for email notifications -* Patch #21521: Updated Spanish and Spanish Panama Translations -* Patch #21522: Simplified Chinese translation for r14976 -* Patch #21527: Russian translation for 3.2.0 -* Patch #21593: Add class to contextual edit button that relates to heading on wiki pages -* Patch #21620: Turkish translation for 3.2-stable -* Patch #21635: German translations for 3.2 -* Patch #21740: Fixes misspelled word "RMagcik" in configuration.yml.example -* Patch #21847: Let mobile header be fixed -* Patch #21867: Add column `estimated_hours` for CSV import. -* Patch #21883: Russian wiki translation for 3.2-stable -* Patch #22009: Japanese wiki syntax (Markdown) translation for 3.2-stable -* Patch #22074: Prevent username from overlapping in mobile menu -* Patch #22101: Set max-with to 100% for input, select and textea -* Patch #22104: Prevent font scaling in landscape mode on webkit -* Patch #22128: Attachment form too wide on small screens -* Patch #22132: German translations for 3.2-stable - -== 2015-12-06 v3.2.0 - -* Defect #17403: Unknown file size while downloading attachment -* Defect #18223: Table renders wrong if a trailing space is after | symbol -* Defect #19017: Wiki PDF Export:
     not rendered with monospaced font
    -* Defect #19271: Configuration of which versions are shown in version-format custom fields should not affect issue query filter
    -* Defect #19304:  tag without attributes in description results in undefined method + for nil:NilClass
    -* Defect #19403: Mistake in Polish Translation file.
    -* Defect #19657: Can't reorder activities after disabling activities on a project
    -* Defect #20117: Activities set as inactive missing in spent time report filter
    -* Defect #20296: Double full stops in Japanese
    -* Defect #20361: Project copy does not update custom field of version type values
    -* Defect #20438: Subject filter doesn't work with non ASCII uppercase symbols
    -* Defect #20463: Internal error when moving an issue to a project without selected trackers and active issue tracking
    -* Defect #20501: Empty divs when there are no custom fields on the issue form
    -* Defect #20543: Mail handler: don't allow override of some attributes by default
    -* Defect #20551: Typo "coma" (correct: "comma")
    -* Defect #20565: Search and get a 404 page when adding a new project
    -* Defect #20583: Setting Category/Version as a required field causes error in projects without categories/versions
    -* Defect #20995: Automatic done ratio calculation in issue tree is wrong in some cases
    -* Defect #21012: Link custom fields with long URLs are distorting issue detail view
    -* Defect #21069: Hard-coded label for hour
    -* Defect #21074: When changing the tracker of an existing issue, new custom fields are not initialized with their default value
    -* Defect #21175: Unused strings: label_(start|end)_to_(start|end)
    -* Defect #21182: Project.uniq.visible raises an SQL error under certain conditions
    -* Defect #21226: Some log messages are missing the "MailHandler" prefix
    -* Defect #21382: Watcher deletion of inactive user not possible for non-admin users
    -* Feature #950: Import Issues from delimited/CSV file
    -* Feature #1159: Allow issue description to be searchable as a filter
    -* Feature #1561: Totals for estimated/spent time and numeric custom fields on the issue list
    -* Feature #1605: Activity page to remember user's selection of activities
    -* Feature #1828: Default target version for new issues
    -* Feature #3034: Add day numbers to gantt
    -* Feature #3398: Link to assigned issues on user profiles
    -* Feature #4285: Add cancel button during edition of the wiki
    -* Feature #5816: New issue initial status should be settable in workflow
    -* Feature #7346: Allow a default version to be set on the command line for incoming emails
    -* Feature #8335: Email styles inline
    -* Feature #10672: Extend Filesize in the attachments table for files with size > 2147483647 bytes
    -* Feature #13429: Include attachment thumbnails in issue history
    -* Feature #13946: Add tracker name to Redmine issue link titles
    -* Feature #16072: Markdown footnote support
    -* Feature #16621: Ability to filter issues blocked by any/no open issues
    -* Feature #16941: Do not clear category on project change if category with same exists
    -* Feature #17618: Upgrade net-ldap version to 0.12.0
    -* Feature #19097: Responsive layout for mobile devices
    -* Feature #19885: Raise time entries comments limit to 1024
    -* Feature #19886: Raise wiki edits comments limit to 1024
    -* Feature #20008: Files upload Restriction by files extensions
    -* Feature #20221: Time entry query : column week
    -* Feature #20388: Removing attachment after commit transaction
    -* Feature #20929: Raise maximum length of LDAP filter
    -* Feature #20933: Options for shorter session maximum lifetime
    -* Feature #20935: Set autologin cookie as secure by default when using https
    -* Feature #20991: Raise maximum length of category name to 60
    -* Feature #21042: Check "Hide my email address" by default for new users
    -* Feature #21058: Keep track of valid user sessions
    -* Feature #21060: Custom field format with possible values stored as records
    -* Feature #21148: Remove "Latest Projects" from Home page
    -* Feature #21361: Plugins ui tests rake task
    -* Patch #20271: Fix for multiple tabs on the same page
    -* Patch #20288: Finalize CodeRay 1.1.0 upgrade
    -* Patch #20298: "div" tag around revision details
    -* Patch #20338: Turkish "activity" translation change
    -* Patch #20368: Make corners rounded
    -* Patch #20369: Use String#casecmp for case insensitive comparison
    -* Patch #20370: Lighter colors for journal details in issue history
    -* Patch #20411: Change Japanese translation for "view"
    -* Patch #20413: Use a table instead of an unordered list in "Issue tracking" box
    -* Patch #20496: Change Japanese translation for "time tracking"
    -* Patch #20506: redmine I18n autoload instead of require
    -* Patch #20507: ThemesHelper reopening ApplicationHelper is problem with autoloading
    -* Patch #20508: Required file lib/redmine/hook.rb is patching autoloaded ApplicationHelper
    -* Patch #20589: Activate sudo mode after password based login
    -* Patch #20720: Traditional Chinese "issue" translation change
    -* Patch #20732: MailHandler: Select project by subaddress (redmine+project@example.com)
    -* Patch #20740: Confusing name: test public query called "private"
    -* Patch #21033: Polish translation change
    -* Patch #21110: Keep anchor (i.e. to a specific issue note) throughout login
    -* Patch #21119: Give numbers in query sort criteria consistent width for non-monospaced fonts
    -* Patch #21126: Change Japanese translation for "List"
    -* Patch #21137: Rescue network level errors with LDAP auth
    -* Patch #21159: Hide empty "),e.join("")},legend:{labels:{generateLabels:function(t){var e=t.data;return e.labels.length&&e.datasets.length?e.labels.map(function(i,n){var a=t.getDatasetMeta(0),r=e.datasets[0],o=a.data[n].custom||{},s=t.options.elements.arc;return{text:i,fillStyle:ne([o.backgroundColor,r.backgroundColor,s.backgroundColor],void 0,n),strokeStyle:ne([o.borderColor,r.borderColor,s.borderColor],void 0,n),lineWidth:ne([o.borderWidth,r.borderWidth,s.borderWidth],void 0,n),hidden:isNaN(r.data[n])||a.data[n].hidden,index:n}}):[]}},onClick:function(t,e){var i,n,a,r=e.index,o=this.chart;for(i=0,n=(o.data.datasets||[]).length;i0&&(r=t.getDatasetMeta(r[0]._datasetIndex).data),r},"x-axis":function(t,e){return me(t,e,{intersect:!1})},point:function(t,e){return ce(t,de(e,t))},nearest:function(t,e,i){var n=de(e,t);i.axis=i.axis||"xy";var a=ge(i.axis);return fe(t,n,i.intersect,a)},x:function(t,e,i){var n=de(e,t),a=[],r=!1;return he(t,function(t){t.inXRange(n.x)&&a.push(t),t.inRange(n.x,n.y)&&(r=!0)}),i.intersect&&!r&&(a=[]),a},y:function(t,e,i){var n=de(e,t),a=[],r=!1;return he(t,function(t){t.inYRange(n.y)&&a.push(t),t.inRange(n.x,n.y)&&(r=!0)}),i.intersect&&!r&&(a=[]),a}}};function ve(t,e){return ut.where(t,function(t){return t.position===e})}function ye(t,e){t.forEach(function(t,e){return t._tmpIndex_=e,t}),t.sort(function(t,i){var n=e?i:t,a=e?t:i;return n.weight===a.weight?n._tmpIndex_-a._tmpIndex_:n.weight-a.weight}),t.forEach(function(t){delete t._tmpIndex_})}function be(t,e){ut.each(t,function(t){e[t.position]+=t.isHorizontal()?t.height:t.width})}ot._set("global",{layout:{padding:{top:0,right:0,bottom:0,left:0}}});var xe={defaults:{},addBox:function(t,e){t.boxes||(t.boxes=[]),e.fullWidth=e.fullWidth||!1,e.position=e.position||"top",e.weight=e.weight||0,t.boxes.push(e)},removeBox:function(t,e){var i=t.boxes?t.boxes.indexOf(e):-1;-1!==i&&t.boxes.splice(i,1)},configure:function(t,e,i){for(var n,a=["fullWidth","position","weight"],r=a.length,o=0;odiv{position:absolute;width:1000000px;height:1000000px;left:0;top:0}.chartjs-size-monitor-shrink>div{position:absolute;width:200%;height:200%;left:0;top:0}"}))&&ke.default||ke,Me="$chartjs",Se="chartjs-size-monitor",De="chartjs-render-monitor",Ce="chartjs-render-animation",Pe=["animationstart","webkitAnimationStart"],Te={touchstart:"mousedown",touchmove:"mousemove",touchend:"mouseup",pointerenter:"mouseenter",pointerdown:"mousedown",pointermove:"mousemove",pointerup:"mouseup",pointerleave:"mouseout",pointerout:"mouseout"};function Oe(t,e){var i=ut.getStyle(t,e),n=i&&i.match(/^(\d+)(\.\d+)?px$/);return n?Number(n[1]):void 0}var Ie=!!function(){var t=!1;try{var e=Object.defineProperty({},"passive",{get:function(){t=!0}});window.addEventListener("e",null,e)}catch(t){}return t}()&&{passive:!0};function Ae(t,e,i){t.addEventListener(e,i,Ie)}function Fe(t,e,i){t.removeEventListener(e,i,Ie)}function Re(t,e,i,n,a){return{type:t,chart:e,native:a||null,x:void 0!==i?i:null,y:void 0!==n?n:null}}function Le(t){var e=document.createElement("div");return e.className=t||"",e}function We(t,e,i){var n,a,r,o,s=t[Me]||(t[Me]={}),l=s.resizer=function(t){var e=Le(Se),i=Le(Se+"-expand"),n=Le(Se+"-shrink");i.appendChild(Le()),n.appendChild(Le()),e.appendChild(i),e.appendChild(n),e._reset=function(){i.scrollLeft=1e6,i.scrollTop=1e6,n.scrollLeft=1e6,n.scrollTop=1e6};var a=function(){e._reset(),t()};return Ae(i,"scroll",a.bind(i,"expand")),Ae(n,"scroll",a.bind(n,"shrink")),e}((n=function(){if(s.resizer){var n=i.options.maintainAspectRatio&&t.parentNode,a=n?n.clientWidth:0;e(Re("resize",i)),n&&n.clientWidth0){var r=t[0];r.label?i=r.label:r.xLabel?i=r.xLabel:a>0&&r.index-1?t.split("\n"):t}function qe(t){var e=ot.global;return{xPadding:t.xPadding,yPadding:t.yPadding,xAlign:t.xAlign,yAlign:t.yAlign,bodyFontColor:t.bodyFontColor,_bodyFontFamily:Be(t.bodyFontFamily,e.defaultFontFamily),_bodyFontStyle:Be(t.bodyFontStyle,e.defaultFontStyle),_bodyAlign:t.bodyAlign,bodyFontSize:Be(t.bodyFontSize,e.defaultFontSize),bodySpacing:t.bodySpacing,titleFontColor:t.titleFontColor,_titleFontFamily:Be(t.titleFontFamily,e.defaultFontFamily),_titleFontStyle:Be(t.titleFontStyle,e.defaultFontStyle),titleFontSize:Be(t.titleFontSize,e.defaultFontSize),_titleAlign:t.titleAlign,titleSpacing:t.titleSpacing,titleMarginBottom:t.titleMarginBottom,footerFontColor:t.footerFontColor,_footerFontFamily:Be(t.footerFontFamily,e.defaultFontFamily),_footerFontStyle:Be(t.footerFontStyle,e.defaultFontStyle),footerFontSize:Be(t.footerFontSize,e.defaultFontSize),_footerAlign:t.footerAlign,footerSpacing:t.footerSpacing,footerMarginTop:t.footerMarginTop,caretSize:t.caretSize,cornerRadius:t.cornerRadius,backgroundColor:t.backgroundColor,opacity:0,legendColorBackground:t.multiKeyBackground,displayColors:t.displayColors,borderColor:t.borderColor,borderWidth:t.borderWidth}}function Ze(t,e){return"center"===e?t.x+t.width/2:"right"===e?t.x+t.width-t.xPadding:t.x+t.xPadding}function $e(t){return Ue([],Ge(t))}var Xe=gt.extend({initialize:function(){this._model=qe(this._options),this._lastActive=[]},getTitle:function(){var t=this._options.callbacks,e=t.beforeTitle.apply(this,arguments),i=t.title.apply(this,arguments),n=t.afterTitle.apply(this,arguments),a=[];return a=Ue(a,Ge(e)),a=Ue(a,Ge(i)),a=Ue(a,Ge(n))},getBeforeBody:function(){return $e(this._options.callbacks.beforeBody.apply(this,arguments))},getBody:function(t,e){var i=this,n=i._options.callbacks,a=[];return ut.each(t,function(t){var r={before:[],lines:[],after:[]};Ue(r.before,Ge(n.beforeLabel.call(i,t,e))),Ue(r.lines,n.label.call(i,t,e)),Ue(r.after,Ge(n.afterLabel.call(i,t,e))),a.push(r)}),a},getAfterBody:function(){return $e(this._options.callbacks.afterBody.apply(this,arguments))},getFooter:function(){var t=this._options.callbacks,e=t.beforeFooter.apply(this,arguments),i=t.footer.apply(this,arguments),n=t.afterFooter.apply(this,arguments),a=[];return a=Ue(a,Ge(e)),a=Ue(a,Ge(i)),a=Ue(a,Ge(n))},update:function(t){var e,i,n,a,r,o,s,l,u,d,h=this,c=h._options,f=h._model,g=h._model=qe(c),m=h._active,p=h._data,v={xAlign:f.xAlign,yAlign:f.yAlign},y={x:f.x,y:f.y},b={width:f.width,height:f.height},x={x:f.caretX,y:f.caretY};if(m.length){g.opacity=1;var _=[],k=[];x=je[c.position].call(h,m,h._eventPosition);var w=[];for(e=0,i=m.length;en.width&&(a=n.width-e.width),a<0&&(a=0)),"top"===d?r+=h:r-="bottom"===d?e.height+h:e.height/2,"center"===d?"left"===u?a+=h:"right"===u&&(a-=h):"left"===u?a-=c:"right"===u&&(a+=c),{x:a,y:r}}(g,b,v=function(t,e){var i,n,a,r,o,s=t._model,l=t._chart,u=t._chart.chartArea,d="center",h="center";s.yl.height-e.height&&(h="bottom");var c=(u.left+u.right)/2,f=(u.top+u.bottom)/2;"center"===h?(i=function(t){return t<=c},n=function(t){return t>c}):(i=function(t){return t<=e.width/2},n=function(t){return t>=l.width-e.width/2}),a=function(t){return t+e.width+s.caretSize+s.caretPadding>l.width},r=function(t){return t-e.width-s.caretSize-s.caretPadding<0},o=function(t){return t<=f?"top":"bottom"},i(s.x)?(d="left",a(s.x)&&(d="center",h=o(s.y))):n(s.x)&&(d="right",r(s.x)&&(d="center",h=o(s.y)));var g=t._options;return{xAlign:g.xAlign?g.xAlign:d,yAlign:g.yAlign?g.yAlign:h}}(this,b),h._chart)}else g.opacity=0;return g.xAlign=v.xAlign,g.yAlign=v.yAlign,g.x=y.x,g.y=y.y,g.width=b.width,g.height=b.height,g.caretX=x.x,g.caretY=x.y,h._model=g,t&&c.custom&&c.custom.call(h,g),h},drawCaret:function(t,e){var i=this._chart.ctx,n=this._view,a=this.getCaretPosition(t,e,n);i.lineTo(a.x1,a.y1),i.lineTo(a.x2,a.y2),i.lineTo(a.x3,a.y3)},getCaretPosition:function(t,e,i){var n,a,r,o,s,l,u=i.caretSize,d=i.cornerRadius,h=i.xAlign,c=i.yAlign,f=t.x,g=t.y,m=e.width,p=e.height;if("center"===c)s=g+p/2,"left"===h?(a=(n=f)-u,r=n,o=s+u,l=s-u):(a=(n=f+m)+u,r=n,o=s-u,l=s+u);else if("left"===h?(n=(a=f+d+u)-u,r=a+u):"right"===h?(n=(a=f+m-d-u)-u,r=a+u):(n=(a=i.caretX)-u,r=a+u),"top"===c)s=(o=g)-u,l=o;else{s=(o=g+p)+u,l=o;var v=r;r=n,n=v}return{x1:n,x2:a,x3:r,y1:o,y2:s,y3:l}},drawTitle:function(t,e,i){var n=e.title;if(n.length){t.x=Ze(e,e._titleAlign),i.textAlign=e._titleAlign,i.textBaseline="top";var a,r,o=e.titleFontSize,s=e.titleSpacing;for(i.fillStyle=e.titleFontColor,i.font=ut.fontString(o,e._titleFontStyle,e._titleFontFamily),a=0,r=n.length;a0&&i.stroke()},draw:function(){var t=this._chart.ctx,e=this._view;if(0!==e.opacity){var i={width:e.width,height:e.height},n={x:e.x,y:e.y},a=Math.abs(e.opacity<.001)?0:e.opacity,r=e.title.length||e.beforeBody.length||e.body.length||e.afterBody.length||e.footer.length;this._options.enabled&&r&&(t.save(),t.globalAlpha=a,this.drawBackground(n,e,t,i),n.y+=e.yPadding,this.drawTitle(n,e,t),this.drawBody(n,e,t),this.drawFooter(n,e,t),t.restore())}},handleEvent:function(t){var e,i=this,n=i._options;return i._lastActive=i._lastActive||[],"mouseout"===t.type?i._active=[]:i._active=i._chart.getElementsAtEventForMode(t,n.mode,n),(e=!ut.arrayEquals(i._active,i._lastActive))&&(i._lastActive=i._active,(n.enabled||n.custom)&&(i._eventPosition={x:t.x,y:t.y},i.update(!0),i.pivot())),e}}),Ke=je,Je=Xe;Je.positioners=Ke;var Qe=ut.valueOrDefault;function ti(){return ut.merge({},[].slice.call(arguments),{merger:function(t,e,i,n){if("xAxes"===t||"yAxes"===t){var a,r,o,s=i[t].length;for(e[t]||(e[t]=[]),a=0;a=e[t].length&&e[t].push({}),!e[t][a].type||o.type&&o.type!==e[t][a].type?ut.merge(e[t][a],[Ee.getScaleDefaults(r),o]):ut.merge(e[t][a],o)}else ut._merger(t,e,i,n)}})}function ei(){return ut.merge({},[].slice.call(arguments),{merger:function(t,e,i,n){var a=e[t]||{},r=i[t];"scales"===t?e[t]=ti(a,r):"scale"===t?e[t]=ut.merge(a,[Ee.getScaleDefaults(r.type),r]):ut._merger(t,e,i,n)}})}function ii(t){return"top"===t||"bottom"===t}ot._set("global",{elements:{},events:["mousemove","mouseout","click","touchstart","touchmove"],hover:{onHover:null,mode:"nearest",intersect:!0,animationDuration:400},onClick:null,maintainAspectRatio:!0,responsive:!0,responsiveAnimationDuration:0});var ni=function(t,e){return this.construct(t,e),this};ut.extend(ni.prototype,{construct:function(t,e){var i=this;e=function(t){var e=(t=t||{}).data=t.data||{};return e.datasets=e.datasets||[],e.labels=e.labels||[],t.options=ei(ot.global,ot[t.type],t.options||{}),t}(e);var n=Ve.acquireContext(t,e),a=n&&n.canvas,r=a&&a.height,o=a&&a.width;i.id=ut.uid(),i.ctx=n,i.canvas=a,i.config=e,i.width=o,i.height=r,i.aspectRatio=r?o/r:null,i.options=e.options,i._bufferedRender=!1,i.chart=i,i.controller=i,ni.instances[i.id]=i,Object.defineProperty(i,"data",{get:function(){return i.config.data},set:function(t){i.config.data=t}}),n&&a?(i.initialize(),i.update()):console.error("Failed to create chart: can't acquire context from the given item")},initialize:function(){var t=this;return He.notify(t,"beforeInit"),ut.retinaScale(t,t.options.devicePixelRatio),t.bindEvents(),t.options.responsive&&t.resize(!0),t.ensureScalesHaveIDs(),t.buildOrUpdateScales(),t.initToolTip(),He.notify(t,"afterInit"),t},clear:function(){return ut.canvas.clear(this),this},stop:function(){return vt.cancelAnimation(this),this},resize:function(t){var e=this,i=e.options,n=e.canvas,a=i.maintainAspectRatio&&e.aspectRatio||null,r=Math.max(0,Math.floor(ut.getMaximumWidth(n))),o=Math.max(0,Math.floor(a?r/a:ut.getMaximumHeight(n)));if((e.width!==r||e.height!==o)&&(n.width=e.width=r,n.height=e.height=o,n.style.width=r+"px",n.style.height=o+"px",ut.retinaScale(e,i.devicePixelRatio),!t)){var s={width:r,height:o};He.notify(e,"resize",[s]),i.onResize&&i.onResize(e,s),e.stop(),e.update({duration:i.responsiveAnimationDuration})}},ensureScalesHaveIDs:function(){var t=this.options,e=t.scales||{},i=t.scale;ut.each(e.xAxes,function(t,e){t.id=t.id||"x-axis-"+e}),ut.each(e.yAxes,function(t,e){t.id=t.id||"y-axis-"+e}),i&&(i.id=i.id||"scale")},buildOrUpdateScales:function(){var t=this,e=t.options,i=t.scales||{},n=[],a=Object.keys(i).reduce(function(t,e){return t[e]=!1,t},{});e.scales&&(n=n.concat((e.scales.xAxes||[]).map(function(t){return{options:t,dtype:"category",dposition:"bottom"}}),(e.scales.yAxes||[]).map(function(t){return{options:t,dtype:"linear",dposition:"left"}}))),e.scale&&n.push({options:e.scale,dtype:"radialLinear",isDefault:!0,dposition:"chartArea"}),ut.each(n,function(e){var n=e.options,r=n.id,o=Qe(n.type,e.dtype);ii(n.position)!==ii(e.dposition)&&(n.position=e.dposition),a[r]=!0;var s=null;if(r in i&&i[r].type===o)(s=i[r]).options=n,s.ctx=t.ctx,s.chart=t;else{var l=Ee.getScaleConstructor(o);if(!l)return;s=new l({id:r,type:o,options:n,ctx:t.ctx,chart:t}),i[s.id]=s}s.mergeTicksOptions(),e.isDefault&&(t.scale=s)}),ut.each(a,function(t,e){t||delete i[e]}),t.scales=i,Ee.addScalesToLayout(this)},buildOrUpdateControllers:function(){var t=this,e=[];return ut.each(t.data.datasets,function(i,n){var a=t.getDatasetMeta(n),r=i.type||t.config.type;if(a.type&&a.type!==r&&(t.destroyDatasetMeta(n),a=t.getDatasetMeta(n)),a.type=r,a.controller)a.controller.updateIndex(n),a.controller.linkScales();else{var o=ue[a.type];if(void 0===o)throw new Error('"'+a.type+'" is not a chart type.');a.controller=new o(t,n),e.push(a.controller)}},t),e},resetElements:function(){var t=this;ut.each(t.data.datasets,function(e,i){t.getDatasetMeta(i).controller.reset()},t)},reset:function(){this.resetElements(),this.tooltip.initialize()},update:function(t){var e,i,n=this;if(t&&"object"==typeof t||(t={duration:t,lazy:arguments[1]}),i=(e=n).options,ut.each(e.scales,function(t){xe.removeBox(e,t)}),i=ei(ot.global,ot[e.config.type],i),e.options=e.config.options=i,e.ensureScalesHaveIDs(),e.buildOrUpdateScales(),e.tooltip._options=i.tooltips,e.tooltip.initialize(),He._invalidate(n),!1!==He.notify(n,"beforeUpdate")){n.tooltip._data=n.data;var a=n.buildOrUpdateControllers();ut.each(n.data.datasets,function(t,e){n.getDatasetMeta(e).controller.buildOrUpdateElements()},n),n.updateLayout(),n.options.animation&&n.options.animation.duration&&ut.each(a,function(t){t.reset()}),n.updateDatasets(),n.tooltip.initialize(),n.lastActive=[],He.notify(n,"afterUpdate"),n._bufferedRender?n._bufferedRequest={duration:t.duration,easing:t.easing,lazy:t.lazy}:n.render(t)}},updateLayout:function(){!1!==He.notify(this,"beforeLayout")&&(xe.update(this,this.width,this.height),He.notify(this,"afterScaleUpdate"),He.notify(this,"afterLayout"))},updateDatasets:function(){if(!1!==He.notify(this,"beforeDatasetsUpdate")){for(var t=0,e=this.data.datasets.length;t=0;--i)e.isDatasetVisible(i)&&e.drawDataset(i,t);He.notify(e,"afterDatasetsDraw",[t])}},drawDataset:function(t,e){var i=this.getDatasetMeta(t),n={meta:i,index:t,easingValue:e};!1!==He.notify(this,"beforeDatasetDraw",[n])&&(i.controller.draw(e),He.notify(this,"afterDatasetDraw",[n]))},_drawTooltip:function(t){var e=this.tooltip,i={tooltip:e,easingValue:t};!1!==He.notify(this,"beforeTooltipDraw",[i])&&(e.draw(),He.notify(this,"afterTooltipDraw",[i]))},getElementAtEvent:function(t){return pe.modes.single(this,t)},getElementsAtEvent:function(t){return pe.modes.label(this,t,{intersect:!0})},getElementsAtXAxis:function(t){return pe.modes["x-axis"](this,t,{intersect:!0})},getElementsAtEventForMode:function(t,e,i){var n=pe.modes[e];return"function"==typeof n?n(this,t,i):[]},getDatasetAtEvent:function(t){return pe.modes.dataset(this,t,{intersect:!0})},getDatasetMeta:function(t){var e=this.data.datasets[t];e._meta||(e._meta={});var i=e._meta[this.id];return i||(i=e._meta[this.id]={type:null,data:[],dataset:null,controller:null,hidden:null,xAxisID:null,yAxisID:null}),i},getVisibleDatasetCount:function(){for(var t=0,e=0,i=this.data.datasets.length;e3?i[2]-i[1]:i[1]-i[0];Math.abs(n)>1&&t!==Math.floor(t)&&(n=t-Math.floor(t));var a=ut.log10(Math.abs(n)),r="";if(0!==t)if(Math.max(Math.abs(i[0]),Math.abs(i[i.length-1]))<1e-4){var o=ut.log10(Math.abs(t));r=t.toExponential(Math.floor(o)-Math.floor(a))}else{var s=-1*Math.floor(a);s=Math.max(Math.min(s,20),0),r=t.toFixed(s)}else r="0";return r},logarithmic:function(t,e,i){var n=t/Math.pow(10,Math.floor(ut.log10(t)));return 0===t?"0":1===n||2===n||5===n||0===e||e===i.length-1?t.toExponential():""}}},ui=ut.valueOrDefault,di=ut.valueAtIndexOrDefault;function hi(t){var e,i,n=[];for(e=0,i=t.length;eu&&rt.maxHeight){r--;break}r++,l=o*s}t.labelRotation=r},afterCalculateTickRotation:function(){ut.callback(this.options.afterCalculateTickRotation,[this])},beforeFit:function(){ut.callback(this.options.beforeFit,[this])},fit:function(){var t=this,e=t.minSize={width:0,height:0},i=hi(t._ticks),n=t.options,a=n.ticks,r=n.scaleLabel,o=n.gridLines,s=t._isVisible(),l=n.position,u=t.isHorizontal(),d=ut.options._parseFont,h=d(a),c=n.gridLines.tickMarkLength;if(e.width=u?t.isFullWidth()?t.maxWidth-t.margins.left-t.margins.right:t.maxWidth:s&&o.drawTicks?c:0,e.height=u?s&&o.drawTicks?c:0:t.maxHeight,r.display&&s){var f=d(r),g=ut.options.toPadding(r.padding),m=f.lineHeight+g.height;u?e.height+=m:e.width+=m}if(a.display&&s){var p=ut.longestText(t.ctx,h.string,i,t.longestTextCache),v=ut.numberOfLabelLines(i),y=.5*h.size,b=t.options.ticks.padding;if(t._maxLabelLines=v,t.longestLabelWidth=p,u){var x=ut.toRadians(t.labelRotation),_=Math.cos(x),k=Math.sin(x)*p+h.lineHeight*v+y;e.height=Math.min(t.maxHeight,e.height+k+b),t.ctx.font=h.string;var w,M,S=ci(t.ctx,i[0],h.string),D=ci(t.ctx,i[i.length-1],h.string),C=t.getPixelForTick(0)-t.left,P=t.right-t.getPixelForTick(i.length-1);0!==t.labelRotation?(w="bottom"===l?_*S:_*y,M="bottom"===l?_*y:_*D):(w=S/2,M=D/2),t.paddingLeft=Math.max(w-C,0)+3,t.paddingRight=Math.max(M-P,0)+3}else a.mirror?p=0:p+=b+y,e.width=Math.min(t.maxWidth,e.width+p),t.paddingTop=h.size/2,t.paddingBottom=h.size/2}t.handleMargins(),t.width=e.width,t.height=e.height},handleMargins:function(){var t=this;t.margins&&(t.paddingLeft=Math.max(t.paddingLeft-t.margins.left,0),t.paddingTop=Math.max(t.paddingTop-t.margins.top,0),t.paddingRight=Math.max(t.paddingRight-t.margins.right,0),t.paddingBottom=Math.max(t.paddingBottom-t.margins.bottom,0))},afterFit:function(){ut.callback(this.options.afterFit,[this])},isHorizontal:function(){return"top"===this.options.position||"bottom"===this.options.position},isFullWidth:function(){return this.options.fullWidth},getRightValue:function(t){if(ut.isNullOrUndef(t))return NaN;if(("number"==typeof t||t instanceof Number)&&!isFinite(t))return NaN;if(t)if(this.isHorizontal()){if(void 0!==t.x)return this.getRightValue(t.x)}else if(void 0!==t.y)return this.getRightValue(t.y);return t},getLabelForIndex:ut.noop,getPixelForValue:ut.noop,getValueForPixel:ut.noop,getPixelForTick:function(t){var e=this,i=e.options.offset;if(e.isHorizontal()){var n=(e.width-(e.paddingLeft+e.paddingRight))/Math.max(e._ticks.length-(i?0:1),1),a=n*t+e.paddingLeft;i&&(a+=n/2);var r=e.left+a;return r+=e.isFullWidth()?e.margins.left:0}var o=e.height-(e.paddingTop+e.paddingBottom);return e.top+t*(o/(e._ticks.length-1))},getPixelForDecimal:function(t){var e=this;if(e.isHorizontal()){var i=(e.width-(e.paddingLeft+e.paddingRight))*t+e.paddingLeft,n=e.left+i;return n+=e.isFullWidth()?e.margins.left:0}return e.top+t*e.height},getBasePixel:function(){return this.getPixelForValue(this.getBaseValue())},getBaseValue:function(){var t=this.min,e=this.max;return this.beginAtZero?0:t<0&&e<0?e:t>0&&e>0?t:0},_autoSkip:function(t){var e,i,n=this,a=n.isHorizontal(),r=n.options.ticks.minor,o=t.length,s=!1,l=r.maxTicksLimit,u=n._tickSize()*(o-1),d=a?n.width-(n.paddingLeft+n.paddingRight):n.height-(n.paddingTop+n.PaddingBottom),h=[];for(u>d&&(s=1+Math.floor(u/d)),o>l&&(s=Math.max(s,1+Math.floor(o/l))),e=0;e1&&e%s>0&&delete i.label,h.push(i);return h},_tickSize:function(){var t=this,e=t.isHorizontal(),i=t.options.ticks.minor,n=ut.toRadians(t.labelRotation),a=Math.abs(Math.cos(n)),r=Math.abs(Math.sin(n)),o=i.autoSkipPadding||0,s=t.longestLabelWidth+o||0,l=ut.options._parseFont(i),u=t._maxLabelLines*l.lineHeight+o||0;return e?u*a>s*r?s/a:u/r:u*r0&&n>0&&(t.min=0)}var a=void 0!==e.min||void 0!==e.suggestedMin,r=void 0!==e.max||void 0!==e.suggestedMax;void 0!==e.min?t.min=e.min:void 0!==e.suggestedMin&&(null===t.min?t.min=e.suggestedMin:t.min=Math.min(t.min,e.suggestedMin)),void 0!==e.max?t.max=e.max:void 0!==e.suggestedMax&&(null===t.max?t.max=e.suggestedMax:t.max=Math.max(t.max,e.suggestedMax)),a!==r&&t.min>=t.max&&(a?t.max=t.min+1:t.min=t.max-1),t.min===t.max&&(t.max++,e.beginAtZero||t.min--)},getTickLimit:function(){var t,e=this.options.ticks,i=e.stepSize,n=e.maxTicksLimit;return i?t=Math.ceil(this.max/i)-Math.floor(this.min/i)+1:(t=this._computeTickLimit(),n=n||11),n&&(t=Math.min(n,t)),t},_computeTickLimit:function(){return Number.POSITIVE_INFINITY},handleDirectionalChanges:pi,buildTicks:function(){var t=this,e=t.options.ticks,i=t.getTickLimit(),n={maxTicks:i=Math.max(2,i),min:e.min,max:e.max,precision:e.precision,stepSize:ut.valueOrDefault(e.fixedStepSize,e.stepSize)},a=t.ticks=function(t,e){var i,n,a,r,o=[],s=t.stepSize,l=s||1,u=t.maxTicks-1,d=t.min,h=t.max,c=t.precision,f=e.min,g=e.max,m=ut.niceNum((g-f)/u/l)*l;if(m<1e-14&&vi(d)&&vi(h))return[f,g];(r=Math.ceil(g/m)-Math.floor(f/m))>u&&(m=ut.niceNum(r*m/u/l)*l),s||vi(c)?i=Math.pow(10,ut._decimalPlaces(m)):(i=Math.pow(10,c),m=Math.ceil(m*i)/i),n=Math.floor(f/m)*m,a=Math.ceil(g/m)*m,s&&(!vi(d)&&ut.almostWhole(d/m,m/1e3)&&(n=d),!vi(h)&&ut.almostWhole(h/m,m/1e3)&&(a=h)),r=(a-n)/m,r=ut.almostEquals(r,Math.round(r),m/1e3)?Math.round(r):Math.ceil(r),n=Math.round(n*i)/i,a=Math.round(a*i)/i,o.push(vi(d)?n:d);for(var p=1;pt.max&&(t.max=n))})});t.min=isFinite(t.min)&&!isNaN(t.min)?t.min:0,t.max=isFinite(t.max)&&!isNaN(t.max)?t.max:1,this.handleTickRangeOptions()},_computeTickLimit:function(){var t;return this.isHorizontal()?Math.ceil(this.width/40):(t=ut.options._parseFont(this.options.ticks),Math.ceil(this.height/t.lineHeight))},handleDirectionalChanges:function(){this.isHorizontal()||this.ticks.reverse()},getLabelForIndex:function(t,e){return+this.getRightValue(this.chart.data.datasets[e].data[t])},getPixelForValue:function(t){var e=this,i=e.start,n=+e.getRightValue(t),a=e.end-i;return e.isHorizontal()?e.left+e.width/a*(n-i):e.bottom-e.height/a*(n-i)},getValueForPixel:function(t){var e=this,i=e.isHorizontal(),n=i?e.width:e.height,a=(i?t-e.left:e.bottom-t)/n;return e.start+(e.end-e.start)*a},getPixelForTick:function(t){return this.getPixelForValue(this.ticksAsNumbers[t])}}),_i=bi;xi._defaults=_i;var ki=ut.valueOrDefault;var wi={position:"left",ticks:{callback:li.formatters.logarithmic}};function Mi(t,e){return ut.isFinite(t)&&t>=0?t:e}var Si=fi.extend({determineDataLimits:function(){var t=this,e=t.options,i=t.chart,n=i.data.datasets,a=t.isHorizontal();function r(e){return a?e.xAxisID===t.id:e.yAxisID===t.id}t.min=null,t.max=null,t.minNotZero=null;var o=e.stacked;if(void 0===o&&ut.each(n,function(t,e){if(!o){var n=i.getDatasetMeta(e);i.isDatasetVisible(e)&&r(n)&&void 0!==n.stack&&(o=!0)}}),e.stacked||o){var s={};ut.each(n,function(n,a){var o=i.getDatasetMeta(a),l=[o.type,void 0===e.stacked&&void 0===o.stack?a:"",o.stack].join(".");i.isDatasetVisible(a)&&r(o)&&(void 0===s[l]&&(s[l]=[]),ut.each(n.data,function(e,i){var n=s[l],a=+t.getRightValue(e);isNaN(a)||o.data[i].hidden||a<0||(n[i]=n[i]||0,n[i]+=a)}))}),ut.each(s,function(e){if(e.length>0){var i=ut.min(e),n=ut.max(e);t.min=null===t.min?i:Math.min(t.min,i),t.max=null===t.max?n:Math.max(t.max,n)}})}else ut.each(n,function(e,n){var a=i.getDatasetMeta(n);i.isDatasetVisible(n)&&r(a)&&ut.each(e.data,function(e,i){var n=+t.getRightValue(e);isNaN(n)||a.data[i].hidden||n<0||(null===t.min?t.min=n:nt.max&&(t.max=n),0!==n&&(null===t.minNotZero||n0?t.minNotZero=t.min:t.max<1?t.minNotZero=Math.pow(10,Math.floor(ut.log10(t.max))):t.minNotZero=1)},buildTicks:function(){var t=this,e=t.options.ticks,i=!t.isHorizontal(),n={min:Mi(e.min),max:Mi(e.max)},a=t.ticks=function(t,e){var i,n,a=[],r=ki(t.min,Math.pow(10,Math.floor(ut.log10(e.min)))),o=Math.floor(ut.log10(e.max)),s=Math.ceil(e.max/Math.pow(10,o));0===r?(i=Math.floor(ut.log10(e.minNotZero)),n=Math.floor(e.minNotZero/Math.pow(10,i)),a.push(r),r=n*Math.pow(10,i)):(i=Math.floor(ut.log10(r)),n=Math.floor(r/Math.pow(10,i)));var l=i<0?Math.pow(10,Math.abs(i)):1;do{a.push(r),10==++n&&(n=1,l=++i>=0?1:l),r=Math.round(n*Math.pow(10,i)*l)/l}while(ia?{start:e-i,end:e}:{start:e,end:e+i}}function Ri(t){return 0===t||180===t?"center":t<180?"left":"right"}function Li(t,e,i,n){var a,r,o=i.y+n/2;if(ut.isArray(e))for(a=0,r=e.length;a270||t<90)&&(i.y-=e.h)}function Yi(t){return ut.isNumber(t)?t:0}var Ni=yi.extend({setDimensions:function(){var t=this;t.width=t.maxWidth,t.height=t.maxHeight,t.paddingTop=Ai(t.options)/2,t.xCenter=Math.floor(t.width/2),t.yCenter=Math.floor((t.height-t.paddingTop)/2),t.drawingArea=Math.min(t.height-t.paddingTop,t.width)/2},determineDataLimits:function(){var t=this,e=t.chart,i=Number.POSITIVE_INFINITY,n=Number.NEGATIVE_INFINITY;ut.each(e.data.datasets,function(a,r){if(e.isDatasetVisible(r)){var o=e.getDatasetMeta(r);ut.each(a.data,function(e,a){var r=+t.getRightValue(e);isNaN(r)||o.data[a].hidden||(i=Math.min(r,i),n=Math.max(r,n))})}}),t.min=i===Number.POSITIVE_INFINITY?0:i,t.max=n===Number.NEGATIVE_INFINITY?0:n,t.handleTickRangeOptions()},_computeTickLimit:function(){return Math.ceil(this.drawingArea/Ai(this.options))},convertTicksToLabels:function(){var t=this;yi.prototype.convertTicksToLabels.call(t),t.pointLabels=t.chart.data.labels.map(t.options.pointLabels.callback,t)},getLabelForIndex:function(t,e){return+this.getRightValue(this.chart.data.datasets[e].data[t])},fit:function(){var t=this.options;t.display&&t.pointLabels.display?function(t){var e,i,n,a=ut.options._parseFont(t.options.pointLabels),r={l:0,r:t.width,t:0,b:t.height-t.paddingTop},o={};t.ctx.font=a.string,t._pointLabelSizes=[];var s,l,u,d=Ii(t);for(e=0;er.r&&(r.r=f.end,o.r=h),g.startr.b&&(r.b=g.end,o.b=h)}t.setReductions(t.drawingArea,r,o)}(this):this.setCenterPoint(0,0,0,0)},setReductions:function(t,e,i){var n=this,a=e.l/Math.sin(i.l),r=Math.max(e.r-n.width,0)/Math.sin(i.r),o=-e.t/Math.cos(i.t),s=-Math.max(e.b-(n.height-n.paddingTop),0)/Math.cos(i.b);a=Yi(a),r=Yi(r),o=Yi(o),s=Yi(s),n.drawingArea=Math.min(Math.floor(t-(a+r)/2),Math.floor(t-(o+s)/2)),n.setCenterPoint(a,r,o,s)},setCenterPoint:function(t,e,i,n){var a=this,r=a.width-e-a.drawingArea,o=t+a.drawingArea,s=i+a.drawingArea,l=a.height-a.paddingTop-n-a.drawingArea;a.xCenter=Math.floor((o+r)/2+a.left),a.yCenter=Math.floor((s+l)/2+a.top+a.paddingTop)},getIndexAngle:function(t){return t*(2*Math.PI/Ii(this))+(this.chart.options&&this.chart.options.startAngle?this.chart.options.startAngle:0)*Math.PI*2/360},getDistanceFromCenterForValue:function(t){var e=this;if(null===t)return 0;var i=e.drawingArea/(e.max-e.min);return e.options.ticks.reverse?(e.max-t)*i:(t-e.min)*i},getPointPosition:function(t,e){var i=this.getIndexAngle(t)-Math.PI/2;return{x:Math.cos(i)*e+this.xCenter,y:Math.sin(i)*e+this.yCenter}},getPointPositionForValue:function(t,e){return this.getPointPosition(t,this.getDistanceFromCenterForValue(e))},getBasePosition:function(){var t=this.min,e=this.max;return this.getPointPositionForValue(0,this.beginAtZero?0:t<0&&e<0?e:t>0&&e>0?t:0)},draw:function(){var t=this,e=t.options,i=e.gridLines,n=e.ticks;if(e.display){var a=t.ctx,r=this.getIndexAngle(0),o=ut.options._parseFont(n);(e.angleLines.display||e.pointLabels.display)&&function(t){var e=t.ctx,i=t.options,n=i.angleLines,a=i.gridLines,r=i.pointLabels,o=Ci(n.lineWidth,a.lineWidth),s=Ci(n.color,a.color),l=Ai(i);e.save(),e.lineWidth=o,e.strokeStyle=s,e.setLineDash&&(e.setLineDash(Ti([n.borderDash,a.borderDash,[]])),e.lineDashOffset=Ti([n.borderDashOffset,a.borderDashOffset,0]));var u=t.getDistanceFromCenterForValue(i.ticks.reverse?t.min:t.max),d=ut.options._parseFont(r);e.font=d.string,e.textBaseline="middle";for(var h=Ii(t)-1;h>=0;h--){if(n.display&&o&&s){var c=t.getPointPosition(h,u);e.beginPath(),e.moveTo(t.xCenter,t.yCenter),e.lineTo(c.x,c.y),e.stroke()}if(r.display){var f=0===h?l/2:0,g=t.getPointPosition(h,u+f+5),m=Pi(r.fontColor,h,ot.global.defaultFontColor);e.fillStyle=m;var p=t.getIndexAngle(h),v=ut.toDegrees(p);e.textAlign=Ri(v),Wi(v,t._pointLabelSizes[h],g),Li(e,t.pointLabels[h]||"",g,d.lineHeight)}}e.restore()}(t),ut.each(t.ticks,function(e,s){if(s>0||n.reverse){var l=t.getDistanceFromCenterForValue(t.ticksAsNumbers[s]);if(i.display&&0!==s&&function(t,e,i,n){var a,r=t.ctx,o=e.circular,s=Ii(t),l=Pi(e.color,n-1),u=Pi(e.lineWidth,n-1);if((o||s)&&l&&u){if(r.save(),r.strokeStyle=l,r.lineWidth=u,r.setLineDash&&(r.setLineDash(e.borderDash||[]),r.lineDashOffset=e.borderDashOffset||0),r.beginPath(),o)r.arc(t.xCenter,t.yCenter,i,0,2*Math.PI);else{a=t.getPointPosition(0,i),r.moveTo(a.x,a.y);for(var d=1;d=0&&o<=s;){if(a=t[(n=o+s>>1)-1]||null,r=t[n],!a)return{lo:null,hi:r};if(r[e]i))return{lo:a,hi:r};s=n-1}}return{lo:r,hi:null}}(t,e,i),r=a.lo?a.hi?a.lo:t[t.length-2]:t[0],o=a.lo?a.hi?a.hi:t[t.length-1]:t[1],s=o[e]-r[e],l=s?(i-r[e])/s:0,u=(o[n]-r[n])*l;return r[n]+u}function Zi(t,e){var i=t._adapter,n=t.options.time,a=n.parser,r=a||n.format,o=e;return"function"==typeof a&&(o=a(o)),ut.isFinite(o)||(o="string"==typeof r?i.parse(o,r):i.parse(o)),null!==o?+o:(a||"function"!=typeof r||(o=r(e),ut.isFinite(o)||(o=i.parse(o))),o)}function $i(t,e){if(ut.isNullOrUndef(e))return null;var i=t.options.time,n=Zi(t,t.getRightValue(e));return null===n?n:(i.round&&(n=+t._adapter.startOf(n,i.round)),n)}function Xi(t){for(var e=ji.indexOf(t)+1,i=ji.length;e=a&&i<=r&&u.push(i);return n.min=a,n.max=r,n._unit=s.unit||function(t,e,i,n,a){var r,o;for(r=ji.length-1;r>=ji.indexOf(i);r--)if(o=ji[r],Bi[o].common&&t._adapter.diff(a,n,o)>=e.length)return o;return ji[i?ji.indexOf(i):0]}(n,u,s.minUnit,n.min,n.max),n._majorUnit=Xi(n._unit),n._table=function(t,e,i,n){if("linear"===n||!t.length)return[{time:e,pos:0},{time:i,pos:1}];var a,r,o,s,l,u=[],d=[e];for(a=0,r=t.length;ae&&s=0&&t0?o:1}}),Qi={position:"bottom",distribution:"linear",bounds:"data",adapters:{},time:{parser:!1,format:!1,unit:!1,round:!1,displayFormat:!1,isoWeekday:!1,minUnit:"millisecond",displayFormats:{}},ticks:{autoSkip:!1,source:"auto",major:{enabled:!1}}};Ji._defaults=Qi;var tn,en={category:gi,linear:xi,logarithmic:Si,radialLinear:Ni,time:Ji},nn=(function(t,e){t.exports=function(){var e,i;function n(){return e.apply(null,arguments)}function a(t){return t instanceof Array||"[object Array]"===Object.prototype.toString.call(t)}function r(t){return null!=t&&"[object Object]"===Object.prototype.toString.call(t)}function o(t){return void 0===t}function s(t){return"number"==typeof t||"[object Number]"===Object.prototype.toString.call(t)}function l(t){return t instanceof Date||"[object Date]"===Object.prototype.toString.call(t)}function u(t,e){var i,n=[];for(i=0;i>>0,n=0;n0)for(i=0;i=0;return(r?i?"+":"":"-")+Math.pow(10,Math.max(0,a)).toString().substr(1)+n}var z=/(\[[^\[]*\])|(\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|YYYYYY|YYYYY|YYYY|YY|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g,V=/(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g,H={},E={};function B(t,e,i,n){var a=n;"string"==typeof n&&(a=function(){return this[n]()}),t&&(E[t]=a),e&&(E[e[0]]=function(){return N(a.apply(this,arguments),e[1],e[2])}),i&&(E[i]=function(){return this.localeData().ordinal(a.apply(this,arguments),t)})}function j(t,e){return t.isValid()?(e=U(e,t.localeData()),H[e]=H[e]||function(t){var e,i,n,a=t.match(z);for(e=0,i=a.length;e=0&&V.test(t);)t=t.replace(V,n),V.lastIndex=0,i-=1;return t}var G=/\d/,q=/\d\d/,Z=/\d{3}/,$=/\d{4}/,X=/[+-]?\d{6}/,K=/\d\d?/,J=/\d\d\d\d?/,Q=/\d\d\d\d\d\d?/,tt=/\d{1,3}/,et=/\d{1,4}/,it=/[+-]?\d{1,6}/,nt=/\d+/,at=/[+-]?\d+/,rt=/Z|[+-]\d\d:?\d\d/gi,ot=/Z|[+-]\d\d(?::?\d\d)?/gi,st=/[0-9]{0,256}['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFF07\uFF10-\uFFEF]{1,256}|[\u0600-\u06FF\/]{1,256}(\s*?[\u0600-\u06FF]{1,256}){1,2}/i,lt={};function ut(t,e,i){lt[t]=T(e)?e:function(t,n){return t&&i?i:e}}function dt(t,e){return d(lt,t)?lt[t](e._strict,e._locale):new RegExp(ht(t.replace("\\","").replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g,function(t,e,i,n,a){return e||i||n||a})))}function ht(t){return t.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&")}var ct={};function ft(t,e){var i,n=e;for("string"==typeof t&&(t=[t]),s(e)&&(n=function(t,i){i[e]=k(t)}),i=0;i68?1900:2e3)};var Ct,Pt=Tt("FullYear",!0);function Tt(t,e){return function(i){return null!=i?(It(this,t,i),n.updateOffset(this,e),this):Ot(this,t)}}function Ot(t,e){return t.isValid()?t._d["get"+(t._isUTC?"UTC":"")+e]():NaN}function It(t,e,i){t.isValid()&&!isNaN(i)&&("FullYear"===e&&Dt(t.year())&&1===t.month()&&29===t.date()?t._d["set"+(t._isUTC?"UTC":"")+e](i,t.month(),At(i,t.month())):t._d["set"+(t._isUTC?"UTC":"")+e](i))}function At(t,e){if(isNaN(t)||isNaN(e))return NaN;var i,n=(e%(i=12)+i)%i;return t+=(e-n)/12,1===n?Dt(t)?29:28:31-n%7%2}Ct=Array.prototype.indexOf?Array.prototype.indexOf:function(t){var e;for(e=0;e=0){var i=Array.prototype.slice.call(arguments);i[0]=t+400,e=new Date(Date.UTC.apply(null,i)),isFinite(e.getUTCFullYear())&&e.setUTCFullYear(t)}else e=new Date(Date.UTC.apply(null,arguments));return e}function Et(t,e,i){var n=7+e-i,a=(7+Ht(t,0,n).getUTCDay()-e)%7;return-a+n-1}function Bt(t,e,i,n,a){var r,o,s=(7+i-n)%7,l=Et(t,n,a),u=1+7*(e-1)+s+l;return u<=0?o=St(r=t-1)+u:u>St(t)?(r=t+1,o=u-St(t)):(r=t,o=u),{year:r,dayOfYear:o}}function jt(t,e,i){var n,a,r=Et(t.year(),e,i),o=Math.floor((t.dayOfYear()-r-1)/7)+1;return o<1?(a=t.year()-1,n=o+Ut(a,e,i)):o>Ut(t.year(),e,i)?(n=o-Ut(t.year(),e,i),a=t.year()+1):(a=t.year(),n=o),{week:n,year:a}}function Ut(t,e,i){var n=Et(t,e,i),a=Et(t+1,e,i);return(St(t)-n+a)/7}function Gt(t,e){return t.slice(e,7).concat(t.slice(0,e))}B("w",["ww",2],"wo","week"),B("W",["WW",2],"Wo","isoWeek"),F("week","w"),F("isoWeek","W"),Y("week",5),Y("isoWeek",5),ut("w",K),ut("ww",K,q),ut("W",K),ut("WW",K,q),gt(["w","ww","W","WW"],function(t,e,i,n){e[n.substr(0,1)]=k(t)}),B("d",0,"do","day"),B("dd",0,0,function(t){return this.localeData().weekdaysMin(this,t)}),B("ddd",0,0,function(t){return this.localeData().weekdaysShort(this,t)}),B("dddd",0,0,function(t){return this.localeData().weekdays(this,t)}),B("e",0,0,"weekday"),B("E",0,0,"isoWeekday"),F("day","d"),F("weekday","e"),F("isoWeekday","E"),Y("day",11),Y("weekday",11),Y("isoWeekday",11),ut("d",K),ut("e",K),ut("E",K),ut("dd",function(t,e){return e.weekdaysMinRegex(t)}),ut("ddd",function(t,e){return e.weekdaysShortRegex(t)}),ut("dddd",function(t,e){return e.weekdaysRegex(t)}),gt(["dd","ddd","dddd"],function(t,e,i,n){var a=i._locale.weekdaysParse(t,n,i._strict);null!=a?e.d=a:f(i).invalidWeekday=t}),gt(["d","e","E"],function(t,e,i,n){e[n]=k(t)});var qt="Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),Zt="Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),$t="Su_Mo_Tu_We_Th_Fr_Sa".split("_"),Xt=st,Kt=st,Jt=st;function Qt(){function t(t,e){return e.length-t.length}var e,i,n,a,r,o=[],s=[],l=[],u=[];for(e=0;e<7;e++)i=c([2e3,1]).day(e),n=this.weekdaysMin(i,""),a=this.weekdaysShort(i,""),r=this.weekdays(i,""),o.push(n),s.push(a),l.push(r),u.push(n),u.push(a),u.push(r);for(o.sort(t),s.sort(t),l.sort(t),u.sort(t),e=0;e<7;e++)s[e]=ht(s[e]),l[e]=ht(l[e]),u[e]=ht(u[e]);this._weekdaysRegex=new RegExp("^("+u.join("|")+")","i"),this._weekdaysShortRegex=this._weekdaysRegex,this._weekdaysMinRegex=this._weekdaysRegex,this._weekdaysStrictRegex=new RegExp("^("+l.join("|")+")","i"),this._weekdaysShortStrictRegex=new RegExp("^("+s.join("|")+")","i"),this._weekdaysMinStrictRegex=new RegExp("^("+o.join("|")+")","i")}function te(){return this.hours()%12||12}function ee(t,e){B(t,0,0,function(){return this.localeData().meridiem(this.hours(),this.minutes(),e)})}function ie(t,e){return e._meridiemParse}B("H",["HH",2],0,"hour"),B("h",["hh",2],0,te),B("k",["kk",2],0,function(){return this.hours()||24}),B("hmm",0,0,function(){return""+te.apply(this)+N(this.minutes(),2)}),B("hmmss",0,0,function(){return""+te.apply(this)+N(this.minutes(),2)+N(this.seconds(),2)}),B("Hmm",0,0,function(){return""+this.hours()+N(this.minutes(),2)}),B("Hmmss",0,0,function(){return""+this.hours()+N(this.minutes(),2)+N(this.seconds(),2)}),ee("a",!0),ee("A",!1),F("hour","h"),Y("hour",13),ut("a",ie),ut("A",ie),ut("H",K),ut("h",K),ut("k",K),ut("HH",K,q),ut("hh",K,q),ut("kk",K,q),ut("hmm",J),ut("hmmss",Q),ut("Hmm",J),ut("Hmmss",Q),ft(["H","HH"],bt),ft(["k","kk"],function(t,e,i){var n=k(t);e[bt]=24===n?0:n}),ft(["a","A"],function(t,e,i){i._isPm=i._locale.isPM(t),i._meridiem=t}),ft(["h","hh"],function(t,e,i){e[bt]=k(t),f(i).bigHour=!0}),ft("hmm",function(t,e,i){var n=t.length-2;e[bt]=k(t.substr(0,n)),e[xt]=k(t.substr(n)),f(i).bigHour=!0}),ft("hmmss",function(t,e,i){var n=t.length-4,a=t.length-2;e[bt]=k(t.substr(0,n)),e[xt]=k(t.substr(n,2)),e[_t]=k(t.substr(a)),f(i).bigHour=!0}),ft("Hmm",function(t,e,i){var n=t.length-2;e[bt]=k(t.substr(0,n)),e[xt]=k(t.substr(n))}),ft("Hmmss",function(t,e,i){var n=t.length-4,a=t.length-2;e[bt]=k(t.substr(0,n)),e[xt]=k(t.substr(n,2)),e[_t]=k(t.substr(a))});var ne,ae=Tt("Hours",!0),re={calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},longDateFormat:{LTS:"h:mm:ss A",LT:"h:mm A",L:"MM/DD/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"},invalidDate:"Invalid date",ordinal:"%d",dayOfMonthOrdinalParse:/\d{1,2}/,relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},months:Rt,monthsShort:Lt,week:{dow:0,doy:6},weekdays:qt,weekdaysMin:$t,weekdaysShort:Zt,meridiemParse:/[ap]\.?m?\.?/i},oe={},se={};function le(t){return t?t.toLowerCase().replace("_","-"):t}function ue(e){var i=null;if(!oe[e]&&t&&t.exports)try{i=ne._abbr;var n=_e;n("./locale/"+e),de(i)}catch(t){}return oe[e]}function de(t,e){var i;return t&&((i=o(e)?ce(t):he(t,e))?ne=i:"undefined"!=typeof console&&console.warn&&console.warn("Locale "+t+" not found. Did you forget to load it?")),ne._abbr}function he(t,e){if(null!==e){var i,n=re;if(e.abbr=t,null!=oe[t])P("defineLocaleOverride","use moment.updateLocale(localeName, config) to change an existing locale. moment.defineLocale(localeName, config) should only be used for creating a new locale See http://momentjs.com/guides/#/warnings/define-locale/ for more info."),n=oe[t]._config;else if(null!=e.parentLocale)if(null!=oe[e.parentLocale])n=oe[e.parentLocale]._config;else{if(null==(i=ue(e.parentLocale)))return se[e.parentLocale]||(se[e.parentLocale]=[]),se[e.parentLocale].push({name:t,config:e}),null;n=i._config}return oe[t]=new I(O(n,e)),se[t]&&se[t].forEach(function(t){he(t.name,t.config)}),de(t),oe[t]}return delete oe[t],null}function ce(t){var e;if(t&&t._locale&&t._locale._abbr&&(t=t._locale._abbr),!t)return ne;if(!a(t)){if(e=ue(t))return e;t=[t]}return function(t){for(var e,i,n,a,r=0;r0;){if(n=ue(a.slice(0,e).join("-")))return n;if(i&&i.length>=e&&w(a,i,!0)>=e-1)break;e--}r++}return ne}(t)}function fe(t){var e,i=t._a;return i&&-2===f(t).overflow&&(e=i[vt]<0||i[vt]>11?vt:i[yt]<1||i[yt]>At(i[pt],i[vt])?yt:i[bt]<0||i[bt]>24||24===i[bt]&&(0!==i[xt]||0!==i[_t]||0!==i[kt])?bt:i[xt]<0||i[xt]>59?xt:i[_t]<0||i[_t]>59?_t:i[kt]<0||i[kt]>999?kt:-1,f(t)._overflowDayOfYear&&(eyt)&&(e=yt),f(t)._overflowWeeks&&-1===e&&(e=wt),f(t)._overflowWeekday&&-1===e&&(e=Mt),f(t).overflow=e),t}function ge(t,e,i){return null!=t?t:null!=e?e:i}function me(t){var e,i,a,r,o,s=[];if(!t._d){for(a=function(t){var e=new Date(n.now());return t._useUTC?[e.getUTCFullYear(),e.getUTCMonth(),e.getUTCDate()]:[e.getFullYear(),e.getMonth(),e.getDate()]}(t),t._w&&null==t._a[yt]&&null==t._a[vt]&&function(t){var e,i,n,a,r,o,s,l;if(null!=(e=t._w).GG||null!=e.W||null!=e.E)r=1,o=4,i=ge(e.GG,t._a[pt],jt(Ie(),1,4).year),n=ge(e.W,1),((a=ge(e.E,1))<1||a>7)&&(l=!0);else{r=t._locale._week.dow,o=t._locale._week.doy;var u=jt(Ie(),r,o);i=ge(e.gg,t._a[pt],u.year),n=ge(e.w,u.week),null!=e.d?((a=e.d)<0||a>6)&&(l=!0):null!=e.e?(a=e.e+r,(e.e<0||e.e>6)&&(l=!0)):a=r}n<1||n>Ut(i,r,o)?f(t)._overflowWeeks=!0:null!=l?f(t)._overflowWeekday=!0:(s=Bt(i,n,a,r,o),t._a[pt]=s.year,t._dayOfYear=s.dayOfYear)}(t),null!=t._dayOfYear&&(o=ge(t._a[pt],a[pt]),(t._dayOfYear>St(o)||0===t._dayOfYear)&&(f(t)._overflowDayOfYear=!0),i=Ht(o,0,t._dayOfYear),t._a[vt]=i.getUTCMonth(),t._a[yt]=i.getUTCDate()),e=0;e<3&&null==t._a[e];++e)t._a[e]=s[e]=a[e];for(;e<7;e++)t._a[e]=s[e]=null==t._a[e]?2===e?1:0:t._a[e];24===t._a[bt]&&0===t._a[xt]&&0===t._a[_t]&&0===t._a[kt]&&(t._nextDay=!0,t._a[bt]=0),t._d=(t._useUTC?Ht:function(t,e,i,n,a,r,o){var s;return t<100&&t>=0?(s=new Date(t+400,e,i,n,a,r,o),isFinite(s.getFullYear())&&s.setFullYear(t)):s=new Date(t,e,i,n,a,r,o),s}).apply(null,s),r=t._useUTC?t._d.getUTCDay():t._d.getDay(),null!=t._tzm&&t._d.setUTCMinutes(t._d.getUTCMinutes()-t._tzm),t._nextDay&&(t._a[bt]=24),t._w&&void 0!==t._w.d&&t._w.d!==r&&(f(t).weekdayMismatch=!0)}}var pe=/^\s*((?:[+-]\d{6}|\d{4})-(?:\d\d-\d\d|W\d\d-\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?::\d\d(?::\d\d(?:[.,]\d+)?)?)?)([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/,ve=/^\s*((?:[+-]\d{6}|\d{4})(?:\d\d\d\d|W\d\d\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?:\d\d(?:\d\d(?:[.,]\d+)?)?)?)([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/,ye=/Z|[+-]\d\d(?::?\d\d)?/,be=[["YYYYYY-MM-DD",/[+-]\d{6}-\d\d-\d\d/],["YYYY-MM-DD",/\d{4}-\d\d-\d\d/],["GGGG-[W]WW-E",/\d{4}-W\d\d-\d/],["GGGG-[W]WW",/\d{4}-W\d\d/,!1],["YYYY-DDD",/\d{4}-\d{3}/],["YYYY-MM",/\d{4}-\d\d/,!1],["YYYYYYMMDD",/[+-]\d{10}/],["YYYYMMDD",/\d{8}/],["GGGG[W]WWE",/\d{4}W\d{3}/],["GGGG[W]WW",/\d{4}W\d{2}/,!1],["YYYYDDD",/\d{7}/]],xe=[["HH:mm:ss.SSSS",/\d\d:\d\d:\d\d\.\d+/],["HH:mm:ss,SSSS",/\d\d:\d\d:\d\d,\d+/],["HH:mm:ss",/\d\d:\d\d:\d\d/],["HH:mm",/\d\d:\d\d/],["HHmmss.SSSS",/\d\d\d\d\d\d\.\d+/],["HHmmss,SSSS",/\d\d\d\d\d\d,\d+/],["HHmmss",/\d\d\d\d\d\d/],["HHmm",/\d\d\d\d/],["HH",/\d\d/]],ke=/^\/?Date\((\-?\d+)/i;function we(t){var e,i,n,a,r,o,s=t._i,l=pe.exec(s)||ve.exec(s);if(l){for(f(t).iso=!0,e=0,i=be.length;e0&&f(t).unusedInput.push(o),s=s.slice(s.indexOf(i)+i.length),u+=i.length),E[r]?(i?f(t).empty=!1:f(t).unusedTokens.push(r),mt(r,i,t)):t._strict&&!i&&f(t).unusedTokens.push(r);f(t).charsLeftOver=l-u,s.length>0&&f(t).unusedInput.push(s),t._a[bt]<=12&&!0===f(t).bigHour&&t._a[bt]>0&&(f(t).bigHour=void 0),f(t).parsedDateParts=t._a.slice(0),f(t).meridiem=t._meridiem,t._a[bt]=(d=t._locale,h=t._a[bt],null==(c=t._meridiem)?h:null!=d.meridiemHour?d.meridiemHour(h,c):null!=d.isPM?((g=d.isPM(c))&&h<12&&(h+=12),g||12!==h||(h=0),h):h),me(t),fe(t)}else Ce(t);else we(t);var d,h,c,g}function Te(t){var e=t._i,i=t._f;return t._locale=t._locale||ce(t._l),null===e||void 0===i&&""===e?m({nullInput:!0}):("string"==typeof e&&(t._i=e=t._locale.preparse(e)),x(e)?new b(fe(e)):(l(e)?t._d=e:a(i)?function(t){var e,i,n,a,r;if(0===t._f.length)return f(t).invalidFormat=!0,void(t._d=new Date(NaN));for(a=0;athis?this:t:m()});function Re(t,e){var i,n;if(1===e.length&&a(e[0])&&(e=e[0]),!e.length)return Ie();for(i=e[0],n=1;n=0?new Date(t+400,e,i)-si:new Date(t,e,i).valueOf()}function di(t,e,i){return t<100&&t>=0?Date.UTC(t+400,e,i)-si:Date.UTC(t,e,i)}function hi(t,e){B(0,[t,t.length],0,e)}function ci(t,e,i,n,a){var r;return null==t?jt(this,n,a).year:(r=Ut(t,n,a),e>r&&(e=r),function(t,e,i,n,a){var r=Bt(t,e,i,n,a),o=Ht(r.year,0,r.dayOfYear);return this.year(o.getUTCFullYear()),this.month(o.getUTCMonth()),this.date(o.getUTCDate()),this}.call(this,t,e,i,n,a))}B(0,["gg",2],0,function(){return this.weekYear()%100}),B(0,["GG",2],0,function(){return this.isoWeekYear()%100}),hi("gggg","weekYear"),hi("ggggg","weekYear"),hi("GGGG","isoWeekYear"),hi("GGGGG","isoWeekYear"),F("weekYear","gg"),F("isoWeekYear","GG"),Y("weekYear",1),Y("isoWeekYear",1),ut("G",at),ut("g",at),ut("GG",K,q),ut("gg",K,q),ut("GGGG",et,$),ut("gggg",et,$),ut("GGGGG",it,X),ut("ggggg",it,X),gt(["gggg","ggggg","GGGG","GGGGG"],function(t,e,i,n){e[n.substr(0,2)]=k(t)}),gt(["gg","GG"],function(t,e,i,a){e[a]=n.parseTwoDigitYear(t)}),B("Q",0,"Qo","quarter"),F("quarter","Q"),Y("quarter",7),ut("Q",G),ft("Q",function(t,e){e[vt]=3*(k(t)-1)}),B("D",["DD",2],"Do","date"),F("date","D"),Y("date",9),ut("D",K),ut("DD",K,q),ut("Do",function(t,e){return t?e._dayOfMonthOrdinalParse||e._ordinalParse:e._dayOfMonthOrdinalParseLenient}),ft(["D","DD"],yt),ft("Do",function(t,e){e[yt]=k(t.match(K)[0])});var fi=Tt("Date",!0);B("DDD",["DDDD",3],"DDDo","dayOfYear"),F("dayOfYear","DDD"),Y("dayOfYear",4),ut("DDD",tt),ut("DDDD",Z),ft(["DDD","DDDD"],function(t,e,i){i._dayOfYear=k(t)}),B("m",["mm",2],0,"minute"),F("minute","m"),Y("minute",14),ut("m",K),ut("mm",K,q),ft(["m","mm"],xt);var gi=Tt("Minutes",!1);B("s",["ss",2],0,"second"),F("second","s"),Y("second",15),ut("s",K),ut("ss",K,q),ft(["s","ss"],_t);var mi,pi=Tt("Seconds",!1);for(B("S",0,0,function(){return~~(this.millisecond()/100)}),B(0,["SS",2],0,function(){return~~(this.millisecond()/10)}),B(0,["SSS",3],0,"millisecond"),B(0,["SSSS",4],0,function(){return 10*this.millisecond()}),B(0,["SSSSS",5],0,function(){return 100*this.millisecond()}),B(0,["SSSSSS",6],0,function(){return 1e3*this.millisecond()}),B(0,["SSSSSSS",7],0,function(){return 1e4*this.millisecond()}),B(0,["SSSSSSSS",8],0,function(){return 1e5*this.millisecond()}),B(0,["SSSSSSSSS",9],0,function(){return 1e6*this.millisecond()}),F("millisecond","ms"),Y("millisecond",16),ut("S",tt,G),ut("SS",tt,q),ut("SSS",tt,Z),mi="SSSS";mi.length<=9;mi+="S")ut(mi,nt);function vi(t,e){e[kt]=k(1e3*("0."+t))}for(mi="S";mi.length<=9;mi+="S")ft(mi,vi);var yi=Tt("Milliseconds",!1);B("z",0,0,"zoneAbbr"),B("zz",0,0,"zoneName");var bi=b.prototype;function xi(t){return t}bi.add=Je,bi.calendar=function(t,e){var i=t||Ie(),a=Ee(i,this).startOf("day"),r=n.calendarFormat(this,a)||"sameElse",o=e&&(T(e[r])?e[r].call(this,i):e[r]);return this.format(o||this.localeData().calendar(r,this,Ie(i)))},bi.clone=function(){return new b(this)},bi.diff=function(t,e,i){var n,a,r;if(!this.isValid())return NaN;if(!(n=Ee(t,this)).isValid())return NaN;switch(a=6e4*(n.utcOffset()-this.utcOffset()),e=R(e)){case"year":r=ti(this,n)/12;break;case"month":r=ti(this,n);break;case"quarter":r=ti(this,n)/3;break;case"second":r=(this-n)/1e3;break;case"minute":r=(this-n)/6e4;break;case"hour":r=(this-n)/36e5;break;case"day":r=(this-n-a)/864e5;break;case"week":r=(this-n-a)/6048e5;break;default:r=this-n}return i?r:_(r)},bi.endOf=function(t){var e;if(void 0===(t=R(t))||"millisecond"===t||!this.isValid())return this;var i=this._isUTC?di:ui;switch(t){case"year":e=i(this.year()+1,0,1)-1;break;case"quarter":e=i(this.year(),this.month()-this.month()%3+3,1)-1;break;case"month":e=i(this.year(),this.month()+1,1)-1;break;case"week":e=i(this.year(),this.month(),this.date()-this.weekday()+7)-1;break;case"isoWeek":e=i(this.year(),this.month(),this.date()-(this.isoWeekday()-1)+7)-1;break;case"day":case"date":e=i(this.year(),this.month(),this.date()+1)-1;break;case"hour":e=this._d.valueOf(),e+=oi-li(e+(this._isUTC?0:this.utcOffset()*ri),oi)-1;break;case"minute":e=this._d.valueOf(),e+=ri-li(e,ri)-1;break;case"second":e=this._d.valueOf(),e+=ai-li(e,ai)-1}return this._d.setTime(e),n.updateOffset(this,!0),this},bi.format=function(t){t||(t=this.isUtc()?n.defaultFormatUtc:n.defaultFormat);var e=j(this,t);return this.localeData().postformat(e)},bi.from=function(t,e){return this.isValid()&&(x(t)&&t.isValid()||Ie(t).isValid())?qe({to:this,from:t}).locale(this.locale()).humanize(!e):this.localeData().invalidDate()},bi.fromNow=function(t){return this.from(Ie(),t)},bi.to=function(t,e){return this.isValid()&&(x(t)&&t.isValid()||Ie(t).isValid())?qe({from:this,to:t}).locale(this.locale()).humanize(!e):this.localeData().invalidDate()},bi.toNow=function(t){return this.to(Ie(),t)},bi.get=function(t){return T(this[t=R(t)])?this[t]():this},bi.invalidAt=function(){return f(this).overflow},bi.isAfter=function(t,e){var i=x(t)?t:Ie(t);return!(!this.isValid()||!i.isValid())&&("millisecond"===(e=R(e)||"millisecond")?this.valueOf()>i.valueOf():i.valueOf()9999?j(i,e?"YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYYYY-MM-DD[T]HH:mm:ss.SSSZ"):T(Date.prototype.toISOString)?e?this.toDate().toISOString():new Date(this.valueOf()+60*this.utcOffset()*1e3).toISOString().replace("Z",j(i,"Z")):j(i,e?"YYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYY-MM-DD[T]HH:mm:ss.SSSZ")},bi.inspect=function(){if(!this.isValid())return"moment.invalid(/* "+this._i+" */)";var t="moment",e="";this.isLocal()||(t=0===this.utcOffset()?"moment.utc":"moment.parseZone",e="Z");var i="["+t+'("]',n=0<=this.year()&&this.year()<=9999?"YYYY":"YYYYYY",a=e+'[")]';return this.format(i+n+"-MM-DD[T]HH:mm:ss.SSS"+a)},bi.toJSON=function(){return this.isValid()?this.toISOString():null},bi.toString=function(){return this.clone().locale("en").format("ddd MMM DD YYYY HH:mm:ss [GMT]ZZ")},bi.unix=function(){return Math.floor(this.valueOf()/1e3)},bi.valueOf=function(){return this._d.valueOf()-6e4*(this._offset||0)},bi.creationData=function(){return{input:this._i,format:this._f,locale:this._locale,isUTC:this._isUTC,strict:this._strict}},bi.year=Pt,bi.isLeapYear=function(){return Dt(this.year())},bi.weekYear=function(t){return ci.call(this,t,this.week(),this.weekday(),this.localeData()._week.dow,this.localeData()._week.doy)},bi.isoWeekYear=function(t){return ci.call(this,t,this.isoWeek(),this.isoWeekday(),1,4)},bi.quarter=bi.quarters=function(t){return null==t?Math.ceil((this.month()+1)/3):this.month(3*(t-1)+this.month()%3)},bi.month=Yt,bi.daysInMonth=function(){return At(this.year(),this.month())},bi.week=bi.weeks=function(t){var e=this.localeData().week(this);return null==t?e:this.add(7*(t-e),"d")},bi.isoWeek=bi.isoWeeks=function(t){var e=jt(this,1,4).week;return null==t?e:this.add(7*(t-e),"d")},bi.weeksInYear=function(){var t=this.localeData()._week;return Ut(this.year(),t.dow,t.doy)},bi.isoWeeksInYear=function(){return Ut(this.year(),1,4)},bi.date=fi,bi.day=bi.days=function(t){if(!this.isValid())return null!=t?this:NaN;var e=this._isUTC?this._d.getUTCDay():this._d.getDay();return null!=t?(t=function(t,e){return"string"!=typeof t?t:isNaN(t)?"number"==typeof(t=e.weekdaysParse(t))?t:null:parseInt(t,10)}(t,this.localeData()),this.add(t-e,"d")):e},bi.weekday=function(t){if(!this.isValid())return null!=t?this:NaN;var e=(this.day()+7-this.localeData()._week.dow)%7;return null==t?e:this.add(t-e,"d")},bi.isoWeekday=function(t){if(!this.isValid())return null!=t?this:NaN;if(null!=t){var e=function(t,e){return"string"==typeof t?e.weekdaysParse(t)%7||7:isNaN(t)?null:t}(t,this.localeData());return this.day(this.day()%7?e:e-7)}return this.day()||7},bi.dayOfYear=function(t){var e=Math.round((this.clone().startOf("day")-this.clone().startOf("year"))/864e5)+1;return null==t?e:this.add(t-e,"d")},bi.hour=bi.hours=ae,bi.minute=bi.minutes=gi,bi.second=bi.seconds=pi,bi.millisecond=bi.milliseconds=yi,bi.utcOffset=function(t,e,i){var a,r=this._offset||0;if(!this.isValid())return null!=t?this:NaN;if(null!=t){if("string"==typeof t){if(null===(t=He(ot,t)))return this}else Math.abs(t)<16&&!i&&(t*=60);return!this._isUTC&&e&&(a=Be(this)),this._offset=t,this._isUTC=!0,null!=a&&this.add(a,"m"),r!==t&&(!e||this._changeInProgress?Ke(this,qe(t-r,"m"),1,!1):this._changeInProgress||(this._changeInProgress=!0,n.updateOffset(this,!0),this._changeInProgress=null)),this}return this._isUTC?r:Be(this)},bi.utc=function(t){return this.utcOffset(0,t)},bi.local=function(t){return this._isUTC&&(this.utcOffset(0,t),this._isUTC=!1,t&&this.subtract(Be(this),"m")),this},bi.parseZone=function(){if(null!=this._tzm)this.utcOffset(this._tzm,!1,!0);else if("string"==typeof this._i){var t=He(rt,this._i);null!=t?this.utcOffset(t):this.utcOffset(0,!0)}return this},bi.hasAlignedHourOffset=function(t){return!!this.isValid()&&(t=t?Ie(t).utcOffset():0,(this.utcOffset()-t)%60==0)},bi.isDST=function(){return this.utcOffset()>this.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()},bi.isLocal=function(){return!!this.isValid()&&!this._isUTC},bi.isUtcOffset=function(){return!!this.isValid()&&this._isUTC},bi.isUtc=je,bi.isUTC=je,bi.zoneAbbr=function(){return this._isUTC?"UTC":""},bi.zoneName=function(){return this._isUTC?"Coordinated Universal Time":""},bi.dates=S("dates accessor is deprecated. Use date instead.",fi),bi.months=S("months accessor is deprecated. Use month instead",Yt),bi.years=S("years accessor is deprecated. Use year instead",Pt),bi.zone=S("moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/",function(t,e){return null!=t?("string"!=typeof t&&(t=-t),this.utcOffset(t,e),this):-this.utcOffset()}),bi.isDSTShifted=S("isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information",function(){if(!o(this._isDSTShifted))return this._isDSTShifted;var t={};if(v(t,this),(t=Te(t))._a){var e=t._isUTC?c(t._a):Ie(t._a);this._isDSTShifted=this.isValid()&&w(t._a,e.toArray())>0}else this._isDSTShifted=!1;return this._isDSTShifted});var _i=I.prototype;function ki(t,e,i,n){var a=ce(),r=c().set(n,e);return a[i](r,t)}function wi(t,e,i){if(s(t)&&(e=t,t=void 0),t=t||"",null!=e)return ki(t,e,i,"month");var n,a=[];for(n=0;n<12;n++)a[n]=ki(t,n,i,"month");return a}function Mi(t,e,i,n){"boolean"==typeof t?(s(e)&&(i=e,e=void 0),e=e||""):(i=e=t,t=!1,s(e)&&(i=e,e=void 0),e=e||"");var a,r=ce(),o=t?r._week.dow:0;if(null!=i)return ki(e,(i+o)%7,n,"day");var l=[];for(a=0;a<7;a++)l[a]=ki(e,(a+o)%7,n,"day");return l}_i.calendar=function(t,e,i){var n=this._calendar[t]||this._calendar.sameElse;return T(n)?n.call(e,i):n},_i.longDateFormat=function(t){var e=this._longDateFormat[t],i=this._longDateFormat[t.toUpperCase()];return e||!i?e:(this._longDateFormat[t]=i.replace(/MMMM|MM|DD|dddd/g,function(t){return t.slice(1)}),this._longDateFormat[t])},_i.invalidDate=function(){return this._invalidDate},_i.ordinal=function(t){return this._ordinal.replace("%d",t)},_i.preparse=xi,_i.postformat=xi,_i.relativeTime=function(t,e,i,n){var a=this._relativeTime[i];return T(a)?a(t,e,i,n):a.replace(/%d/i,t)},_i.pastFuture=function(t,e){var i=this._relativeTime[t>0?"future":"past"];return T(i)?i(e):i.replace(/%s/i,e)},_i.set=function(t){var e,i;for(i in t)T(e=t[i])?this[i]=e:this["_"+i]=e;this._config=t,this._dayOfMonthOrdinalParseLenient=new RegExp((this._dayOfMonthOrdinalParse.source||this._ordinalParse.source)+"|"+/\d{1,2}/.source)},_i.months=function(t,e){return t?a(this._months)?this._months[t.month()]:this._months[(this._months.isFormat||Ft).test(e)?"format":"standalone"][t.month()]:a(this._months)?this._months:this._months.standalone},_i.monthsShort=function(t,e){return t?a(this._monthsShort)?this._monthsShort[t.month()]:this._monthsShort[Ft.test(e)?"format":"standalone"][t.month()]:a(this._monthsShort)?this._monthsShort:this._monthsShort.standalone},_i.monthsParse=function(t,e,i){var n,a,r;if(this._monthsParseExact)return function(t,e,i){var n,a,r,o=t.toLocaleLowerCase();if(!this._monthsParse)for(this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[],n=0;n<12;++n)r=c([2e3,n]),this._shortMonthsParse[n]=this.monthsShort(r,"").toLocaleLowerCase(),this._longMonthsParse[n]=this.months(r,"").toLocaleLowerCase();return i?"MMM"===e?-1!==(a=Ct.call(this._shortMonthsParse,o))?a:null:-1!==(a=Ct.call(this._longMonthsParse,o))?a:null:"MMM"===e?-1!==(a=Ct.call(this._shortMonthsParse,o))?a:-1!==(a=Ct.call(this._longMonthsParse,o))?a:null:-1!==(a=Ct.call(this._longMonthsParse,o))?a:-1!==(a=Ct.call(this._shortMonthsParse,o))?a:null}.call(this,t,e,i);for(this._monthsParse||(this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[]),n=0;n<12;n++){if(a=c([2e3,n]),i&&!this._longMonthsParse[n]&&(this._longMonthsParse[n]=new RegExp("^"+this.months(a,"").replace(".","")+"$","i"),this._shortMonthsParse[n]=new RegExp("^"+this.monthsShort(a,"").replace(".","")+"$","i")),i||this._monthsParse[n]||(r="^"+this.months(a,"")+"|^"+this.monthsShort(a,""),this._monthsParse[n]=new RegExp(r.replace(".",""),"i")),i&&"MMMM"===e&&this._longMonthsParse[n].test(t))return n;if(i&&"MMM"===e&&this._shortMonthsParse[n].test(t))return n;if(!i&&this._monthsParse[n].test(t))return n}},_i.monthsRegex=function(t){return this._monthsParseExact?(d(this,"_monthsRegex")||Vt.call(this),t?this._monthsStrictRegex:this._monthsRegex):(d(this,"_monthsRegex")||(this._monthsRegex=zt),this._monthsStrictRegex&&t?this._monthsStrictRegex:this._monthsRegex)},_i.monthsShortRegex=function(t){return this._monthsParseExact?(d(this,"_monthsRegex")||Vt.call(this),t?this._monthsShortStrictRegex:this._monthsShortRegex):(d(this,"_monthsShortRegex")||(this._monthsShortRegex=Nt),this._monthsShortStrictRegex&&t?this._monthsShortStrictRegex:this._monthsShortRegex)},_i.week=function(t){return jt(t,this._week.dow,this._week.doy).week},_i.firstDayOfYear=function(){return this._week.doy},_i.firstDayOfWeek=function(){return this._week.dow},_i.weekdays=function(t,e){var i=a(this._weekdays)?this._weekdays:this._weekdays[t&&!0!==t&&this._weekdays.isFormat.test(e)?"format":"standalone"];return!0===t?Gt(i,this._week.dow):t?i[t.day()]:i},_i.weekdaysMin=function(t){return!0===t?Gt(this._weekdaysMin,this._week.dow):t?this._weekdaysMin[t.day()]:this._weekdaysMin},_i.weekdaysShort=function(t){return!0===t?Gt(this._weekdaysShort,this._week.dow):t?this._weekdaysShort[t.day()]:this._weekdaysShort},_i.weekdaysParse=function(t,e,i){var n,a,r;if(this._weekdaysParseExact)return function(t,e,i){var n,a,r,o=t.toLocaleLowerCase();if(!this._weekdaysParse)for(this._weekdaysParse=[],this._shortWeekdaysParse=[],this._minWeekdaysParse=[],n=0;n<7;++n)r=c([2e3,1]).day(n),this._minWeekdaysParse[n]=this.weekdaysMin(r,"").toLocaleLowerCase(),this._shortWeekdaysParse[n]=this.weekdaysShort(r,"").toLocaleLowerCase(),this._weekdaysParse[n]=this.weekdays(r,"").toLocaleLowerCase();return i?"dddd"===e?-1!==(a=Ct.call(this._weekdaysParse,o))?a:null:"ddd"===e?-1!==(a=Ct.call(this._shortWeekdaysParse,o))?a:null:-1!==(a=Ct.call(this._minWeekdaysParse,o))?a:null:"dddd"===e?-1!==(a=Ct.call(this._weekdaysParse,o))?a:-1!==(a=Ct.call(this._shortWeekdaysParse,o))?a:-1!==(a=Ct.call(this._minWeekdaysParse,o))?a:null:"ddd"===e?-1!==(a=Ct.call(this._shortWeekdaysParse,o))?a:-1!==(a=Ct.call(this._weekdaysParse,o))?a:-1!==(a=Ct.call(this._minWeekdaysParse,o))?a:null:-1!==(a=Ct.call(this._minWeekdaysParse,o))?a:-1!==(a=Ct.call(this._weekdaysParse,o))?a:-1!==(a=Ct.call(this._shortWeekdaysParse,o))?a:null}.call(this,t,e,i);for(this._weekdaysParse||(this._weekdaysParse=[],this._minWeekdaysParse=[],this._shortWeekdaysParse=[],this._fullWeekdaysParse=[]),n=0;n<7;n++){if(a=c([2e3,1]).day(n),i&&!this._fullWeekdaysParse[n]&&(this._fullWeekdaysParse[n]=new RegExp("^"+this.weekdays(a,"").replace(".","\\.?")+"$","i"),this._shortWeekdaysParse[n]=new RegExp("^"+this.weekdaysShort(a,"").replace(".","\\.?")+"$","i"),this._minWeekdaysParse[n]=new RegExp("^"+this.weekdaysMin(a,"").replace(".","\\.?")+"$","i")),this._weekdaysParse[n]||(r="^"+this.weekdays(a,"")+"|^"+this.weekdaysShort(a,"")+"|^"+this.weekdaysMin(a,""),this._weekdaysParse[n]=new RegExp(r.replace(".",""),"i")),i&&"dddd"===e&&this._fullWeekdaysParse[n].test(t))return n;if(i&&"ddd"===e&&this._shortWeekdaysParse[n].test(t))return n;if(i&&"dd"===e&&this._minWeekdaysParse[n].test(t))return n;if(!i&&this._weekdaysParse[n].test(t))return n}},_i.weekdaysRegex=function(t){return this._weekdaysParseExact?(d(this,"_weekdaysRegex")||Qt.call(this),t?this._weekdaysStrictRegex:this._weekdaysRegex):(d(this,"_weekdaysRegex")||(this._weekdaysRegex=Xt),this._weekdaysStrictRegex&&t?this._weekdaysStrictRegex:this._weekdaysRegex)},_i.weekdaysShortRegex=function(t){return this._weekdaysParseExact?(d(this,"_weekdaysRegex")||Qt.call(this),t?this._weekdaysShortStrictRegex:this._weekdaysShortRegex):(d(this,"_weekdaysShortRegex")||(this._weekdaysShortRegex=Kt),this._weekdaysShortStrictRegex&&t?this._weekdaysShortStrictRegex:this._weekdaysShortRegex)},_i.weekdaysMinRegex=function(t){return this._weekdaysParseExact?(d(this,"_weekdaysRegex")||Qt.call(this),t?this._weekdaysMinStrictRegex:this._weekdaysMinRegex):(d(this,"_weekdaysMinRegex")||(this._weekdaysMinRegex=Jt),this._weekdaysMinStrictRegex&&t?this._weekdaysMinStrictRegex:this._weekdaysMinRegex)},_i.isPM=function(t){return"p"===(t+"").toLowerCase().charAt(0)},_i.meridiem=function(t,e,i){return t>11?i?"pm":"PM":i?"am":"AM"},de("en",{dayOfMonthOrdinalParse:/\d{1,2}(th|st|nd|rd)/,ordinal:function(t){var e=t%10,i=1===k(t%100/10)?"th":1===e?"st":2===e?"nd":3===e?"rd":"th";return t+i}}),n.lang=S("moment.lang is deprecated. Use moment.locale instead.",de),n.langData=S("moment.langData is deprecated. Use moment.localeData instead.",ce);var Si=Math.abs;function Di(t,e,i,n){var a=qe(e,i);return t._milliseconds+=n*a._milliseconds,t._days+=n*a._days,t._months+=n*a._months,t._bubble()}function Ci(t){return t<0?Math.floor(t):Math.ceil(t)}function Pi(t){return 4800*t/146097}function Ti(t){return 146097*t/4800}function Oi(t){return function(){return this.as(t)}}var Ii=Oi("ms"),Ai=Oi("s"),Fi=Oi("m"),Ri=Oi("h"),Li=Oi("d"),Wi=Oi("w"),Yi=Oi("M"),Ni=Oi("Q"),zi=Oi("y");function Vi(t){return function(){return this.isValid()?this._data[t]:NaN}}var Hi=Vi("milliseconds"),Ei=Vi("seconds"),Bi=Vi("minutes"),ji=Vi("hours"),Ui=Vi("days"),Gi=Vi("months"),qi=Vi("years"),Zi=Math.round,$i={ss:44,s:45,m:45,h:22,d:26,M:11},Xi=Math.abs;function Ki(t){return(t>0)-(t<0)||+t}function Ji(){if(!this.isValid())return this.localeData().invalidDate();var t,e,i=Xi(this._milliseconds)/1e3,n=Xi(this._days),a=Xi(this._months);t=_(i/60),e=_(t/60),i%=60,t%=60;var r=_(a/12),o=a%=12,s=n,l=e,u=t,d=i?i.toFixed(3).replace(/\.?0+$/,""):"",h=this.asSeconds();if(!h)return"P0D";var c=h<0?"-":"",f=Ki(this._months)!==Ki(h)?"-":"",g=Ki(this._days)!==Ki(h)?"-":"",m=Ki(this._milliseconds)!==Ki(h)?"-":"";return c+"P"+(r?f+r+"Y":"")+(o?f+o+"M":"")+(s?g+s+"D":"")+(l||u||d?"T":"")+(l?m+l+"H":"")+(u?m+u+"M":"")+(d?m+d+"S":"")}var Qi=We.prototype;return Qi.isValid=function(){return this._isValid},Qi.abs=function(){var t=this._data;return this._milliseconds=Si(this._milliseconds),this._days=Si(this._days),this._months=Si(this._months),t.milliseconds=Si(t.milliseconds),t.seconds=Si(t.seconds),t.minutes=Si(t.minutes),t.hours=Si(t.hours),t.months=Si(t.months),t.years=Si(t.years),this},Qi.add=function(t,e){return Di(this,t,e,1)},Qi.subtract=function(t,e){return Di(this,t,e,-1)},Qi.as=function(t){if(!this.isValid())return NaN;var e,i,n=this._milliseconds;if("month"===(t=R(t))||"quarter"===t||"year"===t)switch(e=this._days+n/864e5,i=this._months+Pi(e),t){case"month":return i;case"quarter":return i/3;case"year":return i/12}else switch(e=this._days+Math.round(Ti(this._months)),t){case"week":return e/7+n/6048e5;case"day":return e+n/864e5;case"hour":return 24*e+n/36e5;case"minute":return 1440*e+n/6e4;case"second":return 86400*e+n/1e3;case"millisecond":return Math.floor(864e5*e)+n;default:throw new Error("Unknown unit "+t)}},Qi.asMilliseconds=Ii,Qi.asSeconds=Ai,Qi.asMinutes=Fi,Qi.asHours=Ri,Qi.asDays=Li,Qi.asWeeks=Wi,Qi.asMonths=Yi,Qi.asQuarters=Ni,Qi.asYears=zi,Qi.valueOf=function(){return this.isValid()?this._milliseconds+864e5*this._days+this._months%12*2592e6+31536e6*k(this._months/12):NaN},Qi._bubble=function(){var t,e,i,n,a,r=this._milliseconds,o=this._days,s=this._months,l=this._data;return r>=0&&o>=0&&s>=0||r<=0&&o<=0&&s<=0||(r+=864e5*Ci(Ti(s)+o),o=0,s=0),l.milliseconds=r%1e3,t=_(r/1e3),l.seconds=t%60,e=_(t/60),l.minutes=e%60,i=_(e/60),l.hours=i%24,o+=_(i/24),a=_(Pi(o)),s+=a,o-=Ci(Ti(a)),n=_(s/12),s%=12,l.days=o,l.months=s,l.years=n,this},Qi.clone=function(){return qe(this)},Qi.get=function(t){return t=R(t),this.isValid()?this[t+"s"]():NaN},Qi.milliseconds=Hi,Qi.seconds=Ei,Qi.minutes=Bi,Qi.hours=ji,Qi.days=Ui,Qi.weeks=function(){return _(this.days()/7)},Qi.months=Gi,Qi.years=qi,Qi.humanize=function(t){if(!this.isValid())return this.localeData().invalidDate();var e=this.localeData(),i=function(t,e,i){var n=qe(t).abs(),a=Zi(n.as("s")),r=Zi(n.as("m")),o=Zi(n.as("h")),s=Zi(n.as("d")),l=Zi(n.as("M")),u=Zi(n.as("y")),d=a<=$i.ss&&["s",a]||a<$i.s&&["ss",a]||r<=1&&["m"]||r<$i.m&&["mm",r]||o<=1&&["h"]||o<$i.h&&["hh",o]||s<=1&&["d"]||s<$i.d&&["dd",s]||l<=1&&["M"]||l<$i.M&&["MM",l]||u<=1&&["y"]||["yy",u];return d[2]=e,d[3]=+t>0,d[4]=i,function(t,e,i,n,a){return a.relativeTime(e||1,!!i,t,n)}.apply(null,d)}(this,!t,e);return t&&(i=e.pastFuture(+this,i)),e.postformat(i)},Qi.toISOString=Ji,Qi.toString=Ji,Qi.toJSON=Ji,Qi.locale=ei,Qi.localeData=ni,Qi.toIsoString=S("toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)",Ji),Qi.lang=ii,B("X",0,0,"unix"),B("x",0,0,"valueOf"),ut("x",at),ut("X",/[+-]?\d+(\.\d{1,3})?/),ft("X",function(t,e,i){i._d=new Date(1e3*parseFloat(t,10))}),ft("x",function(t,e,i){i._d=new Date(k(t))}),n.version="2.24.0",e=Ie,n.fn=bi,n.min=function(){return Re("isBefore",[].slice.call(arguments,0))},n.max=function(){return Re("isAfter",[].slice.call(arguments,0))},n.now=function(){return Date.now?Date.now():+new Date},n.utc=c,n.unix=function(t){return Ie(1e3*t)},n.months=function(t,e){return wi(t,e,"months")},n.isDate=l,n.locale=de,n.invalid=m,n.duration=qe,n.isMoment=x,n.weekdays=function(t,e,i){return Mi(t,e,i,"weekdays")},n.parseZone=function(){return Ie.apply(null,arguments).parseZone()},n.localeData=ce,n.isDuration=Ye,n.monthsShort=function(t,e){return wi(t,e,"monthsShort")},n.weekdaysMin=function(t,e,i){return Mi(t,e,i,"weekdaysMin")},n.defineLocale=he,n.updateLocale=function(t,e){if(null!=e){var i,n,a=re;null!=(n=ue(t))&&(a=n._config),e=O(a,e),(i=new I(e)).parentLocale=oe[t],oe[t]=i,de(t)}else null!=oe[t]&&(null!=oe[t].parentLocale?oe[t]=oe[t].parentLocale:null!=oe[t]&&delete oe[t]);return oe[t]},n.locales=function(){return D(oe)},n.weekdaysShort=function(t,e,i){return Mi(t,e,i,"weekdaysShort")},n.normalizeUnits=R,n.relativeTimeRounding=function(t){return void 0===t?Zi:"function"==typeof t&&(Zi=t,!0)},n.relativeTimeThreshold=function(t,e){return void 0!==$i[t]&&(void 0===e?$i[t]:($i[t]=e,"s"===t&&($i.ss=e-1),!0))},n.calendarFormat=function(t,e){var i=t.diff(e,"days",!0);return i<-6?"sameElse":i<-1?"lastWeek":i<0?"lastDay":i<1?"sameDay":i<2?"nextDay":i<7?"nextWeek":"sameElse"},n.prototype=bi,n.HTML5_FMT={DATETIME_LOCAL:"YYYY-MM-DDTHH:mm",DATETIME_LOCAL_SECONDS:"YYYY-MM-DDTHH:mm:ss",DATETIME_LOCAL_MS:"YYYY-MM-DDTHH:mm:ss.SSS",DATE:"YYYY-MM-DD",TIME:"HH:mm",TIME_SECONDS:"HH:mm:ss",TIME_MS:"HH:mm:ss.SSS",WEEK:"GGGG-[W]WW",MONTH:"YYYY-MM"},n}()}(tn={exports:{}},tn.exports),tn.exports),an={datetime:"MMM D, YYYY, h:mm:ss a",millisecond:"h:mm:ss.SSS a",second:"h:mm:ss a",minute:"h:mm a",hour:"hA",day:"MMM D",week:"ll",month:"MMM YYYY",quarter:"[Q]Q - YYYY",year:"YYYY"};si._date.override("function"==typeof nn?{_id:"moment",formats:function(){return an},parse:function(t,e){return"string"==typeof t&&"string"==typeof e?t=nn(t,e):t instanceof nn||(t=nn(t)),t.isValid()?t.valueOf():null},format:function(t,e){return nn(t).format(e)},add:function(t,e,i){return nn(t).add(e,i).valueOf()},diff:function(t,e,i){return nn.duration(nn(t).diff(nn(e))).as(i)},startOf:function(t,e,i){return t=nn(t),"isoWeek"===e?t.isoWeekday(i).valueOf():t.startOf(e).valueOf()},endOf:function(t,e){return nn(t).endOf(e).valueOf()},_create:function(t){return nn(t)}}:{}),ot._set("global",{plugins:{filler:{propagate:!0}}});var rn={dataset:function(t){var e=t.fill,i=t.chart,n=i.getDatasetMeta(e),a=n&&i.isDatasetVisible(e)&&n.dataset._children||[],r=a.length||0;return r?function(t,e){return e=i)&&n;switch(r){case"bottom":return"start";case"top":return"end";case"zero":return"origin";case"origin":case"start":case"end":return r;default:return!1}}function sn(t){var e,i=t.el._model||{},n=t.el._scale||{},a=t.fill,r=null;if(isFinite(a))return null;if("start"===a?r=void 0===i.scaleBottom?n.bottom:i.scaleBottom:"end"===a?r=void 0===i.scaleTop?n.top:i.scaleTop:void 0!==i.scaleZero?r=i.scaleZero:n.getBasePosition?r=n.getBasePosition():n.getBasePixel&&(r=n.getBasePixel()),null!=r){if(void 0!==r.x&&void 0!==r.y)return r;if(ut.isFinite(r))return{x:(e=n.isHorizontal())?r:null,y:e?null:r}}return null}function ln(t,e,i){var n,a=t[e].fill,r=[e];if(!i)return a;for(;!1!==a&&-1===r.indexOf(a);){if(!isFinite(a))return a;if(!(n=t[a]))return!1;if(n.visible)return a;r.push(a),a=n.fill}return!1}function un(t){var e=t.fill,i="dataset";return!1===e?null:(isFinite(e)||(i="boundary"),rn[i](t))}function dn(t){return t&&!t.skip}function hn(t,e,i,n,a){var r;if(n&&a){for(t.moveTo(e[0].x,e[0].y),r=1;r0;--r)ut.canvas.lineTo(t,i[r],i[r-1],!0)}}var cn={id:"filler",afterDatasetsUpdate:function(t,e){var i,n,a,r,o=(t.data.datasets||[]).length,s=e.propagate,l=[];for(n=0;ne?e:t.boxWidth}ot._set("global",{legend:{display:!0,position:"top",fullWidth:!0,reverse:!1,weight:1e3,onClick:function(t,e){var i=e.datasetIndex,n=this.chart,a=n.getDatasetMeta(i);a.hidden=null===a.hidden?!n.data.datasets[i].hidden:null,n.update()},onHover:null,onLeave:null,labels:{boxWidth:40,padding:10,generateLabels:function(t){var e=t.data;return ut.isArray(e.datasets)?e.datasets.map(function(e,i){return{text:e.label,fillStyle:ut.isArray(e.backgroundColor)?e.backgroundColor[0]:e.backgroundColor,hidden:!t.isDatasetVisible(i),lineCap:e.borderCapStyle,lineDash:e.borderDash,lineDashOffset:e.borderDashOffset,lineJoin:e.borderJoinStyle,lineWidth:e.borderWidth,strokeStyle:e.borderColor,pointStyle:e.pointStyle,datasetIndex:i}},this):[]}}},legendCallback:function(t){var e=[];e.push('
      ');for(var i=0;i'),t.data.datasets[i].label&&e.push(t.data.datasets[i].label),e.push("");return e.push("
    "),e.join("")}});var pn=gt.extend({initialize:function(t){ut.extend(this,t),this.legendHitBoxes=[],this._hoveredItem=null,this.doughnutMode=!1},beforeUpdate:fn,update:function(t,e,i){var n=this;return n.beforeUpdate(),n.maxWidth=t,n.maxHeight=e,n.margins=i,n.beforeSetDimensions(),n.setDimensions(),n.afterSetDimensions(),n.beforeBuildLabels(),n.buildLabels(),n.afterBuildLabels(),n.beforeFit(),n.fit(),n.afterFit(),n.afterUpdate(),n.minSize},afterUpdate:fn,beforeSetDimensions:fn,setDimensions:function(){var t=this;t.isHorizontal()?(t.width=t.maxWidth,t.left=0,t.right=t.width):(t.height=t.maxHeight,t.top=0,t.bottom=t.height),t.paddingLeft=0,t.paddingTop=0,t.paddingRight=0,t.paddingBottom=0,t.minSize={width:0,height:0}},afterSetDimensions:fn,beforeBuildLabels:fn,buildLabels:function(){var t=this,e=t.options.labels||{},i=ut.callback(e.generateLabels,[t.chart],t)||[];e.filter&&(i=i.filter(function(i){return e.filter(i,t.chart.data)})),t.options.reverse&&i.reverse(),t.legendItems=i},afterBuildLabels:fn,beforeFit:fn,fit:function(){var t=this,e=t.options,i=e.labels,n=e.display,a=t.ctx,r=ut.options._parseFont(i),o=r.size,s=t.legendHitBoxes=[],l=t.minSize,u=t.isHorizontal();if(u?(l.width=t.maxWidth,l.height=n?10:0):(l.width=n?10:0,l.height=t.maxHeight),n)if(a.font=r.string,u){var d=t.lineWidths=[0],h=0;a.textAlign="left",a.textBaseline="top",ut.each(t.legendItems,function(t,e){var n=mn(i,o)+o/2+a.measureText(t.text).width;(0===e||d[d.length-1]+n+i.padding>l.width)&&(h+=o+i.padding,d[d.length-(e>0?0:1)]=i.padding),s[e]={left:0,top:0,width:n,height:o},d[d.length-1]+=n+i.padding}),l.height+=h}else{var c=i.padding,f=t.columnWidths=[],g=i.padding,m=0,p=0,v=o+c;ut.each(t.legendItems,function(t,e){var n=mn(i,o)+o/2+a.measureText(t.text).width;e>0&&p+v>l.height-c&&(g+=m+i.padding,f.push(m),m=0,p=0),m=Math.max(m,n),p+=v,s[e]={left:0,top:0,width:n,height:o}}),g+=m,f.push(m),l.width+=g}t.width=l.width,t.height=l.height},afterFit:fn,isHorizontal:function(){return"top"===this.options.position||"bottom"===this.options.position},draw:function(){var t=this,e=t.options,i=e.labels,n=ot.global,a=n.defaultColor,r=n.elements.line,o=t.width,s=t.lineWidths;if(e.display){var l,u=t.ctx,d=gn(i.fontColor,n.defaultFontColor),h=ut.options._parseFont(i),c=h.size;u.textAlign="left",u.textBaseline="middle",u.lineWidth=.5,u.strokeStyle=d,u.fillStyle=d,u.font=h.string;var f=mn(i,c),g=t.legendHitBoxes,m=t.isHorizontal();l=m?{x:t.left+(o-s[0])/2+i.padding,y:t.top+i.padding,line:0}:{x:t.left+i.padding,y:t.top+i.padding,line:0};var p=c+i.padding;ut.each(t.legendItems,function(n,d){var h=u.measureText(n.text).width,v=f+c/2+h,y=l.x,b=l.y;m?d>0&&y+v+i.padding>t.left+t.minSize.width&&(b=l.y+=p,l.line++,y=l.x=t.left+(o-s[l.line])/2+i.padding):d>0&&b+p>t.top+t.minSize.height&&(y=l.x=y+t.columnWidths[l.line]+i.padding,b=l.y=t.top+i.padding,l.line++),function(t,i,n){if(!(isNaN(f)||f<=0)){u.save();var o=gn(n.lineWidth,r.borderWidth);if(u.fillStyle=gn(n.fillStyle,a),u.lineCap=gn(n.lineCap,r.borderCapStyle),u.lineDashOffset=gn(n.lineDashOffset,r.borderDashOffset),u.lineJoin=gn(n.lineJoin,r.borderJoinStyle),u.lineWidth=o,u.strokeStyle=gn(n.strokeStyle,a),u.setLineDash&&u.setLineDash(gn(n.lineDash,r.borderDash)),e.labels&&e.labels.usePointStyle){var s=f*Math.SQRT2/2,l=t+f/2,d=i+c/2;ut.canvas.drawPoint(u,n.pointStyle,s,l,d)}else 0!==o&&u.strokeRect(t,i,f,c),u.fillRect(t,i,f,c);u.restore()}}(y,b,n),g[d].left=y,g[d].top=b,function(t,e,i,n){var a=c/2,r=f+a+t,o=e+a;u.fillText(i.text,r,o),i.hidden&&(u.beginPath(),u.lineWidth=2,u.moveTo(r,o),u.lineTo(r+n,o),u.stroke())}(y,b,n,h),m?l.x+=v+i.padding:l.y+=p})}},_getLegendItemAt:function(t,e){var i,n,a,r=this;if(t>=r.left&&t<=r.right&&e>=r.top&&e<=r.bottom)for(a=r.legendHitBoxes,i=0;i=(n=a[i]).left&&t<=n.left+n.width&&e>=n.top&&e<=n.top+n.height)return r.legendItems[i];return null},handleEvent:function(t){var e,i=this,n=i.options,a="mouseup"===t.type?"click":t.type;if("mousemove"===a){if(!n.onHover&&!n.onLeave)return}else{if("click"!==a)return;if(!n.onClick)return}e=i._getLegendItemAt(t.x,t.y),"click"===a?e&&n.onClick&&n.onClick.call(i,t.native,e):(n.onLeave&&e!==i._hoveredItem&&(i._hoveredItem&&n.onLeave.call(i,t.native,i._hoveredItem),i._hoveredItem=e),n.onHover&&e&&n.onHover.call(i,t.native,e))}});function vn(t,e){var i=new pn({ctx:t.ctx,options:e,chart:t});xe.configure(t,i,e),xe.addBox(t,i),t.legend=i}var yn={id:"legend",_element:pn,beforeInit:function(t){var e=t.options.legend;e&&vn(t,e)},beforeUpdate:function(t){var e=t.options.legend,i=t.legend;e?(ut.mergeIf(e,ot.global.legend),i?(xe.configure(t,i,e),i.options=e):vn(t,e)):i&&(xe.removeBox(t,i),delete t.legend)},afterEvent:function(t,e){var i=t.legend;i&&i.handleEvent(e)}},bn=ut.noop;ot._set("global",{title:{display:!1,fontStyle:"bold",fullWidth:!0,padding:10,position:"top",text:"",weight:2e3}});var xn=gt.extend({initialize:function(t){ut.extend(this,t),this.legendHitBoxes=[]},beforeUpdate:bn,update:function(t,e,i){var n=this;return n.beforeUpdate(),n.maxWidth=t,n.maxHeight=e,n.margins=i,n.beforeSetDimensions(),n.setDimensions(),n.afterSetDimensions(),n.beforeBuildLabels(),n.buildLabels(),n.afterBuildLabels(),n.beforeFit(),n.fit(),n.afterFit(),n.afterUpdate(),n.minSize},afterUpdate:bn,beforeSetDimensions:bn,setDimensions:function(){var t=this;t.isHorizontal()?(t.width=t.maxWidth,t.left=0,t.right=t.width):(t.height=t.maxHeight,t.top=0,t.bottom=t.height),t.paddingLeft=0,t.paddingTop=0,t.paddingRight=0,t.paddingBottom=0,t.minSize={width:0,height:0}},afterSetDimensions:bn,beforeBuildLabels:bn,buildLabels:bn,afterBuildLabels:bn,beforeFit:bn,fit:function(){var t=this,e=t.options,i=e.display,n=t.minSize,a=ut.isArray(e.text)?e.text.length:1,r=ut.options._parseFont(e),o=i?a*r.lineHeight+2*e.padding:0;t.isHorizontal()?(n.width=t.maxWidth,n.height=o):(n.width=o,n.height=t.maxHeight),t.width=n.width,t.height=n.height},afterFit:bn,isHorizontal:function(){var t=this.options.position;return"top"===t||"bottom"===t},draw:function(){var t=this,e=t.ctx,i=t.options;if(i.display){var n,a,r,o=ut.options._parseFont(i),s=o.lineHeight,l=s/2+i.padding,u=0,d=t.top,h=t.left,c=t.bottom,f=t.right;e.fillStyle=ut.valueOrDefault(i.fontColor,ot.global.defaultFontColor),e.font=o.string,t.isHorizontal()?(a=h+(f-h)/2,r=d+l,n=f-h):(a="left"===i.position?h+l:f-l,r=d+(c-d)/2,n=c-d,u=Math.PI*("left"===i.position?-.5:.5)),e.save(),e.translate(a,r),e.rotate(u),e.textAlign="center",e.textBaseline="middle";var g=i.text;if(ut.isArray(g))for(var m=0,p=0;p=0;n--){var a=t[n];if(e(a))return a}},ut.isNumber=function(t){return!isNaN(parseFloat(t))&&isFinite(t)},ut.almostEquals=function(t,e,i){return Math.abs(t-e)t},ut.max=function(t){return t.reduce(function(t,e){return isNaN(e)?t:Math.max(t,e)},Number.NEGATIVE_INFINITY)},ut.min=function(t){return t.reduce(function(t,e){return isNaN(e)?t:Math.min(t,e)},Number.POSITIVE_INFINITY)},ut.sign=Math.sign?function(t){return Math.sign(t)}:function(t){return 0==(t=+t)||isNaN(t)?t:t>0?1:-1},ut.log10=Math.log10?function(t){return Math.log10(t)}:function(t){var e=Math.log(t)*Math.LOG10E,i=Math.round(e);return t===Math.pow(10,i)?i:e},ut.toRadians=function(t){return t*(Math.PI/180)},ut.toDegrees=function(t){return t*(180/Math.PI)},ut._decimalPlaces=function(t){if(ut.isFinite(t)){for(var e=1,i=0;Math.round(t*e)/e!==t;)e*=10,i++;return i}},ut.getAngleFromPoint=function(t,e){var i=e.x-t.x,n=e.y-t.y,a=Math.sqrt(i*i+n*n),r=Math.atan2(n,i);return r<-.5*Math.PI&&(r+=2*Math.PI),{angle:r,distance:a}},ut.distanceBetweenPoints=function(t,e){return Math.sqrt(Math.pow(e.x-t.x,2)+Math.pow(e.y-t.y,2))},ut.aliasPixel=function(t){return t%2==0?0:.5},ut._alignPixel=function(t,e,i){var n=t.currentDevicePixelRatio,a=i/2;return Math.round((e-a)*n)/n+a},ut.splineCurve=function(t,e,i,n){var a=t.skip?e:t,r=e,o=i.skip?e:i,s=Math.sqrt(Math.pow(r.x-a.x,2)+Math.pow(r.y-a.y,2)),l=Math.sqrt(Math.pow(o.x-r.x,2)+Math.pow(o.y-r.y,2)),u=s/(s+l),d=l/(s+l),h=n*(u=isNaN(u)?0:u),c=n*(d=isNaN(d)?0:d);return{previous:{x:r.x-h*(o.x-a.x),y:r.y-h*(o.y-a.y)},next:{x:r.x+c*(o.x-a.x),y:r.y+c*(o.y-a.y)}}},ut.EPSILON=Number.EPSILON||1e-14,ut.splineCurveMonotone=function(t){var e,i,n,a,r,o,s,l,u,d=(t||[]).map(function(t){return{model:t._model,deltaK:0,mK:0}}),h=d.length;for(e=0;e0?d[e-1]:null,(a=e0?d[e-1]:null,a=e=t.length-1?t[0]:t[e+1]:e>=t.length-1?t[t.length-1]:t[e+1]},ut.previousItem=function(t,e,i){return i?e<=0?t[t.length-1]:t[e-1]:e<=0?t[0]:t[e-1]},ut.niceNum=function(t,e){var i=Math.floor(ut.log10(t)),n=t/Math.pow(10,i);return(e?n<1.5?1:n<3?2:n<7?5:10:n<=1?1:n<=2?2:n<=5?5:10)*Math.pow(10,i)},ut.requestAnimFrame="undefined"==typeof window?function(t){t()}:window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||window.oRequestAnimationFrame||window.msRequestAnimationFrame||function(t){return window.setTimeout(t,1e3/60)},ut.getRelativePosition=function(t,e){var i,n,a=t.originalEvent||t,r=t.target||t.srcElement,o=r.getBoundingClientRect(),s=a.touches;s&&s.length>0?(i=s[0].clientX,n=s[0].clientY):(i=a.clientX,n=a.clientY);var l=parseFloat(ut.getStyle(r,"padding-left")),u=parseFloat(ut.getStyle(r,"padding-top")),d=parseFloat(ut.getStyle(r,"padding-right")),h=parseFloat(ut.getStyle(r,"padding-bottom")),c=o.right-o.left-l-d,f=o.bottom-o.top-u-h;return{x:i=Math.round((i-o.left-l)/c*r.width/e.currentDevicePixelRatio),y:n=Math.round((n-o.top-u)/f*r.height/e.currentDevicePixelRatio)}},ut.getConstraintWidth=function(t){return i(t,"max-width","clientWidth")},ut.getConstraintHeight=function(t){return i(t,"max-height","clientHeight")},ut._calculatePadding=function(t,e,i){return(e=ut.getStyle(t,e)).indexOf("%")>-1?i*parseInt(e,10)/100:parseInt(e,10)},ut._getParentNode=function(t){var e=t.parentNode;return e&&"[object ShadowRoot]"===e.toString()&&(e=e.host),e},ut.getMaximumWidth=function(t){var e=ut._getParentNode(t);if(!e)return t.clientWidth;var i=e.clientWidth,n=i-ut._calculatePadding(e,"padding-left",i)-ut._calculatePadding(e,"padding-right",i),a=ut.getConstraintWidth(t);return isNaN(a)?n:Math.min(n,a)},ut.getMaximumHeight=function(t){var e=ut._getParentNode(t);if(!e)return t.clientHeight;var i=e.clientHeight,n=i-ut._calculatePadding(e,"padding-top",i)-ut._calculatePadding(e,"padding-bottom",i),a=ut.getConstraintHeight(t);return isNaN(a)?n:Math.min(n,a)},ut.getStyle=function(t,e){return t.currentStyle?t.currentStyle[e]:document.defaultView.getComputedStyle(t,null).getPropertyValue(e)},ut.retinaScale=function(t,e){var i=t.currentDevicePixelRatio=e||"undefined"!=typeof window&&window.devicePixelRatio||1;if(1!==i){var n=t.canvas,a=t.height,r=t.width;n.height=a*i,n.width=r*i,t.ctx.scale(i,i),n.style.height||n.style.width||(n.style.height=a+"px",n.style.width=r+"px")}},ut.fontString=function(t,e,i){return e+" "+t+"px "+i},ut.longestText=function(t,e,i,n){var a=(n=n||{}).data=n.data||{},r=n.garbageCollect=n.garbageCollect||[];n.font!==e&&(a=n.data={},r=n.garbageCollect=[],n.font=e),t.font=e;var o=0;ut.each(i,function(e){null!=e&&!0!==ut.isArray(e)?o=ut.measureText(t,a,r,o,e):ut.isArray(e)&&ut.each(e,function(e){null==e||ut.isArray(e)||(o=ut.measureText(t,a,r,o,e))})});var s=r.length/2;if(s>i.length){for(var l=0;ln&&(n=r),n},ut.numberOfLabelLines=function(t){var e=1;return ut.each(t,function(t){ut.isArray(t)&&t.length>e&&(e=t.length)}),e},ut.color=G?function(t){return t instanceof CanvasGradient&&(t=ot.global.defaultColor),G(t)}:function(t){return console.error("Color.js not found!"),t},ut.getHoverColor=function(t){return t instanceof CanvasPattern||t instanceof CanvasGradient?t:ut.color(t).saturate(.5).darken(.1).rgbString()}}(),ai._adapters=si,ai.Animation=pt,ai.animationService=vt,ai.controllers=ue,ai.DatasetController=kt,ai.defaults=ot,ai.Element=gt,ai.elements=Nt,ai.Interaction=pe,ai.layouts=xe,ai.platform=Ve,ai.plugins=He,ai.Scale=fi,ai.scaleService=Ee,ai.Ticks=li,ai.Tooltip=Je,ai.helpers.each(en,function(t,e){ai.scaleService.registerScaleType(e,t,t._defaults)}),kn)kn.hasOwnProperty(Dn)&&ai.plugins.register(kn[Dn]);ai.platform.initialize();var Cn=ai;return"undefined"!=typeof window&&(window.Chart=ai),ai.Chart=ai,ai.Legend=kn.legend._element,ai.Title=kn.title._element,ai.pluginService=ai.plugins,ai.PluginBase=ai.Element.extend({}),ai.canvasHelpers=ai.helpers.canvas,ai.layoutService=ai.layouts,ai.LinearScaleBase=yi,ai.helpers.each(["Bar","Bubble","Doughnut","Line","PolarArea","Radar","Scatter"],function(t){ai[t]=function(e,i){return new ai(e,ai.helpers.merge(i||{},{type:t.charAt(0).toLowerCase()+t.slice(1)}))}}),Cn}); diff --git a/public/javascripts/application.js b/public/javascripts/application.js deleted file mode 100644 index d023f5b..0000000 --- a/public/javascripts/application.js +++ /dev/null @@ -1,1090 +0,0 @@ -/* Redmine - project management software - Copyright (C) 2006-2019 Jean-Philippe Lang */ - -/* Fix for CVE-2015-9251, to be removed with JQuery >= 3.0 */ -$.ajaxPrefilter(function (s) { - if (s.crossDomain) { - s.contents.script = false; - } -}); - -function sanitizeHTML(string) { - var temp = document.createElement('span'); - temp.textContent = string; - return temp.innerHTML; -} - -function checkAll(id, checked) { - $('#'+id).find('input[type=checkbox]:enabled').prop('checked', checked); -} - -function toggleCheckboxesBySelector(selector) { - var all_checked = true; - $(selector).each(function(index) { - if (!$(this).is(':checked')) { all_checked = false; } - }); - $(selector).prop('checked', !all_checked).trigger('change'); -} - -function showAndScrollTo(id, focus) { - $('#'+id).show(); - if (focus !== null) { - $('#'+focus).focus(); - } - $('html, body').animate({scrollTop: $('#'+id).offset().top}, 100); -} - -function toggleRowGroup(el) { - var tr = $(el).parents('tr').first(); - var n = tr.next(); - tr.toggleClass('open'); - $(el).toggleClass('icon-expended icon-collapsed'); - while (n.length && !n.hasClass('group')) { - n.toggle(); - n = n.next('tr'); - } -} - -function collapseAllRowGroups(el) { - var tbody = $(el).parents('tbody').first(); - tbody.children('tr').each(function(index) { - if ($(this).hasClass('group')) { - $(this).removeClass('open'); - $(this).find('.expander').switchClass('icon-expended', 'icon-collapsed'); - } else { - $(this).hide(); - } - }); -} - -function expandAllRowGroups(el) { - var tbody = $(el).parents('tbody').first(); - tbody.children('tr').each(function(index) { - if ($(this).hasClass('group')) { - $(this).addClass('open'); - $(this).find('.expander').switchClass('icon-collapsed', 'icon-expended'); - } else { - $(this).show(); - } - }); -} - -function toggleAllRowGroups(el) { - var tr = $(el).parents('tr').first(); - if (tr.hasClass('open')) { - collapseAllRowGroups(el); - } else { - expandAllRowGroups(el); - } -} - -function toggleFieldset(el) { - var fieldset = $(el).parents('fieldset').first(); - fieldset.toggleClass('collapsed'); - fieldset.children('legend').toggleClass('icon-expended icon-collapsed'); - fieldset.children('div').toggle(); -} - -function hideFieldset(el) { - var fieldset = $(el).parents('fieldset').first(); - fieldset.toggleClass('collapsed'); - fieldset.children('div').hide(); -} - -// columns selection -function moveOptions(theSelFrom, theSelTo) { - $(theSelFrom).find('option:selected').detach().prop("selected", false).appendTo($(theSelTo)); -} - -function moveOptionUp(theSel) { - $(theSel).find('option:selected').each(function(){ - $(this).prev(':not(:selected)').detach().insertAfter($(this)); - }); -} - -function moveOptionTop(theSel) { - $(theSel).find('option:selected').detach().prependTo($(theSel)); -} - -function moveOptionDown(theSel) { - $($(theSel).find('option:selected').get().reverse()).each(function(){ - $(this).next(':not(:selected)').detach().insertBefore($(this)); - }); -} - -function moveOptionBottom(theSel) { - $(theSel).find('option:selected').detach().appendTo($(theSel)); -} - -function initFilters() { - $('#add_filter_select').change(function() { - addFilter($(this).val(), '', []); - }); - $('#filters-table td.field input[type=checkbox]').each(function() { - toggleFilter($(this).val()); - }); - $('#filters-table').on('click', 'td.field input[type=checkbox]', function() { - toggleFilter($(this).val()); - }); - $('#filters-table').on('click', '.toggle-multiselect', function() { - toggleMultiSelect($(this).siblings('select')) - $(this).toggleClass('icon-toggle-plus icon-toggle-minus') - }); - $('#filters-table').on('keypress', 'input[type=text]', function(e) { - if (e.keyCode == 13) $(this).closest('form').submit(); - }); -} - -function addFilter(field, operator, values) { - var fieldId = field.replace('.', '_'); - var tr = $('#tr_'+fieldId); - - var filterOptions = availableFilters[field]; - if (!filterOptions) return; - - if (filterOptions['remote'] && filterOptions['values'] == null) { - $.getJSON(filtersUrl, {'name': field}).done(function(data) { - filterOptions['values'] = data; - addFilter(field, operator, values) ; - }); - return; - } - - if (tr.length > 0) { - tr.show(); - } else { - buildFilterRow(field, operator, values); - } - $('#cb_'+fieldId).prop('checked', true); - toggleFilter(field); - $('#add_filter_select').val('').find('option').each(function() { - if ($(this).attr('value') == field) { - $(this).attr('disabled', true); - } - }); -} - -function buildFilterRow(field, operator, values) { - var fieldId = field.replace('.', '_'); - var filterTable = $("#filters-table"); - var filterOptions = availableFilters[field]; - if (!filterOptions) return; - var operators = operatorByType[filterOptions['type']]; - var filterValues = filterOptions['values']; - var i, select; - - var tr = $('').attr('id', 'tr_'+fieldId).html( - '' + - '' + - '  ' - ); - select = tr.find('td.values select'); - if (values.length > 1) { select.attr('multiple', true); } - for (i = 0; i < filterValues.length; i++) { - var filterValue = filterValues[i]; - var option = $('').attr('label', filterValue[2]);} - option = optgroup.append(option); - } - } else { - option.val(filterValue).text(filterValue); - if ($.inArray(filterValue, values) > -1) {option.prop('selected', true);} - } - select.append(option); - } - break; - case "date": - case "date_past": - tr.find('td.values').append( - '' + - ' ' + - ' '+labelDayPlural+'' - ); - $('#values_'+fieldId+'_1').val(values[0]).datepickerFallback(datepickerOptions); - $('#values_'+fieldId+'_2').val(values[1]).datepickerFallback(datepickerOptions); - $('#values_'+fieldId).val(values[0]); - break; - case "string": - case "text": - tr.find('td.values').append( - '' - ); - $('#values_'+fieldId).val(values[0]); - break; - case "relation": - tr.find('td.values').append( - '' + - '' - ); - $('#values_'+fieldId).val(values[0]); - select = tr.find('td.values select'); - for (i = 0; i < filterValues.length; i++) { - var filterValue = filterValues[i]; - var option = $('